/*
Theme Name: My Theme
Theme URI: 
Author: My Theme
Author URI: 
Description: 

Version: 1.7
License: GNU General Public License
License URI: license.txt
Text Domain: My Theme

*/
html {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  position: relative;
  color: #292B39;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none;
}

ol {
  padding-left: 40px;
}

h1 {
  position: relative;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 25px;
  margin: 40px 0 55px;
}

h2 {
  position: relative;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 25px;
  margin: 80px 0 55px;
}

h1 em, h2 em {
  font-size: 24px;
  font-style: normal;
}

h1 strong, h2 strong {
  color: #008EE2;
  font-weight: 400;
}

h1.orange strong, h2.orange strong {
  color: #FFBB00;
}

h1.red strong, h2.red strong {
  color: #FF3D00;
}

h1:before, h2:before {
  content: '';
  position: absolute;
  background: linear-gradient(to right, #008EE2, #008EE2 100px, #DFF0FB 100px, #DFF0FB 100%);
  width: 300px;
  height: 1px;
  bottom: 0;
  left: 0;
}

h1.orange:before, h2.orange:before {
  background: linear-gradient(to right, #FFBB00, #FFBB00 100px, #faebc4 100px, #faebc4 100%);
}

h1.red:before, h2.red:before {
  background: linear-gradient(to right, #FF3D00, #FF3D00 100px, #faddd3 100px, #faddd3 100%);
}

h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin: 30px 0 20px;
}

h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin: 20px 0 15px;
}

h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin: 20px 0 10px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input::-moz-focus-inner {
  border: 0px !important;
}

input:hover,
input:active,
input:focus {
  outline: none !important;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]:hover,
input[type="number"]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

label {
  cursor: pointer;
}

.wp-block-image, .wp-block-columns {
  margin-bottom: 0;
}

.main {
  width: 1170px;
  margin: 0 auto;
  padding-top: 142px;
}

.home .main {
  padding-top: 0;
}

.on-left {
  margin-left: calc((-100vw + 1170px) / 2);
  padding-left: calc((100vw - 1170px) / 2);
  margin-right: -100px;
  padding-right: 100px;
}

.on-right {
  margin-right: calc((-100vw + 1170px) / 2);
  padding-right: calc((100vw - 1170px) / 2);
  margin-left: -100px;
  padding-left: 100px;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 15px 28px;
  padding-right: 74px;
  border: 0;
  outline: none;
  font-size: 12px;
  text-align: center;
  background: linear-gradient(to left, #10a0fa 0%, #10a0fa 46px, #008EE2 46px, #008EE2 100%);
  color: #fff;
  overflow: hidden;
  cursor: pointer;
}

.btn.orange {
  color: #000;
  background: linear-gradient(to left, #FFCC40 0%, #FFCC40 46px, #FFBB00 46px, #FFBB00 100%);
}

.btn.red {
  background: linear-gradient(to left, #FF6E40 0%, #FF6E40 46px, #FF3D00 46px, #FF3D00 100%);
}

.btn.back {
  background: linear-gradient(to right, #10a0fa 0%, #10a0fa 46px, #008EE2 46px, #008EE2 100%);
  padding-right: 28px;
  padding-left: 74px;
}

.btn:after {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: url(images/arrows-w.svg) no-repeat center;
  height: 100%;
  width: 46px;
  right: 0;
  top: 0;
  transition: .3s;
}

.btn.orange:after {
  filter: brightness(0);
}

.btn:hover:after {
  transform: translateX(5px);
}

.btn.back:after {
  right: auto;
  left: 0;
  transform: rotate(180deg);
}

.btn.back:hover:after {
  transform: rotate(180deg) translateX(5px);
}

.border-btn {
  display: inline-block;
  padding: 15px 38px;
  border: 1px solid #008EE2;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}

.center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.police-block {
  padding-bottom: 80px;
}

.police-block p,
.police-block li {
  margin-bottom: 10px;
}

/* Формы
--------------------*/
.input_your {
  width: 100%;
  max-width: 400px;
  height: 45px;
  padding: 0 28px;
  font-size: 12px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  margin-bottom: 20px;
}
.captcha-image {
  max-width: 400px;
  width: 100%;
}

.form-block .btn {
  max-width: 400px!important;
  width: 100%!important;
  margin-top: 10px;
}

textarea.input_your {
  font-size: 13.5px;
  height: 60px;
  padding: 15px 28px;
}

.input_your::-webkit-input-placeholder {
  color: #292B39;
}

.input_your::-moz-placeholder {
  color: #292B39;
}

.input_your:-moz-placeholder {
  color: #292B39;
}

.input_your:-ms-input-placeholder {
  color: #292B39;
}

.form_police {
  color: rgba(160, 195, 225, 0.5);
  font-size: 10px;
  margin-top: 30px;
  padding-left: 44px;
  cursor: pointer;
}

.form_police a {
  text-decoration: underline;
}

.form_police a:hover {
  text-decoration: none;
}

.form_police .label {
  position: relative;
  user-select: none;
}

.form_police .label:before {
  content: '';
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #008EE2;
  width: 24px;
  height: 24px;
  top: 50%;
  left: -44px;
  transform: translateY(-50%);
}

.form_police .label.check:before {
  content: url(images/checked.svg);
}

.btn.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.wpcf7-response-output {
  position: fixed;
  width: 300px;
  text-align: center;
  padding: 10px 25px !important;
  background: #008EE2;
  color: #fff;
  border: 0 !important;
  top: 50px;
  right: 50px;
  z-index: 9999;
  margin: 0 !important;
}

.win_modal .wpcf7-response-output {
  position: absolute;
  width: calc(100% - 80px);
  top: 40px;
  right: 40px;
}

.wpcf7 .ajax-loader,
.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-not-valid {
  border: 1px solid red !important;
}

.radio-block {
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.fiz-label {
  position: relative;
  padding-right: 40px;
  margin-right: -40px;
  z-index: 2;
}

.radio-label {
  position: relative;
  display: block;
  padding-left: 80px;
}

.radio-label:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 17px;
  width: 46px;
  height: 23px;
  border-radius: 12px;
  background: #008EE2;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, .2);
  transform: translateY(-50%);
}

.radio-label:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 19px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
  transform: translateY(-50%);
  transition: 0.2s;
}

.radio-block input:checked+.radio-label:after {
  left: 41px;
}

/* Модальные окна
--------------------*/
.close,
.menu-close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 25px;
  opacity: 0.3;
  cursor: pointer;
}

.close:before,
.close:after,
.menu-close:before,
.menu-close:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #292B39;
  position: absolute;
  top: 49%;
  left: 25%;
  transform: rotate(45deg);
  transition: all 0.3s;
}

.close:after,
.menu-close:after {
  transform: rotate(-45deg);
  transition: all 0.3s;
}

.close:hover:before,
.close:hover:after,
.menu-close:hover:before,
.menu-close:hover:after {
  transform: rotate(180deg);
}

.popup_modal {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  -webkit-overflow-scrolling: touch;
  z-index: 888;
  overflow-y: auto;
  overflow-x: hidden;
}

.win_modal {
  position: absolute;
  background: #fff;
  width: 400px;
  overflow: hidden;
  margin-top: -200px;
  display: none;
  opacity: 0;
  top: 50%;
  left: 50%;
  padding: 40px;
  transform: translate(-50%, -50%);
}

.win_modal.video {
  background: transparent;
  width: 1000px;
  padding: 0;
}

.win_modal.video video {
  width: 1000px;
}

.win_modal.video .close {
  opacity: 1;
  z-index: 222;
}

.win_modal h3 {
  margin-top: 0;
}

.win_modal .input_your {
  width: 100%;
  background: #F6F6F6;
  border: 1px solid #F6F6F6;
}

.win_modal .radio-block {
  width: auto;
  font-size: 13px;
}

.win_modal .btn {
  width: 100%;
  margin-top: 10px;
}

.win_modal .form_police {
  color: rgb(160, 195, 225);
}

.win_modal .form_police br {
  display: none;
}

/* Хлебные крошки
--------------------*/
.breadcrumbs {
  position: relative;
  font-size: 12px;
  color: rgba(41, 43, 57, 0.5);
  padding-left: 15px;
  margin-top: 25px;
  z-index: 5;
}

.breadcrumbs:before {
  content: '';
  position: absolute;
  background: url(images/home.svg) no-repeat center;
  height: 15px;
  width: 14px;
  left: 0;
  top: 1px;
}

.breadcrumbs a {
  color: rgba(41, 43, 57, 1);
  padding: 0 15px;
}

.breadcrumbs .breadcrumb_last {
  padding-left: 15px;
}

/* Блоки Kadence
--------------------*/
.category-links {
  margin-bottom: 100px;
}

.category-links figure {
  background: #008EE2;
}

.category-links figure img {
  transition: .3s;
}

.category-links figure:hover img {
  opacity: 0.3;
}

.category-links .kadence-blocks-gallery-item__caption {
  text-align: left !important;
  font-size: 22px !important;
  padding: 60px 30px !important;
  background: linear-gradient(180deg, rgba(41, 43, 57, 0) 0%, #292B39 100%) !important;
  overflow: hidden;
  transition: .3s;
}

.category-links .kadence-blocks-gallery-item__caption:before {
  content: '';
  position: absolute;
  background: #FFFFFF;
  opacity: 0.2;
  width: 80px;
  height: 1px;
  bottom: 40px;
  left: 30px;
  transition: .3s;
}

.category-links .kadence-blocks-gallery-item__caption:after {
  content: 'Подробнее';
  position: absolute;
  font-size: 12px;
  background: url(images/arrows-w.svg) no-repeat center right;
  width: 80px;
  height: 18px;
  bottom: 40px;
  left: -80px;
  transition: .3s;
}

.category-links figure:hover .kadence-blocks-gallery-item__caption {
  background: linear-gradient(180deg, rgba(0, 142, 226, 0) 0%, #008EE2 100%) !important;
  padding-bottom: 98px !important;
}

.category-links figure:hover .kadence-blocks-gallery-item__caption:before {
  opacity: 1;
  width: calc(100% - 80px);
  bottom: 80px;
}

.category-links figure:hover .kadence-blocks-gallery-item__caption:after {
  left: 30px;
}

.wp-block-kadence-accordion {
  border-top: 1px solid rgba(160, 195, 225, 0.4);
  margin-bottom: 100px;
}

.kt-accordion-header-wrap {
  position: relative;
}

.kt-blocks-accordion-header {
  cursor: pointer;
}

.kt-accordion-header-wrap:before {
  content: '';
  position: absolute;
  background: url(images/notifications.svg) no-repeat center;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Шапка
--------------------*/
.header {
  position: fixed;
  width: 100%;
  background: radial-gradient(79.29% 88.04% at 68.7% 22.68%, rgba(2, 124, 197, 0.5) 0%, rgba(2, 124, 197, 0) 100%), linear-gradient(180deg, #292B39 11.95%, rgba(41, 43, 57, 0) 187.34%), #292B39;
  color: #fff;
  z-index: 50;
}

.home .header {
  background: rgba(41, 43, 57, 0.7);
  transition: .3s all;
}


.home .header.fixed-top {
  background: radial-gradient(79.29% 88.04% at 68.7% 22.68%, rgba(2, 124, 197, 0.5) 0%, rgba(2, 124, 197, 0) 100%), linear-gradient(180deg, #292B39 11.95%, rgba(41, 43, 57, 0) 187.34%), #292B39;
}

.head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1170px;
  margin: 0 auto;
  padding: 20px 0;
  transition: .3s all;
}

.head-col {
  display: flex;
  align-items: flex-start;
}

.head-col:first-child {
  align-items: center;
}

.custom-logo {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.custom-logo p {
  width: 195px;
  font-size: 14px;
  letter-spacing: 1.2px;
  margin-left: 10px;
}

.custom-logo p span {
  display: block;
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 24px;
  color: #008EE2;
  text-transform: uppercase;
}

.head-col .menu {
  display: flex;
}

.head-col .menu li {
  font-size: 13px;
  padding: 0 10px;
  cursor: pointer;
}

.head-messenger {
  display: flex;
}

.head-messenger a {
  width: 26px;
  height: 26px;
  margin-right: 7px;
  opacity: .7;
}

.head-messenger a:hover {
  opacity: 1;
}

.head-phone .phone {
  display: block;
  font-size: 20px;
  color: #008EE2;
}

.mail {
  position: relative;
  font-size: 13px;
  display: block;
  margin-left: 25px;
}

.mail:before {
  content: '';
  position: absolute;
  background: url(images/mail.svg) no-repeat center;
  width: 15px;
  height: 12px;
  top: 4px;
  left: -25px;
}

.head-col .js-call {
  font-size: 12px;
  border: 1px solid #008EE2;
  padding: 13px 28px;
  margin-left: 40px;
  cursor: pointer;
}

.sitenav {
  width: 1170px;
  display: flex;
  border-top: 1px solid #008fe235;
  margin: auto;
}

.sitenav .menu-menyu-osnovnyh-uslug-container {
  flex-grow: 1;
  margin-left: 20px;
}

.sitenav .menu-menyu-osnovnyh-uslug-container ul {
  display: flex;
  justify-content: space-between;
}

.sitenav .menu-menyu-osnovnyh-uslug-container ul li a {
  display: inline-block;
  font-size: 14px;
  padding: 15px 0;
  cursor: pointer;
  transition: .3s;
}

.head-col .menu li.current_page_item>a,
.head-col .menu li:hover>a,
.sitenav ul li.current_page_item>a,
.sitenav ul li.current_page_parent>a,
.sitenav ul li:hover>a {
  color: #008EE2;
}

.mega-menu-list {
  position: relative;
}

.mega-menu-list .js-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 51px;
  height: 51px;
  background: #008EE2;
}

.mega-menu-list .js-menu span {
  display: none;
}

.mega-menu-list .menu-menyu-uslug-container {
  z-index: 99;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  width: 260px;
  height: auto;
  top: 51px;
  left: 0;
  background: #fff;
  border-top: 2px solid #008EE2;
  padding: 17px 0;
  box-shadow: 0px 10px 52px -10px rgb(0 0 0 / 12%);
  transition: .3s all;
}

.mega-menu-list:hover .menu-menyu-uslug-container {
  visibility: visible;
  opacity: 1;
}

.mega-menu-list .menu-menyu-uslug-container li {
  padding: 0 20px;
}

.mega-menu-list .menu-menyu-uslug-container li a {
  position: relative;
  display: block;
  color: #292B39;
  padding: 3px 0;
}

.mega-menu-list .menu-menyu-uslug-container li.menu-item-has-children>a:before {
  content: '';
  position: absolute;
  background: url(images/arrows-menu.svg) no-repeat center;
  width: 14px;
  height: 13px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.mega-menu-list .menu-menyu-uslug-container li ul {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  width: auto;
  min-width: 260px;
  min-height: 100%;
  height: calc(100vh - 172px);
  background: #F6F6F6;
  white-space: nowrap;
  top: 0;
  left: 260px;
  padding: 17px 0;
  box-shadow: 20px 10px 52px -20px rgb(0 0 0 / 12%);
  overflow-y: auto;
  transition: .3s all;
}

.mega-menu-list .menu-menyu-uslug-container li ul {
  scrollbar-width: thin;
  scrollbar-color: #ddd #aaa;
}

.mega-menu-list .menu-menyu-uslug-container li ul::-webkit-scrollbar {
  width: 4px;
}

.mega-menu-list .menu-menyu-uslug-container li ul::-webkit-scrollbar-track {
  background: #ddd;
}

.mega-menu-list .menu-menyu-uslug-container li ul::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 2px;
}

.mega-menu-list .menu-menyu-uslug-container li ul li a {
  font-size: 14px;
  padding: 2px 0;
}

.mega-menu-list .menu-menyu-uslug-container li.menu-item-has-children:hover>ul {
  visibility: visible;
  opacity: 1;
}

.mega-menu-list .menu-glavnoe-menyu-container,
.toggle,
.menu-close,
.worker-menu {
  display: none;
}

.sitenav .menu-menyu-osnovnyh-uslug-container ul li.worker a {
  background: #FFBB00;
  padding: 15px 30px;
  color: #292B39;
  font-weight: 500;
}

/* Главная
--------------------*/
.home-block-1 {
  background: url(/wp-content/uploads/home-fon-1550.jpg) no-repeat bottom center;
  background-size: 1550px auto;
  color: #fff;
  margin: 0 calc((-100vw + 1170px) / 2);
  padding: 160px calc((100vw - 1170px) / 2) 150px;
}

.home-block-1 .wp-block-column {
  position: relative;
}

.home-block-1 h1 {
  padding-bottom: 0;
  margin: 40px 0 30px;
}

.home-block-1 h1:before {
  content: '';
  position: absolute;
  background: linear-gradient(to top, #008EE2, #008EE2 90px, #008fe235 90px, #008fe235 100%);
  width: 1px;
  height: 300px;
  bottom: 0;
  left: -50px;
}

.home-block-1 h3 {
  color: #FFBB00;
  margin-bottom: 40px;
}

.home-block-1 ul {
  margin-bottom: 30px;
}

.home-block-1 li {
  position: relative;
  font-size: 20px;
  padding-left: 65px;
  margin-bottom: 35px;
}

.home-block-1 li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.home-block-1 p {
  text-decoration: underline;
  margin: 20px 0 0;
}

.btn-arrow {
  position: relative;
  display: inline-block;
  height: 45.8px;
  width: 46px;
  border: 0;
  outline: none;
  background: #10a0fa;
  top: 18.7px;
  cursor: pointer;
}

.btn-arrow:after {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: url(images/arrows-w.svg) no-repeat center;
  height: 45.8px;
  width: 46px;
  right: 0;
  top: 0;
}

.home .home-block-2 h2 {
  margin-top: 0;
}

.home-block-3 {
  padding-top: 1px;
  padding-bottom: 100px;
}

.home-block-3 .wp-block-column {
  background: #FFFFFF;
  padding: 30px;
}

.home-block-3 .wp-block-column .wp-block-image {
  margin-bottom: 20px;
}

.control {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border: 1px solid #FF3D00;
  margin-top: 50px;
}

.control img {
  margin-right: 20px;
}

.home-block-4 {
  margin-bottom: 80px;
}

.home-block-4 .owl-stage {
  display: flex;
}

.home-block-4 .master-cart {
  position: relative;
  height: 100%;
  background: #f6f6f6;
  padding: 40px 40px 90px;
}

.home-block-4 .title {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #008EE2;
  margin-bottom: 20px;
  padding-bottom: 30px;
}

.home-block-4 .avatar {
  flex-basis: 180px;
  flex-shrink: 0;
}

.home-block-4 .text {
  position: relative;
}

.home-block-4 .phone {
  position: relative;
  padding-left: 20px;
}

.home-block-4 .phone:before {
  content: '';
  position: absolute;
  background: url(images/call.svg) no-repeat center;
  width: 14px;
  height: 14px;
  top: 5px;
  left: 0;
}

.home-block-4 h3 {
  color: #008EE2;
  margin-top: 0;
}

.home-block-4 .uslugi {
  font-size: 14px;
  color: #999;
  margin-top: 10px;
}

.home-block-4 .summ {
  margin-top: 15px;
}

.home-block-4 .summ span {
  font-weight: 600;
}

.home-block-4 .garant {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #008EE2;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.home-block-4 .garant ul {
  flex-basis: 50%;
}

.home-block-4 .garant li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.home-block-4 .garant li:after {
  content: '';
  position: absolute;
  background: #008EE2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 2px;
  left: 0;
}

.home-block-4 .garant li:before {
  content: '';
  position: absolute;
  background: url(images/checked.svg) no-repeat center;
  width: 12px;
  height: 9px;
  top: 8px;
  left: 4px;
  z-index: 2;
}

.home-block-4 .zacaz {
  margin-bottom: 10px;
}

.home-block-4 .hide {
  display: none;
}

.home-block-4 .btn {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.reviews-slider {
  margin: 50px 0 100px;
}

.reviews-slider .owl-stage {
  display: flex;
}

.reviews-slider .owl-item {
  background: #F6F6F6;
  padding: 20px;
}

.reviews-slider .slide {
  background: #fff;
  height: 100%;
  padding: 20px;
}

.reviews-slider h3 {
  color: #008EE2;
  margin: 0 0 10px;
}

.reviews-slider .city {
  color: #999;
  margin: 0 0 10px;
}

.owl-nav {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 7px;
  left: 0;
  z-index: 20;
}

.owl-nav button.owl-next span,
.owl-nav button.owl-prev span {
  display: none;
}

.owl-nav button {
  position: absolute;
  background: transparent;
  width: 33px;
  height: 12px;
  cursor: pointer;
}

.owl-nav button.owl-prev {
  left: 0;
}

.owl-nav button.owl-next {
  right: 0;
}

.owl-nav button:before {
  content: '';
  position: absolute;
  background: url(images/arrows-slider.svg) no-repeat center;
  width: 33px;
  height: 12px;
  top: 0;
  left: 0;
}

.owl-nav button.owl-prev:before {
  transform: rotate(180deg);
}

.owl-nav button:hover:before {
  opacity: 1;
  transition: 0.3s;
}

.owl-dots {
  margin: 50px 66px 0;
  display: flex;
  border-radius: 2px;
  width: calc(100% - 132px);
  height: 2px;
  background: rgba(0, 143, 226, 0.2);
  position: relative;
  overflow: hidden;
}

.owl-dot {
  display: block;
  border-radius: 2px;
  height: 100%;
}

.owl-dot.active {
  background: #008EE2 !important;
}

.form-block {
  position: relative;
  background: url(/wp-content/uploads/form-fon.jpg) no-repeat top right;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
  z-index: 5;
}

.form-block h2 {
  margin-top: 0;
}

.form-block .btn {
  width: 336px;
  margin-top: 10px;
}

.home-block-5 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}

.home-block-5 h2 {
  margin-top: 0;
}

.home-block-5 p {
  display: none;
  margin-bottom: 10px;
}

.home-block-5 p.more {
  display: inline-block;
  color: #008EE2;
  cursor: pointer;
}

.home-block-5 .wp-block-image {
  position: absolute;
  top: -10px;
  z-index: 5;
}

.home-block-8 {
  padding-top: 1px;
  padding-bottom: 1px;
}

/* Цены
--------------------*/
.price-block-1 {
  position: relative;
  background: url(/wp-content/uploads/price-form-fon.jpg) no-repeat center;
  padding: 40px 50px 30px;
  margin-bottom: -96px;
  z-index: 5;
}

.price-block-1 h3 {
  position: relative;
  color: #fff;
  font-weight: 400;
  padding-left: 80px;
  margin: 0 0 30px;
}

.price-block-1 h3 em {
  font-style: normal;
  font-size: 16px;
}

.price-block-1 h3 img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.price-block-1 .input_your {
  width: calc(33.33% - 20px);
  margin-right: 30px;
}

.price-block-1 .btn {
  width: calc(33.33% - 20px);
}

.price-block-2 {
  padding-top: 150px;
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.kt-prices .kt-title-item .kt-tab-title,
.kt-prices .kt-tabs-accordion-title .kt-tab-title {
  position: relative;
}

.kt-prices .kt-title-item .kt-tab-title:before,
.kt-prices .kt-tabs-accordion-title .kt-tab-title:before {
  content: '';
  position: absolute;
  background: url(images/arrows-menu.svg) no-repeat center;
  background-size: auto 100%;
  width: 12px;
  height: 18px;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.kt-prices .kt-title-item.kt-tab-title-active .kt-tab-title:before,
.kt-prices .kt-title-item:hover .kt-tab-title:before,
.kt-prices .kt-tabs-accordion-title.kt-tab-title-active .kt-tab-title:before {
  background: url(images/arrows-menu-w.svg) no-repeat center;
  background-size: auto 100%;
}

.kt-prices .wp-block-kadence-tab {
  margin-top: -6px;
}

.kt-prices th {
  padding: 16px 0;
}

.kt-prices td {
  padding: 16px 0;
  border-top: 1px solid rgba(160, 195, 225, 0.4);
}

.kt-prices table tr:first-child td {
  border-top: 1px solid rgba(160, 195, 225, 1);
}

.kt-prices tr td:first-child {
  color: #008EE2;
  font-weight: 700;
}

.price-block-2 .btn {
  width: 30%;
}

/* Контакты
--------------------*/
.contact-block {
  background: url(/wp-content/uploads/contact-fon.jpg) no-repeat center right;
  align-items: center !important;
  margin-bottom: 100px;
}

.contact-block .wp-block-column:first-child h3 {
  font-size: 30px;
  color: #008EE2;
  margin: 0 0 10px;
}

.contact-block .wp-block-column:first-child h4 {
  font-size: 22px;
  margin: 0 0 30px;
}

.contact-block .head-phone a {
  font-size: 24px;
}

.contact-block .mail {
  font-size: 16px;
  margin-left: 0;
  margin-top: 20px;
  padding-left: 25px;
}

.contact-block .mail:before {
  top: 7px;
  left: 0;
}

.contact-block .adress {
  position: relative;
  margin-top: 20px;
  padding-left: 25px;
  width: 80%;
}

.contact-block .adress:before {
  content: '';
  position: absolute;
  background: url(images/map.svg) no-repeat center;
  width: 12px;
  height: 16px;
  top: 4px;
  left: 1px;
}

.contact-block .wp-block-column:last-child {
  padding-right: 50px;
  padding-bottom: 50px;
}

.contact-block .wp-block-column:last-child h3 {
  color: #fff;
  margin: 40px 0 5px;
}

.contact-block .wp-block-column:last-child h3+p {
  color: #fff;
  margin-bottom: 30px;
}

.contact-block .wp-block-column:last-child .input_your {
  width: 100%;
}

.contact-block .wp-block-column:last-child .btn {
  width: 100%;
  margin-top: 10px;
}

#map {
  width: 100%;
  height: 400px;
}

/* Услуги
--------------------*/
.first-block {
  position: relative;
  background: #f6f6f6;
  margin: -45px calc((-100vw + 1170px) / 2) 0;
  padding: 1px calc((100vw - 1170px) / 2);
  z-index: 2;
}

.first-block .wp-block-column:first-child {
  position: relative;
  margin: 80px 0;
  padding-right: 50px;
}

.first-block .wp-block-column:first-child:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  border-left: 2px solid #008EE2;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.pulse-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  padding: 10px;
  border: none;
  background: #008EE2;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  right: -37px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.home-block-1 .wp-block-column .pulse-button {
  right: auto;
  left: 550px;
}

.pulse-button__icon {
  display: block;
  width: 28px;
  height: 28px;
  background: url("images/play.svg") center center/cover no-repeat;
  margin-left: 6px;
  transition: .3s;
}

.pulse-button__text {
  display: block;
  width: 100%;
  height: 30px;
  font: 12px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: .3s;
  margin-top: 1px;
}

.pulse-button:hover .pulse-button__icon {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: .3s;
}
 
.pulse-button:hover .pulse-button__text {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  position: relative;
}

.pulse-button__rings {
  border: 1px solid #008EE2;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
  width: auto;
  border-radius: 50%;
  animation-duration: 2.0s;
  animation-name: pulse_1;
  animation-iteration-count: infinite;
  z-index: -1;
}
 
.pulse-button__rings:nth-child(2) {
  animation-name: pulse_2;
}
 
.pulse-button__rings:nth-child(3) {
  animation-name: pulse_3;
}

@keyframes pulse_1 {
  from {
    opacity: 1;
    transform: scale(0.9, 0.9);
  }
 
  to {
    opacity: 0;
    transform: scale(1.3, 1.3);
  }
}
 
@keyframes pulse_2 {
  from {
    opacity: 1;
    transform: scale(0.8, 0.8);
  }
 
  to {
    opacity: 0;
    transform: scale(1.5, 1.5);
  }
}
 
@keyframes pulse_3 {
  from {
    opacity: 1;
    transform: scale(0.8, 0.8);
  }
 
  to {
    opacity: 0;
    transform: scale(1.7, 1.7);
  }
}

.first-block h1 {
  margin-top: 0;
}

.first-block ul {
  margin-bottom: 50px;
}

.first-block li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 20px;
}

.first-block li:before {
  content: '';
  position: absolute;
  background: url(images/checked-blue.svg) no-repeat center;
  width: 46px;
  height: 46px;
  border: 1px solid #008EE2;
  opacity: 0.9;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.first-block .wp-block-image {
  position: absolute;
  width: calc(50% + 80px);
  height: 100%;
  top: 0;
  left: calc(50% - 80px);
  z-index: -1;
}

.first-block .wp-block-image:before {
  content: '';
  position: absolute;
  width: 300px;
  height: 100%;
  background: linear-gradient(to left, transparent 0%, #f6f6f6 90%, #f6f6f6 100%);
  top: 0;
  left: 0;
}

.first-block .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trigger-block-1 {
  background: url(/wp-content/uploads/trigger-fon.jpg) no-repeat center;
  background-size: cover;
  margin-top: 80px;
}

.trigger-block-1+.uslugi-price {
  margin-top: 80px;
}

.trigger-block-1 .wp-block-column {
  position: relative;
  padding: 40px;
}

.trigger-block-1 img {
  height: 70px;
  margin-bottom: 30px;
}

.trigger-block-2 {
  gap: 0 !important;
  padding-bottom: 50px;
  margin-bottom: -50px;
}

.trigger-block-2 .wp-block-column {
  position: relative;
}

.trigger-block-2 .wp-block-column:not(:first-child) {
  padding: 40px;
}

.trigger-block-2 h3 {
  margin: 0;
}

.trigger-block-2 .wp-block-column:first-child .wp-block-image {
  position: absolute;
  top: 0;
  right: 0;
  margin-left: -100px;
  z-index: 5;
}

.trigger-block-2 .wp-block-column:nth-child(2) img {
  position: absolute;
  width: 80px;
  bottom: 30px;
  right: 40px;
}

.portfolio-block {
  margin-bottom: 100px;
}

.portfolio-block .portfolio-slider .owl-stage {
  display: flex;
}

.portfolio-block .slide {
  background: #f6f6f6;
  height: 100%;
  width: 100%;
  padding-bottom: 25px;
}

.portfolio-block .slide h3 {
  font-size: 20px;
  color: #FF3D00;
  min-height: 52px;
  padding: 0 25px;
  margin: 20px 0 10px;
}

.portfolio-block .slide p {
  font-size: 14px;
  padding: 0 25px;
}

.portfolio-block .slide .city {
  position: relative;
  font-size: 16px;
  color: #999;
  padding-left: 45px;
  margin-bottom: 10px;
}

.portfolio-block .slide .city:before {
  content: '';
  position: absolute;
  background: url(images/map.svg) no-repeat center;
  width: 12px;
  height: 16px;
  top: 4px;
  left: 25px;
}

.portfolio-block .slide .wp-block-image img {
  height: 220px;
  object-fit: cover;
}

.portfolio-block .btn {
  margin-top: 50px;
  width: 300px;
}

.zakaz-block {
  position: relative;
  background: url(/wp-content/uploads/zamer-fon.jpg) no-repeat top right;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

.zakaz-block h2 {
  margin-top: 0;
}

.zakaz-block .wp-block-column:last-child {
  margin-left: 60px !important;
}

.zakaz-block h4 a {
  font-size: 24px;
}

.zakaz-block .input_your {
  width: 400px;
}

.zakaz-block .btn {
  width: 400px;
  margin-top: 10px;
}

.zakaz-block .form_police {
  color: rgb(160, 195, 225);
}

.uslugi-price {
  padding-top: 1px;
  padding-bottom: 70px;
}

.uslugi-price th {
  padding: 16px 0;
}

.uslugi-price td {
  padding: 16px 0;
  border-top: 1px solid rgba(160, 195, 225, 0.4);
}

.uslugi-price table tr:first-child td {
  border-top: 1px solid rgba(160, 195, 225, 1);
}

.uslugi-price tr td:first-child {
  color: #008EE2;
  font-weight: 700;
}

.uslugi-price tr td:first-child a {
  text-decoration: underline;
}

.uslugi-price tr td:first-child a:hover {
  text-decoration: none;
}

.text-block {
  position: relative;
  padding: 40px 40px 30px;
  margin: 80px 0;
  border: 1px solid #008EE2;
  z-index: 2;
}

.text-block:before {
  content: '';
  position: absolute;
  border-style: solid;
  border-color: #FF3D00;
  border-width: 1px 1px 0 0;
  width: 300px;
  height: 60%;
  top: -15px;
  right: -15px;
  z-index: -1;
}

.text-block:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-color: #FF3D00;
  border-width: 0 0 1px 1px;
  width: 300px;
  height: 60%;
  bottom: -15px;
  left: -15px;
  z-index: -1;
}

.text-block.w-1:before,
.text-block.w-1:after {
  border-color: #FFBB00;
}

.text-block+h2 {
  margin-top: 0;
}

.text-block p {
  margin-bottom: 10px;
}

.text-block ul {
  padding-left: 25px;
}

.text-block li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.text-block li:before {
  content: '';
  position: absolute;
  background: #008EE2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  outline: 4px solid #008fe235;
  top: 9px;
  left: 0;
}

.shema-block {
  padding-top: 1px;
  padding-bottom: 100px;
}

.shema-block .wp-block-column {
  position: relative;
  background: #fff;
  padding: 20px 20px 30px;
}

.shema-block p {
  margin-top: 10px;
}

.shema-block .wp-block-column:before {
  content: '';
  position: absolute;
  background: url(images/arrows-slider.svg) no-repeat center;
  width: 33px;
  height: 12px;
  top: 35px;
  right: -20px;
}

.shema-block .wp-block-column:last-child::before {
  display: none;
}

/* footer
--------------------*/
.footer {
  position: relative;
  width: 100%;
  background: #292B39;
  color: #fff;
  overflow: hidden;
  z-index: 5;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  width: 1170px;
  padding: 80px 0;
  margin: 0 auto;
}

.footer-col {
  position: relative;
  flex-basis: 350px;
}

.footer-col:before {
  content: '';
  position: absolute;
  background: linear-gradient(to top, #008EE2, #008EE2 120px, #008fe235 120px, #008fe235 100%);
  width: 1px;
  height: 305px;
  top: 0;
  left: -100px;
}

.footer-col .head-phone {
  margin: 20px 0;
}

.footer-col .head-phone a {
  font-size: 24px;
  color: #008EE2;
}

.footer-col .head-phone .js-call {
  font-size: 12px;
  cursor: pointer;
}

.footer-col .mail {
  font-size: 16px;
  margin-left: 0;
  padding-left: 25px;
}

.footer-col .mail:before {
  top: 6px;
  left: 0;
}

.footer-col .head-messenger {
  margin: 30px 0;
}

.footer-col .head-messenger a {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  opacity: 1;
}

.footer-col .head-messenger a img {
  width: 30px;
  height: 30px;
}

.footer-col .btn {
  padding-left: 40px;
  padding-right: 86px;
}

.footer-col .lk {
  margin-top: 20px;
}

.footer-col .lk:hover {
  color: #008EE2;
}

.footer-menu {
  flex-basis: calc((100% - 350px) / 3);
  padding-left: 60px;
}

.footer-menu a {
  display: block;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-menu a:hover {
  color: #008EE2;
}

.footer-menu .title a {
  color: #008EE2;
  border-bottom: 1px solid #008fe235;
  padding-bottom: 20px;
}

.footer-copy {
  width: 1170px;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #008fe235;
  margin: auto;
}

.footer-copy p,
.footer-copy a {
  display: block;
  font-size: 14px;
  color: #A0C3E1;
  opacity: 0.5;
}

.footer-copy a:hover {
  opacity: 1;
}

/* личный кабинет
--------------------*/

.form-block-rcl .rcli,
.rcl-bttn .rcli {
  display: none;
}

.rcl-bttn {
  position: relative !important;
  display: inline-block !important;
  padding: 15px 28px !important;
  padding-right: 74px !important;
  border: 0 !important;
  outline: none !important;
  font-size: 12px !important;
  text-align: center !important;
  background: linear-gradient(to left, #10a0fa 0%, #10a0fa 46px, #008EE2 46px, #008EE2 100%) !important;
  color: #fff !important;
  overflow: hidden !important;
  cursor: pointer !important;
}

.rcl-bttn:after {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: url(images/arrows-w.svg) no-repeat center;
  height: 100%;
  width: 46px;
  right: 0;
  top: 0;
  transition: .3s;
}

.rcl-bttn:hover {
  opacity: 1 !important;
}

.rcl-bttn:hover:after {
  transform: translateX(5px);
}

h4.rcl_cab_guest_message {
  display: none;
}

.panel_lk_recall {
  color: inherit;
  line-height: 1.3;
  max-width: 1750px;
}

.authorize-form-rcl {
  width: 400px;
  border: 1px solid #008EE2;
  padding: 50px 50px 40px;
  margin: 0 auto 100px;
}

.authorize-form-rcl .rcl-widget-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.authorize-form-rcl .js-city,
.authorize-form-rcl .rcl-widget-buttons .rcl-widget-button {
  width: 100%;
}

.authorize-form-rcl .rcl-widget-buttons .rcl-bttn {
  width: 100%;
  margin: 5px 0 !important;
}

.panel_lk_recall .rcl-widget-buttons .rcl-widget-button {
  margin: 0;
  overflow: visible;
}

body .rcl-bttn:not(.rcl-bttn__type-clear):not(.rcl-bttn__fullwidth) {
  margin: 0;
}

.panel_lk_recall.floatform {
  width: 350px;
  margin-left: 0;
  transform: translateX(-50%);
}

.panel_lk_recall .form-tab-rcl .form_head a {
  border-bottom: 0;
  color: #292B39;
}

.panel_lk_recall .form_reg, .panel_lk_recall .form_auth {
  color: #292B39;
}

.panel_lk_recall .default-field input {
  background-color: #fafafa;
  border: 0;
  padding: 6px 12px 6px 32px;
  text-transform: none;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.panel_lk_recall .default-field input {
  background: #F6F6F6;
  border: 1px solid #F6F6F6;
  height: 45px;
  padding: 0 28px;
}

.panel_lk_recall .required {
  display: none;
}

#register-form-rcl .form-block-rcl.form_extend {
  display: flex;
  flex-direction: column;
}

#register-form-rcl .form-block-rcl.form_extend .form-block-rcl.default-field {
  order: 1;
}

#register-form-rcl .form-block-rcl label,
#register-form-rcl #login-user {
  display: none !important;
}

.panel_lk_recall .rcl-field-input select, .panel_lk_recall .rcl-field-input textarea, .panel_lk_recall .rcl-field-input input:not([type="file"]):not([type="checkbox"]):not([type="radio"]) {
  background: #F6F6F6;
  border: 1px solid #F6F6F6;
  height: 45px;
  padding: 0 28px;
  margin: 0;
}

.rcl-field-input input:invalid {
  border-color: #F6F6F6 !important;
}

#register-form-rcl .rcl-bttn,
#remember-form-rcl .rcl-bttn {
  width: 100%;
}

.rcl-bttn:not(.rcl-bttn__type-clear):not(.rcl-bttn__ico-mask) .rcl-bttn__text+.rcl-bttn__ico,
.rcl-bttn:not(.rcl-bttn__type-clear):not(.rcl-bttn__ico-mask) .rcl-bttn__ico+.rcl-bttn__text,
.rcl-bttn:not(.rcl-bttn__type-clear):not(.rcl-bttn__ico-mask) .rcl-bttn__ico+.rcl-bttn__count {
  padding: 0;
}

.wprecallblock #lk-conteyner,
#subtab-profile h3,
#subtab-profile .rcl-table #profile-field-in_block {
  display: none !important;
}

#subtab-profile .rcl-table {
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
}

#subtab-profile .rcl-table #profile-field-primary_pass,
#subtab-profile .rcl-table #profile-field-repeat_pass {
  order: 1;
}

#subtab-profile .rcl-table {
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
}

#rcl-office {
  background: transparent;
  margin-bottom: 100px;
}

#rcl-avatar .icon-user-info,
#lk-menu {
  display: none;
}

#rcl-avatar .icon-avatar-delete {
  display: block;
  top: auto;
  bottom: 0;
}

#rcl-avatar .avatar-icons .rcl-avatar-icon a {
  width: 30px;
  height: 31px;
  text-align: center;
  color: #008EE2;
}

.cab_lt_sidebar {
  width: 230px;
}

.lk-sidebar .lk-avatar {
  box-shadow: 0 5px 30px rgb(3 3 3 / 20%);
}

#lk-content {
  border: 1px solid #008EE2;
  margin: 0;
  padding: 40px;
}

