:root {
    --heading-color: #292B3C;
    --p-color-1: #5F6480;
    --p-color-2: #4E5169;
    --p-color-3: #6E7291;
}

#main-content {
    position: relative !important;
}

h2,
h3,
h4 {
    color: var(--heading-color);
}

#sec-2-home p:not(.page-reference) {
    color: var(--p-color-1);
}

#sec-3-home p:not(.page-reference) {
    color: var(--p-color-2);
}

#sec-4-home li {
    color: var(--heading-color);
}

#sec-4-home .sec-4-header p:not(.page-reference) {
    color: var(--p-color-2);
}

#sec-5-home p:not(.page-reference) {
    color: var(--p-color-2);
}

#sec-5-home .marquee-item>p {
    color: var(--p-color-2);
}

#sec-6-home p:not(.page-reference) {
    color: var(--p-color-2);
}

#sec-7-home .card-desc {
    color: #2D293C;
}

.page-reference {
    color: var(--p-color-3);
}

/* section 1 */
/* #sec-1-home{padding-top: clamp(40px, 8vh, 108px);padding-bottom: var(--spacing-160); overflow: hidden; max-height: 760px;} */


#sec-1-home {
    overflow: hidden;
    max-height: 1500px;
    position: absolute;
    z-index: 10;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

#sec-1-home>.container {
    margin: 0 auto;
    width: 100%;
}

#sec-1-home h2 {
    font-size: 120px;
}



#sec-1-home .sec-1-container {
    position: relative;
    overflow: hidden;
}

/* #sec-1-home .sec-1-row-animated, .sec-1-row-animated .d-block{font-size: clamp(70px, 12vh, 120px) !important;} */
#sec-1-home .sec-1-row-animated {
    color: var(--heading-color);
    margin: 0 !important;
}

#sec-1-home .sec-1-row-3-animated,
.sec-1-row-4-animated {
    color: #F67875 !important;
}

#sec-1-home .sec-1-row-fading-in:nth-child(1) {
    animation-delay: 300ms;
}

#sec-1-home .sec-1-row-fading-in:nth-child(2) {
    animation-delay: 800ms
}

#sec-1-home .sec-1-row-fading-in:nth-child(3) {
    animation-delay: 1200ms;
}

#sec-1-home .sec-1-row-fading-in:nth-child(4) {
    animation-delay: 1600ms;
}

#sec-1-home .sec-1-row-fading-in {
    animation: row-fade-in 1.5s forwards ease-in-out;
    opacity: 0;
}

#sec-1-home .sec-1-row-fading-out {
    animation: row-fade-out 1.5s forwards ease-in-out;
}

#sec-1-home.sec-1-disappear {
    transform: translateY(-100vh);
    padding: 0 !important;
    transition: all 1s ease-in-out;
}

@media (orientation: landscape) {
    #sec-1-home h2 {
        font-size: clamp(50px, 15vh, 120px);
    }
}

@media (orientation: portrait) {
    @media(min-width: 769px) {
        #sec-1-home h2 {
            font-size: clamp(60px, 18vw, 120px);
        }
    }

    @media(max-width: 768px) {
        #sec-1-home h2 {
            font-size: clamp(60px, 18vw, 90px);
        }
    }

    @media(max-height: 795px) {
        #sec-1-home h2 {
            font-size: clamp(53px, 8.6vh, 90px);
        }
    }

    @media(max-width: 320px) {}
}


@keyframes row-fade-in {
    0% {
        transform: translateY(200px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes row-fade-out {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-200px);
        opacity: 0;
    }
}


.section-translate {
    transition: 1.5s ease-in-out;
    opacity: 1;
    transform: translateY(100vh);
}

/* section 2 */
#sec-2-home .a-desktop-view {
    display: flex;
}

#sec-2-home .a-mobile-view {
    display: none;
}

#sec-2-home a {
    width: fit-content;
}

#sec-2-home.padding-dynamic {
    padding-top: 60px;
    padding-bottom: 60px;
}

#sec-2-home {
    padding-top: var(--spacing-160);
    padding-bottom: var(--spacing-160);
    transition: 1s ease-in-out;
}

#sec-2-home h2,
#sec-2-home h2 .d-block {
    font-size: var(--font-size-64);
    color: var(--heading-color);
}

#sec-2-home h2 {
    margin-bottom: var(--spacing-40);
}

#sec-2-home .col-7 .p-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-24);
    margin-bottom: var(--spacing-40);
}

#sec-2-home .col-7 p {
    color: var(--p-color-1);
    margin: 0;
    font-size: var(--font-size-20);
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

