/* =========================================================
   ABOUT PAGE CSS
========================================================= */

/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    min-height: 310px;

    display: flex;
    align-items: center;

    padding: 0;

    background: #fafafa;
}

.about-hero-content {
    width: 50%;

    padding: 45px 0;
}

.about-hero-content .section-label {
    margin-bottom: 12px;

    color: var(--red);

    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-hero-content h1 {
    margin: 0 0 10px;

    color: var(--red);

    font-size: 58px;
    font-weight: 800;
    line-height: 1;
}

.about-hero-content h2 {
    margin: 0 0 18px;

    color: var(--black);

    font-size: 20px;
    font-weight: 700;
}

.about-hero-content p {
    max-width: 500px;

    margin: 0;

    color: var(--black);

    font-size: 15px;
    line-height: 1.7;
}

.about-hero-image {
    width: 50%;
    height: 310px;

    position: relative;

    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.about-hero .container {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;
}


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

.about-hero-content {
    position: relative;

    width: 50%;
    max-width: 560px;

    z-index: 2;
}


.about-hero-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--red);

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
}


.about-hero h1 {
    margin-bottom: 10px;

    color: var(--red);

    font-size: 58px;
    font-weight: 700;

    line-height: 1;

    text-transform: uppercase;
}


.about-hero h2 {
    margin-bottom: 22px;

    color: var(--black);

    font-size: 22px;
    font-weight: 600;
}


.about-hero p {
    max-width: 520px;

    color: var(--text);

    font-size: 15px;
    line-height: 1.8;
}


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

.about-hero-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 58%;
    height: 100%;

    z-index: 1;
}


.about-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   HERO IMAGE BLEND
========================================================= */

.about-hero-image::before {
    content: '';

    position: absolute;

    top: 0;
    left: -140px;

    width: 260px;
    height: 100%;

    background: linear-gradient(
        to right,
        #f8f8f8 0%,
        rgba(248, 248, 248, 0.95) 20%,
        rgba(248, 248, 248, 0) 100%
    );

    z-index: 2;
}


/* =========================================================
   SECTION COMMON
========================================================= */

.about-section {
    padding: 70px 0;
}

.about-section-label {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--red);

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
}

.about-section-title {
    margin-bottom: 18px;

    color: var(--black);

    font-size: 32px;
    line-height: 1.2;
}

.about-section-text {
    color: var(--gray);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   WHO WE ARE
========================================================= */

.about-who {
    padding: 70px 0;
}

.about-who-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.about-who-content {
    max-width: 520px;
}

.about-who-content p {
    margin-bottom: 16px;

    color: var(--gray);

    font-size: 14px;
    line-height: 1.8;
}

.about-who-button {
    margin-top: 8px;
}


/* =========================================================
   MISSION
========================================================= */

.about-mission {
    padding: 70px 0;

    background: #faf8f3;
}

.about-mission-box {
    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 35px;

    align-items: center;

    padding: 45px;
}

.about-mission-icon {
    width: 95px;
    height: 95px;

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

    color: var(--red);

    background: var(--white);

    border-radius: 50%;

    font-size: 48px;

    box-shadow: var(--shadow);
}

.about-mission-content h3 {
    margin-bottom: 14px;

    color: var(--red);

    font-size: 14px;

    text-transform: uppercase;
}

.about-mission-content p {
    max-width: 700px;

    color: var(--text);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   VALUES
========================================================= */

.about-values {
    padding: 70px 0;
}

.about-values-heading {
    margin-bottom: 35px;

    text-align: center;
}

.about-values-heading .about-section-label {
    margin-bottom: 5px;
}

.about-values-heading h2 {
    font-size: 30px;
}

.about-values-heading::after {
    content: '';

    display: block;

    width: 38px;
    height: 3px;

    margin: 10px auto 0;

    background: var(--yellow);
}

.about-values-grid {
    display: grid;

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

    gap: 20px;
}

.about-value-card {
    padding: 28px 20px;

    background: var(--white);

    border: 1px solid #eeeeee;

    border-radius: var(--radius);

    text-align: center;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);

    transition: var(--transition);
}

.about-value-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.about-value-icon {
    width: 58px;
    height: 58px;

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

    margin: 0 auto 18px;

    color: var(--white);

    background: var(--red);

    border-radius: 50%;

    font-size: 26px;
}

.about-value-card h3 {
    margin-bottom: 8px;

    font-size: 15px;

    text-transform: uppercase;
}

.about-value-card p {
    color: var(--gray);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   NUMBERS
========================================================= */

.about-numbers {
    position: relative;

    padding: 60px 0;

    color: var(--white);

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.72)
        ),
        url('../images/about-numbers.jpg') center / cover no-repeat;
}

