#hero-section {
    position: relative;
    height: 95vh;
    height: 95dvh;
    margin: 0
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 8%
}

.hero__text {
    position: absolute;
    top: 40%;
    left: 50%;
    font-size: var(--fs-600z);
    width: 90%;
    max-width: max-content;
    transform: translate(-50%, -50%);
    text-align: center;
    color: hsl(var(--clr-green-200));
    font-family: var(--ff-sans-poppins);
    font-weight: 800
}

.hero__text span {
    background: var(--gradient-green-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.btn-container {
    position: absolute;
    bottom: 0%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.btn-container i {
    font-size: var(--fs-600);
    margin-top: -8px;
    color: hsl(var(--clr-mint-light));
    animation: float-down 3s infinite
}

#hero-marker {
    position: absolute;
    width: 1px;
    height: 1px
}

@keyframes float-down {

    0%,
    8% {
        transform: translate(0) translateY(0);
        animation-timing-function: ease-out
    }

    60% {
        transform: translate(0) translateY(6px);
        animation-timing-function: ease-in
    }

    to {
        transform: translate(0) translateY(0);
        animation-timing-function: ease-out
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero__text {
        font-size: var(--fs-500z);
        top: 50%
    }

    .btn-start {
        font-size: var(--fs-400)
    }
}

#usp-section {
    margin-top: 0
}

.usp__container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    max-width: 1080px
}

.usp__section-title {
    margin: 30px;
    font-size: var(--fs-900);
    font-weight: 900;
    font-family: var(--ff-sans-inter);
    text-align: center;
    margin-bottom: 1rem
}

.usp__section-title span {
    background: var(--gradient-dark-green);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.usp__card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: max-content
}

.usp__ani-container {
    display: none
}

.usp__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 2em;
    text-align: center;
    border: 1px solid hsl(var(--clr-green-400));
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    font-family: var(--ff-sans-inter)
}

.usp__title {
    font-size: var(--fs-600);
    color: hsl(var(--clr-dark));
    font-family: var(--ff-sans-inter);
    text-align: center
}

.usp__description {
    font-size: var(--fs-400);
    color: hsl(var(--clr-dark-gray) / .8);
    font-weight: 400;
    margin-top: -.5rem;
    display: none
}

.usp__highlight-container {
    display: grid;
    gap: .5rem;
    text-align: left
}

.usp__highlight {
    padding: .5em 1em;
    font-size: clamp(var(--fs-100), 0vw, var(--fs-200));
    background-color: hsl(var(--clr-mint) / .6);
    color: hsl(var(--clr-green-900) / .8);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px
}

.usp__highlight i {
    font-size: calc(var(--fs-500));
    color: hsl(var(--clr-main))
}

.usp__cta {
    width: 100%
}

.usp__card-row {
    grid-column: span 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--size-fluid-sm);
    margin-inline: 2rem;
    margin-top: 1.5rem
}

.usp__card-row h3 {
    font-weight: 800
}

@media (min-width: 640px) {
    .usp__card-container {
        grid-auto-rows: 1fr
    }

    .usp__card {
        padding: 1em 1.1em
    }

    .usp__title {
        font-size: var(--fs-400)
    }

    .usp__description {
        font-size: var(--fs-200);
        display: block
    }
}

@media (max-width: 1024px) {
    .usp__title {
        text-shadow: none
    }
}

@media (min-width: 1024px) {
    .usp__card {
        text-align: left;
        border: none
    }

    #usp-section {
        --fs-600: 2rem;
        --fs-400: 1.125rem
    }

    .usp__title {
        font-size: var(--fs-600);
        text-align: left
    }

    .usp__description {
        font-size: var(--fs-400);
        display: block
    }

    .usp__highlight-container {
        gap: 1rem
    }

    .usp__highlight {
        padding-block: 1em;
        font-size: var(--fs-200);
        background-color: hsl(var(--clr-mint) / .8)
    }

    .usp__highlight i {
        font-size: calc(var(--fs-600))
    }

    .usp__container {
        grid-template-columns: 1fr 1fr
    }

    .usp__card-container {
        grid-column: 1;
        padding-left: 1.5rem;
        gap: 0
    }

    .usp__card {
        height: calc(100vh - 80px)
    }

    .usp__ani-container {
        grid-column: 2;
        grid-row: 1;
        display: block;
        align-self: start;
        justify-self: center;
        position: relative;
        height: 100%;
        z-index: -1
    }

    .usp__ani {
        height: calc(100vh - 80px);
        position: sticky;
        top: 80px
    }

    dotlottie-player {
        opacity: 0;
        transition: opacity .5s ease-in-out
    }

    dotlottie-player.visible {
        opacity: 1
    }
}

