/*=========================================
            ACNE HERO
=========================================*/

.acne-hero{

    min-height:100vh;

    padding-top:120px;
    padding-inline:5%;

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

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

    margin-bottom: 30px;

}



.acne-hero-container{

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

    display:flex;

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

    gap:70px;

}

/*=========================================
            CONTENT
=========================================*/

.acne-hero-content{

    flex:1;
    max-width:520px;

}

.acne-hero-title{

    font-size:clamp(3.5rem,5vw,4.8rem);

    line-height:1.08;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:30px;

}

.acne-hero-description{

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

    font-size:1.08rem;

    line-height:1.9;

    color:var(--clr-text);

    max-width:520px;

    margin-bottom:42px;

}

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

.acne-hero-btn{

    display:inline-flex;

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

    gap:12px;

    height:58px;

    padding:0 34px;

    border-radius:999px;

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

    color:var(--clr-white);

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

    font-size:.98rem;

    font-weight:500;

    transition:.35s ease;

}

.acne-hero-btn:hover{

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

    transform:translateY(-4px);

}

.acne-hero-btn span{

    transition:.35s;

}

.acne-hero-btn:hover span{

    transform:translateY(3px);

}

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

.acne-hero-image{

    flex:1;

    position:relative;

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

    /* margin-top: 30px; */

}

.acne-hero-image::before{

    content:"";

    position:absolute;
/* 
    width:620px;
    height:520px; */

    border-radius:50%;

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

    filter:blur(35px);

    animation:pulse 6s ease-in-out infinite;
    

}

.acne-hero-image img{

    width:200%;
    max-width:600px;

    position:relative;

    z-index:2;

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

}

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

@media(max-width:1024px){

    .acne-hero{

        min-height:auto;

        padding-top:110px;

        padding-inline:40px;

    }

    .acne-hero-container{

        gap:40px;

    }

    .acne-hero-title{

        font-size:3.4rem;

    }

    .acne-hero-image img{

        max-width:430px;

    }

}

@media(max-width:768px){

    .acne-hero{

        padding-top:90px;

        padding-inline:20px;

    }

    .acne-hero-container{

        flex-direction:column-reverse;

        text-align:center;

        gap:35px;

    }

    .acne-hero-description{

        margin-inline:auto;

    }

    .acne-hero-btn{

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

        margin:auto;

    }

    .acne-hero-image img{

        max-width:340px;

    }

    .acne-hero-image::before{

        width:360px;
        height:360px;

    }

}

@media(max-width:480px){

    .acne-hero-title{

        font-size:2.4rem;

    }

    .acne-hero-description{

        font-size:.95rem;

    }

    .acne-hero-image img{

        max-width:260px;

    }

}

/*=========================================
        WHAT IS ACNE
=========================================*/

.what-is-acne{

    margin-top: 100px;

    margin-bottom: 100px;

    padding:30px 5%;

    background:var(--clr-white);

}

.what-is-acne-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1.15fr;

    gap:70px;

    align-items:center;

}


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

.what-is-acne-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.what-is-acne-image img{

    width:100%;

    max-width:520px;

    display:block;

    transition:.4s ease;

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

}

.what-is-acne-image:hover img{

    transform:scale(1.03);

}


/*=========================================
            CONTENT
=========================================*/

.what-is-acne-content{

    width:100%;

}

.section-tag{

    display:inline-block;

    padding:10px 18px;

    margin-bottom:26px;

    border-radius:999px;

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

    color:var(--clr-primary);

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

    font-size:.82rem;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}

.what-is-acne-content h2{

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

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:24px;

}

.what-is-acne-content p{

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

    font-size:1.05rem;

    line-height:1.9;

    color:var(--clr-text);

    margin-bottom:22px;

}


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

.acne-note{

    margin-top:40px;

    padding:28px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fff;

    border-radius:28px;

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

    transition:.35s;

}

.acne-note:hover{

    transform:translateY(-6px);

}

.note-icon{

    width:58px;

    height:58px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

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

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

    font-size:1.3rem;

}

.acne-note p{

    margin:0;

}


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

@media(max-width:1024px){

    .what-is-acne-container{

        grid-template-columns:1fr;

        gap:55px;

    }

    .what-is-acne-content{

        text-align:center;

    }

    .acne-note{

        text-align:left;

    }

}

@media(max-width:768px){

    .what-is-acne{

        padding:70px 20px;

    }

    .what-is-acne-content h2{

        font-size:2.2rem;

    }

    .what-is-acne-content p{

        font-size:.98rem;

    }

    .acne-note{

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:24px;

    }

}


/*=========================================
        HOW ACNE FORMS
=========================================*/

.acne-formation{

    padding:80px 5%;

    background:var(--clr-white);

}

