.hero {
    padding-top: 80px;
}

.hero__bg {
    position: relative;
}

.hero__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.hero__bg-img {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 800px;
    object-fit: cover;
    object-position: top center;
}

.hero__content {
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    padding-top: 40px;
}

.hero__time {
    display: block;
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 20px;
}

.hero__title {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.hero__title img {
    display: block;
    width: 90%;
    max-width: 512px;
}

.hero__text {
    font-weight: 500;
    margin-bottom: 60px;
}

.hero__lead {
    margin-top: -100px;
}

p.hero__lead-text {
    font-size: 32px;
    margin-left: 16%;
    margin-right: 20%;
    margin-bottom: 60px;
}

@media screen and (max-width: 1199px) {
    p.hero__lead-text {
        margin-left: 0;
    }

    .hero__time,
    p.hero__lead-text {
        font-size: 30px;
    }
}

@media screen and (max-width: 991px) {
    p.hero__lead-text {
        margin-right: 0;
    }

    .hero__time,
    p.hero__lead-text {
        font-size: 28px;
    }

    .hero__bg-img {
        min-height: 700px;
    }
}

@media screen and (max-width: 767px) {
    .hero__title img {
        max-width: 432px;
    }

    .hero__text {
        margin-right: 20%;
    }

    .hero__row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hero__bg-img {
        min-height: 600px;
    }

    .hero__lead {
        margin-top: -50px;
    }

    p.hero__lead-text {
        margin-bottom: 0;
    }

    .hero__time,
    p.hero__lead-text {
        font-size: 24px;
    }

    .hero__lead-img {
        margin-top: 30px;
    }
}

@media screen and (max-width: 512px) {
    .hero__bg-img {
        min-height: 500px;
    }

    .hero__time,
    p.hero__lead-text {
        font-size: 20px;
    }
}