.banner {
    max-height: 108rem;
    min-height: 75rem;

    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;

    color: var(--clr-white);
}

.banner__bg {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;

    overflow: hidden;
}

.banner__bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.banner__text {
    position: absolute;
    top: 24rem;
    left: 4rem;
    z-index: 1;
}

.banner__title {
    font-size: 12rem;
    font-weight: 900;
    font-style: normal;
}

.banner__subtitle {
    display: block;
    margin-top: 2.4rem;
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.25;
}

/*@media screen and (max-width: 1440px) {*/
/*    .banner__bg img {*/
/*        object-position: center;*/
/*    }*/
/*    .banner__text {*/
/*        position: relative;*/
/*        top: unset;*/
/*        left: unset;*/
/*        padding-top: 14.2rem;*/
/*        text-align: center;*/
/*    }*/
/*    .banner__title {*/
/*        text-align: center;*/
/*    }*/
/*}*/
@media screen and (max-width: 960px) {
    .banner__bg img {
        object-position: center;
    }
    .banner__text {
        width: 100%;
        height: auto;
        padding: 14.2rem 2rem 0;
        box-sizing: border-box;
        top: 0;
        left: 0;
        text-align: center;
    }
    .banner__title {
        font-size: 10vw;
    }
    .banner__subtitle {
        margin: 2rem auto 0;
        /*font-size: 3vw;*/
    }
    .banner__bg img {
        object-position: center;
    }
}
@media screen and (max-width: 450px) {
    .banner__text {
        padding-top: 11rem;
    }
    .banner__subtitle {
        font-size: 2rem;
    }
}
