*{
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
::selection{
    background: #3C82F7;
    color: #fff;
}
html {
    scroll-behavior:smooth !important;
}
img{
    max-width: 100%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
body.active{
    height: 100vh !important;
    overflow: hidden !important;
}
.fl-page{
    overflow: hidden;
}
h1{
    font-size: 52px;
    color: #fff;
    font-weight: 500;
    line-height: 1.44;
}
h2{
    font-size: 36px;
    font-weight: 500;
    color: #1F2123;
}
h3{
    color: #1F2123;
    font-size: 20px;
    font-weight: 500;
}
p{
    color: #888EA4;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 1.78;
    font-size: 14px;
}
li{
    list-style: none;
}
ul{
    padding-left: 0;
    margin-left: 0;
}
a{
    text-decoration: none !important;
    font-size: 14px;
    color: #fff;
    transition: all .2s ease;
}
a:hover{
    color: #3C82F7;
}
.container{
    max-width: 1124px;
}
.mobile-menu{
    display: none;
}
.overlay.active{
    transform: scale(1);
}
.open_nav span{
    background: #fff;
    width: 30px;
    height: 2px;
    display: block;
    margin: 5px 0;
    border-radius: 2.5px;
}
.open_nav span,
.open_nav{
    transition: all .2s ease;
}
.open_nav.active span{
    margin: -2px 0;
}
.open_nav.active span.line-1{
    transform: rotate(45deg);
}
.open_nav.active span.line-2{
    transform: rotate(-45deg);
}
.overlay{
    width: 100%;
    height: calc(100% - 93px);
    position: fixed;
    background: #fff;
    left: 0;
    top: 93px;
    overflow: hidden;
    transition: .5s;
    z-index: 999;
    transform: scale(0);
}
.overlay-content {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 46px;
}
.overlay-content a{
    font-size: 20px;
    color: #0D1F84;
    margin-bottom: 40px;
    font-weight: 600;
    display: inline-block;
}
/* start */
header.hide{
    transform: translateY(-96px);
}
header.header-up{
    background: #222274;
}
#header{
    position: fixed;
    z-index: 99999;
    width: 100%;
    left: 0;
    transition: all .5s ease;
}
.main-nav{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #4444A4;
}
.nav-col nav a{
    margin-left: 50px;
    position: relative;
}
.nav-col nav a.active{
    color: #3C82F7;
}
.nav-col nav a::before{
    content: '';
    position: absolute;
    width: 0!important;
    height: 5px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    background: #3B7CEF;
    transition: all .2s ease;
}
.nav-col nav a:hover::before,
.nav-col nav a.active::before{
    width: calc(100% + 14px) !important;
}

/* footer */
#footer{
    background: #222274;
    padding: 15px 0 33px;
}
.footer-logo{
    margin-bottom: 15px;
}
#footer p{
    color: #A7B9F3;
}
#footer .row{
    align-items: flex-end;
}
.footer-social-links{
    display: flex;
    justify-content: flex-end;
}
.footer-social-links a{
    margin-left: 15px;
}
.footer-social-links a:hover{
    transform: translateY(-3px);
}

@media(min-width: 1025px) and (max-width: 1280px){
    h1 {
        font-size: 40px;
        max-width: 400px;
    }
}
@media(min-width: 1025px) and (max-width: 1200px){
    footer,
    header,
    section{
        padding-left: 88px !important;
        padding-right: 88px !important;
    }
    #testimonials{
        padding-left: 88px;
    }
}
@media(max-width: 1025px){
    header,
    footer,
    section{
        padding-left: 38px !important;
        padding-right: 38px !important;
    }
    .nav-col{
        display: none;
    }
    h1{
        font-size: 36px;
    }
    h2{
        font-size: 32px;
    }
    .mobile-menu{
        display: block;
    }
    
}
@media(max-width: 767px){
    header,
    footer,
    section{
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    h1{
        font-size: 32px;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .main-nav{
        padding-top: 20px;
    }
    .overlay{
        height: calc(100% - 82px);
        top: 82px;
    }
    #footer{
        text-align: center;
    }
    #footer p{
        margin: 5px 0 20px;
    }
    .footer-social-links{
        justify-content: center;
    }
    
}