/* overrides */
:root {
    scroll-behavior: unset;
}
html {
    margin-top: 0 !important;
}

html, body {
    overflow: hidden; /* Scrollify requires this by default */
    height: 100%;
}

body > section {
    display: flex;
    align-items: center;
    min-height: 100dvh;
    max-height: 100dvh;
    height: 100dvh;
    margin: 0 !important;
}

.no-interaction {
    pointer-events: none !important;
    user-select: none !important;
}

h2, .h2 {
    font-size: 40px;
    line-height: 43px;
    font-weight: 400;
    letter-spacing: -1px;
}
h4, .h4 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0;
}
.breadcrumbs-container {
    display: none;
    visibility: hidden;
}
.btn {
    --bs-btn-padding-x: 1.75rem;
    --bs-btn-padding-y: 0.375rem;
    width: auto;
    height: 48px;
    border: none;
    border-radius: 24px;
    gap: 15px;
}

.section-inner {
    width: 100%;
    position: relative;
}


/* hero */
#hero {
    --heroAnim: all 1s ease;
    margin-top: 135px;
    margin-bottom: 70px;
    /* padding-right: 2%;
    padding-left: 2%; */
    position: relative;
    flex-direction: column;
    justify-content: center;
}

#hero.fixed .section-inner,
#hero.absolute .section-inner {
    position: fixed;
    width: 100dvw;
    padding: 0 2%;
    overflow: visible;
    top: 50%;
    transform: translateY(-50%);
}
#hero.fixed #logoslider,
#hero.absolute #logoslider {
    position: fixed;
    width: 100%;
    top: calc(50% + 315px);
    transform: translateY(-50%);
    z-index: -1;
    left: 0;
}

#hero.absolute .section-inner {
    position: absolute;
    margin-top: 100dvh;
}

#hero .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

#hero .overlay-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    transition: var(--heroAnim);
}
#hero .overlay-images > div {
    position: absolute;
    transition: var(--heroAnim);
}
#hero .overlay-images .img-1 {
    top: -80px;
    left: 5%;
    animation: levitate 13s 1s infinite reverse;
}
#hero .overlay-images .img-2 {
    top: -35px;
    /* right: 7%; */
    left: calc(93% - 230px);
    animation: levitate 12s 1s infinite reverse;
}
#hero .overlay-images .img-3 {
    bottom: -125px;
    left: 40%;
    animation: levitate 11s 1s infinite reverse;
}
#hero .overlay-images .img-4 {
    bottom: -155px;
    left: calc(100dvw - 149px);
    animation: levitate 10s 1s infinite reverse;
}
#hero .hero-image .main-image .img-5,
#hero .hero-image .main-image .img-6 {
    position: absolute;
    bottom: 0;
    z-index: -1;
    transition: var(--heroAnim);
}
#hero .hero-image .main-image .img-5 {
    width: 200px;
    left: -25dvw;
}
#hero .hero-image .main-image .img-6 {
    width: 188px;
    left: 335px;
}
#hero.show-content .overlay-images {
    /* right: auto;
    width: calc(40% + 50px); */
}
#hero.show-content .overlay-images .img-1 {
    left: -110px;
}
#hero.show-content .overlay-images .img-2 {
    /* right: -2%; */
    left: calc((40% + 50px) - 230px);
}
#hero.show-content .overlay-images .img-3 {
    left: -130px;
}
#hero.show-content .overlay-images .img-4 {
    opacity: 0;
}
#hero.show-content .hero-image .main-image .img-6 {
    left: 300px;
}

#hero:not(.show-content) .hero-image {
    flex: 1 0 100%;
    max-width: 100%;
}
#hero .hero-image {
    position: relative;
    background-color: #FEE000;
    border-radius: 22px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--heroAnim);
}
#hero .hero-image::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: -45%;
    left: 45%;
    transform: translateX(-200px);
    height: 180%;
    aspect-ratio: 1/1;
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    transition: var(--heroAnim);
}
#hero .hero-image .title {
    /* font-size: 120px; */
    font-size: clamp(2.5rem, -0.1596rem + 8.5106vw, 7.5rem);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
    transition: var(--heroAnim);
}
#hero .hero-image .title span {
    display: block;
}
#hero .hero-image .title.left {
    text-align: right;
    transform: translateX(20%);
}
#hero .hero-image .title.left span:last-child {
    transform: translateX(-15%);
}
#hero .hero-image .title.right {
    text-align: left;
    transform: translateX(-15%);
}
#hero .hero-image .main-image {
    position: relative;
    z-index: 3;
    flex: 1 0 436px;
    max-width: 436px;
    transition: var(--heroAnim);
}
#hero.show-content .hero-image {
    flex: 1 0 40%;
    max-width: 40%;
}
#hero.show-content .hero-image::after {
    left: 20%;
}
#hero.show-content .hero-image .title {
    opacity: 0;
}
#hero.show-content .hero-image .main-image {
    transform: translateX(-30%);
}