.acne-formation-container{

    max-width:1300px;

    margin:auto;

}

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

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-block;

    padding:10px 18px;

    margin-bottom:22px;

    border-radius:999px;

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

    color:var(--clr-primary);

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

    font-size:.82rem;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}

.section-heading h2{

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

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:22px;

}

.section-heading p{

    max-width:620px;

    margin:auto;

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

    font-size:1.05rem;

    line-height:1.8;

    color:var(--clr-text);

}

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

.formation-timeline{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:28px;

}

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

.timeline-item{

    background:var(--clr-white);

    border-radius:30px;

    padding:34px 30px;

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

    transition:.35s ease;

    cursor:default;

}

.timeline-item:hover{

    transform:translateY(-8px);

    box-shadow:0 24px 55px rgba(0,0,0,.08);

}

/*=========================================
            STEP NUMBER
=========================================*/

.timeline-icon{

    width:58px;

    height:58px;

    margin-bottom:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

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

    color:var(--clr-primary);

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

    font-weight:700;

    font-size:1.05rem;

    transition:.35s;

}

.timeline-item:hover .timeline-icon{

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

    color:var(--clr-white);

    transform:scale(1.08);

}

/*=========================================
            CONTENT
=========================================*/

.timeline-content h3{

    font-size:1.45rem;

    font-weight:600;

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

    color:var(--clr-heading);

    margin-bottom:16px;

}

.timeline-content p{

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

    color:var(--clr-text);

    line-height:1.8;

}

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

@media(max-width:1024px){

    .formation-timeline{

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

    }

}

@media(max-width:768px){

    .acne-formation{

        padding:70px 20px;

    }

    .section-heading{

        margin-bottom:50px;

    }

    .section-heading h2{

        font-size:2.2rem;

    }

    .section-heading p{

        font-size:.95rem;

    }

    .formation-timeline{

        grid-template-columns:1fr;

        gap:22px;

    }

    .timeline-item{

        padding:28px 24px;

    }

    .timeline-content h3{

        font-size:1.3rem;

    }

}


/*=========================================
            TYPES OF ACNE
=========================================*/

.types-of-acne{

    padding:80px 5%;

    background:var(--clr-white);

}

.types-container{

    max-width:1300px;

    margin:auto;

}


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

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-block;

    padding:10px 20px;

    margin-bottom:22px;

    border-radius:999px;

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

    color:var(--clr-primary);

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

    font-size:.8rem;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}

.section-heading h2{

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

    line-height:1.15;

    font-weight:400;

    color:var(--clr-heading);

    margin-bottom:22px;

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

}

.section-heading p{

    max-width:620px;

    margin:auto;

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

    font-size:1.05rem;

    line-height:1.8;

    color:var(--clr-text);

}


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

.types-grid{

    display:grid;

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

    gap:32px;

}


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

.type-card{

    background:var(--clr-white);

    border-radius:32px;

    padding:35px;

    text-align:center;

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

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

    overflow:hidden;

    position:relative;

    cursor:pointer;

}

.type-card:hover{

    transform:translateY(-10px);

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

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

}


/*=========================================
        TOP ACCENT BAR
=========================================*/

.type-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:.35s;

}

.type-card:hover::before{

    transform:scaleX(1);

}


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

.type-image{

    width:170px;

    height:170px;

    margin:0 auto 28px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

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

    transition:.35s;

}

.type-card:hover .type-image{

    transform:scale(1.08);

    background:#fff3fb;

}

.type-image img{

    width:125px;

    transition:.35s;

}

.type-card:hover .type-image img{

    transform:scale(1.08);

}


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

.type-card h3{

    font-size:2rem;

    font-weight:600;

    color:var(--clr-heading);

    margin-bottom:16px;

    transition:.3s;

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

}

.type-card:hover h3{

    color:var(--clr-primary);

}

.type-card p{

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

    color:var(--clr-text);

    line-height:1.8;

}


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

@media(max-width:1024px){

    .types-grid{

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

    }

}

@media(max-width:768px){

    .types-of-acne{

        padding:70px 20px;

    }

    .section-heading{

        margin-bottom:50px;

    }

    .section-heading h2{

        font-size:2.2rem;

    }

    .section-heading p{

        font-size:.95rem;

    }

    .types-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .type-card{

        padding:30px 26px;

    }

    .type-image{

        width:140px;

        height:140px;

    }

    .type-image img{

        width:100px;

    }

}




/*=========================================
        SIGNS & SYMPTOMS
=========================================*/

.acne-symptoms{

    padding:80px 5%;

    background:var(--clr-white);

}

.symptoms-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1.15fr;

    gap:70px;

    align-items:center;

}

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

.symptoms-left{

    width:100%;

}

.symptoms-left h2{

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

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:24px;

}

