@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Raleway:wght@300;400;500;600;700&display=swap');
*, body{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    user-select: none;
    
}
h1, h2, h3, h4, h5, h6{
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: #333;

}
ul, ol{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
a, a:hover{
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}
button, p, li, input, textarea, address{
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    color: #666;
}
.container{
    width: 100%;
    max-width: 1400px;
}
.defaultBtn{
    border-radius: 30px;
    color: #fff;
    padding: 10px 20px;
    background: rgb(0,149,228);
    background: linear-gradient(90deg, rgba(0,149,228,1) 0%, rgba(0,107,204,1) 100%);
    transition: all 0.3s ease-in;
}
.defaultBtn:hover{
    background: rgb(0,107,204);
    background: linear-gradient(90deg, rgba(0,107,204,1) 0%, rgba(0,149,228,1) 100%);
    color: #fff;
}
body.noScroll{
    overflow: hidden;
}


header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 0px;
    z-index: 10000;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    transition: all 0.3s ease-in;
}
header.active{
    background-color: transparent;
    padding: 15px 0px;
    box-shadow: none;
    transition: all 0.3s ease-in;
}
header .row{
    display: flex;
    align-items: center;
}
header .logoSec{
    width: 25%;
    overflow: hidden;
}
header .logoSec img{
    width: 100%;
    max-width: 200px;
}
header .logoSec img.fixed{
    display: block;
}
header .logoSec img.relative{
    display: none;
}
header.active .logoSec img.fixed{
    display: none;
}
header.active .logoSec img.relative{
    display: block;
}
header .rightSec{
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
header .rightSec .contactInfo{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}
header .rightSec .contactInfo li:not(:first-child){
    margin-left: 25px;
}
header .rightSec .contactInfo li a{
    font-size: 14px;
    color: #999;
    transition: all 0.3s ease-in;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}
header .rightSec .contactInfo li a:hover{
    color: #006bcc;
}
header.active .rightSec .contactInfo li a{
    color: #ccc;
}
header.active .rightSec .contactInfo li a:hover{
    color: #fff;
}
header .rightSec .contactInfo li a svg{
    margin-right: 5px;
}
header .rightSec nav .closeMenu{
    display: none;
}
header .rightSec nav ul.mainMenu{
    display: flex;
    justify-content: flex-end;
}
header .rightSec nav ul.mainMenu > li{
    position: relative;
}
header .rightSec nav ul.mainMenu > li:not(:first-child){
    margin-left: 30px;
}
header .rightSec nav ul.mainMenu > li > a{
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    padding: 10px;
    transition: all 0.3s ease-in;
    color: #006bcc;
    display: inline-block;
}
header .rightSec nav ul.mainMenu > li > a:hover{
    color: #006bcc;
}
header.active .rightSec nav ul.mainMenu > li > a{
    color: #ddd;
}
header.active .rightSec nav ul.mainMenu > li > a:hover{
    color: #fff;
}
header .rightSec nav ul.mainMenu > li:last-child > a{
    color: #fff;
    padding: 10px 20px;
    transition: all 0.3 ease-in;
}
header .rightSec nav ul.mainMenu > li:last-child > a:hover{
    background: rgb(0,107,204);
    background: linear-gradient(90deg, rgba(0,107,204,1) 0%, rgba(0,149,228,1) 100%);
    color: #fff;
}
header .mobileMenuBtn{
    display: none;
}
header nav ul.mainMenu ul.subMenu{
    position: absolute;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    min-width: 300px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    left: 50%;
    transform: translate(-50%, 40px);
    transition: all 0.3s ease-in;
    opacity: 0;
    visibility: hidden;
}
header .rightSec nav ul.mainMenu > li:hover > ul.subMenu{
    visibility: visible;
    transform: translate(-50%, 0px);
    opacity: 1;
}
header nav ul.mainMenu ul.subMenu::after{
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    border-left: solid 10px transparent;
    border-right: solid 10px transparent;
    border-bottom: solid 10px #fff;
    transform: translateX(-50%);
}
header nav ul.mainMenu ul.subMenu > li > a{
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    background-color: transparent;
    transition: all 0.3s ease-in;
}
header nav ul.mainMenu ul.subMenu > li > a:hover{
    background-color: #006bcc;
}
header nav ul.mainMenu ul.subMenu > li > a .icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #bcdfff;
    color: #006bcc;
    font-size: 18px;
    margin-right: 10px;
    transition: all 0.3s ease-in;
}
header nav ul.mainMenu ul.subMenu > li > a:hover .icon{
    background-color: #fff;
}
header nav ul.mainMenu ul.subMenu > li > a span{
    width: calc(100% - 50px);
    font-size: 16px;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease-in;
}
header nav ul.mainMenu ul.subMenu > li > a:hover span{
    color: #fff;
}


footer{
    width: 100%;
    display: block;
    overflow: hidden;
}
footer .footerTop .col-lg-4:not(:first-child){
    padding-left: 10%;
}
footer .footerTop{
    padding: 40px 0px;
    background-color: #0f0d1d;
}
footer .footerTop .footerLogo{
    width: 100%;
    max-width: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}
