#mainbanner {
    position: relative;
    min-height: 940px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* margin-top: -250px; */
}

#mainbanner .video-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

#mainbanner .container {
    padding-bottom: 125px;
    padding-top: 100px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

#mainbanner .video-bg video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#mainbanner::before {
    content: '';
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 0;
}

#mainbanner::after {
    content: '';
    position: absolute;
    width: 100%;
    /* height: 30px; */
    bottom: 0;
    z-index: 99;
    left: 0;
    right: 0;
    /* background-color: #A2EAEA; */
    background-image: url(images/mainbanner.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    object-fit: contain;
}

#mainbanner .icon__holder {
    height: 40px;
    width: 40px;
    flex-shrink: 0;
}

#mainbanner .icon__holder img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

#mainbanner .advantages__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px 30px;
    max-width: 970px;
}

#mainbanner .advant {
    max-width: 470px;
    display: flex;
    align-items: center;
    gap: 20px;
}

#mainbanner .mainbanner__bottom {
    display: flex;
    gap: 30px;
    margin-top: 80px;
}

#mainbanner .mainbanner__title {
    max-width: 970px;
    color: var(--white);
    margin-bottom: 40px;
}

#mainbanner .advant__text {
    color: var(--white);
}

@media(max-width: 950px) {
    #mainbanner .container {
        padding-top: 130px;
    }
}

@media(max-width: 950px) {
    #mainbanner .advantages__wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    #mainbanner .mainbanner__bottom {
        flex-direction: column-reverse;
    }

    #mainbanner .mainbanner__bottom {
        margin-top: 40px;
    }

    /* #mainbanner {
        margin-top: -155px;
    } */
}