/* =========================================================
   HERO CONTACT
========================================================= */

.hero-contact {

    position: relative;

    min-height: 620px;

    overflow: hidden;

    padding: 38px 32px 34px;

    background: var(--color-primary);

    display: flex;
    align-items: center;

}

/* =========================================================
   BACKGROUND
========================================================= */

.hero-contact__background {

    position: absolute;

    inset: 0;

    z-index: 1;

}

.hero-contact__background img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

}

/* =========================================================
   OVERLAY
========================================================= */

.hero-contact__overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(3,20,63,0.97) 0%,
            rgba(3,20,63,0.92) 30%,
            rgba(3,20,63,0.58) 56%,
            rgba(3,20,63,0.10) 100%
        );

}

/* =========================================================
   CONTENT
========================================================= */

.hero-contact__content {

    position: relative;

    z-index: 5;

    max-width: 590px;

    margin-top: 5rem;

}

/* =========================================================
   BREADCRUMB
========================================================= */

.hero-contact__breadcrumb {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 26px;

    font-size: 13px;

    font-weight: 500;

    color: rgba(255,255,255,0.76);

}

.hero-contact__breadcrumb a {

    color: rgba(255,255,255,0.76);

    text-decoration: none;

    transition: var(--transition-fast);

}

.hero-contact__breadcrumb a:hover {

    color: var(--color-white);

}

.hero-contact__breadcrumb svg {

    width: 13px;
    height: 13px;

    stroke-width: 2.3;

}

/* =========================================================
   SUBTITLE
========================================================= */

.hero-contact__subtitle {

    display: inline-block;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 0.5px;

    color: var(--color-secondary);

    margin-bottom: 16px;

}

/* =========================================================
   TITLE
========================================================= */

.hero-contact__title {

    font-size: 56px;

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -2px;

    color: var(--color-white);

    margin-bottom: 20px;

}

.hero-contact__title span {

    color: var(--color-secondary);

}

/* =========================================================
   TEXT
========================================================= */

.hero-contact__text {

    max-width: 520px;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255,255,255,0.88);

    margin-bottom: 42px;

}

/* =========================================================
   FEATURES
========================================================= */

.hero-contact__features {

    display: flex;

    align-items: flex-start;

    gap: 26px;

}

/* =========================================================
   FEATURE
========================================================= */

.hero-contact__feature {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    max-width: 180px;

}

/* =========================================================
   ICON
========================================================= */

.hero-contact__feature-icon {

    width: 50px;
    height: 50px;

    min-width: 50px;

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            rgba(37,99,235,0.24) 0%,
            rgba(29,78,216,0.24) 100%
        );

    border: 1px solid rgba(255,255,255,0.08);

    display: flex;

    align-items: center;
    justify-content: center;

    backdrop-filter: blur(4px);

}

.hero-contact__feature-icon svg {

    width: 22px;
    height: 22px;

    stroke: var(--color-secondary);

    stroke-width: 2;

}

/* =========================================================
   FEATURE CONTENT
========================================================= */

.hero-contact__feature-content {

    padding-top: 2px;

}

.hero-contact__feature-content h3 {

    font-size: 15px;

    font-weight: 700;

    line-height: 1.35;

    color: var(--color-white);

    margin-bottom: 8px;

}

.hero-contact__feature-content p {

    font-size: 12px;

    line-height: 1.7;

    color: rgba(255,255,255,0.74);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .hero-contact__title {

        font-size: 48px;

    }

}

@media (max-width: 900px) {

    .hero-contact {

        min-height: auto;

        padding: 34px 24px 42px;

        align-items: flex-start;

    }

    .hero-contact__content {

        margin-top: 100px;

    }

    .hero-contact__title {

        font-size: 40px;

    }

    .hero-contact__features {

        flex-direction: column;

        gap: 18px;

    }

    .hero-contact__feature {

        max-width: 100%;

    }

}

@media (max-width: 768px) {

    .hero-contact {

        padding: 28px 18px 34px;

    }

    .hero-contact__breadcrumb {

        margin-bottom: 20px;

        font-size: 12px;

    }

    .hero-contact__subtitle {

        font-size: 13px;

    }

    .hero-contact__title {

        font-size: 34px;

        line-height: 1.08;

    }

    .hero-contact__text {

        font-size: 14px;

        margin-bottom: 30px;

    }

    .hero-contact__features {

        gap: 16px;

    }

    .hero-contact__feature {

        gap: 12px;

    }

    .hero-contact__feature-icon {

        width: 44px;
        height: 44px;

        min-width: 44px;

    }

    .hero-contact__feature-icon svg {

        width: 18px;
        height: 18px;

    }

    .hero-contact__feature-content h3 {

        font-size: 14px;

    }

    .hero-contact__feature-content p {

        font-size: 11px;

    }

}