/* RESET + VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --solway-font: "Solway", serif;
    --dosis-font: "Dosis", sans-serif;
    --text-color: #413A29;
}

body {
    overflow-x: hidden;
}


p {
    font-family: var(--dosis-font);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--solway-font);
    margin: 0;
}

.main-cont {
    /* max-width: 1920px; */
}


.container-fluid {
    padding: 0 180px;

}

/* HEADER */
.header_wrapper {
    background-color: #CE6166;
    height: 130px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header_wrapper p {
    font-family: var(--solway-font);
    font-size: 22px;
    line-height: 27px;
    /* font-weight: 700; */
    color: #F9EED9;
    align-items: center;
    padding: 25px 0;
}


/* RIBBON (TOP) */
.ribbon {
    position: relative;
    top: -10px;
    background: hsl(43, 87%, 61%);
    width: min(820px, 90%);
    /* padding: 18px 15px; */
    clip-path: polygon(4% 0%,
            96% 0%,
            93% 51%,
            96% 100%,
            4% 100%,
            7% 50%);
    margin: -4px auto;
    text-align: center;

}

.ribbon p {
    font-family: var(--dosis-font);
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    align-items: center;
    color: var(--text-color);
}

/* HERO SECTION */
.hero_wrapper {
    background-image: url('assets/bg-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 868px;
    margin-top: -3px;
}

.hero_wrapper h1 {
    font-family: var(--solway-font);
    font-weight: 300;
    font-size: 74px;
    line-height: 73px;
    letter-spacing: -1%;
    color: var(--text-color);
    padding-bottom: 22px;
}

.hero_wrapper p {
    font-family: var(--dosis-font);
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    color: var(--text-color);
}

/* CTA + HOVER ANIMATION */
.joinCta {
    width: 561px;
    padding-top: 10px;
    display: inline-block;
    transform-origin: center;
    transform: rotate(0deg) translateX(0);
    cursor: pointer;
}

.joinCta.hover-in {
    animation: hoverShake 0.4s ease-in-out forwards;
}

.joinCta.hover-out {
    animation: hoverOutShake 0.4s ease-in-out forwards;
}

/* --- KEYFRAMES --- */

@keyframes hoverShake {
    0% {
        transform: rotate(0deg) translateX(0);
    }

    25% {
        transform: rotate(5deg) translateX(6px);
    }

    45% {
        transform: rotate(4.5deg) translateX(5px);
    }

    65% {
        transform: rotate(5.5deg) translateX(7px);
    }

    85% {
        transform: rotate(4.8deg) translateX(5.5px);
    }

    100% {
        transform: rotate(4.9deg) translateX(6px);
    }
}

@keyframes hoverOutShake {
    0% {
        transform: rotate(4.9deg) translateX(6px);
    }

    30% {
        transform: rotate(-1deg) translateX(-2px);
    }

    60% {
        transform: rotate(1deg) translateX(1px);
    }

    100% {
        transform: rotate(0deg) translateX(0);
    }
}

/*EXPLORE SECTION */
.explore_wrapper {
    background-image: url('assets/Vector-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 150px 0 0;
    margin-top: -5%;
}


.explore_wrapper h2 {
    font-family: var(--solway-font);
    font-weight: 300;
    font-size: 50px;
    line-height: 69px;
    letter-spacing: -1%;
    align-items: center;
    color: #CE6166;
    margin-top: 26px;
}

.explore_wrapper p {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    padding-bottom: 65px;
    color: #413A29;
}

.explore_img {
    width: 100%;
    height: 1200px;
    position: relative;
    top: -5rem;
}

.village {
    padding-bottom: 90px;
}


/* INTERACTIVE ICONS (TREE / MOOD / RECORD) */
.tree_default {
    position: absolute;
    left: 28%;
    bottom: 50%;
    width: 102px;
    height: 102px;
    background: url("assets/img/visitTreeD.png") no-repeat center/contain;
    transition: transform .6s ease;
}

.tree_default:hover {
    background-image: url("assets/img/visitTreeH1.png");
    transform: scale(1.1);
    height: 186px;
    left: 27.7%;
    bottom: 42.6%;
}

.mood_default {
    position: absolute;
    left: 46.8%;
    top: 22%;
    width: 124px;
    height: 92px;
    background: url("assets/img/moodD.png") no-repeat center/contain;
    transition: transform .6s ease;
}

.mood_default:hover {
    background-image: url("assets/img/moodH.png");
    transform: scale(1.1);
    left: 46.4%;
    top: 21.9%;
    height: 168px;
}

.record_default {
    position: absolute;
    right: 34%;
    top: 42.5%;
    width: 10%;
    height: 89px;
    background: url("assets/img/recordD.png") no-repeat center/contain;
    transition: transform 1s ease;
    transform-origin: center;
}

.record_default:hover {
    background-image: url("assets/img/recordH.png");
    transform: scale(1.1);
    right: 34.6%;
    top: 41.7%;
    height: 164px;
}

.box_position {
    transform: translate(0%, 38%);
    width: 100%;
}

/* DIFFERENT SECTION */
.different_wrapper {
    position: relative;
    margin-top: 114px;
}

.different_wrapper h2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 69px;
    letter-spacing: -1%;
    align-items: center;
    color: #413A29;
}

.different_wrapper p {
    font-family: var(--dosis-font);
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    color: #413A29;
}

/* BOX / CARD SECTION */

.box_wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 70px;
    padding-bottom: 97px;
}

.box {
    width: 100%;
    height: 377px;
    background-image: url("assets/RectangleShape.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 20px;
    transition: background-image 0.3s ease;
}

.box:hover {
    background-image: url("assets/RectangleH.png");
}

.box img {
    height: 150px;
}

.box h3 {
    font-family: var(--solway-font);
    font-size: 32px;
    padding-top: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1%;
    color: #000000;
}


/* CAROUSEL SECTION */
.carousel_wrapper {
    background-image: url(assets/VectorWave.png);
    background-size: 100% 100%;
    padding: 100px 0;
}

.carousel_wrapper h2 {
    font-family: var(--solway-font);
    font-size: 50px;
    font-weight: 300;
    line-height: 69px;
    letter-spacing: -1%;
    align-items: center;
    color: #413A29;
    padding-bottom: 60px;
}

.carousel_box {
    width: 522px;
    height: 475px;
    background-color: #FAD4CB;
    border-radius: 45px;
    border: 7.54px solid #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.carousel_box img {
    margin: 0 auto;
    padding: 26px 0;
    height: 266px;
    width: 242px !important;
    object-fit: contain;
}

.carousel_box h4 {
    font-family: var(--solway-font);
    font-size: 26px;
    line-height: 31px;
    letter-spacing: -1%;
    align-items: center;
    font-weight: 500;
    color: #413A29;
    padding-bottom: 18px;
}

.carousel_box h5 {
    font-family: var(--solway-font);
    font-weight: 700;
    font-size: 27.14px;
    line-height: 39.21px;
    letter-spacing: -1%;
    align-items: center;
    color: #CE6166;
}

.owl-stage-outer {
    text-align: -webkit-center;
}

/* Carousel navigation */
.owl-prev,
.owl-next {
    position: absolute;
    top: 38%;
    height: 71px;
    box-shadow: 0px 4px 10px #ACACAC;
    border-radius: 20px;
}

.owl-prev {
    left: 1%;
}

.owl-next {
    right: 1%;
}

.owl-nav.disabled {
    display: block !important;
}

.owl-nav button {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.nav-icon {
    width: 90px !important;
    height: 72px !important;
}

/* Dots */
.owl-dots {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 69.55px;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #DDE0E4;
    margin: 0 3px;
    transition: all 0.3s ease;
}

.owl-dots button.owl-dot.active {
    width: 58px;
    border-radius: 999px;
    background-color: #B3A758;
}

/* PINK RIBBON + ROLLING CIRCLE */
.ribbon-wrapper {
    position: relative;
    width: 100%;
    margin-top: 34px;
}

.pink_ribon {
    height: 82px;
    background-image: url("assets/ribbon.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: grid;
    place-items: center;
    position: relative;
    margin-bottom: 189px;
}

.pink_ribon p {
    font-family: var(--dosis-font);
    font-size: 22px;
    line-height: 40px;
    font-weight: 500;
    color: #ffffff;
    z-index: 2;
}

.circle1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #CE6166;
    opacity: 26%;
    animation: roll 5s ease-in-out infinite alternate;
}

@keyframes roll {
    from {
        left: 0%;
        transform: translateX(50%) rotate(0);
    }

    to {
        left: 80%;
        transform: translateX(-50%) rotate(1turn);
    }
}

.pink_ribon::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 38px;
    width: 36px;
    height: 36px;
    background: url(assets/flower.png) no-repeat center/contain;
}

/* STORY SECTION */
.story_wrapper {
    background-image: url(assets/village_bg.png);
    background-size: 100% 100%;
    padding: 150px 0;
    margin-top: -3%;
    position: relative;
    z-index: -1;
}

.story_wrapper h2 {
    font-family: var(--solway-font);
    font-size: 50px;
    font-weight: 400;
    line-height: 69px;
    letter-spacing: -1%;
    padding-bottom: 24px;
    color: #413A29;
    align-items: center;
}

.story_wrapper p {
    font-family: var(--dosis-font);
    font-size: 30px;
    line-height: 43px;
    font-weight: 400;
    padding-bottom: 42px;
    color: #413A29;
}

.story_wrapper h6 {
    font-family: var(--solway-font);
    font-size: 42px;
    line-height: 34px;
    font-weight: 500;
    color: #CE6166;
}

.kid_img {
    width: 100%;
    height: 572px;
    object-fit: contain;
}

/* EARLY ACCESS SECTION */
.main-box {
    position: relative;
    width: 75%;
    padding-top: 16px;
    background: linear-gradient(90deg, #DFD27F, #F6DFA0, #EFCD6F);
    border-radius: 40px;
    margin: 121px auto;
}

.Early-access {
    display: flex;
    justify-content: center;
}

.decor {
    position: absolute;
    pointer-events: none;
}

.decor.top-left {
    top: -26px;
    left: -49px;
    width: clamp(70px, 8vw, 106px);
}

.decor.bottom-right {
    bottom: -25px;
    right: -48px;
    width: clamp(160px, 22vw, 309px);
}

.cont {
    display: flex;
    align-items: end;
    margin-top: 20px;
    gap: clamp(24px, 4vw, 56px);

}

.leftpip {
    width: auto;
    height: auto;
}

.leftpip img {
    width: 100%;
}

.content {
    max-width: 856px;
    padding-bottom: 72px;
    padding-right: 30px;
}

.content h2 {
    padding-bottom: 10px;
    font-family: var(--solway-font);
    font-size: 50px;
    font-weight: 400;
    line-height: 69px;
    letter-spacing: -1%;
    align-items: center;
    color: var(--text-color);

}

.content p {
    font-family: var(--dosis-font);
    padding-bottom: 28px;
    font-size: 30px;
    line-height: 46px;
    font-weight: 400;
    color: var(--text-color);
}

.cta-btn img {
    width: 278.95px;
    height: 66px;
    display: block;
}

/* FOOTER */
footer {
    background: url(assets/footer_bg.png) center/100% 100% no-repeat;
    height: 801px;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
}

footer img {
    width: 567px;
    height: auto;
    margin-bottom: 20px;
}

footer h5 {
    font-family: var(--solway-font);
    font-size: 50px;
    line-height: 69px;
    font-weight: 700;
    letter-spacing: -1%;
    align-items: center;
    color: #F9EED9;
    padding-bottom: 50px;
}

#menu {
    display: inline-flex;
    gap: 50px;
    list-style: none;
}

ul#menu li {
    font-size: 26px;
    line-height: 46px;
    font-family: var(--dosis-font);
    font-weight: 400;
    color: #413A29;
    margin-bottom: 50px;

}

hr {
    color: #F6DFA0;
    height: 2px;
    opacity: 1;
    margin-bottom: 60px;
    margin-top: 0rem;
}

footer p {
    font-size: 30px;
    line-height: 46px;
    align-items: center;
    font-weight: 400;
    padding-bottom: 70px;
}

/* RESPONSIVE — ONLY 4 BREAKPOINTS */

/* MOBILE */
@media screen and (min-width:320px) and (max-width:426px) {

    /* ---- TYPOGRAPHY FIX ---- */
    h1 {
        font-size: 36px;
        line-height: 42px;
    }

    h2 {
        font-size: 28px;
        line-height: 36px;
    }

    h3 {
        font-size: 20px;
        line-height: 28px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }

    h6 {
        font-size: 20px;
        line-height: 28px;
    }

    .container-fluid {
        padding: 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
.box_position a{
    display: flex;
justify-content: center;
}
    .hero_wrapper {
        height: 625px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
.box {
    height: 300px;
}
.box img {
    height: 90px;
}
.box h3 {
    font-size: 26px;
    line-height: 29px;
}
.carousel_wrapper h2 {
    font-size: 30px;
    line-height: 42px;
}
.carousel_box img {
    height: 166px;
    width: 242px !important;
}
.carousel_box h4 {
    font-size: 20px;
    line-height: 31px;
}
    .hero_wrapper h1 {
        text-align: center;
        font-weight: 300;
        font-size: 30px;
        line-height: 46px;
        letter-spacing: -0.2%;
        color: var(--text-color);
        padding-bottom: 15px;
    }
.different_wrapper p {
    font-size: 22px;
    line-height: 34px;
}
    .hero_wrapper p {
        font-family: var(--dosis-font);
        font-size: 18px;
        font-weight: 400;
        text-align: center;
        line-height:28px;
        letter-spacing: 0.2px;
        color: var(--text-color);
    }

   .box_position {
    display: flex;
    position: relative;
    top: -190px;
    gap: 25px;
    flex-direction: column-reverse;
}
.different_wrapper h2 {
    font-size: 30px;
    line-height: 42px;
}

    /* =====================================================
   CTA + HOVER ANIMATION
   ===================================================== */

   .joinCta {
    width: 295px;
    padding-top: 25px;
}

    .joinCta.hover-in {
        animation: hoverShake 0.4s ease-in-out forwards;
    }

    .joinCta.hover-out {
        animation: hoverOutShake 0.4s ease-in-out forwards;
    }

    /* --- KEYFRAMES --- */

    @keyframes hoverShake {
        0% {
            transform: rotate(0deg) translateX(0);
        }

        25% {
            transform: rotate(5deg) translateX(6px);
        }

        45% {
            transform: rotate(4.5deg) translateX(5px);
        }

        65% {
            transform: rotate(5.5deg) translateX(7px);
        }

        85% {
            transform: rotate(4.8deg) translateX(5.5px);
        }

        100% {
            transform: rotate(4.9deg) translateX(6px);
        }
    }

    @keyframes hoverOutShake {
        0% {
            transform: rotate(4.9deg) translateX(6px);
        }

        30% {
            transform: rotate(-1deg) translateX(-2px);
        }

        60% {
            transform: rotate(1deg) translateX(1px);
        }

        100% {
            transform: rotate(0deg) translateX(0);
        }
    }

    .right_ted {
        margin-top: 40px;
        width: 50%;
    }


    .story_wrapper {
        margin-top: -8%;
    }

 .main-box {
    position: relative;
    width: 95%;
    height: fit-content;
    padding: 20px;
    background: linear-gradient(90deg, #DFD27F, #F6DFA0, #EFCD6F);
    border-radius: 40px;
    margin: 60px auto;
}

    .Early-access {
        display: flex;
        justify-content: center;
    }

    .decor {
        position: absolute;
        pointer-events: none;
    }

    .decor.top-left {
        top: -21px;
        left: -34px;
        width: 20%;
    }

    .decor.bottom-right {
        bottom: -11px;
        right: -6px;
        /* width: clamp(160px, 22vw, 309px); */
        width: 34%;
    }

    .cont {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        gap: clamp(24px, 4vw, 56px);

    }

    .leftpip {
        width: 100%;
        height: auto;
    }

    .leftpip img {
        width: clamp(200px, 28vw, 360px);
    }

    .content {
        max-width: 856px;
        padding-bottom: 0px;
        padding-right: 0px;
    }

    .content h2 {
        padding-bottom: 10px;
        font-family: var(--solway-font);
        font-size: 30px;
        font-weight: 400;
        line-height: 42px;
        letter-spacing: -1%;
        color: var(--text-color);

    }
ul#menu li {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 0;
}
    .content p {
        font-family: var(--dosis-font);
        padding-bottom: 29px;
        font-size: 26px;
        line-height: 38px;
        font-weight: 400;
        color: var(--text-color);
    }

    .cta-btn img {
        width: 278.95px;
        height: 66px;
        display: block;
    }

    .carousel_box {
        height: auto;
        padding-bottom: 30px;
    }

    .kid_img {
        height: auto;
    }


    /* ---- ICON SAFETY ---- */
    .tree_default,
    .mood_default,
    .record_default {
        transform: scale(0.75);
    }

    /* ---- GRID SAFETY ---- */
    .box_wrapper {
        grid-template-columns: 1fr;
    }



    .ribbon,
    .explore_wrapper {
        display: none;
    }

    .box_wrapper {
        display: grid;
    }

    .carousel_box {
        width: 100%;
        height: auto;
    }

    .owl-nav {
        display: none;
    }
footer {
    background: url(assets/footer_bg.png) center/100% 100% no-repeat;
    height: 651px;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
}

    footer .container-fluid {
        display: flex;
        flex-direction: column;
    }

    footer img {
        width: 62%;
    }
.header_wrapper {
  
    height: 100px;
}
    footer h5 {
        font-size: 23px;
        color: #F9EED9;
        padding: 0;
    }
    .header_wrapper p {
    font-size: 18px;
        padding: 25px 0;
}
.story_wrapper h2 {
    font-size: 30px;
    line-height: 42px;
}
.pink_ribon p {
    font-size: 20px;
    line-height: 32px;
}
.story_wrapper {
    padding: 80px 0;
}
.story_wrapper p {
    font-size: 22px;
    line-height: 34px;
}
.story_wrapper h6 {
    font-size: 24px;
    line-height: 36px;

}
.different_wrapper {
    position: relative;
    margin-top: 60px;
}
.pink_ribon {
    height: 100px;
    background-image: url("assets/ribbon.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: grid;
    place-items: center;
    position: relative;
    margin-bottom: 0;
}
.carousel_wrapper h2 {
    padding-bottom: 40px;
}
.box_wrapper {
    padding-bottom: 60px;
}
.box_wrapper {
    padding-top: 40px;
}
hr {
    margin-bottom: 20px;
}
   #menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 12px;
    list-style: none;
}

    ul#menu li {
        font-size: 26px;
    }

    footer p {
        font-size: 24px;
              padding: 0 0 20px;
    }
}
@media screen and (min-width:426px) and (max-width:767px) {

    /* ---- TYPOGRAPHY FIX ---- */
    h1 {
        font-size: 36px;
        line-height: 42px;
    }

    h2 {
        font-size: 28px;
        line-height: 36px;
    }

    h3 {
        font-size: 20px;
        line-height: 28px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }

    h6 {
        font-size: 20px;
        line-height: 28px;
    }

    .container-fluid {
        padding: 0 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero_wrapper {
        background-image: url('assets/bg-hero.png');
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        height: 649px;
    }

    .hero_wrapper h1 {
        font-weight: 300;
        font-size: 40px;
        line-height: 46px;
        letter-spacing: -0.2%;
        color: var(--text-color);
        padding-bottom: 22px;
    }

    .hero_wrapper p {
        font-family: var(--dosis-font);
        font-size: 20px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: 0.2px;
        color: var(--text-color);
    }

    .box_position {
        position: relative;
        top: -148px;
    }

    /* =====================================================
   CTA + HOVER ANIMATION
   ===================================================== */

    .joinCta {
        width: 290px;
        padding-top: 25px;
    }

    .joinCta.hover-in {
        animation: hoverShake 0.4s ease-in-out forwards;
    }

    .joinCta.hover-out {
        animation: hoverOutShake 0.4s ease-in-out forwards;
    }

    /* --- KEYFRAMES --- */

    @keyframes hoverShake {
        0% {
            transform: rotate(0deg) translateX(0);
        }

        25% {
            transform: rotate(5deg) translateX(6px);
        }

        45% {
            transform: rotate(4.5deg) translateX(5px);
        }

        65% {
            transform: rotate(5.5deg) translateX(7px);
        }

        85% {
            transform: rotate(4.8deg) translateX(5.5px);
        }

        100% {
            transform: rotate(4.9deg) translateX(6px);
        }
    }

    @keyframes hoverOutShake {
        0% {
            transform: rotate(4.9deg) translateX(6px);
        }

        30% {
            transform: rotate(-1deg) translateX(-2px);
        }

        60% {
            transform: rotate(1deg) translateX(1px);
        }

        100% {
            transform: rotate(0deg) translateX(0);
        }
    }

    .right_ted {
        margin-top: 40px;
        width: 50%;
    }


    .story_wrapper {
        margin-top: -8%;
    }

    .main-box {
        position: relative;
        width: 90%;
        height: fit-content;
        padding: 30px;
        background: linear-gradient(90deg, #DFD27F, #F6DFA0, #EFCD6F);
        border-radius: 40px;
        margin: 100px auto;
    }

    .Early-access {
        display: flex;
        justify-content: center;
    }

    .decor {
        position: absolute;
        pointer-events: none;
    }

    .decor.top-left {
        top: -21px;
        left: -34px;
        width: 20%;
    }

    .decor.bottom-right {
        bottom: -11px;
        right: -6px;
        /* width: clamp(160px, 22vw, 309px); */
        width: 34%;
    }

    .cont {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        gap: clamp(24px, 4vw, 56px);

    }

    .leftpip {
        width: 100%;
        height: auto;
    }

    .leftpip img {
        width: clamp(200px, 28vw, 360px);
    }

    .content {
        max-width: 856px;
        padding-bottom: 0px;
        padding-right: 0px;
    }

    .content h2 {
        padding-bottom: 10px;
        font-family: var(--solway-font);
        font-size: 50px;
        font-weight: 400;
        line-height: 69px;
        letter-spacing: -1%;
        color: var(--text-color);

    }

    .content p {
        font-family: var(--dosis-font);
        padding-bottom: 29px;
        font-size: 30px;
        line-height: 46px;
        font-weight: 400;
        color: var(--text-color);
    }

    .cta-btn img {
        width: 278.95px;
        height: 66px;
        display: block;
    }

    .carousel_box {
        height: auto;
        padding-bottom: 30px;
    }

    .kid_img {
        height: auto;
    }


    /* ---- ICON SAFETY ---- */
    .tree_default,
    .mood_default,
    .record_default {
        transform: scale(0.75);
    }

    /* ---- GRID SAFETY ---- */
    .box_wrapper {
        grid-template-columns: 1fr;
    }



    .ribbon,
    .explore_wrapper {
        display: none;
    }

    .box_wrapper {
        display: grid;
    }

    .carousel_box {
        width: 100%;
        height: auto;
    }

    .owl-nav {
        display: none;
    }

    footer {
        background: url(assets/footer_bg.png) center/100% 100% no-repeat;
        height: 801px;
        display: flex;
        align-items: end;
        justify-content: center;
        text-align: center;
    }

    footer .container-fluid {
        display: flex;
        flex-direction: column;
    }

    footer img {
        width: 62%;
    }

    footer h5 {
        font-size: 23px;
        color: #F9EED9;
        padding: 40px 75px;
    }

    #menu {
        display: flex;
        flex-direction: column;
        gap: 12px;
        list-style: none;
    }

    ul#menu li {
        font-size: 26px;
    }

    footer p {
        font-size: 24px;
        padding: 60px 0 70px;
    }
}

/* TABLET */
@media screen and (min-width:768px) and (max-width:991px) {

    h1 {
        font-size: 40px;
        line-height: 46px;
    }

    h2 {
        font-size: 36px;
        line-height: 44px;
    }

    p {
        font-size: 20px;
        line-height: 30px;
    }

    h6 {
        font-size: 24px;
        line-height: 34px;
    }

    .carousel_box {
        height: auto;
    }

    .kid_img {
        height: auto;
    }

    footer {
        height: auto;
    }

    .container-fluid {
        padding: 0 20px;
    }

    .ribbon {
        position: relative;
        top: -8px;
        background: hsl(43, 87%, 61%);
        width: 100%;
        clip-path: polygon(4% 0%,
                96% 0%,
                93% 51%,
                96% 100%,
                4% 100%,
                7% 50%);
        margin: -4px auto;
        text-align: center;

    }

    .ribbon p {
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: 0.2px;
        font-family: var(--dosis-font);
    }

    .hero_wrapper {
        background-image: url('assets/bg-hero.png');
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        height: 688px;
    }

    .hero_wrapper h1 {
        font-weight: 300;
        font-size: 40px;
        line-height: 46px;
        letter-spacing: -0.2%;
        color: var(--text-color);
        padding-bottom: 22px;
    }

    .hero_wrapper p {
        font-family: var(--dosis-font);
        font-size: 20px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: 0.2px;
        color: var(--text-color);
    }

    /* CTA + HOVER ANIMATION  */
    .joinCta {
        width: 320px;
        padding-top: 25px;
    }

    .joinCta.hover-in {
        animation: hoverShake 0.4s ease-in-out forwards;
    }

    .joinCta.hover-out {
        animation: hoverOutShake 0.4s ease-in-out forwards;
    }

    /* --- KEYFRAMES --- */

    @keyframes hoverShake {
        0% {
            transform: rotate(0deg) translateX(0);
        }

        25% {
            transform: rotate(5deg) translateX(6px);
        }

        45% {
            transform: rotate(4.5deg) translateX(5px);
        }

        65% {
            transform: rotate(5.5deg) translateX(7px);
        }

        85% {
            transform: rotate(4.8deg) translateX(5.5px);
        }

        100% {
            transform: rotate(4.9deg) translateX(6px);
        }
    }

    @keyframes hoverOutShake {
        0% {
            transform: rotate(4.9deg) translateX(6px);
        }

        30% {
            transform: rotate(-1deg) translateX(-2px);
        }

        60% {
            transform: rotate(1deg) translateX(1px);
        }

        100% {
            transform: rotate(0deg) translateX(0);
        }
    }

    .right_ted {
        width: 90%;
    }

    /* =====================================================
   EXPLORE SECTION
   ===================================================== */

    .explore_wrapper {
        background-image: url('assets/Vector-bg.png');
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 100px 0 0;
        margin-top: -6%;
    }

    .explore_wrapper h2 {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -0.2px;
        font-weight: 300;
        color: #CE6166;
    }

    .explore_wrapper p {
        font-weight: 400;
        letter-spacing: 0.2px;
        padding-bottom: 60px;
        color: #413A29;
    }

    .explore_img {
        width: 100%;
        height: 1200px;
        position: relative;
        top: -5rem;
    }

    .explore_wrapper {
        background-image: url('assets/Vector-bg.png');
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 100px 0 0;
        margin-top: -205px;
    }

    .explore_wrapper h2 {
        font-size: 36px;
        line-height: 48px;
        font-weight: 300;
        color: #CE6166;
    }

    .explore_wrapper p {
        font-size: 28px;
        line-height: 40px;
        padding-bottom: 60px;
        color: #413A29;
    }

    .explore_img {
        width: 100%;
        height: 1200px;
        position: relative;
        top: -5rem;
    }


    .tree_default {
        position: absolute;
        left: 24.6%;
        bottom: 54%;
        width: 100px;
        height: 65px;
        background: url("assets/img/visitTreeD.png") no-repeat center/contain;
        transition: transform .6s ease;
    }

    .tree_default:hover {
        background-image: url("assets/img/visitTreeH1.png");
        transform: scale(1.1);
        height: 186px;
        left: 27.7%;
        bottom: 42.6%;
    }

    .mood_default {
        position: absolute;
        left: 44%;
        top: 16%;
        width: 100px;
        height: 67px;
        background: url("assets/img/moodD.png") no-repeat center/contain;
        transition: transform .6s ease;
    }

    .mood_default:hover {
        background-image: url("assets/img/moodH.png");
        transform: scale(1.1);
        left: 46.4%;
        top: 21.9%;
        height: 168px;
    }

    .record_default {
        position: absolute;
        right: 34%;
        top: 33.5%;
        width: 9%;
        height: 67px;
        background: url("assets/img/recordD.png") no-repeat center/contain;
        transition: transform 1s ease;
    }

    .record_default:hover {
        background-image: url("assets/img/recordH.png");
        transform: scale(1.1);
        right: 34.6%;
        top: 41.7%;
        height: 164px;
    }

    .village {
        padding-bottom: 90px;
    }

    .owl-prev {
        left: 45px;
    }

    .owl-next {
        right: 45px;
    }

    .carousel_box {
        height: 475px;
    }
.container {
        height: 920px;
    }

    .different_wrapper {
        position: relative;
        padding-bottom: 0px;
     margin-top: 0px;
     padding-top: 80px;
    }

    .different_wrapper h2 {
        font-size: 36px;
        font-weight: 100;
        line-height: 48px;
        color: #413A29;
    }
.carousel_wrapper h2{
        font-size: 36px;
        font-weight: 100;
        line-height: 48px;
}
    .different_wrapper p {
        font-size: 24px;
        font-weight: 400;
        line-height: 36px;
        color: #413A29;
    }

    /* =====================================================
   BOX / CARD SECTION
   ===================================================== */

    .box_wrapper {
        display: flex;
        justify-content: center;
        gap: 30px;
        /* padding-top: 65px; */
    }

    .box {
        width: 100%;
        height: 377px;
        background-image: url("assets/RectangleShape.png");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 20px;
        transition: background-image 0.3s ease;
    }

    .box:hover {
        background-image: url("assets/RectangleH.png");
    }

    .box img {
        height: 120px;
    }

    .box h3 {
        font-size: 22px;
        padding-top: 40px;
        font-weight: 400;
    }

    .box_position {
        transform: translate(0%, 30%);
        width: 100%;
    }


    .box_wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .story_wrapper {
        margin-top: -6%;
    }


    .main-box {
        padding: 20px;
    }

    .cont {
        display: flex;
        flex-direction: column;
        align-items: end;
        margin-top: 20px;
        align-items: center;
        justify-content: center;
        gap: clamp(24px, 4vw, 56px);
    }

    .decor.top-left {
        top: -17px;
        left: -31px;
        width: clamp(70px, 8vw, 106px);
    }

    .decor.bottom-right {
        bottom: -14px;
        right: -15px;
        width: clamp(160px, 22vw, 309px);
    }

    footer {
        background: url(assets/footer_bg.png) center/100% 100% no-repeat;
        height: 600px;
        display: flex;
        align-items: end;
        justify-content: center;
        text-align: center;
    }

   footer h5 {
    font-size: 34px;
    color: #F9EED9;
    padding: 20px;
}

    #menu {
        display: inline-flex;
        gap: 50px;
        list-style: none;
    }

    ul#menu li {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .main-box {
    margin: 60px auto;
}
hr {
    margin-bottom: 20px;
}
   footer p {
    font-size: 28px;
    padding:0 0 20px;
}
    footer img {
    width: 467px;
    height: auto;
    margin-bottom: 0;
}
    .story_wrapper h2 ,.content h2{
        font-size: 36px;
        line-height: 48px;
    }

    .story_wrapper p , .content p{
        font-size: 22px;
        line-height: 34px;
    }
.story_wrapper h6 {
    font-size: 32px;
    line-height: 44px;
}

}

