/* Общие стили */
@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: auto;
    }
}
.hide {
    display: none !important;
}
.lh-25 {
    line-height: 25px;
}
img[data-src] {
    cursor: zoom-in;
}
a {
    color: #195c99;
}
a:hover {
    color: #1983cf;
}

/* Стили проекта */
@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Regular'), local('Montserrat-Regular'),
    url('/fonts/Montserrat-Regular.woff2') format('woff2'),
    url('/fonts/Montserrat-Regular.woff') format('woff'),
    url('/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Bold'), local('Montserrat-Bold'),
    url('/fonts/Montserrat-Bold.woff2') format('woff2'),
    url('/fonts/Montserrat-Bold.woff') format('woff'),
    url('/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #000;
}
.page-wrapper {
    position: relative;
}
/* Иконки */
.icon span {
    display: inline-block;
    vertical-align: middle;
}
.icon::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}
.icon.whatsapp::before {
    background-image: url("/images/svg/whatsapp.svg");
    width: 30px;
    height: 30px;
}
.icon.wechat::before {
    background-image: url("/images/svg/wechat.svg");
    width: 30px;
    height: 30px;
}
.icon.phone::before {
    background-image: url("/images/svg/phone.svg");
    width: 20px;
    height: 40px;
    background-position: center right;
    background-size: contain;
    margin-right: 8px;
}
.icon.mail::before {
    background-image: url("/images/svg/mail.svg");
    width: 30px;
    height: 30px;
    background-position: center center;
    background-size: contain;
    margin-right: 8px;
}
.icon.menu::before {
    background-image: url("/images/svg/menu.svg");
    width: 32px;
    height: 32px;
}
.icon.close::before {
    background-image: url("/images/svg/close.svg");
    background-position: 50% 50%;
    width: 32px;
    height: 32px;
    background-size: auto;
}
.icon.telephone::before {
    background-image: url("/images/svg/telephone.svg");
}
.icon.time::before {
    background-image: url("/images/svg/time.svg");
    width: 30px;
    height: 30px;
}

