.webfus-banner {
    position: relative;
    margin-bottom: 80px;
    margin-top: 30px;
}

.webfus-banner:last-child {
    margin-bottom: 30px;
}

.webfus-banner .maxwidth-theme {
    padding-block: 0 !important;
}

.webfus-banner .maxwidth-theme:before,
.webfus-banner .maxwidth-theme:after {
    display: none;
}

.webfus-banner__slider {
    height: 450px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.webfus-banner__slide {
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.webfus-banner__slide.slick-slide {
    display: flex;
}

.webfus-banner__bg {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.webfus-banner__img {
    height: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webfus-banner__img picture{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webfus-banner__img img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.webfus-banner__video {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.webfus-banner__video:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(93, 108, 123, 0.35);
}

.webfus-banner__video video {
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.webfus-banner__info {
    position: relative;
    max-width: 1140px;
    width: 100%;
    margin: auto;
    padding: 0 30px;
}

.webfus-banner__info_inner {
    max-width: 630px;
    backdrop-filter: blur(3px);
    background: rgba(22, 36, 39, 0.5);
    border-radius: 16px;
    padding: 30px 40px;
}

.webfus-banner__title {
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-wrap: balance;
    font-size: 32px;
    padding: 0;
}

.webfus-banner__title:last-child {
    margin-bottom: 0;
}

.webfus-banner__text {
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 12px;
    text-wrap: balance;
}

.webfus-banner__text:last-child {
    margin-bottom: 0;
}

.webfus-banner__row {
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 14px 24px;
    flex-wrap: wrap;
}

.webfus-banner__row:first-child {
    margin-top: 0;
}

.webfus-banner__button {
    padding: 18px 25px;
    background: #9a0202;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    color: #FFF;
    border: 1px solid #9a0202;
    outline: 0;
    text-align: center;
    transition: all 0.3s ease-out;
}

.webfus-banner__button--bordered {
    background: transparent;
    border: 1px solid #FFF;
    color: #FFF;
}

.webfus-banner__button:focus {
    color: #FFF;
}

.webfus-banner .slick-dots {
    bottom: 20px;
}

@media (hover: hover) and (pointer: fine) {
    .webfus-banner__button:hover {
        background-color: #b80202;
        border-color: #b80202;
        color: #fff;
    }
}

@media (max-width: 1199px) {
    .webfus-banner {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .webfus-banner {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .webfus-banner__slider {
        height: min(100vw, 500px);
        border-radius: 3.2vw;
    }

    .webfus-banner__slide {
        height: min(100vw, 500px);
        padding: 15px 0;
    }

    .webfus-banner__info {
        padding: 0 15px;
    }

    .webfus-banner__info_inner {
        max-width: 85%;
        border-radius: 3.2vw;
        padding:  min(5.333vw, 20px);
        margin: 0 auto;
    }

    .webfus-banner__title {
        font-size: min(5.333vw, 20px);
        margin-bottom: min(2.667vw, 10px);
    }

    .webfus-banner__text {
        font-size: min(4.267vw, 16px);
        line-height: 1.3;
        margin-bottom: min(4vw, 15px);
    }

    .webfus-banner__row {
        gap: min(2.667vw, 10px);
        margin-top: min(5.333vw, 20px);
    }

    .webfus-banner__button {
        padding: min(2.667vw, 10px) min(4vw, 15px);
        font-size: min(4.267vw, 16px);
        width: 100%;
    }

    .webfus-banner .slick-dots {
        bottom: min(2.667vw, 10px);
    }

    .webfus-banner .slick-dots li {
        width: min(9.333vw, 35px);
        height: min(1.067vw, 4px);
    }
}