#best-product-section {
    background: var(--gradient-green-pastel);
    margin-bottom: 0;
    padding-bottom: 5rem
}

.best__container {
    width: 800px;
    position: relative;
    align-items: center
}

.best__btn-switch {
    position: absolute;
    width: 100%;
    padding: 4px;
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    background-color: hsl(var(--clr-white) / .2);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-subtle-small);
    z-index: 0
}

.best__btn {
    position: relative;
    flex: 1;
    height: 100%;
    color: hsl(var(--clr-green-700));
    font-weight: 600;
    transition: all var(--time3);
    background: transparent;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.best__btn.active {
    color: hsl(var(--clr-green-200));
    text-shadow: var(--shadow-green-bottom);
    pointer-events: none
}

.best__btn:not(.active):hover {
    cursor: pointer;
    background-color: hsl(var(--clr-green-accent) / .2)
}

.best__btn-selected {
    position: absolute;
    left: 4px;
    bottom: 4px;
    width: 19%;
    height: calc(100% - .5rem);
    background-color: hsl(var(--clr-green-accent));
    box-shadow: var(--shadow-green-bottom);
    border-radius: 30px;
    z-index: 0;
    pointer-events: none;
    transition: left .3s ease
}

.best__imgs {
    position: relative;
    height: 450px;
    aspect-ratio: 16 / 13;
    margin-top: 40px;
    z-index: -1
}

#best__img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.9);
    will-change: transform, opacity;
    transition: all var(--time3)
}

#best__img.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
}

.best__btn .full-text {
    display: inline
}

.best__btn .short-text {
    display: none
}

@media (max-width: 870px) {
    .best__btn-switch {
        width: min(60vw, 21rem);
        gap: min(1.5vw, .5rem);
        position: absolute;
        bottom: 6.5rem
    }

    .best__btn {
        padding: .4rem 0
    }

    .best__btn .full-text {
        display: none
    }

    .best__btn .short-text {
        display: inline
    }

    #best__img {
        top: 42%
    }
}

@media (max-width: 580px) {
    .best__btn-switch {
        bottom: clamp(2rem, 15vw, 5rem)
    }

    .best__imgs {
        height: auto;
        width: 100%;
        margin-top: .2rem
    }
}

@media (max-width: 640px) and (orientation: portrait) {
    #best-product-section {
        padding-top: 3rem
    }
}

#service-section {
    margin-top: 0
}

.service__container {
    max-width: max-content;
    padding: 0 1rem
}

.service__desc {
    max-width: 70ch;
    text-align: center;
    margin-block: -.5rem
}

.service__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1rem 1.5rem;
    margin-top: 30px;
    padding-inline: 0rem
}

.service__card {
    position: relative;
    padding: 2rem 1.4rem 1.4rem;
    background-color: hsl(var(--clr-white));
    border-radius: 18px;
    border: 1px solid transparent;
    outline: none;
    transition: all .3s ease-out
}

.service__card:hover {
    transform: scale(1.1);
    border: 1px solid hsl(var(--clr-green-300) / .5);
    border-right: 1px solid hsl(var(--clr-green-300) / .2);
    border-bottom: 1px solid hsl(var(--clr-green-300) / .2);
    box-shadow: var(--shadow-subtle-big)
}

.service__card img {
    position: absolute;
    left: 1.5rem;
    top: 15px
}

.service__title {
    height: 80px;
    display: flex;
    align-items: center
}

.service__card h3 {
    font-size: min(calc(var(--fs-300) + .15rem), 1rem);
    font-weight: 600;
    color: hsl(var(--clr-dark));
    width: 15ch;
    padding: 10px;
    margin-left: 120px
}

.service__card p {
    font-size: var(--fs-100);
    color: hsl(var(--clr-gray));
    font-weight: 400;
    text-align: justify
}

@media (596px <=width < 622px) {
    .service__cards {
        grid-template-columns: 1fr
    }
}

@media (min-width: 622px) {
    .service__cards {
        padding-inline: .8rem
    }
}

#product-section {
    --_height: calc((var(--size-fluid-xs) * 2 + var(--fs-400) + .45rem) * 7);
    --fs-200: clamp(var(--fs-50z), calc(.7vw + .3875rem), .875rem);
    background: var(--gradient-green-pastel);
    min-height: 650px
}

.product__container {
    gap: clamp(.5rem, 1vw + .5rem, 3rem)
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px
}

