*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root{
    --linear: linear-gradient(90deg, #0B1140 0%, #050A30 100%);
    --green: #00BF63;
    --white: #fff;
    --blue: #050A30;
    --black: #1E1E1E;
}


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

#progress-bar {
    width: 0%;
    height: 2px;
    background: var(--green);
    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: 1128px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn_primary{
    background: var(--green);
    color: var(--white);
    width: 100%;
    max-width: fit-content;
    padding: 8px 32px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    display: flex;
    border-radius: 8px;
    border: 1px solid var(--green);
    transition: all 0.3s;
	z-index:99;
}

.btn_primary:hover{
    border: 1px solid var(--green);
    background: transparent;
}

.value{
    width: 100%;
    max-width: 385px;
    display: flex;
    flex-direction: column;
    gap:12px;
    text-align: center;
    align-items: center;
    position: relative;
}

.value h3{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
    color: var(--white);
}

.value p{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--white);
}

.value .number span{
    font-style: normal;
    font-weight: 700;
    font-size: 100px;
    line-height: 120px;
    color:var(--green);
}

.value .number span small{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--white);
}
.value .bubble_value{
    position: absolute;
    width: 200px;
    height: 200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #00BF63;
    filter: blur(169.9px);
    border-radius: 200px;
}

@media (max-width:768px){
    .value .number span{
        line-height: 90px;
        display: flex;
        align-items: end;
        gap: 12px;
        margin: 24px 0;
    }
}

@media (max-width:480px){
    .value .number span{
        font-size: 78px;
        line-height: 70px;
    }
}

a{text-decoration: none;}
li{list-style-type: none;}

section.hero{
    background: var(--linear);
    padding: 74px 0 0;
    position: relative;
}

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

section.hero .content h1{
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 54px;
    color: #FFFFFF;
    margin:  0 0 24px;
}

section.hero .content h1 strong{
    color: var(--green);
}

section.hero .content .text {
    width: 100%;
    max-width: 580px;
}

section.hero .content .text p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    margin: 0 0 32px;
}

section.hero .content .text p strong{
    color: var(--green);
}

section.hero .content .banner{
    position: relative;
    z-index: 2;
	width:100%;
	max-width:480px;
	bottom: -7px;
}

section.hero .content .banner img{
	width:100%;
	object-fit: none;
    object-position: center;
	
}

section.hero img.bars{
    position: absolute;
    top: 0;
    right: 0;
}

section.hero .bubble_one{
    position: absolute;
    width: 200px;
    height: 200px;
    left: -83px;
    top: 0px;
    background: #00BF63;
    filter: blur(169.9px);
    border-radius: 200px;

}


section.hero .bubble_two{
    position: absolute;
    width: 200px;
    height: 200px;
    right: 0;
    bottom: 0;
    background: #00BF63;
    filter: blur(169.9px);
    border-radius: 200px;
}


@media (max-width:800px){
    section.hero img.bars{
        width: 100%;
        top: inherit;
        bottom: 0;
        right: inherit;
        left: 0;
        transform: rotate(180deg);
    }
    section.hero .content{
        flex-direction: column;

    }
	
	section.hero .content .banner{
		bottom:0;
	}
}

@media (max-width:600px){
    section.hero .content .banner img{
        width: 100%;
        position: relative;
        bottom: -7px;
		object-fit: contain;
    }
    section.hero .content h1{
        font-size: 36px;
        line-height: 44px;
    }
}

section.you{
    padding: 90px 0;
}

section.you h2{
	font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
    color: #050A30;
    max-width: 808px;
    width: 100%;
    margin: 0 auto 42px;
}

section.you .content{
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin: 98px 0 0;
}

section.you .content .box_single{
    background: var(--blue);
    padding: 10px;
    position: relative;
    height: 220px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 19%;
}

section.you .content .box_single .icon{
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0px -2px 4px -1px rgba(0, 191, 99, 0.35);
    border-radius: 68px;
    width: 100%;
    max-width: 68px;
    margin: 0 auto;
    height: 68px;
    position: absolute;
    top: calc(-50% + 68px);
    left: calc(50% - 34px);;
}

section.you .content .box_single p{
    color: var(--white);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}


@media (max-width:800px){
    section.you .content{
        flex-wrap: wrap;
    }
    section.you .content .box_single{
        flex: 1;
        max-width: 100%;
    }
}

@media (max-width:480px){
    section.you .content .box_single{
        flex: auto;
    }
}

section.benefits{
    padding: 128px 0;
    background: var(--linear);
    position: relative;
}

section.benefits .bubble_one{
    position: absolute;
    width: 200px;
    height: 200px;
    left: -83px;
    top: 0px;
    background: #00BF63;
    filter: blur(169.9px);
    border-radius: 200px;

}

section.benefits .bubble_two{
    position: absolute;
    width: 200px;
    height: 200px;
    right: 0;
    bottom: 0;
    background: #00BF63;
    filter: blur(169.9px);
    border-radius: 200px;
}

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

section.benefits .content .text{
    width: 100%;
    max-width: 520px;
}

section.benefits .content .text h2{
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
    color: var(--white);
    margin: 0 0 24px;
}

section.benefits .content .text h2 strong{
    color: var(--green);
}

section.benefits .content .text ul{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

section.benefits .content .text ul li{
    display: flex;
    align-items: center;
    gap: 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--white);

}

section.benefits .content .text ul li svg{
    width: 100%;
    max-width: 24px;
}

@media (max-width:768px){
    section.benefits{
        padding: 64px 0;
    }
    section.benefits .content{
        flex-direction: column;
        gap: 48px;
    }
}


section.hello{
    padding: 90px 0;
}

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

section.hello .content .text{
    width: 100%;
    max-width: 555px;
}

section.hello .content .text h2{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    color: var(--blue);
    margin: 0 0 20px;
}

section.hello .content .text p{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: var(--black);
}

section.hello .content .banner{
    width: 100%;
    max-width: 482px;
}

section.hello .content .banner img{
    width: 100%;
/* 	transform: scaleX(-1);
	-webkit-transform: scaleX(-1); */
	border-radius: 40px;
    border: 6px solid var(--blue);
}

@media (max-width:768px){
    section.hello .content{
        flex-direction: column-reverse;
        gap: 48px;
    }
}

section.cta{
    padding: 48px 0;
    background: var(--linear);
}

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

section.cta .content h2{
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 63px;
    color: var(--white);
}

@media (max-width:768px){
    section.cta .content{
        flex-direction: column;
        gap: 48px;
    }

    section.cta .content h2{
        font-size: 32px;
        line-height: 42px;
    }
}

footer{
    background: var(--linear);
    padding: 16px 20px;
    text-align: center;
}

footer p{
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: var(--white);
}

footer p a{
    color: var(--green);
    cursor: pointer;
}


section.banner_single_top{
	padding:48px 0 0;
}

section.banner_single_top .banner-top{
		padding: 0;
    width: 100%;
    max-width: 808px;
    margin: 0 auto;
    display: flex;
    object-fit: contain;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    border: 6px solid var(--blue);
}