.hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    position: relative;
    z-index: 1;
    padding-block: 117rem;
}

.hero__content {
    color: var(--color-white);
}

.hero__title {
    font-weight: 500;
    font-size: 42rem;
    line-height: 44rem;
    text-align: center;
    -webkit-margin-after: 24rem;
            margin-block-end: 24rem;
}

.hero__text {
    text-align: center;
    -webkit-margin-after: 36rem;
            margin-block-end: 36rem;
}

.hero__button {
    margin-inline: auto;
}

.hero__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero__bg:before,
.hero__bg:after,
.hero__bg img {
    width: 100%;
    height: 100%;
}

.hero__bg:before,
.hero__bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}

.hero__bg:before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), color-stop(14%, rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 14%);
}

.hero__bg:after {
    background-color: var(--color-black);
    opacity: 0.2;
    z-index: 1;
}

.hero__bg img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.hero__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 50rem;
    left: 0;
}

.hero__arrow {
    width: 14rem;
    height: 17rem;
    -webkit-filter: invert(1);
            filter: invert(1);
    background: url('../../img/icons/arrow-bottom.svg') center/contain no-repeat;
    -webkit-animation: bounce 2s ease-in-out infinite;
            animation: bounce 2s ease-in-out infinite;
}

@media screen and (min-width: 768px) {
    .hero__content {
        max-width: 650rem;
        margin-inline: auto;
    }

    .hero--product .hero__content {
        max-width: 522rem;
    }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
   /* .hero {
        min-height: 820rem;
    }*/

    .hero__title {
        font-size: 68rem;
        line-height: 68rem;
    }
}