.rcl-table__zebra .rcl-table__row:nth-child(2n+1):not(.rcl-table__row-header) {
  background-color: transparent;
}

.rcl-table__zebra .rcl-table__row {
  border-top: 1px solid rgba(160, 195, 225, 0.4);
}

.rcl-table__zebra .rcl-table__row:first-child {
  border-top: 0;
}

.rcl-table__not-header .rcl-table__row {
  padding: 16px 0;
}

.rcl-table__cell {
  padding: 0;
}

.rcl-field-input input:not([type="file"]):not([type="checkbox"]):not([type="radio"]):not([type="button"]),
.rcl-field-input textarea {
  height: 45px;
  padding: 0 28px;
  background: #F6F6F6;
  border: 1px solid #F6F6F6;
}

.rcl-field-input textarea {
  padding: 10px 28px;
  height: 70px;
}

.rcl-field-input .block-label {
  background-color: #F6F6F6;
  border: 1px solid #F6F6F6;
}

.attachment-manager .rcl-bttn {
  padding: 0 2px !important;
  padding-right: 2px !important;
  font-size: 14px !important;
  background: #F6F6F6 !important;
  color: #008EE2 !important;
}

.attachment-manager .rcl-bttn:after {
  display: none;
}

.attachment-manager .rcl-bttn .rcli {
  display: block;
}