.category-btn {
    padding: 10px 20px;
    background-color: hsl(var(--clr-green-200) / .5);
    color: hsl(var(--clr-green-900));
    border: 1px solid hsl(var(--clr-green-400));
    box-shadow: var(--shadow-subtle-small);
    border-radius: 5px;
    cursor: pointer;
    font-size: var(--fs-300);
    font-weight: 500;
    transition: all .3s ease
}

.category-btn:hover {
    background-color: hsl(var(--clr-green-400) / .5);
    border: 1px solid hsl(var(--clr-green-400) / .4)
}

.category-btn.active {
    color: hsl(var(--clr-green-100));
    background-color: hsl(var(--clr-main));
    border: none
}

.product__list-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    width: clamp(100%, 80vw, 1080px);
    height: fit-content;
    padding-top: 1rem
}

.product__list {
    display: none
}

.scrollable-list {
    list-style: none;
    padding: 10px 0px 10px var(--size-fluid-xs);
    max-height: var(--_height);
    overflow-y: auto;
    background: hsl(var(--clr-white) / .3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(var(--clr-white) / .5);
    border-right: none;
    border-bottom: 1px solid hsl(var(--clr-white) / .2);
    box-shadow: var(--shadow-subtle-big);
    opacity: 0;
    pointer-events: none;
    border-radius: 30px 7px 7px 30px;
    transition: opacity var(--time3)
}

.scrollable-list.active {
    opacity: 1;
    pointer-events: auto
}

.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--time3)
}

.fade-in {
    opacity: 1;
    transition: opacity var(--time3)
}

.scrollable-list::-webkit-scrollbar {
    width: 12px
}

.scrollable-list::-webkit-scrollbar-track {
    background: hsl(var(--clr-green-200) / .5);
    border-radius: 16px
}

.scrollable-list::-webkit-scrollbar-thumb {
    background: hsl(var(--clr-main) / .8);
    border-radius: 16px;
    transition: all .3s ease
}

.scrollable-list::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--clr-main))
}

.scrollable-list::-webkit-scrollbar-thumb:active {
    background: hsl(var(--clr-main))
}

.scrollable-list {
    -ms-overflow-style: none
}

.scrollable-list::-ms-scrollbar {
    width: 12px
}

.scrollable-list::-ms-scrollbar-track {
    background: hsl(var(--clr-green-200) / .5);
    border-radius: 16px
}

.scrollable-list::-ms-scrollbar-thumb {
    background: hsl(var(--clr-main) / .8);
    border-radius: 16px
}

.product__icon {
    font-size: var(--fs-300);
    margin-right: 1rem;
    color: hsl(var(--clr-green-900))
}

.scrollable-list li {
    padding: var(--size-fluid-xs);
    padding-left: calc(var(--size-fluid-xs) + .25rem);
    color: hsl(var(--clr-green-900));
    border-radius: 14px 0 0 14px;
    cursor: pointer;
    transition: background-color .3s ease;
    font-size: var(--fs-200);
    font-weight: 600;
    font-family: var(--ff-sans-inter);
    display: flex;
    align-items: center
}

.scrollable-list,
.product__image {
    transition: all .3s ease
}

.scrollable-list li:hover {
    background-color: hsl(var(--clr-green-100) / .5)
}

.scrollable-list li.selected {
    background-color: hsl(var(--clr-green-100) / .5);
    box-shadow: var(--shadow-subtle-small)
}

.product__details {
    position: relative;
    flex: 2;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    max-height: var(--_height);
    height: fit-content;
    width: 100%
}

.product__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--time3)
}

.product__image.active {
    opacity: 1
}

.product__dropdown {
    display: block;
    width: 80%;
    max-width: 290px;
    padding: 10px 15px;
    font-size: var(--fs-200);
    border-radius: 8px;
    border: 1px solid hsl(var(--clr-green-400));
    background-color: hsl(var(--clr-white) / .5);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOCIgaGVpZ2h0PSIyOCIgZmlsbD0iIzAwODA0MCIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMTMuNjYsMTAxLjY2bC04MCw4MGE4LDgsMCwwLDEtMTEuMzIsMGwtODAtODBBOCw4LDAsMCwxLDQ4LDg4SDIwOGE4LDgsMCwwLDEsNS42NiwxMy42NloiPjwvcGF0aD48L3N2Zz4=);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px
}

