.landing{
    min-height: 100vh;
    padding-top: 100px;
    padding-inline: 4.5%;
   

    display: flex;
    align-items: center;
    justify-content: center;

    /* gap: 2rem; */

    background: linear-gradient(
        180deg,
        #fffdfc 0%,
        #fff8fb 100%
    );
}

.landing-canvas{
    width: 100%;
    max-width: 1400px;

    display: flex;
    align-items: center;
    justify-content:space-between ;
    gap: 50px;
}
.landing-copy{
    flex:1;
    max-width: 650px;
}
.eyebrow{
    font-family: var(--ff-paragraph);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--clr-primary);

    margin-bottom: 18px;
}

.headline{
    /* font-family: var(--ff-body); */
    font-size: clamp(3.4rem, 4.5vw, 4.4rem);
    line-height: 1.08;
    font-weight: 500;

    color: var(--clr-heading);

    margin-bottom: 52px;
}

.headline span{
    color: var(--clr-primary-light)
}

.lead{
    font-family: var(--ff-paragraph);
    font-size: 1.08rem;
    line-height: 1.8;

    color: var(--clr-text);

    max-width: 500px;

    margin-bottom: 40px;
}

.action-group{
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 20px;
}

.action{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 58px;
    padding: 0 34px;

    border-radius: 999px;

    font-family: var(--ff-paragraph);
    font-size: 1rem;
    font-weight: 500;

    transition: .35s ease;
}

.action-primary{
    background: var(--clr-primary-light);
    color: var(--clr-white);
}

.action-primary:hover{
    transform: translateY(-4px);
    background: var(--clr-primary-hover-light);
}

.action-ghost{
    background: transparent;

    border: 1px solid var(--clr-primary-light);

    color: var(--clr-primary);
}

.action-ghost:hover{
    background: var(--clr-primary-light);
    color: var(--clr-white);

    transform: translateY(-4px);
}

.btn-secondary{
 background: transparent;

    border: 1px solid var(--clr-primary-light);

    color: var(--clr-primary);

    border-radius:999px;

    text-decoration:none;

    transition:.35s;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 58px;
    padding: 0 24px;

    border-radius: 999px;

    font-family: var(--ff-paragraph);
    font-size: 1rem;
    font-weight: 500;

    transition: .35s ease;

}

.btn-secondary:hover{

     background: var(--clr-primary-light);
    color: var(--clr-white);

    transform: translateY(-10px);
}



.hero-image{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 30px;
}


.hero-image img{

    width:550px;

    position:relative;

    z-index:2;

    animation:float 4s ease-in-out infinite;

    object-position: center top;



}

.glow{

    width:520px;

    height:520px;

    background:radial-gradient(circle,
    rgba(255,214,224,.8),
    transparent 70%);

    position:absolute;

    border-radius:60%;

    filter:blur(35px);

    animation:pulse 6s 5times;

}

/* Animation */

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

}

@keyframes pulse{

    0%,100%{

        transform:scale(1);

        opacity:.6;

    }

    50%{

        transform:scale(1.15);

        opacity:1;

    }

}

@media (max-width:1024px){

    .landing{

        min-height: auto;
        justify-content: center;
        align-items: center;
        padding-top:110px;
        padding-inline:40px;
    }

    /* .landing-canvas{
        gap:20px;
    } */

    .landing-copy{
        max-width:420px;
    }

    .headline{
        font-size:3.4rem;
        line-height:1.15;
        margin-bottom:30px;
    }

    .lead{
        font-size:1rem;
        margin-bottom:30px;
    }

    .hero-image img{
        width:420px;
    }

    .glow{
        width:100px;
        height:100px;
    }

    .speech-bubble{
        display: none;
    }

    .action-group{
        gap:12px;
        flex-wrap:wrap;
    }

    .action,
    .btn-secondary{
        height:48px;
        padding:0 24px;
        font-size:.9rem;
    }
    

}

