/* ==========================================
   ABOUT US PAGE - MODERN REDESIGN
========================================== */


/* ==========================================
   ABOUT HERO
========================================== */

.about-hero {
    background: #f4f4f5;
    padding: 70px 0 65px;
    border-bottom: 1px solid #dddddd;
}


.about-hero .container {
    max-width: 1140px;
}


/* SMALL HEADING */

.about-tag {
    display: inline-block;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #c91f25;

    margin-bottom: 18px;
}


/* MAIN HEADING */

.about-hero h1 {
    font-size: 54px;
    line-height: 1.15;

    font-weight: 700;

    color: #20242b;

    margin: 0 0 22px;
}


/* HERO DESCRIPTION */

.about-hero p {
    max-width: 650px;

    font-size: 18px;
    line-height: 1.6;

    color: #444;

    margin: 0;
}


/* ==========================================
   ABOUT CONTENT SECTION
========================================== */

.about-content-section {
    background: #ffffff;

    padding: 75px 0;
}


.about-content-section .container {
    max-width: 1140px;
}


/* IMAGE */

.about-main-image {
    width: 100%;

    overflow: hidden;
}


.about-main-image img {
    width: 100%;

    height: 555px;

    object-fit: cover;

    display: block;
}


/* CONTENT */

.about-content {
    padding-left: 35px;
}


/* HEADING */

.about-content h2 {
    font-size: 34px;

    line-height: 1.2;

    font-weight: 700;

    color: #252a31;

    margin: 0 0 30px;
}


/* ==========================================
   ABOUT POINT
========================================== */

.about-point {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 22px;
}


/* ICON */

.about-point-icon {
    padding-top: 3px;

    flex-shrink: 0;
}


.about-point-icon i {
    color: #d2232a;

    font-size: 18px;
}


/* TEXT */

.about-point-content {
    flex: 1;
}


.about-point-content p {
    font-size: 18px;

    line-height: 1.65;

    color: #444;

    margin: 0;
}


.about-point-content strong {
    color: #30343a;

    font-weight: 700;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .about-hero {
        padding: 60px 0;
    }


    .about-hero h1 {
        font-size: 46px;
    }


    .about-main-image img {
        height: 500px;
    }


    .about-content {
        padding-left: 15px;
    }


    .about-content h2 {
        font-size: 30px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .about-hero {
        padding: 45px 0;
    }


    .about-tag {
        font-size: 14px;

        letter-spacing: 1.5px;
    }


    .about-hero h1 {
        font-size: 38px;

        line-height: 1.18;
    }


    .about-hero p {
        font-size: 18px;
    }


    .about-content-section {
        padding: 50px 0;
    }


    .about-main-image {
        margin-bottom: 40px;
    }


    .about-main-image img {
        height: auto;

        max-height: 600px;

        object-fit: cover;
    }


    .about-content {
        padding-left: 0;
    }


    .about-content h2 {
        font-size: 30px;

        margin-bottom: 25px;
    }


    .about-point {
        gap: 12px;

        margin-bottom: 20px;
    }


    .about-point-content p {
        font-size: 18px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .about-hero h1 {
        font-size: 32px;
    }


    .about-content h2 {
        font-size: 27px;
    }


    .about-point-icon i {
        font-size: 17px;
    }

}