/* Шапка */
.header a {
    color: #000;
    text-decoration: none;
}
a.logo {
    width: 150px;
    height: 180px;
    display: block;
    background: url("/images/logo.svg") no-repeat;
    background-size: contain;
}
a.logo-mobile {
    width: 250px;
    height: 60px;
    display: block;
    background: url("/images/logo-mobile.svg") no-repeat;
    background-size: cover;
}
.logo-name {
    color: #195c99;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
}
@media (max-width: 934px) {
    .logo-name {
        font-size: 28px;
    }
}
.days {
    text-transform: uppercase;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding-right: 8px;
    border-right: 2px solid #1983cf;
}
.days.border-blue2 {
    border-color: #195c99;
    margin-top: 3px;
}
.days div {
    /*padding: 3px;*/
    width: 28px;
    text-align: center;
}
.bg-blue1 {
    background-color: #1983cf;
}
.bg-blue1 + .bg-blue1 {
    margin-top: 3px;
}
.bg-blue2 {
    background-color: #195c99;
}
/* Верхнее меню */
.navbar-nav li {
    position: relative;
    display: flex;
    align-items: center;
}
.navbar-nav li a {
    font-size: 14px;
    text-decoration: none;
    display: block;
    padding: 10px 12px;
}
.navbar-nav > li > a {
    text-transform: uppercase;
}
.navbar-nav a:hover {
    opacity: 1;
}
@media (min-width: 768px) {
    .navbar {
        padding: 0;
        background-color: #195c99;
    }
    .navbar-nav > li:hover {
        background-color: #1983cf;
    }
    .navbar-nav > li.active {
        background-color: #1983cf;
    }
    .navbar-nav a {
        color: #fff;
    }
    .navbar-nav li ul {
        list-style: none;
        min-width: 300px;
        position: absolute;
        padding: 20px 0 10px 0;
        margin: 0;
        background: #fff;
        border-radius: 2px;
        border: 1px solid rgba(255,255,255,.8);
        box-shadow: 0 0 4px rgba(0,0,0,.4);
        display: none;
        z-index: 2;
    }
    .navbar-nav li ul li ul {
        list-style: none;
        min-width: 300px;
        position: absolute;
        left: 100%;
        top: -10px;
        padding: 10px 0;
        margin: -2px 0 0 0;
        background: #fff;
        border-radius: 2px;
        border: 1px solid rgba(255,255,255,.8);
        box-shadow: 0 0 4px rgba(0,0,0,.4);
        display: none;
    }
    .navbar-nav li ul li {
        margin: 0 0 5px 0;
    }
    .navbar-nav li ul li a {
        padding: 5px 10px 5px 25px;
        color: #333;
        font-size: 13px;
        line-height: 20px;
    }
    .navbar-nav li ul li a:hover {
        background: rgba(0, 0, 0, 0.05);
        color: #1983cf
    }
    .navbar-nav > li > ul > li > a:hover::before {
        content: '';
        position: absolute;
        top: 50%;
        margin-top: -5px;
        right: 10px;
        width: 11px;
        height: 11px;
        display: block;
        background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23195c99' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
    }
    .navbar .menu_ {
        display: none;
    }
}
.navbar-nav li:hover > ul {
    display: block;
}
@media (min-width: 768px) and (max-width: 852px) {
    .navbar-nav li a {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .navbar {
        display: none;
    }
    .navbar.active {
        background-color: #fff;
        display: flex;
        align-items: flex-start;
        position: absolute;
        top: -.5rem;
        left: 0;
        width: 100%;
        z-index: 10000;
        min-height: calc(100vh + .5rem);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    }
    .navbar ul {
        list-style: none;
    }
    .navbar a {
        color: #333;
    }
    .navbar .menu_ {
        display: block;
        height: 32px;
        position: absolute;
        right: 0;
        top: 0;
        width: 32px;
        cursor: pointer;
    }
    .navbar .menu_::after {
        content: " ";
        display: inline-block;
        height: 32px;
        position: absolute;
        right: 8px;
        top: 0;
        width: 16px;
        background: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiDQoJIHZpZXdCb3g9IjAgMCA0NTEuODQ3IDQ1MS44NDciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1MS44NDcgNDUxLjg0NzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KCTxwYXRoIGZpbGw9IiMzMzMiIGQ9Ik0yMjUuOTIzLDM1NC43MDZjLTguMDk4LDAtMTYuMTk1LTMuMDkyLTIyLjM2OS05LjI2M0w5LjI3LDE1MS4xNTdjLTEyLjM1OS0xMi4zNTktMTIuMzU5LTMyLjM5NywwLTQ0Ljc1MQ0KCQljMTIuMzU0LTEyLjM1NCwzMi4zODgtMTIuMzU0LDQ0Ljc0OCwwbDE3MS45MDUsMTcxLjkxNWwxNzEuOTA2LTE3MS45MDljMTIuMzU5LTEyLjM1NCwzMi4zOTEtMTIuMzU0LDQ0Ljc0NCwwDQoJCWMxMi4zNjUsMTIuMzU0LDEyLjM2NSwzMi4zOTIsMCw0NC43NTFMMjQ4LjI5MiwzNDUuNDQ5QzI0Mi4xMTUsMzUxLjYyMSwyMzQuMDE4LDM1NC43MDYsMjI1LjkyMywzNTQuNzA2eiIvPg0KPC9zdmc+DQo=) no-repeat center center !important;
        transition: all 0.5s ease-in-out;
    }
    .navbar .menu_._up::after {
        -webkit-transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
        transform: rotateZ(180deg);
    }
    .navbar .menu_ + ul {
        padding-left: 16px;
    }
    .navbar .menu_ + ul > li {
        margin-left: -10px;
        padding-left: 10px;
        transition: all 0.5s ease-in-out;
    }
    .navbar .menu_:not(._up) + ul li {
        max-height: 0;
        overflow: hidden;
    }
    .navbar .menu_._up + ul > li {
        max-height: 1000px;
        overflow: hidden;
    }
}
@media (min-width: 768px) and (max-width: 852px) {
    .navbar-nav li ul li a {
        font-size: 12px;
    }
}
/* Подвал */
.footer {
    background-color: #1983cf;
    padding: 32px 0 0;
    color: #fff;
}
.footer a {
    color: #fff;
    text-decoration: none;
}
.footer h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.footer ul li {
    margin-bottom: 16px;
}
.copyright {
    background-color: #195c99;
    margin-top: 16px;
    padding: 16px 0;
    color: #fff;
    font-size: 12px;
}
/* Основой контент */
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-weight: 700;
}