.symptoms-description{

    max-width:500px;

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

    color:var(--clr-text);

    font-size:1.05rem;

    line-height:1.9;

    margin-bottom:40px;

}

.symptoms-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.symptoms-image img{

    width:100%;

    max-width:500px;

    display:block;

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

    transition:.4s;

}

.symptoms-image:hover img{

    transform:scale(1.03);

}


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

.symptoms-right{

    display:grid;

    gap:22px;

}


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

.symptom-card{

    display:flex;

    align-items:flex-start;

    gap:22px;

    padding:28px;

    background:var(--clr-white);

    border-radius:28px;

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

    transition:.35s ease;

    border:2px solid transparent;

}

.symptom-card:hover{

    transform:translateY(-8px);

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

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

}


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

.symptom-icon{

    width:90px;

    height:90px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

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

    transition:.35s;

}

.symptom-card:hover .symptom-icon{

    transform:scale(1.08);

    background:#fff3fb;

}

.symptom-icon img{

    width:80px;

}


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

.symptom-card h3{

    font-size:1.35rem;

    font-weight:600;

    color:var(--clr-heading);

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

    margin-bottom:10px;

    transition:.3s;

}

.symptom-card:hover h3{

    color:var(--clr-primary);

}

.symptom-card p{

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

    color:var(--clr-text);

    line-height:1.8;

}


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

@media(max-width:1024px){

    .symptoms-container{

        grid-template-columns:1fr;

        gap:55px;

    }

    .symptoms-left{

        text-align:center;

    }

    .symptoms-description{

        margin-inline:auto;

    }

}

@media(max-width:768px){

    .acne-symptoms{

        padding:70px 20px;

    }

    .symptoms-left h2{

        font-size:2.2rem;

    }

    .symptoms-description{

        font-size:.95rem;

    }

    .symptom-card{

        padding:24px;

        gap:18px;

    }

    .symptom-icon{

        width:60px;

        height:60px;

    }

    .symptom-icon img{

        width:32px;

    }

    .symptom-card h3{

        font-size:1.2rem;

    }

}

@media(max-width:480px){

    .symptom-card{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

}



/*=========================================
            CAUSES OF ACNE
=========================================*/

.acne-causes{

    padding:80px 5%;

    background:linear-gradient(
        180deg,
        #fff,
        #fff9fc
    );

}

.causes-container{

    max-width:1300px;

    margin:auto;

}


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

.causes-grid{

    display:grid;

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

    gap:28px;

    margin-top:60px;

}


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

.cause-card{

    background:var(--clr-white);

    border-radius:30px;

    padding:35px;

    box-shadow:0 18px 40px rgba(0,0,0,.05);

    transition:.35s ease;

}

.cause-card:hover{

    transform:translateY(-8px);

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

}


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

.cause-icon{

    width:78px;

    height:78px;

    margin-bottom:26px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:22px;

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

    transition:.35s ease;

}

.cause-card:hover .cause-icon{

    transform:scale(1.08);

    background:#fff3fb;

}

.cause-icon img{

    width:70px;

    display:block;

}


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

.cause-card h3{

    font-size:1.45rem;

    font-weight:600;

    color:var(--clr-heading);

    margin-bottom:16px;

    transition:.3s;
    
    font-family: var(--ff-paragraph);

}

.cause-card:hover h3{

    color:var(--clr-primary);

}

.cause-card p{

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

    font-size:1rem;

    line-height:1.8;

    color:var(--clr-text);

}

.cause-card em{

    font-style:italic;

}


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

@media(max-width:1024px){

    .causes-grid{

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

    }

}

@media(max-width:768px){

    .acne-causes{

        padding:70px 20px;

    }

    .causes-grid{

        grid-template-columns:1fr;

        gap:22px;

        margin-top:45px;

    }

    .cause-card{

        padding:28px;

    }

    .cause-icon{

        width:68px;

        height:68px;

    }

    .cause-icon img{

        width:42px;

    }

    .cause-card h3{

        font-size:1.3rem;

    }

    .cause-card p{

        font-size:.95rem;

    }

}

/*=========================================
            RISK FACTORS
=========================================*/

.risk-factors{

    padding:80px 5%;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #fff9fc 100%
    );

}

.risk-factors-container{

    max-width:1300px;

    margin:auto;

}


/*=========================================
            HEADING
=========================================*/

.risk-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.risk-heading h2{

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

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:22px;

    line-height:1.15;

}

.risk-heading p{

    max-width:620px;

    margin:auto;

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

    font-size:1.05rem;

    line-height:1.9;

    color:var(--clr-text);

}


/*=========================================
            LIST
=========================================*/

.risk-list{

    display:grid;

    gap:22px;

}


/*=========================================
            ITEM
=========================================*/

