@font-face {
    font-family: "Isidora";
    src: url("./assets/fonts/isidora-light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    overflow-x: hidden;
}


/* =========================================
   CONTACT HERO
========================================= */

.dev1-cbox-contact-hero {
    position: relative;

    width: 100%;
    min-height: 585px;

    display: flex;
    align-items: center;

    overflow: hidden;

    font-family: "Isidora", sans-serif;

    background: #211329;
}


/* =========================================
   BACKGROUND IMAGE
========================================= */

.dev1-cbox-contact-hero__background {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;

    z-index: 0;
}


/* =========================================
   DARK GRADIENT OVERLAY
========================================= */

.dev1-cbox-contact-hero__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(20, 8, 29, 0.92) 0%,
            rgba(28, 12, 39, 0.82) 25%,
            rgba(39, 20, 52, 0.66) 48%,
            rgba(35, 25, 55, 0.42) 72%,
            rgba(25, 24, 57, 0.28) 100%
        );
}


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

.dev1-cbox-contact-hero__container {
    position: relative;

    z-index: 2;

    width: 100%;

    margin: 0;

    padding-left: 8%;
    padding-right: 4%;

    box-sizing: border-box;
}


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

.dev1-cbox-contact-hero__content {
    width: 100%;

    max-width: 1050px;

    margin: 0;
}


/* =========================================
   EYEBROW
========================================= */

.dev1-cbox-contact-hero__eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 8px;
}


.dev1-cbox-contact-hero__eyebrow-line {
    display: block;

    width: 31px;
    height: 2px;

    flex-shrink: 0;

    background: #f0bd43;
}


.dev1-cbox-contact-hero__eyebrow-text {
    font-family: "Isidora", sans-serif;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 300;

    letter-spacing: 0.7px;

    text-transform: uppercase;

    color: #a04b92;
}


/* =========================================
   TITLE
========================================= */

.dev1-cbox-contact-hero__title {
    margin: 0;

    max-width: 1000px;

    font-family: "Isidora", sans-serif;

    font-size: clamp(
        54px,
        5.2vw,
        88px
    );

    line-height: 1.06;

    font-weight: 300;

    letter-spacing: -2px;

    text-transform: uppercase;

    color: #ffffff;
}


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

.dev1-cbox-contact-hero__description {
    margin: 28px 0 0;

    max-width: 850px;

    font-family: "Isidora", sans-serif;

    font-size: clamp(
        15px,
        1.05vw,
        18px
    );

    line-height: 1.65;

    font-weight: 300;

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


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {

    .dev1-cbox-contact-hero {
        min-height: 600px;
    }

    .dev1-cbox-contact-hero__container {
        padding-left: 8%;
        padding-right: 4%;
    }

    .dev1-cbox-contact-hero__content {
        max-width: 1100px;
    }

    .dev1-cbox-contact-hero__title {
        font-size: 88px;
    }

}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1200px) {

    .dev1-cbox-contact-hero {
        min-height: 560px;
    }

    .dev1-cbox-contact-hero__container {
        padding-left: 6%;
        padding-right: 4%;
    }

    .dev1-cbox-contact-hero__content {
        max-width: 900px;
    }

    .dev1-cbox-contact-hero__title {
        font-size: clamp(
            48px,
            6vw,
            72px
        );

        line-height: 1.07;

        letter-spacing: -1.5px;
    }

    .dev1-cbox-contact-hero__description {
        max-width: 750px;
    }

}


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

@media (max-width: 900px) {

    .dev1-cbox-contact-hero {
        min-height: 520px;
    }

    .dev1-cbox-contact-hero__background {
        object-position: 60% center;
    }

    .dev1-cbox-contact-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(20, 8, 29, 0.94) 0%,
                rgba(28, 12, 39, 0.84) 35%,
                rgba(39, 20, 52, 0.62) 68%,
                rgba(35, 25, 55, 0.38) 100%
            );
    }

    .dev1-cbox-contact-hero__container {
        padding-left: 5%;
        padding-right: 5%;
    }

    .dev1-cbox-contact-hero__content {
        max-width: 720px;
    }

    .dev1-cbox-contact-hero__title {
        font-size: clamp(
            44px,
            7vw,
            64px
        );

        line-height: 1.07;

        letter-spacing: -1px;
    }

    .dev1-cbox-contact-hero__description {
        margin-top: 24px;

        max-width: 650px;

        font-size: 16px;
    }

}


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

@media (max-width: 600px) {

    .dev1-cbox-contact-hero {
        min-height: 540px;

        align-items: center;
    }

    .dev1-cbox-contact-hero__background {
        object-position: 62% center;
    }

    .dev1-cbox-contact-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(19, 8, 28, 0.95) 0%,
                rgba(28, 12, 39, 0.88) 48%,
                rgba(29, 18, 46, 0.68) 100%
            );
    }

    .dev1-cbox-contact-hero__container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .dev1-cbox-contact-hero__content {
        max-width: 100%;
    }

    .dev1-cbox-contact-hero__eyebrow {
        gap: 8px;

        margin-bottom: 10px;
    }

    .dev1-cbox-contact-hero__eyebrow-line {
        width: 28px;
    }

    .dev1-cbox-contact-hero__eyebrow-text {
        font-size: 10px;

        letter-spacing: 0.5px;
    }

    .dev1-cbox-contact-hero__title {
        max-width: 100%;

        font-size: clamp(
            38px,
            10.5vw,
            54px
        );

        line-height: 1.08;

        letter-spacing: -0.8px;
    }

    .dev1-cbox-contact-hero__description {
        margin-top: 22px;

        max-width: 100%;

        font-size: 14px;

        line-height: 1.65;
    }

}


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

@media (max-width: 380px) {

    .dev1-cbox-contact-hero {
        min-height: 510px;
    }

    .dev1-cbox-contact-hero__container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .dev1-cbox-contact-hero__title {
        font-size: 34px;

        line-height: 1.08;
    }

    .dev1-cbox-contact-hero__description {
        font-size: 13px;

        line-height: 1.6;
    }

}


/* =========================================
   VERY WIDE SCREENS
========================================= */

@media (min-width: 1900px) {

    .dev1-cbox-contact-hero__container {
        padding-left: 8%;
        padding-right: 4%;
    }

}