/* SMALL DESKTOP */
@media screen and (min-width:992px) and (max-width:1199px) {
    .different_wrapper {
    position: relative;
    margin-top: 80px ;
}
.container-fluid {
    padding: 0 90px;
}
    h1 {
        font-size: 52px;
        line-height: 58px;
    }

    h2 {
        font-size: 44px;
        line-height: 54px;
    }

    p {
        font-size: 24px;
        line-height: 34px;
    }

    .carousel_box {
        height: 440px;
    }


    .col-md-6 {
        width: 50%;
    }



    .header_wrapper p {
        font-size: 18px;
        line-height: 22px;
        color: #F9EED9;
        align-items: center;
        padding: 25px 0;
    }

    .ribbon {
        position: relative;
        top: -1px;
        background: hsl(43, 87%, 61%);
        width: min(820px, 100%);
        clip-path: polygon(4% 0%,
                96% 0%,
                93% 51%,
                96% 100%,
                4% 100%,
                7% 50%);
        margin: -4px auto;
        text-align: center;

    }

    .ribbon p {
        font-family: var(--dosis-font);
        font-size: 18px;
        line-height: 20px;
        font-weight: 600;
        text-align: center;
        vertical-align: middle;
        color: var(--text-color);
    }


    .hero_wrapper {
        position: relative;
        top: -215px;
        z-index: -1;
    }

    .box_position {
         padding-top: 40px;
        position: relative;
        top: 100px;
    }

    .hero_wrapper h1 {
        font-size: 40px;
        font-weight: 300;
        line-height: 52px;
        letter-spacing: -0.01em;
    }

    .hero_wrapper p {
    font-size: 20px;
    line-height: 30px;
}

    .joinCta {
        width: 460px;
        height: auto;
    }

    .right_ted {
        margin-left: 70px;
        max-width: 349px;
        width: 100%;
        height: auto;
    }
    .joinCta {
        width: 300px;
        padding-top: 25px;
        display: inline-block;
        transform-origin: center;
        transform: rotate(0deg) translateX(0);
        cursor: pointer;
    }

    .joinCta.hover-in {
        animation: hoverShake 0.4s ease-in-out forwards;
    }

    .joinCta.hover-out {
        animation: hoverOutShake 0.4s ease-in-out forwards;
    }

    /* --- KEYFRAMES --- */

    @keyframes hoverShake {
        0% {
            transform: rotate(0deg) translateX(0);
        }

        25% {
            transform: rotate(5deg) translateX(6px);
        }

        45% {
            transform: rotate(4.5deg) translateX(5px);
        }

        65% {
            transform: rotate(5.5deg) translateX(7px);
        }

        85% {
            transform: rotate(4.8deg) translateX(5.5px);
        }

        100% {
            transform: rotate(4.9deg) translateX(6px);
        }
    }

    @keyframes hoverOutShake {
        0% {
            transform: rotate(4.9deg) translateX(6px);
        }

        30% {
            transform: rotate(-1deg) translateX(-2px);
        }

        60% {
            transform: rotate(1deg) translateX(1px);
        }

        100% {
            transform: rotate(0deg) translateX(0);
        }
    }

    .explore_wrapper {
        background-image: url('assets/Vector-bg.png');
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 60px 0 0;
        margin-top: -469px;
    }

   .explore_wrapper h2 {
    font-size: 36px;
    line-height: 50px;
    letter-spacing: -0.01em;
    font-weight: 300;
    text-align: center;
    color: #CE6166;
}

    .explore_wrapper p {
        font-size: 22px;
        line-height: 34px;
        font-weight: 400;
        padding-bottom: 40px;
        color: #413A29;
    }

    .explore_img {
        width: 100%;
        height: 1200px;
        position: relative;
        top: -5rem;
    }

    .village {
        padding-bottom: 90px;
    }

    .tree_default {
        position: absolute;
        left: 25.6%;
        bottom: 54%;
        width: 80px;
        height: 70px;
        background: url("assets/img/visitTreeD.png") no-repeat center/contain;
        transition: transform .6s ease;
    }

    .tree_default:hover {
        background-image: url("assets/img/visitTreeH1.png");
        transform: scale(1.1);
        height: 186px;
        left: 27.7%;
        bottom: 42.6%;
    }

    .mood_default {
        position: absolute;
        left: 45%;
        top: 15%;
        width: 80px;
        height: 70px;
        background: url("assets/img/moodD.png") no-repeat center/contain;
        transition: transform .6s ease;
    }

    .mood_default:hover {
        background-image: url("assets/img/moodH.png");
        transform: scale(1.1);
        left: 46.4%;
        top: 10.9%;
        height: 168px;
    }

    .record_default {
        position: absolute;
        right: 34%;
        top: 31.5%;
        width: 72px;
        height: 72px;
        background: url("assets/img/recordD.png") no-repeat center/contain;
        transition: transform 1s ease;
    }

    .record_default:hover {
        background-image: url("assets/img/recordH.png");
        transform: scale(1.1);
        right: 34.6%;
        top: 31.7%;
        height: 164px;
    }

    .right_ted {
        width: 100%;
    }


  

    .different_wrapper h2 {
        font-size: 36px;
        font-weight: 300;
        line-height: 48px;
        letter-spacing: -0.01em;
        text-align: center;
        color: #413A29;
    }

    .different_wrapper p {
        font-size: 22px;
        font-weight: 400;
        line-height: 34px;
        text-align: center;
        color: #413A29;
    }

    /* =====================================================
   BOX / CARD SECTION
   ===================================================== */

    .box_wrapper {
        display: flex;
        justify-content: center;
        gap:15px;
        /* padding-top: 65px; */
    }

    .box {
        width: 100%;
        height: 377px;
        background-image: url("assets/RectangleShape.png");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 20px;
        transition: background-image 0.3s ease;
    }

    .box:hover {
        background-image: url("assets/RectangleH.png");
    }

    .box img {
        height: 120px;
    }

    .box h3 {
        font-size: 20px;
        line-height: 26px;
        padding-top: 20px;
        letter-spacing: -0.01em;
        font-weight: 400;
    }

    .carousel_box {
        width: 400px;
        height: 400px;
        background-color: #FAD4CB;
        border-radius: 45px;
        border: 7px solid #fff;
        text-align: center;
    }

    .owl-prev {
        left: -3%;
    }

    .owl-next {
        right: -3%;
    }

    .carousel_wrapper h2 {
        font-family: var(--solway-font);
        font-size: 36px;
        font-weight: 300;
        line-height: 48px;
        letter-spacing: -0.01em;
        text-align: center;
        color: #413A29;
        padding-bottom: 60px;
    }


    .carousel_box img {
        margin: 0 auto;
        padding: 26px 0;
        height: 208px;
        width: 198px !important;
        object-fit: contain;
    }
.carousel_wrapper {
    padding: 100px 0 0 0;
}
.main-box {
    margin: 121px auto 0;
}
    .carousel_box h4 {
        font-family: var(--solway-font);
        font-size: 21px;
        line-height: 25px;
        letter-spacing: -0.01em;
        text-align: center;
        font-weight: 500;
        color: #413A29;
        padding-bottom: 18px;
    }

    .carousel_box h5 {
        font-family: var(--solway-font);
        font-weight: 700;
        font-size: 22.3px;
        line-height: 32.2px;
        letter-spacing: -0.01em;
        text-align: center;
        color: #CE6166;
    }

    .owl-stage-outer {
        text-align: -webkit-center;
    }

    /* Carousel navigation */
    .owl-prev,
    .owl-next {
        position: absolute;
        top: 32%;
        height: 71px;
        box-shadow: 0px 4px 10px #ACACAC;
        border-radius: 20px;
    }

    .owl-prev {
        left: -1%;
    }

    .owl-next {
        right: -1%;
    }

    .owl-nav.disabled {
        display: block !important;
    }

    .owl-nav button {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .nav-icon {
        width: 90px !important;
        height: 72px !important;
    }

    /* Dots */
    .owl-dots {
        text-align: center;
        padding-top: 40px;
        padding-bottom: 69.55px;
    }

    .owl-dots button.owl-dot {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #DDE0E4;
        margin: 0 3px;
        transition: all 0.3s ease;
    }

    .owl-dots button.owl-dot.active {
        width: 58px;
        border-radius: 999px;
        background-color: #B3A758;
    }

    /* PINK RIBBON + ROLLING CIRCLE */
    .ribbon-wrapper {
        position: relative;
        width: 100%;
        margin-top: 34px;
    }

    .pink_ribon {
        height: 82px;
        background-image: url("assets/ribbon.png");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        display: grid;
        place-items: center;
        position: relative;
        margin-bottom: 140px;
    }

    .pink_ribon p {
        font-family: var(--dosis-font);
        font-size: 18px;
        line-height: 33px;
        font-weight: 500;
        color: #ffffff;
        z-index: 2;
    }

    .story_wrapper {
        background-image: url(assets/village_bg.png);
        background-size: 100% 100%;
        padding: 120px 0;
        margin-top: -4%;
        position: relative;
        z-index: -1;
    }

    .story_wrapper h2 {
        font-family: var(--solway-font);
        font-size: 36px;
        font-weight: 400;
        line-height: 48px;
        letter-spacing: -0.01em;
        padding-bottom: 24px;
        color: #413A29;
        align-items: center;
    }

    .story_wrapper p {
        font-family: var(--dosis-font);
        font-size: 22px;
        line-height: 34px;
        font-weight: 400;
        padding-bottom: 20px;
        color: #413A29;
    }

    .story_wrapper h6 {
        font-family: var(--solway-font);
        font-size: 25px;
        line-height: 35px;
        font-weight: 400;
        color: #CE6166;
    }

    .kid_img {
        width: 100%;
        height: 100%;
        margin-top: 40px;
        object-fit: contain;
    }

    /* .row {
        flex-direction: column;
    } */

    .col-md-7 {
        width: 100%;
    }

    .main-box {
        padding: 20px;

    }

    .cont {
        display: flex;
        flex-direction: column;
        align-items: end;
        margin-top: 20px;
        align-items: center;
        justify-content: center;
        gap: clamp(24px, 4vw, 56px);
    }

    .cont .leftpip {
        width: 445px;
        height: 358px;
    }


    .content {
        max-width: 800px;
        padding-bottom: 30px;
        padding-right: 30px;
    }

    .content h2 {
        padding-bottom: 10px;
        font-family: var(--solway-font);
        font-size: 36px;
        font-weight: 400;
        line-height: 48px;
        letter-spacing: -0.01em;
        text-align: center;
        color: var(--text-color);

    }

    .content p {
        font-family: var(--dosis-font);
        padding-bottom: 29px;
        font-size: 22px;
        line-height: 34px;
        font-weight: 400;
        text-align: center;
        color: var(--text-color);
    }


    .cta-btn {
        display: flex;
        justify-content: center;
    }

    .cta-btn img {
        width: 278.95px;
        height: 66px;
        display: block;
    }



}

/* LARGE DESKTOP */
@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .hero_wrapper {
    background-image: url('assets/bg-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 868px;
    margin-top: -3px;
}
    .explore_wrapper {
    margin-top: -7% !important;
}

    .header_wrapper {
        background-color: #CE6166;
        height: 112px;
    }

    .header_wrapper p {
        font-size: 20px;
        line-height: 25px;
        color: #F9EED9;
        align-items: center;
        padding: 25px 0;
    }

    .ribbon {
        position: relative;
        top: -18px;
        background: hsl(43, 87%, 61%);
        width: min(820px, 90%);
        clip-path: polygon(4% 0%,
                96% 0%,
                93% 51%,
                96% 100%,
                4% 100%,
                7% 50%);
        margin: -4px auto;
        text-align: center;

    }

    .ribbon p {
        font-family: var(--dosis-font);
        font-size: 20px;
        line-height: 23px;
        font-weight: 600;
        text-align: center;
        vertical-align: middle;
        color: var(--text-color);
    }


    .hero_wrapper {
        position: relative;
        top: -110px;
        z-index: -1;
    }

    .box_position {
        position: relative;
        top: 48px;
    }

  .hero_wrapper h1 {
    font-size: 44px;
    font-weight: 300;
    line-height: 52px;
    letter-spacing: -0.01em;
}

    .hero_wrapper p {
        font-size: 26px;
        font-weight: 400;
        line-height: 36px;
    }

    .joinCta {
        width: 478px;
        height: auto;
    }

    .right_ted {
        margin-left: 70px;
        max-width: 649px;
        width: 100%;
        height: auto;
    }

   .explore_wrapper {
    margin-top: -308px !important;
}

    .explore_wrapper h2 {
        font-size: 44px;
        line-height: 60px;
        letter-spacing: -0.01em;
        font-weight: 300;
        text-align: center;
        color: #CE6166;
    }

    .explore_wrapper p {
        font-size: 26px;
        font-family: "Dosis", sans-serif;
        font-weight: 400;
        line-height: 36px;
        padding-bottom: 60px;
        color: #413A29;
    }

    .explore_img {
        width: 100%;
        height: 1040px;
        position: relative;
        top: -4rem;
    }

    .village {
        padding-bottom: 90px;
    }

    .tree_default {
        position: absolute;
        left: 26.6%;
        bottom: 50%;
        width: 102px;
        height: 102px;
        background: url("assets/img/visitTreeD.png") no-repeat center/contain;
        transition: transform .6s ease;
    }

    .tree_default:hover {
        background-image: url("assets/img/visitTreeH1.png");
        transform: scale(1.1);
        height: 186px;
        left: 27.7%;
        bottom: 42.6%;
    }

    .mood_default {
        position: absolute;
        left: 45%;
        top: 18%;
        width: 124px;
        height: 92px;
        background: url("assets/img/moodD.png") no-repeat center/contain;
        transition: transform .6s ease;
    }

    .mood_default:hover {
        background-image: url("assets/img/moodH.png");
        transform: scale(1.1);
        left: 46.4%;
        top: 21.9%;
        height: 168px;
    }

    .record_default {
        position: absolute;
        right: 34%;
        top: 37.5%;
        width: 10%;
        height: 89px;
        background: url("assets/img/recordD.png") no-repeat center/contain;
        transition: transform 1s ease;
    }

    .record_default:hover {
        background-image: url("assets/img/recordH.png");
        transform: scale(1.1);
        right: 34.6%;
        top: 41.7%;
        height: 164px;
    }

    /* DIFFERENT SECTION */
    .different_wrapper {
        position: relative;
        padding-bottom: 14px;
        padding-top: 14px;
    }


    .different_wrapper h2 {
        font-size: 44px;
        font-weight: 300;
        line-height: 60px;
        letter-spacing: -0.01em;
        text-align: center;
        color: #413A29;
    }

    .different_wrapper p {
        font-family: var(--dosis-font);
        font-size: 26px;
        font-weight: 400;
        line-height: 36px;
        text-align: center;
        color: #413A29;
    }

    /* BOX / CARD SECTION */

    .box_wrapper {
        display: flex;
        justify-content: center;
        gap: 30px;
        padding-top: 70px;
        padding-bottom: 97px;
    }

    .box {
        width: 100%;
        height: 324px;
        background-image: url("assets/RectangleShape.png");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 20px;
        transition: background-image 0.3s ease;
    }

    .box:hover {
        background-image: url("assets/RectangleH.png");
    }

    .box img {
        height: 103px;
    }

    .box h3 {
        font-family: var(--solway-font);
        font-size: 28px;
        padding-top: 39px;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -0.01em;
        color: #000000;
    }

    .carousel_wrapper h2 {
        font-family: var(--solway-font);
        font-size: 44px;
        font-weight: 300;
        line-height: 60px;
        letter-spacing: -0.01em;
        align-items: center;
        color: #413A29;
        padding-bottom: 60px;
    }

    .carousel_box {
        width: 522px;
        height: 475px;
        background-color: #FAD4CB;
        border-radius: 45px;
        border: 7.54px solid #fff;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .carousel_box img {
        margin: 0 auto;
        padding: 26px 0;
        height: 266px;
        width: 242px !important;
        object-fit: contain;
    }

    .carousel_box h4 {
        font-family: var(--solway-font);
        font-size: 23px;
        line-height: 28px;
        letter-spacing: -0.01em;
        text-align: center;
        font-weight: 500;
        color: #413A29;
        padding-bottom: 18px;
    }

    .carousel_box h5 {
        font-family: var(--solway-font);
        font-weight: 700;
        font-size: 24px;
        line-height: 35px;
        letter-spacing: -0.01em;
        text-align: center;
        color: #CE6166;
    }

    .owl-stage-outer {
        text-align: -webkit-center;
    }

    /* Carousel navigation */
    .owl-prev,
    .owl-next {
        position: absolute;
        top: 33%;
        height: 71px;
        box-shadow: 0px 4px 10px #ACACAC;
        border-radius: 20px;
    }

    .owl-prev {
        left: 1%;
    }

    .owl-next {
        right: 1%;
    }

    .owl-nav.disabled {
        display: block !important;
    }

    .owl-nav button {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .nav-icon {
        width: 90px !important;
        height: 72px !important;
    }

    /* Dots */
    .owl-dots {
        text-align: center;
        padding-top: 40px;
        padding-bottom: 69.55px;
    }

    .owl-dots button.owl-dot {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #DDE0E4;
        margin: 0 3px;
        transition: all 0.3s ease;
    }

    .owl-dots button.owl-dot.active {
        width: 58px;
        border-radius: 999px;
        background-color: #B3A758;
    }

    /* PINK RIBBON + ROLLING CIRCLE */
    .ribbon-wrapper {
        position: relative;
        width: 100%;
        margin-top: 34px;
    }

    .pink_ribon {
        height: 82px;
        background-image: url("assets/ribbon.png");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        display: grid;
        place-items: center;
        position: relative;
        margin-bottom: 140px;
    }

    .pink_ribon p {
        font-family: var(--dosis-font);
        font-size: 20px;
        line-height: 36px;
        font-weight: 500;
        color: #ffffff;
        z-index: 2;
    }


    .story_wrapper h2 {
        font-family: var(--solway-font);
        font-size: 44px;
        font-weight: 400;
        line-height: 60px;
        letter-spacing: -0.01em;
        padding-bottom: 24px;
        color: #413A29;
    }

    .story_wrapper p {
        font-family: var(--dosis-font);
        font-size: 26px;
        line-height: 36px;
        font-weight: 400;
        padding-bottom: 42px;
        color: #413A29;
    }

    .story_wrapper h6 {
        font-family: var(--solway-font);
        font-size: 42px;
        line-height: 34px;
        font-weight: 500;
        color: #CE6166;
    }

    .kid_img {
        width: 100%;
        height: 520px;
        object-fit: contain;
    }

    /* EARLY ACCESS SECTION */

    .cont {
        display: flex;
        align-items: end;
        margin-top: 20px;
        gap: 20px;

    }


    .leftpip img {
        width: 467px;
        height: 375px;
    }

    .content h2 {
        padding-bottom: 10px;
        font-family: var(--solway-font);
        font-size: 44px;
        font-weight: 400;
        line-height: 60px;
        letter-spacing: -0.01em;
        align-items: center;
        color: var(--text-color);

    }

    .content p {
        font-family: var(--dosis-font);
        padding-bottom: 28px;
        font-size: 26px;
        line-height: 44px;
        font-weight: 400;
        color: var(--text-color);
    }
.pink_ribon p {
    font-size: 20px;
    line-height: 32px;
}
    .cta-btn img {
        width: 240px;
        height: 57px;
        display: block;
    }


}