.dynamic-value textarea {
  width: calc(100% - 51px) !important;
}

.type-dynamic-input .dynamic-value a {
  background-color: #F6F6F6;
  align-items: center;
  height: 43px;
  width: 43px;
}

.type-dynamicTextarea-input .dynamic-value {
  display: flex;
}

.type-dynamicTextarea-input .dynamic-value a {
  background-color: #F6F6F6;
  border: 1px solid #ddd !important;
  box-shadow: none;
  color: #797979;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 43px;
  width: 43px;
  line-height: 1;
  margin: 0 0 0 8px;
  min-width: initial;
  padding: 6px;
  text-decoration: none;
  vertical-align: middle;
}

.type-dynamicTextarea-input .dynamic-value a:hover {
  background-color: #fff;
}

.type-dynamicTextarea-input a .fa-plus {
  color: #008000;
}

.type-dynamicTextarea-input a .fa-minus {
  color: rgb(229, 57, 53);
}

.type-dynamicTextarea-input .dynamic-value:not(:last-child) {
  margin: 0px 0px 5px;
}

.rcl-field-notice .rcli {
  position: relative;
  color: #008EE2;
  margin-right: 7px;
  top: 1px;
}

.rcl-notice > .rcli {
  font-size: 42px;
  left: 20px;
}
.head-col.city_switch {
	font-size: 13px;
	padding-right: 10px;
}
.city_switch span {
	display: inline-block;
	margin-left: 5px;
	border-bottom: 1px dashed #fff;
	cursor: pointer;
	position: relative;
}
.city_switch span:before {
	position: absolute;
	content: "";
	width: 10px;
	height: 10px;
	transform: rotate(90deg);
	background: url(images/arrows-city.svg) 50% no-repeat;
	right: -16px;
	top: 6px;
	display: block;
	background-size: 6px;
}
.city_switch span:hover {
	border-bottom: 1px solid transparent;
}