.about-numbers-heading {
    margin-bottom: 35px;

    text-align: center;
}

.about-numbers-heading h2 {
    color: var(--white);

    font-size: 15px;

    text-transform: uppercase;
}

.about-numbers-heading::after {
    content: '';

    display: block;

    width: 38px;
    height: 3px;

    margin: 10px auto 0;

    background: var(--yellow);
}

.about-numbers-grid {
    display: grid;

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

.about-number {
    padding: 0 25px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.about-number:last-child {
    border-right: none;
}

.about-number-icon {
    margin-bottom: 8px;

    color: var(--yellow);

    font-size: 35px;
}

.about-number strong {
    display: block;

    margin-bottom: 3px;

    color: var(--yellow);

    font-size: 28px;
    line-height: 1.2;
}

.about-number span {
    color: var(--white);

    font-size: 13px;
}


/* =========================================================
   TEAM
========================================================= */

.about-team {
    padding: 70px 0;
}

.about-team-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 45px;

    align-items: center;
}

.about-team-image img {
    width: 100%;

    border-radius: var(--radius);
}

.about-team-content {
    max-width: 560px;
}

.about-team-content h2 {
    margin-bottom: 18px;

    font-size: 30px;
}

.about-team-content p {
    margin-bottom: 15px;

    color: var(--gray);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CTA STRIP
========================================================= */

.about-contact-strip {
    padding: 22px 0;

    color: var(--white);

    background: var(--red);
}

.about-contact-strip-inner {
    display: flex;

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

    gap: 30px;
}

.about-contact-content {
    display: flex;

    align-items: center;

    gap: 18px;
}

.about-contact-icon {
    width: 55px;
    height: 55px;

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

    border: 2px solid var(--white);

    border-radius: 50%;

    font-size: 25px;
}

.about-contact-content h3 {
    color: var(--white);

    font-size: 22px;
}

.about-contact-content p {
    color: var(--white);

    font-size: 13px;
}

.about-contact-strip .btn {
    background: var(--yellow);

    color: var(--black);
}

.about-contact-strip .btn:hover {
    background: var(--white);
}


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

@media (max-width: 1000px) {

    .about-hero h1 {
        font-size: 48px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-numbers-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px 0;
    }

    .about-number:nth-child(2) {
        border-right: none;
    }

}


@media (max-width: 800px) {

    .about-hero {
        min-height: auto;

        padding: 0;
    }

    .about-hero .container {
        width: 92%;

        min-height: auto;

        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .about-hero-content {
        width: 100%;
        max-width: 560px;

        margin: 0 auto;

        padding: 60px 0 35px;

        text-align: center;
    }

    .about-hero p {
        margin: 0 auto;
    }

    .about-hero-image {
        position: relative;

        top: auto;
        right: auto;

        width: 100%;
        height: 300px;

        order: 2;
    }

    .about-hero-image::before {
        display: none;
    }

    .about-who-grid,
    .about-team-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-mission-box {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .about-mission-icon {
        margin: 0 auto;
    }

    .about-mission-content p {
        margin: 0 auto;
    }

    .about-contact-strip-inner {
        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 600px) {

    .about-section,
    .about-who,
    .about-mission,
    .about-values,
    .about-team {
        padding: 50px 0;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero h2 {
        font-size: 19px;
    }

    .about-section-title,
    .about-team-content h2 {
        font-size: 27px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-numbers-grid {
        grid-template-columns: 1fr;
    }

    .about-number {
        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.3);

        padding-bottom: 25px;
    }

    .about-number:last-child {
        border-bottom: none;
    }

    .about-mission-box {
        padding: 25px 15px;
    }

}