h2, h3, .h2, .h3 {
    margin-top: 70px;
    margin-bottom: 35px;
    padding: 0;
}

.h4 {
    margin-top: 3rem;
    font-size: 24px;
    font-weight: 600;
}

.page-ban {
    background-color: #e75026;
    margin-bottom: 30px;
    position: relative;
    height: 402px;
    border-radius: 8px;
    overflow: hidden;
}
.page-ban img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}
.page-ban__text {
    max-width: 530px;
    width: 48%;
    margin-right: 380px;
    position: absolute;
    left: 77px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}
@media (max-width: 575.98px) {
    .page-ban {
        height: 200px;
    }
    .page-ban__text {
        left: 10%;
        width: 60%;
        font-size: 30px;
    }
}


.b-tariffs {
    margin-bottom: 150px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.b-tariffs__el {
    min-height: 650px;
    position: relative;
    padding: 30px 37px 280px;
    border-radius: 8px;
    background-color: #f4f7fc;
}
.b-tariffs__el:nth-child(2) {
    background-color: #f0f3fa;
}
.b-tariffs__el:nth-child(3) {
    background-color: #dde4f1;
}
.b-tariffs__el-type {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1;
}
.b-tariffs__el-title {
    margin-bottom: 36px;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}
.b-tariffs__el-title a {
    color: inherit;
}
.b-tariffs__el-list {
    margin: 0;
    padding: 0;
}
.b-tariffs__el-list li {
    position: relative;
    list-style: none;
    padding-left: 45px;
    font-size: 18px;
}
.b-tariffs__el-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 23px;
    height: 21px;
    background: no-repeat url(/images/sozdanie-sajta-stroyka/ic_2.png);
}
.b-tariffs__el-list li a {
    color: inherit;
}
.b-tariffs__el-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-inline: inherit;
    padding-bottom: 26px;
}

.b-tariffs__el-price-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}
.b-tariffs__el-price-row + .b-tariffs__el-price-row {
    margin-top: 16px;
}
.b-tariffs__el-name {
    font-size: 17px;
}
.b-tariffs__el-name a {
    color: inherit;
}
.b-tariffs__el-value {
    font-size: 30px;
    font-weight: 600;
}
.b-tariffs__el-value span {
    font-size: 17px;
}
.b-tariffs__el-btn-wrap {
    margin-top: 40px;
}
.b-tariffs__el-btn-wrap .btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 16px 10px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}
@media (max-width: 991.98px) {
    .b-tariffs {
        grid-template-columns: 1fr;
    }
    .b-tariffs__el {
        min-height: initial;
        padding-bottom: 0;
    }
    .b-tariffs__el-bottom {
        position: static;
    }
}
@media (max-width: 767.98px) {
    .b-tariffs__el {
        padding-left: 20px;
        padding-right: 20px;
    }
}