#sec-2-home .col-7 {
    position: relative;
}

#sec-2-home .col-7 .img-container {
    display: none;
}

#sec-2-home .col-5 {
    display: flex;
}

#sec-2-home .img-container {
    margin: auto auto 90px;
    max-width: 400px;
    position: relative;
    height: 55%;
    width: 100%;
}

#sec-2-home .img-container .img-flower-2 {
    opacity: 0;
    max-width: 500px;
    transition: 1.5s ease;
    position: relative;
    bottom: 50%;
    left: 30%;
    transform: rotate(45deg) translateX(-10%);
}

#sec-2-home .img-container .img-flower-2.flower-in {
    transform: rotate(0deg) translateX(-35%);
    opacity: 1;
    transition-delay: 600ms;
}

#sec-2-home .img-container .img-phone-2 {
    width: 100%;
    max-width: 253px;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

#sec-2a-home {
    padding-bottom: 160px;
}

#sec-2a-home .container-2 {
    display: flex;
    flex-direction: column;
}

#sec-2a-home .container-2 .row-1 {
    display: flex;
    gap: 24px;
}

#sec-2a-home .container-2 .row-1 .left-col {
    padding: 36px 39.728px 37px 40.205px;
}

#sec-2a-home .container-2 .row-1 .right-col {
    max-width: 700px;
    display: flex;
    align-items: center;
}

#sec-2a-home .container-2 .row-2 {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

#sec-2a-home .container-2 .row-2 .left-col {
    max-width: 496px;
}

#sec-2a-home .container-2 .row-2 .right-col {
    max-width: 520px;
}


/* section 3 */
#sec-3-home {
    padding-top: var(--spacing-160);
    padding-bottom: var(--spacing-160);
    background-color: #EEE4F8;
    position: relative;
}

#sec-3-home>.illu-sec-3-eye {
    opacity: 0;
    position: absolute;
    right: -30px;
    width: 40vw;
    max-width: 520px;
    bottom: clamp(-450px, -40vw, -100px);
    rotate: -18deg;
}

#sec-3-home>.illu-sec-3-eye.eye-is-visible {
    opacity: 1;
}

#sec-3-home .part-1 {
    padding-right: var(--spacing-60) !important;
}

#sec-3-home .part-1 .page-reference {
    margin-bottom: var(--spacing-8);
}

#sec-3-home .part-1 h2,
.part-1>p:not(.page-reference) {
    margin-bottom: var(--spacing-40);
}

#sec-3-home .part-2 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-16);
}

#sec-3-home .sec-3-card {
    padding: var(--spacing-40);
    background-color: #D3BDED;
    border-radius: var(--spacing-16);
}

#sec-3-home .sec-3-card>h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-24);
}

#sec-3-home .sec-3-card>p {
    margin: 0;
    font-size: var(--font-size-18);
}


/* section 4 */
#sec-4-home {
    padding-top: var(--spacing-160);
    padding-bottom: var(--spacing-160);
}

#sec-4-home .sec-4-header {
    margin-bottom: var(--spacing-80);
}

#sec-4-home .section-row:not(:last-child) {
    margin-bottom: var(--spacing-80);
}

#sec-4-home .row-image-left,
.row-image-right {
    display: flex !important;
    gap: var(--spacing-24);
    align-items: center;
}

#sec-4-home .col-left,
.col-right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-40);
    width: 50%;
}

#sec-4-home .col-left h3,
.col-right h3 {
    margin: 0;
}

#sec-4-home .col-left ul,
.col-right ul {
    width: 100%;
    margin: 0;
    list-style: none;
}

#sec-4-home .col-left ul>li,
.col-right ul>li {
    margin-bottom: var(--spacing-16);
    display: flex;
    gap: var(--spacing-24);
}

#sec-4-home .col-left ul>li::before,
.col-right ul>li::before {
    margin-top: 11px;
    content: '';
    min-width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #D3BDED;
}

#sec-4-home .col-left>img,
.col-right>img {
    width: 100%;
    border-radius: var(--spacing-16);
}

#sec-4-home .row-image-left .col-right {
    padding-left: clamp(40px, 8vw, 108px);
    padding-top: var(--spacing-8);
}

#sec-4-home .row-image-right .col-left {
    padding-right: clamp(30px, 5vw, 80px);
    padding-top: var(--spacing-8);
}

#sec-4-home .h3-lila-underline {
    width: fit-content;
}

#sec-4-home .h3-lila-underline>img {
    width: 100%;
    height: 15px;
    object-fit: cover;
}



