/* ==========================
   ABOUT SECTION
========================== */

.about-section{

    width:100%;
    min-height:100vh;

    background:#282f49;

    display:flex;
    align-items:center;

    overflow:hidden;

}


.about-container{

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

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:65px;

    align-items:center;

    padding:40px 20px;

}



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


.about-image-wrapper{

    position:relative;

    width:100%;

    display:flex;

    justify-content:center;

}



.about-image{

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

    aspect-ratio: 4 / 5;

    border-radius:28px;

    overflow:hidden;

    position:relative;

    z-index:2;

    box-shadow:
    0 25px 50px rgba(0,0,0,.08);

}


.about-image img{

    width:100%;
    height:100%;

    object-fit:cover;

}



/* circle */

.circle-decoration{

    position:absolute;

    width:150px;
    height:150px;

    background:#e8e9ff;

    border-radius:50%;

    top:-20px;
    left:-20px;

    z-index:1;

}



/* square */

.square-decoration{

    position:absolute;

    width:160px;
    height:160px;

    background:#ffd9c8;

    border-radius:25px;

    right:-5px;
    bottom:-25px;

    z-index:1;

}





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


.about-content{

    padding-left:5px;

}



.about-label{

    color:#003b87;

    font-size:38px;

    font-weight:700;

    display:block;

    margin-bottom:10px;
    color: #ffffff;

}



.quote{

    font-size:85px;

    line-height:.7;

    font-family:Georgia,serif;

    color:#cfd5ef;

    height:80px;

}



.about-content h2{

    margin-top:-30px;

    font-size:27px;

    line-height:1.15;

    font-weight:500;

    color:#ffffff;

    letter-spacing:-1px;

}



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


.whatsapp-btn{

    position:fixed;

    right:22px;

    bottom:18px;

    width:56px;

    height:56px;

    border-radius:50%;

    background:#25D366;

    display:flex;

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

    z-index:99;

}



.whatsapp-btn svg{

    width:32px;

    height:32px;

    fill:white;

}






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


@media(max-width:768px){


.about-container{

    grid-template-columns:1fr;

    gap:40px;

    padding:40px 20px;

}



.about-image{

    width:100%;

    height:450px;

}



.about-content{

    text-align:left;

}



.about-content h2{

    font-size:24px;

}



.quote{

    font-size:65px;

}



.circle-decoration{

    width:100px;
    height:100px;

}



.square-decoration{

    width:100px;
    height:100px;

}


}