h1, .h1 {
    font-size: 24px;
    color: #195c99;
    text-transform: uppercase;
    text-align: center;
    margin: 32px 0 48px;
}
h2, .h2 {
    font-size: 16px;
    margin: 24px 0 16px;
}
p {
    font-size: 14px;
    text-align: justify;
}
.columns2 {
    column-count: 2;
    column-gap: 24px;
    column-width: 350px;
}
ol li ul li::marker {
    content: '– ';
}
img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 767px) {
    #prod1 p, #prod2 p {
        font-size: 12px;
        font-weight: normal !important;
    }
}
/* Слайдер */
.slider {
    position: relative;
    overflow: hidden;
    max-width: 660px;
    margin: 24px auto;
}
.slider__wrapper {
    display: flex;
    transition: transform 0.6s ease;
}
.slider__item {
    flex: 0 0 100%;
    max-width: 100%;
}
.slider__control {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    height: 50px;
    transform: translateY(-50%);
}
.slider__control:hover,
.slider__control:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
}
.slider__control_left {
    left: 0;
}
.slider__control_right {
    right: 0;
}
.slider__control::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
}
.slider__control_left::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.slider__control_right::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
/* 404 */
.error-404 {
    margin-top: 48px;
}
.btn-1 {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 22px 40px;
    color: #fff !important;
    gap: 10px;
    border: none;
    font-weight: 700;
    font-size: 13px;
    line-height: 19px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-decoration: none;
    background-color: #195c99;
}
.btn-1:hover {
    background-color: #1983cf;;
}
/* Модальное окно */
.wait{
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 3000;
    cursor: wait;
}
.fb-win {}
.fb-win0 { /* тень */
    background-color:#000000;
    position:fixed;
    left:0;
    top:0;
    height:100%;
    width:100%;
    margin:0;
    padding:0;
    z-index:2000;
    opacity: 0.4;
}
.fb-win1 {
    margin: 3px 0 3px;
    background: #f3f3f3;
    padding: 11px;
    position: absolute;
    top: 30%;
    z-index: 3000;
    width: 00px;
    box-shadow: 0 0 21px 0 #333;
    overflow: visible;
}
.fb-fix{ /* для фиксации основы под окном */
    overflow:hidden;
    position:fixed;
    top:0;
}
div.fb-win1 img {
    cursor: pointer;
}
/* ----- Стрелки на модальном окне картинки ----- */
div.fb-win1 img + i,
div.fb-win1 img + i + i {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    height:9px;
    width:49px;
    display:block;
    background-repeat:no-repeat;
    background-position:center 15px;
    background-color:#404040;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 21px 0 28px 0;
    opacity: 0;
    z-index:9999;
}
div.fb-win1 img + i {
    left: 3px
}
div.fb-win1 img + i + i {
    right: 3px;
}
div.fb-win1 img + i:before {
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")
}
div.fb-win1 img + i + i:before {
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")
}
div.fb-win1 img + i:before,
div.fb-win1 img + i + i:before {
    content:"";
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 50%;
    margin-left: -6px;
    display: inline-block;
    width: 12px;
    height: 12px;
}
div.fb-win1 img + i:hover,
div.fb-win1 img + i + i:hover,
div.fb-win1 img:hover + i,
div.fb-win1 img:hover + i + i {
    cursor: pointer;
    opacity: 0.75;
}
@media only screen and (max-width : 680px) {
    div.fb-win1 img + i,
    div.fb-win1 img + i + i {
        opacity: 0.75;
    }
}

/* Закрывалка модального окна */
a.modal_close,
.fb-win1 > a:first-child {
    background: url("/images/modal_close.png");
    width: 23px;
    height: 23px;
    position:absolute;
    right: 11px;
    top: 11px;
    z-index: 100;
}
a.modal_close:hover,
.fb-win1 > a:first-child:hover {
    background-position: -23px 0;
}

/* Переключение между двумя блоками */
.select {
    position: relative;
    margin-top: 20px;
    padding-top: 10px;
}
.select::before {
    background-image: linear-gradient(260deg, rgba(201,201,201,0) 0%, #ccc 30%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    top: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 25%;
}
.select #select-prod1,
.select #select-prod2 {
    cursor: pointer;
    display: inline-block;
}
.select #select-prod2 {
    margin-left: 10px;
}
.select #select-prod1::before,
.select #select-prod2::before {
    display: inline-block;
    width: 16px;
    height: 16px;
}
.select #select-prod1::before {
    content: '';
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23969696' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")
}
.select #select-prod2::before {
    content: '';
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23969696' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")
}
.select #select-prod1.this::before {
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23C8C8C8' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")
}
.select #select-prod2.this::before {
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23C8C8C8' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")
}
 /* Видео */