.risk-item{

    display:flex;

    align-items:center;

    gap:26px;

    padding:28px 34px;

    background:#ffffff;

    border-radius:30px;

    box-shadow:0 16px 38px rgba(0,0,0,.05);

    transition:.35s ease;

    border:2px solid transparent;

}

.risk-item:hover{

    transform:translateY(-6px);

    border-color:rgba(220,175,205,.45);

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

}


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

.risk-icon{

    width:76px;

    height:76px;

    flex-shrink:0;

    border-radius:22px;

    background:#fff3fa;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.risk-item:hover .risk-icon{

    transform:scale(1.08);

    background:#fdeaf4;

}

.risk-icon img{

    width:72px;

    display:block;

}


/*=========================================
            CONTENT
=========================================*/

.risk-content{

    flex:1;

}

.risk-content h3{

    font-size:1.45rem;

    font-weight:600;

    color:var(--clr-heading);

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

    margin-bottom:10px;

    transition:.3s;

}

.risk-item:hover h3{

    color:var(--clr-primary);

}

.risk-content p{

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

    font-size:1rem;

    color:var(--clr-text);

    line-height:1.8;

}


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

@media(max-width:1024px){

    .risk-factors{

        padding:70px 40px;

    }

}

@media(max-width:768px){

    .risk-factors{

        padding:70px 20px;

    }

    .risk-heading{

        margin-bottom:45px;

    }

    .risk-heading h2{

        font-size:2.2rem;

    }

    .risk-heading p{

        font-size:.95rem;

    }

    .risk-item{

        padding:24px;

        gap:18px;

    }

    .risk-icon{

        width:62px;

        height:62px;

    }

    .risk-icon img{

        width:64px;

    }

    .risk-content h3{

        font-size:1.2rem;

    }

}

