/* ==================================================
   ABOUT SECTION
================================================== */

.about-section {

    padding: 100px 0;

    background: #ffffff;

    overflow: hidden;

}


/* CONTAINER */

.about-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;

}



/* ==================================================
   CONTENT
================================================== */


.about-content {

    flex: 1;

}



.about-badge {

    display: inline-block;

    padding: 8px 20px;

    margin-bottom: 20px;

    border-radius: 50px;

    background: rgba(20, 184, 166, .10);

    color: #14B8A6;

    font-size: 14px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

}




.about-content h2 {

    font-size: 44px;

    line-height: 1.2;

    font-weight: 700;

    color: #0f172a;

    margin: 0 0 25px;

}



.about-content p {

    font-size: 17px;

    line-height: 1.8;

    color: #475569;

    max-width: 600px;

    margin-bottom: 35px;

}



/* BUTTON */

.about-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 34px;

    border-radius: 50px;

    background: #1474b8;

    color: #ffffff;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    transition: .3s ease;

}



.about-btn:hover {

    background: #0f3576;

    transform: translateY(-3px);

    color: #ffffff;

}





/* ==================================================
   IMAGE
================================================== */


.about-image {

    flex: 1;

    position: relative;

}



.about-image img {

    width: 100%;

    max-width: 520px;

    display: block;

    margin-left: auto;

    border-radius: 25px;

    object-fit: cover;

}





/* IMAGE EFFECT */

.about-image::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    background: #14B8A6;

    opacity: .08;

    border-radius: 50%;

    top: -60px;

    right: -60px;

    z-index: 0;

}



.about-image img {

    position: relative;

    z-index: 1;

}






/* ==================================================
   TABLET
================================================== */


@media(max-width:991px) {


    .about-container {

        gap: 40px;

    }


    .about-content h2 {

        font-size: 36px;

    }


}






/* ==================================================
   MOBILE
================================================== */


@media(max-width:768px) {


    .about-section {

        padding: 70px 0;

    }


    .about-container {

        flex-direction: column;

        text-align: center;

    }


    .about-content p {

        margin-left: auto;

        margin-right: auto;

    }


    .about-image img {

        margin: auto;

    }


}