/* section 5 - green */
/* #sec-5-home */
#sec-5-home {
    padding-top: var(--spacing-160);
    padding-bottom: var(--spacing-160);
    background-color: #DCF1CC;
}

#sec-5-home .cols:not(:last-child) {
    margin-bottom: var(--spacing-24);
}

#sec-5-home .part-1 h2 {
    margin: 0;
}

#sec-5-home .part-2 .left-col {
    display: flex;
    align-items: center;
}

#sec-5-home .part-2 .left-col>p {
    margin: 0;
}

#sec-5-home .part-2 .right-col {
    padding-left: clamp(20px, 8vw, 104px);
    padding-right: clamp(20px, 8vw, 104px);
}

#sec-5-home .part-2 .right-col .imgs-container-flex {
    display: flex;
    justify-content: space-between;
}

#sec-5-home .part-2 .right-col .imgs-container-flex:not(:last-child) {
    margin-bottom: var(--spacing-24);
}

#sec-5-home .part-2 .right-col .imgs-container-flex>img {
    width: clamp(110px, 15vw, 160px);
}

#sec-5-home .part-3 .col-6 {
    display: flex;
    gap: var(--spacing-24);
}

#sec-5-home .part-btn {
    justify-content: flex-end;
}

#sec-5-home .part-4 {
    overflow: hidden;
    position: relative;
    display: flex;
    white-space: nowrap;
}

#sec-5-home .part-4::before {
    content: '';
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100px;
    background: linear-gradient(to left, transparent, #DCF1CC);
}

#sec-5-home .part-4::after {
    content: '';
    z-index: 5;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100px;
    background: linear-gradient(to right, transparent, #DCF1CC);
}

#sec-5-home .part-4 .marquee-item {
    animation: marquee-p 20s linear infinite;
    margin-top: var(--spacing-80);
    padding-left: 0;
    padding-right: 0;
    display: flex;
    white-space: nowrap;
    width: fit-content;
}
#sec-5-home .paused-animation{animation-play-state: paused !important;}

/* #sec-5-home .part-4:hover .marquee-item {animation-play-state: paused;} */
#sec-5-home .part-4 p {
    font-family: 'EC Square Sans Pro M';
    margin: 0;
    white-space: nowrap;
    margin-right: var(--spacing-80);
    font-size: var(--font-size-18);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.88px;
    text-transform: uppercase;
}

#sec-5-home .container {
    position: relative;
}

#sec-5-home .pause-btn {
    position: absolute;
    bottom: 9px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background-color: #DCF1CC;
    z-index: 10;
    width: 36px;
    height: 36px;
    padding: var(--spacing-8);
    gap: var(--spacing-16);
    border-radius: 8px;
    min-width: 36px;
    cursor: pointer;
}

#sec-5-home .pause-btn:hover {
    background: var(--color-primary-2);
    border-color: var(--color-primary);
}

#sec-5-home .pause-btn.pause::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('/digital-building-blocks/sites/download/attachments/694487759/icon-pause.svg');
    background-size: contain;
    background-repeat: no-repeat;
    top: 7px;
    left: 7px;
}

#sec-5-home .pause-btn.play::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('/digital-building-blocks/sites/download/attachments/694487759/icon-play.svg');
    background-size: contain;
    background-repeat: no-repeat;
    top: 5px;
    left: 5px;
}


/* section 6 */
#sec-6-home {
    padding-top: var(--spacing-160);
    padding-bottom: var(--spacing-160);
    background-color: #F7DDDF;
}

#sec-6-home .left-col .page-reference {
    margin-bottom: var(--spacing-8);
}

#sec-6-home .left-col h2 {
    margin-bottom: var(--spacing-40);
}

#sec-6-home .left-col p {
    margin-bottom: var(--spacing-40);
    max-width: 480px;
}

#sec-6-home .left-col .btn {
    margin: 0;
    width: fit-content;
}

/* #sec-6-home .right-col img{width: 100%; max-width: 500px;} */
#sec-6-home .right-col .dandellion-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100%;
}

#sec-6-home .right-col .dandellion-container>.dand-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#sec-6-home .right-col .dandellion-container>.dand-inside {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 60%;
    transition: 0.7s ease-in-out;
}

#sec-6-home .right-col .dandellion-container>.dand-inside.dand-inside-animation {
    width: 80%;
}

/* section 7 */
#sec-7-home {
    position: relative;
    padding-top: var(--spacing-160);
    padding-bottom: var(--spacing-160);
    background: linear-gradient(0deg, #FFF 0%, #FCFAFE 10.82%, #F9F5FD 38.63%, #F6F6FE 65.54%, #FBFBFF 90.05%, #FFF 100%);
}

