*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Globals */
body{
    background: #ffffff;
    color: #111319;
    overflow-x: hidden;
}
html{
    font-family: 'Inter';
    scroll-behavior: smooth;
}
.container{
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}
a{
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    color: #1C1E30;
}
ul{
    list-style: none;
}
img{
    max-width: 100%;
}
h1,h2,h3,h4{
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}
h1{
    font-size: 4.25rem;
}
h2{
    font-size: 5rem;
    margin-top: 1.35rem;
    margin-bottom: 3.85rem;
}
h3{
    font-size: 3.125rem;
}
h4{
    font-size: 1.5rem;
}
h5{
    font-size: 1.25rem;
}
p{
    line-height: 150%;
}
.tag{
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #82A5E4;
}
.text-white{
    color: #fff;
}
.text-black{
    color: #111319;
}
.dot{
    display: block;
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50px;
}
.dot-white{
    background: #FFFFFF;
}
.dot-pink{
    background: #F4ADB3;
}
.dot-blue{
    background: #82A5E4;
}
.dot-yellow{
    background: #BFBF27;
}
.flex{
    display: flex;
}
.flex-center{
    display: flex;
    align-items: center;
}
.flex-between-center{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-between-start{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.flex-center-col{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flex-center-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center-center-col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn{
    display: inline-block;
    background: #2A2E38;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600 !important;
    font-size: 1rem !important;
    line-height: 1.188rem;
    text-align: center;
    transition: all .25s ease;
    color: #fff;
}
.show{
    display: block !important;
}
.hide{
    display: none !important;
}
.italic{
    font-style: italic;
}

@media screen and (max-width: 1390px){
    html{
        font-size: 90%;
    }
}
@media screen and (max-width: 1024px){
    html{
        font-size: 86%;
    }
}
@media screen and (max-width: 767px){
    .container{
        width: 90% !important;
        margin: 0 auto;
    }
    .mobile-hide{
        display: none !important;
    }
    h1{
        font-size: 2.616rem;
    }
    h2,h4,h3{
        font-size: 2.326rem;
    }
    .btn{
        width: 100%;
    }
}
@media screen and (min-width: 768px){
    .desktop-hide{
        display: none;
    }
}
@media screen and (min-width: 950px){
    .tab-hide{
        display: none;
    }
}

/* Mobile Navbar */
.mobile-navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fefdff52;
    color: #1C1E30;
    z-index: 3 !important;
    display: none;
}

.slide-animate{
    position: relative;
    animation-name: move;
    animation-duration: .7s;
}
.mobile-navbar-body{  
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 0 auto;
    height: auto;
    background: #FEFDFF;
    margin-top: 4.2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@keyframes move {
    from{
        transform: translateY(-100%);
    }
    to{
        transform: translateX(0%);

    }
}


.mobile-navbar-body ul{
    /* gap: 1.5rem; */
    margin: 0rem auto;
    justify-content: flex-end !important;
    align-items: flex-end;
    width: 84%;
    margin-bottom: 1.5rem;
    
}
.mobile-navbar-body ul li{
    border-bottom: 1px solid #F0F1F7;
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
}
.mobile-navbar-body .btn{
    width: 84%;
    font-size:1rem;
    margin: 0.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 1.35rem;
}
.mobile-navbar-body .btn span{
    margin-top: -9px;
}
.mobile-navbar-body ul a{
    font-size: 1.599rem;
}

@media screen and (max-width: 650px){
    .mobile-navbar-body{  
        padding-top: 1.75rem; 
    }
}
@media screen and (max-width: 480px){
    .mobile-navbar-body{  
        padding-top: 1rem; 
    }
}

/* ------------ HERO SECTION ------------- */
/* Navbar */
.navbar{
    padding: 1.15rem 0;
}
.navlinks{
    gap: 5.5rem;
}
.navlinks ul{
    gap: 3rem;
}
.navlinks a{
    font-size: 0.93rem;
    font-weight: 400;
    line-height: 1.063rem;
    color: #fff;
}

.navbar-wrap{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #111319;
    z-index: 99 !important;
}

/* Hero */
.hero-container{
    background-color: #111319;
    position: relative;
    overflow: hidden !important;
    padding-top: 80px;
    /* background: url("./images/hero-bg-pattern.png") no-repeat center center/cover; */
}
.hero-text{
    width: 54%;
    padding-top: 5rem;
}
.hero-img{
    width: 46%;
}
.hero-text h1{
    margin: 1.45rem 0;
}
.hero-text p{
    margin-bottom: 2.5rem;
    opacity: 0.7;
}
.hero-buttons{
    gap: 2rem;
}
.hero-buttons img{
    margin-right: .5rem;
    transition: all .5s ease;
}
.read-btn:hover img{
    transform: rotate(90deg);
    margin-right: .9rem;
}

.hero-ticker{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 1.08rem;
    background: #82A5E4;
    z-index: 3;

}
.hero-ticker-content{
    gap: 1.85rem;
    width: 10000px;
    animation: slide 20s infinite alternate ease-in-out;
}
.hero-ticker p{
    font-family: 'Epilogue';
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: initial;
    color: #264378;
    white-space: nowrap;
}
@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-45%);
    }
}
.hero-bg-pattern{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: .1;
}
.hero{
    position: relative;
    z-index: 2;
}

