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

.about-hero {
    position: relative;

    height: 520px;

    overflow: hidden;

    display: flex;

    align-items: center;

    color: #ffffff;
}


.about-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;
}


.about-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 14, 12, 0.82) 0%,
            rgba(8, 14, 12, 0.58) 38%,
            rgba(8, 14, 12, 0.18) 70%,
            rgba(8, 14, 12, 0.05) 100%
        );
}


.about-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.about-hero .section-label {
    color: #d7d7d0;

    display: block;

    margin-bottom: 16px;
}


/* =========================================================
   BEST AGRO TITLE
========================================================= */

.about-hero-title {
    display: flex;

    align-items: center;

    gap: 22px;

    margin: 0;

    font-size: clamp(58px, 6vw, 100px);

    font-weight: 900;

    line-height: 0.9;

    letter-spacing: -3px;
}


.about-title-best {
    color: #ffffff;

    display: inline-block;
}


.about-title-agro {
    color: #8caf2d;

    display: inline-block;
}


/* =========================================================
   HERO SUBTITLE
========================================================= */

.about-hero-subtitle {
    margin-top: 18px;

    color: #ffffff;

    font-size: clamp(24px, 2.4vw, 36px);

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.5px;
}


/* =========================================================
   GREEN LINE
========================================================= */

.about-hero-line {
    width: 65px;

    height: 3px;

    background: #7ca52b;

    margin: 24px 0;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.about-hero p {
    margin: 0;

    font-size: 18px;

    line-height: 1.55;

    color: rgba(255, 255, 255, 0.9);
}


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

@media (max-width: 768px) {

    .about-hero {
        height: 480px;
    }


    .about-hero-image {
        object-position: 62% center;
    }


    .about-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8, 14, 12, 0.82) 0%,
                rgba(8, 14, 12, 0.58) 65%,
                rgba(8, 14, 12, 0.25) 100%
            );
    }


    .about-hero-title {
        gap: 12px;

        font-size: clamp(48px, 12vw, 72px);

        letter-spacing: -2px;
    }


    .about-hero-subtitle {
        font-size: 24px;
    }


    .about-hero p {
        font-size: 16px;
    }

}

/* =========================================================
   MAIN PAGE
========================================================= */

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


.about-page-section .container {
    max-width: 1180px;
}


/* =========================================================
   COMMON SPLIT SECTIONS
========================================================= */

.about-split {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    margin-bottom: 85px;
}


.about-text {
    max-width: 540px;
}


.about-image {
    width: 100%;
}


.about-image img {
    display: block;

    width: 100%;

    height: auto;

    object-fit: cover;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.about-page-section h2 {
    margin: 8px 0 0;

    font-size: 34px;

    line-height: 1.2;

    color: #26302a;

    font-weight: 700;
}


.about-page-section h3 {
    margin: 22px 0 14px;

    font-size: 18px;

    line-height: 1.45;

    color: #26302a;

    font-weight: 700;
}


.about-page-section p {
    margin: 0 0 16px;

    font-size: 16px;

    line-height: 1.7;

    color: #5e655f;
}


.section-label {
    display: block;

    color: #7ca52b;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.section-line {
    width: 45px;

    height: 2px;

    background: #7ca52b;

    margin: 18px 0 24px;
}


/* =========================================================
   FIRST SECTION
========================================================= */

.about-split-first {
    align-items: center;
}


.about-split-first .about-image img {
    min-height: 360px;

    object-fit: cover;
}


/* =========================================================
   ELVORTI SECTION
========================================================= */

.about-split-reverse {
    margin-top: 20px;
}


.about-split-reverse .about-image img {
    min-height: 370px;

    object-fit: cover;
}


/* =========================================================
   WHAT WE OFFER
========================================================= */

.about-offers {
    margin: 95px 0 85px;
}


.about-section-heading {
    margin-bottom: 35px;
}


.about-section-heading p {
    margin-top: 18px;
}


.about-offers-grid {
    display: grid;

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

    gap: 22px;
}


.about-offer-card {
    background: #ffffff;

    padding: 32px 28px;

    min-height: 245px;

    border: 1px solid #ecece6;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.about-offer-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}


.about-offer-icon {
    font-size: 38px;

    line-height: 1;

    color: #7ca52b;

    margin-bottom: 24px;

    filter: saturate(0.8);
}


.about-offer-card h3 {
    margin: 0 0 12px;

    font-size: 19px;
}


.about-offer-card p {
    margin: 0;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   SERVICE
========================================================= */

.about-service {
    margin-top: 20px;

    margin-bottom: 90px;
}


.about-service .about-image img {
    min-height: 430px;

    object-fit: cover;
}


.about-check-list {
    list-style: none;

    padding: 0;

    margin: 25px 0 0;
}


.about-check-list li {
    position: relative;

    padding-left: 30px;

    margin-bottom: 12px;

    color: #4f574f;

    font-size: 16px;
}


.about-check-list li::before {
    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    background: #7ca52b;

    color: #ffffff;

    font-size: 12px;

    display: flex;

    align-items: center;

    justify-content: center;
}


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

.about-cta {
    text-align: center;

    max-width: 720px;

    margin: 0 auto;

    padding: 10px 0 55px;
}


.about-cta .section-label {
    margin-bottom: 10px;
}


.about-cta h2 {
    margin-bottom: 15px;
}


.about-cta p {
    max-width: 560px;

    margin: 0 auto 28px;
}


/* =========================================================
   ELVORTI LOGO
========================================================= */

.about-elvorti-logo {
    text-align: center;

    padding: 20px 0 10px;
}


.about-logo-divider {
    width: 100%;

    height: 1px;

    background: #deded7;

    margin-bottom: 35px;
}


.about-elvorti-logo img {
    display: block;

    max-width: 290px;

    width: 100%;

    height: auto;

    margin: 0 auto 15px;
}


.about-elvorti-logo p {
    margin: 0;

    font-size: 14px;

    color: #707770;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {


    .about-hero {
        height: 470px;
    }


    .about-split {
        gap: 45px;
    }


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


    .about-offer-card {
        min-height: 210px;
    }

}


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

@media (max-width: 768px) {


    .about-hero {
        height: 560px;

        align-items: flex-end;
    }


    .about-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 14, 12, 0.15) 0%,
                rgba(8, 14, 12, 0.85) 75%,
                rgba(8, 14, 12, 0.95) 100%
            );
    }


    .about-hero-content {
        padding-bottom: 55px;
    }


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


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


    .about-page-section {
        padding: 55px 0;
    }


    .about-split {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 65px;
    }


    .about-split-reverse .about-image {
        order: 1;
    }


    .about-split-reverse .about-text {
        order: 2;
    }


    .about-page-section h2 {
        font-size: 28px;
    }


    .about-offers {
        margin: 65px 0;
    }


    .about-offers-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .about-offer-card {
        min-height: auto;

        padding: 28px;
    }


    .about-service {
        margin-bottom: 65px;
    }


    .about-service .about-image img {
        min-height: auto;
    }


    .about-elvorti-logo img {
        max-width: 240px;
    }

}