*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Poppins';
}

li{list-style-type:none;}

a{text-decoration: none;}

:root{
    --white: #fff;
    --gray100: #6F6A6A;
    --primary: #004169;
    --primary200: #012033;

    --darkPrimary: #1B1B1B;
    --darkSecondary: #232323;
}


 .swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    background: var(--white);
}


.swiper-button-next{
    right: 47%;
    top:95%
}

.swiper-button-prev{
    left: 47%;
    top: 95%;
}

.swiper-button-next, .swiper-button-prev{
    color: var(--white);
}

.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 26px;
    font-weight: 900;
}


.button_primary, .button_secondary{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #4FCE5D;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: var(--white);
    width: 100%;
    max-width: 450px;
    padding: 12px 20px;
    justify-content: center;
}

.button_secondary{
    background: var(--primary200);
}


#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 9999;
}

#progress-bar {
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.1s linear;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-bottom {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.container{
    width: 100%;
    max-width: 1224px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


header{
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
}

header.show{
    background: var(--primary200);
    top: 0;
    padding: 20px 0;
    z-index: 99;
}

header nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 32px;
}

header nav ul li a{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
}

@media (max-width:800px){
    header{
        display: none;
    }
}


/* hero */

section.hero{
    background-image: url('../images/hero-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section.hero .container{
    max-width: 808px;
}

section.hero .buttons{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

section.hero img{
    width: 100%;
    max-width: 180px;
    margin: 0 auto 42px;
}

section.hero h1{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    text-align: center;
    color: var(--white);
    margin: 0 auto 24px;
}

section.hero p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: var(--white);
    margin: 0 auto 42px;
}

/* section why */

section.why{
    display: flex;
    align-items: center;
    padding: 0 0 20px;
}
section.why .container{
    justify-content: end;
    max-width: 48%;
}

section.why .text{
    width: 100%;
}

section.why h2{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: var(--primary200);
    margin: 0 0 16px;
}

section.why .stars{
    display: flex;
    align-items: center;
    gap:12px;
}

section.why h3{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #1B1B1B;
    margin: 16px 0;
}

section.why p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4F4F4F;
    margin: 0 0 48px;
}

section.why .photo{
    width: 100%;
    max-width: 48%;
    height: 586px;
    background: var(--gray100);
}

@media (min-width:1600px){
     section.why .container{
        display: flex;
        align-items: end;
     }
    section.why .container .text{
        max-width: 60%;
    }

    section.why .photo{
        max-width: 40%;
    }
}

@media (max-width:980px){
    section.why{
        padding: 80px 20px;
        flex-direction: column;
        gap: 42px;
    }
    section.why .container{
        max-width: 1224px;
        padding: 0;
    }
    section.why .photo{
        max-width: 1224px;
    }
}


/* section why */

section.what{
    padding: 80px 0;
}
section.what .text{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}
section.what .text h2{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: right;
    color: var(--primary200);
    margin: 0 0 12px;
    max-width: 550px;
}

section.what .text p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: right;
    color: #1B1B1B;
    max-width: 550px;
}

section.what .content_box{
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 24px 0 48px;
}

section.what .content_box .box_single{
    background: #004169;
    box-shadow: 0px 4px 4px rgba(63, 63, 63, 0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    width: 100%;
    flex: 1;
    min-height: 280px;
}

section.what .content_box .box_single img{
    width: 100%;
    max-width: 100px;
}

section.what .content_box .box_single p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: var(--white);
}

section.what .button_primary{
    margin: 0 auto;
}

@media (max-width:768px){
    section.what{
        padding: 32px 0;
    }
    section.what .content_box{
        flex-direction: column;
    }
    section.what .content_box .box_single{
        max-width: 280px;
        margin: 0 auto;
    }
}

/* about */

section.about{
    padding: 80px 0;
}

section.about .text{
    width: 100%;
    max-width: 680px;
}

section.about .text h2{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #012033;
    margin: 0 0 16px;
}

section.about .text p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4F4F4F;
}

section.about .content img{
    width: 100%;
    max-width: 450px;
}

@media (max-width:768px){
    section.about{
        padding: 32px 0;
    }
    section.about .container.content{
        flex-direction: column;
        gap: 42px;
    }
}

/* step */

section.steps{
    background: linear-gradient(180deg, #012033 0%, #01304D 68.75%);
    padding: 80px 0;
}

section.steps h2{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 542px;
    margin: 0 auto;
}

section.steps p.desc{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: var(--white);
    margin: 18px 0 0;
}

section.steps .content_step{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 64px 0;
}

section.steps .content_step .step_single{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    flex: 1;
    align-items: center;
    position: relative;
    gap: 12px;
}

section.steps .content_step .step_single span{
    background: var(--white);
    border-radius: 4px;
    color: var(--primary200);
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
}

section.steps .content_step .step_single p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    padding: 0 10px;
}

section.steps .content_step .step_single span::before{
    content: '';
    width: 100%;
    position: absolute;
    height: 2px;
    background: var(--white);
    min-width: 256px;
    top: 50%;
    left: 40px;
    z-index: 1;
}

