/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    font-size: 18px;
}

body {
    font-family: "Poppins", sans-serif;
    color: #667284;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    font-weight: 400;
}

a {
    color: #0f2a43;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: #01a2fd;
    font-weight: 700;
}


.container-padding{
    padding: 0 100px;
}
/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #5777ba;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #748ec6;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


.no-padding{
    padding: 0;
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    .navbar{
        display: none;
    }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 23px 0;
    height: 85px;
}



#header.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h5{
    margin: 0;
}
#header .logo h5 a {
    color: #fff;
}

#header.header-scrolled .logo h5 a {
    color: #01a2fd;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */


header .time p{
    margin: 0;
    font-size:16px;
}

.btn {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #fff;
    padding: 18px 25px;
    background-color: #01a2fd;
    line-height: 1;
    font-size: 1rem;
    font-family: Work Sans;
}
.btn:hover{
    background-color: #00D1FF;
    color: #fff;
}

.btn-sec {
    background-color: #00D1FF;
}
.btn-sec:hover{
    background-color: #01a2fd;
    color: #fff;
}
header .navbar .nav-link{
    font-weight: 600;
}


/* 
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #5777ba;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
} */

/**
  * Mobile Navigation 
  */
/* .mobile-nav-toggle {
    color: #47536e;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(51, 60, 79, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #47536e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #5777ba;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #5777ba;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
} */



/*--------------------------------------------------------------
  # homebanner Section
  --------------------------------------------------------------*/
.homebanner {
    overflow: hidden;
    padding: 0;
    padding-top: 85px;
}

.homebanner .banner-content{
    padding: 80px 0;
}
.homebanner h1 {
    font-weight: 700;
    color: #01a2fd;
    font-size: 3vw;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 20px;
}





@media (max-width: 1400px) {
   

}

@media (max-width: 991px) {
    .homebanner {
        text-align: center;
    }


    .homebanner .homebanner-img img {
        width: 60%;
    }

    header .button {
        display: none;
    }
}

@media (max-width: 1200px) {
    .homebanner{
        background-position: top center;
    }
    .homebanner h1 {
        font-size: 60px;
    }

    header .time{
        display: none;
    }
    .container-padding {
        padding: 0 50px;
    }
}

@media (max-width: 992px) {
    .homebanner .banner-content{
        padding: 70px 0;
    }
    .homebanner h1 {
        text-align: center;
    }

}
@media (max-width: 768px) {
    .homebanner h1 {
        font-size: 50px;
    }

    .homebanner .homebanner-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    .homebanner .homebanner-img img {
        width: 80%;
    }
}



/*--------------------------------------------------------------
  # title-area Section
  --------------------------------------------------------------*/

.title-area {
    overflow: hidden;
    padding: 0;
    padding-top: 85px;
    background: linear-gradient(90deg, #01a2fd 50%, #fff 50% );
}

.title-area.leads-title{
    background: unset;
    background-color: #01a2fd;
}


.title-area.leads-title h1 {
    font-weight: 700;
    color: #fff;
    font-size: 3.5vw;
    letter-spacing: 0em;
    margin-bottom: 20px;
}

.title-area h1 {
    font-weight: 700;
    color: #fff;
    font-size: 4vw;
    letter-spacing: 0em;
    margin-bottom: 20px;
}
.title-area h2, .title-area p{
    color: #fff;
}
.title-area p.note{
    font-size: 12px;
    color: #fff;
    line-height: normal;
}
.title-area p.note a{
        color: var(--bs-blue);
}
.title-area .form-area{
    background: #01a2fd;
    padding: 35px 20px 20px;

}
.title-area .form-area h3, .title-area .form-area h4{
    color: #fff;
    margin: 0;
}
.title-area .form-area .form-control{
    margin-top: 10px;
    font-size: 16px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.title-area .form-area .form-check{
    margin-top: 30px;
    font-size: 16px;
    color: #fff;
}
.title-area .banner-content .btn-banner, .title-area .form-area .btn-submit{
    margin-bottom: 20px;
    background-color: #00D1FF;
}
@media (max-width: 1200px) {
    .title-area h1 {
        font-size: 60px;
    }
    
    .title-area.leads-title h1{
        font-size: 50px;
    }
}

@media (max-width: 992px) {

    .title-area {
        text-align: center;
        background: #01a2fd ;
    }

    
    .title-area h1 {
        font-size: 50px;
    }
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
    padding: 80px 0;
    overflow: hidden;
}
section h2:first-child{
    font-size: 3rem;
}
.section-bg {
    background-color: #f2f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    padding-bottom: 0;
}

.section-title p {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    section h2:first-child{
        font-size: 50px;
    }
}


/*--------------------------------------------------------------
  # AboutUs
  --------------------------------------------------------------*/
.about-us{
    background: url('../img/intro-bg.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    .about-us{
        background-position: bottom;
    }
}

/*--------------------------------------------------------------
  # App services
  --------------------------------------------------------------*/

.services{
    padding-top: 80px;
}

.services .content{
    margin-top: 50px;
}
.services .content h3{
    margin: 0;
}
.services .content img{
    margin: 30px 0;
}





/*-------------------------------------------------------------
  # why-choose-us
  --------------------------------------------------------------*/
.why-choose-us .content{
    margin-top: 50px;
    padding-left: 250px;
}


@media (max-width: 992px) {
    .why-choose-us .content {
        padding: 0 25px;
    }
}

/*--------------------------------------------------------------
  # supplements
  --------------------------------------------------------------*/
.supplements{
    background-color: #e6e9f0;
}


.cta{
    background-color: #01a2fd;
    padding: 35px 0;
    color: #fff !important;
}
.cta h2, .cta a{
    color: #fff;
    font-size: 3rem;
}
/*--------------------------------------------------------------
  # contacts
  --------------------------------------------------------------*/
.contacts{
    background: url('../img/contact-bg.gif');
    background-size: contain;
    background-repeat: no-repeat;
}

.contacts h2, .contacts h5{
    color: #47536e;
}

.contacts .form-area {
    background-color: #e6e8ef;
    padding: 50px 25px;
}
.contacts .form-area p.note{
    font-size: 14px;
}
.contacts .form-check{
    margin-bottom: 20px;
}


/*--------------------------------------------------------------
  # blogs
  --------------------------------------------------------------*/
.blogs {
    overflow: hidden;
}

.blogs .item img {
    width: 100%;
}

.blogs .item p {
    margin: 20px 0;
    font-family: Gilroy-SemiBold;
}

.blogs .item h3 {
    font-size: 3rem;
}

@media (min-width: 992px) {
    .blogs .swiper-wrapper {
        padding: 40px 0;
    }

    .blogs .swiper-slide-active {
        z-index: 1;
        transform: scale(1.2);
        margin-top: 10px;
    }
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/

footer{
    border-top: 1px solid #47536e;
    font-size: 14px;
}
@media (max-width: 768px) {
    footer ul.d-flex{
        display: grid !important;
    }
}



.disclaimer{
    font-size: 14px;
}





/* * Responsvie  CSS */

@media (max-width: 1400px) {
   
}

@media (max-width: 1200px) {
    .container-padding {
        padding: 0 15px;
    }
}