footer .footerTop .footerLogo a{
    display: inline-block;
}
footer .footerTop .footerLogo img{
    width: 100%;
    opacity: 1;
}
footer .footerTop p{
    color: #aea8b9;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 24px;
}
footer ul.contentList li{
    margin-bottom: 8px;
    color: #aea8b9;
}
footer ul.contentList li svg{
    font-size: 16px;
    color: #006bcc;
    margin-right: 12px;
}
footer ul.contentList li a{
    color: #aea8b9;
    transition: all 0.3s ease-in;
}
footer ul.contentList li a:hover{
    color: #006bcc;
}
footer .footerTop h4.widgetTitle{
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin: 30px 0px;
}
footer .footerTop ul.links li{
    margin-bottom: 7px;
}
footer .footerTop ul.links li a{
    display: inline-block;
    font-size: 16px;
    color: #aea8b9;
    font-weight: 500;
    transition: all 0.3s ease-in;
}
footer .footerTop ul.links li a:hover{
    color: #006bcc;
}
footer .footerTop ul.social li{
    margin-right: 10px;
    margin-bottom: 15px;
    display: inline-block;
}
footer .footerTop ul.social li a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #006bcc;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in;
    font-size: 18px;
}
footer .footerTop ul.social li a:hover{
    background-color: #fff;
    color: #006bcc;
}

footer .footerBottom{
    background-color: #131123;
    padding: 25px 0;
}
footer .footerBottom .copyright{
    font-size: 14px;
    color: #aea8b9;
    display: block;
    text-align: center;
}


@media only screen and (max-width: 991px) {
    header .rightSec .contactInfo li:not(:first-child) {
        margin-left: 15px;
    }
    header .rightSec .contactInfo li a svg {
        margin-right: 2px;
    }
    header .rightSec nav{
        display: none;
    }
    header .logoSec img {
        max-width: 100px;
    }
    header .rightSec .contactInfo{
        margin-bottom: 0px;
        margin-right: 20px;
    }
    header .mobileMenuBtn{
        display: block;
        background-color: transparent;
        color: #999;
        font-size: 28px;
        padding: 7px 10px;
        border-radius: 10px;
        border: solid 1px #ddd;
        transition: all 0.3s ease-in;
    }
    header .mobileMenuBtn:hover{
        color: #006bcc;
    }
    header.active .mobileMenuBtn{
        color: #ccc;
    }
    header.active .mobileMenuBtn:hover{
        color: #fff;
    }
    header .rightSec{
        flex-direction: row;
        align-items: center;
    }
    header.menuOpen nav{
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        padding: 45px 15px;
        overflow: hidden;
    }
    header .rightSec nav .closeMenu {
        display: block;
        position: absolute;
        right: 5px;
        top: 5px;
        background-color: transparent;
        border: none;
        font-size: 26px;
        padding: 5px;
        color: #999;
        transition: all 0.3s ease-in;
    }
    header .rightSec nav .closeMenu:hover{
        color: #333;
    }
    header .rightSec nav ul {
        justify-content: flex-start;
        flex-direction: column;
    }
    header .rightSec nav ul.mainMenu > li:not(:first-child) {
        margin-left: 0px;
        border-top: solid 1px #f5f5f5;
    }
    header .rightSec nav ul.mainMenu > li > a{
        display: block;
        padding: 5px 0px;
    }
    header.active .rightSec nav ul.mainMenu > li > a,
    header .rightSec nav ul.mainMenu > li > a{
        color: #333;
    }
    header.active .rightSec nav ul.mainMenu > li > a:hover,
    header .rightSec nav ul.mainMenu > li > a:hover{
        color: #006bcc;
    }
    header.active .rightSec nav ul.mainMenu > li:last-child > a,
    header .rightSec nav ul.mainMenu > li:last-child > a{
        font-size: 16px;
        font-weight: 600;
        font-family: 'Outfit', sans-serif;
        padding: 5px 0px;
        transition: all 0.3s ease-in;
        color: #333;
        display: block;
        background: transparent;
    }
    header.active .rightSec nav ul.mainMenu > li:last-child > a:hover,
    header .rightSec nav ul.mainMenu > li:last-child > a:hover{
        color: #006bcc;
        background: transparent;
        padding: 5px 0px;
    }
    header .rightSec nav ul.mainMenu > li > a > svg {
        display: block;
        float: right;
        top: 4px;
        position: relative;
        transition: all 0.3s ease-in;
    }
    header nav ul.mainMenu ul.subMenu{
        position: relative;
        left: inherit;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 5px 0px;
        box-shadow: none;
        display: none;
    }
    header nav ul.mainMenu ul.subMenu.active{
        display: block;
    }
    header .rightSec nav ul.mainMenu > li:hover > ul.subMenu{
        transform: none;
    }
    header nav ul.mainMenu ul.subMenu::after{
        display: none;
    }
    header nav ul.mainMenu ul.subMenu > li > a{
        padding: 5px;
        border-top: solid 1px #f5f5f5;
        border-radius: 5px;
    }
    header nav ul.mainMenu ul.subMenu > li > a .icon{
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    header nav ul.mainMenu ul.subMenu > li > a span{
        font-size: 14px;
    }

    footer .footerTop .col-lg-4:not(:first-child) {
        padding-left: 12px;
    }
    footer .footerTop {
        padding: 40px 0px 20px;
    }
}


@media only screen and (max-width: 767px) {
    header.active{
        padding: 10px 0px;
    }
    header{
        padding: 5px 0px;
    }
    header .rightSec .contactInfo li a span{
        display: none;
    }
    header .rightSec .contactInfo li a svg{
        margin: 0px;
        font-size: 18px;
    }
    header .rightSec .contactInfo li:first-child a svg{
        font-size: 16px;
    }
    header .mobileMenuBtn {
        font-size: 22px;
        padding: 2px 8px;
        border-radius: 5px;
    }
    header .logoSec {
        width: 30%;
    }
    header .rightSec {
        width: 70%;
    }

    footer .footerTop {
        padding: 30px 0px 20px;
    }
    footer .footerTop h4.widgetTitle {
        font-size: 18px;
        margin: 20px 0px 15px;
    }
}







