.banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .banner .container {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 576px) {
    .banner {
        background: url("../../images/mobile_bg.webp") no-repeat;
    }
}


.banner h1 {
    margin-bottom: 26px;
    font-size: 54px;
    font-weight: 400;
    line-height: 1.22em;
    letter-spacing: 0.0119em;
}

.banner p {
    font-size: 22px;
    line-height: 1.7em;
    font-weight: 300;
    letter-spacing: 0.01em;
}

@media screen and (max-width: 1200px) {
    .banner h1.first {
        margin-bottom: 19px;
    }

    .banner p {
        line-height: 1.5em;
    }
}

.banner .left ul {
    font-size: 18px;
    line-height: 1.6;
    list-style: none;
}

.banner .left ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
}

.rtl .banner .left ul li {
    padding-left: unset;
    padding-right: 30px;
}

.banner .left ul li::before {
    position: absolute;
    content: url("http://try.novavps.cloud/wp-content/uploads/NicePng_bullet-icon-png_2030344-1.svg");
    font-size: 1.2em;
    left: 0;
    transform: scale(0.7);
}

.rtl .banner .left ul li::before {
    left: unset;
    right: 0;
}

.banner .blue_btn {
    border: none;
    cursor: pointer;
    margin-top: 52px;
}

@media screen and (max-width: 768px) {
    .banner h1 {
        font-size: 30px;
    }

    .banner p {
        font-size: 17px;
    }

    .banner .blue_btn {
        margin-top: 35px;
    }
}