:root {
    --hero-btn-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    --gradient-hero: linear-gradient(73.47deg, #FFC18F 18.5%, #FA818A 59.14%, #5C85CB 98.19%);
}

.hero {
    position: relative;
    z-index: 1;
    background-image: var(--gradient-hero);
    overflow: hidden;
}

.hero__img {
    margin: 0 auto;
    width: 100%;
    max-width: none;
    max-height: 1200px;
    object-fit: cover;
    object-position: center;
}

.hero__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 200px 0;
}

.hero__date,
.hero__text {
    display: block;
}

.hero__date {
    font-size: 36px;
    margin-bottom: 16px;
}

.hero__text {
    font-size: 20px;
    margin-bottom: 60px;
    font-weight: 500;
    line-height: 1.2;
}

.hero__heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    font-size: 84px;
    margin-bottom: 30px;
    white-space: nowrap;
}

.hero__heading::after {
    --size: 62px;
    content: '';
    display: block;
    flex-shrink: 0;
    width: var(--size);
    height: var(--size);
    background-image: url('../img/hero/icon-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-left: 36px;
}

.btn.hero__btn {
    font-size: 20px !important;
    min-width: 260px !important;
    background-color: var(--color-warning-accent);
    -webkit-box-shadow: var(--hero-btn-shadow);
    box-shadow: var(--hero-btn-shadow);
}

@media screen and (max-width: 1600px) {
    .hero__content {
        padding: 10% 0;
    }

    .hero__date {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .hero__text {
        margin-bottom: 3.6vw;
    }

    .hero__heading {
        font-size: 78px;
        margin-bottom: 2vw;
    }

    .hero__heading::after {
        --size: 56px;
        margin-left: 2vw;
    }
}

@media screen and (max-width: 1199px) {
    .hero__img {
        height: 748px;
    }

    .hero__content {
        padding: 110px 0;
    }

    .hero__text {
        margin-bottom: 40px;
    }

    .hero__heading {
        font-size: 64px;
        margin-bottom: 20px;
    }

    .hero__heading::after {
        --size: 50px;
        margin-left: 16px;
    }
}

@media screen and (max-width: 767px) {
    .hero__img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%
    }

    .hero__content {
        position: static;
        padding-bottom: 60px;
    }

    .hero__text {
        padding-right: 19vw;
        margin-bottom: 200px;
    }

    .hero__heading {
        margin-bottom: 16px;
    }

    .btn.hero__btn {
        display: flex;
        margin: auto
    }
}

@media screen and (max-width: 665px) {
    .hero__date {
        font-size: 24px;
    }

    .hero__text {
        padding-right: 13vw;
    }

    .hero__heading {
        font-size: 60px;
    }

    .hero__heading::after {
        --size: 44px;
        margin-left: 10px;
    }
}

@media screen and (max-width: 512px) {
    .hero__content {
        padding-top: 90px;
        padding-bottom: 60px;
    }

    .hero__date {
        font-size: 20px;
    }

    p.hero__text {
        font-size: 18px;
        padding-right: 0;
        margin-bottom: 180px;
    }

    .hero__heading {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .hero__heading::after {
        --size: 34px;
        margin-left: 10px;
    }
}

@media screen and (max-width: 479px) {
    .hero__date {
        font-size: 18px;
    }

    p.hero__text {
        font-size: 16px;
        margin-bottom: 160px;
    }

    .hero__heading {
        font-size: 40px;
    }

    .hero__heading::after {
        --size: 28px;
    }
}

@media screen and (max-width: 375px) {
    p.hero__text {
        margin-bottom: 140px;
    }

    .hero__heading {
        font-size: 36px;
    }

    .hero__heading::after {
        --size: 24px;
        margin-left: 6px;
    }
}