#hero .hero-content {
    flex: 1 0 60%;
    max-width: calc(60% - 98px);
    overflow: hidden;
    transition: var(--heroAnim);
}
#hero:not(.show-content) .hero-content {
    flex: 0 1 0px;
    max-width: 0px;
}
#hero .hero-content-inner {
    width: calc(100dvw - (4dvw + var(--bs-gutter-x)) - (40dvw + 98px));
}
#hero .hero-content .title {
    max-width: 500px;
    margin-bottom: 15px;
}
#hero .hero-content .text {
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    max-width: 622px;
}
#hero .hero-content .buttons {
    margin-top: 30px;
    display: flex;
    gap: 30px;
}

@media (min-width: 768px) {
    #hero .hero-image .title.mobile {
        display: none;
        visibility: hidden;
    }
}
@media (max-width: 767px) {
    #wpadminbar { display: none; visibility: hidden; }
    h2, .h2 {
        font-size: 25px;
        line-height: 1.2;
    }
    h4, .h4 {
        font-size: 20px;
        line-height: 1.2;
    }

    #hero .hero-image {
        align-items: flex-start;
    }
    #hero:not(.show-content) .hero-image {
        height: calc(100dvh - 230px);
        height: 460px;
    }
    #hero .hero-image .main-image {
        flex: 1 0 90%;
        max-width: 90%;
        position: absolute;
        bottom: 0;
    }
    #hero .hero-image .title.left,
    #hero .hero-image .title.right {
        display: none;
    }
    #hero .hero-image .title.mobile {
        padding: 30px 60px;
        text-align: center;
    }

    #hero.show-content .overlay-images {
        width: 100%;
    }
    #hero.show-content .container-fluid {
        flex-wrap: wrap;
    }
    #hero.show-content .hero-image,
    #hero.show-content .hero-content {
        flex: 1 0 100%;
        max-width: 100%;
    }
    #hero.show-content .hero-image {
        margin-bottom: 50px;
        height: 230px;
    }
    #hero .hero-content-inner {
        width: calc(100dvw - (4% + var(--bs-gutter-x)));
    }
    #hero.show-content .hero-content .text {
        font-size: 13px;
        line-height: 1.2;
    }
    #hero.show-content .hero-image .main-image {
        transform: translateX(-20%);
        max-width: 80%;
    }
    #hero .overlay-images .img-1 {
        width: 100px;
        top: -30px;
        left: -15px;
    }
    #hero .overlay-images .img-2 {
        width: 106px;
        top: 20%;
        right: 0%;
    }
    #hero.show-content .overlay-images .img-2 {
        top: -2%;
    }
    #hero .overlay-images .img-3 {
        width: 102px;
        bottom: -25px;
    }
    #hero.show-content .overlay-images .img-3 {
        left: -2%;
        top: 26%;
    }
    #hero .overlay-images .img-4 {
        width: 98px;
        display: none;
    }


    #hero.fixed {
        padding-bottom: 100px;
    }
    #hero.fixed .section-inner, #hero.absolute .section-inner {
        position: relative;
        transform: none;
        top: 0;
    }
    #hero.fixed #logoslider, #hero.absolute #logoslider {
        top: calc(460px + 100px);
    }
}

@keyframes levitate {
  0% {
    transform:translateY(0)
  }
  30% {
    transform:translateY(-10px)
  }
  50% {
    transform:translateY(4px)
  }
  70% {
    transform:translateY(-15px)
  }
  to {
    transform:translateY(0)
  }
}


/* logo slider */
.logos {
    overflow: hidden;
    padding: 0px 0;
    background: white;
    white-space: nowrap;
    position: relative;
    padding:0px 0px;
    margin-top: 50px;
}
.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}
.logos:before {
    left: 0;
}
.logos:after {
    right: 0;
}
.logos:hover .logos-slide {
    animation-play-state: paused;
}
.logos-slide {
    display: inline-block;
    animation: 110s slide infinite linear;
    min-width: 5530px;
    margin-top: 30px;
}
.logos-slide img {
    height: 50px;
    margin: 1pc;
    filter: grayscale(100%);
}
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}


/* features */
#features {
    position: relative;
    padding: 50px 2% 40px;
    max-width: 100dvw;
    overflow: clip;
}

#features.fixed .section-inner,
#features.absolute .section-inner {
    position: fixed;
    width: 96%;
    top: 50%;
    transform: translateY(-50%);
}

#features.absolute {
    overflow: visible;
}

#features.absolute .section-inner {
    position: absolute;
}

#features .intro {
    margin-bottom: 100px;
}

