@import "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";
body {
  color: #000;
  margin: 0;
  font-family: Inter, sans-serif;
}

body.hidden {
  overflow: hidden;
}

input, textarea, select, button {
  font-family: Inter, sans-serif;
}

input:focus, textarea:focus {
  outline: none !important;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (width <= 768px) {
  .container {
    padding: 0 10px;
  }
}

.container--min {
  max-width: 995px;
}

.wrapper {
  overflow: hidden;
}

/* Базовые заголовки */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
h1 {
  font-size: 36px;
  line-height: 46px;
}
@media screen and (width <= 768px) {
  h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

h2 {
  font-size: 32px;
  line-height: 42px;
}
@media screen and (width <= 768px) {
  h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

h3 {
  font-size: 28px;
  line-height: 38px;
}
@media screen and (width <= 768px) {
  h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

h4 {
  font-size: 26px;
  line-height: 34px;
}
@media screen and (width <= 768px) {
  h4 {
    font-size: 18px;
    line-height: 26px;
  }
}

h5 {
  font-size: 22px;
  line-height: 30px;
}
@media screen and (width <= 768px) {
  h5 {
    font-size: 16px;
    line-height: 24px;
  }
}

h6 {
  font-size: 18px;
  line-height: 26px;
}
@media screen and (width <= 768px) {
  h6 {
    font-size: 14px;
    line-height: 22px;
  }
}

input, textarea {
  font-family: Inter, sans-serif;
}

.text-input {
  box-sizing: border-box;
  border: 1px solid #d4d4d8;
  background: #fff;
  border-radius: 10px;
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0 6px;
  font-size: 16px;
  color: #000;
  -webkit-appearance: none;
  appearance: none;
}

textarea.text-input {
  resize: none;
  height: 126px;
  padding: 1px 6px;
}

.text-input::placeholder {
  color: #000;
  -webkit-text-fill-color: #000;
}

.attach {
  cursor: pointer;
  color: #1a1a1a;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  display: inline-flex;
}

.attach__icon {
  background: url("../img/attach.svg") center no-repeat;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  transition: all 0.2s linear;
}

.attach:hover .attach__icon {
  transform: rotate(20deg);
}

.attach__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

.attach:hover .attach__text {
  text-decoration: underline;
}

.checkbox {
  cursor: pointer;
  justify-content: space-between;
  display: flex;
}

.checkbox--big .checkbox__checked {
  width: 10px;
  height: 10px;
  margin-top: 3px;
}

.checkbox--big .checkbox__text {
  width: calc(100% - 20px);
  font-size: 15px;
  font-weight: 200;
}

.checkbox input {
  position: absolute;
  left: -9999px;
}

.checkbox input:checked + .checkbox__checked:before {
  opacity: 1;
}

.checkbox__checked {
  border: 1px solid #0003;
  border-radius: 1px;
  width: 7px;
  height: 7px;
  margin-top: 3px;
  position: relative;
}

.checkbox__checked:before {
  content: "";
  opacity: 0;
  background: url("../img/check.svg") center no-repeat;
  transition: opacity .2s linear;
  position: absolute;
  inset: 0;
}

.checkbox__text {
  width: calc(100% - 12px);
  font-size: 11px;
  font-weight: 100;
}

.checkbox__text a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s linear;
}

.checkbox__text a:hover {
  text-decoration: underline;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  padding: 30px 0;
}

@media screen and (width <= 768px) {
  .breadcrumbs {
    gap: 20px 35px;
  }
}

.breadcrumbs__item {
  position: relative;
  font-size: 18px;
  color: #727272;
}

.breadcrumbs__item:before {
  content: "/";
  position: absolute;
  left: -28px;
  top: -12px;
  font-size: 18px;
  line-height: 45px;
  font-weight: 600;
}

@media screen and (width <= 768px) {
  .breadcrumbs__item:before {
    left: -21px;
  }
}

.breadcrumbs__item:first-child:before {
  display: none;
}

.breadcrumbs__item a {
  color: inherit;
}

.main {
  padding-top: 50px;
}

@media screen and (width <= 768px) {
  .main {
    padding-top: 30px;
  }
}

img {
  max-width: 100%;
  max-height: 100%;
}

.soc-list {
  gap: 5px;
  display: flex;
}

.soc-list a {
  line-height: 0;
}

@media screen and (width <= 700px) {
  .soc-list a svg {
    width: 29px;
    height: 29px;
  }
}

.soc-list a:hover svg path {
  fill: #00C3C5;
}

.soc-list a svg path {
  transition: all .2s linear;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  z-index: 9999;
}


.header__top {
  color: #fff;
  background: #03608e;
  overflow: hidden;
  opacity: 1;
  transition: height 0.35s ease, opacity 0.25s ease;
}

@media screen and (width <= 968px) {
  .header__top {
    display: none;
  }
}

.header__top-flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
  padding: 4px 0;
}

@media screen and (width <= 700px) {
  .header__top-flex {
    display: block;
    padding: 14px 0;
  }
}

.header__top-r {
  align-items: center;
  display: flex;
}

@media screen and (width <= 700px) {
  .header__top-r {
    justify-content: space-between;
    margin-top: 10px;
  }
}

@media screen and (width <= 700px) {
  .header__top-r {
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
  }
}

.header__top-r > :not(:first-child) {
  padding-left: 22px;
}

@media screen and (width <= 968px) {
  .header__top-r > :not(:first-child) {
    padding-left: 15px;
  }
}

@media screen and (width <= 700px) {
  .header__top-r > :not(:first-child) {
    padding-left: 0;
  }
}

.header__top-r > :not(:last-child) {
  padding-right: 22px;
  position: relative;
}

@media screen and (width <= 968px) {
  .header__top-r > :not(:last-child) {
    padding-right: 15px;
  }
}

@media screen and (width <= 700px) {
  .header__top-r > :not(:last-child) {
    padding-right: 0;
  }
}

.header__top-r > :not(:last-child):after {
  content: "";
  background: #fff;
  width: 1px;
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
}

@media screen and (width <= 700px) {
  .header__top-r > :not(:last-child):after {
    display: none;
  }
}

.header__links {
  flex-wrap: wrap;
  gap: 10px 44px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

@media screen and (width <= 1200px) {
  .header__links {
    gap: 10px 30px;
  }
}

@media screen and (width <= 968px) {
  .header__links {
    gap: 10px 15px;
  }
}

@media screen and (width <= 700px) {
  .header__links {
    justify-content: center;
  }
}

.header__links li {
  font-size: 20px;
  font-weight: 200;
}

@media screen and (width <= 1200px) {
  .header__links li {
    font-size: 17px;
  }
}

@media screen and (width <= 968px) {
  .header__links li {
    font-size: 18px;
  }
}

.header__links li a {
  color: inherit;
  text-decoration: none;
  transition: color .2s linear;
}

.header__links li:not(.current-menu-item) a:hover {
  color: #fde845;
}

.header__links li.current-menu-item a {
  font-weight: 600;
}

.header__cont {
  font-size: 15px;
}

@media screen and (width <= 700px) {
  .header__cont {
    display: none;
  }
}

.header__cont a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s linear;
}

.header__cont a:hover {
  color: #fde845;
}

.header__bottom {
  border-bottom: 1px solid #d8d8d8;
  padding: 15px 0;
  position: relative;
}

@media screen and (width <= 768px) {
  .header__bottom {
    padding: 8px 0;
  }
}

@media screen and (width <= 550px) {
  .header__bottom {
    padding: 8px 0;
  }
}

.header__bottom-flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header__logo {
  line-height: 0;
}

@media screen and (width <= 1200px) {
  .header__logo {
    width: 145px;
  }
}

@media screen and (width <= 550px) {
  .header__logo {
    width: 135px;
  }
}

.header__nav > li.menu-item-lang {
  padding-top: 8px;
}

.header__lang {
  position: relative;
  border: 1px solid transparent;
  border-left-color: #D0DBE0;
  border-right-color: #D0DBE0;
  border-bottom: none;
  padding-top: 1px;
  width: 54px;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

@media screen and (width <= 1200px) {
  .header__lang {
    font-size: 17px;
  }
}

@media screen and (width <= 550px) {
  .header__lang {
    font-size: 14px;
  }
}

.header__lang.active {
  /*border-color: #D0DBE0;
  border-radius: 5px 5px 0 0;*/
}

.header__lang-item {
  text-transform: uppercase;
}

.header__lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -1px;
  min-width: 100%;
  background: #fff;
  border: 1px solid #D0DBE0;
  border-radius: 5px;
  display: none;
  z-index: 1000;
}

.header__lang-dropdown .header__lang-link {
  display: block;
  padding: 4px 14px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  text-align: left;
  transition: background 0.2s;
  width: 66px;
  box-sizing: border-box;
}

.header__lang-dropdown .header__lang-link:hover {
  background: #f0f0f0;
}

.header__nav {
  flex-wrap: wrap;
  gap: 0 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

@media screen and (width <= 1200px) {
  .header__nav {
    gap: 21px;
  }
}

@media screen and (width >= 969px) {
  .header__nav {
    display: flex !important;
  }
}

@media screen and (width <= 968px) {
  .header__nav {
    z-index: 9999;
    background: #fff;
    padding: 15px;
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
  }
}

.header__navMobOpen {
  cursor: pointer;
  width: 35px;
  height: 22px;
  display: none;
  position: relative;
}

@media screen and (width <= 968px) {
  .header__navMobOpen {
    display: block;
  }
}

@media screen and (width <= 550px) {
  .header__navMobOpen {
    width: 30px;
  }
}

.header__navMobOpen.active span {
  display: none;
}

.header__navMobOpen.active:before, .header__navMobOpen.active:after {
  position: absolute;
}

.header__navMobOpen.active:before {
  top: 9px;
  transform: rotate(45deg);
}

.header__navMobOpen.active:after {
  top: 9px;
  transform: rotate(-45deg);
}

.header__navMobOpen:before, .header__navMobOpen:after, .header__navMobOpen span {
  content: "";
  background: #03608e;
  width: 100%;
  height: 4px;
  transition: all .2s linear;
  display: block;
}

.header__navMobOpen span {
  margin: 5px 0;
}

.header__nav > li {
  font-size: 20px;
  position: relative;
}

@media screen and (width <= 1200px) {
  .header__nav li {
    font-size: 17px;
  }

  .header__nav > li.menu-item-has-children > a:before {
    top: 14px !important;
  }
}

@media screen and (width <= 968px) {
  .header__nav > li {
    margin: 5px 0;
  }

  .header__nav > li:first-child {
    margin-top: 0;
  }

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

.header__nav > li.current-menu-item a,
.header__nav > li.current-menu-parent > a  {
  color: inherit !important;
  font-weight: 600;
}

.header__nav > li.current-menu-item a:after,
.header__nav > li.current-menu-parent > a:after {
  opacity: 1;
}

.header__nav > li:before, .header__nav > li:after {
  content: "";
  background: #d8d8d8;
  width: 1px;
  height: 16px;
  display: none;
  position: absolute;
  top: calc(50% - 8px);
}

.header__nav > li:before {
  left: -12px;
}

@media screen and (width <= 1200px) {
  .header__nav > li:before {
    left: -10px;
  }
}

.header__nav > li:after {
  right: -12px;
}

@media screen and (width <= 1200px) {
  .header__nav > li:after {
    right: -10px;
  }
}

.header__nav > li.border-left {
  padding-left: 5px;
}

.header__nav > li:has(+ li.border-left) {
  padding-right: 5px;
}

.header__nav > li.border-right {
  padding-right: 5px;
}

.header__nav > li.border-right + li {
  padding-left: 5px;
}

.header__nav > li.border-left:before,
.header__nav > li.border-right:after {
  display: block;
}

@media screen and (width <= 968px) {
  .header__nav > li.border-left:before,
  .header__nav > li.border-right:after {
    display: none;
  }
}

.header__nav > li > a {
  color: inherit;
  padding: 8px 0;
  text-decoration: none;
  transition: color .2s linear;
  display: block;
  position: relative;
  cursor: pointer;
}

.header__nav > li > a:hover {
  color: #03608e;
}

.header__nav > li > a:after {
  content: "";
  opacity: 0;
  background: #fde845;
  height: 3px;
  transition: opacity .2s linear;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (width <= 968px) {
  .header__nav > li > a:after {
    width: 50px;
  }
}

.header__nav > li.menu-item-has-children > a:before {
  content: "";
  position: absolute;
  right: -15px;
  top: 17px;
  background: url('../img/str-bottom.svg') no-repeat 0 0;
  width: 10px;
  height: 10px;
}

.header__nav > li.menu-item-has-children:hover > a:before {
  transform: rotate(180deg);
}

.header__nav > li:hover > ul {
  display: block;
}

.header__nav > li > ul {
  display: none;
  position: absolute;
  left: -17px;
  list-style: none;
  background: #fff;
  border: 1px solid #D0DBE0;
  border-radius: 5px;
  width: 244px;
  padding: 5px 0;
  box-sizing: border-box;
  z-index: 9999;
  overflow: hidden;
}

.header__nav > li > ul > li {
  font-size: 18px;
}

.header__nav > li > ul > li > a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 3px 20px;
  transition: all 0.2s linear;
}

.header__nav > li > ul > li > a:hover {
  background: #EFF6FB;
}

.header__numb {
  color: #03608e;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}

@media screen and (width <= 1200px) {
  .header__numb {
    font-size: 17px;
  }
}

@media screen and (width <= 550px) {
  .header__numb {
    display: none;
  }
}

.header__navMob {
  display: none;
  position: relative;
  background: #fff;
  z-index: 9999;
}

@media screen and (width >= 968px) {
  .header__navMob {
    display: none !important;
  }
}

.header__navMob-scroll {
  display: flex;
  flex-direction: column;
}

.header__navMob-scrollM {
  flex: 1;
  overflow-y: auto;
}

.header__navMob-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  padding: 4px 10px 4px 0;
  margin: 5px 10px;
}

.header__navMob-lang {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  border-color: transparent;
}

.header__navMob-soc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.header__navMob-soc a {
  text-decoration: none;
  line-height: 0;
}

.header__navMob-serv {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2px 8px;
}

.header__navMob-serv-padd {
  width: 50%;
  padding: 2px;
  box-sizing: border-box;
}

.header__navMob-serv-item {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #000;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  min-height: 100%;
  padding: 24px 10px 18px;
  border-radius: 5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  box-sizing: border-box;
}

.header__navMob-serv-icon {
  height: 37px;
}

.header__navMob-serv-name {
  font-size: 16px;
  line-height: 26px;
}

.header__navMob-menu {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  padding: 0;
  margin: 5px 10px;
  list-style: none;
}

.header__navMob-menu li {
  flex-grow: 1;
}

.header__navMob-menu li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  text-decoration: none;
  padding: 5px 20px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.header__navMob-menu li a:hover {

}

.header__navMob-menu-icon {
  width: 25px;
  line-height: 0;
}

.header__navMob-menu-name {
  flex-grow: 1;
  padding-left: 17px;
}

.counter {
  box-sizing: border-box;
  background: #028caa;
  border: 1px solid #fff;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5px;
  display: flex;
}

.counter__plus, .counter__minus {
  cursor: pointer;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  position: relative;
}

.counter__plus:before, .counter__minus:before {
  content: "";
  background: #fff;
  width: 18px;
  height: 4px;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% - 9px);
}

.counter__plus:after {
  content: "";
  background: #fff;
  width: 18px;
  height: 4px;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% - 9px);
  transform: rotate(90deg);
}

.counter__value {
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  width: 63px;
  font-size: 26px;
  font-weight: bold;
}

.counter__value span {
  font-size: 20px;
}

.service {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.service__left {
  position: relative;
  width: calc(100% - 360px);
}

@media screen and (width <= 1200px) {
  .service__left {
    width: calc(100% - 330px);
  }
}

@media screen and (width <= 968px) {
  .service__left {
    width: 100%;
  }
}

.service__right {
  position: relative;
  width: 350px;

}

@media screen and (width <= 1200px) {
  .service__right {
    width: 320px;
  }
}

@media screen and (width <= 968px) {
  /*.service__right {
    display: none;
  }*/
}

.fancybox__container {
  z-index: 9999;
}

.fancybox__content {
  padding: 15px;

}

.order-popup .service__right {
  display: block;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  padding-top: 60px; 
}

.order-popup .service__right-cont {
  position: relative !important;
  z-index: 99;
  width: 100% !important;
  /*min-height: calc(100vh - 60px);*/
}

.service__right-cont {
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  align-self: flex-start;
  overflow: hidden;
}

.service__right-close {
  display: none;
  background: #00C3C5;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 9px 15px;
}

.service__right-close img {
  margin-left: 9px;
}

@media screen and (width <= 968px) {
  .service__right {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
  
    width: 100% !important;
    max-height: calc(100dvh - 120px);
    background: #fff;
    overflow: auto;

    transform: translateY(100%);
    transition: transform 0.35s ease;
    display: block;

    z-index: 99999;

    padding-bottom: 55px;

    border-radius: 10px 10px 0 0;
  }
  .service__right.is-open {
    transform: translateY(0);
  }

  .no-scroll {
    overflow: hidden;
  }

  .no-scroll:before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 99999;
  }

  .service__right-cont {
    position: static !important;
    top: auto !important;
    border-radius: 0;
    /*min-height: calc(100dvh - 120px);*/
    border-radius: 10px 10px 0 0;
  }

  .service__right-close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

.service__btnMobile {
  position: fixed;
  left: 5px;
  right: 5px;
  bottom: 5px;
  display: none;
  z-index: 99;
}

@media screen and (width <= 968px) {
  .service__btnMobile {
    display: block;
  }
}

.service__btnMobile.active {
  z-index: 999999;
}

.service__btnMobile .blue-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  padding: 5px 15px;
  min-height: 56px;
}

.service__btnMobile .blue-btn span {
  font-size: 28px;
  padding-left: 10px;
}

.service__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 137%;
}

@media screen and (width <= 1200px) {
  .service__title {
    font-size: 22px;
  }
}

@media screen and (width <= 550px) {
  .service__title {
    font-size: 20px;
    line-height: 120%;
  }
}

.service__subtitle {
  color: #7b7b7b;
  max-width: 1129px;
  margin-top: 4px;
  font-size: 18px;
  line-height: 120%;
}

@media screen and (width <= 1200px) {
  .service__subtitle {
    font-size: 16px;
  }
}

@media screen and (width <= 550px) {
  .service__subtitle {
    font-size: 15px;
  }
}

.service__list {
  flex-wrap: wrap;
  margin: 16px -5px -5px;
  display: flex;
}

@media screen and (width <= 550px) {
  .service__list {
    margin-top: 10px;
  }
}

.service__list-padd {
  box-sizing: border-box;
  width: 25%;
  padding: 5px;
  display: flex;
}

@media screen and (width <= 1200px) {
  .service__list-padd {
    width: 33.3333%;
  }
}

@media screen and (width <= 968px) {
  .service__list-padd {
    width: 25%;
  }
}

@media screen and (width <= 768px) {
  .service__list-padd {
    width: 33.3333%;
  }
}

@media screen and (width <= 550px) {
  .service__list-padd {
    width: 50%;
  }
}

.service__list-item {
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  flex: 1;
  width: 100%;
  padding: 20px 5px 50px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  position: relative;
}

.service__list-item:hover .service__list-check {
  background: #ebfcff;
}

.service__list-check {
  z-index: -1;
  border-radius: 20px;
  transition: all .2s linear;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.service__list input {
  position: absolute;
  left: -9999px;
}

.service__list input:checked + .service__list-check {
  background: #00699d;
}

.service__list input:checked + .service__list-check + .service__list-img:not(.sh) {
  align-items: center;
  padding-left: 17px;
  padding-right: 17px;
}

.service__list input:checked + .service__list-check + .service__list-img img {
  display: none;
}

.service__list input:checked + .service__list-check + .service__list-img.sh img {
  display: inline !important;
}

.service__list input:checked + .service__list-check + .service__list-img .counter {
  display: flex;
}

.service__list input:checked + .service__list-check + .service__list-img + .service__list-name {
  color: #fff;
}

.service__list-img {
  justify-content: center;
  align-items: flex-end;
  height: 95px;
  display: flex;
}

@media screen and (width <= 550px) {
  .service__list-img {
    height: 75px;
  }
}

.service__list-img img {
  max-width: 80%;
}

.service__list-img .counter {
  display: none;
}

.service__list-name {
  margin-top: 10px;
  font-size: 15px;
  transition: color .2s linear;
}

@media screen and (width <= 550px) {
  .service__list-name {
    font-size: 14px;
  }
}

.service__list-price {
  margin-top: 16px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}

.service__list-price span {
  color: #fff;
  box-sizing: border-box;
  background: #028caa;
  border-radius: 4px;
  min-width: 105px;
  padding: 4px 15px;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
}
.service__list-price.service__list-price--free span {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
  background: #13B196;
  text-transform: uppercase;
}

.service__form-zag {
  background: #FDE845;
  justify-content: space-between;
  padding: 4px 11px;
  font-size: 22px;
  font-weight: bold;
  line-height: 130%;
  display: flex;
}
@media screen and (width <= 968px) {
  .service__form-zag {
    padding: 4px 19px;
  }
  .service__form-zag span:first-child {
    font-size: 20px;
  }
}

.service__form-list {
  border: 1px solid #d4d4d8;
  border-radius: 10px;
  margin: 10px 6px;
}

.service__form-list-item {
  border-top: 1px solid #838b9521;
  padding: 1px 30px 1px 5px;
  font-size: 16px;
  color: #4C4C4C;
  line-height: 15px;
  position: relative;
}

@media screen and (width <= 968px) {
  .service__form-list-item  {
    color: #000;
    line-height: 20px;
    padding: 7px 45px 7px 12px;
  }

  .service__form-list-item.service__form-list-item--noBask {
    padding: 7px 12px !important;
  }

  .service__form-list-item-close {
    top: 7px !important;
    right: 12px !important;
    background: url('../img/close-big.svg') no-repeat 0 0;
    background-size: 100%;
    width: 18px !important;
    height: 20px !important;
  }

  .service__form-list-item-close svg {
    display: none;
  }

  .service__form-text {
    color: #595959 !important;
  }

  .text-input {
    height: 38px;
    padding: 0 12px;
  }

  .service__right .service__form-comm,
  .service__right .service__form-comm + .soc-big {
    display: none;
  }

  .service__form-inputs-it .blue-btn {
    font-size: 20px;
  }

  .service__form-inputs .blue-btn.blue-btn--hoverColor {
    padding: 9px 15px !important;
    border-radius: 5px !important;
  }

  .service__form-inputs .blue-btn.blue-btn--hoverColor span {
    font-size: 28px !important; 
  }
}

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

.service__form-list-item.service__form-list-item--noBask {
  padding: 1px 5px;
}

.service__form-list-item-close {
  cursor: pointer;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 2px;
  right: 5px;
}

.service__form-list-item-close:hover svg path {
  fill: #4C4C4C;
}

.service__form-list-item-close svg path {
  transition: all .2s linear;
}

.selectedServices {
  min-height: 10px;
}

.service__form-text {
  padding: 6px 25px 0;
  font-size: 16px;
  color: #000;
  line-height: 15px;
  text-align: center;
}

.service__form-inputs {
  padding: 10px 6px;
}

.service__form-inputs-it {
  margin: 4px 0;
}

.service__form-inputs-it:first-child {
  margin-top: 0;
}

.service__form-inputs-it:last-child {
  margin-bottom: 0;
  margin-top: 12px;
}
@media screen and (width <= 968px) {
  .service__right .service__form-inputs-it:last-child {
    display: none;
  }
}

.service__form-inputs-it--two {
  justify-content: space-between;
  display: flex;
}

.service__form-inputs-it--two > * {
  width: calc(50% - 2px) !important;
}

.service__form-inputs-it--three {
  justify-content: space-between;
  display: flex;
}

.service__form-inputs-it--three > * {
  width: calc(33.3333% - 2px) !important; 
}

.service__form-inputs-it--check {
  padding: 0 25px;
}

.service__form-inputs-it--check .checkbox__text {
  color: #000;
  font-weight: 200;
}

.service__form-inputs-it--attach {
  text-align: center;
}

.service__form-inputs-it--attach .attach {
  gap: 7px;
  padding: 8px 0 0;
}

.service__form-inputs-it--attach .attach__icon {
  width: 16px;
  height: 16px;
  background-size: 100%;
}

.service__form-inputs-it--attach .attach__text {
  font-size: 16px;
}

.service__form-comm {
  padding: 4px 35px;
  font-size: 16px;
  color: #000;
  line-height: 15px;
  text-align: center;
}

.service__minPrice {
  position: relative;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  background: url("../img/minPrice.jpg") center / cover no-repeat;
  border-radius: 10px;
  align-items: center;
  min-height: 90px;
  margin-top: 20px;
  padding: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 137%;
  text-transform: uppercase;
  display: flex;
}

@media screen and (width <= 550px) {
  .service__minPrice {
    font-size: 18px;
  }
}

.service__minPrice--windCl {
  background-image: url("../img/WindCl.jpg");
  text-transform: uppercase;
}

.service__minPrice--windCl:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(10, 76, 108, 0.6);
  border-radius: 10px;
  transition: all 0.1s linear;
}

.service__minPrice--windCl.active:before {
  background: rgba(250, 239, 156, 0.6);
}

.service__minPrice--windCl span {
  text-transform: none;
}

.service__minPrice > div {
  position: relative;
  flex-grow: 1;
}

.service__sub {
  margin-top: 20px;
}

.service__sub-btn {
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  padding: 20px;
  display: flex;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  transition: all 0.1s linear;
}

@media screen and (width <= 550px) {
  .service__sub-btn {
    padding: 15px 20px 20px;
  }
}

@media screen and (width > 768px) {
  .service__sub-btn:hover {
    background: #00699d;
  }
}

.service__sub-btn.active .service__sub-btn-str {
  transform: none;
}

.service__sub-btn-cent {
  align-items: center;
  display: flex;
}

@media screen and (width <= 550px) {
  .service__sub-btn-cent {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}

.service__sub-btn-icon {
  flex-shrink: 0;
  width: 47px;
  border-radius: 100%;
  overflow: hidden;
}

@media screen and (width <= 550px) {
  .service__sub-btn-icon {
    width: 53px;
  }
}

.service__sub-btn-title {
  max-width: 400px;
  margin: 0 25px;
  font-size: 20px;
  font-weight: 500;
  line-height: 108%;
  transition: all 0.1s linear;
}

@media screen and (width <= 550px) {
  .service__sub-btn-title {
    margin: 8px 0 16px;
    font-size: 18px;
    font-weight: 600;
  }
}

@media screen and (width > 768px) {
  .service__sub-btn:hover .service__sub-btn-title {
    color: #fff;
  }
}

.service__sub-btn-str {
  transition: transform .2s linear;
  transform: rotate(180deg);
}

.service__sub-btn-str  svg path {
  transition: all 0.1s linear;
}

@media screen and (width > 768px) {
  .service__sub-btn:hover .service__sub-btn-str svg path {
    fill: #fff;
  }
}

.service__sub-hidden {
  display: none;
}

.service__sub-title {
  margin-top: 20px;
  font-size: 26px;
  font-weight: bold;
  line-height: 137%;
  transition: all 0.2s linear;
}

@media screen and (width <= 550px) {
  .service__sub-title {
    font-size: 22px;
    line-height: 120%;
  }
}

.service__sub-subtitle {
  color: #7b7b7b;
  margin-top: 8px;
  font-size: 18px;
}

@media screen and (width <= 550px) {
  .service__sub-subtitle {
    font-size: 15px;
  }
}

.service__sub-cnt {
  border-radius: 20px;
  margin: 31px 0 0;
  padding: 0 15px;
  list-style: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

@media screen and (width <= 768px) {
  .service__sub-cnt {
    margin-top: 20px;
  }
}

.service__sub-cnt-item {
  border-bottom: 1px solid #004b6b26;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  display: flex;
}

.service__sub-cnt-item:last-child {
  border-bottom: 0;
}

.service__sub-cnt-title {
  font-size: 18px;
  font-weight: 600;
  flex-grow: 1;
  padding-right: 5px;;
}

@media screen and (width <= 550px) {
  .service__sub-cnt-title {
    font-size: 15px;
  }
}

.service__sub-cnt-counter {
  background: none;
  justify-content: space-between;
  width: 134px;
  display: none;
  flex-shrink: 0;
  padding: 0;
}

@media screen and (width <= 768px) {
  .service__sub-cnt-counter {
    display: flex;
  }
}

.service__sub-cnt-counter .counter__plus, .service__sub-cnt-counter .counter__minus {
  width: 37px;
  height: 37px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.service__sub-cnt-counter .counter__plus:before, .service__sub-cnt-counter .counter__minus:before, .service__sub-cnt-counter .counter__plus:after, .service__sub-cnt-counter .counter__minus:after {
  display: none;
}

.service__sub-cnt-counter .counter__value {
  width: 40px;
  padding: 0 5px;
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

.service__sub-cnt-check {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  display: flex;
}

@media screen and (width <= 768px) {
  .service__sub-cnt-check {
    display: none;
  }

  .service__sub-cnt-check--showMob {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .service__sub-cnt-check--showMob .service__sub-cnt-check-ck {
    width: 134px; 
  }
}

.service__sub-cnt-check label {
  cursor: pointer;
  display: inline-block;
}

.service__sub-cnt-check input {
  position: absolute;
  left: -9999px;
}

.service__sub-cnt-check input:checked + .service__sub-cnt-check-ck {
  background: #fff;
  box-shadow: 0 0 0 2px #03608E;
}

.service__sub-cnt-check input:checked + .service__sub-cnt-check-ck:before {
  opacity: 1;
}

.service__sub-cnt-check-ck {
  text-align: center;
  box-sizing: border-box;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 600;
  transition: all .2s linear;
  display: flex;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

@media screen and (width <= 768px) {
  .service__sub-cnt-check-ck {
    font-size: 18px;
  }
}

.service__sub-cnt-check-ck:before {
  content: "";
  opacity: 0;
  background: url("../img/checkRadio.svg") no-repeat;
  width: 25px;
  height: 25px;
  transition: opacity .2s linear;
  position: absolute;
  top: -12px;
  left: -12px;
}

.service__sub-cnt-check-ck:hover {
  background: #e3f3f6;
}

.service__sub-type {
  margin: -1px -14px -15px;
  padding: 0;
  list-style: none;
}

.service__sub-type .slick-list {
  padding: 0 7px;
}

.service__sub-type .slick-arrow {
  position: absolute;
}

.service__sub-type .slick-arrow.slick-prev {
  left: 0;
}

.service__sub-type .slick-arrow.slick-next {
  right: 0;
}

.service__sub-type-padd {
  box-sizing: border-box;
  padding: 15px 7px;
}

.service__sub-type-item {
  cursor: pointer;
  box-sizing: border-box;
  min-height: 100%;
  padding: 15px 15px 97px;
  display: block;
  position: relative;
}

.service__sub-type-item:hover .service__sub-type-check {
  background: #eff6fb;
}

.service__sub-type input {
  position: absolute;
  left: -9999px;
}

.service__sub-type input:checked + .service__sub-type-check {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 2px #03608E;
}

.service__sub-type input:checked + .service__sub-type-check:before {
  opacity: 1;
}

.service__sub-type input:checked + .service__sub-type-check + .service__sub-type-title + .service__sub-type-text + .service__sub-type-btn:hover {
  text-decoration: underline;
}

.service__sub-type-check {
  z-index: -1;
  border-radius: 10px;
  transition: all .2s linear;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.service__sub-type-check:before {
  content: "";
  opacity: 0;
  background: url("../img/checkRadio.svg") no-repeat;
  width: 25px;
  height: 25px;
  transition: opacity .2s linear;
  position: absolute;
  top: -12px;
  left: -12px;
}

.service__sub-type-title {
  border-bottom: 1px solid #004b6b26;
  padding: 5px 0 13px;
  font-size: 18px;
  font-weight: 600;
}

.service__sub-type-text {
  margin-top: 19px;
  font-size: 15px;
}

.service__sub-type-btn {
  color: #00699d;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 13px;
  font-size: 15px;
  display: flex;
  position: absolute;
  bottom: 23px;
  left: 15px;
  right: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.service__sub-type-btn svg {
  margin-right: 5px;
}

.fancybox__content {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 0;
  margin: 10px;
}

.cleanPopup {
  max-width: 810px;
  width: 100%;
  color: #000;
  padding: 40px 75px;
  box-sizing: border-box;
}

.fancybox__backdrop {
  background: rgba(24, 24, 27, 0.5);
}

.is-close {
  position: absolute !important;
  right: 20px !important;
  top: 20px !important;
  background: url("../img/close.svg") no-repeat center center;
  outline: none;
}
.is-close:hover {
  opacity: 0.7;
}
.is-close svg {
  display: none !important;
}

@media screen and (width <= 968px) {
  .cleanPopup {
    max-width: inherit;
  }
  body:not(.is-using-mouse) .fancybox__container :focus {
    box-shadow: none !important;
  }
  .is-close {
    right: 12px !important;
    top: 12px !important;
  }
  .fancybox__slide {
    padding: 0;
  }
  /*.fancybox__content {
    width: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }*/
  .fancybox--fullscreen .fancybox__backdrop {
    background: #fff !important;
  }
}

@media screen and (width <= 768px) {
  .cleanPopup {
    padding: 56px 20px 20px;
  }
  .is-close {
    background-size: 21px;
  }
}

.cleanPopup__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}

@media screen and (width <= 550px) {
}

.cleanPopup__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 45px 0;
  margin-top: 43px;
}

@media screen and (width <= 768px) {
  .cleanPopup__list {
    gap: 25px 0;
    margin-top: 30px;
  }
}

.cleanPopup__list-item {
  width: calc(50% - 17px);
}

@media screen and (width <= 550px) {
  .cleanPopup__list-item {
    width: 100%;
  }
}

.cleanPopup__list-name {
  position: relative;
  display: flex;
  height: 70px;
}

@media screen and (width <= 768px) {
  .cleanPopup__list-name {
    height: auto;
  }
}

.cleanPopup__list-name:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(2.35deg, #03608E 0%, #FFFFFF 100%);
  height: 2px;
}

@media screen and (width <= 768px) {
}

.cleanPopup__list-name-icon {
  display: flex;
  align-items: flex-end;
}

@media screen and (width <= 768px) {
}

.cleanPopup__list-name span {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #00699D;
  font-weight: 600;
}

.cleanPopup__list-name img {
  position: relative;
  flex-shrink: 0;
  width: 65px;
}

.cleanPopup__list-name span {
  padding-left: 30px;
  flex-grow: 1;
  box-sizing: border-box;
}

.cleanPopup__list-items {
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.cleanPopup__list-items li {
  position: relative;
  font-size: 15px;
  padding-left: 20px;
  min-height: 15px;
}

.cleanPopup__list-items li:before, .cleanPopup__comm:after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  background: url("../img/checkRadio.svg") no-repeat 0 0;
  background-size: cover;
  width: 11px;
  height: 11px;
}

.cleanPopup__line {
  background: linear-gradient(2.35deg, #03608E 0%, #FFFFFF 100%);
  height: 2px;
  margin-top: 25px;
}

@media screen and (width <= 550px) {
  .cleanPopup__line {
    margin-top: 15px;
  }
}

.cleanPopup__comm {
  position: relative;
  font-size: 15px;
  padding-left: 20px;
  margin-top: 25px;
}

@media screen and (width <= 550px) {
  .cleanPopup__comm {
    margin-top: 15px;
  }
}

.cleanPopup__closeD {
  display: none;
  text-align: center;
  margin-top: 44px;
}

@media screen and (width <= 550px) {
  .cleanPopup__closeD {
    display: block;
  }
}

.cleanPopup__closeD span {
  display: inline-block;
  border: 1px solid #03608E;
  border-radius: 15px;
  font-size: 20px;
  color: #03608E;
  font-weight: 500;
  width: 100%;
  max-width: 322px;
  padding: 15px 25px;
}

.service__sub-opt {
  margin-top: 25px;
}

.service__sub-opt-title {
  font-size: 26px;
  font-weight: 500;
}

@media screen and (width <= 768px) {
  .service__sub-opt-title {
    font-size: 20px;
  }
}

.service__sub-opt .service__list {
  margin-top: 33px;
}

@media screen and (width <= 768px) {
  .service__sub-opt .service__list {
    margin-top: 20px;
  }
}

.steps {
  margin-top: 28px;
}

.steps__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 120%;
}

@media screen and (width <= 768px) {
  .steps__title {
    font-size: 20px;
  }
}

.steps__cont {
  justify-content: space-between;
  align-items: center;
  margin-top: 33px;
  display: flex;
}

@media screen and (width <= 968px) {
  .steps__cont {
    flex-direction: column;
  }
}

@media screen and (width <= 768px) {
  .steps__cont {
    margin-top: 20px;
  }
}

.steps__cont-left {
  width: 45.7%;
}
.steps__cont-left.steps__cont-left--full {
  width: 100%;
}

@media screen and (width <= 968px) {
  .steps__cont-left {
    width: 100%;
  }
}

.steps__cont-right {
  position: relative;
  border-radius: 15px;
  width: 52%;
  line-height: 0;
  overflow: hidden;
}

@media screen and (width <= 968px) {
  .steps__cont-right:not(.steps__cont-right--vid) {
    display: none;
  }
  .steps__cont-right {
    margin-top: 33px;
  }
}

@media screen and (width <= 550px) {
  .steps__cont-right {
    width: 100%;
  }
}

.steps__cont-play {
  position: absolute;
  left: calc(50% - 84px);
  top: calc(50% - 84px);
  width: 166px;
  height: 166px;
  background: url("../img/play.png") no-repeat 0 0;
  cursor: pointer;
}

.steps__list {
  counter-reset: item;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps__list-item {
  counter-increment: item;
  margin-top: 20px;
  padding-left: 85px;
  position: relative;
}

.steps__list-item:first-child {
  margin-top: 0;
}

.steps__list-item:last-child:after {
  display: none;
}

.steps__list-item:before {
  content: counter(item);
  color: #1aab9f;
  text-align: center;
  border: 1px solid #0000002b;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 66px;
  height: 66px;
  font-size: 23px;
  font-weight: bold;
  display: flex;
  position: absolute;
  top: calc(50% - 33px);
  left: 0;
}

.steps__list-item:after {
  content: "";
  border-left: 1px dashed #4977e5;
  height: 20px;
  position: absolute;
  left: 33px;
}

.steps__list-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}

.steps__list-text {
  color: #838b95;
  margin-top: 4px;
  font-size: 15px;
  line-height: 20px;
}

.master-workPage {

}

.myHeight + .master-work {
  margin-top: 0;
}

.master-work {
  background: #eff6fb;
  margin-top: 32px;
  padding: 30px 0;
}

.master-workPage .master-work {
  padding-top: 65px;
  margin-top: 0;
  background: none;
}

@media screen and (width <= 768px) {
  .master-workPage .master-work {
    padding-top: 30px;
  }
}

.master-work__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 137%;
}

@media screen and (width <= 768px) {
  .master-work__title {
    font-size: 20px;
  }
}

.master-work__subtitle {
  color: #7b7b7b;
  max-width: 900px;
  margin-top: 17px;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

@media screen and (width <= 768px) {
  .master-work__subtitle {
    margin-top: 10px;
    font-size: 16px;
  }
}

.master-work__list {
  flex-wrap: wrap;
  margin: 5px -11px -17px;
  display: flex;
}

@media screen and (width <= 768px) {
  .master-work__list {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
}

.master-work__list-padd {
  box-sizing: border-box;
  width: 33.3333%;
  padding: 17px 11px;
}

@media screen and (width <= 768px) {
  .master-work__list-padd {
    width: 450px;
    max-width: 100%;
    padding: 11px;
  }
}

.master-work__list-item {
  text-align: center;
  font-size: 18px;
  line-height: 120%;
}

.master-work__list-item .separator {
  cursor: pointer;
}

.master-work__list-item .separator-bullet {
  width: 48px;
  height: 48px;
  background: url("../img/arrBefAft.svg") no-repeat !important;
}

.master-work__list-item .separator-bullet * {
  display: none;
}

.master-work__list-img {
  border-radius: 20px;
  margin-bottom: 12px;
  height: 185px !important;
  overflow: hidden;
}

.master-work__list-img img {
  background-size: cover;
  width: 100%;
  height: 187px !important;
  object-fit: cover;
}

@media screen and (width <= 700px) {
 /* .master-work__list-img img, .master-work__list-img {
    height: 150px !important;
  }*/
}

.master-work__list-title {
  color: #24839b;
  font-weight: 500;
}

.master-work__list-subtitle {
  font-weight: 300;
}

.master-work__btn {
  text-align: center;
  margin-top: 25px;
}

.faq {
  background: #eff6fb;
  padding: 34px 0;
}

.faq__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 120%;
}

.faq__list {
  counter-reset: item;
  flex-direction: column;
  gap: 22px 0;
  margin-top: 28px;
  display: flex;
}

@media screen and (width <= 768px) {
  .faq__list {
    gap: 10px 0;
    margin-top: 20px;
  }
}

.faq__list-item {
  counter-increment: item;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.faq__list-title {
  cursor: pointer;
  box-sizing: border-box;
  align-items: center;
  min-height: 72px;
  padding: 10px 90px 10px 55px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  position: relative;
}

@media screen and (width <= 768px) {
  .faq__list-title {
    padding: 10px 45px 10px 40px;
    font-size: 14px;
  }
}

.faq__list-title.active:after {
  transform: rotate(180deg);
}

.faq__list-title span {
  display: block;
  position: relative;
}

.faq__list-title span:before {
  content: counter(item) ".";
  position: absolute;
  top: 0;
  right: calc(100% + 10px);
}

.faq__list-title:after {
  content: "";
  background: url("../img/str.svg") center no-repeat;
  width: 20px;
  height: 20px;
  transition: transform .2s linear;
  position: absolute;
  top: calc(50% - 10px);
  right: 25px;
}

@media screen and (width <= 768px) {
  .faq__list-title:after {
    right: 15px;
  }
}

.faq__list-text {
  padding: 10px 90px 40px 55px;
  font-size: 18px;
  display: none;
}

@media screen and (width <= 768px) {
  .faq__list-text {
    padding: 10px 15px 30px 40px;
    font-size: 14px;
  }
}

.reviews {
  background: #EFF6FB;
  padding: 30px 0;
}

.reviews__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}

@media screen and (width <= 768px) {
  .reviews__title {
    font-size: 22px;
    line-height: 130%;
  }
}

.reviews__list {
  margin-top: 15px;
}

@media screen and (width <= 968px) {
  .reviews__list {
    margin-top: 10px;
  }
}

.reviews__list .slick-list {
  margin: 0 50px;
}

@media screen and (width <= 968px) {
  .reviews__list .slick-list {
    margin: 0 18px;
  }
}

@media screen and (width <= 968px) {
  .reviews__list .slick-list {
    margin: 0 -7px;
  }
}

.reviews__list .slick-arrow.slick-prev {
  left: 0;
}

.reviews__list .slick-arrow.slick-next {
  right: 0;
}

.reviews__list-item {
  background: #fff;
  padding: 35px 30px;
  margin: 15px 7px;
  border-radius: 10px;
  box-sizing: border-box;
}

@media screen and (width <= 768px) {
  .reviews__list-item {
    /*height: auto !important;*/
    padding: 15px;
  }
}

.reviews__list-top {
  display: flex;
  align-items: center;
}

.reviews__list-img {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
}

@media screen and (width <= 768px) {
  .reviews__list-img {
    width: 60px;
    height: 60px;
  }
}

.reviews__list-img img {
  width: 100%;
  height: 100%;
}

.reviews__list-cont {
  flex-grow: 1;
  padding-left: 15px;
  box-sizing: border-box;
}

.reviews__list-name {
  font-size: 18px;
  color: #334047;
}

@media screen and (width <= 768px) {
  .reviews__list-name {
    font-size: 16px;
  }
}

.reviews__list-city {
  font-size: 16px;
  color: #5A717C;
  margin-top: 4px;
}

@media screen and (width <= 768px) {
  .reviews__list-city {
    font-size: 14px;
  }
}

.reviews__list-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

@media screen and (width <= 768px) {
  .reviews__list-rating {
    gap: 15px;
  }
}

.reviews__list-rating span {
  background: url("../img/star-active.svg") no-repeat 0 0;
  background-size: 100%;
  width: 24px;
  height: 24px;
}

@media screen and (width <= 768px) {
  .reviews__list-rating span {
    width: 15px;
    height: 15px;
  }
}

.reviews__list-rating span.active {

}

.reviews__list-text {
  font-size: 18px;
  color: #45565F;
  line-height: 30px;
  font-style: italic;
  margin-top: 30px;
}

@media screen and (width <= 768px) {
  .reviews__list-text {
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
  }
}

.reviews__btn {
  text-align: center;
  margin-top: 25px;
}

@media screen and (width <= 968px) {
  .reviews__btn {
    margin-top: 15px;
  }
}

@media screen and (width <= 768px) {
  .reviews__btn {
    margin-top: 20px;
  }
}

.blogCards {
  padding: 43px 0;
}

.blogCards.blogCards--blog {
  padding: 63px 0 0;
}
@media screen and (width <= 968px) {
  .blogCards.blogCards--blog {
    padding-top: 40px;
  }
}

.blogCards__title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 130%;
}

.blogCards--blog .blogCards__title {
  text-transform: uppercase;
}

.blogCards__cats {
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 80px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: flex;
}

@media screen and (width <= 968px) {
  .blogCards__cats {
    gap: 15px 35px;
  }
}

@media screen and (width <= 768px) {
  .blogCards__cats {
    display: none;
  }
}

.blogCards--blog .blogCards__cats {
  margin-top: 55px;
}

@media screen and (width <= 1200px) {
  .blogCards--blog .blogCards__cats {
    margin-top: 40px;
  }
}

@media screen and (width <= 968px) {
  .blogCards--blog .blogCards__cats {
    margin-top: 20px;
  }
}

.blogCards__cats li {
  color: #0082b2;
  font-size: 22px;
  line-height: 160%;
  text-decoration: none;
  transition: color .2s linear;
}

@media screen and (width <= 968px) {
  .blogCards__cats li {
    font-size: 20px;
  }
}

@media screen and (width <= 700px) {
  .blogCards__cats li {
    font-size: 15px;
  }
}

.blogCards__list {
  flex-wrap: wrap;
  margin: 20px -10px -5px;
  display: flex;
}

@media screen and (width <= 768px) {
  .blogCards__list {
    margin-top: 15px;
  }
}

.blogCards--blog .blogCards__list {
  margin: 35px -10px -10px;
}

@media screen and (width <= 968px) {
  .blogCards--blog .blogCards__list {
    margin-top: 17px;
  }
}

.blogCards__list-padd {
  box-sizing: border-box;
  width: 50%;
  padding: 5px 10px;
}

@media screen and (width <= 968px) {
  .blogCards__list-padd {
    width: 100%;
  }
}

.blogCards--blog .blogCards__list-padd {
  padding-top: 10px;
  padding-bottom: 10px;
}

.blogCards__list-item {
  min-height: 100%;
  color: inherit;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  transition: color .2s linear;
  display: flex;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.blogCards__list-item:hover .blogCards__list-more {
  color: #03608e;
}

.blogCards__list-img {
  width: 44%;
}

@media screen and (width <= 968px) {
  .blogCards__list-img {
    width: 240px;
  }
}

@media screen and (width <= 768px) {
  .blogCards__list-img {
    width: 100px;
  }
}

.blogCards__list-img img {
  border-radius: 10px 0 0 10px;
}

.blogCards__list-cont {
  box-sizing: border-box;
  flex-direction: column;
  justify-content: space-between;
  width: 56%;
  padding: 15px 0 15px 30px;
  display: flex;
}

@media screen and (width <= 968px) {
  .blogCards__list-cont {
    width: calc(100% - 255px);
    display: block;
  }
}

@media screen and (width <= 768px) {
  .blogCards__list-cont {
    width: calc(100% - 100px);
    padding: 0 0 0 15px;
  }
}

.blogCards__list-title {
  min-height: 81px;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
}

@media screen and (width <= 968px) {
  .blogCards__list-title {
    min-height: inherit;
  }
}

@media screen and (width <= 768px) {
  .blogCards__list-title {
    font-size: 16px;
    line-height: 22px;
  }
}

.blogCards__list-text {
  color: #838b95;
  font-size: 15px;
  line-height: 26px;
}

@media screen and (width <= 768px) {
  .blogCards__list-text {
    margin-top: 5px;
    font-size: 13px;
    line-height: 20px;
  }
}

.blogCards__list-more {
  color: #0082b2;
  font-size: 15px;
  font-weight: bold;
  line-height: 150%;
  text-decoration: none;
  transition: all .2s linear;
}

@media screen and (width <= 768px) {
  .blogCards__list-more {
    margin-top: 5px;
    font-size: 14px;
  }
}

.blogCards__btn {
  text-align: center;
  margin-top: 30px;
}

.form {
  background: #eff6fb;
  padding: 43px 0 75px;
}

@media screen and (width <= 768px) {
  .form {
    padding: 30px 0;
  }
}

.form__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 137%;
}

@media screen and (width <= 768px) {
  .form__title {
    font-size: 20px;
    line-height: 120%;
  }
}

.form__subtitle {
  margin-top: 17px;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

@media screen and (width <= 768px) {
  .form__subtitle {
    margin-top: 10px;
    font-size: 14px;
  }
}

.form__inputs {
  margin-top: 50px;
}

@media screen and (width <= 700px) {
  .form__inputs {
    margin-top: 30px;
  }
}

.form__inputs-row {
  flex-wrap: wrap;
  margin: -7px -5px;
  display: flex;
}

.form__inputs-cell {
  box-sizing: border-box;
  width: 33.3333%;
  padding: 7px 5px;
}

@media screen and (width <= 700px) {
  .form__inputs-cell {
    width: 100%;
  }
}

.form__inputs-cell--full {
  width: 100%;
}

.form__inputs-title {
  padding: 0 15px;
  font-size: 15px;
  font-weight: 200;
  line-height: 120%;
}

.form__inputs-val {
  margin-top: 4px;
}

.form__inputs-val .counter {
  background: #fff !important;
  border: none !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.form__inputs-ck {
  justify-content: space-between;
  margin-top: 25px;
  display: flex;
}

@media screen and (width <= 768px) {
  .form__inputs-ck {
    display: block;
  }
}

.form__inputs-ck-file {
  box-sizing: border-box;
  width: 285px;
  padding: 0 15px;
}

@media screen and (width <= 700px) {
  .form__inputs-ck-file {
    width: 230px;
  }
}

.form__inputs-ck-check {
  flex-grow: 1;
  flex-basis: 0;
}

@media screen and (width <= 768px) {
  .form__inputs-ck-check {
    padding: 15px 15px 0;
  }
}

.form__inputs-btn {
  max-width: 285px;
  margin-top: 27px;
}

.form__inputs-btn .blue-btn {
  padding: 8px 15px;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.2s linear;
}

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

.window-counter-flex .window-counter {
  width: calc(50% - 30px);
  max-width: inherit;
  margin-left: 0;
  margin-right: 0;
}

@media screen and (width <= 768px) {
  .window-counter-flex .window-counter {
    width: calc(50% - 10px);
  }
}

.window-counter {
  max-width: 325px;
  width: 100%;
  margin: 40px auto 0;
}

@media screen and (width <= 768px) {
  .window-counter {
    max-width: 225px;
    margin-top: 20px;
  }
}

.window-counter__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 260px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  padding: 15px;
  box-sizing: border-box;
}

@media screen and (width <= 768px) {
  .window-counter__img {
    height: 160px;
  }

  .window-counter-flex .window-counter .window-counter__img {
    height: 130px;
  }
}

.window-counter__count {
  margin-top: 27px;
}

.window-counter__count .counter,
.form__inputs-val .counter {
  justify-content: space-between;
  background: none;
  border: 1px solid #028CAA;
  border-radius: 10px;
  padding: 0;
}
/*
@media screen and (width <= 768px) {
  .window-counter__count .counter,
  .form__inputs-val .counter {
    width: 165px;
    margin-left: auto;
    margin-right: auto;
  }

  .window-counter-flex .window-counter .window-counter__count .counter {
    width: 120px;
  }
}*/

.window-counter__count .counter .counter__minus,
.form__inputs-val .counter .counter__minus {
  border-radius: 10px 0 0 10px;
}

.window-counter__count .counter .counter__plus,
.form__inputs-val .counter .counter__plus {
  border-radius: 0 10px 10px 0;
}

.window-counter__count .counter .counter__plus,
.form__inputs-val .counter .counter__plus,
.window-counter__count .counter .counter__minus,
.form__inputs-val .counter .counter__minus {
  width: 34%;
  height: 57px;
  transition: all 0.2s linear;
  font-size: 30px;
  color: #000;
  font-weight: 500;
}
/*
@media screen and (width <= 768px) {
  .window-counter__count .counter .counter__plus,
  .form__inputs-val .counter .counter__plus,
  .window-counter__count .counter .counter__minus,
  .form__inputs-val .counter .counter__minus {
    height: 45px;
  }
  .window-counter-flex .window-counter__count .counter .counter__plus,
  .window-counter-flex .window-counter__count .counter .counter__minus {
    height: 35px;
  }
}*/

.window-counter__count .counter .counter__plus:hover,
.form__inputs-val .counter .counter__plus:hover,
.window-counter__count .counter .counter__minus:hover,
.form__inputs-val .counter .counter__minus:hover {
  background: #E0F5FF;
}

.window-counter__count .counter .counter__plus:before,
.form__inputs-val .counter .counter__plus:before,
.window-counter__count .counter .counter__minus:before,
.form__inputs-val .counter .counter__minus:before,
.window-counter__count .counter .counter__plus:after,
.form__inputs-val .counter .counter__plus:after{
  display: none;
}
/*
@media screen and (width <= 768px) {
  .window-counter-flex .window-counter__count .counter .counter__plus:before,
  .window-counter-flex .window-counter__count .counter .counter__minus:before,
  .window-counter-flex .window-counter__count .counter .counter__plus:after{
    top: calc(50% - 1px);
    left: calc(50% - 6px);
    width: 12px;
    height: 2px;
  }
}
*/
.window-counter__count .counter .counter__value,
.form__inputs-val .counter .counter__value {
  width: 90px;
  color: #000;
}

@media screen and (width <= 768px) {
  .window-counter-flex .window-counter__count .counter .counter__value {
    font-size: 18px;
  }
}

.window-counter__comment {
  font-size: 18px;
  line-height: 152%;
  text-align: center;
  margin-top: 15px;
}

@media screen and (width <= 768px) {
  .window-counter-flex .window-counter__comment {
    font-size: 15px;
  }
}

.window-counter__comment span {
  display: inline-block;
  background: #028CAA;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  padding: 0 11px;
}

@media screen and (width <= 768px) {
  .window-counter-flex .window-counter__comment span {
    font-size: 15px;
  }
}

.window-menu {
  margin-top: 30px;
}

.window-menu__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 137%;
}

@media screen and (width <= 768px) {
  .window-menu__title {
    font-size: 20px;
    line-height: 120%;
  }
}

.window-menu__subtitle {
  font-size: 18px;
  color: #7B7B7B;
  margin-top: 5px;
}

@media screen and (width <= 768px) {
  .window-menu__subtitle {
    font-size: 15px;
  }
}

.window-menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 26px -10px -10px;
}

@media screen and (width <= 768px) {
  .window-menu__list {
    margin: 15px -5px -5px;
  }
}

.window-menu__list-padd {
  padding: 10px;
  width: 25%;
  box-sizing: border-box;
}

@media screen and (width <= 1200px) {
  .window-menu__list-padd {
    width: 33.3333%;
  }
}

@media screen and (width <= 768px) {
  .window-menu__list-padd {
    width: 50%;
    padding: 5px;
  }
}

.window-menu__list-item {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  min-height: 100%;
  border-radius: 10px;
  padding: 40px 10px;
  box-sizing: border-box;
}

@media screen and (width <= 1200px) {
  .window-menu__list-item {
    padding: 20px 10px;
  }
}

.window-menu__list-img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 130px;
}

@media screen and (width <= 768px) {
  .window-menu__list-img {
    height: 85px;
  }
}

.window-menu__list-img img {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.window-menu__list-text {
  font-size: 15px;
  text-align: center;
  margin-top: 25px;
}

@media screen and (width <= 768px) {
  .window-menu__list-text {
    font-size: 13px;
    margin-top: 20px;
  }
}

.window-menu__list-text b {
  font-weight: bold;
}

.window-menu__list-text span {
  color: #04A4C7;
  font-weight: bold;
}

.image-block {
  margin-top: 50px;
}

.image-block__title {
  font-size: 26px;
  line-height: 120%;
  font-weight: bold;
}

@media screen and (width <= 768px) {
  .image-block__title {
    font-size: 20px;
  }
}

.image-block__img {
  text-align: center;
  margin-top: 38px;
}

@media screen and (width <= 768px) {
  .image-block__img {
    margin-top: 25px;
  }

  .image-block__img > img.hideMob {
    display: none;
  }
}

.image-block__list {
  display: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 360px;
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}

@media screen and (width <= 768px) {
  .image-block__list {
    display: block;
  }
}

.image-block__list li {
  position: relative;
  padding: 2px 0 0 35px;
  margin: 10px 0;
}

.image-block__list li:first-child {
  margin-top: 0;
}

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

.image-block__list li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 21px;
  height: 21px;
  background: url("../img/checkRadio.svg") no-repeat 0 0;
  background-size: 100%;
}

.custom-services {
  margin: 50px 0;
}

@media screen and (width <= 768px) {
  .custom-services {
    margin: 30px 0;
  }
}

.custom-services__title {
  font-size: 26px;
  line-height: 120%;
  font-weight: bold;
}

@media screen and (width <= 768px) {
  .custom-services__title {
    font-size: 20px;
  }
}

.custom-services__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px -10px -10px;
}

@media screen and (width <= 768px) {
  .custom-services__list {
    margin: 15px -5px -5px;
  }
}

.custom-services__list-padd {
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
}

@media screen and (width <= 1200px) {
  .custom-services__list-padd {
    width: 33.3333%;
  }
}

@media screen and (width <= 768px) {
  .custom-services__list-padd {
    width: 50%;
    padding: 5px;
  }
}

.custom-services__list-item {
  position: relative;
  display: block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  padding: 20px 20px 95px;
  min-height: 100%;
  border-radius: 6px;
  cursor: pointer;
  box-sizing: border-box;
}

@media screen and (width <= 1200px) {
  .custom-services__list-item {
    padding-bottom: 75px;
  }
}

@media screen and (width <= 768px) {
  .custom-services__list-item {
    padding: 10px 10px 55px;
  }
}

.custom-services__list-item input {
  position: absolute;
  left: -9999px;
}

.custom-services__list-check {
  z-index: -1;
  border-radius: 6px;
  transition: all .2s linear;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.custom-services__list-item input:checked + .custom-services__list-check {
  background: #00699d;
}

.custom-services__list-img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 140px;
}

@media screen and (width <= 1200px) {
  .custom-services__list-img {
    height: 120px;
  }
}

@media screen and (width <= 768px) {
  .custom-services__list-img {
    height: 75px;
  }
}

.custom-services__list-item input:checked + .custom-services__list-check + .custom-services__list-img {
  align-items: center;
}

.custom-services__list-img .counter {
  display: none;
  max-width: 150px;
}

.custom-services__list-item input:checked + .custom-services__list-check + .custom-services__list-img .counter {
  display: flex;
}

.custom-services__list-item input:checked + .custom-services__list-check + .custom-services__list-img img {
  display: none;
}

.custom-services__list-img.sh img {
  display: inline !important;
}

.custom-services__list-title {
  font-size: 15px;
  text-align: center;
  margin-top: 15px;
}

@media screen and (width <= 768px) {
  .custom-services__list-title {
    font-size: 13px;
  }
}

.custom-services__list-item input:checked + .custom-services__list-check + .custom-services__list-img + .custom-services__list-title {
  color: #fff;
}

.custom-services__list-price {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: center;
}

@media screen and (width <= 768px) {
  .custom-services__list-price {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}

.custom-services__list-price span {
  display: inline-block;
  min-width: 150px;
  background: #028CAA;
  border-radius: 5px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  padding: 9px;
  box-sizing: border-box;
}

@media screen and (width <= 768px) {
  .custom-services__list-price span {
    font-size: 15px;
    padding: 6px;
    min-width: 100px;
  }
}

.text-block {
  background: #eff6fb;
  font-size: 18px;
  padding: 40px 0;
  /*margin-top: 70px;*/
}

@media screen and (width <= 768px) {
  .text-block {
    font-size: 15px;
    padding: 30px 0;
    /*margin-top: 30px;*/
  }
}

.text-block--white {
  background: #fff;
}

.text-block:not(.text-block--stand) h3 {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (width <= 768px) {
  .text-block:not(.text-block--stand) h3 {
    font-size: 17px;
  }
}

.text-block .container > * {
  margin-top: 20px;
}

@media screen and (width <= 768px) {
  .text-block .container > * {
    margin: 15px 0 0;
  }
}

.text-block:not(.text-block--stand) h3 + p {
  margin-top: 5px !important;
}

.text-block + .myHeight {
  margin-top: 0;
}

.text-block + .whatWh,
.text-block + .container .whatWh {
  margin-top: 0;
}

.customer-widg {
  background: #EFF6FB;
  padding: 50px 0;
  margin-top: 25px;
}

@media screen and (width <= 968px) {
  .customer-widg {
    padding: 30px 0;
  }
}

.customer-widg__item {
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  text-align: center;
  padding: 30px;
}

.customer-widg__title {
  font-size: 26px;
  line-height: 137%;
  font-weight: bold;
}

@media screen and (width <= 968px) {
  .customer-widg__title {
    font-size: 22px;
  }
}

@media screen and (width <= 768px) {
  .customer-widg__title {
    font-size: 20px;
  }
}

.customer-widg__subtitle {
  font-size: 18px;
  margin-top: 4px;
}

@media screen and (width <= 968px) {
  .customer-widg__subtitle {
    font-size: 16px;
  }
}

@media screen and (width <= 768px) {
  .customer-widg__subtitle {
    font-size: 15px;
  }
}

.customer-widg__btn {
  margin-top: 30px;
}

@media screen and (width <= 968px) {
  .customer-widg__btn {
    margin-top: 20px;
  }
}

.customer-widg__btn .btn-min {
  font-size: 18px;
  padding: 9px 20px;
}

@media screen and (width <= 968px) {
  .customer-widg__btn .btn-min {
    font-size: 15px;
  }
}

.reg-clean {
  /*background: #EFF6FB;*/
  padding: 30px 0;
}

.reg-clean__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 137%;
}

@media screen and (width <= 768px) {
  .reg-clean__title {
    font-size: 20px;
  }
}

.reg-clean__subtitle {
  color: #7b7b7b;
  max-width: 900px;
  margin-top: 17px;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

@media screen and (width <= 768px) {
  .reg-clean__subtitle {
    margin-top: 10px;
    font-size: 16px;
  }
}

.reg-clean__subtitle span {
  color: #0078A4;
  font-weight: 600;
}

.reg-clean__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 15px -18px -18px;
}

@media screen and (width <= 1200px) {
  .reg-clean__list {
    margin: 15px -10px -10px;
  }
}

.reg-clean__list-padd {
  width: 25%;
  padding: 18px;
  box-sizing: border-box;
}

@media screen and (width <= 1200px) {
  .reg-clean__list-padd {
    width: 33.3333%;
    padding: 10px;
  }
}

@media screen and (width <= 968px) {
  .reg-clean__list-padd {
    width: 50%;
  }
}

@media screen and (width <= 600px) {
  .reg-clean__list-padd {
    width: 100%;
  }
}

.reg-clean__list-item {
  background: #fff;
  min-height: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.reg-clean__list-top {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  box-sizing: border-box;
}

.reg-clean__list-img {
  flex-shrink: 0;
  line-height: 0;
}

.reg-clean__list-title {
  flex-grow: 1;
  font-size: 15px;
  line-height: 100%;
  padding-left: 20px;
  box-sizing: border-box;
}

.reg-clean__list-bottom {
  background: #0082B2;
  padding: 7px 15px;
  box-sizing: border-box;
}

.reg-clean__list-prices {
  border-collapse: separate;
  border-spacing: 0 8px;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

.reg-clean__list tr td {
  vertical-align: middle;
  font-weight: 600;
  line-height: 100%;
  padding: 3px 0;
}

.reg-clean__list tr td:first-child {
  font-size: 15px;
  color: #fff;
}

.reg-clean__list tr td:last-child {
  min-width: 52px;
  font-size: 13px;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

.reg-clean__list tr td:last-child span {
  display: block;
  background: #FDE845;
  border-radius: 5px;
  padding: 4px 6px;
}

.reg-clean__comment {
  font-size: 18px;
  color: #5C5C5C;
  line-height: 100%;
  margin-top: 50px;
}

@media screen and (width <= 1200px) {
  .reg-clean__comment {
    margin-top: 35px;
  }
}

@media screen and (width <= 768px) {
  .reg-clean__comment {
    font-size: 15px;
    margin-top: 25px;
  }
}

.reg-clean__btn {
  text-align: center;
  margin-top: 50px;
}

@media screen and (width <= 1200px) {
  .reg-clean__btn {
    margin-top: 35px;
  }
}

@media screen and (width <= 768px) {
  .reg-clean__btn {
    margin-top: 25px;
  }
}

.reg-clean__btn .btn-min {
  min-width: 161px;
  box-sizing: border-box;
}

.actions {
  padding-bottom: 50px;
}

.actions__title {
  font-size: 26px;
  line-height: 137%;
  font-weight: bold;
  text-align: center;
}

@media screen and (width <= 768px) {
  .actions__title {
    font-size: 20px;
  }
}

.actions__list {
  display: flex;
  flex-direction: column;
  gap: 27px 0;
  margin-top: 54px;
}

@media screen and (width <= 968px) {
  .actions__list {
    gap: 15px 0;
    margin-top: 30px;
  }
}

@media screen and (width <= 768px) {
  .actions__list {
    gap: 10px 0;
    margin-top: 15px;
  }
}

.actions__list-item {
  flex-grow: 1;
  line-height: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.actions__btn {
  text-align: center;
  margin-top: 45px;
}

@media screen and (width <= 968px) {
  .actions__btn {
    margin-top: 30px;
  }
}

@media screen and (width <= 768px) {
  .actions__btn {
    margin-top: 15px;
  }
}

.actions__btn .blue-btn {
  max-width: 333px;
}

@media screen and (width <= 968px) {
  .actions__btn .blue-btn {
    max-width: 300px;
  }
}

@media screen and (width <= 768px) {
  .actions__btn .blue-btn {
    max-width: 235px;
  }
}

.actions-widg {
  margin: 30px 0 40px;
}

@media screen and (width <= 768px) {
  .actions-widg {
    margin: 30px 0;
  }
}

.actions-widg__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 136%;
  text-align: center;
}

@media screen and (width <= 768px) {
  .actions-widg__title {
    font-size: 20px;
  }
}

.actions-widg__carousel {
  margin: 15px 80px -15px;
}

@media screen and (width <= 968px) {
  .actions-widg__carousel {
    margin-left: 25px;
    margin-right: 25px;
  }
}

@media screen and (width <= 768px) {
  .actions-widg__carousel {
    margin: 0 -15px -15px;
  }
}

.slick-arrow {
  position: absolute;
  top: calc(50% - 18px);
  cursor: pointer;
}

.slick-arrow.slick-prev {
  left: -80px;
}
@media screen and (width <= 968px) {
  .slick-arrow.slick-prev {
    left: -25px;
  }
}
@media screen and (width <= 768px) {
  .slick-arrow.slick-prev {
    left: -10px;
  }
}
.slick-arrow.slick-next {
  right: -80px;
}
@media screen and (width <= 968px) {
  .slick-arrow.slick-next {
    right: -25px;
  }
}
@media screen and (width <= 768px) {
  .slick-arrow.slick-next {
    right: -10px;
  }
}

.actions-widg__carousel {

}

.slick-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 9px;
  padding: 0;
  margin: 13px 0 0;
}

@media screen and (width <= 768px) {
  .slick-dots {
    margin: 0;
  }
}

.slick-dots li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.slick-dots li:before {
  content: "";
  background: #0082B2;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  transition: all 0.2s linear;
}

.slick-dots li:hover:before,
.slick-dots li.slick-active:before{
  background: #FDE845;
}

.slick-dots li button {
  display: none;
}

.actions-widg__carousel-item {
  line-height: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  margin: 15px;
}

.actions-widg__carousel-item img {
  width: 100%;
}

.actions-widg__carousel-item img.desc {

}

@media screen and (width <= 768px) {
  .actions-widg__carousel-item img.desc {
    display: none;
  }
}

.actions-widg__carousel-item img.mob {
  display: none;
}

@media screen and (width <= 768px) {
  .actions-widg__carousel-item img.mob {
    display: block;
  }
}

.blogPage {

}

@media screen and (width <= 768px) {
  .blogPage {
    padding-bottom: 30px;
  }
}

.blogPage--blog {
  position: relative;
}

.blogPage--blog .radius {
  position: absolute;
  line-height: 0;
}

@media screen and (width <= 1200px) {
  .blogPage--blog .radius {
    max-width: 150px;
  }
}

@media screen and (width <= 968px) {
  .blogPage--blog .radius {
    max-width: 115px;
  }
}

@media screen and (width <= 768px) {
  .blogPage--blog .radius {
    max-width: 50px;
  }
}

.blogPage--blog .radius--right {
  right: 0;
}

.blogPage--blog .radius--left {
  left: 0;
}

.blogPage--blog .radius--1 {
  top: -40px;
}

@media screen and (width <= 768px) {
  .blogPage--blog .radius--1 {
    top: -20px;
  }
}

.blogPage--blog .radius--2 {
  top: 800px;
}

.blogPage--blog .radius--3 {
  top: 1420px;
}

.blogPage--blog .radius--4 {
  top: 340px;
}

.blogPage--blog .radius--5 {
  top: 765px;
}

.blogPage--blog .radius--6 {
  top: 1725px;
}

.blogPage__title {
  color: #0082B2;
  text-align: center;
  max-width: 718px;
  margin: 0 auto;
}

.blogPage__date {
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  margin-top: 37px;
}

@media screen and (width <= 968px) {
  .blogPage__date {
    margin-top: 20px;
  }
}

.blogPage__text {
  font-size: 18px;
  line-height: 26px;
  margin-top: 35px;
}

@media screen and (width <= 968px) {
  .blogPage__text {
    margin-top: 20px;
  }
}

@media screen and (width <= 768px) {
  .blogPage__text {
    font-size: 16px;
    line-height: 24px;
  }
}

.blogPage__text h2,
.blogPage__text h3,
.blogPage__text h4,
.blogPage__text h5,
.blogPage__text h6 {
  margin: 35px 0;
}

@media screen and (width <= 968px) {
  .blogPage__text h2,
  .blogPage__text h3,
  .blogPage__text h4,
  .blogPage__text h5,
  .blogPage__text h6 {
    margin: 20px 0;
  }
}

.blogPage__text p {
  margin: 25px 0;
}

@media screen and (width <= 968px) {
  .blogPage__text p {
    margin: 15px 0;
  }
}

.blogPage__back {
  text-align: center;
}

img.round {
  width: 279px;
  height: 279px;
  border-radius: 100%;
}

@media screen and (width <= 968px) {
  img.round {
    width: 220px;
    height: 220px;
  }
}

@media screen and (width <= 768px) {
  img.round {
    width: 200px;
    height: 200px;
  }
}

img.marginBig {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media screen and (width <= 968px) {
  img.marginBig {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}

.alignright {
  float: right;
  margin: 0 0 15px 15px;
}

.alignnone {
  display: block;
  margin: 15px 0;
}

.wp-caption {
  max-width: 100%;
  text-align: center;
  margin: 15px auto;
}

.wp-caption img {
  margin: 0;
  padding: 0;
  border: none;
}

.wp-caption-text {
  font-size: 14px;
  line-height: 1.4;
  color: #666;
  margin-top: 5px;
}

.blogPage__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

@media screen and (width <= 768px) {
  .blogPage__bottom {
    display: none;
    flex-direction: column;
    margin-top: 40px;
  }
}

.blogPage__bottom-cont {
  width: 296px;
  /*padding-left: 75px;*/
}

@media screen and (width <= 968px) {
  .blogPage__bottom-cont {
    padding-left: 0;
  }
}

@media screen and (width <= 768px) {
  .blogPage__bottom-cont {
    width: 100%;
  }
}

.blogPage__bottom-title {
  font-size: 34px;
  color: #03608E;
  line-height: 39px;
  font-weight: 600;
}

@media screen and (width <= 768px) {
  .blogPage__bottom-title {
    font-size: 26px;
    line-height: 30px;
    text-align: center;
  }
}

.blogPage__bottom-btn {
  margin-top: 17px;
}

.blogPage__bottom-btn .blue-btn {
  font-weight: 500;
}

.blogPage__bottom-img {
  flex-shrink: 0;
  flex-grow: 1;
  line-height: 0;
  text-align: right;
  margin-right: -23px;
}

@media screen and (width <= 768px) {
  .blogPage__bottom-img {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-top: 20px;
  }
}

.blogCards.blogCards--blog .blogPage__bottom-img {
  margin-top: 47px;
}

@media screen and (width <= 768px) {
  .blogCards.blogCards--blog .blogPage__bottom-img {
    margin-top: 35px;
  }
}

.blogPage__bottom-img img {
  width: 100%;
  max-width: 542px;
}

.promo {

}

.promo__flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.promo__flex-l {
  position: relative;
  width: 495px;
  padding: 30px 0 50px;
  z-index: 1;
}

@media screen and (width <= 768px) {
  .promo__flex-l {
    padding-top: 0;
  }
}

@media screen and (width <= 550px) {
  .promo.promo--hideImgMob .promo__flex-l {
    width: 100%;
    padding-bottom: 30px;
  }

  .promo.promo--hideImgMob .promo__btns-btn .blue-btn {
    max-width: 260px;
  }
}

.promo__titleMin {
  font-size: 20px;
  color: #06A5A6;
  line-height: 18px;
  font-weight: 500;
  text-decoration: underline;
  text-transform: uppercase;
}

@media screen and (width <= 968px) {
  .promo__titleMin {
    font-size: 16px;
    line-height: 14px;
  }
}

@media screen and (width <= 768px) {
  .promo__titleMin {
    font-size: 14px;
  }
}

.promo__title {
  font-size: 46px;
  line-height: 57px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 20px;
}

@media screen and (width <= 968px) {
  .promo__title {
    font-size: 32px;
    line-height: 42px;
  }
}

@media screen and (width <= 768px) {
  .promo__title {
    font-size: 26px;
    line-height: 35px;
    max-width: 290px;
    margin-top: 11px;
  }
  .promo__title br {
    display: none;
  }
}

@media screen and (width <= 768px) {
  .promo__title span.hideMob {
    display: none;
  }
}

.promo__btns {
  display: flex;
  flex-direction: column;
  max-width: 403px;
  gap: 12px 0;
  margin-top: 123px;
}

@media screen and (width <= 968px) {
  .promo__btns {
    margin-top: 25px;
  }
}

@media screen and (width <= 768px) {
  .promo__btns {
    gap: 9px 0;
    margin-top: 290px;
  }
}

@media screen and (width <= 550px) {
  .promo.promo--hideImgMob .promo__btns {
    margin-top: 25px;
  }
}

.promo__btns-btn {

}

.promo__btns-btn .blue-btn {
  padding: 9px 15px;
  font-weight: 500;
}

@media screen and (width <= 768px) {
  .promo__btns-btn .blue-btn {
    font-size: 18px;
    max-width: 235px;
    padding: 6px 15px;
    border-radius: 5px;
  }
}

.promo__reviews {
  margin-top: 45px;
}

@media screen and (width <= 968px) {
  .promo__reviews {
    margin-top: 30px;
  }
}

@media screen and (width <= 768px) {
  .promo__reviews {
    margin-top: 11px;
  }
}

.promo__reviews-rat {

}

@media screen and (width <= 768px) {
  .promo__reviews-rat svg {
    width: 62px;
    height: auto;
  }
}

.promo__reviews-ratTxt {
  display: flex;
  align-items: center;
  background: url("../img/gg.png") no-repeat 0 0;
  font-size: 18px;
  min-height: 25px;
  padding-left: 35px;
  margin-top: 5px;
}

@media screen and (width <= 768px) {
  .promo__reviews-ratTxt {
    background-size: 12px 12px;
    background-position: 0 3px;
    font-size: 13px;
    padding-left: 15px;
    min-height: 12px;
    margin-top: -3px;
  }
}

.promo__imgRight {
  max-width: calc(100% - 485px);
  max-height: 680px;
}

@media screen and (width <= 968px) {
  .promo__imgRight {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 51%;
  }
}

@media screen and (width <= 968px) {
  .promo__imgRight.desc {
    display: none;
  }
}

.promo__imgRight.mob {
  display: none;
}

@media screen and (width <= 968px) {
  .promo__imgRight.mob {
    display: inline;
    width: 54%;
  }
}

@media screen and (width <= 968px) {
  .promo__imgRight.mob {
    /*width: auto;
    max-width: 344px;
    right: -15px;*/

    width: auto;
    max-height: 455px;
    right: -15px;
    max-width: inherit;
  }
}

@media screen and (width <= 550px) {
  .promo.promo--hideImgMob .promo__imgRight.mob {
    display: none;
  }
}

.options {
  /*background: linear-gradient(to bottom, rgba(0, 195, 197, 0.48) 0%, rgba(255, 255, 255, 0.48) 100% );*/
}

.options__advWrap {
  padding: 30px 0;
  background: linear-gradient(180deg, #E4F9F9 0%, #FFFFFF 100%);
}

@media screen and (width <= 768px) {
  .options__advWrap {
    background: #DEF7F7;
    padding: 35px 0;
  }
}

.options__adv {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (width <= 968px) {
  .options__adv {
    flex-direction: column;
    gap: 15px 0;
  }
}

@media screen and (width <= 768px) {
  .options__adv {
    gap: 33px 0;
  }
}

.options__adv li {
  background: url("../img/okkk.svg") no-repeat 0 3px;
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  padding-left: 35px;
}

@media screen and (width <= 968px) {
  .options__adv li {
    flex-grow: 1;
  }
}

@media screen and (width <= 768px) {
  .options__adv li {
    font-size: 15px;
    background-size: 15px 13px;
    background-position: 0 6px;
    padding-left: 25px;
  }
}

@media screen and (width <= 768px) {
  .options__adv li br {
    display: none;
  }
}

.options__service {
  margin: 72px 0 90px;
}

@media screen and (width <= 1200px) {
  .options__service {
    margin-bottom: 72px;
  }
}

@media screen and (width <= 768px) {
  .options__service {
    margin: 34px 0;
  }
}

.options__service-title {
  font-size: 26px;
  line-height: 100%;
  font-weight: bold;
}

@media screen and (width <= 768px) {
  .options__service-title {
    font-size: 18px;
  }
}

.options__service-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 75px -17px -17px;
}

@media screen and (width <= 1200px) {
  .options__service-list {
    margin: 30px -10px -10px;
  }
}

@media screen and (width <= 768px) {
  .options__service-list {
    margin: 28px -5px -5px;
  }
}

.options__service-list-padd {
  width: 33.3333%;
  padding: 17px;
  box-sizing: border-box;
}

@media screen and (width <= 1200px) {
  .options__service-list-padd {
    padding: 10px;
  }
}

@media screen and (width <= 968px) {
  .options__service-list-padd {
    width: 50%;
  }
}

@media screen and (width <= 550px) {
  .options__service-list-padd {
    max-width: 469px;
    width: 100%;
    padding: 5px;
  }
}

.options__service-list-item {
  position: relative;
  display: block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  height: 360px;
  min-height: 100%;
  transition: all 0.2s linear; 
  overflow: hidden;
}

@media screen and (width <= 1200px) {
  .options__service-list-item {
    height: 300px;
  }
}

.options__service-list-item:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 1px solid #03608E;
  border-radius: 10px;
  opacity: 0;
  transition: all 0.1s linear;
  z-index: 1;
  box-sizing: border-box;
}

.options__service-list-item:hover:before {
  opacity: 1;
}

.options__service-list-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.1s linear;
}

.options__service-list-item:hover .options__service-list-img {
  transform: scale(1.03);
}

.options__service-list-img--desc {

}

@media screen and (width <= 550px) {
  .options__service-list-img--desc {
    display: none;
  }
}

.options__service-list-img--mob {
  display: none;
}

@media screen and (width <= 550px) {
  .options__service-list-img--mob {
    display: inline;
  }
}

.options__service-list-btm {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 310px;
  max-width: 100%;
  height: 140px;
  background: url("../img/grd.png") no-repeat 0 0;
  background-size: 100% 100%;
  padding: 20px 75px 10px 31px;
  box-sizing: border-box;
}

@media screen and (width <= 768px) {
  .options__service-list-btm {
    /*background-image: url("../img/grdMob.png");
    width: 279px;
    height: 145px;
    padding: 27px 40px 10px 20px;*/
    padding: 20px 60px 10px 20px;
  }
}

.options__service-list-icon {
  line-height: 0;
  height: 46px;
}

.options__service-list-icon .lottie-icon {
  width: 46px;
}

.options__service-list-icon .lottie-icon svg {
  transform: scale(1.3) !important;
}

.options__service-list-name {
  font-size: 18px;
  color: #03608E;
  line-height: 26px;
  font-weight: 500;
  margin-top: 13px;
}

.options__service-list-item:hover .options__service-list-name {
  text-decoration: underline;
}

.reg-clean + .myHeight {
  margin-top: 0;
}

.myHeight {
  background: #EFF6FB;
  padding: 43px 0;
  margin-top: 55px;
}

@media screen and (width <= 768px) {
  .myHeight {
    padding: 34px 0;
  }
}

.myHeight__title {
  font-size: 26px;
  line-height: 100%;
  font-weight: bold;
}

@media screen and (width <= 768px) {
  .myHeight__title {
    font-size: 18px;
  }
}

.myHeight__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

@media screen and (width <= 968px) {
  .myHeight__flex {
    display: block;
  }
}

.myHeight__l {
  width: 39.3%;
}

@media screen and (width <= 1200px) {
  .myHeight__l {
    width: 42%;
  }
}

@media screen and (width <= 968px) {
  .myHeight__l {
    width: 100%;
  }
}

.myHeight__r {
  width: 54.9%;
}

@media screen and (width <= 968px) {
  .myHeight__r {
    width: 100%;
    margin-top: 25px;
  }
}

@media screen and (width <= 768px) {
  .myHeight__r {
    margin-top: 20px;
  }
}

.myHeight__subtitle {
  font-size: 18px;
  line-height: 100%;
}

@media screen and (width <= 768px) {
  .myHeight__subtitle {
    font-size: 15px;
  }
}

.myHeight__img {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin-top: 24px;
  line-height: 0;
  overflow: hidden;
}

@media screen and (width <= 968px) {
  .myHeight__img {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.myHeight__img img {
  width: 100%;
}

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

@media screen and (width <= 768px) {
  .myHeight__list {
    margin: -5px;
  }
}

.myHeight__list-padd {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

@media screen and (width <= 768px) {
  .myHeight__list-padd {
    padding: 5px;
  }
}

.myHeight__list-item {
  background: #fff;
  min-height: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  border-radius: 10px;
  padding: 35px 10px;
  box-sizing: border-box;
}

.myHeight__list-count {
  font-size: 42px;
  color: #0082B2;
  font-weight: bold;
}

@media screen and (width <= 768px) {
  .myHeight__list-count {
    font-size: 28px;
  }
}

.myHeight__list-title {
  font-size: 16px;
  line-height: 117%;
  font-weight: 500;
  height: 37px;
  margin-top: 20px;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .myHeight__list-title {
    font-size: 14px;
    height: 32px;
    margin-top: 10px;
  }
}

.myHeight__list-text {
  font-size: 16px;
  line-height: 117%;
  margin-top: 10px;
}

@media screen and (width <= 768px) {
  .myHeight__list-text {
    font-size: 13px;
  }
}

.contacts {

}

.contacts__title {
  font-size: 26px;
  line-height: 137%;
  font-weight: bold;
}

.contacts__subtitle {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  margin-top: 7px;
}

.contacts__form {
  display: flex;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  margin: 64px 0 110px;
}

@media screen and (width <= 968px) {
  .contacts__form {
    flex-direction: column;
    margin: 30px -15px 50px;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }
}

.contacts__form-l {
  display: flex;
  align-items: center;
  width: 41%;
  border-radius: 10px 0 0 10px;
  background: #03608E url("../img/radius.png") no-repeat right bottom;
  color: #fff;
  font-size: 18px;
  padding: 50px;
  box-sizing: border-box;
}

@media screen and (width <= 1200px) {
  .contacts__form-l {
    padding: 30px;
  }
}

@media screen and (width <= 968px) {
  .contacts__form-l {
    width: 100%;
    border-radius: 0;
    padding: 30px 15px;
  }
}

.contacts__form-r {
  width: 59%;
  padding: 40px 35px;
  box-sizing: border-box;
}

@media screen and (width <= 1200px) {
  .contacts__form-r {
    padding: 30px;
  }
}

@media screen and (width <= 968px) {
  .contacts__form-r {
    width: 100%;
    padding: 5px 15px;
  }
}

.contact__form-text {

}

.contact__form-text p {
  margin: 40px 0;
}

.contact__form-text p:first-child {
  margin-top: 0;
}

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

.contact__form-text p a {
  color: inherit;
  text-decoration: none; 
}

.contacts__form-list {
  display: flex;
  flex-direction: column;
  gap: 53px 0;
  padding: 0;
  margin: 65px 0 0;
  list-style: none;
}

@media screen and (width <= 968px) {
  .contacts__form-list {
    margin-top: 40px;
  }
}

.contacts__form-list li {
  position: relative;
  flex-grow: 1;
  padding-left: 47px;
}

.contacts__form-list-icon {
  position: absolute;
  left: 0;
  width: 24px;
  line-height: 0;
}

.contacts__form-list li a {
  color: inherit;
  text-decoration: none;
}

.contacts__form-socials {
  gap: 12px;
  margin-top: 60px;
}

@media screen and (width <= 968px) {
  .contacts__form-socials {
    margin-top: 45px;
  }
}

.contacts__form-socials a svg {
  width: 34px;
  height: 34px;
}

.contacts__form-row {
  margin: 15px 0;
}

.contacts__form-row:first-child {
  margin-top: 0;
}

.contacts__form-row:last-child {
  margin-bottom: 0;
}

.contacts__form-row--tw {
  display: flex;
  justify-content: space-between;
}

@media screen and (width <= 768px) {
  .contacts__form-row--tw {
    flex-direction: column;
    margin: 0;
  }
}

.contacts__form-it {
  width: calc(50% - 4px);
}

@media screen and (width <= 768px) {
  .contacts__form-it {
    width: 100%;
  }
  .contacts__form-it:not(first-child) {
    margin-top: 15px;
  }
}

.contacts__form-row p {
  font-size: 15px;
  line-height: 20px;
  font-weight: 200;
  margin: 0 0 2px;
}

.contacts__form-row textarea.text-input-big {
  height: 57px;
}

@media screen and (width <= 768px) {
  .contacts__form-row textarea.text-input-big {
    height: 100px;
  }
}

.contacts__form-row--btn {
  text-align: right;
}

@media screen and (width <= 768px) {
  .contacts__form-row--btn {
    text-align: center;
  }
}

.contacts__form-row--btn .blue-btn {
  padding: 7px 15px;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.2s linear;
  max-width: 295px;
}

@media screen and (width <= 768px) {
  .contacts__form-row--btn .blue-btn {
    max-width: 354px;
  }
}

.contacts__form-row--check {
  margin-top: 50px;
}

@media screen and (width <= 968px) {
  .contacts__form-row--check {
    margin-top: 20px;
  }
}

.radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 14px 0 28px;
}

@media screen and (width <= 768px) {
  .radio-list {
    padding: 12px 0 0;
  }
}

.radio-list__item {
  position: relative;
  cursor: pointer;
}

.radio-list input {
  position: absolute;
  left: -9999px;
}

.radio-list input:checked + .radio-list__checked:before {
  opacity: 1;
}

.radio-list__checked {
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #DBE9F0;
}

.radio-list__checked:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url("../img/radio-checked.svg") no-repeat 0 0;
  border-radius: 100%;
  opacity: 0;
  transition: all 0.2s linear;
}

.radio-list__title {
  font-size: 18px;
  line-height: 20px;
  padding-left: 30px;
}

.whatWh {
  margin: 60px 0 33px;
}

.whatWh__title {
  font-size: 26px;
  font-weight: bold;
}

.whatWh__block {
  display: flex;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin-top: 33px;
  overflow: hidden;
}

.whatWh__block-img {
  width: 37.4%;
  line-height: 0;
}

@media screen and (width <= 968px) {
  .whatWh__block-img {
    display: none;
  }
}

.whatWh__block-img img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.whatWh__block-right {
  display: flex;
  align-items: center;
  width: 62.6%;
  padding: 10px 10px 10px 40px;
  box-sizing: border-box;
}

@media screen and (width <= 968px) {
  .whatWh__block-right {
    width: 100%;
    padding: 10px 10px;
  }
}

.whatWh__block-list {
  list-style: none;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 165%;
  margin: 0;
  padding: 0;
}

.whatWh__block-list li {
  position: relative;
  padding-left: 33px;
}

.whatWh__block-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 9px);
  width: 18px;
  height: 18px;
  background: url(../img/checkRadio.svg) no-repeat 0 0;
  background-size: 18px;
}

.beforeAftBig {
  padding: 9px 0 48px;
}

@media screen and (width <= 768px) {
  .beforeAftBig {
    padding-bottom: 0;
  }
}

.beforeAftBig__textTop {
  margin-bottom: 115px;
}

@media screen and (width <= 1200px) {
  .beforeAftBig__textTop {
    margin-bottom: 65px;
  }
}

@media screen and (width <= 768px) {
  .beforeAftBig__textTop {
    margin-bottom: 35px;
  }
}

.beforeAftBig__image {
  height: auto !important;
  border-radius: 10px;
  overflow: hidden;
}

.beforeAftBig__image img {
  width: 100%;
}

.beforeAftBig__imageMini {
  display: flex;
  flex-wrap: wrap;
}

.beforeAftBig__imageMini-img {
  width: 11.1111%;
}

.beforeAftBig__imageMini-img img {
  width: 100%;
}

.beforeAftBig__textBottom {
  margin-top: 65px;
}

@media screen and (width <= 768px) {
  .beforeAftBig__textBottom {
    margin-top: 35px;
  }
}

.carImages {
  background: #EFF6FB;
  padding: 40px 0;
}

@media screen and (width <= 768px) {
  .carImages {
    padding: 30px 0;
  }
}

.carImages__title {
  font-size: 26px;
  line-height: 42px;
  font-weight: bold;
  text-align: center;
}

.carImages__list {
  margin: 25px 80px 0;
}

@media screen and (width <= 968px) {
  .carImages__list {
    margin-left: 25px;
    margin-right: 25px;
  }
}

@media screen and (width <= 768px) {
  .carImages__list {
    margin: 10px -7px 0;
  }

  .carImages__list .slick-dots {
    margin-top: 13px;
  }
}

.carImages__list-item {
  padding: 0 7px;
}

.carImages__list-item img {
  width: 100%;
  height: 221px;
  object-fit: cover;
  border-radius: 10px;
}

@media screen and (width <= 968px) {
  .carImages__list-item img {
    height: 190px;
  }
}

@media screen and (width <= 500px) {
  .carImages__list-item img {
    height: 170px;
  }
}

.footer {
  z-index: 9998;
  position: relative;
  background: #03608e;
}

.footer__top {
  padding: 80px 0;
}

@media screen and (width <= 968px) {
  .footer__top {
    padding: 50px 0;
  }
}

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

@media screen and (width <= 968px) {
  .footer__flex {
    display: block;
  }
}

.footer__left {
  gap: 0 90px;
  display: flex;
}

@media screen and (width <= 1200px) {
  .footer__left {
    gap: 0 50px;
  }
}

@media screen and (width <= 968px) {
  .footer__left {
    justify-content: space-between;
  }
}

@media screen and (width <= 768px) {
  .footer__left {
    display: block;
  }
}

.footer__right {
  text-align: right;
}

@media screen and (width <= 968px) {
  .footer__right {
    text-align: center;
    margin-top: 50px;
  }
}

@media screen and (width <= 768px) {
  .footer__right {
    margin-top: 30px;
  }
}

.footer__logo {
  width: 166px;
}

.footer__nav {
  color: #fff;
}

@media screen and (width <= 768px) {
  .footer__nav {
    padding-top: 30px;
  }
}

.footer__nav-title {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  line-height: 120%;
}

.footer__nav-title span {
  border-bottom: 1px solid #ffffff4d;
  padding-bottom: 8px;
  display: inline-block;
}

.footer__nav-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.footer__nav-list li {
  color: #fff;
  margin-top: 10px;
  font-size: 15px;
}

.footer__nav-list li:first-child {
  margin-top: 12px;
}

.footer__nav-list li a {
  color: inherit;
  text-decoration: none;
  transition: color .2s linear;
}

.footer__nav-list li a:hover,
.footer__nav-list li.current-menu-item a {
  color: #fde845;
}

.footer__phone {
  color: #ffe624;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
}

.footer__workTime {
  color: #fff;
  margin: 10px 0 95px;
  font-size: 18px;
  line-height: 120%;
}

@media screen and (width <= 968px) {
  .footer__workTime {
    margin-bottom: 10px;
  }
}

.footer .soc-big {
  justify-content: flex-end;
  padding: 0;
}

@media screen and (width <= 968px) {
  .footer .soc-big {
    justify-content: center;
  }
}

.footer__mail {
  color: #fff;
  margin-top: 11px;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
}

.footer__bottom {
  color: #fff;
  padding: 60px 0 30px;
}

@media screen and (width <= 968px) {
  .footer__bottom {
    padding: 20px 0 30px;
  }
}

@media screen and (width <= 768px) {
  .footer__bottom {
    padding: 15px 0;
  }
}

.footer__copyright {
  justify-content: space-between;
  font-weight: 200;
  display: flex;
}

.footer__copyright-left {
  font-size: 13px;
}

@media screen and (width <= 700px) {
  .footer__copyright-left {
    font-size: 11px;
  }
}

.footer__copyright-right {
  font-size: 15px;
}

@media screen and (width <= 700px) {
  .footer__copyright-right {
    text-align: right;
    font-size: 11px;
  }
}

.footer__links {
  border-top: 1px solid #ffffff4d;
  gap: 10px 30px;
  margin: 5px 0 0;
  padding: 5px 0 0;
  list-style: none;
  display: flex;
}

@media screen and (width <= 700px) {
  .footer__links {
    justify-content: center;
    gap: 10px 15px;
  }
}

.footer__links li {
  font-size: 13px;
  font-weight: 100;
}

@media screen and (width <= 768px) {
  .footer__links li {
    font-size: 11px;
  }
}

.footer__links li a {
  color: inherit;
  text-decoration: none;
  transition: color .2s linear;
}

.footer__links li a:hover {
  color: #fde845;
}

.text-input-big {
  box-sizing: border-box;
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 57px;
  margin: 0;
  padding: 0 15px;
  font-size: 18px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.text-input-big::placeholder {
  color: #000;
}

textarea.text-input-big {
  resize: none;
  height: 160px;
  padding: 15px;
  overflow: auto;
}

.selected-big {
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 57px;
  margin: 0;
  padding: 0 15px;
  font-size: 18px;
  color: #000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  appearance: none;
  -webkit-appearance: none;
}

.selected-big:focus {
  outline: none;
}

.btn-min {
  color: #fff;
  background: #0082b2;
  border: none;
  border-radius: 25px;
  padding: 7px 24px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s linear;
  display: inline-block;
}

.btn-min:hover {
  background: #03608e;
}

.blue-btn {
  display: inline-block;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border: 2px solid #03608E;
  background: #03608E;
  border-radius: 10px;
  width: 100%;
  margin: 0;
  padding: 7px 15px;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s linear;
  box-sizing: border-box;
}

.blue-btn--green {
  background: #00C3C5;
  border-color: #00C3C5;
}

@media screen and (width <= 1200px) {
  .blue-btn {
    font-size: 22px;
  }
}

.blue-btn.blue-btn--sum.op0 {
  opacity: 0;
}

.blue-btn.blue-btn--hoverColor span {
  font-size: 26px;
  padding-left: 10px;
}

@media (hover: hover) and (pointer: fine) {
  .blue-btn.blue-btn--hoverBorder:hover {
    background: #fff;
    color: #03608E;
  }
  
  .blue-btn--green.blue-btn--hoverBorder:hover {
    color: #00C3C5;
  }
}

.blue-btn.blue-btn--hoverColor {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 5px 15px;
  min-height: 45px;
}

@media (hover: hover) and (pointer: fine) {
  .blue-btn.blue-btn--hoverColor:hover {
    background: #028CAA;
    border-color: #028CAA;
  }
}

.soc-big {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  display: flex;
}

.soc-big a {
  line-height: 0;
  text-decoration: none;
  transition: opacity .2s linear;
}

.soc-big a:hover {
  opacity: .7;
}

.loader {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}

.min-order-msg {
  font-size: 14px;
  color: red;
  font-weight: 500;
  text-align: center;
  margin-top: 5px;
}

.contactFormPopup {
  padding: 55px 25px 45px;
  max-width: 405px;
}

@media screen and (width <= 768px) {
  .contactFormPopup {
    padding: 55px 5px 45px;
  }
}
/*
@media screen and (width <= 420px) {
  .contactFormPopup {
    max-width: 350px;
  }
}

@media screen and (width <= 360px) {
  .contactFormPopup {
    max-width: 330px;
  }
}*/

.contactFormPopup--thank {
  padding: 50px 25px 60px;
}

@media screen and (width <= 550px) {
  .contactFormPopup--thank {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.contactFormPopup__logo {
  text-align: center;
}

.contactFormPopup .service__form-text {
  padding: 6px;
  color: #595959 !important;
  margin-top: 8px;
}

@media screen and (width <= 768px) {
  .contactFormPopup .service__form-text {
    margin-top: 3px;
  }
}

.contactFormPopup .service__form-inputs {
  margin-top: 10px;
}

@media screen and (width <= 768px) {
  .contactFormPopup .service__form-inputs {
    margin-top: 0;
  }
}

.contactFormPopup .text-input {
  height: 38px;
}

.contactFormPopup textarea.text-input {
  height: 122px;
  padding: 6px 12px;
}

.contactFormPopup .service__form-comm {
  color: #595959;
  padding: 4px 6px;
}

 