@media(max-width:480px){

    .risk-item{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

}

/*=========================================
        COMMON TRIGGERS
=========================================*/

.acne-triggers{

    padding:90px 5%;

    background:#fffafc;

}

.triggers-container{

    max-width:1300px;

    margin:auto;

}


/*=========================================
        ACCORDION
=========================================*/

.trigger-accordion{

    display:flex;

    flex-direction:column;

    gap:22px;

    margin-top:60px;

}


/*=========================================
        ITEM
=========================================*/

.trigger-item{

    background:#ffffff;

    border:2px solid #f2e5ec;

    border-radius:28px;

    overflow:hidden;

    transition:.35s ease;

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

}

.trigger-item:hover{

    transform:translateY(-5px);

    border-color:#edd6e3;

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

}

.trigger-item.active{

    border-color:#e3a8c3;

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

}


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

.trigger-header{

    width:100%;

    border:none;

    background:none;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    text-align:left;

}


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

.trigger-left{

    display:flex;

    align-items:center;

    gap:20px;

}

.trigger-left img{

    width:66px;

    height:66px;

    /* padding:12px; */

    background:#fff3fa;

    border-radius:18px;

    transition:.35s;

}

.trigger-item:hover .trigger-left img{

    transform:scale(1.08);

    background:#fdebf5;

}

.trigger-left h3{

    font-size:1.3rem;

    font-weight:600;

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

    color:var(--clr-heading);

    transition:.3s;

}

.trigger-item:hover .trigger-left h3{

    color:var(--clr-primary);

}


/*=========================================
        CHEVRON
=========================================*/

.trigger-plus{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#fff4f9;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#cf679d;

    transition:.35s;

    flex-shrink:0;

}

.trigger-item.active .trigger-plus{

    transform:rotate(180deg);

    background:#fde8f2;

}

.trigger-plus i{

    font-size:.95rem;

}


/*=========================================
        CONTENT
=========================================*/

.trigger-content{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.trigger-item.active .trigger-content{

    max-height:220px;

}

.trigger-content p{

    padding:0 30px 28px 106px;

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

    font-size:1rem;

    line-height:1.9;

    color:var(--clr-text);

}


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

@media(max-width:768px){

    .acne-triggers{

        padding:70px 20px;

    }

    .trigger-header{

        padding:20px;

    }

    .trigger-left{

        gap:16px;

    }

    .trigger-left img{

        width:48px;

        height:48px;

        padding:10px;

    }

    .trigger-left h3{

        font-size:1.1rem;

    }

    .trigger-plus{

        width:36px;

        height:36px;

    }

    .trigger-content p{

        padding:0 20px 22px 84px;

        font-size:.95rem;

    }

}

@media(max-width:500px){

    .trigger-header{

        align-items:flex-start;

    }

    .trigger-left{

        gap:14px;

    }

    .trigger-left h3{

        font-size:1rem;

        line-height:1.5;

    }

    .trigger-content p{

        padding:0 20px 22px 20px;

    }

}
/*=========================================
        WHERE ACNE APPEARS
=========================================*/

.acne-areas{

    padding:90px 5%;

    background:#ffffff;

}

.acne-areas-container{

    max-width:1350px;

    margin:auto;

}


/*=========================================
            LAYOUT
=========================================*/

.areas-layout{

    display:grid;

    grid-template-columns:320px 1fr 320px;

    gap:45px;

    align-items:center;

    margin-top:70px;

}


/*=========================================
            COLUMNS
=========================================*/

.areas-column{

    display:flex;

    flex-direction:column;

    gap:22px;

}


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

.area-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:20px;

    background:#ffffff;

    border-radius:26px;

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

    border:2px solid transparent;

    transition:.35s ease;

}

.area-card:hover{

    transform:translateY(-6px);

    border-color:rgba(223,184,216,.45);

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

}


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

.area-card img{

    width:72px;

    height:72px;

    /* padding:12px; */

    border-radius:18px;

    background:#fff3fa;

    flex-shrink:0;

    transition:.35s;

}

.area-card:hover img{

    transform:scale(1.08);

    background:#fdebf5;

}


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

.area-card h3{

    font-size:1.25rem;

    font-weight:600;

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

    color:var(--clr-heading);

    margin-bottom:8px;

    transition:.3s;

}

.area-card:hover h3{

    color:var(--clr-primary);

}

.area-card p{

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

    font-size:.95rem;

    line-height:1.7;

    color:var(--clr-text);

}


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

.areas-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.areas-image img{

    width:100%;

    max-width:430px;

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

    transition:.4s;

}

.areas-image:hover img{

    transform:scale(1.03);

}


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

@media(max-width:1100px){

    .areas-layout{

        grid-template-columns:1fr;

        gap:40px;

    }

    .areas-column{

        display:grid;

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

    }

    .areas-image{

        order:-1;

    }

}

@media(max-width:768px){

    .acne-areas{

        padding:70px 20px;

    }

    .areas-column{

        grid-template-columns:1fr;

    }

    .areas-layout{

        margin-top:50px;

    }

    .area-card{

        padding:18px;

    }

    .area-card img{

        width:55px;

        height:55px;

    }

    .areas-image img{

        max-width:280px;

    }

}

@media(max-width:480px){

    .area-card{

        flex-direction:column;

        text-align:center;

        gap:14px;

    }

}

/*=========================================
            ACNE SEVERITY
=========================================*/

.acne-severity{

    padding:90px 5%;

    background:#fffafc;

}

.severity-container{

    max-width:1300px;

    margin:auto;

}


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

.severity-grid{

    display:grid;

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

    gap:30px;

    margin-top:70px;

}


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

.severity-card{

    background:#ffffff;

    border-radius:32px;

    padding:36px;

    text-align:center;

    box-shadow:0 18px 40px rgba(0,0,0,.05);

    border:2px solid transparent;

    transition:.35s ease;

}

.severity-card:hover{

    transform:translateY(-10px);

    border-color:rgba(224,183,206,.45);

    box-shadow:0 25px 55px rgba(223,184,216,.20);

}


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

.severity-image{

    margin-bottom:28px;

}

.severity-image img{

    width:250px;

    display:block;

    margin:auto;

    transition:.35s;
/* 
    animation:float 4s ease-in-out infinite; */

}

.severity-card:hover .severity-image img{

    transform:scale(1.08);

}


/*=========================================
            BADGE
=========================================*/

.severity-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:20px;

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

}

/* Mild */

.severity-mild{

    background:#edf8ef;

    color:#4f8b61;

}

/* Moderate */

.severity-moderate{

    background:#fff5df;

    color:#bf8c1b;

}

/* Severe */

.severity-severe{

    background:#fde9eb;

    color:#c85f72;

}


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

.severity-card h3{

    font-size:1.55rem;

    color:var(--clr-heading);

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

    margin-bottom:16px;

    transition:.3s;

}

.severity-card:hover h3{

    color:var(--clr-primary);

}

.severity-card p{

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

    color:var(--clr-text);

    line-height:1.8;

}


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

@media(max-width:1024px){

    .severity-grid{

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

    }

}

@media(max-width:768px){

    .acne-severity{

        padding:70px 20px;

    }

    .severity-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .severity-card{

        padding:30px;

    }

    .severity-image img{

        width:150px;

    }

    .severity-card h3{

        font-size:1.35rem;

    }

}

@media(max-width:480px){

    .severity-image img{

        width:130px;

    }

    .severity-card{

        padding:24px;

    }

}

/*=========================================
        ACNE INGREDIENTS
=========================================*/

.acne-ingredients{

    padding:90px 5%;

    background:#ffffff;

}

.ingredients-container{

    max-width:1300px;

    margin:auto;

}

.section-heading-acne-ingredients{

    padding-top:190px;

}