#sec-7-home .sec-7-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-60);
    align-items: center;
}

#sec-7-home .sec-7-header {
    margin: 0;
    text-align: center;
    width: 100%;
}

#sec-7-home .sec-7-header h2,
#sec-7-home .sec-7-header .d-block {
    max-width: unset;
}

#sec-7-home .sec-7-cards-container {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-24);
}

#sec-7-home .cards {
    display: flex;
    gap: var(--spacing-24);
}

#sec-7-home .card {
    border-radius: var(--spacing-16);
    overflow: hidden;
}

#sec-7-home .card .card-title {
    line-height: 40px;
    margin: 0;
    background-color: #D6D9F9;
    padding: var(--spacing-24) 32px;
    display: flex;
    align-items: center;
    color: var(--p-color-2)
}

#sec-7-home .card .card-desc {
    padding: var(--spacing-40) 32px;
    background-color: white;
}

#sec-7-home .card-1,
.card-4 {
    display: flex;
}

#sec-7-home .card-1 .card-title {
    order: 1;
    width: 50%;
}

#sec-7-home .card-1 .card-desc {
    order: 2;
    width: 50%;
}

#sec-7-home .card-4 .card-title {
    order: 2;
    width: 50%;
}

#sec-7-home .card-4 .card-desc {
    order: 1;
    width: 50%;
}

#sec-7-home .card-2,
.card-3 {
    display: flex;
    flex-direction: column;
    width: 50%;
}

#sec-7-home .card-2 .card-title {
    order: 2;
    flex: 1;
}

#sec-7-home .card-2 .card-desc {
    order: 1;
}

#sec-7-home .card-3 .card-title {
    order: 1;
    flex: 1;
}

#sec-7-home .card-3 .card-desc {
    order: 2;
}

#sec-7-home .illu-sec-7 {
    transition: 0.8s ease;
    position: absolute;
    left: -7%;
    top: 50%;
    transform: translateY(-15%);
    width: calc(50vw - 250px);
    max-width: 450px;
}

#sec-7-home .illu-sec-7.move-in {
    left: 0%;
}

#sec-7-home .sec-7-inv-observe {
    z-index: -99;
    height: 200px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    opacity: 0;
    margin: 0 !important;
    padding: 0 !important;
}

/* #sec-7-home .sec-7-buttons-bottom > a{text-align: left !important;} */


