#banner-block {
    position: relative;
    max-height: 940px;
}
#banner-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.banner-container {
    padding-top: 220px;
    padding-bottom: 15px;
    position: relative;
}
.title-banner {
    font-weight: 700;
    color: var(--white);
    font-size: var(--font-size-28-52);
    line-height: 120%;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.subtitle {
    color: var(--white);
    font-size: var(--font-size-16-20);
    font-weight: 700;
    line-height: 125%;
    margin-bottom: 40px;
}
.banner-content {
    padding-left: 10px;
    max-width: 880px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.banner-item {
    list-style: none;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    font-size: var(--font-size-14-16);
    color: var(--white);
    line-height: 125%;
    margin-bottom: 10px;
}
.banner-item::before {
    content: '';
    background-color: var(--white);
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 10px;
    height: 4px;
} 
.banner-item:last-child {
    margin-bottom: 0;
}
.banner-list { 
    margin-bottom: 40px;
}
.banner-advantages {
    position: relative;
    bottom: 25px;
    right: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}
.banner-advantage {
    background-color: var(--white);
    max-width: 490px;
    width: 100%;
    padding: 30px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.banner-advantage__top {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.banner-advantage__icon {
    max-width: 40px;
    max-height: 40px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-advantage__title {
    font-weight: 700;
    font-size: var(--font-size-16-20);
    line-height: 120%;
    color: var(--black);
}
.banner-advantage__text {
    font-weight: 500;
    font-size: var(--font-size-14-16);
    color: var(--txt);
    line-height: 125%;
}
.banner-border {
    border-left: 1px solid var(--stoke-2);
    border-right: 1px solid var(--stoke-2);
    position: absolute;
    left: 15px;
    bottom: 0;
    width: calc(100% - 30px);
    height: calc(100% - 100px);
}
.banner-line {
    position: absolute;
    right: 519px;
    bottom: 0;
    width: 1px;
    height: calc(100% - 100px);
    background-color: var(--stoke-2);
}
@media (max-width: 1300px) {
    .banner-content {
        margin-bottom: 20px;
    }
    .banner-container {
        padding-top: 220px;
        padding-bottom: 40px;
        position: relative;
    }
    .banner-advantages {
        bottom: 0;
    }
}
@media (max-width: 768px) {
    #banner-block .btn {
        max-width: 100%;
    }
    .banner-container {
        padding-top: 160px;
    }
    #banner-block {
        max-height: 100%;
    }
    .banner-advantages {
        flex-direction: column;
        gap: 15px;
    }
    .banner-advantage {
        max-width: 100%;
    }
}