.section-tag-ingredients{
      display:inline-block;

    padding:10px 18px;

    margin-bottom:26px;

    border-radius:999px;

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

    color:var(--clr-primary);

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

    font-size:.82rem;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-top: 190px;

    
    
}
.section-heading img{

   transition:.35s;
}


.section-heading img:hover{

    transform:scale(1.08);


}
/*=========================================
        TABLE WRAPPER
=========================================*/

.ingredients-table-wrapper{

    margin-top:60px;

    background:#ffffff;

    border-radius:32px;

    overflow:hidden;

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

    border:1px solid #f3e8ef;

}


/*=========================================
            TABLE
=========================================*/

.ingredients-table{

    width:100%;

    border-collapse:collapse;

}


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

.ingredients-table thead{

    background:linear-gradient(
        90deg,
        #fdeff5,
        #fff8fb
    );

}

.ingredients-table th{

    padding:24px 30px;

    text-align:left;

    font-size:1.1rem;

    font-weight:600;

    color:var(--clr-heading);

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

}


/*=========================================
            BODY
=========================================*/

.ingredients-table td{

    padding:24px 30px;

    border-top:1px solid #f4ebf0;

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

    color:var(--clr-text);

    line-height:1.8;

    transition:.3s;

}

.ingredients-table tbody tr{

    transition:.35s ease;

}

.ingredients-table tbody tr:hover{

    background:#fff9fc;

}


/*=========================================
        INGREDIENT NAME
=========================================*/

.ingredient-name{

    display:flex;

    align-items:center;

    gap:16px;

    font-weight:800;

    color:var(--clr-heading);

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

}

.ingredient-name img{

    width:78px;

    height:78px;

    border-radius:14px;

    padding:10px;

    /* background:#fff3f9; */

    transition:.35s;

}

.ingredients-table tbody tr:hover .ingredient-name img{

    transform:scale(1.08);

    background:#fdebf5;

}


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

@media(max-width:1024px){

    .ingredients-table-wrapper{

        overflow-x:auto;

    }

    .ingredients-table{

        min-width:750px;

    }

}

@media(max-width:768px){

    .acne-ingredients{

        padding:70px 20px;

    }

    .ingredients-table th,

    .ingredients-table td{

        padding:20px;

    }

    .ingredient-name img{

        width:42px;

        height:42px;

    }

}

@media(max-width:480px){

    .ingredients-table{

        min-width:650px;

    }

}



/*=========================================
        PREVENTION TIPS
=========================================*/

.acne-prevention{

    padding:90px 5%;

    background:#fffafc;

}

.prevention-container{

    max-width:1300px;

    margin:auto;

}

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

.prevention-grid{

    display:grid;

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

    gap:24px;

    margin-top:60px;

}

/*=========================================
            ITEM
=========================================*/

.prevention-item{

    display:flex;

    align-items:flex-start;

    gap:22px;

    padding:28px;

    background:#ffffff;

    border-radius:28px;

    border:2px solid transparent;

    box-shadow:0 16px 40px rgba(0,0,0,.05);

    transition:.35s ease;

}

.prevention-item:hover{

    transform:translateY(-8px);

    border-color:#f1d7e4;

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

}

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

.prevention-icon{

    width:80px;

    height:80px;

    flex-shrink:0;

    border-radius:20px;

    background:#fef2f8;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.prevention-item:hover .prevention-icon{

    transform:scale(1.08);

    background:#fde9f3;

}

.prevention-icon img{

    width:70px;

    height:70px;

}

/*=========================================
            CONTENT
=========================================*/

.prevention-content{

    flex:1;

}

.prevention-content h3{

    font-size:1.35rem;

    font-weight:600;

    color:var(--clr-heading);

    margin-bottom:12px;

    transition:.3s;

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

}

.prevention-item:hover h3{

    color:var(--clr-primary);

}

.prevention-content p{

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

    font-size:1rem;

    line-height:1.8;

    color:var(--clr-text);

}

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

@media(max-width:1024px){

    .prevention-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .acne-prevention{

        padding:70px 20px;

    }

    .prevention-grid{

        gap:20px;

        margin-top:45px;

    }

    .prevention-item{

        padding:24px;

        gap:18px;

    }

    .prevention-icon{

        width:56px;

        height:56px;

    }

    .prevention-icon img{

        width:26px;

        height:26px;

    }

    .prevention-content h3{

        font-size:1.2rem;

    }

    .prevention-content p{

        font-size:.95rem;

    }

}

@media(max-width:480px){

    .prevention-item{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

}


/*=========================================
        ACNE MYTHS VS FACTS
=========================================*/

.acne-myths{

    padding:90px 5%;

    background:#fffafc;

}

.myths-container{

    max-width:1300px;

    margin:auto;

}


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

.myths-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}


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

