.main-banner {
    padding: 70px 0;
    min-height: calc(var(--window-height) - var(--header-height));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.main-banner__image-wrapper {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.main-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-banner__content {
    text-align: center;
    width: 100%;
    max-width: 1065px;
    margin: 0 auto;
    position: relative;
}

.main-banner__title {
    color: var(--white)
}

@media (min-width: 760px) and (max-width: 1199.98px) {
    .main-banner__title {
        max-width: 655px;
        margin: 0 auto;
        width: 100%
    }
}

.main-banner__description {
    max-width: 684px;
    width: 100%;
    margin: 20px auto 0;
    color: var(--white)
}

@media (min-width: 1200px) {
    .main-banner__description {
        max-width: 727px
    }
}