video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
/* Цветовая гамма */
.table-colors td {
    background-clip: padding-box;
}
.table-colors td:first-child,
.table-colors td:last-child {
    text-align: center;
}
/* Карусель */
.scroller_container {
    width: calc(100% + 2px);
    padding: 0 1px;
    overflow: hidden;
    line-height:0;
    position: relative;
}
.scroller_container.img1 {
    max-width: 400px;
    margin: 0 auto;
}
@media (min-width: 810px) {
    .scroller_container.img1 {
        position: relative;
        top: calc(50% - 51px);
        transform: translateY(-50%);
    }
}
.scroller_container > div {
    position: relative;
    width: 100%;
    white-space: nowrap;
    word-spacing: 10px;
    font-size: 0;
}
.scroller_container.img1 > div {
    word-spacing: 0;
}
.scroller_container > div img {
    cursor: pointer;
    width: calc((100% - 50px) / 6);
    max-width: none;
    height: auto;
    margin: 10px 0;
}
.scroller_container.clients > div img {
    border-radius: 8px;
    box-shadow: 0 0 20px 0 rgba(232,234,246,0.5),0 2px 4px 0 rgba(92,107,192,0.18), 0 0 0 1px rgba(0,0,0,0.125);
}
@media only screen and (min-width: 980px) {
    .scroller_container > div.ImgListing  img {
        width: calc((100% - 40px) / 5);
    }
}
.scroller_container > div img:not([data-src]) {
    cursor: default;
}
.scroller_container.img1 > div img {
    width: 100%;
    box-shadow: none;
}
.b-wr .scroller_container > div {
    word-spacing: 5px;
}
.b-wr .scroller_container > div img {
    width: calc((100% - 25px) / 6);
}
@media only screen and (max-width: 979px) {
    .scroller_container > div img {
        width: calc((100% - 30px) /4);
    }
    .scroller_container.img1 > div img {
        width: 100%;
    }
    .b-wr .scroller_container > div img {
        width: calc((100% - 15px) / 4);
    }
}
@media only screen and (max-width : 680px) {
    .scroller_container > div img {
        width: calc((100% - 20px) / 3);
    }
    .scroller_container.img1 > div img {
        width: 100%;
    }
    .b-wr .scroller_container > div img {
        width: calc((100% - 10px) / 3);
    }
}
@media only screen and (max-width : 450px) {
    .scroller_container > div img {
        width: calc((100% - 10px) / 2);
    }
    .scroller_container.img1 > div img {
        width: 100%;
    }
    .b-wr .scroller_container > div img {
        width: calc((100% - 5px) / 2);
    }
}
.scroller_container.img3 > div img {
    width: calc((100% - 20px) / 3);
}
.scroller_container a.prev,
.scroller_container a.next {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    height:9px;
    width:49px;
    display:block;
    background-repeat:no-repeat;
    background-position:center 15px;
    background-color:#404040;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 21px 0 28px 0;
    opacity: 0;
    z-index:9999;
}
.scroller_container.img1 a.prev,
.scroller_container.img1 a.next {
    opacity: 0.75;
}
.scroller_container a.prev {
    left: 3px
}
.scroller_container a.next {
    right: 3px;
}
.scroller_container a.prev,
.scroller_container a.next {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    height:9px;
    width:49px;
    display:block;
    background-repeat:no-repeat;
    background-position:center 15px;
    background-color:#404040;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 21px 0 28px 0;
    opacity: 0;
    z-index:9999;
}
.scroller_container a.prev:before,
.scroller_container a.next:before {
    content:"";
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 50%;
    margin-left: -6px;
    display: inline-block;
    width: 12px;
    height: 12px;
}
.scroller_container a.prev:before {
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")
}
.scroller_container a.next:before {
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")
}
.scroller_container:hover a.prev,
.scroller_container:hover a.next {
    opacity: 0.75;
}
@media only screen and (max-width : 680px) {
    .scroller_container a.prev,
    .scroller_container a.next {
        opacity: 0.75;
    }
}
/* Карточки работ */
.accordion .accordion__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: 4px;
    box-shadow:0 0 20px 0 rgba(232,234,246,0.5),0 2px 4px 0 rgba(92,107,192,0.18);
    margin-bottom: 16px;
}
.accordion .accordion__card-header {
    background-color:#fff;
    border-bottom:0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size:1rem;
    font-weight:700;
    padding: 16px;
    position: relative;
    width: 100%;
}
.accordion .accordion__card-header:after {
    background-color: #ccc;
    bottom:0;
    content:"";
    height: 1px;
    left: 16px;
    position: absolute;
    width: calc(100% - 32px);
}
.accordion__card-body {
    padding: 16px;
}
/* Контакты рядом с картой */
.kontakti * {
    /*font-weight: 700;*/
    font-size: 17px;
}
.kontakti a {
    text-decoration: none;
    color: #000;
}
.kontakti a:hover {
    color: #195c99;
}
/* Перезвоните мне */
.callme label {
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    position: relative;
    margin-bottom: 12px;
}
input:focus {
    outline: none;
}
.callme input[type="text"],
.callme input[type="tel"] {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.25);
}
.callme input[type="text"]:focus,
.callme input[type="tel"]:focus {
    border: 1px solid #1983cf;
}
.callme input[type="submit"] {
    margin-bottom: 0;
}
.callme .agree {
    margin-top: 12px;
    font-size: 13px;
    line-height: 19px;
}
@media (max-width: 767px) {
    .callme {
        padding: 0 12px;
    }
    .callme input[type="text"], .callme input[type="tel"] {
        font-size: 14px;
        line-height: 20px;
        padding: 14px 20px;
    }
    .callme label[for="phone"] {
        margin-top: 21px;
    }
    .callme label[for="phone"]::before {
        top: 50px;
    }
    .callme input[name="phone"] {
        margin-bottom: 11px;
    }
    .callme .agree {
        margin-top: 0;
        margin-bottom: 26px;
    }
    .callme input[type="submit"] {
        margin-bottom: 0;
    }
}
/* Оборудование */
.equipment {
    margin-top: 3rem;
}
.equipment h6 {
    margin: 0 0 1rem;
    color: #195c99;;
}
.equipment p {
    text-align: left;
}
.equipment img {
    max-width: 100%;
}
/* Оплата */
ul.steps {
    list-style: none;
    padding-left: 0;
    text-align: center;
    min-height: 266px;
}
ul.steps li {
    display: inline-block;
    vertical-align: bottom;
    margin: 20px 0;
    line-height: 1;
    font-size: 13px;
}
ul.steps li.arrow-step {
    vertical-align: top;
}
ul.steps li.doc-step {
    vertical-align: top;
    position: relative;
    margin-left: 15px;
    width: 340px;
    max-width: calc(100% - 20px);
}
ul.steps li.doc-step img {
    width: 100%;
}
@media (min-width: 1160px) {
    ul.steps li.doc-step img {
        position: absolute;
        left: 0;
        top: 0;
    }
}
/* Для заглушки новостей */
.central-content {
    height: 300px;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Заявка черех мессенджеры на главной */
.bigsocialblock {
    display: flex;
    width: 100%;
}
.bigsocialblock__item {
    position: relative;
    overflow: hidden;
    height: 150px;
    padding: 25px;
    text-align: right;
    transition: all .2s ease;
    flex: 1;
    -webkit-backface-visibility: hidden;
}
.bigsocialblock.type-chover .bigsocialblock__bg {
    opacity: 0;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
}
.bigsocialblock__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.bigsocialblock__item {
    text-align: right;
}
.bigsocialblock__bg a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}
.bigsocialblock__title {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    transition: all .2s ease;
    margin: 0;
    position: absolute;
    z-index: 1;
    right: 25px;
    bottom: 20px;
}
.bigsocialblock__social-icon {
    position: absolute;
    color: #fff;
    z-index: 1;
    font-size: 80px;
    border: solid 5px #fff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    line-height: 140px;
    left: -21px;
    bottom: -30px;
    text-align: center;
    opacity: 0.5;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
}
.bigsocialblock.type-chover .bigsocialblock__item:hover .bigsocialblock__bg {
    opacity: 1;
}
.bigsocialblock__count, .bigsocialblock__follow {
    display: block;
    opacity: 0;
    line-height: 1.7;
    visibility: hidden;
    transition: opacity .2s ease-out, visibility .2s ease-out, transform .2s ease-out;
    -webkit-backface-visibility: hidden;
}
.bigsocialblock__count {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 25px;
    bottom: 40px;
}
.bigsocialblock__follow {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    right: 25px;
    bottom: 20px;
}
@media (max-width: 767px) {
    .bigsocialblock {
        flex-direction: column;
    }
    .bigsocialblock__item {
        width: 100%;
        display: block;
        height: 100px;
        padding: 15px;
    }
    .bigsocialblock__title {
        position: relative;
        right: 0;
        top: auto;
        bottom: auto;
        text-align: right;
        opacity: 1;
        visibility: visible;
    }
    .bigsocialblock__count, .bigsocialblock__follow {
        opacity: 1;
        visibility: visible;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        position: relative;
        right: 0;
        top: auto;
        bottom: auto;
        text-align: right;
    }
}
.icon-whatsapp::before,
.icon-wechat::before,
.icon-mail::before {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    transform: translate(30px, 20px);
}
.icon-whatsapp::before {
    background-image: url(/images/svg/whatsapp.svg);
}
.icon-wechat::before {
    background-image: url(/images/svg/wechat.svg);
}
.icon-mail::before {
    background-image: url(/images/svg/mail.svg);
}
