
/* ========================================
   ORELI HOMEPAGE HERO
======================================== */

.oreli-hero {
    position: relative;
    width: 100%;
    min-height: 620px;
    height: min(680px, 80vh);
    overflow: hidden;
    background: #10151b;
    color: #fff;
    isolation: isolate;
}

/* BACKGROUND IMAGE */

.oreli-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.oreli-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

/* DARK GRADIENT */

.oreli-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(9, 13, 18, .96) 0%,
            rgba(9, 13, 18, .86) 28%,
            rgba(9, 13, 18, .48) 48%,
            rgba(9, 13, 18, .08) 75%
        );
}

/* =========================================
   HERO INNER - CENTERED CONTAINER
========================================= */

.oreli-hero__inner {
    position: relative;

    width: calc(100% - var(--oreli-home-gutter) * 2);
    max-width: var(--oreli-home-width);

    min-height: 620px;
    height: auto;

    margin-left: auto;
    margin-right: auto;

    padding: 90px 0 55px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
}

/* LEFT CONTENT */

.oreli-hero__content {
    width: 52%;
    max-width: 610px;
    position: relative;
    z-index: 2;
}

.oreli-hero__eyebrow {
    margin: 0 0 16px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255,255,255,.85);
}

.oreli-hero__title {
    margin: 0 0 18px;

    font-size: clamp(42px, 5vw, 68px);
    font-weight: 750;
    line-height: 1.02;
    letter-spacing: -1.8px;

    color: #fff;
}

.oreli-hero__title span {
    display: inline-block;
    color: #d51b91;
}

.oreli-hero__desc {
    max-width: 420px;
    margin: 0 0 25px;

    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;

    color: rgba(255,255,255,.84);
}

/* VIDEO BUTTON */

.oreli-hero__video {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;
}

.oreli-hero__video:hover {
    color: #fff;
    opacity: .85;
}

.oreli-hero__play {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;

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

    border-radius: 50%;
    background: #fff;
    color: #171717;

    transition: transform .25s ease;
}

.oreli-hero__play svg {
    width: 17px;
    height: 17px;
    margin-left: 3px;
}

.oreli-hero__video:hover .oreli-hero__play {
    transform: scale(1.08);
}

.oreli-hero__video b {
    margin-left: 5px;
    font-size: 17px;
    font-weight: 400;
}

/* RIGHT VALUES */

.oreli-hero__values {
    position: absolute;
    right: 6%;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 22px;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;

    color: rgba(255,255,255,.8);
}

/* BOTTOM CONTACT */

.oreli-hero__contact {
    position: absolute;
    right: 6%;
    bottom: 32px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    text-decoration: none;

    font-size: 11px;
}

.oreli-hero__contact:hover {
    color: #fff;
}

.oreli-hero__contact-icon {
    width: 32px;
    height: 32px;

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

    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;

    font-size: 17px;
}

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

@media (max-width: 1024px) {

    .oreli-hero {
        min-height: 580px;
        height: 680px;
    }

    .oreli-hero__inner {
        min-height: 580px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .oreli-hero__content {
        width: 65%;
    }

    .oreli-hero__title {
        font-size: clamp(42px, 6vw, 60px);
    }

    .oreli-hero__values {
        right: 5%;
    }

}

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

@media (max-width: 767px) {

    .oreli-hero {
        height: auto;
        min-height: 650px;
    }

    .oreli-hero__inner {
        min-height: 650px;
        padding: 90px 24px 85px;

        align-items: flex-end;
    }

    .oreli-hero__media {
        inset: 0;
    }

    .oreli-hero__image {
        object-position: 62% center;
    }

    .oreli-hero__overlay {
        background:
            linear-gradient(
                0deg,
                rgba(8,12,17,.98) 0%,
                rgba(8,12,17,.88) 38%,
                rgba(8,12,17,.25) 75%,
                rgba(8,12,17,.12) 100%
            );
    }

    .oreli-hero__content {
        width: 95%;
        max-width: 100%;
    }

    .oreli-hero__eyebrow {
        font-size: 10px;
        letter-spacing: 2.5px;
        margin-bottom: 12px;
    }

    .oreli-hero__title {
        font-size: clamp(37px, 9vw, 52px);
        line-height: 1.04;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .oreli-hero__desc {
        max-width: 95%;
        font-size: 13px;
        line-height: 1.7;
    }

    .oreli-hero__values {
        display: none;
    }

    .oreli-hero__contact {
        right: 54px;
        bottom: 20px;
        font-size: 10px;
    }

    .oreli-hero__contact-icon {
        width: 29px;
        height: 29px;
    }

}

/* SMALL MOBILE */

@media (max-width: 380px) {

    .oreli-hero__inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .oreli-hero__title {
        font-size: 35px;
    }

    .oreli-hero__contact {
        right: 18px;
    }

}
/* =========================================
   ORELI HERO - MOBILE WIDTH FIX
========================================= */

@media (max-width: 767px) {

    .oreli-hero__inner {
        width: 100%;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;

        padding: 90px 20px 85px;

        box-sizing: border-box;

        min-height: 650px;
        height: auto;
    }

}