.top-banner-type-4 {}

.top-banner-type-4 .banner-image {
    height: 500px;
    position: relative;
}
.top-banner-type-4 .banner-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(57.46% 73.1% at 50% 34.3%, rgba(25, 27, 28, 0.2) 0%, rgba(25, 27, 28, 0.9) 100%);
}
.top-banner-type-4 .banner-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: center;
    vertical-align: top;
}
.top-banner-type-4 .banner-wrapper {
    position: relative;
}
.top-banner-type-4 .banner-wrapper .banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.top-banner-type-4 .banner-content .container {
    width: 100%;
}
.top-banner-type-4 .banner-content h1 {
    font-family: var(--font-heading-italic);
    font-size: 58px;
    line-height: 70px;
    letter-spacing: 0.02em;
    text-align: left;
    color: var(--color-gray-1);
    text-transform: uppercase;
    max-width: 700px;
}
.top-banner-type-4 .button-scroll-down {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

@media (max-width: 767px) {
    .top-banner-type-4 .banner-image {
        height: calc(var(--heightScreen, 100vh) - var(--heightHeader, 117px));
        min-height: 450px;
    }
    .top-banner-type-4 .banner-content h1 {
        font-size: 42px;
        line-height: 60px;
        text-align: center;
        max-width: 100%;
    }
    .top-banner-type-4 .button-scroll-down {
        display: block;
    }
}