#bar-charts {
    --barAnim: all 1s ease;
    overflow: visible;
}
#bar-charts .swiper-wrapper {
    align-items: flex-end;
    height: auto;
}
#bar-charts .swiper-slide .inner {
    background-color: #D9D9D9;
    border-radius: 22px;
    overflow: clip;
    display: flex;
    flex-direction: column;
    padding: 40px 34px 26px;
    transition: var(--barAnim);
    height: 158px;
}
#bar-charts .swiper-slide.swiper-slide-active .inner,
#bar-charts .swiper-slide.swiper-slide-next .inner {
    height: 400px;
}
#bar-charts .swiper-slide.swiper-slide-prev .inner,
#bar-charts .swiper-slide.swiper-slide-next + .swiper-slide .inner {
    height: 275px;
}
#bar-charts .swiper-slide.swiper-slide-active:nth-child(3n+1) .inner,
#bar-charts .swiper-slide.swiper-slide-next:nth-child(3n+1) .inner {
    background-color: #FEE000;
}
#bar-charts .swiper-slide.swiper-slide-active:nth-child(3n+2) .inner,
#bar-charts .swiper-slide.swiper-slide-next:nth-child(3n+2) .inner {
    background-color: #6BE084;
}
#bar-charts .swiper-slide.swiper-slide-active:nth-child(3n) .inner,
#bar-charts .swiper-slide.swiper-slide-next:nth-child(3n) .inner {
    background-color: #19BBEE;
}
#bar-charts .swiper-slide .subtitle,
#bar-charts .swiper-slide .text,
#bar-charts .swiper-slide .icon {
    transition: var(--barAnim);
    overflow: clip;
}
#bar-charts .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) .subtitle,
#bar-charts .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) .text,
#bar-charts .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) .icon {
    /* display: none; */
    max-height: 0;
    opacity: 0;
    transition: all .5s ease;
}
#bar-charts .swiper-slide.swiper-slide-next .text {
    max-height: 100px;
    opacity: 1;
}
#bar-charts .swiper-slide.swiper-slide-next + .swiper-slide .subtitle {
    max-height: 100px;
    opacity: 1;
}
#bar-charts .swiper-slide.swiper-slide-next + .swiper-slide .icon {
    max-height: 50px;
    opacity: 1;
}

#bar-charts .title {
    font-size: 65px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 10px;
}
#bar-charts .subtitle {
    margin-bottom: 17px;
    margin-bottom: 0;
}
#bar-charts .text {
    font-size: 14px;
    line-height: 18px;
}
#bar-charts .text::before {
    content: "";
    display: inline-block;
    width: 55px;
    height: 1px;
    background-color: #000;
    margin-bottom: 17px;
    margin-top: 17px;
}
#bar-charts .icon {
    margin-top: auto;
}

@media (max-width: 767px) {
    #bar-charts .title {
        font-size: 49px;
        line-height: 1.2;
        letter-spacing: 0;
    }
    #bar-charts .text::before {
        display: none;
    }
    #bar-charts .icon {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    #bar-charts .swiper-slide.swiper-slide-active .inner,
    #bar-charts .swiper-slide.swiper-slide-next .inner,
    #bar-charts .swiper-slide.swiper-slide-prev .inner,
    #bar-charts .swiper-slide.swiper-slide-next + .swiper-slide .inner {
        min-height: 1px;
    }
    #bar-charts .swiper-slide .inner {
        padding: 17px 24px;
    }
    #bar-charts .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) .subtitle,
    #bar-charts .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) .text,
    #bar-charts .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) .icon {
        display: block;
    }
    #bar-charts .swiper-slide:nth-child(3n+1) .inner {
        background-color: #FEE000;
    }
    #bar-charts .swiper-slide:nth-child(3n+2) .inner {
        background-color: #6BE084;
    }
    #bar-charts .swiper-slide:nth-child(3n) .inner {
        background-color: #19BBEE;
    }
    #bar-charts .swiper-wrapper {
        flex-direction: column;
        gap: 16px;
    }
}


/* benefits */
#benefits {
    padding: 40px 2%;
}
#benefits .intro {
    margin-bottom: 36px;
}

#benefit-tabs .item {
    --itemPadding: 18px;
    background-color: #F7F3F3;
    border-radius: 16px;
    padding: 0;
    padding-bottom: var(--itemPadding);
    margin-bottom: 15px;
}
#benefit-tabs .item:last-child {
    margin-bottom: 0;
}
#benefit-tabs .item.active {
    background-color: #1C0962;
}
#benefit-tabs .item .nav-link {
    background: none !important;
    padding: var(--itemPadding);
    margin-bottom: calc(var(--itemPadding) * -1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    text-align: left;
    font-weight: 400;
    line-height: 1;
}
#benefit-tabs .item .nav-link:not(.active) {
    color: #000;
}
#benefit-tabs .item .nav-link::after {
    content: "";
    display: inline-block;
    flex: 1 0 34px;
    max-width: 34px;
    aspect-ratio: 1/1;
    background-image: url("data:image/svg+xml,%3Csvg width='34' height='35' viewBox='0 0 34 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.75' y='1.12207' width='32.5' height='32.5' rx='16.25' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M17 8.37207V26.3721' stroke='black' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M26 17.3721L8 17.3721' stroke='black' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    transition: opacity .3s ease;
}
#benefit-tabs .item .nav-link.active::after {
    opacity: 0;
}
#benefit-tabs .item:not(.active) .text {
    /* display: none; */
}
#benefit-tabs .item .nav-link + div {
    position: relative;
    z-index: 2;
}
#benefit-tabs .item .text {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    padding: 0 var(--itemPadding);
    /* margin-top: calc(var(--itemPadding) * -1); */
}
#benefit-tabs .item .text a:last-child {
    display: inline-block;
    margin-top: 20px;
}