@keyframes marquee-p {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media(max-width: 768px) {

    /* h2:not(:first-child){font-size: var(--font-size-44); line-height: 48px;} */
    /* .section:not(#sec-1-home) h2 {font-size: var(--font-size-44);} */

    /* section 1 */
    /* #sec-1-home{padding-top: var(--spacing-80);padding-bottom: var(--spacing-80);} */
    #sec-1-home .container {
        padding-top: var(--spacing-80);
        padding-bottom: var(--spacing-80);
    }

    #sec-1-home .sec-1-container .sec-1-row-animated {
        padding-right: var(--spacing-16);
    }

    /* #sec-1-home .sec-1-container h2{font-size: 70px;} */
    /* #sec-1-home .sec-1-row-animated{font-size: var(--font-size-64)!important; line-height: 78px;} */
    /* #sec-1-home .sec-1-row-animated{line-height: 78px;} */


    /* section 2 */
    #sec-2-home .a-desktop-view {
        display: none;
    }

    #sec-2-home .a-mobile-view {
        display: flex;
        margin-top: var(--spacing-60);
    }

    #sec-2-home.padding-dynamic {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #sec-2-home {
        padding-top: var(--spacing-60);
        padding-bottom: var(--spacing-60);
    }

    #sec-2-home h2,
    #sec-2-home h2 .d-block {
        font-size: 52px;
    }

    #sec-2-home .col-7 .img-container {
        display: block;
        height: 100vw;
        max-height: 400px;
        margin: var(--spacing-80) auto 0 auto
    }

    #sec-2-home .img-container .img-phone-1 {
        width: 50%;
        max-width: 320px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    #sec-2-home .img-container .img-flower-1 {
        width: 100%;
        opacity: 0;
        max-width: 500px;
        transition: 1s ease;
        position: absolute;
        bottom: 0;
        left: 35%;
        rotate: 45deg;
    }

    #sec-2-home .img-container .img-flower-1.flower-in {
        rotate: 0deg;
        left: 5%;
        opacity: 1;
        bottom: 8%;
    }

    #sec-2-home .col-7>a {
        margin-bottom: var(--spacing-24);
    }

    #sec-2-home .col-5 {
        display: none;
    }

    #sec-2a-home {
        padding-top: 40px;
        padding-bottom: 64px;
    }

    #sec-2a-home .row-1 .left-col {
        display: none;
    }

    #sec-2a-home .container-2 .row-2 {
        flex-direction: column;
        gap: unset;
    }

    /* section 3 */
    #sec-3-home {
        padding-top: var(--spacing-60);
        padding-bottom: var(--spacing-60);
    }

    #sec-3-home .part-1 {
        padding-bottom: var(--spacing-24);
    }

    #sec-3-home .part-1 h2 {
        margin-bottom: var(--spacing-24);
    }

    #sec-3-home .part-1 p {
        margin-bottom: var(--spacing-24);
    }

    #sec-3-home>img {
        display: none;
    }

    #sec-3-home .sec-3-card {
        padding: var(--spacing-24);
    }

    #sec-3-home .sec-3-card h4 {
        margin-bottom: var(--spacing-16);
    }

    /* section 4 */
    #sec-4-home {
        padding-top: var(--spacing-60);
        padding-bottom: var(--spacing-60);
    }

    #sec-4-home .sec-4-header {
        margin-bottom: var(--spacing-40);
    }

    /* #sec-4-home h2{line-height: 48px;} */
    #sec-4-home .section-row:not(:last-child) {
        margin-bottom: var(--spacing-60);
    }

    #sec-4-home .section-row:nth-child(3) .h3-lila-underline {
        padding-right: 6rem;
    }

    #sec-4-home .row-image-left,
    .row-image-right {
        flex-direction: column;
        gap: var(--spacing-24);
    }

    #sec-4-home .row-image-left .col-right {
        padding-left: unset;
        padding-top: unset;
    }

    #sec-4-home .row-image-right .col-left {
        padding-left: unset;
        padding-right: unset;
        padding-top: unset;
    }

    #sec-4-home .row-image-left .col-left,
    .row-image-right .col-right {
        order: 1;
    }

    #sec-4-home .row-image-left .col-right,
    .row-image-right .col-left {
        order: 2;
    }

    #sec-4-home .col-left,
    .col-right {
        width: 100%;
        gap: var(--spacing-24);
    }

    #sec-4-home .col-left h3,
    .col-right h3 {
        font-size: var(--font-size-32);
    }

    #sec-4-home .col-left ul,
    .col-right ul {
        max-width: unset;
        padding-left: var(--spacing-16);
    }


    /* section 5 */

    #sec-5-home {
        padding-top: var(--spacing-60);
        padding-bottom: var(--spacing-60);
    }

    /* #sec-5-home h2{line-height: 48px;} */

    #sec-5-home .part-1 {
        margin-bottom: var(--spacing-8) !important;
    }

    #sec-5-home .part-2 {
        margin-bottom: var(--spacing-40) !important;
    }

    #sec-5-home .part-2 .left-col {
        margin-bottom: var(--spacing-24);
    }

    #sec-5-home .part-2 .right-col {
        max-width: 400px;
        padding: var(--spacing-16);
    }

    #sec-5-home .part-2 .right-col .imgs-container-flex {
        justify-content: unset;
        gap: var(--spacing-24);
    }

    #sec-5-home .part-3 .col-6 {
        flex-direction: column;
    }

    #sec-5-home .part-3 .col-6>a {
        width: fit-content;
    }

    #sec-5-home .part-4 {
        display: none;
    }


    #sec-5-home .pause-btn {
        display: none;
    }
    


    /* section 6 */
    #sec-6-home {
        padding-top: var(--spacing-60);
        padding-bottom: var(--spacing-60);
    }

    #sec-6-home h2 {
        font-size: var(--font-size-44);
    }

    #sec-6-home .right-col {
        display: none;
    }


    /* section 7 */
    #sec-7-home .sec-7-header h2,
    #sec-7-home .sec-7-header .d-block {
        font-size: var(--font-size-44);
    }

}

@media (max-width: 648px) {
    #sec-7-home .sec-7-header h2 {
        text-align: left;
    }

    #sec-7-home .cards {
        flex-direction: column;
    }

    #sec-7-home .card {
        flex-direction: column;
        width: 100%;
    }

    #sec-7-home .card .card-title {
        order: 1;
        width: 100%;
        font-size: 32px;
        line-height: 40px;
        padding: var(--spacing-40) var(--spacing-24);
    }

    #sec-7-home .card .card-desc {
        order: 2;
        width: 100%;
    }

    #sec-7-home .sec-7-buttons-bottom {
        width: 100%;
    }
}

@media(max-width: 1100px) {

    /* section 7 */
    #sec-7-home>img {
        display: none;
    }
}