.mt-35 {
    margin-top: 35px;
}

.section-title h2 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 25px 0;
}

.section-title h2 b {
    text-transform: capitalize;
}

.section-subtitle {
    display: block;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 20px;
}

.dialog-cb .dialog-cb__wrapper .dialog-cb__modal .modal-form form input[type=tel] {
    margin-right: 5px;
}

/* schema */

.schema {
    margin: 60px 0;
}

.schema__title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.schema__list {
    margin-top: 30px;
    display: grid;
    grid-template-rows: repeat(1,1fr);
    grid-template-columns: repeat(5,1fr);
    gap: 50px
}

@media (max-width: 768px) {
    .schema__list {
        grid-template-columns:repeat(3,1fr)
    }
}

@media (max-width: 640px) {
    .schema__list {
        grid-template-columns:repeat(2,1fr)
    }
}

.schema__el .is-icon {
    margin-bottom: 25px
}

.schema__el .is-icon div {
    width: 101px;
    min-width: 101px;
    height: 101px;
    border: 1px solid #db073d;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 52px;
    background-size: 52px;
}

.schema__el .is-icon div.is-1 {
    background-image: url("../img/icons/schem-el-01.svg");
}

.schema__el .is-icon div.is-2 {
    background-image: url("../img/icons/schem-el-02.svg");
}

.schema__el .is-icon div.is-3 {
    background-image: url("../img/icons/schem-el-03.svg");
}

.schema__el .is-icon div.is-4 {
    background-image: url("../img/icons/schem-el-04.svg");
    background-size: 60px;
}

.schema__el .is-icon div.is-5 {
    background-image: url("../img/icons/schem-el-05.svg");
}

.schema__el .is-caption {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .schema__list {
        grid-template-columns:repeat(1,1fr)
    }

    .schema__el {
        display: flex;
        justify-content: flex-start
    }

    .schema__el .is-icon {
        margin-right: 28px
    }

    .schema__el .is-caption {
        min-height: 0
    }
}

.schema__el .is-descr {
    font-size: 14px
}

.schema__el .is-descr ul {
    margin: 15px 0;
    list-style-type: disc
}

.schema__el .is-descr ul li::marker {
    color: #db073d
}

.schema__el .is-button {
    margin-top: 27px
}

.schema__el .is-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100px;
    height: 36px;
    background: #db073d;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px
}

/* about */

.about {
    padding-top: 148px;
    padding-bottom: 119px;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #333;
    text-align: center;
    font-size: 16px
}

@media (max-width: 768px) {
    .about {
        font-size:15px;
        padding-top: 79px;
        padding-bottom: 70px
    }
}

.about__title {
    font-size: 36px;
    margin-bottom: 52px
}

@media (max-width: 768px) {
    .about__title {
        font-size:24px;
        margin-bottom: 28px
    }
}

.about__descr {
    margin-bottom: 75px;
    line-height: 1.25
}

@media (max-width: 768px) {
    .about__descr {
        margin-bottom:35px
    }
}

.about__list {
    display: grid;
    grid-template-rows: repeat(1,1fr);
    grid-template-columns: repeat(3,1fr);
    gap: 50px
}

@media (max-width: 480px) {
    .about__list {
        grid-template-columns: repeat(2,1fr);
        gap: 40px 20px
    }
}

.about__el .is-more {
    margin-bottom: 6px
}

.about__el .is-num {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 6px
}

.about__el .is-text {
    font-weight: 700
}

/* why-block */

.why_block h2 {
    margin: 0 !important;
}

.why_block {
    margin-top: 75px;
}

.why_block__items {
    display: flex;
    flex-wrap: wrap;
    padding: 42px;
}

.why_block .columns {
    background: #FFF;
    box-shadow: 0 81px 120px -77px rgba(34,37,59,.04);
    border-radius: 40px;
    margin: 30px 0;
    position: relative
}

.why_block .columns .item {
    padding: 45px 15px 40px;
    width: calc(100% / 3);
}

.why_block .columns .item .num {
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    line-height: 45px;
    color: #DB073D;
    margin-bottom: 20px
}

.why_block .columns .item .name {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #22253B;
    margin-bottom: 27px;
}

.why_block .columns .item .desc {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #22253B
}

.why_block .columns .item.special .desc {
    background: #DB073D;
    border-radius: 40px;
    min-height: 250px;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #fff;
    padding: 0 30px;
}

.why_block .columns .item.special {
    padding-right: 0;
    padding-bottom: 0
}

.why_block .columns.nemec {
    padding-bottom: 50px;
    margin-top: 80px
}

.why_block .columns.nemec .text-button {
    justify-content: right;
    margin-right: 40px
}

@media (max-width: 768px) {
    .why_block__items {
        display: block;
        padding: 32px;
    }
    .why_block .columns .item {
        padding: 15px 0;
        width: 100%;
    }
}

/* pricelist-table */

.pricelist-table tr td.name {
    width: 100%;
}

.pricelist-table tr td {
    padding: 8px 0;
    border-bottom: 1px solid #e1e1e1;
    vertical-align: middle;
}

.pricelist-table tr td.price {
    color: #db073d;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
    padding-left: 30px;
    padding-right: 30px;
}

.pricelist-table tr td.order a {
    color: #db073d;
    display: block;
    float: left;
    font-size: 14px;
    line-height: normal;
    border: 1px solid #db073d;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 2px;
}

.more_price__btn {
    display: flex;
    justify-content: center;
}

.more_price {
    text-align: center;
    color: #db073d;
    font-size: 14px;
    line-height: normal;
    border: 1px solid #db073d;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 2px;
    margin-top: 20px;
    width: 150px;
}

.pricelist-table tr:nth-child(n+16) {
    display: none;
}

.districts-links__main .block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
    margin-bottom: 30px;
}

.districts-links__main a {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 10px 40px;
    color: #000;
    background: #fff;
    border: 1px solid #db073d;
    border-radius: 4px;
}

.districts-links__main .row {
    background: #fff;
    margin-bottom: 40px;
    padding: 40px 15px;
    text-align: center
}

.districts-links__main .title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px
}

.districts-links__main .block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}



.logo_rev a {
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
}

.logo_rev a im {}

img.cataloxy-kz {
    max-width: 60px;
}

.logo_rev span {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
}


img.isfix {
    background: #23223c;
    padding: 10px;
    max-width: 85px;
}

img.kazifirm {
    max-width: 150px;
}



img.service-centers {
    max-width: 60px;
}

img.top20-best {
    background: #018bd0;
    padding: 10px;
    max-width: 100px;
}

img.google {
    max-width: 60px;
}

img.orgpage {
    max-width: 200px;
}
.about-masters img {max-width:142px !important;width:100%;}


@media (min-width: 771px) {

div.slider-reviews.slider-reviews-old .swiper-pagination {display:block;}

}

@media (max-width: 770px) {
div.slider-reviews.slider-reviews-old {text-align:center;}
div.slider-reviews.slider-reviews-old img {
    margin: 0 auto;
}

}

@media (min-width: 768px) {
#masters .items .item {
    text-align: center;
    width: 180px;
}
}