/* Fonts */
@font-face {
    font-family: 'Industry';
    font-style: italic;
    font-weight: 900;
    font-display: swap;
    src: url(../fonts/Industry-UltraBold-Italic.woff2) format('woff2');
}

@font-face {
    font-family: 'Industry';
    src: url(../fonts/industry-bold-italic.woff2) format("woff2"), url(../fonts/industry-bold-italic.woff) format("woff"), url(../fonts/industry-bold-italic.otf) format("opentype");
    font-display: auto;
    font-style: italic;
    font-weight: 700;
    font-stretch: normal;
}

@font-face {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Din-2014-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Din-2014-Bold.woff2) format('woff2');
}

.subpage-hero {
    background-color: red;
    overflow: hidden;
    position: relative;
}

.subpage-hero .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.subpage-hero .subpage-hero-bg-overlay {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
}

.subpage-hero .container {
    position: relative;
    height: 430px;
    padding-top: 140px;
}

.subpage-hero .subpage-hero__content {
    position: relative;
    z-index: 1;
    width: 720px;
    max-width: 100%;
}

.subpage-hero .subpage-hero__content h1 {
    font-family: Industry;
    font-size: 60px;
    font-style: italic;
    font-weight: 900;
    line-height: 60px;
    position: relative;
}

@media screen and (min-width: 576px) {
    .subpage-hero .subpage-hero__content h1 {
        font-size: 70px;
        line-height: 70px;
    }
}

@media screen and (min-width: 768px) {
    .subpage-hero .subpage-hero__content h1 {
        font-size: 80px;
        line-height: 80px;
    }
}

@media screen and (min-width: 992px) {
    .subpage-hero .subpage-hero__content h1 {
        font-size: 90px;
        line-height: 90px;
    }
}

@media screen and (min-width: 1200px) {
    .subpage-hero .subpage-hero__content h1 {
        font-size: 100px;
        line-height: 100px;
    }
}

.subpage-hero .subpage-hero__content h1::after {
    content: '';
    display: block;
    width: 720px;
    max-width: 100%;
    height: 12px;
    background: linear-gradient(270deg, rgba(255, 202, 0, 0.00) 0%, #ffca00 22.02%);
}

.subpage-hero .subpage-hero__icon {
    position: absolute;
    top: 0;
    right: 15px;
    left: auto;
    bottom: auto;
    transform: translateY(-58px);
    opacity: 0.4;
    mix-blend-mode: multiply;
}

@media screen and (max-width: 992px) {
    .subpage-hero .subpage-hero__icon {
        display: none;
    }
}