/*=====================================
ABOUT SECTION
======================================*/

.about{
    width:100%;

    padding:120px 8%;

    background:#0b0b12;

    box-sizing:border-box;
}


/*=====================================
ABOUT CONTAINER
======================================*/

.about-container{
    width:100%;
    max-width:1200px;

    margin:0 auto;

    display:grid;

    grid-template-columns:
        minmax(320px, 420px)
        minmax(0, 1fr);

    gap:90px;

    align-items:center;

    box-sizing:border-box;
}


/*=====================================
ABOUT IMAGE
======================================*/

.about-image{
    position:relative;

    width:100%;

    display:flex;

    justify-content:center;
    align-items:center;

    box-sizing:border-box;
}


/*=====================================
IMAGE GLOW
======================================*/

.about-glow{
    position:absolute;

    width:420px;
    height:420px;

    background:rgba(255,79,135,.18);

    border-radius:50%;

    filter:blur(90px);

    z-index:0;

    pointer-events:none;
}


/*=====================================
ABOUT IMAGE
======================================*/

.about-image img{
    position:relative;

    z-index:1;

    width:380px;
    height:480px;

    max-width:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    border-radius:24px;

    border:2px solid rgba(255,79,135,.35);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35),
        0 0 45px rgba(255,79,135,.18);

    transition:.35s ease;

    box-sizing:border-box;
}


.about-image img:hover{
    transform:translateY(-8px);
}


/*=====================================
ABOUT CONTENT
======================================*/

.about-content{
    width:100%;

    min-width:0;

    box-sizing:border-box;
}


/*=====================================
SECTION SUBTITLE
======================================*/

.section-subtitle{
    display:inline-block;

    color:#ff4f8b;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;
}


/*=====================================
ABOUT HEADING
======================================*/

.about-content h2{
    margin:0 0 15px;

    color:#fff;

    font-family:'Sora', sans-serif;

    font-size:52px;

    font-weight:800;

    line-height:1.1;
}


/*=====================================
ABOUT SUBHEADING
======================================*/

.about-content h4{
    margin:0 0 28px;

    color:#ff4f8b;

    font-size:26px;

    font-weight:700;

    line-height:1.3;
}


/*=====================================
ABOUT PARAGRAPH
======================================*/

.about-content p{
    margin:0 0 20px;

    color:#aeb4c0;

    font-size:17px;

    line-height:1.9;

    max-width:700px;
}


/*=====================================
ABOUT LIST
======================================*/

.about-list{
    width:100%;

    display:grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap:60px;

    row-gap:18px;

    margin:35px 0 45px;

    box-sizing:border-box;
}


/*=====================================
ABOUT LIST ITEM
======================================*/

.about-list div{
    width:100%;

    min-width:0;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    gap:12px;

    color:#fff;

    font-size:16px;

    font-weight:600;

    line-height:1.5;

    text-align:left;

    box-sizing:border-box;
}


/*=====================================
CHECK ICON
======================================*/

.about-list i{
    width:20px;
    min-width:20px;
    height:20px;

    display:flex;

    align-items:center;
    justify-content:center;

    flex-shrink:0;

    color:#fff;

    background:#ff4f8b;

    border-radius:50%;

    font-size:10px;

    line-height:1;
}


/*=====================================
ABOUT BUTTON
======================================*/

.about-buttons{
    margin-top:10px;
}


.about-btn{
    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:200px;

    min-height:56px;

    padding:0 25px;

    background:#ff4f8b;

    color:#fff;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    border-radius:50px;

    box-sizing:border-box;

    transition:.35s ease;
}


.about-btn:hover{
    background:#ff2f74;

    transform:translateY(-5px);

    box-shadow:
        0 15px 35px rgba(255,79,135,.35);
}


/*=====================================
TABLET
======================================*/

@media(max-width:992px){

    .about{
        padding:100px 5%;
    }


    .about-container{
        grid-template-columns:1fr;

        gap:60px;

        text-align:center;
    }


    .about-image{
        max-width:420px;

        margin:0 auto;
    }


    .about-image img{
        width:340px;
        height:430px;
    }


    .about-glow{
        width:360px;
        height:360px;
    }


    .about-content{
        text-align:center;
    }


    .about-content h2{
        font-size:42px;
    }


    .about-content h4{
        font-size:22px;
    }


    .about-content p{
        margin-left:auto;
        margin-right:auto;

        font-size:16px;
    }


    .about-list{
        max-width:700px;

        margin:35px auto 45px;

        text-align:left;

        column-gap:40px;
    }


    .about-buttons{
        display:flex;

        justify-content:center;
    }

}


/*=====================================
MOBILE
======================================*/

@media(max-width:768px){

    .about{
        padding:80px 25px;
    }


    .about-container{
        gap:50px;
    }


    .about-image{
        width:100%;
    }


    .about-image img{
        width:280px;
        height:360px;
    }


    .about-glow{
        width:300px;
        height:300px;
    }


    .section-subtitle{
        font-size:12px;

        letter-spacing:3px;
    }


    .about-content h2{
        font-size:34px;
    }


    .about-content h4{
        font-size:20px;
    }


    .about-content p{
        font-size:15px;

        line-height:1.8;

        text-align:center;
    }


    /* TWO COLUMNS ON MOBILE */

    .about-list{
        width:100%;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap:25px;

        row-gap:18px;

        margin:30px 0 40px;
    }


    .about-list div{
        width:100%;

        gap:9px;

        font-size:14px;

        text-align:left;

        white-space:nowrap;
    }


    .about-list i{
        width:18px;

        min-width:18px;

        height:18px;

        font-size:9px;
    }


    .about-btn{
        width:100%;

        max-width:240px;

        min-height:52px;

        font-size:14px;
    }

}


/*=====================================
SMALL MOBILE
======================================*/

@media(max-width:480px){

    .about{
        padding:70px 18px;
    }


    .about-container{
        gap:40px;
    }


    .about-image img{
        width:240px;
        height:310px;
    }


    .about-glow{
        width:250px;
        height:250px;
    }


    .about-content h2{
        font-size:28px;
    }


    .about-content h4{
        font-size:18px;

        line-height:1.4;
    }


    .about-content p{
        font-size:14px;

        line-height:1.8;
    }


    .about-list{
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap:12px;

        row-gap:16px;
    }


    .about-list div{
        gap:6px;

        font-size:11px;

        white-space:nowrap;
    }


    .about-list i{
        width:16px;

        min-width:16px;

        height:16px;

        font-size:8px;
    }


    .about-btn{
        max-width:220px;

        min-height:50px;

        font-size:13px;
    }

}


/*=====================================
VERY SMALL MOBILE
======================================*/

@media(max-width:360px){

    .about{
        padding-left:14px;
        padding-right:14px;
    }


    .about-list{
        column-gap:8px;

        row-gap:14px;
    }


    .about-list div{
        gap:5px;

        font-size:10px;
    }


    .about-list i{
        width:15px;

        min-width:15px;

        height:15px;

        font-size:7px;
    }

}