#benefit-content {
    position: relative;
    border-radius: 16px;
    overflow: clip;
    height: 100%;
    min-height: 480px;
}
#benefit-content .tab-pane {
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity .3s ease;
    display: block !important;
}
#benefit-content .tab-pane.show {
    opacity: 1;
    transition: opacity .6s ease;
}
#benefits .overlay-images {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#benefits .overlay-images > div {
    position: absolute;
    transition: all .3s ease;
}
#benefits .main-image {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#benefits .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#benefits .overlay-images > div img {
    image-rendering: optimizequality;
}




@media (max-width: 767px) {
    #benefit-tabs .item:not(.active) .image-wrap {
        display: none;
    }
    #benefit-tabs .item .image-wrap {
        margin: var(--itemPadding);
        margin-bottom: 0;
        position: relative;
        height: 180px;
        border-radius: 6px;
        overflow: clip;
    }
    #benefits .overlay-images > div {
        max-width: 28%;
    }
}


/* video */
/*#video {
    --bs-gutter-x: 1.5rem;
    --videoAnim: all .3s ease;
    transition: var(--videoAnim);
}
#video:has(#player.contained) {
    padding-left: calc(2% + (var(--bs-gutter-x) * .5));
    padding-right: calc(2% + (var(--bs-gutter-x) * .5));
}
#video #player {
    line-height: 0;
    border-radius: 16px;
    overflow: clip;
    max-height: 100dvh;
}*/

#video {
    position: relative;
}

header.transparent {
    background-color: transparent;
}

#video .video-player {
    --videoAnim: all 1s ease;
    transition: var(--videoAnim);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50dvw;
    height: 50dvh;
    border-radius: 16px;
    overflow: hidden;
}

#video .video-player.playing {
    width: calc(100dvw + 2px);
    height: calc(100dvh + 2px);
    border-radius: 0px;
}

#video .video-player #player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#video .play-btn {
    --videoAnim: all 1s ease;
    transition: var(--videoAnim);
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: rgba(0,0,0,0.5);
}

#video .video-player.clicked .play-btn {
    opacity: 0;
    pointer-events: none;
}

#video .play-btn:after {
    content: "";
    display: block;
    width: 140px;
    height: 100%;
    max-width: calc(100% - 30px);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath fill='%23fff' d='M256 32a224 224 0 1 1 0 448 224 224 0 1 1 0-448zm0 480A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm72.7-256L208 329.7l0-147.5L328.7 256zM212.5 147.5c-7.4-4.5-16.7-4.7-24.3-.5s-12.3 12.3-12.3 20.9l0 176c0 8.7 4.7 16.7 12.3 20.9s16.8 4.1 24.3-.5l144-88c7.1-4.4 11.5-12.1 11.5-20.5s-4.4-16.1-11.5-20.5l-144-88z'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
    #video .video-player {
        position: static;
        transform: none;
        width: 100dvw;
        height: 65dvh;
        border-radius: 0;
    }
}


/* cycle */
#cycle {
    padding: 40px 2%;
    overflow: hidden;
    scroll-margin-top: 70px;
}
#cycle .container-fluid {
    display: flex;
    flex-direction: column;
    /* screen height - padding and header */
    height: calc(100dvh - 150px);
    max-height: 710px;
}
#cycle .intro {
    position: relative;
    z-index: 2;
}
#cycle-nav {
    margin-top: 50px;
    display: flex;
    gap: 25px;
    align-items: center;
}
#cycle-nav button {
    padding: 0;
    background: none;
    border: none;
}
#cycle .wrapper {
    position: relative;
    z-index: 1;
    height: calc(100dvh - 150px);
    /* transform: translateY(55%); */
    max-height: 710px;
}
#cycle-slider {
    position: relative;
    /* max-height: 100%; */
    aspect-ratio: 1/1;
    /* overflow: clip; */
    position: absolute;
    top: calc(var(--cycle-slide-gap) * -1);
    left: 0;
    right: 0;
    bottom: 0;
}
#cycle-slider-inner {
    --sliderOffset: calc(((var(--cycle-slider-height) / 2) - var(--cycle-slider-wrapper-height)) * -1);
    /* transform: translateY(var(--sliderOffset)); */
    position: relative;
}
#cycle .cycle-slide {
    --contentGap: 45px;
    --slideAnim: all .3s ease;
    position: relative;
    width: 30%;
    z-index: 1;
    display: flex;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
#cycle .cycle-slide.active {
    z-index: 2;
}
#cycle .cycle-slide:not(.active) {
    opacity: .07;
}
#cycle .cycle-slide .inner {
    aspect-ratio: 1/1;
    transition: var(--slideAnim);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