@media (max-width:768px){

    .landing{

        min-height: auto;
        justify-content: center;
        align-items: center;

        padding-top:90px;
        padding-inline:20px;
    }

    .landing-canvas{
        

        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .landing-copy{

        max-width:100%;
    }

    .headline{

        height: 200;

        font-size:0.5rem;
        line-height: 0.9;
        margin-bottom:25px;
    }

    .lead{

        max-width:100%;
        margin-inline:auto;
        margin-bottom:25px;
    }

    .hero-image{

        order:2;
    }

    .hero-image img{

        width:340px;
    }

    .glow{

        width:400px;
        height:300px;
    }

    .speech-bubble{

        display:none;
    }

    .action-group{

        flex-direction:column;
        width:100%;
        gap:15px;
    }

    .action,
    .btn-secondary{
         width:100%;
        max-width:300px;
        justify-content:center;
    }


}

@media (max-width:480px){

    .headline{
        font-size:2rem;
    }

    .hero-image img{
        width:250px;
    }

    .eyebrow{
        font-size:.75rem;
    }

    .lead{
        font-size:.95rem;
    }

}

/* ==========================================
            FEATURES SECTION
========================================== */

.features{
    padding:50px 50px 90px 50px;
    background: var(--clr-white);
}

.features-heading{
    max-width:750px;
    margin:0 auto 40px;
    text-align:center;
}

.section-tag{
    font-family:var(--ff-paragraph);
    font-size:.9rem;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    color:var(--clr-primary);
    margin-bottom:18px;
}

.section-title{
    font-size:clamp(2.4rem,4vw,3.6rem);
    line-height:1.2;
    font-weight:500;
    color:var(--clr-heading);
    margin-bottom:22px;
}

.section-title span{
    color:var(--clr-primary-light);
}

.section-description{
    max-width:620px;
    margin:auto;
    font-family:var(--ff-paragraph);
    font-size:1.05rem;
    line-height:1.8;
    color:var(--clr-text);
}

/* ==========================================
            GRID
========================================== */

.features-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:35px;

    max-width:1300px;

    margin:auto;

}

/* ==========================================
            CARD
========================================== */

.feature-card-1{

    background:#fff;

    border-radius:34px;

    padding:35px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    transition:.45s;

    overflow:hidden;

    position:relative;

    cursor: pointer;

}

.feature-card-1:hover{

    transform:translateY(-12px);

    box-shadow:10px 48px 95px rgba(0,0,0,.09);

}

/* ==========================================
            IMAGE
========================================== */

.feature-image{

    width:100%;

    height:250px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

}

.feature-image img{

    width:100%;

    max-width:350px;

    height: 100%;

    transition:.45s;

}

.feature-card-1:hover img{

    transform:scale(1.05);

}

/* ==========================================
            TEXT
========================================== */

.feature-card-1 h3{

    font-size:2rem;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:16px;

}

.feature-card-1 p{

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.8;

    margin-bottom:32px;

}

/* ==========================================
            BUTTON
========================================== */

.feature-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 28px;

    border-radius:999px;

    background:var(--clr-primary-light);

    color:var(--clr-white);

    transition:.35s;

    font-family:var(--ff-paragraph);

    height: 56px;

}

.feature-btn:hover{

    background:var(--clr-primary-hover-light);

    transform:translateY(-3px);

}

/* ==========================================
            TABLET
========================================== */

@media(max-width:1024px){

    .features{

        padding:90px 40px;

    }

    .features-grid{

        grid-template-columns:repeat(2,1fr);

        gap:28px;

    }

    .feature-card-1:last-child{

        grid-column:1 / -1;

        max-width:430px;

        margin:auto;

    }

}

/* ==========================================
            MOBILE
========================================== */

@media(max-width:768px){

    .features{

        padding:70px 20px;

    }

    .features-heading{

        margin-bottom:45px;

    }

    .section-title{

        font-size:2rem;

    }

    .section-description{

        font-size:.95rem;

    }

    .features-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .feature-card-1{

        padding:28px;

        border-radius:28px;

    }

    .feature-image{

        height:200px;

    }

    .feature-image img{

        max-width:280px;

    }

    .feature-card-1 h3{

        font-size:1.6rem;

    }

    .feature-btn{

        width:100%;

    }

}

/* ==========================================
        INGREDIENT SPOTLIGHT
========================================== */
.ingredients-spotlight{
    padding:80px 2%;
    background:var(--clr-white);
}

.ingredients-container{
    max-width:1300px;
    margin:50px 50px 20px;

    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:70px;
    align-items:center;
}


/* ==========================================
            LEFT
========================================== */