@media screen and (max-width:1150px){
    .hero-container{
        padding-top: 89px;
        padding-bottom: 8rem;
    }
}

@media screen and (max-width:950px){
    h2{
        font-size: 4rem;
        margin-top: 1.35rem;
        margin-bottom: 3.85rem;
    }
    .hero{
        gap:1.7rem;
    }
    .hero-text{
        width: 58%;
        padding-top: 1rem;
    }
    .hero-img{
        width: 42%;
    }
    .hero-container .navlinks{
        display: none;
    }
    .hero-text h1{
        font-size: 3rem;
    }
    
}

@media screen and (max-width:767px){
    h2{
        font-size: 3.5rem;
        margin-top: 1rem;
        margin-bottom: 2.1rem;
    }
    .hero-container{
        padding-top: 5rem;
        padding-bottom: 0rem;
        
    }
    .hero-text{
        width: 100%;
        padding-top: 2rem;
    }
    .logo{
        width: 50%;
    }
    .hero-buttons{
        flex-direction: column;
    }
    .hero-img-mob{
        margin-top: 3.25rem;
        width: 100%;
    }
}

/* ------------ ABOUT SECTION ------------- */
.about-container{
    padding: 4rem 0;
}
.about-img,
.about-text{
    width: 50%;
}
.about-text p{
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 150%;
    color: #111319;
    margin-bottom: .9rem;
}

@media screen and (max-width:1024px){
    .about-content{
        gap: 4rem;
    }
}

@media screen and (max-width:767px){
    .about-img,
    .about-text{
        width: 100%;
    }
    .about-content{
        flex-direction: column;
        gap: 1rem;
    }
}


/* ------------ PROCESS SECTION ------------- */
.process-container{
    background: #111319;
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}
.process-content{
    position: relative;
    z-index: 1;
}
.process-content,
.process-content-wrap{
    gap: 3.1rem;
   
}
.process-content-item{
    background: #111319;
    border: 1px dashed #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem;
}
.process-tag{
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    opacity: 0.3;
}
.process-content-item h5{
    margin: .8rem 0;
}
.process-content-item p{
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #FFFFFF;
    opacity: 0.5;
}
.process-img1,
.process-img2{
    position: absolute;
    top: -13%;
    z-index: 0;
}
.process-img1{
    left: 8%;
    transform: rotate(-10deg);
}
.process-img2{
    right: 8%;
    transform: rotate(10deg);

}

@media screen and (max-width:1024px){
    .process-content{
        flex-direction: column;
    }
}

@media screen and (max-width:767px){
    .process-content-wrap{
        flex-direction: column;
        
    }
}