#cycle .cycle-slide .cycle-image {
    position: relative;
    width: 80%;
    height: 100%;
}
#cycle .cycle-slide .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    overflow: clip;
    transform: translateX(0);
    transition: var(--slideAnim);
    transition-delay: .5s;
}
#cycle .cycle-slide .img-add {
    display: block;
    position: absolute;
    z-index: 2;
    right: 80%;
    top: 50%;
    transform: translateY(-50%);
    image-rendering: optimizequality;
    transition: var(--slideAnim);
    transition-delay: .5s;
}
#cycle .cycle-slide .cycle-content {
    display: block;
    position: absolute;
    top: var(--contentGap);
    left: calc(80% + var(--contentGap));
    width: 70%;
    transition: var(--slideAnim);
    transition-delay: .5s;
    transform: none;
}
#cycle .cycle-slide .cycle-content .title {
    margin-bottom: 10px;
}
#cycle .cycle-slide .cycle-content .text {
    font-size: 16px;
    line-height: 1.4;
}
#cycle .cycle-slide .cycle-content .button {
    margin-top: 25px;
}
#cycle .cycle-slide .cycle-content .btn {
    --bs-btn-padding-x: 1.25rem;
    display: inline-flex;
    height: 27px;
}
#cycle .cycle-slide.next .cycle-image,
#cycle .cycle-slide.next + .cycle-slide .cycle-image {
    margin-left: auto;
}
#cycle .cycle-slide:not(.active) .main-image {
    transform: translateX(-10px);
    transition-delay: 0s !important;
    pointer-events: none;
}
#cycle .cycle-slide:not(.active) .img-add {
    /* display: none; */
    /* right: 50%; */
    opacity: 0;
    transition-delay: 0s !important;
    pointer-events: none;
}
#cycle .cycle-slide:not(.active) .cycle-content {
    /* display: none; */
    /* left: 50%; */
    opacity: 0;
    transition-delay: 0s !important;
    pointer-events: none;
}
#cycle #cycle-track {
    /* height: 500px; */
    width: 70%;
    aspect-ratio: 1/1;
    overflow: visible;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#cycle .st0 {
    fill: none;
    stroke: rgba(0,0,0,0);
    stroke-width: 2;
    stroke-miterlimit: 1;
}

@media (max-width: 767px) {
    #cycle .container-fluid {
        height: auto;
        max-height: none;
        position: relative;
    }
    #cycle .intro {
        position: static;
        text-align: center;
    }
    #cycle-nav {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 5dvw;
        justify-content: center;
    }
    #cycle .wrapper {
        transform: translateX(-50%);
        width: 200dvw;
        left: 50%;
        padding-top: 75dvw;
        max-height: 150dvw;
        overflow: clip;
    }
    #cycle .cycle-slide.active .cycle-image {
        margin: 0 auto;
    }
    #cycle .cycle-slide .cycle-content {
        width: auto;
        left: -15% !important;
        right: -15%;
        top: calc(100% + 30px);
        text-align: center;
    }
}


/* testimonials */
#testimonials {
    padding: 40px 2%;
    overflow: hidden;
}

#testimonials .word {
    display: inline-block;
}

#testimonials .letter {
    color: #D9D9D9; /* starting color (light gray) */
    display: inline-block;
    animation: colorFade 0.5s forwards;
    animation-delay: var(--delay, 0s);
    animation-play-state: paused;
}

#testimonials #testimonial-slider-container {
    position: relative;
}

#testimonials #testimonial-slider-container.animate {
    -webkit-transition: height 400ms ease-in-out;
    -moz-transition: height 400ms ease-in-out;
    -ms-transition: height 400ms ease-in-out;
    -o-transition: height 400ms ease-in-out;
    transition: height 400ms ease-in-out;
}

#testimonials .animate-fade-in .letter {
    animation-play-state: running;
}

@keyframes colorFade {
    to {
        color: #000; /* ending color (black) */
    }
}

#testimonials .intro {
    margin-bottom: 30px;
}
#testimonial-slider {
    max-width: 1030px;
    position: absolute;
    top: 50dvh;
    left: 50%;
    transform: translate(-50%);
    opacity: 0;
    visibility: hidden;
    /* overflow: visible; */
    -webkit-transition: opacity 800ms ease-in-out, top 400ms ease-in-out;
    -moz-transition: opacity 800ms ease-in-out, top 400ms ease-in-out;
    -ms-transition: opacity 800ms ease-in-out, top 400ms ease-in-out;
    -o-transition: opacity 800ms ease-in-out, top 400ms ease-in-out;
    transition: opacity 800ms ease-in-out, top 400ms ease-in-out;
}

.animate #testimonial-slider {
    opacity: 1;
    top: 0;
    visibility: visible;
}

#testimonial-slider .swiper-wrapper {
    height: auto;
}
#testimonial-slider .swiper-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}
#testimonial-slider .swiper-nav .swiper-button-disabled {
    opacity: .1;
    pointer-events: none;
}
#testimonial-slider .inner {
    padding: 35px 45px;
    border-radius: 16px;
    background-color: #F7F3F3;
}
#testimonial-slider .inner .text {
    margin-top: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}