.town_list {
	height: 345px;
	width: 100%;
	overflow: auto;
	padding: 10px;
	border: 1px solid #ccc;
}
.towns-search {
	position: relative;
	margin-bottom: 15px;
}
.towns-search-right {
	width: 100%;
	padding-left: 46px;
}
.towns-search-right input {
	width: 100%;
	height: 40px;
	border-top: 2px solid #008EE2;
	border-right: 2px solid #008EE2;
	border-bottom: 2px solid #008EE2;
	padding: 0 15px;
	border-left: none;
}
.towns-search-left {
	position: absolute;
	display: inline-block;
	height: 40px;
	width: 46px;
	border: 0;
	outline: none;
	background: #10a0fa;
	top: 0;
}
.towns-search-left:before {
	content: '';
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	background: url(images/arrows-w.svg) no-repeat center;
	height: 100%;
	width: 100%;
	right: 0;
	top: 0;
}
.town a {
	color: #10a0fa;
	text-decoration: underline;
}
.town a:hover {
	color: #10a0fa;
	text-decoration: none;
}
.head-phone .head-col.city_switch {
	display: none;
} 

/* архив категорий
--------------------*/
.category-search-row {
  display: flex;
  margin: 50px;
}

.search-block {
  position: relative;
  z-index: 10;
}