.ingredient-section-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:var(--clr-hover-soft);

    color:var(--clr-primary);

    font-family:var(--ff-paragraph);

    letter-spacing:3px;

    font-size:.82rem;

    font-weight:600;

    margin-bottom:28px;

}

.ingredient-title{

    font-size:clamp(2.7rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:25px;

}


#ingredientImage,
#ingredientBenefits,
#ingredientSuitable,
#ingredientWorks{

    transition: opacity .3s ease;

}

.ingredient-title span{

    color:var(--clr-primary-light);

}

.ingredient-description{

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.9;

    font-size:1.05rem;

    max-width:470px;

    margin-bottom:35px;

}


/* ==========================================
            BUTTON
========================================== */

.ingredient-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:250px;

    height:58px;

    border-radius:999px;

    background:var(--clr-primary-light);

    color:white;

    transition:.35s;

    font-family:var(--ff-paragraph);

    margin-bottom:45px;

}

.ingredient-btn:hover{

    background:var(--clr-primary-hover-light);

    transform:translateY(-3px);

}


/* ==========================================
        INGREDIENT PILLS
========================================== */

.ingredient-list{

    display:flex;
    flex-wrap:wrap;
    gap:15px;

}

.ingredient-pill{

    min-width:160px;

    padding:14px 24px;

    border-radius:999px;

    border:1px solid #eadfe8;

    background:#fff;

    cursor:pointer;

    transition:.35s;

    font-family:var(--ff-paragraph);

    font-size:1.1rem;

    text-align:center;

    color:var(--clr-heading);

}

.ingredient-pill:hover{

    transform:translateY(-3px);

    border-color:var(--clr-primary-light);

}

.ingredient-pill.active{

    background:var(--clr-primary-light);

    color:white;

    border:none;

}


/* ==========================================
            RIGHT
========================================== */

.ingredients-right{

    display:flex;

    flex-direction:column;

    gap:35px;

}

.ingredient-showcase{

    background:linear-gradient(
        145deg,
        #fff,
        #fdf6fb
    );

    border-radius:35px;

    padding:30px 30px;

    box-shadow:0 18px 45px rgba(0,0,0,.06);

}

.ingredient-showcase img{

    width:100%;

    display:block;

    border-radius:24px;

}


/* ==========================================
        DETAIL CARDS
========================================== */

.ingredient-details{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.detail-card{

    background:white;

    padding:28px;

    border-radius:26px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.detail-card:hover{

    transform:translateY(-6px);

}

.detail-card h4{

    font-size:1.25rem;

    margin-bottom:15px;

    color:var(--clr-heading);

}

.detail-card ul{

    padding-left:18px;

}

.detail-card li{

    padding:5px 0;

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

}

.detail-card p{

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.8;

}


/* ==========================================
            TABLET
========================================== */

@media(max-width:1024px){

    .ingredients-container{

        grid-template-columns:1fr;

        gap:50px;

    }

    .ingredient-description{

        max-width:100%;

    }

    .ingredient-details{

        grid-template-columns:repeat(3,1fr);

    }

}


/* ==========================================
            MOBILE
========================================== */

@media(max-width:768px){

    .ingredients-spotlight{

        padding:80px 20px;

    }

    .ingredient-title{

        font-size:2.3rem;

    }

    .ingredient-btn{

        width:100%;

    }

    #ingredientTitle{
        display: flex;
        font-size: 20px;
        align-items: center;
        justify-content: center;
    }

    .ingredient-list{

        justify-content:center;

    }

    .ingredient-pill{

        font-size:.9rem;

        padding:12px 20px;

    }

    .ingredient-details{

        grid-template-columns:1fr;

    }

}

/* ==========================================
            SKIN CONCERNS
========================================== */

.skin-concerns{
    padding:130px 5%;
    background:var(--clr-white);
}

.skin-container{

    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1.25fr;
    gap:70px;

    align-items:center;

}


/* ==========================================
            LEFT
========================================== */

.skin-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:var(--clr-hover-soft);

    color:var(--clr-primary);

    font-family:var(--ff-paragraph);

    letter-spacing:3px;

    font-size:.82rem;

    font-weight:600;

    margin-bottom:28px;

}

