/*  
    ----------------------------------
    base
    ----------------------------------
*/

@font-face {
    font-family: RobotoBold;
    src: url('/ui/fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: RobotoMedium;
    src: url('/ui/fonts/Roboto-Medium.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: RobotoRegular;
    src: url('/ui/fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: RobotoLight;
    src: url('/ui/fonts/Roboto-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: RobotoThin;
    src: url('//ui/fonts/Roboto-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none
}
ol li{
    list-style:decimal;
}
a {
    text-decoration: none;
    color: #1E1E1E;
}

a:hover,
a:focus {
    text-decoration: none;
    color: inherit
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

p {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, button, textarea, select {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

input {
    color: #1E1E1E;
    background-color: #F6F5F5;
    border: none;
    border-radius: 5px;
    padding: 13px;
    width: 100%;
}

html {
    box-sizing: border-box;
    font-size: 16px;
    height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: RobotoRegular, sans-serif;
    font-size: 1rem;
    line-height: normal;
    color: #1E1E1E;
    background-color: #F6F5F5;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.h2 {
    color: #1E1E1E;
    font-size: 34px;
    font-weight: 600;
}

.d-block-lg {
    display: block;
}

.d-none {
    display: none;
}

.w-50 {
    width: 50%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.pt-100 {
    padding-top: 100px !important;
}

.wrapper {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
}

.col-2 {
    width: calc(100% / 2 - 20px);
    margin: 0 10px;
}

.container {
    position: relative;
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.btn {
    cursor: pointer;
    background-color: #4C4B7C;
    border-radius: 5px;
    border: 1px solid #4C4B7C;
    color: #fff;
    padding: 13px;
    width: 100%;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #fff;
    color: #1E1E1E;
}

.btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-wrap .btn {
    max-width: 240px;
}

.bg--white {
    background-color: #fff;
}

.slider-container {
    position: relative;
}

.slider-btn-base {
    position: absolute;
    background-color: #4C4B7C;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 3px;
    width: 44px;
    height: 44px;
    z-index: 2;
    top: 40%;
    transition: all 0.3s;
}

.slider-btn-base:hover {
    opacity: 0.8;
}

.slider-btn-base__prev {
    background-image: url(/assets/template/img/icons/arrow-prev.svg);
    left: -70px;
}

.slider-btn-base__next {
    background-image: url(/assets/template/img/icons/arrow-next.svg);
    right: -70px;
}

.slider-btn-base.swiper-button-disabled {
    background-color: #fff;
}

.slider-btn-base__prev.swiper-button-disabled {
    background-image: url(/assets/template/img/icons/arrow-prev-des.svg);
}

.slider-btn-base__next.swiper-button-disabled {
    background-image: url(/assets/template/img/icons/arrow-next-des.svg);
}

.slider-pagination__base {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-pagination__base .swiper-pagination-bullet {
    background-color: #4C4B7C26;
    width: 10px;
    height: 10px;
}

.slider-pagination__base .swiper-pagination-bullet-active {
    background-color: #4C4B7C;
}

@media (max-width: 620px) {
    .h2 {
        font-size: 24px;
    }
    .d-none-xs {
        display: none !important;
    }
    .col-2 {
        margin: 0;
    }
    .pt-100 {
        padding-top: 60px !important;
    }
    .btn-wrap .btn {
        max-width: 100%;
    }
    .slider-btn-base {
        top: auto;
        margin-top: 10px;
    }
    .slider-btn-base__next {
        right: 0;
    }
    .slider-btn-base__prev {
        left: 0;
    }
    .slider-pagination__base {
        margin-top: 30px;
    }
}

/*  
    ----------------------------------
    flex
    ----------------------------------
*/

.inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.flex.jsb, .inline-flex.jsb {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex.jsa, .inline-flex.jsa {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
}
.flex.jfs, .inline-flex.jfs {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.flex.jfe, .inline-flex.jfe {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.flex.jc, .inline-flex.jc {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flex.ac, .inline-flex.ac {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex.afs, .inline-flex.afs {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.flex.afe, .inline-flex.afe {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.flex.fdc, .inline-flex.fdc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex.fdi, .inline-flex.fdi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: inherit;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
}


/*  
    ----------------------------------
    section
    ----------------------------------
*/

section {
    padding: 50px 0;
}

.section-title {
    color: #1E1E1E;
    font-size: 2rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1px;
}

.section-text {
    font-size: 20px;
    line-height: 120%;
}

.section-text p {
    margin-bottom: 20px;
}

.section-text p:last-child {
    margin-bottom: 0;
}

.section-info {
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
}

.section-info .section-title,
.section-info .section-text {
    width: calc(100% / 2 - 10px);
    margin: 0 10px;
}

@media (max-width: 620px) {
    section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 24px;
    }
    .section-info {
        flex-direction: column;
        margin: 0;
    }
    .section-info .section-title,
    .section-info .section-text {
        width: 100%;
        margin: 10px 0;
    }
}

/*  
    ----------------------------------
    header
    ----------------------------------
*/

.header {
    transition: all 0.3s ease; /* Плавный переход */
}

/* Фиксированное состояние */
.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff; /* фон обязателен, чтобы контент под ним не просвечивал */
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Когда закреплён и показан */
.header.fixed.show {
    transform: translateY(0);
}

.container--header {
    max-width: 1820px;
    padding: 20px 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    border-radius: 8px;
    box-shadow: 0px 4px 8.7px 0px #0000000D;
    display: flex;
    width: 258px;
}

.logo__img {
    height: 60px;
    display: flex;
    align-items: center;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background: #fff;
    padding: 10px 15px;
}

.logo__description {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 15px;
    height: 60px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    background: #4A4B7C;
    font-family: RobotoMedium, sans-serif;
    line-height: 13px;
    color: #fff;
}

.header__logo:hover .logo__description {
    color: #4a4b7c;
    background: #fff;
    transition: all 0.2s linear;
}

.header__nav .nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav__item--dropdown {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
}

.nav__item--dropdown:after {
    content: '';
    display: block;
    width: 12px;
    height: 9px;
    background-image: url(/assets/template/img/icons/arrow-drop.svg);
    background-repeat: no-repeat;
}

.header-submenu__wrap {
    padding: 25px;
    background: #fff;
    overflow-y: auto;
    display: flex;
    width: max-content;
    flex-direction: column;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
    position: absolute;
    top: 20px;
    left: 0;
    gap: 15px;
}

.nav__item--dropdown:hover > .header-submenu__wrap,
.nav__item--dropdown:focus-within > .header-submenu__wrap {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav__item--dropdown:hover.nav__item--dropdown:after {
    transform: rotate(-180deg);
    transition: all 0.3s;
}

.header__location .location {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__location .location:before {
    content: '';
    display: block;
    width: 21px;
    height: 21px;
    background-image: url(/assets/template/img/icons/icon-geo.svg);
    background-repeat: no-repeat;
}

.header__location .location:after {
    content: '';
    display: block;
    width: 12px;
    height: 9px;
    background-image: url(/assets/template/img/icons/arrow-drop.svg);
    background-repeat: no-repeat;
}

.location__city {
    background: #fff;
    padding: 8px 15px;
    display: none;
    position: absolute;
    top: 30px;
    z-index: 2;
    border-radius: 10px;
    min-width: 200px;
}

.location__city li {
    margin-bottom: 10px;
}

.location__city li:last-child {
    margin-bottom: 0;
}

.header__info .phone {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header__info .phone:before {
    content: '';
    display: block;
    background-image: url(/assets/template/img/icons/icon-phone.svg);
    width: 18px;
    height: 18px;
}

.header__location .location.location--open::after {
    transform: rotate(-180deg);
    transition: all 0.3s;
}

.header__info .phone a {
    color: #4C4B7C;
    font-size: 24px;
    font-weight: 600;
}

.topmenu__opener {
    display: none;
    width: 25px;
    min-width: 25px;
    height: 22px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.topmenu__opener div {
    width: 28px;
    height: 3px;
    background: #4C4B7C;
    border-radius: 0;
    margin-bottom: 5px;
    transition: all .4s ease;
    border-radius: 0;
}

.topmenu__opener div:last-child {
    margin-bottom: 0;
}

.is-open .topmenu__opener div:nth-child(1) {
    transform: rotate(45deg);
    margin-top: 0px
}

.is-open .topmenu__opener div:nth-child(2) {
    opacity: 0
}

.is-open .topmenu__opener div:nth-child(3) {
    transform: rotate(-45deg);
    margin-top: -16px
}

.topmenu__mobile {
    z-index: 3;
    display: none;
    position: fixed;
    top: 100px;
    padding: 20px;
    margin: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    background: #fff;
    border-top: 2px solid #F6F5F5;
}

.is-open .topmenu__mobile {
    display: block;
}

.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.topmenu__mobile-menu {
    margin-bottom: 20px;
}

.topmenu__mobile-inside .info .title {
    color: #1E1E1E;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    padding-right: 10px;
}

.topmenu__mobile-inside .info {
    margin-bottom: 15px;
}

.topmenu__mobile-inside .info .info-item {
    color: #4C4B7C;
    font-weight: 600;
    font-size: 18px;
    gap: 15px;
    margin-bottom: 8px;
}

.topmenu__mobile-menu li {
    margin-bottom: 5px;
}

.topmenu__mobile-menu .is-header {
    color: #1E1E1E;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 620px) {
    .header__nav {
        display: none;
    }
    .container--header {
        flex-direction: column;
        padding: 20px;
    }
    .header__logo-wrap {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header__button {
        width: 100%;
    }
    .header__info .phone a {
        font-size: 18px;
    }
    .header__info {
        padding: 18px 0;
    }
    .header__location {
        order: 3;
        font-size: 14px;
    }
    .header__location .location {
        padding-top: 15px;
    }
    .fixed .header__location .location {
        display: none;
    }
    .topmenu__opener {
        display: flex;
        z-index: 3;
        background: rgba(76, 75, 124, 0.15);
        border-radius: 10px;
        width: 58px;
        height: 58px;
    }
}

/*  
    ----------------------------------
    hero
    ----------------------------------
*/


.hero {
    padding-top: 90px;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    min-height: 600px;
    display: flex;
}

.container--hero {
    max-width: 1820px;
    margin-top: auto;
}

.hero__content {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 50px 90px 50px 50px;
    max-width: 912px;
}

.hero__content.bg--white {
    background-color: #fff;
}

.hero__title {
    color: #4C4B7C;
    font-weight: 600;
    font-size: 40px;
}

.hero__info {
    padding-top: 30px;
}

.hero__info span {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 10px;
}

.hero__discount {
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 20px;
    margin-top: 30px;
    gap: 15px;
}

.hero__discount .text {
    font-size: 24px;
}

.hero__form form {
    display: flex;
    gap: 15px;
}

.section-promo {
    padding-top: 100px;
}

.promo__info {
    padding-top: 50px;
}

.promo__advantage-item {
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 20px;
}

.promo__advantage-item .img img {
    min-width: 36px;
}

.promo__advantage-item .title {
    color: #4C4B7C;
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.promo__advantage-item p {
    margin-top: 10px;
}

.circle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(76, 75, 124, 0.15);
    border-radius: 50px;
}

.promo__callbeck {
    position: relative;
    background-color: rgba(76, 75, 124, 0.15);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: end;
}

.promo__callbeck-img {
    position: absolute;
    left: 0;
    bottom: 0;
}

.promo__callbeck-price {
    background-color: #fff;
    border-radius: 10px;
    font-size: 18px;
    padding: 24px 20px;
    width: 345px;
    z-index: 1;
}

.promo__callbeck-price .price {
    padding-bottom: 15px;
}

.promo__callbeck-price .price span {
    font-size: 24px;
}

.breadcrumb {
    display: flex;
    gap: 15px;
    padding-bottom: 30px;
}

.breadcrumb li a {
    color: #4C4B7C;
}

.guarantee--promo .promo__advantage-item {
    margin-bottom: 10px;
}

@media (max-width: 620px) {
    .hero {
        padding: 200px 0 20px 0;
        background-position: right;
    }
    .hero__content {
        padding: 20px;
        width: 100%;
    }
    .hero__title {
        font-size: 32px;
    }
    .hero__discount {
        flex-direction: column;
        padding: 10px;
    }
    .hero__discount .text {
        font-size: 18px;
    }
    .promo__info {
        flex-direction: column;
    }
    .section-promo {
        padding-top: 60px;
    }
    .promo__advantage {
        flex-direction: column;
        padding-top: 20px;
        gap: 10px;
        width: 100%;
    }
    .promo__advantage-item {
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 10px 0;
    }
    .promo__advantage-item .info {
        width: 80%;
    }
    .promo__advantage-item .title {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .promo__callbeck {
        padding: 20px;
    }
    .promo__callbeck-price {
        width: 100%;
    }
}

/*  
    ----------------------------------
    express-estimate
    ----------------------------------
*/

.express-estimate__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.estimate {
    width: 41%;
}

.estimate__advantage {
    width: 49.5%;
}

.express-estimate {
    padding-top: 100px;
}

.estimate__advantage__item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    min-height: 200px;
}

.estimate__advantage__item:last-child {
    margin-bottom: 0;
}

.estimate__advantage__item img {
    margin-bottom: 16px;
    width: 42px;
    height: auto;
}

.select__device,
.select__fault {
    position: relative;
    display: flex;
    flex-direction: column;
}

.estimate__form {
    margin-top: 28px;
}

.estimate__form select {
    cursor: pointer;
    padding: 18px 15px;
    margin-top: 10px;
    margin-bottom: 18px;
    border: none;
    border-radius: 4px;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.estimate__form label {
    color: #4C4B7C;
    font-weight: 600;
}

.select__device::after,
.select__fault::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    width: 12px;
    height: 9px;
    padding: 8px;
    pointer-events: none;
    border-radius: 4px;
    background: url(/assets/template/img/icons/arrow-drop.svg) center center no-repeat;
}

.select__fault__price-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.select__fault__price-wrap button {
    width: 245px;
    height: 46px;
}

.select__fault__price-wrap .fault-price {
    font-size: 24px;
    font-weight: 600;
}

.estimate__phone {
    color: #4C4B7C;
    background-color: rgba(76, 75, 124, 0.25);
    border-radius: 10px;
    padding: 20px;
    margin-top: 24px;
    font-size: 20px;
}

.estimate__phone a {
    color: #4C4B7C;
    font-size: 24px;
    font-weight: 600;
    padding-left: 10px;
}

.form__order-map {
    color: #fff;
    background-color: #4C4B7C;
    border-radius: 10px;
    padding: 20px;
    margin-top: auto;
    width: 37%;
}

.form__order-map.w-50 {
    width: 50%;
}

.map__container {
    background-image: url(/ui/images/geo/map_2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 10px;
    margin-top: 50px;
    height: 515px;
    display: flex;
}

@media (max-width: 620px) {
    .express-estimate {
        padding-top: 80px;
    }
    .express-estimate__wrap {
        flex-direction: column;
    }
    .estimate {
        width: 100%;
    }
    .estimate__advantage {
        width: 100%;
    }
    .select__fault__price-wrap {
        flex-direction: column;
    }
    .select__fault__price-wrap .btn {
        width: 100%;
    }
    .estimate__phone {
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 14px;
    }
    .estimate__phone a {
        font-size: 20px;
    }
    .estimate__advantage {
        margin-top: 30px;
    }
    .map__container {
        height: 450px;
    }
    .form__order-map {
        width: 100%;
    }
    .form__order-map.w-50 {
        width: 100%;
    }
}

/*
    ----------------------------------
    repair-slider
    ----------------------------------
*/

.repair-slider__swiper {
    margin-top: 50px;
}

.repair-slide {
    display: block;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    min-height: 455px;
}

.repair-slide img {
    border-radius: 5px;
    width: 100%;
}

.repair-slide__title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

.repair-slide__text {
    line-height: 120%;
    margin-top: 20px;
}

.repair-slider__more {
    display: none;
}

@media (max-width: 620px) {
    .repair-slider__wrap {
        display: flex;
        flex-direction: column;
    }
    .repair-slider__wrap .swiper-slide:nth-child(n+4) {
        display: none;
    }
    .repair-slider__wrap.is-open .swiper-slide {
        display: block;
    }
    .repair-slider .slider-btn-base, 
    .repair-slider .slider-pagination__base {
        display: none;
    }
    .repair-slider__swiper {
        margin-top: 40px;
    }
    .repair-slide {
        margin-bottom: 20px;
    }
    .repair-slider__more {
        display: block;
    }
}

/*  
    ----------------------------------
    section-reviews
    ----------------------------------
*/

.reviews__swiper {
    margin-top: 50px;
}

.review-slider__item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    min-height: 325px;
    display: flex;
    flex-direction: column;
}

.review__header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review__avatar {
    position: relative;
    display: flex;
    align-items: end;
}

.review__photo {
    max-width: 100px;
    height: auto;
}

.review__name {
    color: #4C4B7C;
    font-size: 24px;
    font-weight: 600;
}

.place-icon img {
    max-width: 32px;
    height: auto;
}

.review__text {
    margin-top: 30px;
}

.review__date {
    display: block;
    background-color: #F4F4F4;
    border-radius: 2px;
    color: #4C4B7C;
    padding: 12px 20px;
    margin-top: auto;
    width: max-content;
}


/*  
    ----------------------------------
    advantages
    ----------------------------------
*/

.advantages__wrap {
    display: flex;
    align-items: center;
    padding-top: 50px;
}

.advantages__col {
    width: calc(100% / 2 - 10px);
    margin: 0 10px;
}

@media (max-width: 620px) {
    .advantages__wrap {
        flex-direction: column;
    }
    .advantages__col {
        width: 100%;
        margin: 10px 0;
    }
    .advantages__col--img {
        background: rgba(76, 75, 124, 0.15);
        border-radius: 5px;
        padding: 10px;
        display: flex;
        justify-content: center;
    }
    .advantages__col--img img {
        max-width: 200px;
    }
}

/*  
    ----------------------------------
    masters
    ----------------------------------
*/

.masters__list {
    padding-top: 50px;
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
}

.masters__item {
    background-color: #fff;
    border-radius: 10px;
    width: calc(100% / 4 - 20px);
    padding: 20px;
    margin: 0 10px;
}

.master__info {
    margin-top: 20px;
}

.master__info .name {
    font-size: 24px;
    font-weight: 600;
}

.master__info .spec {
    margin-top: 10px;
}

.master__info .experience {
    font-size: 20px;
    margin-top: 25px;
}

.masters__item .btn {
    margin-top: 20px;
}

@media (max-width: 620px) {
    .masters__item {
        width: calc(100% / 2 - 20px);
        padding: 10px;
        margin: 10px;
    }
    .master__info .name {
        font-size: 18px;
    }
    .master__info .experience {
        margin-top: 10px;
        font-size: 16px;
    }
}

/*  
    ----------------------------------
    section-certificates
    ----------------------------------
*/

.certificates__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding-top: 50px;
}

.certificates__item {
    cursor: pointer;
    border-radius: 5px;
    width: calc(100% / 4 - 20px);
    margin: 0 10px;
}

.certificates__item img {
    border-radius: 5px;
    width: 100%;
    max-height: 472px;
}

@media (max-width: 620px) {
    .certificates__item {
        width: calc(100% / 2 - 20px);
        margin: 10px;
    }
}

/*  
    ----------------------------------
    form-order
    ----------------------------------
*/


.form__order {
    position: relative;
    background-color: #4C4B7C;
    border-radius: 10px;
    color: #fff;
    padding: 20px;
}

.form__order img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.form__order-col {
    width: 35%;
}

.form__order-text .title {
    font-size: 40px;
    font-weight: 500;
}

.form__order-text .text {
    font-size: 20px;
}

.form__order-text .text a {
    color: #fff;
    text-decoration: underline;
}

.form__order-form {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    margin-top: 24px;
}

.form__order-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 620px) {
    .form__order {
        min-height: 100%;
        overflow: hidden;
    }
    .form__order img {
        display: none;
        transform: scale(1.3);
        bottom: 10px;
    }
    .form__order-col {
        width: 100%;
    }
    .form__order-text .title {
        font-size: 24px;
    }
    .form__order-text .text {
        font-size: 16px;
    }
}

/*  
    ----------------------------------
    faq
    ----------------------------------
*/

.faq__one {
    margin-bottom: 10px;
}

.faq__title {
    position: relative;
    cursor: pointer;
    background-color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    padding: 35px 20px;
    width: 100%;
}

.faq__title:after {
    content: '';
    display: block;
    background-image: url(/assets/template/img/icons/arrow-black.svg);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    width: 27px;
    height: 27px;
    transition: all 0.3s;
}

.faq__title span {
    width: 94%;
}

.faq__answer {
    display: none;
    color: #fff;
    line-height: 120%;
    padding: 0 20px 20px 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.faq__one--active .faq__title {
    background-color: #4C4B7C;
    color: #fff;
    transition: all 0.3s;
}

.faq__one--active .faq__answer {
    background-color: #4C4B7C;
}

.is-open.faq__title:after {
    background-image: url(/assets/template/img/icons/arrow-white.svg);
}

@media (max-width: 620px) {
    .faq__title {
        padding: 10px;
        font-size: 18px;
    }
    .faq__title span {
        width: 90%;
    }
    .faq__title:after {
        width: 12px;
        height: 12px;
    }
    .faq__answer {
        padding: 0 10px 10px 10px;
    }
}

/*
    ----------------------------------
    footer
    ----------------------------------
*/

footer {
    background-color: #fff;
}

.container--footer {
    max-width: 1820px;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #F6F5F5;
}

.footer__top-nav ul {
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer__phone {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.footer__phone .phone {
    color: #4C4B7C;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 24px;
}

.is--phone:before {
    content: '';
    display: flex;
    align-items: center;
    width: 18px;
    height: 18px;
    background-image: url(/assets/template/img/icons/icon-phone.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.footer__bottom {
    padding-top: 30px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
}

.footer__left {
    width: 15%;
}

.footer__center {
    display: flex;
    flex-direction: column;
    width: 82%;
}

.footer__column--title {
    color: #1E1E1E;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 20px;
}

.footer__column-nav ul li {
    margin-bottom: 15px;
}

.footer__column-nav ul li:last-child {
    margin-bottom: 0;
}

.footer__center-wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer__center-wrap .footer__center--nav {
    width: 18%;
}

.footer__center--schedule {
    width: 40%;
}

.footer__center--info {
    width: 26%;
}

.footer__center--pay {
    width: 26%;
}

.footer__info {
    color: #4C4B7C;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer__info.is--address {
    align-items: flex-start;
}

.footer__info.is--address span {
    width: 95%;
}

.is--address:before {
    content: '';
    display: block;
    width: 18px;
    height: 20px;
    background-image: url(/assets/template/img/icons/icon-mark.svg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 8px;
}

.is--time:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(/assets/template/img/icons/icon-time.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.is--mail:before {
    content: '';
    display: block;
    width: 20px;
    height: 16px;
    background-image: url(/assets/template/img/icons/icon-mail.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.footer__center--pay .pay-logo {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__center--pay .pay-logo img {
    max-height: 40px;
    width: auto;
}

.footer__center--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.footer__center--row {
    font-size: 14px;
}

@media (max-width: 620px) {
    .footer__top {
        flex-direction: column;
    }
    .footer-logo__wrap {
        display: flex;
        justify-content: space-between;
    }
    .footer__top-nav {
        display: none;
    }
    .footer__top .footer__phone {
        display: none;
    }
    .footer__button {
        width: 100%;
        margin-top: 20px;
    }
    .footer__bottom {
        flex-direction: column;
    }
    .footer__center {
        width: 100%;
    }
    .footer__left {
        width: 100%;
        margin-bottom: 20px;
    }
    .footer__center-wrap {
        flex-direction: column;
        gap: 20px;
    }
    .footer__column--title {
        font-size: 18px;
        padding-bottom: 10px;
    }
    .footer__info {
        font-size: 18px;
    }
    .footer__center-wrap .footer__center--nav {
        width: 100%;
    }
    .footer__center--schedule {
        width: 100%;
    }
    .schedule__text {
        font-size: 14px;
    }
    .footer__center--info {
        width: 100%;
    }
    .footer__center--pay {
        width: 100%;
    }
    .footer__center--pay .pay-logo img {
        max-height: 37px;
    }
    .footer__center--row {
        flex-direction: column;
        align-items: start;
        gap: 10px;
        margin-top: 20px;
    }
    .footer__center--row {
        font-size: 12px;
    }
}


/*
    ----------------------------------
    modals
    ----------------------------------
*/

.wrapper__form_window {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    display: none
}

.b-close span {
    position: absolute;
    top: 4px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: url(/ui/images/close.svg) no-repeat;
    background-size: contain;
    cursor: pointer
}

.form__window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: calc(60vh - 313px) auto 0;
    padding: 50px;
    width: 95%;
    max-width: 600px;
    min-width: 280px;
    min-height: 300px;
    padding-top: 30px;
    max-height: max-content;
    border-radius: 4px;
    background: #4A4B7C
}

.form__window_label {
    position: absolute;
    top: 15px;
    left: -35px
}

.form__window_title {
    display: none;
    padding: 4% 0;
    border-bottom: 1px solid #fff;
    text-align: center;
    font-size: 35px;
    font-family: RobotoMedium,sans-serif
}

.form__window .request-form ul {
    overflow: hidden;
}

.form__window .request-form ul li {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 30px 0; 
}

.form__window .request-form label {
    color: #fff;
    float: left;
    font-size: 19px;
    margin-right: 20px;
}

.form__window .request-form input[type=text] {
    color: #fff;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    width: 75%;
    font-size: 16px;
    background: #4A4B7C;
}

.form__window .request-form input[type="text"]::placeholder {
    color: #fff;
}


.form__window .request-form input[type=submit] {
    width: 100%;
    margin: 3px 0 0 0
}

.form__window_text {
    float: left;
    max-width: 100%;
    margin: 15px 0 0 0;
    font-family: RobotoRegular,sans-serif;
    font-weight: 500;
    line-height: 15px;
    text-align: center;
    font-size: 13px;
    color: rgb(117, 119, 199);
    width: 100%
}

.request-form-hint {
    color: rgb(117, 119, 199);
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}

.request-form-hint a {
    color: rgb(117, 119, 199);
    text-decoration: underline;
}

@media (max-width: 620px) {
    .form__window_label {
        display: none;
    }
    .form__window {
        padding: 20px;
    }
    .form__window .request-form ul li {
        flex-direction: column;
        align-items: flex-start;
    }
    .form__window .request-form label {
        margin-bottom: 10px;
    }
    .form__window .request-form input[type=text] {
        width: 100%;
        padding: 17px;
    }
}

/* section-vacancies */

.accordion {
    border-radius: 5px;
    overflow: hidden;
}

.accordion-item {
    border-radius: 15px;
    margin-bottom: 20px;
}

.accordion-item:first-child {
    border-top: none;
}

.accordion-header {
    background: #fff;
    border-radius: 15px;
    color: #4C4B7C;
    cursor: pointer;
    padding: 30px;
    text-align: left;
    width: 100%;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.5s;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-header.active {
    background-color: rgba(76, 75, 124, 0.1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-header.active svg {
    transform: rotate(-90deg);
    transition: all 0.3s;
}

.accordion-header.active svg path {
    fill: #4C4B7C;
}

.accordion-content {
    display: none;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-header--vacancies {
    display: flex;
    align-items: center;
    gap: 30px;
}

.accordion-header--button {
    width: 500px;
    height: auto;
    padding: 8px;
    margin: 0;
    text-align: center;
    font-weight: 400;
    margin-left: auto;
}

.section-vacancies {
    padding-top: 100px;
}

.company-vacancies-item {
    background-color: rgba(76, 75, 124, 0.15);
    box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.07);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-bottom: 36px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 42px;
    padding-bottom: 42px;
}

.company-vacancies-item:last-child {
    margin-bottom: 0;
}

.company-vacancies-item-name {
    font-size: 24px;
    color: #2C2C2C;
    font-family: "PfBeauProBold", Arial, sans-serif;
    margin-bottom: 52px;
}

.company-vacancies-item__list {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}

.company-vacancies-item__box {
    color: #1E1E1E;
    width: calc(100% / 3 - 20px);
    padding: 0 15px;
    margin: 0 10px;
}

.company-vacancies-bottom {
    font-size: 22px;
    padding: 30px 40px;
    color: #333;
    background: #E9F0F7;
    border-radius: 5px;
    text-align: center;
    margin-top: 30px;
}

.company-vacancies-bottom a {
    color: #4a4b7c;
    text-decoration: underline;
}

.company-vacancies-item__name {
    color: #4C4B7C;
    font-size: 18px;
    font-weight: 600;
    font-family: inherit;
    margin-bottom: 16px;
}

.company-vacancies-item__text li {
    position: relative;
    font-size: 16px;
    padding-left: 20px;
}

.company-vacancies-item__text li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #4a4b7c;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

.company-vacancies-item .accordion-header--button {
    display: none;
    margin-top: 20px;
}

@media (max-width: 620px) {
    .section-vacancies {
        padding-top: 50px;
    }
    .accordion-header {
        position: relative;
        flex-direction: column;
        font-size: 18px;
        display: flex;
        align-items: start;
        
    }
    .accordion-header .accordion-header--button {
        display: none;
    }
    .accordion-header span {
        width: 92%;
    }
    .accordion-header svg {
        position: absolute;
        right: 30px;
        width: 15px;
        height: auto;
    }
    .company-vacancies-item {
        padding: 20px;
    }
    .company-vacancies-item .accordion-header--button {
        display: block;
    }
    .company-vacancies-item__box {
        flex-direction: column;
        width: 100%;
    }
    .accordion-header--button {
        width: 100%;
    }
    .accordion-header--button span {
        font-size: 14px;
    }
}

/*
    ----------------------------------
    Page "Prices", Template: "Prices"
    ----------------------------------
*/

.fault-content {
    color: #282B2E;
    padding-top: 100px;
}

.pricelist__categories {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 11px;
}

.pricelist__category {
    display: block;
    position: relative;
    padding: 15px 30px;
    background: rgba(76, 75, 124, 0.15);
    transition: all .3s ease;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    color: #4C4B7C;
    border-radius: 5px;
    cursor: pointer;
}

.pricelist__category:hover {
    color: #fff;
    background: #282B2E;
}

.pricelist__category.is-active {
    background: #4A4B7C;
    color: #fff;
}

.pricelist__tabs {
    font-family: 'RobotoLight', sans-serif;
    padding-top: 35px;
}

.pricelist__tab {
    display: none;
}

.pricelist__tab.is-active {
    display: block;
}

.pricelist__header {
    background: #4A4B7C;
    color: #fff;
    font-weight: 500;
    font-size: 20.374px;
    line-height: 1;
    padding: 15px 0;
    padding-left: 39px;
    padding-right: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricelist__header-price {
    width: 189px;
    min-width: 189px;
    text-align: right;
    padding: 0 20px 0 0;
}

@media (max-width: 766.98px) {
    .pricelist__header-price {
        width: 100px;
        min-width: 100px;
    }
}

.pricelist__table {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.pricelist__row {
    cursor: pointer;
    transition: all .3s ease;
    width: calc(100% / 4 - 20px);
    margin: 10px;
}

.pricelist__row:nth-child(n+9) {
    display: none;
}

.is-open .pricelist__row {
    display: flex;
}

.pricelist--item {
    background-color: rgba(76, 75, 124, 0.15);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.pricelist__row__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 999px) {
    .pricelist__row {
        padding-left: 15px;
    }
}

.pricelist__row:hover {
    opacity: 0.8;
}

.pricelist__row.pricetitle {
    background: #282B2E;
    color: #fff;
}

.pricelist__row-serv {
    font-weight: 600;
    font-size: 18px;
    width: 65%;
}

.pricelist__row-price {
    background-color: #4C4B7C;
    color: #fff;
    min-width: 100px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    padding: 5px 10px;
}

.pricelist__row__bottom {
    margin-top: auto;
}

.pricelist__row-btn {
    color: #4C4B7C;
    cursor: pointer;
    background-color: rgba(76, 75, 124, 0.15);
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 10px;
}

@media only screen and (max-width: 1200px) {
    .pricelist__row {
        width: calc(100% / 3 - 20px);
    }
}

@media only screen and (max-width: 968px) {
    .pricelist__row {
        width: calc(100% / 2 - 20px);
    }
}

@media only screen and (max-width: 630px) {
    .fault-content {
        padding-top: 60px;
    }
    .pricelist__table {
        margin: 0;
    }
    .pricelist__row {
        width: 100%;
        margin: 10px 0;
    }
}

/* price-list */

.price-nowrap {
    display: block;
}

.price-nowrap span {
    float: left;
    margin-right: 3px;
}

.price-equipments {
    background: #4C4B7C;
    padding: 100px 0;
}

.price-equipments__heading {
    font-family: RobotoMedium, sans-serif;
    font-weight: normal;
    font-size: 32px;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
}

.price-equipments__subheading {
    font-family: RobotoLight, sans-serif;
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 30px;
}

.price-equipments__content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.price-equipments__item {
    padding: 20px;
    width: calc(100% / 4 - 20px);
    height: 250px;
    margin: 10px;
    border-radius: 5px;
    background: #fff;
}

.price-equipments__item:nth-child(n+9) {
    display: none;
}

.price-equipments__item-wrap {
    height: 190px;
    padding-right: 15px;
    margin-right: -10px;
}

.price-equipments__item-wrap[data-simplebar] {
    overflow-x: hidden;
}

.price-equipments__item-wrap .simplebar-track.simplebar-vertical {
    background: #e6e6e6;
    width: 2px;
    overflow: unset;
    right: 1px;
}

.price-equipments__item-wrap .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    left: -1px;
    right: -1px;
    background: #4A4B7C;
    top: 0;
    bottom: 0;
    border-radius: 0;
    opacity: 1;
}

.price-equipments__item .appliances-img,
.climate-img {
    position: absolute;
}

.price-equipments__title {
    display: block;
    font-family: RobotoMedium, sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #4A4B7C !important;
    margin-bottom: 16px;
}

.price-equipments__price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: relative;
    margin-bottom: 14px;
}

.price-equipments__price:last-child {
    margin-bottom: 0;
}

.price-equipments__price-name {
    font-size: 14px;
    line-height: 1.1;
    color: #000;
    max-width: 195px
}

.price-equipments__price-cost {
    font-family: RobotoBold, sans-serif;
    font-size: 16px;
    line-height: 1.1;
    color: #000;
    white-space: nowrap;
    margin-left: 15px;
}

.price-equipments__price-cost span {
    float: none;
    margin-right: 0;
}

.price-equipments__price:after {
    content: 'или';
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #4A4B7C;
    pointer-events: none;
    position: absolute;
    left: 0;
    bottom: -12px;
}

.price-equipments__price:last-child:after {
    display: none;
}

.price-equipments__more-mob {
    display: none;
}

.price-equipments__toggle {
    display: none;
}

.price-equipments__min-price {
    display: none;
}

@media (max-width: 999px) {
    .price-equipments {
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .price-equipments__heading {
        font-size: 27px;
    }

    .price-equipments__item {
        width: 300px;
    }

    .price-equipments__name {
        width: 68%;
    }

    .price-equipments__title {
        position: relative;
        display: flex;
        justify-content: space-between;
        margin-bottom: 0;
    }

    .price-equipments__toggle {
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 6px;
        padding-top: 24px;
    }

    .price-equipments__toggle span::after {
        content: '';
        display: block;
        position: absolute;
        background-image: url(/ui/images/icon/price-arrow.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 18px;
        height: 12px;
        bottom: 0;
        z-index: 1;
        transform: rotate(0deg);
        transition: transform 0.3s ease-in-out;
    }

    .price-equipments__toggle.active span::after {
        transform: rotate(180deg);
    }

    .price-equipments__prices {
        display: none;
        height: 132px;
        overflow-y: scroll;
    }

    .price-equipments__price-name {
        font-size: 18px;
        color: #4A4B7C;
        max-width: 70%;
    }

    .price-equipments__price-cost {
        color: #4A4B7C;
        font-size: 18px;
    }

    .price-equipments__price:after {
        content: none;
    }

    .price-equipments__min-price {
        display: block;
    }
}

/* mistakes */

.wrapper__mistakes {
    padding: 50px 0
}

.mistakes__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap
}

.mistakes__el {
    cursor: pointer;
    box-sizing: border-box;
    width: 11.5%;
    margin-right: 1%;
    background: #F1F5F9;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: RobotoRegular;
    font-size: 18px;
    line-height: 1.1;
    color: #4A4B7C;
    min-height: 57px;
    margin-bottom: 11px
}

.mistakes__el.el-4 {
    width: 24%
}

.mistakes__el:hover {
    background: #4A4B7C;
    color: #fff
}

@media (max-width: 1000px) {
    .mistakes__el {
        width:15.5%
    }
}

@media (max-width: 768px) {
    .mistakes__el {
        width:24%;
        margin-bottom: 7px
    }
}

@media (max-width: 540px) {
    .mistakes__el {
        width:32%;
        margin-bottom: 5px
    }
}

.fancybox__slide {
    padding: 15px
}

.fancybox__content>.carousel__button.is-close {
}

.modal {
    display: none
}

.modal__caption {
    background: #4A4B7C;
    color: #fff;
    text-align: center;
    padding: 25px 10px;
    font-size: 35px;
    font-family: RobotoMedium;
    margin-left: -36px;
    margin-right: -36px;
    margin-top: -36px
}

@media (max-width: 480px) {
    .modal__caption {
        font-size:24px
    }
}

.modal__text {
    padding-top: 15px;
    font-size: 15px
}

.modal__text p {
    padding: 0;
    margin: 0;
    margin-top: 10px
}


.scheme-page__wrap {
    margin-top: 50px;
}

.scheme-page__img {
    position: relative;
    background-color: rgba(76, 75, 124, 0.15);
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.scheme-page__list .list-item {
    background-color: #4C4B7C;
    border-radius: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.scheme-page__list .list-item:last-child {
    margin-bottom: 0;
}

.scheme-page__list .list-item .circle {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-weight: 600;
    padding: 5px 15px;
    text-align: center;
}

.scheme-page__list .list-item .text {
    width: 90%;
}

@media (max-width: 620px) {
    .scheme-page__wrap {
        flex-direction: column;
    }
    .scheme-page__list {
        width: 100%;
    }
    .scheme-page__img {
        width: 100%;
        height: 180px;
        margin-bottom: 20px;
    }
}

/* advantages content */

.wrapper__advantages_block {
    background-color: #4C4B7C;
}

.advantage-block__wrap  {
    padding-top: 50px;
}

.advantages__block {
    padding: 8% 0
}

.advantages__title-list .title {
    display: none;
    color: #fff;
    font-weight: 600;
    font-size: 34px;
}

.advantages__title-list .title.active_title {
    display: block;
}

.advantages__list {
    display: flex;
    justify-content: space-between;
}

.advantages__list li {
    display: inline-block;
    margin-right: 11px
}

.advantages__list li:last-child {
    margin-right: 0
}

.advantages__list_item {
    display: block;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    border-radius: 4px;
    font-weight: 600;
    min-width: 130px;
    text-align: center;
}
.advantage__content.active_content {
    display: block
}

.active_tab {
    background-color: #FFFFFF;
    color: #4C4B7C;
    transition: all 0.2s linear
}

.advantage__content {
    display: none;
    overflow: hidden;
    transition: all 0.2s linear
}

.advantage-block__img .img {
    display: none;
    border-radius: 20px;
}

.advantage-block__img .img.active_tab {
    display: block;
}

.advantage-block__img img {
    border-radius: 20px;
}

.advantage__content__text {
    color: #fff;
    font-size: 20px;
}

.advantages__img {
    position: absolute;
    top: 18%;
    left: 45%
}

.advantage__text_title {
    margin-bottom: 50px;
    font-size: 50px;
    font-family: RobotoMedium,sans-serif;
    color: #4a4b7c
}

.advantage__text_description {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    font-size: 20px;
    font-family: RobotoLight,sans-serif;
    overflow: hidden
}

.times__description {
    color: #1E1E1E;
    background-color: #fff;
    border-radius: 15px;
    width: calc(100% / 2 - 10px);
    margin: 0 10px 10px 0;
    padding: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.times__description:after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.times__description:after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
}

.advantage__footer_description a {
    text-decoration: underline
}




