#testimonial-slider .inner .text a {
    display: inline-block;
    width: 35px;
    height: 19px;
    background-image: url("data:image/svg+xml,%3Csvg width='35' height='19' viewBox='0 0 35 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.7451 1L34.1599 9.41479L25.7451 17.8296' stroke='black' stroke-width='1.40004' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M0.879883 9.40039H33.4307' stroke='black' stroke-width='1.40004' stroke-linecap='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 12px;
}
#testimonial-slider .inner .byline {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}
#testimonial-slider .inner .byline .avatar {
    flex: 1 0 72px;
    max-width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
}
#testimonial-slider .inner .byline .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#testimonial-slider .inner .byline .name strong {
    display: block;
}
#testimonial-slider .inner .img {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
#testimonial-slider .inner .img .add-img {
    position: absolute;
    top: 82%;
    left: 75%;
    width: 108px;
    height: 108px;
}

@media (max-width: 767px) {
    #testimonial-slider .inner {
        padding: 25px;
    }
    #testimonial-slider .inner .img {
        max-width: 60%;
        margin: 0 auto 20px;
    }
    #testimonial-slider .inner .img .add-img {
        width: 74px;
        height: 74px;
        top: auto;
        bottom: 0;
    }
    #testimonial-slider .inner .text,
    #testimonial-slider .inner .byline {
        font-size: 13px;
        line-height: 1.2;
    }
}


/* products */
#products {
    padding: 40px 2%;
    /*position: relative;*/
}

#products .section-inner {
    /*position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100dvw;*/
}

#products .intro {
    margin-bottom: 30px;
}
#featured-products > nav {
    padding-left: 32px;
    padding-right: 32px;
    font-weight: 400;
}
#featured-products .nav-tabs {
    position: relative;
    --bs-nav-tabs-border-width: 0;
    --bs-nav-tabs-border-color: #FEE000;
    --bs-nav-tabs-border-radius: 10px;
    --bs-nav-tabs-link-hover-border-color: #FEE000 #FEE000 #FEE000;
    --bs-nav-tabs-link-active-color: #000;
    --bs-nav-tabs-link-active-bg: #FEE000;
    --bs-nav-tabs-link-active-border-color: #FEE000 #FEE000 #FEE000;
}

#featured-products .nav-tabs .nav-link.active {
    background-color: transparent;
}

#featured-products .nav-tabs .tab-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 100%;
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-radius: var(--bs-nav-tabs-border-radius) var(--bs-nav-tabs-border-radius) 0 0;
    z-index: -1;
    -webkit-transition: all 350ms ease-in-out;
    -moz-transition: all 350ms ease-in-out;
    -ms-transition: all 350ms ease-in-out;
    -o-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
}
#featured-products .nav-tabs .tab-bg-inner {
    --curl-width: 18px;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    padding: 0;
    /* overflow: clip; */
    font-size: 16px;
    pointer-events: none;
    height: 100%;
    display: flex;
}
#featured-products .nav-tabs .tab-bg-inner::before,
#featured-products .nav-tabs .tab-bg-inner::after {
    content: "";
    position: absolute;
    display: block;
    width: var(--curl-width);
    height: var(--curl-width);
    bottom: 0;
    background-color: var(--bs-nav-tabs-link-active-bg);
}
#featured-products .nav-tabs .tab-bg-inner::before {
    /* display: none; */
    left: calc(var(--curl-width) * -1);
}
#featured-products .nav-tabs .tab-bg-inner::after {
    right: calc(var(--curl-width) * -1);
}
#featured-products .nav-tabs .tab-bg-inner > span {
    position: relative;
    z-index: 1;
    display: block;
    flex: 1 0 100%;
}
#featured-products .nav-tabs .tab-bg-inner > span::before,
#featured-products .nav-tabs .tab-bg-inner > span::after {
    content: "";
    position: absolute;
    display: block;
    width: var(--curl-width);
    height: var(--curl-width);
    bottom: 0;
    background-color: #FFF;
}
#featured-products .nav-tabs .tab-bg-inner > span::before {
    /* display: none; */
    left: calc(var(--curl-width) * -1);
    border-bottom-right-radius: var(--curl-width);
}
#featured-products .nav-tabs .tab-bg-inner > span::after {
    right: calc(var(--curl-width) * -1);
    border-bottom-left-radius: var(--curl-width);
}

#featured-products .nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: #000;
    --bs-nav-link-hover-color: #000;
    --bs-nav-link-disabled-color: #6c757d;
}
#featured-products .tab-content {
    background-color: #FEE000;
    border-radius: 24px;
}
#featured-products .inner {
    background-color: #FEE000;
    padding: 65px 80px 65px 60px;
    border-radius: 24px;
}
#featured-products .inner .main-title {
    color: #000;
    text-decoration: none;
}

#featured-products .inner .row {
    --bs-gutter-x: 10%;
}
#featured-products .inner .content {
    font-weight: 400;
    align-self: flex-end;
}
#featured-products .inner .img img {
    border-radius: 12px;
    overflow: hidden;
}
#featured-products .tab-toggler {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    margin-top: 30px;
    margin-bottom: -15px;
}
#featured-products .tab-toggler button {
    background: none;
    padding: 0;
    border: none;
}
#featured-products .tab-toggler .disabled {
    opacity: .1;
    pointer-events: none;
}