.myth-card{

    background:#ffffff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 18px 40px rgba(0,0,0,.05);

    transition:.35s ease;

    border:2px solid transparent;

}

.myth-card:hover{

    transform:translateY(-8px);

    border-color:#efd4e2;

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

}


/*=========================================
            MYTH
=========================================*/

.myth-label{

    background:#fdecef;

    color:#d15772;

    font-weight:600;

    padding:14px 28px;

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

    font-size:.95rem;

}

.myth-card h3{

    padding:24px 28px;

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

    font-size:1.45rem;

    font-weight:600;

    color:var(--clr-heading);

    line-height:1.5;

}


/*=========================================
            DIVIDER
=========================================*/

.fact-divider{

    width:100%;

    height:1px;

    background:#f1e7ec;

}


/*=========================================
            FACT
=========================================*/

.fact-label{

    background:#eef8f0;

    color:#4f8d62;

    font-weight:600;

    padding:14px 28px;

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

    font-size:.95rem;

}

.myth-card p{

    padding:24px 28px 30px;

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

    color:var(--clr-text);

    font-size:1rem;

    line-height:1.9;

}


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

@media(max-width:1024px){

    .myths-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .acne-myths{

        padding:70px 20px;

    }

    .myths-grid{

        gap:22px;

        margin-top:45px;

    }

    .myth-card h3{

        font-size:1.25rem;

        padding:20px;

    }

    .myth-card p{

        padding:20px 20px 26px;

        font-size:.95rem;

    }

    .myth-label,

    .fact-label{

        padding:12px 20px;

    }

}


/*=========================================
        ACNE MARKS & SCARS
=========================================*/

.acne-marks{

    padding:90px 5%;

    background:#ffffff;

}

.marks-container{

    max-width:1300px;

    margin:auto;

}


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

.marks-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}


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

.mark-card{

    background:#ffffff;

    border-radius:32px;

    padding:35px;

    text-align:center;

    border:2px solid transparent;

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

    transition:.35s ease;

}

.mark-card:hover{

    transform:translateY(-10px);

    border-color:#edd6e3;

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

}


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

.mark-image{

    margin-bottom:25px;

}

.mark-image img{

    width:180px;

    display:block;

    margin:auto;

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

    transition:.35s;

}

.mark-card:hover .mark-image img{

    transform:scale(1.08);

}


/*=========================================
            BADGE
=========================================*/

.mark-badge{

    display:inline-block;

    padding:8px 18px;

    margin-bottom:18px;

    border-radius:999px;

    background:#fff2f8;

    color:var(--clr-primary);

    font-size:.82rem;

    font-weight:600;

    letter-spacing:1px;

}


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

.mark-card h3{

    font-size:1.45rem;

    font-weight:600;

    color:var(--clr-heading);

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

    line-height:1.4;

    margin-bottom:18px;

    transition:.3s;

}

.mark-card:hover h3{

    color:var(--clr-primary);

}

.mark-card p{

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

    color:var(--clr-text);

    line-height:1.9;

    margin-bottom:25px;

}


/*=========================================
            LIST
=========================================*/

.scar-list{

    margin:0;

    padding:0;

    list-style:none;

    text-align:left;

}

.scar-list li{

    position:relative;

    padding-left:28px;

    margin-bottom:14px;

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

    color:var(--clr-text);

    line-height:1.7;

}

.scar-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    color:#d38cad;

    font-weight:700;

}


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

@media(max-width:1024px){

    .marks-grid{

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

    }

    .mark-card:last-child{

        grid-column:1/-1;

    }

}

@media(max-width:768px){

    .acne-marks{

        padding:70px 20px;

    }

    .marks-grid{

        grid-template-columns:1fr;

        gap:24px;

        margin-top:45px;

    }

    .mark-card:last-child{

        grid-column:auto;

    }

    .mark-card{

        padding:30px;

    }

    .mark-image img{

        width:150px;

    }

    .mark-card h3{

        font-size:1.3rem;

    }

    .mark-card p{

        font-size:.95rem;

    }

}

@media(max-width:480px){

    .mark-image img{

        width:130px;

    }

    .mark-card{

        padding:24px;

    }

}


/*=========================================
        DERMATOLOGIST
=========================================*/

.dermatologist{

    padding:90px 5%;

    background:#fffafc;

}

.dermatologist-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}


/*=========================================
            CONTENT
=========================================*/

.dermatologist-content h2{

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

    color:var(--clr-heading);

    line-height:1.15;

    font-weight:500;

    margin-bottom:24px;

}

.dermatologist-content>p{

    max-width:580px;

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

    color:var(--clr-text);

    line-height:1.9;

    font-size:1.05rem;

    margin-bottom:45px;

}


/*=========================================
        WARNING LIST
=========================================*/