/* ------------ SERVICES SECTION ------------- */
.services-contianer{
    padding: 4.5rem 0;
}
.services .header-para{
    width: 66%;
    margin: -6.85rem 0 0 auto;
    font-size: 1.25rem;
    line-height: 150%;
    color: #111319;
    opacity: 0.8;
}
.services-content{
    margin-top: 3.75rem;
    gap: 1rem;
}
.services-content-item{
    background: url("./images/services-bg.png") no-repeat center center/cover;
    box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    color: #fff;
    padding: 1.65rem;
    min-height: 717px;
}
.services-content-item h4{
    margin-bottom: .8rem;
}
.services-content-item p{
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    opacity: 0.7;
    margin-bottom: .75rem;
}
.services-content-item  ul li{
    font-weight: 600;
    margin: 1.65rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media screen and (max-width:1024px){
    .services-content-item{
        
        min-height: 757px;
    }
}

@media screen and (max-width:950px){
    .services .header-para{
        margin: -4rem 0 0 auto;
    }
    .services-content{
        flex-direction: column;
    }
    .services-content-item{   
        min-height: auto ;
    }
}

@media screen and (max-width:767px){
    .services .header-para{
        width: 100%;
        margin: 0rem 0 0 auto;
        font-size: 1.25rem;
        line-height: 150%;
        color: #111319;
        opacity: 0.8;
    }
}


/* ------------ TESTIMONIAL SECTION ------------- */
.testimonials-container{
    padding: 5rem 0;
    background: #111319;
}
.testimonials-content{
    gap:1.4rem;
    flex-wrap: wrap;
}
.testimonials-content-col{
    width: 32%;
    flex: 1;
}
.testimonials-content-item{
     background: url("./images/testimonial-bg.png") no-repeat center center/cover;
     box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 2.1rem;
    color: #fff;
    margin-bottom: 1.4rem;
}
.testimonials-content-item p{
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 160%;
    margin: 1rem 0 1.75rem 0;
}
.disclaimer{
    margin-top: -4.5rem;
    width: 65%;
}
.client{
    gap: 1rem;
}
.client img{
    width: 70px;
    border: 1px solid #FFF;
    border-radius: 50%;
}
.client span{
    font-weight: 600;
    font-size: 1.125rem;
}

@media screen and (max-width:950px){
    .testimonials-content{
        flex-direction: column;
        gap:0rem;

    }
    .testimonials-content-col{
        width: 100%;
        flex: 1;
    }
    .disclaimer{
        margin-top: 1rem;
        width: 65%;
    }
}
@media screen and (max-width:767px){
    .disclaimer{
        width: 100%;
    }
}



/* ------------ FORM SECTION ------------- */
.contact-container{
    padding: 3rem 0;
    background: url("./images/contact-bg.png") no-repeat center center/cover;
}
form{
    background: #1A1D25;
    border-radius: 20px;
    backdrop-filter: blur(2px);
    padding: 3rem 3.05rem;
    width: 52%;
    margin: 0 auto;
}
form h3{
    margin: 1.5rem 0;
}
.form-fields{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.form-fields button{
    width: 100%;
}
.input-field{
    font-family: 'Epilogue';
    width: 100%;
    border: none;
    background: #2A2E38;
    border-radius: 12px;
    margin: .6rem 0;
    padding: 1.15rem;
    color: white;
    font-weight: 400;
    font-size: 17px;
    line-height: 140%;
    border: 1px solid #2A2E38;

    display: flex;
    align-items: center;
}
.input-field:hover{
    background: #383D49;
}
.input-field::placeholder{
    color: #fff;
    opacity: 0.3;
    font-family: 'Epilogue';
}
.input-field:focus{
    outline: none;
    border: 1px solid #6C71FF !important;
    border-radius: 12px;
}
.input-wrong{
    border: 1px solid #FF7E6C;
}
textarea{
    height: 135px;
}
form button{
    cursor: pointer;
    color: white;
    width: 30%;
    margin-top: .85rem;
    background: #6C71FF;
    box-shadow: 0px 30px 80px -25px rgba(108, 113, 255, 0.7);
    border-radius: 12px;
    transition: all .15s ease;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    padding: 1.1rem 0;
    color: #111319;
}
form button:hover{
    opacity: .93;
}

@media screen and (max-width:950px){
    form{
        width: 75%;
    }
}
@media screen and (max-width:767px){
    form{
        width: 100%;
        background: transparent;
        padding: 0;
    }
    form button{
        width: 100%;
    }
}


/* ------------ FOOTER SECTION ------------- */

.footer-container{
    background: #111319;
    padding: 1.75rem 0;
}
.footer-terms{
    padding: 1.25rem 0 0rem 0;
    margin-top: .5rem;
    border-top: 1px solid #ffffff1e;
}
.footer-terms .btn{
    background: transparent;
    border: 1px solid #2A2E38;
}
.navlink-row{
    gap: 3rem;
}

@media screen and (max-width:950px){
    .footer .navbar{
        flex-direction: column;
        gap:1rem;
    }
}

@media screen and (max-width:767px){
    .footer-container .navlinks{
        flex-direction: column;
    }
    .footer-container .navlinks{
        width: 100%;
        gap: 2rem;
    }
    .footer-container .navlinks ul{  
        width: 100%;
    }
    .navlink-row{
        margin-top: 2rem;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        justify-content: space-between;

    }
    .footer-terms{
        flex-direction: column-reverse;
        gap: 1rem;
    }
}