.skin-title{

    font-size:clamp(2.8rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:24px;

}

.skin-title span{

    color:var(--clr-primary-light);

}

.skin-description{

    max-width:470px;

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.9;

    margin-bottom:45px;

}


/* ==========================================
            CONCERN BUTTONS
========================================== */

.concern-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.concern-pill{

    width:100%;

    height:66px;

    padding:0 26px;

    border-radius:999px;

    background:#fff;

    border:1px solid #ebe1e8;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    transition:.35s;

    font-family:var(--ff-paragraph);

    font-size:1rem;

    color:var(--clr-heading);

}

.concern-pill:hover{

    transform:translateY(-4px);

    border-color:var(--clr-primary-light);

    box-shadow:0 12px 30px rgba(0,0,0,.06);

}

.concern-pill.active{

    background:var(--clr-primary-light);

    color:#fff;

    border:none;

}


/* ==========================================
            RIGHT
========================================== */

.skin-right{

    display:flex;

    flex-direction:column;

    gap:28px;

}


/* ==========================================
            IMAGE
========================================== */

.concern-image{

    overflow:hidden;

    border-radius:34px;

    box-shadow:0 18px 45px rgba(0,0,0,.06);

}

.concern-image img{

    width:100%;

    display:block;

    transition:.45s;

}

.concern-image:hover img{

    transform:scale(1.03);

}


/* ==========================================
            INFO CARDS
========================================== */

.concern-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.concern-card{

    background:#fff;

    border-radius:26px;

    padding:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.concern-card:hover{

    transform:translateY(-6px);

}

.concern-card h4{

    font-size:1.35rem;

    color:var(--clr-heading);

    margin-bottom:18px;

}

.concern-card p{

    font-family:var(--ff-paragraph);

    line-height:1.8;

    color:var(--clr-text);

}

.concern-card ul{

    padding-left:18px;

}

.concern-card li{

    padding:6px 0;

    font-family:var(--ff-paragraph);

    line-height:1.7;

    color:var(--clr-text);

}


/* ==========================================
            TABLET
========================================== */

@media(max-width:1024px){

    .skin-container{

        grid-template-columns:1fr;

        gap:55px;

    }

    .skin-description{

        max-width:100%;

    }

    .concern-cards{

        grid-template-columns:repeat(3,1fr);

    }

}


/* ==========================================
            MOBILE
========================================== */

@media(max-width:768px){

    .skin-concerns{

        padding:80px 20px;

    }

    .skin-title{

        font-size:2.2rem;

    }

    .concern-pill{

        height:58px;

        padding:0 20px;

    }

    .concern-cards{

        grid-template-columns:1fr;

    }

    .concern-card{

        padding:24px;

    }

}

/* ==========================================
            THE HEART OF ASKMIMII
========================================== */
.about-heading{

   
    max-width:1220px;

    margin:0 auto 45px;

    display:flex;

    flex-direction:column;
}


.about-mimii{

    padding:90px 3%;

    background:var(--clr-white);

}

.about-container{

    
    max-width:1200px;

    grid-template-columns:600px 1fr;

    gap:50px;

    align-items:start;

    display:grid;

    margin:auto;
    
}


/* ==========================================
            LEFT IMAGE
========================================== */

.about-image{

    border-radius:38px;

    overflow:hidden;

    aspect-ratio:5/4;

}

.about-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.35s ease

}

.about-image:hover img{

    transform:scale(1.03);

}


/* ==========================================
            RIGHT CONTENT
========================================== */
.about-content{

    width:100%;
    max-width: 650px;


}
.about-tag{

    display:flex;

    align-items: center;

    padding:10px 18px;

    border-radius:999px;

    background:var(--clr-hover-soft);

    color:var(--clr-primary);

    font-family:var(--ff-paragraph);

    letter-spacing:3px;

    font-size:.62rem;

    font-weight:600;

    margin-bottom:28px;

    width: max-content;

}

.about-title{

    font-size:clamp(2.8rem,2vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:20px;

}

.about-title span{

    color:var(--clr-primary-light);

}

.about-text{

    max-width:500px;

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.9;

    color:var(--clr-text);

    margin-bottom:40px;

}

.about-text strong{
    color: var(--clr-primary);
}


/* ==========================================
            VALUES
========================================== */

.about-values{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

    margin:15px 0;

}

.value-card{

    background:#fff;

    border-radius:26px;

    padding:23px 22px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.value-card:hover{

    transform:translateY(-8px);

}



.value-card h4{

    font-size:1.2rem;

    font-weight:500;

    color:var(--clr-primary-hover-light);

    margin-bottom:12px;

}

.value-card p{

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.7;

    font-size:.95rem;

}


/* ==========================================
            BUTTON
========================================== */

.about-title-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:10px;
 
}

.about-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:220px;

    flex-shrink: 0;

    height:58px;

    border-radius:999px;

    background:var(--clr-primary-light);

    color:var(--clr-white);

    font-family:var(--ff-paragraph);

    transition:.35s;

    margin-bottom:60px;

}

.about-btn:hover{

    background:var(--clr-primary-hover-light);

    transform:translateY(-4px);

}


/* ==========================================
            TABLET
========================================== */

@media(max-width:1024px){

    .about-container{

        grid-template-columns:1fr;

        gap:55px;

        justify-content: center;

    }

    .about-content{
        display: flex;

        flex-direction: column;
        align-items: center;

        text-align: center;
        width: 100%;

        max-width: 700px;

        text-align: center;

        margin: 0 auto;
    }

    .about-image{

        margin: 0 auto;
    }

    .about-image img{
        width: 100%;
        display: block;
    }

}


/* ==========================================
            MOBILE
========================================== */

@media(max-width:768px){

    .about-mimii{

        padding:80px 20px;

    }

    .about-title{

        font-size:2.2rem;

    }

    .about-values{

        grid-template-columns:1fr;

    }

    .value-card{

        padding:25px;

    }

    .about-btn{

        width:100%;

    }

}

.reveal-left{

    opacity:0;

    transform:translateX(-70px);

    transition:.8s ease;

}

.reveal-right{

    opacity:0;

    transform:translateX(70px);

    transition:.8s ease;

}

.reveal-card{

    opacity:0;

    transform:translateY(35px);

    transition:.6s ease;

}

.reveal-left.show,
.reveal-right.show,
.reveal-card.show{

    opacity:1;

    transform:translate(0);

}


/*==============================================
            KNOWLEDGE HUB
==============================================*/

.knowledge-hub{
    padding: 10px 4%;
    background: var(--clr-white);

    margin-top: 50px;
}

.knowledge-shell{
    max-width: 1220px;
    margin: 0 auto;
}


/*==============================================
            HEADER
==============================================*/

.knowledge-header{
    max-width: 760px;

    width:100%;
    margin: 0 auto 40px;
    text-align: center;
}

.knowledge-badge{
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 22px;

    border-radius: 999px;

    background: var(--clr-hover-soft);
    color: var(--clr-primary);

    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.knowledge-heading{
    margin-bottom: 22px;

    color: var(--clr-heading);

     font-size:clamp(2.7rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

}

.knowledge-intro{
    max-width: 620px;
    margin: auto;

    color: var(--clr-text);

    font-family: var(--ff-paragraph);

    font-size: 1.05rem;
    line-height: 1.8;
}


/*==============================================
            GRID
==============================================*/

.knowledge-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;

    margin-top: 60px;
}


/*==============================================
            CARD
==============================================*/


.knowledge-card{

    padding: 42px 32px;

    background: var(--clr-white);

    border: 2px solid rgba(0,0,0,.06);

    border-radius: 30px;

    text-align: center;

    transition: .35s ease;

    margin-bottom: 100PX;


}


/*==============================================
            IMAGE
==============================================*/

/* .topic-card{

    display: flex;

    flex-direction: column;

    align-items: center;

} */
.knowledge-illustration{

    width: 120px;
    height: 120px;

    margin: 0 auto 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: var(--clr-hover-soft);
}

.knowledge-illustration img{

    width: 120px;

    display: block;

}


/*==============================================
            TEXT
==============================================*/

.knowledge-title{

    margin-bottom: 16px;

    color: var(--clr-heading);

    font-family: var(--ff-paragraph);

    font-size: 1.45rem;
    font-weight: 600;

}

.knowledge-description{

    margin-bottom: 30px;

    font-family: var(--ff-paragraph);

    color: var(--clr-text);

    line-height: 1.8;

}


/*==============================================
            LINK
==============================================*/

.knowledge-link{

    display: inline-flex;
    align-items: center;
    gap: 4px;

    text-decoration: none;

    color: var(--clr-primary);

    font-weight: 500;

    font-size: 20px;

    transition: .3s;
}


.knowledge-illustration-1 a{
 display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 28px;

    border-radius:999px;

    background:var(--clr-primary-light);

    color:var(--clr-white);

    transition:.35s;

    font-family:var(--ff-paragraph);

    height: 56px;

    

}


.knowledge-illustration-1 a:hover{

     background:var(--clr-primary-hover-light);

    transform:translateY(-3px);
}
.knowledge-link span{

    transition: .3s;

}


.knowledge-hub-1{
    padding: 10px 4%;
  

    margin-top: 50px;

    margin-bottom: 90px;
}


.knowledge-header-1{
   

    width:100%;
    margin: 0 auto 40px;
    text-align: center;
}


.knowledge-badge-1{
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 22px;

    border-radius: 999px;

    background: var(--clr-hover-soft);
    color: var(--clr-primary);

    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.knowledge-heading-1{
    margin-bottom: 22px;

    color: var(--clr-heading);

     font-size:clamp(2.7rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

}

.knowledge-intro-1{
    /* max-width: 620px; */
    margin: auto;

    color: var(--clr-text);

    font-family: var(--ff-paragraph);

    font-size: 1.05rem;
    line-height: 1.8;
}


/*==============================================
            GRID
==============================================*/

/*==============================================
            CARD
==============================================*/
.knowledge-card-1{
     padding: 42px 32px;

    
    background: var(--clr-white);

    border: 2px solid rgba(0,0,0,.06);

    border-radius: 30px;

    

    transition: .35s ease;
      background: linear-gradient(135deg, #fff8fc, #ffffff, #fff6fb);

    margin: 40PX;

    
     display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;

    text-align: center;

    max-width: 1200PX;
    height: 450px;

    
}

.knowledge-illustration-1{

    width: 100%;
    
    max-width: 460px;
    
    align-items: center;

    
}

.knowledge-illustration-1 img{

    width: 120px;
    height: 120px;

    margin: 0 auto 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: var(--clr-hover-soft);

    transition: transform 0.35s, background 0.35s;

    display: block;

    width: 120px;

   
   

}


.knowledge-illustration-1  h3{

    margin-bottom: 16px;

    color: var(--clr-heading);

    font-family: var(--ff-paragraph);

    font-size: 1.45rem;
    font-weight: 600;

}

.knowledge-illustration-1  p{

    margin-bottom: 30px;

    font-family: var(--ff-paragraph);

    color: var(--clr-text);

    line-height: 1.8;

}

/*==============================================
            RESPONSIVE
==============================================*/

@media (max-width:1100px){

    .knowledge-grid{

        grid-template-columns: repeat(2,1fr);

    }

}

@media (max-width:768px){

    .knowledge-hub{

        padding: 90px 20px;

    }

    .knowledge-header{

        margin-bottom: 50px;

    }

    .knowledge-grid{

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .knowledge-card{

        padding: 36px 28px;

    }

    .knowledge-heading{

        font-size: 2.2rem;

    }

}

/*==============================================
            CARD HOVER EFFECTS
==============================================*/

.knowledge-card{
    position: relative;
    overflow: hidden;
    cursor: pointer;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.knowledge-card:hover{

    transform: translateY(-10px);

    border-color: rgba(214,170,210,.45);

    box-shadow:
        0 18px 45px rgba(223,184,216,.22);

}


/*==============================================
        SOFT TOP HIGHLIGHT
==============================================*/

.knowledge-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        #f7d7ec,
        #e8d5ff
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.knowledge-card:hover::before{

    transform:scaleX(1);

}


/*==============================================
        ICON ANIMATION
==============================================*/

.knowledge-illustration{

    transition:
        transform .35s ease,
        background .35s ease;
}

.knowledge-card:hover .knowledge-illustration{

    transform:scale(1.08);

    background:#fff3fb;

}

.knowledge-illustration img{

    transition:transform .35s ease;

}

.knowledge-card:hover
.knowledge-illustration img{

    transform:scale(1.08);

}


/*==============================================
            TITLE
==============================================*/

.knowledge-title{

    transition:color .3s;

}

.knowledge-card:hover
.knowledge-title{

    color:var(--clr-primary);

}


/*==============================================
            LINK
==============================================*/

.knowledge-link{

    position:relative;

}

.knowledge-link span{

    display:inline-block;

}

.knowledge-card:hover
.knowledge-link span{

    transform:translateX(6px);

}


/*==============================================
        DESCRIPTION
==============================================*/

.knowledge-description{

    transition:color .3s;

}

.knowledge-card:hover
.knowledge-description{

    color:#555;

}


/*==============================================
        IMAGE FLOATING
==============================================*/





/*==============================================
            STAGGER DELAY
==============================================*/

.knowledge-card:nth-child(1){

    transition-delay:.1s;

}

.knowledge-card:nth-child(2){

    transition-delay:.2s;

}

.knowledge-card:nth-child(3){

    transition-delay:.3s;

}

.knowledge-card{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    background:rgba(255,255,255,.45);

    animation:ripple .6s linear;

    pointer-events:none;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}

/*==============================================
            CARD HOVER EFFECTS
==============================================*/

.knowledge-card-1{
    position: relative;
    overflow: hidden;
    cursor: pointer;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.knowledge-card-1:hover{

    transform: translateY(-10px);

    border-color: rgba(214,170,210,.45);

    box-shadow:
        0 18px 45px rgba(223,184,216,.22);

}


/*==============================================
        SOFT TOP HIGHLIGHT
==============================================*/

.knowledge-card-1::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        #f7d7ec,
        #e8d5ff
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.knowledge-card-1:hover::before{

    transform:scaleX(1);

}


/*==============================================
        ICON ANIMATION
==============================================*/

.knowledge-illustration-1{

    transition:
        transform .35s ease,
        background .35s ease;
}

.knowledge-card-1:hover .knowledge-illustration{

    transform:scale(1.08);

    background:#fff3fb;

}

.knowledge-illustration-1 img{

    transition:transform .35s ease;

}

.knowledge-card-1:hover
.knowledge-illustration img{

    transform:scale(1.08);

}


/*==============================================
            TITLE
==============================================*/
.knowledge-illustration-1 h3{

    transition:color .3s;

}

.knowledge-card-1:hover
.knowledge-illustration-1 h3{

    color:var(--clr-primary);

}


/*==============================================
            LINK
==============================================*/

.knowledge-illustration-1 a{

    position:relative;

}

.knowledge-illustration-1 a span{

    display:inline-block;

}

.knowledge-card-1:hover
.knowledge-illustration-1 a span{

    transform:translateX(6px);

}


/*==============================================
        DESCRIPTION
==============================================*/

.knowledge-illustration-1 p{

    transition:color .3s;

}

.knowledge-card-1:hover
.knowledge-illustration-1 p{

    color:#555;

}


/*==============================================
        IMAGE FLOATING
==============================================*/





/*==============================================
            STAGGER DELAY
==============================================*/

.knowledge-card-1:nth-child(1){

    transition-delay:.1s;

}

.knowledge-card-1:nth-child(2){

    transition-delay:.2s;

}

.knowledge-card-1:nth-child(3){

    transition-delay:.3s;

}

.knowledge-card-1{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    background:rgba(255,255,255,.45);

    animation:ripple .6s linear;

    pointer-events:none;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}

/*==============================================
                TABLET
        (Landscape & Portrait iPad)
==============================================*/

@media screen and (max-width:1024px){

    .knowledge-hub{
        padding:100px 5%;
    }

    .knowledge-header{
        max-width:650px;
        margin-bottom:60px;
    }

    .knowledge-heading{
        font-size:3rem;
    }

    .knowledge-intro{
        max-width:550px;
    }

    .knowledge-grid{

        grid-template-columns:repeat(2,1fr);

        gap:28px;

    }

    .knowledge-card{

        padding:36px 28px;

    }

    .knowledge-illustration{

        width:100px;
        height:100px;

    }

    .knowledge-illustration img{

        width:65px;

    }

    .knowledge-title{

        font-size:1.3rem;

    }

}
/* ==========================================
        ASK MIMII — MOBILE RESPONSIVE
========================================== */

@media screen and (max-width: 768px){

    .knowledge-hub-1{
        padding: 80px 20px;
        width: 100%;
    }

    .knowledge-shell-1{
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }


    /* ==========================================
            SECTION HEADER
    ========================================== */

    .knowledge-header-1{
        width: 100%;
        max-width: 100%;
        margin: 0 auto 45px;
        text-align: center;
    }

    .knowledge-badge-1{
        font-size: .72rem;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .knowledge-heading-1{
        font-size: 2.15rem;
        line-height: 1.25;
        margin-bottom: 18px;
        max-width: 100%;
    }

    .knowledge-intro-1{
        max-width: 100%;
        margin: 0 auto;
        font-size: .95rem;
        line-height: 1.7;
    }


    /* ==========================================
            ASK MIMII CARD
    ========================================== */

    .knowledge-card-1{

        width: 100%;
        max-width: 100%;

        margin: 0 auto;

        padding: 30px 22px;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;

        border-radius: 28px;

        overflow: hidden;
    }


    /* ==========================================
            MAIN HERO ILLUSTRATION
    ========================================== */

    .askmimii-question-illustration{

        width: 100%;
        max-width: 330px;

        margin: 0 auto 25px;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .askmimii-question-illustration img{

        width: 100%;
        max-width: 330px;
        height: auto;

        display: block;
        object-fit: contain;
    }


    /* ==========================================
            ASK MIMII CONTENT
    ========================================== */

    .knowledge-illustration-1{

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .knowledge-illustration-1 img{

        width: 75px;
        height: 75px;

        object-fit: contain;

        margin-bottom: 18px;
    }

    .knowledge-illustration-1 h3{

        font-size: 1.6rem;
        line-height: 1.2;

        margin: 0 0 14px;

    }

    .knowledge-illustration-1 p{

        max-width: 100%;

        font-size: .95rem;
        line-height: 1.7;

        margin: 0 0 25px;
    }

    .knowledge-illustration-1 a{

        display: inline-flex;

        align-items: center;
        justify-content: center;

        gap: 8px;

        width: 100%;
        max-width: 260px;

        min-height: 52px;

        padding: 12px 22px;

        border-radius: 999px;

        font-size: .95rem;

        text-decoration: none;
    }

}


/* ==========================================
        SMALL MOBILE
========================================== */

@media screen and (max-width: 480px){

    .knowledge-hub-1{
        padding: 70px 16px;
    }

    .knowledge-header-1{
        margin-bottom: 35px;
    }

    .knowledge-heading-1{
        font-size: 1.85rem;
        line-height: 1.25;
    }

    .knowledge-intro-1{
        font-size: .9rem;
        line-height: 1.65;
    }

    .knowledge-card-1{
        padding: 25px 18px;
        border-radius: 24px;
    }

    .askmimii-question-illustration{
        max-width: 290px;
        margin-bottom: 20px;
    }

    .askmimii-question-illustration img{
        max-width: 130px;
    }

    .knowledge-illustration-1 img{
        
        display: none;
    }

    .knowledge-illustration-1 h3{
        font-size: 1.45rem;
    }

    .knowledge-illustration-1 p{
        font-size: .9rem;
        line-height: 1.65;
    }

    .knowledge-illustration-1 a{
        max-width: 240px;
        min-height: 50px;
        font-size: .9rem;
    }

}
/*==============================================
                MOBILE
==============================================*/

@media screen and (max-width:768px){

    .knowledge-hub{

        padding:80px 20px;

    }

    .knowledge-header{

        margin-bottom:45px;

    }

    .knowledge-heading{

        font-size:2.2rem;

        line-height:1.3;

    }

    .knowledge-intro{

        font-size:.95rem;

        line-height:1.7;

    }

    .knowledge-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .knowledge-card{

        padding:32px 24px;

    }
    

    .knowledge-illustration{

        width:90px;
        height:90px;

        margin-bottom:24px;

    }

    .knowledge-illustration img{

        width:58px;

    }

    .knowledge-title{

        font-size:1.25rem;

    }

    .knowledge-description{

        margin-bottom:24px;

        font-size:.95rem;

    }

    .knowledge-link{

        padding:10px 18px;

        font-size:.95rem;

    }

}


/*==============================================
            SMALL MOBILE
==============================================*/

@media screen and (max-width:480px){

    .knowledge-hub{

        padding:70px 16px;

    }

    .knowledge-heading{

        font-size:1.9rem;

    }

    .knowledge-card{

        border-radius:24px;

        padding:28px 20px;

    }

    .knowledge-illustration{

        width:80px;
        height:80px;

    }

    .knowledge-illustration img{

        width:50px;

    }

}