section.steps .content_step .step_single:last-child span::before{
    display: none;
}


section.steps .button_primary{
    margin: 0 auto;
}

@media (max-width:768px){
    section.steps h2{
        font-size: 28px;
        line-height: 32px;
    }
    section.steps .content_step{
        flex-direction: column;
        gap: 24px;
    }
    section.steps .content_step .step_single span::before,
    section.steps .content_step .step_single p br{
        display: none;
    }
    section.steps .content_step .step_single{
        max-width: 280px;
        margin: 0 auto;
    }
}

/* testimonials */

section.testimonials{
    padding: 80px 0;
}

section.testimonials h2{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    color: #012033;
    max-width: 480px;
    margin: 0 0 42px;
}

section.testimonials .content .testimonial_single{
    background: linear-gradient(104.79deg, #012033 0%, #026099 100%);
    border-radius: 4px;
    padding: 16px;
    width: 100%;
    max-width: 360px;
    border-radius: 4px;
    height: 220px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
section.testimonials .content{
    padding: 0 20px;
	height:fit-content;
}

section.testimonials .content .testimonial_single .stars{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 0 12px;
}

section.testimonials .content .testimonial_single h3{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0 0 8px;
    text-align: left;
}

section.testimonials .content .testimonial_single p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #FFFFFF;
    text-align: left;
}

@media (max-width:768px){
    section.testimonials{
        padding: 32px 0;
    }
    section.testimonials h2{
        font-size: 28px;
        line-height: 32px;
    }
    section.testimonials .content .testimonial_single{
        max-width: 100%;
    }
}


/* contact */
section.contact{
    padding: 80px 0 140px;
}
section.contact .content{
    background: linear-gradient(90deg, #181C2B 0%, #004169 100%);
    border-radius: 12px;
    padding: 0  60px;
}

section.contact .content .text{
    width: 100%;
    max-width: 480px;
}

section.contact .content h2{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    color: #FFFFFF;
    margin: 0 0 16px;
}

section.contact .content p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #F9F9F9;
    margin: 0 0 42px;
}

section.contact .content .text a{
    background: linear-gradient(90deg, rgba(0, 65, 105, 0.98) 0%, #004169 197.65%);
    border-radius: 4px;
    color: var(--white);
    padding: 8px 24px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}

.form_content{
    background: var(--white);
    padding: 20px 42px;
    width: 100%;
    max-width: 456px;
    box-shadow: 0px 4px 4px rgba(0, 65, 105, 0.51);
    border-radius: 8px;
    position: relative;
    top: 40px;
}

.form_content h3{
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: var(--primary);
    margin: 0 0 24px;
}

.form_content form,
.form_content form p{
    display: flex;
    flex-direction: column;
    gap: 16px;
	margin:0;
}
.form_content form p br{display:none;}
.form_content form fieldset{display:none;}

.form_content form input,
.form_content form select{
    width: 100%;
    height: 42px;
    outline: none;
    border: 1px solid rgba(111, 106, 106, 0.42);
    border-radius: 4px;
    padding-left: 10px;
}
.form_content form input[type="submit"]{
    background: var(--primary);
    border-radius: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    margin: 8px 0 0;
    padding: 0;
    cursor: pointer;
}

@media (max-width:768px){
    section.contact {
        padding: 32px 20px 80px;
    }
    section.contact .content{
        flex-direction: column;
        padding: 20px 40px;
    }
}


/* faq */

section.faq{
    padding: 0 0 80px;
}

section.faq h6{
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: var(--primary);
}

section.faq h2{
    margin: 8px auto 32px;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--primary200);
    width: 100%;
    max-width: 610px;
}

section.faq .faq_content{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

section.faq .faq_content .faq_single{
    background-color: var(--primary);
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
}

section.faq .faq_content .faq_single .question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

section.faq .faq_content .faq_single .question svg{
    transition: all 0.3s;
    width: 24px;
    height: 24px;

}

section.faq .faq_content .faq_single .question svg path{
        fill: var(--white);
}

section.faq .faq_content .faq_single.active .question svg{
    transform: rotate(180deg);
}

section.faq .faq_content .faq_single p{
    display: none;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    margin: 16px 0 0;
    padding: 0 0 0 8px;
}

section.faq .faq_content .faq_single.active p{
    display: block;
}



footer{
    background-color: var(--darkPrimary);
    padding: 40px 0 20px;
}

footer .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer  h3{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto 40px;
    border-bottom: 1px solid #6D6C6C;
    width: 100%;
    max-width: fit-content;
    padding: 0  0 30px;
}

footer .content p{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--white);
    text-align: center;
}

footer .content p strong a{
    color: var(--white);
    font-weight: bold;
}

footer .content .icons{
    display: flex;
    gap: 8px;
    align-items: center;
}

@media (max-width:768px){
    footer .content{
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    footer .content p{
        max-width: 240px;
        line-height: 24px;
    }
}