.input-search {
  height: 50px;
  border: 1px solid #008EE2;
  border-right: 0;
}

.input-search input {
  width: 100%;
  height: 100%;
  font-size: 16px;
  border: 0;
  padding: 0 30px;
}

.search-block.state {
  width: 400px;
}

.search-block.category {
  width: calc(100% - 450px);
}

.link-search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #008EE2;
  border: 1px solid #008EE2;
}

.search-list {
  display: none;
  width: 100%;
  position: absolute;
  background: #f6f6f6;
  top: 50px;
  padding: 15px 30px;
  box-shadow: 0px 10px 52px -10px rgb(0 0 0 / 24%);
}

.search-list li {
  padding: 3px 0;
  cursor: pointer;
}

.search-list li:hover {
  color: #008EE2;
}

.search-list.active {
  display: block;
}

.link-search img {
  width: 25px;
  transition: .3s;
}

.link-search:hover img {
  transform: scale(1.2);
}

.wp-list-categories>ul {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(160, 195, 225, 0.4);
  margin-bottom: 80px;
}

.wp-list-categories>ul>li {
  flex-basis: 50%;
  border-top: 1px solid rgba(160, 195, 225, 0.4);
  padding: 20px 0;
}

.wp-list-categories>ul>li:nth-child(odd) {
  padding-right: 25px;
}