@media (max-width: 767px) {
    #products {
        padding-left: 0;
        padding-right: 0;
    }
    #products .container-fluid {
        --bs-gutter-x: 0;
    }
    #featured-products > nav {
        padding-left: 0;
        padding-right: 0;
        width: 100dvw;
        overflow: clip;
    }
    #featured-products .nav {
        flex-wrap: nowrap;
        padding-left: 13px;
        padding-right: 13px;
        gap: 6px;
    }
    #featured-products .tab-content {
        background-color: #FEE000;
        border-radius: 10px;
    }
    #featured-products .inner {
        border-radius: 10px;
        padding: 40px 35px;
    }
    #featured-products .inner .content {
        text-align: center;
        font-size: 13px;
        line-height: 1.2;
    }
    #featured-products .inner .content .h2 {
        font-size: 20px;
    }
    #featured-products .tab-toggler {
        margin-bottom: 15px;
        justify-content: center;
    }
}


/* blogs */
#blogs {
    padding: 40px 2%;
    overflow: clip;
}
#blogs .intro {
    margin-bottom: -30px;
    padding: 0 135px;
}
#blogs .outro {
    margin-top: 40px;
}
#blogs .outro .btn {
    display: inline-flex;
    background-color: rgba(0,0,0,0);
    border: solid 1px #000;
    font-weight: 400;
    color: #000;
    height: auto;
}
#blogs .outro .btn:hover,
#blogs .outro .btn:focus {
    background-color: #F7F3F3;
    border-color: #F7F3F3;
}
#featured-blogs {
    padding-top: 60px;
    overflow: visible;
}
#featured-blogs .swiper-wrapper {
    height: auto;
}
#featured-blogs .swiper-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    position: absolute;
    top: 0;
    right: 20px;
}
#featured-blogs .swiper-nav .swiper-button-disabled {
    opacity: .1;
    pointer-events: none;
}
#featured-blogs .swiper-slide {
    height: auto;
}
#featured-blogs .inner {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: clip;
    text-decoration: none !important;
    height: 100%;
    background-color: #F7F3F3;
}
#featured-blogs .inner .img {
    aspect-ratio: 2/1.15;
    overflow: hidden;
    -webkit-transition: all 350ms ease-in-out;
    -moz-transition: all 350ms ease-in-out;
    -ms-transition: all 350ms ease-in-out;
    -o-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
}

#featured-blogs .inner:hover .img {
    margin-top: calc(-100% / (2/1.15));
}

#featured-blogs .inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}
#featured-blogs .inner:hover .img img {
    /*transform: scale(1.1);*/
}
#featured-blogs .inner .content {
    padding: 28px 40px;
    /*background-color: #F7F3F3;*/
    color: #000;
    /*flex: 1;*/
    display: flex;
    flex-direction: column;
}
#featured-blogs .inner .content .tag {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 25%;
    margin-bottom: 12px;
}
#featured-blogs .inner .content .title {
    margin-bottom: 12px;
}
#featured-blogs .inner .content .meta {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #313131;
}

#featured-blogs .inner .content .hover {
    opacity: 0;
    padding-top: 30px;
    -webkit-transition: all 350ms ease-in-out;
    -moz-transition: all 350ms ease-in-out;
    -ms-transition: all 350ms ease-in-out;
    -o-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
    font-size: 15px;
    line-height: 1.3;
}

#featured-blogs .inner:hover .content .hover {
    opacity: 1;
}

#featured-blogs .inner .content .hover p {
    margin: 0 0 15px;
}

#featured-blogs .swiper-slide {
    opacity: 0;
    transform: translateY(60px);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
#blogs.active-section #featured-blogs .swiper-slide {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}
#featured-blogs .swiper-slide:nth-child(4) { transition-delay: 0.1s; }
#featured-blogs .swiper-slide:nth-child(3) { transition-delay: 0.2s; }
#featured-blogs .swiper-slide:nth-child(2) { transition-delay: 0.3s; }
#featured-blogs .swiper-slide:nth-child(1) { transition-delay: 0.4s; }

@media (min-width: 768px) {
    #featured-blogs .swiper-pagination {
        display: none;
        visibility: hidden;
        pointer-events: none;
    }
}
@media (max-width: 767px) {
    #blogs .intro {
        padding: 0;
    }
    #featured-blogs .swiper-nav {
        display: none;
        visibility: hidden;
        pointer-events: none;
    }
    #featured-blogs .swiper-pagination {
        bottom: -60px;
    }
    #featured-blogs .swiper-pagination-bullet {
        background: #FEE000;
        opacity: 1;
    }
    #featured-blogs .swiper-pagination-bullet-active {
        background: #19BBEE;
    }
    #blogs .outro {
        opacity: 0;
        pointer-events: none;
    }
    #featured-blogs .inner .content {
        padding: 18px 24px;
    }
    #featured-blogs .inner .content .tag {
        font-size: 13px;
    }
}


