@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

.navbar {
    padding: 1rem 1.75rem;
}
#open-menu-btn,
#side-menu #close-menu-btn {
    cursor: pointer;
    font-family: 'Fjalla One', sans-serif;
    font-size: 19px;
    color: #fff;
    overflow: hidden;
}
#open-menu-btn {
    line-height: 18px;
}

#main-logo {
    font-size: 19px;
    color: #fff;
    font-family: 'Fjalla One', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fjalla One', sans-serif;
    line-height: 1.5;
}
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}
body.home {
    background-image: linear-gradient(#001DC1, #429046);
    background-repeat: no-repeat;
}
a {
    text-decoration: none;
    transition: all .2s;
    color: #212529;
}
a:hover {
    opacity: .75;
}
p,
li {
    font-size: 19px;
}

header {
    background: #001DC1;
}

.site-toggle i {
    display: block;
    float: left;
    position: relative;
    -webkit-transform: rotate( 0deg );
    transform: rotate( 0deg );
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    width: 18px;
    height: 18px;
}

.site-toggle i > span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 6px;
    opacity: 1;
    -webkit-transform: rotate( 0deg );
    transform: rotate( 0deg );
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    background-color: #fff;
}
.site-toggle i > span:nth-child(1) {
    top: 0;
    width: 100%;
}
.site-toggle i>span:nth-child(2) {
    top: 4px;
    width: 100%;
} 
.site-toggle i>span:nth-child(3) {
    top: 8px;
    width: 65%;
}
.site-toggle i>span:nth-child(4) {
    top: 12px;
    width: 30%;
}
.site-toggle.active i>span:nth-child(1) {
    width: 0;
}
.site-toggle.active i>span:nth-child(2) {
    -webkit-transform: rotate( 45deg );
    transform: rotate( 45deg );
    width: 100%;
    top: 8px;
    background-color: #fff;
}
.site-toggle.active i>span:nth-child(3) {
    -webkit-transform: rotate( -45deg );
    transform: rotate( -45deg );
    width: 100%;
    background-color: #fff;
}
.site-toggle.active i>span:nth-child(4) {
    width: 0;
}

#search-btn {
    color: #fff;
    width: 27px;
    cursor: pointer;
}

.hero-section {
    background-image: url(./images/hivalue-hero-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 617px;
    position: relative;
}
.hero-content {
    position: absolute;
    right: 0;
    padding: 1rem;
}
.hero-content .btn {
    color: #fff;
    font-size: 19px;
    font-family: 'Fjalla One', sans-serif;
    background-color: rgba(255, 255, 255, .35);
}
.header-size {
    font-size: 66px;
}
.forward-icon {
    width: 24px;
}
footer {
    margin-top: 7rem;
    padding-top: 3rem;
}
footer p,
footer address {
    font-size: 14px;
}
body:not(.home) footer {
    background: #429046;
}

#side-menu {
    padding-top: 1rem;
    position: fixed;
    top: 0;
    background: linear-gradient(#F26B92, #7985CB);
    z-index: 99;
    width: 413px;
    height: 100vh;
    max-width: 0;
    -webkit-transition:  all .5s;
    transition: all .5s;
    overflow: hidden;
}
#side-menu .side-menu-inner {
    padding-left: 2.5rem;
    overflow: hidden;
}
#side-menu .nav-link {
    padding-left: 0;
}

#side-menu.show {
   max-width: 100%;
}
#side-menu a {
    font-family: 'Fjalla One', sans-serif;
    font-size: 36px;
    color: #fff;
}
#side-menu .sub-menu {
    padding-left: 3rem;
    list-style: none;
}
#side-menu .sub-menu a {
    font-size: 23px;
}
#close-menu-btn.site-toggle i>span:nth-child(1) {
    width: 0;
}
#close-menu-btn.site-toggle i>span:nth-child(2) {
    -webkit-transform: rotate( 45deg );
    transform: rotate( 45deg );
    width: 100%;
    top: 12px;
    background-color: #fff;
}
#close-menu-btn.site-toggle i>span:nth-child(3) {
    -webkit-transform: rotate( -45deg );
    transform: rotate( -45deg );
    width: 100%;
    background-color: #fff;
    top: 12px;
}
#close-menu-btn.site-toggle i>span:nth-child(4) {
    width: 0;
}
#overlay {
    display: none;
}
#overlay.show {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: rgba(0, 0, 0, .3);
    z-index: 98;
    width: 100%;
}
#profile-sub-menu {
    max-height: 0;
    -webkit-transition:  all .5s;
    transition: all .5s;
    overflow: hidden;
}
#profile-sub-menu.show {
    max-height: 300px;
}

.img-dark {
    filter: brightness(0.5);
}

@media screen and (min-width: 769px) {
    .pt-lg-6 {
        padding-top: 7rem;
    }
}

@media screen and (max-width: 450px) {
    .navbar {
        padding: 15px;
    }
    .header-size {
        font-size: 50px;
    }
    .hero-content {
        text-align: center;
        width: 100%;
    }
    .mt-xs-4 {
        margin-top: 1.5rem;
    }
    .flex-reverse-xs {
        flex-direction: column-reverse;
    }

    .pt-xs-5 {
        padding-top: 3rem;
    }
}