.warning-list{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.warning-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:24px 28px;

    background:#ffffff;

    border-radius:28px;

    border:2px solid transparent;

    box-shadow:0 16px 38px rgba(0,0,0,.05);

    transition:.35s ease;

}

.warning-item:hover{

    transform:translateY(-6px);

    border-color:#edd5e2;

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

}


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

.warning-icon{

    width:60px;

    height:60px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:#fff3f8;

    transition:.35s;

}

.warning-item:hover .warning-icon{

    background:#fdeaf4;

    transform:scale(1.08);

}

.warning-icon img{

    width:70px;

}


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

.warning-item h3{

    font-size:1.3rem;

    color:var(--clr-heading);

    margin-bottom:10px;

    transition:.3s;

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

}

.warning-item:hover h3{

    color:var(--clr-primary);

}

.warning-item p{

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

    color:var(--clr-text);

    line-height:1.8;

}


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

.dermatologist-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.dermatologist-image img{

    width:120%;

    max-width:880px;

    display:block;

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

    transition:.35s;

}

.dermatologist-image:hover img{

    transform:scale(1.03);

}


/*=========================================
        REMEMBER BOX
=========================================*/

.remember-box{

    margin-top:40px;

    padding:26px 30px;

    background:#ffffff;

    border-left:5px solid #e3a8c3;

    border-radius:24px;

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

}

.remember-box h3{

    font-size:1.2rem;

    color:var(--clr-heading);

    margin-bottom:12px;

}

.remember-box p{

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

    color:var(--clr-text);

    line-height:1.9;

}


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

@media(max-width:1024px){

    .dermatologist-container{

        grid-template-columns:1fr;

        gap:55px;

    }

    .dermatologist-content{

        text-align:center;

    }

    .dermatologist-content>p{

        margin-inline:auto;

    }

}

@media(max-width:768px){

    .dermatologist{

        padding:70px 20px;

    }

    .warning-item{

        padding:22px;

        gap:18px;

    }

    .warning-icon{

        width:54px;

        height:54px;

    }

    .warning-icon img{

        width:26px;

    }

    .warning-item h3{

        font-size:1.15rem;

    }

    .warning-item p{

        font-size:.95rem;

    }

    .dermatologist-image img{

        max-width:320px;

    }

}

@media(max-width:480px){

    .warning-item{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

    .remember-box{

        text-align:center;

        padding:22px;

    }

}




/*=========================================
            MIMII TIP
=========================================*/

.mk-note-panel{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:90px;

    background:linear-gradient(
        135deg,
        #fff8fc,
        #ffffff,
        #fff6fb
    );

    border:1px solid #f4dde7;

    border-radius:32px;

    padding:25px 50px;

    margin-top:80px;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:0 14px 40px rgba(236,177,201,.12);

}

.mk-note-panel:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 48px rgba(236,177,201,.18);

}


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

.mk-note-avatar{

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

    flex-shrink:0;

}

.mk-note-avatar img{

    width:80%;

    display:block;

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

}


/*==============================
        CONTENT
==============================*/

.mk-note-content{

    flex:1;

}

.mk-note-label{

    display:inline-block;

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

    font-size:1.7rem;

    font-weight:500;

    color:#cf679d;

    margin-bottom:18px;

}

.mk-note-title{

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

    font-size:2.1rem;

    font-weight:400;

    color:#3d3238;

    line-height:1.2;

    margin-bottom:20px;

}

.mk-note-description{

    max-width:560px;

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

    font-size:1.02rem;

    line-height:1.9;

    color:#666;

    margin-bottom:24px;

}

.mk-note-signature{

    display:inline-block;

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

    font-size:.95rem;

    font-weight:600;

    color:#bf7296;

}


/*==============================
        DECORATION
==============================*/

.mk-note-decoration{

    width:95px;

    flex-shrink:0;

}

.mk-note-decoration img{

    width:100%;

    display:block;

}


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

@media(max-width:1024px){

    .mk-note-panel{

        gap:50px;

        padding:35px;

    }

    .mk-note-avatar{

        max-width:280px;

    }

}

@media(max-width:768px){

    .mk-note-panel{

        flex-direction:column;

        text-align:center;

        gap:35px;

        padding:35px 28px;

    }

    .mk-note-avatar{

        max-width:250px;

    }

    .mk-note-description{

        margin-inline:auto;

    }

    .mk-note-decoration{

        display:none;

    }

}

@media(max-width:480px){

    .mk-note-panel{

        padding:28px 22px;

        border-radius:24px;

    }

    .mk-note-avatar{

        max-width:210px;

    }

    .mk-note-label{

        font-size:1.45rem;

    }

    .mk-note-title{

        font-size:1.7rem;

    }

    .mk-note-description{

        font-size:.95rem;

        line-height:1.8;

    }

}