/* cta */
#cta {
    padding: 40px 2%;
}
#cta .inner {
    background-color: #FEE000;
    border-radius: 22px;
    padding: 120px 85px 85px;
    text-align: center;
}
#cta .inner .title {
    margin-bottom: 32px;
}
#cta .inner .title h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
#cta .inner .title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    line-height: 1;
}
#cta .inner .title span.dark {
    color: #FEE000;
    background-color: #000;
    height: 80px;
    border-radius: 24px 40px 40px 0;
    padding: 10px 40px;
}
#cta .inner .title span.light {
    background-color: #FFF;
    height: 102px;
    border-radius: 51px 24px 0 51px;
    padding: 12px 25px 12px 12px;
}
#cta .inner .title span.light::before {
    content: "";
    display: block;
    width: 78px;
    height: 78px;
    background-image: url("data:image/svg+xml,%3Csvg width='79' height='79' viewBox='0 0 79 79' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.297852 39.4851C0.297852 17.9871 17.7254 0.55957 39.2234 0.55957C60.7214 0.55957 78.149 17.9871 78.149 39.4851C78.149 60.9831 60.7214 78.4107 39.2234 78.4107C17.7254 78.4107 0.297852 60.9831 0.297852 39.4851Z' fill='%23FEE000'/%3E%3Cpath d='M28.2828 16.4889C29.038 14.3652 32.0414 14.3652 32.7967 16.4889L33.9623 19.7667C34.928 22.4819 37.0644 24.6183 39.7796 25.5839L43.0574 26.7496C45.1811 27.5048 45.1811 30.5082 43.0574 31.2635L39.7796 32.4291C37.0644 33.3948 34.928 35.5312 33.9623 38.2464L32.7967 41.5242C32.0414 43.6479 29.038 43.6479 28.2828 41.5241L27.1171 38.2464C26.1515 35.5312 24.0151 33.3948 21.2999 32.4291L18.0221 31.2635C15.8984 30.5082 15.8984 27.5048 18.0221 26.7496L21.2999 25.5839C24.0151 24.6183 26.1515 22.4819 27.1171 19.7667L28.2828 16.4889Z' fill='black'/%3E%3Cpath d='M57.1183 34.4232C57.4424 33.512 58.731 33.512 59.0551 34.4232C59.8837 36.7532 61.7171 38.5866 64.0471 39.4152C64.9583 39.7393 64.9583 41.0279 64.0471 41.352C61.7171 42.1806 59.8837 44.0139 59.0551 46.344C58.731 47.2552 57.4424 47.2552 57.1183 46.344C56.2897 44.0139 54.4564 42.1806 52.1263 41.352C51.2151 41.0279 51.2151 39.7393 52.1263 39.4152C54.4564 38.5866 56.2897 36.7532 57.1183 34.4232Z' fill='black'/%3E%3Cpath d='M42.8857 48.0481C43.2634 46.9863 44.7651 46.9863 45.1427 48.0481L45.6302 49.4189C46.5958 52.1341 48.7322 54.2705 51.4474 55.2361L52.8182 55.7236C53.88 56.1013 53.88 57.6029 52.8182 57.9806L51.4474 58.4681C48.7322 59.4337 46.5958 61.5701 45.6302 64.2853L45.1427 65.6561C44.7651 66.7179 43.2634 66.7179 42.8857 65.6561L42.3982 64.2853C41.4326 61.5701 39.2962 59.4337 36.581 58.4681L35.2103 57.9806C34.1484 57.6029 34.1484 56.1013 35.2103 55.7236L36.581 55.2361C39.2962 54.2705 41.4326 52.1341 42.3982 49.4189L42.8857 48.0481Z' fill='black'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
#cta .inner .text {
    max-width: 540px;
    margin: 0 auto;
    line-height: 22px;
    font-weight: 400;
}
#cta .inner .button {
    margin-top: 20px;
}
#cta .inner .button .btn {
    display: inline-flex;
    background-color: #000;
    color: #FEE000;
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    height: 60px;
    border-radius: 30px;
    border: solid 2px #000;
    transition: all .3s ease;
}
#cta .inner .button .btn:hover,
#cta .inner .button .btn:focus {
    background-color: rgba(0,0,0,0);
    color: #000;
}

#cta .inner {
    transform: translateY(100px);
    transition: transform 0.3s ease-out;
}
#cta .inner .title span.dark {
    transform: translateX(-100px);
    opacity: 0;
    transition: all 0.3s ease-out;
    transition-delay: .3s;
}
#cta .inner .title span.light {
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.3s ease-out;
    transition-delay: .5s;
}
#cta.active-section .inner,
#cta.active-section .inner .title span {
    transform: translate(0, 0) !important;
    opacity: 1;
}
/* #cta .inner, #cta .inner .title span { transition-delay: 0.4s; } */

@media (max-width: 767px) {
    #cta .inner {
        padding: 50px 20px;
    }
    #cta .inner .text {
        font-size: 16px;
    }
    #cta .inner .title span.dark {
        height: 60px;
    }
    #cta .inner .title span.light::before {
        width: 50px;
        height: 50px;
    }
    #cta .inner .title span.light {
        height: 74px;
    }
    #cta .inner .button .btn {
        font-size: 16px;
        height: 50px;
    }
}




@media only screen and (max-width: 767px) {
    body > section {
        min-height: unset;
        max-height: unset;
        height: auto;
    }

}