@media (min-width: 520px) {
    .product__dropdown {
        display: none !important
    }

    .product__list-container {
        flex-direction: row;
        gap: 20px;
        padding-top: 0;
        padding-left: 3rem;
        max-height: var(--_height)
    }

    .product__list {
        display: block;
        flex: 1.5;
        width: 40%;
        max-width: 380px
    }

    .product__details {
        margin-top: 0;
        width: fit-content
    }
}

@media (600px < width < 870px) {
    .category-nav {
        width: 550px
    }
}

@media (min-width: 542px) {
    #product-section {
        --_height: calc((var(--size-fluid-xs) * 2 + var(--fs-400) + .8rem) * 6)
    }
}

@media (min-width: 815px) {
    #product-section {
        --_height: calc((var(--size-fluid-xs) * 2 + var(--fs-400) + .65rem) * 6)
    }
}

@media (min-width: 884px) {
    #product-section {
        --_height: calc((var(--size-fluid-xs) * 2 + var(--fs-400) + .5rem) * 7)
    }
}

@media (min-width: 1080px) {
    .scrollable-list li {
        padding-right: var(--size-fluid-xs) - .2rem
    }
}

@media ((max-width: 768px) or (max-height: 500px)) and (orientation: landscape) {
    #product-section {
        --_height: calc((var(--size-fluid-xs) * 2 + var(--fs-300) + .5rem) * 7)
    }
}

@media (max-height: 350px) and (orientation: landscape) {
    #product-section {
        --_height: calc((var(--size-fluid-xs) * 2 + var(--fs-300) + .6rem) * 6)
    }
}

#business-section,
#education-section {
    margin-top: 0
}

#business-section {
    padding-bottom: 0
}

#education-section {
    padding-block: 1rem
}

.scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: var(--gradient-black-left-right);
    mask-image: var(--gradient-black-left-right)
}

.scroll-list {
    position: relative;
    height: 100px;
    display: flex;
    gap: 50px;
    margin: 2rem auto;
    pointer-events: auto
}

.scroll-list.edu {
    gap: 0
}

.scroll-list:hover .logo-item {
    animation-play-state: paused
}

@keyframes scrollLeft {
    to {
        left: -250px
    }
}

@keyframes scrollRight {
    0% {
        left: -250px
    }

    to {
        left: 100%
    }
}

.logo-item {
    position: absolute;
    left: 100%;
    width: 250px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-play-state: running
}

.logo-item.scroll-left {
    animation: scrollLeft 50s linear infinite
}

.logo-item.scroll-right {
    animation: scrollRight 50s linear infinite
}

.logo-item.extra-gap {
    margin-right: 300px
}

.logo-item img {
    height: 50px;
    width: auto;
    object-fit: cover;
    margin-bottom: 1rem
}

.logo-item p {
    font-size: var(--fs-100);
    text-align: center;
    align-content: center
}

.testimonial__wrapper {
    width: 100%;
    overflow: hidden;
    position: relative
}

.testimonial__container {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 370px;
    gap: 3rem;
    overscroll-behavior-inline: contain;
    padding-inline: 3rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-user-select: none;
    user-select: none;
    animation: scroll 30s linear infinite;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.testimonial__container::-webkit-scrollbar {
    display: none
}

.testimonial__container:after {
    content: "";
    display: inline-block;
    width: 100%
}

@keyframes scroll {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

.testimonial__card {
    position: relative;
    border-radius: 25px;
    padding: 50px 25px 25px;
    margin: 75px 0;
    background-color: transparent;
    border: 2px solid hsl(var(--clr-green-500));
    transition: all .3s ease
}

.testimonial__card:hover {
    background-color: hsl(var(--clr-green-300));
    box-shadow: var(--shadow-card)
}

.snaps-inline {
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 4rem
}

.snaps-inline>* {
    scroll-snap-align: start;
    scroll-snap-stop: always
}

.testimonial__card:hover .testimonial__logo,
img,
.testimonial__content,
h3,
.position,
.quote {
    box-shadow: none;
    text-shadow: none
}

.testimonial__logo {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translate(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: all .3s ease;
    background-color: transparent
}

.testimonial__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

.testimonial__content {
    margin-top: 2.5rem;
    text-align: center;
    transition: all .3s ease;
    font-family: var(--ff-sans-inter)
}

h3 {
    color: hsl(var(--clr-dark));
    font-size: var(--fs-500);
    font-weight: 800;
    text-shadow: var(--shadow-text)
}

.position {
    color: var(--clr-gray);
    font-size: var(--fs-400);
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: var(--shadow-text)
}

.quote {
    font-style: italic;
    font-size: var(--fs-300);
    text-shadow: var(--shadow-text)
}