.wp-list-categories>ul>li:nth-child(even) {
  padding-left: 25px;
}

.wp-list-categories>ul>li>a {
  font-size: 24px;
  color: #008EE2;
  transition: .3s;
}

.wp-list-categories>ul>li>a:hover {
  text-decoration: underline;
}

.wp-list-categories ul li ul {
  margin-top: 20px;
}

.wp-list-categories ul li ul li {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-right: 15px;
}

.wp-list-categories ul li ul li:before {
  content: '';
  position: absolute;
  background: #008EE2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  outline: 4px solid #008fe235;
  top: 9px;
  left: 0;
  transition: .3s;
}

.wp-list-categories ul li ul li:hover:before {
  transform: scale(1.2);
  outline: 4px solid #008fe255;
}

/* страница категорий
--------------------*/
.master-columns {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.master-loop {
  flex-basis: calc(100% - 340px);
}

.master-block {
  display: flex;
  gap: 30px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 40px rgb(3 3 3 / 8%);
}

.master-avatar {
  flex-shrink: 0;
  margin-top: 5px;
}

.master-list h2 {
  font-size: 26px;
  color: #008EE2;
  padding-bottom: 0;
  margin: 0;
}

.master-list h2:before {
  display: none;
}

.master-list .master-city {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.master-info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.master-info p {
  position: relative;
  flex-basis: 50%;
  padding-left: 30px;
  margin-bottom: 10px;
}

.master-info p:before {
  content: '';
  position: absolute;
  background: url(images/checked.svg) no-repeat center;
  width: 12px;
  height: 9px;
  top: 8px;
  left: 4px;
  z-index: 2;
}

.master-info p:after {
  content: '';
  position: absolute;
  background: #008EE2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 2px;
  left: 0;
}

.master-uslugi {
  margin-bottom: 20px;
}

.master-uslugi h3 {
  font-size: 20px;
  margin: 20px 0 10px;
}

.master-columns .error {
  font-size: 36px;
  flex-grow: 1;
  margin-bottom: 40px;
}

.master-sidebar {
  background: #f6f6f6;
  flex-basis: 300px;
  padding: 20px 30px;
}

.master-sidebar li a {
  display: inline-block;
  color: #008EE2;
  padding: 3px 0;
  transition: .3s;
}

.master-sidebar li a:hover {
  transform: translateX(10px);
}

/* пагинация
--------------------*/
.pagination {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.pagination .nav-links {
  display: flex;
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid #008EE2;
  margin: 0 3px;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  position: relative;
  width: 34px;
  border: 0;
}

.pagination .page-numbers.prev {
  margin-right: 30px;
}

.pagination .page-numbers.next {
  margin-left: 30px;
}

.pagination .page-numbers.prev:before,
.pagination .page-numbers.next:before {
  content: '';
  position: absolute;
  background: url(images/arrows-slider.svg) no-repeat center;
  width: 33px;
  height: 25px;
  top: 0;
  left: 0;
}

.pagination .page-numbers.prev:before {
  transform: rotate(180deg);
}

.pagination .page-numbers.dots {
  border: 0;
}

.pagination .page-numbers.current {
  background: #008EE2;
  color: #fff;
}

/* личный кабинет
--------------------*/
#rcl-field-my_category .rcl-field-core {
  height: 150px;
  overflow: hidden;
  transition: .3s;
}

#rcl-field-my_category .border-btn {
  padding: 15px 30px;
  margin-top: 20px;
}

/* страница мастера
--------------------*/
.master-page-block {
  margin: 80px 0;
}

.master-page-block h3 {
  color: #008EE2;
}

.master-page-title {
  display: flex;
  gap: 50px;
  border-bottom: 1px solid #008EE2;
  padding-bottom: 40px;
}

.master-page-title .hide {
  display: none;
}

.master-page-title h3 {
  position: relative;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.3;
  color: inherit;
  padding-bottom: 25px;
  margin: 0 0 25px;
}

.master-page-title h3:before {
  content: '';
  position: absolute;
  background: linear-gradient(to right, #008EE2, #008EE2 100px, #DFF0FB 100px, #DFF0FB 100%);
  width: 300px;
  height: 1px;
  bottom: 0;
  left: 0;
}

.master-page-city {
  color: #999;
  margin-bottom: 10px;
}

.master-page-avatar {
  margin-top: 10px;
}

.master-page-avatar img {
  box-shadow: 0 5px 40px rgb(3 3 3 / 16%);
}

.master-page-title .btn {
  margin-top: 30px;
}

.master-page-info {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #008EE2;
  padding: 40px 0;
}

.master-page-info p {
  position: relative;
  font-size: 20px;
  padding-left: 35px;
}

.master-page-info p:before {
  content: '';
  position: absolute;
  background: url(images/checked.svg) no-repeat center;
  width: 12px;
  height: 9px;
  top: 11px;
  left: 4px;
  z-index: 2;
}

.master-page-info p:after {
  content: '';
  position: absolute;
  background: #008EE2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 5px;
  left: 0;
}

.master-page-uslugi,
.master-page-foto,
.master-page-reviews-form {
  border-bottom: 1px solid #008EE2;
  padding-bottom: 40px;
}

.foto-row {
  display: flex;
  gap: 30px;
}

.foto-row a {
  display: block;
  flex-basis: 33.33%;
}

.foto-row img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.glsr-field-rating {
  margin-bottom: 15px;
}

.glsr-input-text {
  height: 45px;
  padding: 0 28px;
  background: rgb(246, 246, 246);
  border: 1px solid rgb(246, 246, 246);
  margin-bottom: 20px;
}

.glsr-textarea {
  padding: 15px 28px;
  background: rgb(246, 246, 246);
  border: 1px solid rgb(246, 246, 246);
  margin-bottom: 20px;
}

.glsr-button {
  position: relative;
  font-size: 12px;
  background: transparent;
  border: 1px solid #008EE2;
  padding: 13px 28px;
  margin-top: 20px !important;
  cursor: pointer;
  left: 50%;
  transform: translateX(-50%);
}

.glsr-review {
  position: relative;
  background: #fff;
  border: 20px solid #F6F6F6;
  padding: 20px;
  padding-left: 80px;
}

.glsr-review:before {
  content: '';
  position: absolute;
  background: url(images/comment.svg) no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  top: 20px;
  left: 20px;
}

.glsr-review-author {
  font-size: 20px;
  color: #008EE2;
}

.pre-office {
  border: 1px solid #008EE2;
  text-align: center;
  line-height: 1.2 !important;
  padding: 30px !important;
  margin-bottom: 40px !important;
}

.pre-office a {
  color: #008EE2;
}


ul#menu-menyu-osnovnyh-uslug>li:hover>a {
  color: #ffffff;
  background: #008EE2;
  padding: 15px 20px;
}