@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyr-Light.woff2") format("woff2"),
    url("../fonts/HelveticaNeueCyr-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"),
    url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Thin.woff2") format("woff2"),
    url("../fonts/Roboto-Thin.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"),
    url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyr-Medium.woff2") format("woff2"),
    url("../fonts/HelveticaNeueCyr-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyr-Roman.woff2") format("woff2"),
    url("../fonts/HelveticaNeueCyr-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font-family: "Roboto";
  font-weight: 400;
  color: #000;
  background: #fafafa;
}

body.active {
  overflow: hidden;
  position: relative;
}

body.active::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 50;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
}

@media screen and (max-width: 1260px) {
  .container {
    width: 970px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    width: 750px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 30px;
  }
}

.title {
  font-size: 54px;
  line-height: 63px;
  font-weight: 200;
}

@media only screen and (max-width: 1260px) {
  .title {
    font-size: 42px;
    line-height: 53px;
  }
}

@media only screen and (max-width: 991px) {
  .title {
    font-size: 32px;
    line-height: 41px;
  }
}

@media only screen and (max-width: 767px) {
  .title {
    font-size: 22px;
    line-height: 30px;
  }
}

.title span {
  color: #dd0003;
  font-weight: 300;
}

.btn {
  height: 100px;
  background: #dd0003;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: 300ms;
}

@media only screen and (max-width: 1260px) {
  .btn {
    height: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .btn {
    height: 70px;
  }
}

.btn:hover {
  background: #c00003;
}

.btn span {
  margin-left: 5px;
}

.wrapper {
  overflow: hidden;
  position: relative;
}

.header {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 200;
}

@media only screen and (max-width: 991px) {
  .header {
    padding: 25px 0;
    position: fixed;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
  }
}

@media only screen and (max-width: 767px) {
  .header {
    padding: 10px 0;
  }
}

.header__top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

@media only screen and (max-width: 991px) {
  .header__top {
    border-bottom: 0;
  }
}

.header__top::before {
  content: "";
  display: block;
  width: 30%;
  height: 100px;
  background: #dd0003;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 1900px) {
  .header__top::before {
    width: 20%;
  }
}

@media only screen and (max-width: 1260px) {
  .header__top::before {
    height: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .header__top::before {
    display: none;
  }
}

.header__top-items {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  justify-content: space-between;
}

.header__start {
  display: flex;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 395px;
  margin-right: 41px;
}

/* .header__logo img:last-child {
  display: none;
}
 */
@media only screen and (max-width: 1260px) {
  .header__logo {
    width: 265px;
    margin-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .header__logo {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header__logo {
    width: 120px;
  }

  /*   .header__logo img:first-child {
    display: none;
  }

  .header__logo img:last-child {
    display: block;
  } */
}

.header__logo img {
  width: 100%;
  height: 100%;
}

.header__city {
  font-size: 12px;
  letter-spacing: 0.05em;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
}

@media only screen and (max-width: 991px) {
  .header__city {
    display: none;
  }
}

.header__city-mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header__city-mobile {
    display: block;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 3px;
    letter-spacing: 0.05em;
    color: #504f4d;
    opacity: 0.8;
  }
}

.header__item {
  display: flex;
  align-items: center;
}

.header__tel {
  display: flex;
  align-items: center;
  margin-right: 48px;
}

@media only screen and (max-width: 1260px) {
  .header__tel {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .header__tel {
    flex-direction: row-reverse;
    margin-right: 37px;
  }
}

@media only screen and (max-width: 359px) {
  .header__tel {
    margin-right: 16px;
  }
}

.header__tel p {
  font-size: 12px;
  font-family: "HelveticaNeueCyr";
  letter-spacing: 0.05em;
  color: #504f4d;
  opacity: 0.8;
  margin-left: 14px;
}

@media only screen and (max-width: 991px) {
  .header__tel p {
    display: none;
  }
}

.header__tel span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-right: 16px;
}

@media only screen and (max-width: 991px) {
  .header__tel span {
    margin-right: 0;
    margin-left: 7px;
  }
}

.header__tel img:nth-child(3) {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header__tel img:nth-child(3) {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .header__tel img:nth-child(2) {
    display: none;
  }
}

.header__btn {
  width: 270px;
}

@media only screen and (max-width: 991px) {
  .header__btn {
    display: none;
  }
}

.header__nav-items {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .header__nav-items {
    display: none;
  }
}

.header__nav-items li {
  width: 100%;
}

.header__nav-items li:first-child a {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.header__nav-items li a {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding: 42px 0;
  text-align: center;
  font-size: 14px;
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #262626;
}

@media only screen and (max-width: 1260px) {
  .header__nav-items li a {
    padding: 30px 0;
    font-size: 13px;
  }
}

.header__nav-items li a:hover {
  background: #f0f0f0;
}

.header__burger {
  display: none;
  width: 27px;
}

@media only screen and (max-width: 991px) {
  .header__burger {
    display: block;
  }
}

.header__burger a {
  display: block;
  cursor: pointer;
  padding: 12px 0;
}

.header__burger a span {
  position: relative;
  display: block;
  width: 17px;
  height: 2px;
  left: 7px;
  background: rgba(221, 0, 4, 0.5);
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .header__burger a span {
    height: 1px;
  }
}

.header__burger a span:before,
.header__burger a span:after {
  content: "";
  width: 27px;
  height: 2px;
  position: absolute;
  left: -5px;
  background: rgba(221, 0, 4, 0.5);
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .header__burger a span:before,
  .header__burger a span:after {
    height: 1px;
  }
}

.header__burger a span:before {
  top: -8px;
}

.header__burger a span:after {
  top: 8px;
}

.header__burger a.active span {
  background: transparent;
}

.header__burger a.active span:before {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__burger a.active span:after {
  transform: rotate(-45deg) translate(5px, -6px);
}

.header__menu {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header__menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -300px;
    overflow-y: auto;
    z-index: 100;
    width: 280px;
    background: #fff;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    transition: 300ms;
  }
  .header__menu.active {
    right: 0;
  }
}

.header__menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 18px 24px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  left: 0;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.header__menu-strong {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__menu-tel {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.header__menu-tel img {
  margin-right: 8px;
}

.header__menu-head {
  font-size: 18px;
  text-transform: uppercase;
  color: #737271;
  padding: 0 23px;
  margin-bottom: 16px;
}

.header__menu-nav li a {
  font-weight: 300;
  font-size: 14px;
  padding: 16px 23px;
  border-bottom: 1px solid #f0f0f0;
  display: block;
  text-transform: uppercase;
}

.header__menu-block {
  margin-top: 56px;
}

.header__menu-block ul li a {
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}

.header__menu-btn {
  height: 60px;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 17px auto 0 auto;
  background: #dd0003;
}

.header__menu-end {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.showcase {
  margin-top: 200px;
  position: relative;
}

@media only screen and (max-width: 1260px) {
  .showcase {
    margin-top: 155px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase {
    margin-top: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase {
    margin-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__title {
    font-size: 26px;
    line-height: 34px;
  }
}

.showcase__slide {
  position: relative;
  height: 990px;
}

@media only screen and (max-width: 1760px) {
  .showcase__slide {
    height: 900px;
  }
}

@media only screen and (max-width: 1260px) {
  .showcase__slide {
    height: 800px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__slide {
    height: 770px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide {
    height: 660px;
  }
}

.showcase__slide:first-child {
  padding-top: 100px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .showcase__slide:first-child {
    padding-top: 50px;
  }
}

.showcase__slide:first-child {
  position: relative;
}

.showcase__slide:first-child::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  top: 0;
  left: 0;
  z-index: 2;
}

.showcase__slide:first-child .showcase__content {
  transform: translateY(190px);
}

.showcase__slide:first-child .showcase__title {
  max-width: 791px;
  margin: 0 auto;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:first-child .showcase__title {
    max-width: 650px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__slide:first-child .showcase__title {
    max-width: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:first-child .showcase__title {
    max-width: 100%;
  }
}

.showcase__slide:first-child .showcase__btn {
  margin: 43px auto 0 auto;
}

.showcase__slide:nth-child(2) {
  padding-top: 295px;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(2) {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(2) {
    padding-top: 50px;
  }
}

.showcase__slide:nth-child(2) .showcase__title {
  max-width: 805px;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(2) .showcase__title {
    max-width: 650px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__slide:nth-child(2) .showcase__title {
    max-width: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(2) .showcase__title {
    max-width: 100%;
    text-align: center;
  }
  .showcase__slide:nth-child(2) .showcase__title span {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(2) .showcase__btn {
    margin: 31px auto 0 auto;
  }
}

.showcase__slide:nth-child(3) {
  padding-top: 100px;
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(3) {
    padding-top: 50px;
  }
}

.showcase__slide:nth-child(3) .showcase__title {
  max-width: 575px;
  text-align: center;
  margin: 0 auto;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(3) .showcase__title {
    max-width: 460px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__slide:nth-child(3) .showcase__title {
    max-width: 350px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(3) .showcase__title {
    max-width: 100%;
  }
}

.showcase__slide:nth-child(3) .showcase__btn {
  margin: 43px auto 0 auto;
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(3) .showcase__btn {
    margin: 31px auto 0 auto;
  }
}

.showcase__slide:nth-child(4) {
  padding-top: 265px;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(4) {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(4) {
    padding-top: 173px;
  }
}

.showcase__slide:nth-child(4) .showcase__title {
  max-width: 565px;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(4) .showcase__title {
    max-width: 450px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__slide:nth-child(4) .showcase__title {
    max-width: 350px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(4) .showcase__title {
    max-width: 100%;
  }
}

.showcase__slide:nth-child(5) {
  padding-top: 265px;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(5) {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(5) {
    padding-top: 50px;
  }
}

.showcase__slide:nth-child(5) .showcase__title {
  max-width: 675px;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(5) .showcase__title {
    max-width: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__slide:nth-child(5) .showcase__title {
    max-width: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(5) .showcase__title {
    max-width: 100%;
    text-align: center;
  }

  .showcase__slide:nth-child(5) .showcase__title span {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(5) .showcase__btn {
    margin: 31px auto 0 auto;
  }
}

.showcase__slide:nth-child(6) {
  padding-top: 235px;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(6) {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(6) {
    padding-top: 50px;
  }
}

.showcase__slide:nth-child(6) .showcase__title {
  max-width: 712px;
}

@media only screen and (max-width: 991px) {
  .showcase__slide:nth-child(6) .showcase__title {
    max-width: 550px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(6) .showcase__title {
    max-width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(6) .showcase__btn {
    margin: 31px auto 0 auto;
  }
}

.showcase__slide:nth-child(7) {
  padding-top: 100px;
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(7) {
    padding-top: 48px;
  }
}

.showcase__slide:nth-child(7) .showcase__title {
  max-width: 758px;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(7) .showcase__title {
    max-width: 650px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__slide:nth-child(7) .showcase__title {
    max-width: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(7) .showcase__title {
    max-width: 100%;
  }
}

.showcase__slide:nth-child(7) .showcase__btn {
  margin: 43px auto 0 auto;
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(7) .showcase__btn {
    margin: 31px auto 0 auto;
  }
}

.showcase__slide:nth-child(8) {
  padding-top: 330px;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(8) {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(8) {
    padding-top: 50px;
  }
}

.showcase__slide:nth-child(8) .showcase__title {
  max-width: 480px;
  margin-right: 0;
  margin-left: auto;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(8) .showcase__title {
    max-width: 400px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__slide:nth-child(8) .showcase__title {
    max-width: 300px;
    margin-right: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(8) .showcase__title {
    margin: 0;
    max-width: 100%;
    text-align: center;
  }

  .showcase__slide:nth-child(8) .showcase__title span {
    display: block;
  }
}

.showcase__slide:nth-child(8) .showcase__btn {
  margin: 43px 105px 0 auto;
}

@media only screen and (max-width: 1260px) {
  .showcase__slide:nth-child(8) .showcase__btn {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__slide:nth-child(8) .showcase__btn {
    margin: 31px auto 0 auto;
  }
}

.showcase__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.showcase__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .showcase__image img:first-child {
    display: none;
  }
}

.showcase__image img:last-child {
  display: none;
}

@media only screen and (max-width: 767px) {
  .showcase__image img:last-child {
    display: block;
  }
}

.showcase .container {
  position: relative;
  z-index: 5;
}

.showcase__btn {
  width: 369px;
  margin-top: 43px;
}

@media only screen and (max-width: 767px) {
  .showcase__btn {
    margin-top: 30px;
    width: 300px;
  }
}

.showcase__arrows {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 120px;
  z-index: 5;
  width: 1170px;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 1260px) {
  .showcase__arrows {
    width: 970px;
    bottom: 60px;
  }
}

@media screen and (max-width: 991px) {
  .showcase__arrows {
    width: 750px;
  }
}

@media screen and (max-width: 767px) {
  .showcase__arrows {
    width: 100%;
    padding: 0 30px;
    justify-content: center;
  }
}

.showcase__arrow-next {
  margin-left: 10px;
}

@media only screen and (max-width: 767px) {
  .showcase__arrow-next {
    margin-left: 6px;
  }
}

.showcase .slick-arrow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 0;
  font-size: 0;
  background: #ffffff;
  cursor: pointer;
  z-index: 5;
  transition: 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .showcase .slick-arrow {
    height: 46px;
    width: 46px;
  }
  .showcase .slick-arrow img {
    width: 20px;
  }
}

.showcase .slick-arrow.slick-disabled {
  opacity: 0.8;
}

.showcase .slick-arrow.slick-disabled:hover {
  background: #ffffff;
}

.showcase .slick-arrow:hover {
  background-color: #ebebeb;
}

.problem {
  padding: 115px 0 120px 0;
  background: url(../images/problem.png) no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 1260px) {
  .problem {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 991px) {
  .problem {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .problem {
    padding: 0;
    background: #fff;
  }
}

@media only screen and (max-width: 767px) {
  .problem .container {
    padding: 0;
  }
}

.problem__inner {
  position: relative;
}

.problem__map {
  width: 220px;
  background: #ffffff;
  border-radius: 190px;
  position: absolute;
  top: -285px;
  right: 0;
  padding: 39px 20px;
}

@media only screen and (max-width: 991px) {
  .problem__map {
    display: none;
  }
}

.problem__map-head {
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.problem__map-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  width: 152px;
  margin: 0 auto;
  height: 152px;
}

.problem__map-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.problem__header {
  display: grid;
  grid-template-columns: 146px 123px 110px 172px 200px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  padding-right: 175px;
  padding-bottom: 112px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 100px;
}

@media only screen and (max-width: 1260px) {
  .problem__header {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .problem__header {
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .problem__header {
    padding: 60px 30px;
    border: 0;
    background: url(../images/problem-mobile.png) no-repeat;
    background-size: cover;
    background-position: center;
    grid-template-columns: 1fr;
    row-gap: 0;
    margin-bottom: 0;
  }
}

.problem__header-icon {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
  .problem__header-icon {
    margin-bottom: 0;
    margin-right: 16px;
    min-width: 32px;
    width: 32px;
  }
}

.problem__header-text {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.05em;
  color: #504f4d;
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .problem__header-text {
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .problem__header-block {
    padding: 25px 0;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
}

@media only screen and (max-width: 767px) {
  .problem__header-block:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}

@media only screen and (max-width: 767px) {
  .problem__end {
    padding: 50px 30px 60px 30px;
    background: #f2f2f2;
  }
}

.problem__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

@media only screen and (max-width: 991px) {
  .problem__info {
    display: block;
    margin-bottom: 20px;
  }
}

.problem__info-title {
  max-width: 513px;
  font-size: 48px;
  line-height: 56px;
}

@media only screen and (max-width: 1260px) {
  .problem__info-title {
    font-size: 40px;
    line-height: 48px;
    margin-right: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .problem__info-title {
    font-size: 32px;
    line-height: 38px;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .problem__info-title {
    font-size: 22px;
    line-height: 30px;
  }
  .problem__info-title span {
    display: block;
  }
}

.problem__info-text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #504f4d;
  opacity: 0.8;
  max-width: 566px;
}

@media only screen and (max-width: 1260px) {
  .problem__info-text {
    font-size: 16px;
    line-height: 24px;
    max-width: 450px;
  }
}

@media only screen and (max-width: 991px) {
  .problem__info-text {
    max-width: 100%;
  }
}

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

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

.problem__head {
  font-size: 18px;
  line-height: 28px;
  color: #504f4d;
  opacity: 0.8;
  font-weight: 300;
  max-width: 352px;
  margin-bottom: 6px;
}

@media only screen and (max-width: 1260px) {
  .problem__head {
    font-size: 16px;
    line-height: 22px;
    max-width: 320px;
  }
}

@media only screen and (max-width: 991px) {
  .problem__head {
    max-width: 100%;
  }
}

.problem__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-bottom: 57px;
}

@media only screen and (max-width: 1260px) {
  .problem__blocks {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .problem__blocks {
    grid-template-columns: 1fr;
    margin-bottom: 33px;
  }
}

.problem__block {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  padding-left: 12px;
}

.problem__block:nth-child(12) {
  grid-column-start: 2;
  grid-column-end: 3;
}

@media only screen and (max-width: 1260px) {
  .problem__block:nth-child(12) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}

.problem__block:last-child {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 5;
  grid-row-end: 6;
}

@media only screen and (max-width: 1260px) {
  .problem__block:last-child {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: auto;
    grid-row-end: auto;
  }
}

.problem__block::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #dd0003;
  margin-right: 10px;
}

.problem__btn {
  width: 456px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .problem__btn {
    width: calc(100% + 60px);
    position: relative;
    left: -30px;
  }
  .problem__btn span {
    display: none;
  }
}

.different {
  padding: 102px 0 120px 0;
}

@media only screen and (max-width: 1260px) {
  .different {
    padding: 90px 0 100px 0;
  }
}

@media only screen and (max-width: 991px) {
  .different {
    padding: 70px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .different {
    padding: 50px 0 60px 0;
  }
}

.different__title {
  margin-bottom: 33px;
}

.different__title span {
  display: block;
}

.different__hide {
  display: none;
}

.different__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}

@media only screen and (max-width: 991px) {
  .different__items {
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .different__items {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

.different__item {
  background: #ffffff;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  padding: 42px 70px 50px 31px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .different__item {
    padding: 42px 50px 50px 25px;
    height: 255px;
  }
}

@media only screen and (max-width: 767px) {
  .different__item:nth-child(5),
  .different__item:last-child {
    height: 192px;
  }
}

.different__number {
  font-size: 16px;
  font-family: "HelveticaNeueCyr";
  opacity: 0.8;
  color: #504f4d;
  position: absolute;
  top: 50%;
  right: 29px;
  transform: translate(0, -50%);
}

@media only screen and (max-width: 767px) {
  .different__number {
    right: 24px;
    font-size: 14px;
  }
}

.different__icon {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

@media only screen and (max-width: 767px) {
  .different__icon {
    margin-bottom: 23px;
  }
}

.different__more {
  margin-top: 32px;
}

@media only screen and (max-width: 767px) {
  .different__more {
    margin-top: 23px;
  }
}

.different__head {
  font-size: 18px;
  line-height: 30px;
  max-width: 377px;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  .different__head {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}

.different__more {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #dd0003;
  display: inline-block;
  position: relative;
}

.different__more:hover::before {
  opacity: 0;
}

.different__more::before {
  content: "";
  display: block;
  bottom: -8px;
  left: 0;
  position: absolute;
  transition: 300ms;
  width: 127px;
  height: 1px;
  border-bottom: 1px dashed #dd0003;
}

.terapiya {
  padding: 102px 0 120px 0;
  background: #fff;
  background-image: url(../images/terapiya-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 1260px) {
  .terapiya {
    padding: 80px 0 100px 0;
  }
}

@media only screen and (max-width: 991px) {
  .terapiya {
    padding: 65px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .terapiya {
    padding: 48px 0 60px 0;
    background: #f2f2f2;
  }
}

.terapiya__title {
  text-align: center;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .terapiya__title {
    text-align: left;
  }
}

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

@media only screen and (max-width: 991px) {
  .terapiya__items {
    display: block;
  }
}

.terapiya__right {
  min-width: 570px;
  width: 570px;
  margin-left: 62px;
}

@media only screen and (max-width: 1260px) {
  .terapiya__right {
    min-width: 480px;
    width: 480px;
    margin-left: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .terapiya__right {
    min-width: auto;
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .terapiya__right {
    margin-top: 18px;
  }
}

.terapiya__info {
  font-size: 18px;
  line-height: 28px;
  font-family: "HelveticaNeueCyr";
  margin-bottom: 38px;
  color: #504f4d;
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .terapiya__info {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 25px;
    opacity: 1;
  }
}

.terapiya__info p {
  margin-bottom: 15px;
}

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

.terapiya__info p span {
  font-size: 14px;
  line-height: 24px;
}

@media only screen and (max-width: 767px) {
  .terapiya__info p span {
    font-size: 16px;
    line-height: 22px;
  }
}

.terapiya__gallery {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .terapiya__gallery {
    margin: 0 auto 33px auto;
    overflow-x: auto;
    width: calc(100% + 60px);
    position: relative;
    left: -30px;
    padding: 0 30px;
  }
}

.terapiya__gallery-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .terapiya__gallery-image {
    min-width: 191px;
    width: 191px;
  }
}

.terapiya__gallery-image:last-child {
  margin-right: 0;
}

.terapiya__gallery-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.terapiya__item {
  width: 100%;
}

.terapiya__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 60px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .terapiya__blocks {
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-bottom: 0;
  }
}

.terapiya__btn {
  width: 369px;
}

@media only screen and (max-width: 767px) {
  .terapiya__btn {
    width: 100%;
  }
}

.terapiya__btn.mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .terapiya__btn.mobile {
    display: flex;
  }
}

@media only screen and (max-width: 767px) {
  .terapiya__btn.desk {
    display: none;
  }
}

.terapiya__number {
  font-size: 16px;
  font-family: "HelveticaNeueCyr";
  color: #aca79c;
  opacity: 0.8;
  padding-left: 5px;
  margin-bottom: 4px;
}

@media only screen and (max-width: 767px) {
  .terapiya__number {
    margin-bottom: 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
  }
}

.terapiya__text {
  font-size: 16px;
  line-height: 26px;
  color: #504f4d;
  opacity: 0.8;
  font-family: "HelveticaNeueCyr";
  padding-left: 5px;
}

@media only screen and (max-width: 767px) {
  .terapiya__text {
    grid-column-start: 1;
    grid-column-end: 3;
    padding-left: 43px;
  }
}

.terapiya__block {
  border-top: 1px dashed #ccbdbd;
}

@media only screen and (max-width: 767px) {
  .terapiya__block {
    border: 0;
  }
  .terapiya__block-inner {
    display: grid;
    -moz-column-gap: 20px;
    column-gap: 20px;
    grid-template-columns: 23px 1fr;
    row-gap: 8px;
    position: relative;
  }
  .terapiya__block-inner::before {
    content: "";
    display: block;
    width: 1px;
    height: 95%;
    left: 12px;
    border-left: 1px dashed #ccbdbd;
    position: absolute;
    top: 23px;
  }
}

@media only screen and (max-width: 767px) {
  .terapiya__block:last-child .terapiya__block-inner::before {
    display: none;
  }
}

.terapiya__block:nth-child(2) {
  border-right: 1px dashed #ccbdbd;
  padding-bottom: 30px;
  border-bottom: 1px dashed #ccbdbd;
}

@media only screen and (max-width: 767px) {
  .terapiya__block:nth-child(2) {
    border: 0;
    padding-bottom: 0;
  }
}

.terapiya__block:first-child {
  border-bottom: 1px dashed #ccbdbd;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .terapiya__block:first-child {
    border: 0;
  }
}

.terapiya__block:first-child::before {
  content: "";
  display: block;
  left: 0;
  position: absolute;
  bottom: -60px;
  height: 60px;
  width: 12px;
  background: #fff;
  border-right: 1px dashed #ccbdbd;
}

@media only screen and (max-width: 767px) {
  .terapiya__block:first-child::before {
    display: none;
  }
}

.terapiya__block:nth-child(4) {
  border-top: 0;
}

.terapiya__block span {
  width: 33px;
  height: 23px;
  border-radius: 50%;
  display: block;
  margin-bottom: 10px;
  background: #fff;
  position: relative;
  transform: translateY(-12px);
  padding: 0 5px;
}

@media only screen and (max-width: 767px) {
  .terapiya__block span {
    margin-bottom: 0;
    transform: none;
    background: rgba(232, 202, 202, 0.3);
    padding: 0;
    width: 23px;
  }
}

.terapiya__block span::after {
  content: "";
  display: block;
  background: rgba(232, 202, 202, 0.3);
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .terapiya__block span::after {
    display: none;
  }
}

.terapiya__block span::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #dd0003;
}

.terapiya__block:first-child span {
  padding-left: 0;
  width: 28px;
}

@media only screen and (max-width: 767px) {
  .terapiya__block:first-child span {
    width: 23px;
  }
}

.terapiya__block:first-child span::before {
  left: 40%;
}

@media only screen and (max-width: 767px) {
  .terapiya__block:first-child span::before {
    left: 50%;
  }
}

.terapiya__block:nth-child(3) span {
  padding-left: 0;
  width: 28px;
}

@media only screen and (max-width: 767px) {
  .terapiya__block:nth-child(3) span {
    width: 23px;
  }
}

.terapiya__block:nth-child(3) span::before {
  left: 40%;
}

@media only screen and (max-width: 767px) {
  .terapiya__block:nth-child(3) span::before {
    left: 50%;
  }
}

.specialists {
  padding: 105px 0 120px 0;
  background: #fff;
}

@media only screen and (max-width: 1260px) {
  .specialists {
    padding: 80px 0 100px 0;
  }
}

@media only screen and (max-width: 767px) {
  .specialists {
    padding: 70px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .specialists {
    padding: 50px 0 60px 0;
  }
}

.specialists__title {
  text-align: center;
  margin-bottom: 52px;
}

@media only screen and (max-width: 1260px) {
  .specialists__title {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .specialists__title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .specialists__title {
    margin-bottom: 20px;
  }
}

.specialists__image {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
}

@media only screen and (max-width: 1400px) {
  .specialists__image {
    height: 260px;
  }
}

@media only screen and (max-width: 991px) {
  .specialists__image {
    height: 300px;
  }
}

@media only screen and (max-width: 420px) {
  .specialists__image {
    height: 205px;
  }
}

.specialists__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.specialists .slick-slide {
  margin: 0 15px;
}

.specialists .slick-list {
  margin: 0 -15px;
}

@media only screen and (max-width: 1400px) {
  .specialists__slider {
    padding: 0 60px;
  }
}

@media only screen and (max-width: 991px) {
  .specialists__slider {
    padding: 0 50px;
  }
}

.specialists__block {
  background: #fafafa;
  padding: 27px 15px 30px 15px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .specialists__block {
    padding: 12px 15px;
  }
}

.specialists__name {
  font-size: 16px;
  color: #504f4d;
  line-height: 22px;
  max-width: 200px;
  margin: 0 auto 7px auto;
}

.specialists__profile {
  font-size: 12px;
  line-height: 12px;
  color: #a8a7a6;
  margin-bottom: 20px;
  font-family: "HelveticaNeueCyr";
}

.specialists__more {
  text-transform: uppercase;
  color: #dd0003;
  letter-spacing: 0.05em;
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .specialists__more {
    display: block;
  }
}

.specialists__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #ffffff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translate(0, -50%);
  z-index: 5;
  cursor: pointer;
  transition: 300ms;
}

@media only screen and (max-width: 991px) {
  .specialists__arrow {
    width: 40px;
    height: 40px;
  }
  .specialists__arrow img {
    width: 18px;
  }
}

.specialists__arrow:hover {
  background: #f1f1f1;
}

.specialists__arrow-prev {
  left: -95px;
}

@media only screen and (max-width: 1400px) {
  .specialists__arrow-prev {
    left: -30px;
  }
}

@media only screen and (max-width: 991px) {
  .specialists__arrow-prev {
    left: -10px;
  }
}

.specialists__arrow-next {
  right: -95px;
}

@media only screen and (max-width: 1400px) {
  .specialists__arrow-next {
    right: -30px;
  }
}

@media only screen and (max-width: 991px) {
  .specialists__arrow-next {
    right: -10px;
  }
}

.specialists__content {
  position: relative;
}

.consultation {
  background-color: #fff;
  background-image: url(../images/consultation-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 767px) {
  .consultation {
    background-image: url(../images/consultation-bg-mobile.png);
  }
}

.consultation__inner {
  padding: 100px 0 120px 0;
  position: relative;
}

@media only screen and (max-width: 1260px) {
  .consultation__inner {
    padding: 80px 0 100px 0;
  }
}

@media only screen and (max-width: 991px) {
  .consultation__inner {
    padding: 75px 0 500px 0;
  }
}

@media only screen and (max-width: 767px) {
  .consultation__inner {
    padding: 50px 0 340px 0;
  }
}

.consultation__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -155px;
  bottom: 0;
}

@media only screen and (max-width: 1260px) {
  .consultation__image {
    width: 750px;
    left: -100px;
  }
}

@media only screen and (max-width: 991px) {
  .consultation__image {
    width: 900px;
    left: -10px;
  }
}

@media only screen and (max-width: 767px) {
  .consultation__image {
    width: 612px;
    left: 65%;
    transform: translate(-50%, 0);
  }
}

.consultation__title {
  text-align: center;
  margin-bottom: 45px;
}

@media only screen and (max-width: 1260px) {
  .consultation__title {
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 991px) {
  .consultation__title {
    margin-bottom: 20px;
    text-align: left;
  }
}

.consultation__items {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 991px) {
  .consultation__items {
    display: block;
  }
}

.consultation__start {
  font-size: 18px;
  line-height: 28px;
  font-family: "HelveticaNeueCyr";
  opacity: 0.8;
  min-width: 570px;
  width: 570px;
  position: relative;
  z-index: 5;
  margin-right: 30px;
}

@media only screen and (max-width: 1260px) {
  .consultation__start {
    min-width: 480px;
    width: 480px;
  }
}

@media only screen and (max-width: 991px) {
  .consultation__start {
    min-width: auto;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .consultation__start {
    font-size: 16px;
    line-height: 22px;
  }
}

.consultation__item {
  width: 100%;
  position: relative;
  z-index: 5;
}

.consultation__info {
  font-size: 18px;
  line-height: 28px;
  font-family: "HelveticaNeueCyr";
  opacity: 0.8;
  margin-bottom: 43px;
}

@media only screen and (max-width: 767px) {
  .consultation__info {
    font-size: 16px;
    line-height: 22px;
  }
}

.consultation__inputs {
  margin-bottom: 48px;
}

.consultation__input {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .consultation__input {
    margin-bottom: 22px;
  }
}

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

.consultation__input input {
  width: 100%;
  height: 100px;
  background: #ffffff;
  padding: 0 46px;
  border: 0;
  font-size: 18px;
  color: #504f4d;
}

@media only screen and (max-width: 1260px) {
  .consultation__input input {
    height: 80px;
    padding: 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  .consultation__input input {
    padding: 0 20px;
    font-size: 16px;
    height: 70px;
  }
}

.consultation__input input::-moz-placeholder {
  color: #504f4d;
}

.consultation__input input::-ms-input-placeholder {
  color: #504f4d;
}

.consultation__input input::placeholder {
  color: #504f4d;
}

.consultation__head {
  font-size: 14px;
  font-family: "HelveticaNeueCyr";
  opacity: 0.5;
  margin-bottom: 13px;
}

@media only screen and (max-width: 767px) {
  .consultation__head {
    margin-bottom: 8px;
  }
}

.consultation__btn {
  text-align: center;
  width: 100%;
}

.sertificate {
  background: #fff;
  padding: 100px 0 120px 0;
}

@media only screen and (max-width: 1260px) {
  .sertificate {
    padding: 80px 0 100px 0;
  }
}

@media only screen and (max-width: 767px) {
  .sertificate {
    padding: 70px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .sertificate {
    padding: 50px 0 60px 0;
  }
}

.sertificate__title {
  text-align: center;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1260px) {
  .sertificate__title {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .sertificate__title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .sertificate__title {
    margin-bottom: 13px;
  }
}

.sertificate .slick-slide {
  margin: 0 15px;
}

.sertificate .slick-list {
  margin: 0 -15px;
}

@media only screen and (max-width: 1400px) {
  .sertificate__slider {
    padding: 0 60px;
  }
}

@media only screen and (max-width: 991px) {
  .sertificate__slider {
    padding: 0 50px;
  }
}

.sertificate__content {
  position: relative;
}

.sertificate__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #ffffff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translate(0, -50%);
  z-index: 5;
  cursor: pointer;
  transition: 300ms;
}

@media only screen and (max-width: 991px) {
  .sertificate__arrow {
    width: 40px;
    height: 40px;
  }
  .sertificate__arrow img {
    width: 18px;
  }
}

.sertificate__arrow:hover {
  background: #f1f1f1;
}

.sertificate__arrow-prev {
  left: -95px;
}

@media only screen and (max-width: 1400px) {
  .sertificate__arrow-prev {
    left: -30px;
  }
}

@media only screen and (max-width: 991px) {
  .sertificate__arrow-prev {
    left: -10px;
  }
}

.sertificate__arrow-next {
  right: -95px;
}

@media only screen and (max-width: 1400px) {
  .sertificate__arrow-next {
    right: -30px;
  }
}

@media only screen and (max-width: 991px) {
  .sertificate__arrow-next {
    right: -10px;
  }
}

.sertificate__slide {
  border: 1px solid #eeeeee;
  padding: 16px;
}

.sertificate__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.states {
  padding: 102px 0 0 0;
}

@media only screen and (max-width: 991px) {
  .states {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .states {
    padding: 50px 0 56px 0;
  }
}

.states__title {
  text-align: center;
  margin-bottom: 45px;
}

@media only screen and (max-width: 991px) {
  .states__title {
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .states__title {
    margin-bottom: 20px;
  }
}

.states__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 22px;
}

@media only screen and (max-width: 1260px) {
  .states__items {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .states__items {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .states__items {
    display: block;
  }
}

.states__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 38px;
}

@media only screen and (max-width: 1260px) {
  .states__image {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .states__image {
    margin-bottom: 14px;
  }
}

@media only screen and (max-width: 639px) {
  .states__image {
    height: 200px;
  }
}

.states__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.states__head {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  color: #555555;
}

@media only screen and (max-width: 1260px) {
  .states__head {
    font-size: 18px;
    line-height: 20px;
  }
}

.states__head:hover {
  color: #dd0003;
}

@media only screen and (max-width: 767px) {
  .states__item {
    width: 100%;
    margin-bottom: 40px;
  }
  .states__item:last-child {
    margin-bottom: 0;
  }
}

.states__item:first-child {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 4;
}

@media only screen and (max-width: 991px) {
  .states__item:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}

.states__item:first-child .states__head {
  font-size: 36px;
  line-height: 50px;
  max-width: 537px;
}

@media only screen and (max-width: 1260px) {
  .states__item:first-child .states__head {
    font-size: 26px;
    line-height: 36px;
    max-width: 400px;
  }
}

@media only screen and (max-width: 991px) {
  .states__item:first-child .states__head {
    max-width: 100%;
    font-size: 18px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 1260px) {
  .states__item:first-child .states__image {
    height: 400px;
  }
}

@media only screen and (max-width: 991px) {
  .states__item:first-child .states__image {
    height: auto;
  }
}

@media only screen and (max-width: 639px) {
  .states__item:first-child .states__image {
    height: 200px;
  }
}

.states__item:nth-child(2) {
  grid-column-start: 5;
  grid-column-end: 6;
}

@media only screen and (max-width: 991px) {
  .states__item:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}

.states__item:nth-child(3) {
  grid-column-start: 5;
  grid-column-end: 6;
  grid-row-start: 2;
  grid-row-end: 3;
}

@media only screen and (max-width: 991px) {
  .states__item:nth-child(3) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}

.states__content {
  position: relative;
}

.states__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 365px;
  background: #fff;
  color: #dd0003;
}

@media only screen and (max-width: 1260px) {
  .states__btn {
    width: 320px;
  }
}

@media only screen and (max-width: 991px) {
  .states__btn {
    display: none;
  }
}

.states__btn:hover {
  background: #dd0003;
  color: #fff;
}

.form {
  position: relative;
  z-index: 5;
  padding-top: 100px;
}

@media only screen and (max-width: 991px) {
  .form {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .form {
    background: #fff;
    padding-top: 50px;
  }
}

.form__title {
  text-align: center;
  margin-bottom: 15px;
}

.form__info {
  font-size: 18px;
  line-height: 30px;
  color: #504f4d;
  opacity: 0.8;
  font-family: "HelveticaNeueCyr";
  text-align: center;
  max-width: 970px;
  margin: 0 auto 57px auto;
}

@media only screen and (max-width: 1260px) {
  .form__info {
    font-size: 16px;
    line-height: 22px;
    max-width: 870px;
    margin-bottom: 40px;
  }
}

.form__content {
  background: #ffffff;
}

.form__content-inner {
  padding: 48px;
}

@media only screen and (max-width: 767px) {
  .form__content-inner {
    padding: 0;
  }
}

.form__inputs {
  display: flex;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .form__inputs {
    display: block;
    margin-bottom: 22px;
  }
}

.form__input {
  width: 100%;
  margin-right: 30px;
}

@media only screen and (max-width: 1260px) {
  .form__input {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .form__input {
    margin-right: 0;
    margin-bottom: 22px;
  }
  .form__input:last-child {
    margin-bottom: 0;
  }
}

.form__input:last-child {
  margin-right: 0;
}

.form__input input {
  width: 100%;
  height: 100px;
  background: #f5f5f5;
  border: 0;
  padding: 0 46px;
  font-size: 18px;
  height: 100px;
  color: #504f4d;
}

@media only screen and (max-width: 1260px) {
  .form__input input {
    padding: 0 20px;
    font-size: 16px;
    height: 70px;
  }
}

.form__input input::-moz-placeholder {
  color: #504f4d;
}

.form__input input::-ms-input-placeholder {
  color: #504f4d;
}

.form__input input::placeholder {
  color: #504f4d;
}

.form__head {
  font-size: 14px;
  font-family: "HelveticaNeueCyr";
  margin-bottom: 15px;
  opacity: 0.5;
}

@media only screen and (max-width: 767px) {
  .form__head {
    margin-bottom: 8px;
  }
}

.form__area {
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .form__area {
    margin-bottom: 22px;
  }
}

.form__area textarea {
  width: 100%;
  height: 200px;
  background: #f5f5f5;
  border: 0;
  padding: 40px 46px;
  font-size: 18px;
  line-height: 30px;
  color: #504f4d;
  resize: none;
}

@media only screen and (max-width: 1260px) {
  .form__area textarea {
    font-size: 16px;
    padding: 20px;
    line-height: 24px;
    height: 160px;
  }
}

.form__area textarea::-moz-placeholder {
  color: #504f4d;
}

.form__area textarea::-ms-input-placeholder {
  color: #504f4d;
}

.form__area textarea::placeholder {
  color: #504f4d;
}

.form__btn {
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .form__btn {
    margin-top: 38px;
  }
}

.contacts {
  width: 100%;
  height: 1100px;
  margin-top: -483px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .contacts {
    height: 400px;
    margin-top: 0;
  }
}

.contacts::before {
  content: "";
  display: block;
  width: 2331px;
  height: 360px;
  background: #fafafa;
  -webkit-filter: blur(75px);
  filter: blur(75px);
  border-radius: 50%;
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 4;
}

@media only screen and (max-width: 767px) {
  .contacts::before {
    width: 1200px;
    height: 112px;
    top: -20px;
  }
}

.contacts #map {
  width: 100%;
  height: 100%;
}

.contacts .ymaps-2-1-79-map {
  width: 100%;
  height: 100%;
}

.contacts [class*="ymaps-2"][class*="-ground-pane"] {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
}

.contacts iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contacts__content {
  position: absolute;
  width: 100%;
  bottom: 292px;
  z-index: 5;
}

@media only screen and (max-width: 767px) {
  .contacts__content {
    bottom: 240px;
  }
}

.contacts__items {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 767px) {
  .contacts__items {
    display: block;
    padding: 0;
    border: 0;
  }
}

.contacts__head {
  font-size: 12px;
  font-family: "HelveticaNeueCyr";
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #504f4d;
  opacity: 0.8;
  margin-bottom: 8px;
}

.contacts__block {
  margin-bottom: 12px;
}

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

.contacts__item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "HelveticaNeueCyr";
}

.contacts__item img {
  margin-right: 7px;
}

.footer {
  background: #fff;
}

@media only screen and (max-width: 991px) {
  .footer__top {
    padding: 55px 0 30px 0;
  }
}

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

@media only screen and (max-width: 991px) {
  .footer__top-nav {
    display: block;
  }
}

.footer__top-nav li {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .footer__top-nav li {
    margin-bottom: 20px;
  }
  .footer__top-nav li:last-child {
    margin-bottom: 0;
  }
}

.footer__top-nav li a {
  padding: 40px 0;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1260px) {
  .footer__top-nav li a {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer__top-nav li a {
    padding: 0;
    border: 0;
    text-align: center;
  }
}

.footer__top-nav li a:hover {
  background: #eeeeee;
}

.footer__top-nav li:first-child a {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 991px) {
  .footer__top-nav li:first-child a {
    border: 0;
  }
}

.footer__center {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

@media only screen and (max-width: 1260px) {
  .footer__center {
    padding: 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .footer__center {
    padding: 0;
    border: 0;
  }
}

.footer__center::before {
  content: "";
  display: block;
  width: 30%;
  height: 100px;
  background: #dd0003;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 1900px) {
  .footer__center::before {
    width: 20%;
  }
}

@media only screen and (max-width: 1260px) {
  .footer__center::before {
    display: none;
  }
}

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

@media only screen and (max-width: 1260px) {
  .footer__center-items {
    display: block;
  }
}

.footer__start {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1260px) {
  .footer__start {
    justify-content: center;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__start {
    display: block;
    margin-bottom: 30px;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 195px;
  margin-right: 35px;
}

@media only screen and (max-width: 767px) {
  .footer__logo {
    width: 120px;
    margin: 0 auto 15px auto;
  }
}

.footer__logo img {
  width: 100%;
  height: 100%;
}

.footer__social {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .footer__social {
    justify-content: center;
  }
}

.footer__social li {
  margin-right: 8px;
}

.footer__social li:last-child {
  margin-right: 0;
}

.footer__social li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social li a:hover {
  transform: scale(1.1);
}

.footer__adres {
  font-size: 16px;
  font-family: "HelveticaNeueCyr";
  font-weight: 500;
  margin-right: 40px;
}

@media only screen and (max-width: 767px) {
  .footer__adres {
    margin-right: 0;
    margin-bottom: 33px;
    text-align: center;
  }
}

.footer__item {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1260px) {
  .footer__item {
    justify-content: center;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__item {
    display: block;
    margin-bottom: 28px;
  }
}

.footer__tel {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 767px) {
  .footer__tel {
    display: block;
    text-align: center;
  }
}

.footer__tel span {
  margin-right: 15px;
}

@media only screen and (max-width: 767px) {
  .footer__tel span {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
}

.footer__tel img {
  margin-right: 14px;
}

@media only screen and (max-width: 767px) {
  .footer__tel img {
    transform: translateY(4px);
  }
}

.footer__tel p {
  font-size: 12px;
  font-family: "HelveticaNeueCyr";
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #504f4d;
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .footer__tel p {
    display: inline-block;
  }
}

.footer__btn {
  width: 270px;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 1260px) {
  .footer__btn {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .footer__btn {
    margin-top: 35px;
  }
}

.footer__btn.mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .footer__btn.mobile {
    display: flex;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .footer__btn.desk {
    display: none;
  }
}

.footer__end {
  padding: 22px 0;
  font-size: 12px;
  line-height: 18px;
  color: #dd0003;
}

@media only screen and (max-width: 1260px) {
  .footer__end {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .footer__end {
    padding: 0;
  }
}

.footer__end a {
  display: block;
}

.modal-form {
  padding: 0;
  max-width: 738px;
  width: 100%;
}

.modal-form__inner {
  position: relative;
  padding: 90px 84px 100px 84px;
}

@media only screen and (max-width: 767px) {
  .modal-form__inner {
    padding: 45px 26px 52px 26px;
  }
}

.modal-form__strong {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 31px;
  right: 31px;
}

@media only screen and (max-width: 767px) {
  .modal-form__strong {
    top: 15px;
    right: 15px;
    width: 17px;
  }
}

.modal-form__info {
  font-size: 18px;
  line-height: 28px;
  font-family: "HelveticaNeueCyr";
  max-width: 527px;
  opacity: 0.8;
  color: #504f4d;
  margin-bottom: 43px;
}

@media only screen and (max-width: 767px) {
  .modal-form__info {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 17px;
  }
}

.modal-form__input {
  width: 100%;
  margin-bottom: 30px;
}

.modal-form__input:last-child {
  margin-bottom: 0;
}

.modal-form__input input {
  width: 100%;
  height: 100px;
  background: #f5f5f5;
  border: 0;
  padding: 0 46px;
  font-size: 18px;
  height: 100px;
  color: #504f4d;
}

.consultation__input input {
  background: #f5f5f5;
}

@media only screen and (max-width: 1260px) {
  .modal-form__input input {
    padding: 0 20px;
    font-size: 16px;
    height: 70px;
  }
}

.modal-form__input input::-moz-placeholder {
  color: #504f4d;
}

.modal-form__input input::-ms-input-placeholder {
  color: #504f4d;
}

.modal-form__input input::placeholder {
  color: #504f4d;
}

.modal-form__head {
  font-size: 14px;
  font-family: "HelveticaNeueCyr";
  margin-bottom: 15px;
  opacity: 0.5;
}

@media only screen and (max-width: 767px) {
  .modal-form__head {
    margin-bottom: 8px;
  }
}

.modal-form__btn {
  width: 100%;
  text-align: center;
}

.fancybox-button.fancybox-close-small {
  display: none;
}

@media only screen and (max-width: 767px) {
  .fancybox-slide--html {
    padding: 30px;
  }
}

.modal-different {
  padding: 0;
  max-width: 738px;
  width: 100%;
}

.modal-different__inner {
  position: relative;
  padding: 85px;
}

@media only screen and (max-width: 767px) {
  .modal-different__inner {
    padding: 42px 26px;
  }
}

.modal-different__strong {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 31px;
  right: 31px;
}

@media only screen and (max-width: 767px) {
  .modal-different__strong {
    top: 15px;
    right: 15px;
    width: 17px;
  }
}

.modal-different__items {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 767px) {
  .modal-different__items {
    display: block;
  }
}

.modal-different__number {
  white-space: nowrap;
  font-size: 16px;
  font-family: "HelveticaNeueCyr";
  opacity: 0.8;
  color: #504f4d;
  margin-right: 39px;
}

@media only screen and (max-width: 767px) {
  .modal-different__number {
    font-size: 14px;
    margin-right: 0;
    margin-bottom: 6px;
  }
}

.modal-different__name {
  font-size: 36px;
  line-height: 46px;
  font-weight: 300;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .modal-different__name {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 16px;
  }
}

.modal-different__text {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  opacity: 0.8;
  color: #504f4d;
}

.about {
  padding: 300px 0 100px 0;
}

@media only screen and (max-width: 1260px) {
  .about {
    padding: 240px 0 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .about {
    padding: 160px 0 70px 0;
  }
}

@media only screen and (max-width: 767px) {
  .about {
    padding: 120px 0 50px 0;
  }
}

.about__title {
  text-align: center;
  margin-bottom: 20px;
}

.about__items {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .about__items {
    display: block;
  }
}

.about__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 570px;
  min-width: 570px;
  margin-left: 32px;
}

@media only screen and (max-width: 1260px) {
  .about__image {
    min-width: 520px;
    width: 520px;
    margin-left: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .about__image {
    min-width: auto;
    width: 100%;
    margin-left: 0;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .about__image {
    min-height: 207px;
  }
}

.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about__image img:last-child {
  display: none;
}

@media only screen and (max-width: 767px) {
  .about__image img:last-child {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .about__image img:first-child {
    display: none;
  }
}

.about__info {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1260px) {
  .about__info {
    font-size: 18px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .about__info {
    font-size: 16px;
    line-height: 26px;
  }
}

.about__text {
  font-size: 18px;
  line-height: 28px;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
}

@media only screen and (max-width: 1260px) {
  .about__text {
    font-size: 16px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .about__text {
    font-weight: 300;
  }
}

.about__text span {
  font-weight: 500;
}

.idea {
  margin-bottom: 120px;
}

@media only screen and (max-width: 1260px) {
  .idea {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .idea {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .idea {
    margin-bottom: 60px;
  }
}

.idea__title {
  text-align: center;
  max-width: 957px;
  margin: 0 auto 14px auto;
}

@media only screen and (max-width: 1260px) {
  .idea__title {
    max-width: 850px;
  }
}

@media only screen and (max-width: 991px) {
  .idea__title {
    max-width: 650px;
  }
}

.idea__title span {
  display: block;
}

.idea__head {
  text-align: center;
  font-size: 18px;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  margin-bottom: 36px;
}

@media only screen and (max-width: 767px) {
  .idea__head {
    font-size: 16px;
    margin-bottom: 26px;
  }
}

.idea__item {
  display: flex;
  margin-bottom: 30px;
  background: #ffffff;
  padding: 63px 65px 48px 48px;
}

@media only screen and (max-width: 1260px) {
  .idea__item {
    padding: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .idea__item {
    padding: 30px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .idea__item {
    padding: 34px 28px 25px 28px;
    display: block;
    margin-bottom: 10px;
  }
}

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

.idea__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 205px;
  width: 205px;
  margin-right: 40px;
  min-height: 160px;
}

@media only screen and (max-width: 991px) {
  .idea__image {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .idea__image {
    margin-right: 0;
    margin-bottom: 18px;
    width: 100%;
    min-width: auto;
  }
}

.idea__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.idea__text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
}

@media only screen and (max-width: 1260px) {
  .idea__text {
    font-size: 20px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .idea__text {
    font-size: 16px;
    line-height: 28px;
  }
}

.idea__text span {
  font-weight: 500;
}

.work {
  background: url(../images/work-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 105px 0 120px 0;
}

@media only screen and (max-width: 1260px) {
  .work {
    padding: 80px 0 100px 0;
  }
}

@media only screen and (max-width: 991px) {
  .work {
    padding: 75px 0 90px 0;
  }
}

@media only screen and (max-width: 767px) {
  .work {
    padding: 50px 0 60px 0;
    background-color: #fff;
  }
}

.work__current {
  margin-bottom: 100px;
}

@media only screen and (max-width: 1260px) {
  .work__current {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .work__current {
    margin-bottom: 75px;
  }
}

@media only screen and (max-width: 767px) {
  .work__current {
    margin-bottom: 50px;
  }
}

.work__current-title {
  text-align: center;
  margin-bottom: 35px;
}

@media only screen and (max-width: 991px) {
  .work__current-title {
    margin-bottom: 20px;
  }
}

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

@media only screen and (max-width: 991px) {
  .work__current-items {
    display: block;
  }
}

.work__current-item {
  width: 100%;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .work__current-item {
    margin-right: 0;
    margin-bottom: 27px;
  }
  .work__current-item:last-child {
    margin-bottom: 0;
  }
}

.work__current-item:last-child {
  margin-right: 0;
}

.work__current-head {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  line-height: 28px;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
  margin-bottom: 31px;
}

@media only screen and (max-width: 767px) {
  .work__current-head {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 21px;
  }
}

.work__current-head > span {
  position: relative;
  width: 23px;
  height: 23px;
  min-width: 23px;
  background: rgba(232, 202, 202, 0.3);
  border-radius: 50%;
  margin-right: 22px;
}

@media only screen and (max-width: 767px) {
  .work__current-head > span {
    margin-right: 20px;
  }
}

.work__current-head > span::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  background: #dd0003;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.work__current-head p span {
  font-weight: 500;
}

.work__current-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 311px;
}

@media only screen and (max-width: 1260px) {
  .work__current-image {
    height: 260px;
  }
}

@media only screen and (max-width: 991px) {
  .work__current-image {
    height: 320px;
  }
}

@media only screen and (max-width: 767px) {
  .work__current-image {
    height: 210px;
  }
}

.work__current-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.work__unikal-title {
  text-align: center;
  margin-bottom: 34px;
}

.work__unikal-title span {
  display: block;
}

.work__unikal-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

@media only screen and (max-width: 991px) {
  .work__unikal-items {
    grid-template-columns: 1fr;
  }
}

.work__unikal-item {
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width: 767px) {
  .work__unikal-item {
    padding-top: 18px;
    padding-bottom: 22px;
  }
}

.work__unikal-item:first-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.work__unikal-item:nth-child(2) {
  border-bottom: 0;
}

.work__unikal-number {
  font-size: 16px;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
  margin-right: 80px;
  transform: translateY(5px);
}

@media only screen and (max-width: 1260px) {
  .work__unikal-number {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .work__unikal-number {
    margin-right: 28px;
    font-size: 14px;
  }
}

.work__unikal-head {
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
}

@media only screen and (max-width: 1260px) {
  .work__unikal-head {
    font-size: 18px;
    line-height: 30px;
  }
}

.work__unikal-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

@media only screen and (max-width: 767px) {
  .work__unikal-image {
    width: 184px;
    margin: 7px auto 0 auto;
  }
}

.work__unikal-end {
  font-size: 16px;
  line-height: 28px;
  font-family: #504f4d;
  opacity: 0.8;
  font-weight: 300;
  font-family: "HelveticaNeueCyr";
  margin-top: 18px;
}

@media only screen and (max-width: 1260px) {
  .work__unikal-end {
    line-height: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .work__unikal-end {
    margin-top: 11px;
  }
}

.atmosfera {
  padding: 110px 0 120px 0;
  background: #f7f7f7;
}

@media only screen and (max-width: 1260px) {
  .atmosfera {
    padding: 90px 0 100px 0;
  }
}

@media only screen and (max-width: 991px) {
  .atmosfera {
    padding: 75px 0 85px 0;
  }
}

@media only screen and (max-width: 767px) {
  .atmosfera {
    padding: 50px 0 60px 0;
  }
}

.atmosfera__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 28px;
  column-gap: 28px;
}

@media only screen and (max-width: 991px) {
  .atmosfera__items {
    display: block;
  }
}

.atmosfera__info {
  font-size: 18px;
  line-height: 28px;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
}

@media only screen and (max-width: 1260px) {
  .atmosfera__info {
    font-size: 16px;
    line-height: 22px;
  }
}

.atmosfera__info p {
  margin-bottom: 20px;
}

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

.atmosfera__title {
  margin-bottom: 27px;
}

@media only screen and (max-width: 767px) {
  .atmosfera__title {
    margin-bottom: 22px;
  }
}

.atmosfera__title.mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .atmosfera__title.mobile {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .atmosfera__title.desk {
    display: none;
  }
}

.atmosfera__head {
  font-size: 22px;
  line-height: 31px;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
}

@media only screen and (max-width: 1260px) {
  .atmosfera__head {
    font-size: 18px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 991px) {
  .atmosfera__head {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .atmosfera__head {
    font-size: 16px;
    line-height: 22px;
  }
}

.atmosfera__head.mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .atmosfera__head.mobile {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .atmosfera__head.desk {
    display: none;
  }
}

.atmosfera__head span {
  font-weight: 500;
}

.atmosfera__item {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 28px;
}

@media only screen and (max-width: 767px) {
  .atmosfera__item {
    padding-top: 16px;
    padding-bottom: 20px;
  }
}

.atmosfera__item:first-child {
  border: 0;
  padding-top: 0;
}

@media only screen and (max-width: 767px) {
  .atmosfera__item:first-child {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
}

.atmosfera__item:nth-child(2) {
  padding-top: 0;
}

@media only screen and (max-width: 991px) {
  .atmosfera__item:nth-child(2) {
    grid-row-start: 1;
    grid-row-end: 2;
    border: 0;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .atmosfera__item:nth-child(2) {
    padding-bottom: 0;
  }
}

.atmosfera__item:nth-child(3) {
  padding-top: 0;
}

.atmosfera__gallery {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .atmosfera__gallery {
    overflow-x: auto;
    width: calc(100% + 60px);
    position: relative;
    left: -30px;
    padding: 0 30px;
  }
}

.atmosfera__gallery-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .atmosfera__gallery-item {
    min-width: 190px;
    width: 190px;
  }
}

.atmosfera__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.atmosfera__gallery-item:last-child {
  margin-right: 0;
}

.atmosfera__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
}

@media only screen and (max-width: 767px) {
  .atmosfera__header {
    margin-bottom: 10px;
  }
}

.atmosfera__header-head {
  font-size: 20px;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  .atmosfera__header-head {
    font-size: 18px;
  }
}

.atmosfera__header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.atmosfera__text {
  font-size: 16px;
  line-height: 24px;
  color: #504f4d;
  opacity: 0.8;
  font-family: "HelveticaNeueCyr";
  font-weight: 300;
  max-width: 420px;
}

@media only screen and (max-width: 991px) {
  .atmosfera__text {
    max-width: 100%;
  }
}

.atmosfera__banner {
  background: #fafafa;
  padding: 46px 360px 48px 55px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  position: relative;
  margin-top: 72px;
}

@media only screen and (max-width: 1260px) {
  .atmosfera__banner {
    padding: 40px 300px 40px 40px;
    font-size: 20px;
    line-height: 32px;
    margin-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .atmosfera__banner {
    padding: 24px 27px 215px 27px;
    font-size: 16px;
    line-height: 28px;
    background: #fff;
    margin-top: 48px;
  }
}

.atmosfera__banner-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 51px;
}

@media only screen and (max-width: 1260px) {
  .atmosfera__banner-image {
    right: 35px;
    width: 340px;
  }
}

@media only screen and (max-width: 767px) {
  .atmosfera__banner-image {
    width: 268px;
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translate(-50%, 0);
  }
}

.atmosfera__banner span {
  font-weight: 500;
}

.stactionar {
  padding: 300px 0 105px 0;
}

@media only screen and (max-width: 1260px) {
  .stactionar {
    padding: 240px 0 85px 0;
  }
}

@media only screen and (max-width: 991px) {
  .stactionar {
    padding: 180px 0 65px 0;
  }
}

@media only screen and (max-width: 767px) {
  .stactionar {
    padding: 122px 0 48px 0;
  }
}

.stactionar__title {
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .stactionar__title {
    margin-bottom: 28px;
  }
}

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

@media only screen and (max-width: 991px) {
  .stactionar__items {
    display: block;
  }
}

.stactionar__images {
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .stactionar__images {
    margin-bottom: 24px;
  }
}

.stactionar__image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .stactionar__image {
    margin-right: 10px;
  }
}

.stactionar__image:last-child {
  margin-right: 0;
}

.stactionar__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.stactionar__item {
  width: 100%;
  margin-left: 30px;
}

@media only screen and (max-width: 991px) {
  .stactionar__item {
    margin-left: 0;
    margin-top: 24px;
  }
}

.stactionar__info {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 18px;
}

@media only screen and (max-width: 1260px) {
  .stactionar__info {
    font-size: 20px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .stactionar__info {
    font-size: 18px;
    line-height: 26px;
  }
}

.stactionar__end {
  font-size: 18px;
  font-weight: 300;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
  line-height: 28px;
}

@media only screen and (max-width: 1260px) {
  .stactionar__end {
    font-size: 16px;
    line-height: 22px;
  }
}

.stactionar__end span {
  font-weight: 500;
}

.stactionar-type {
  margin-bottom: 120px;
}

@media only screen and (max-width: 1260px) {
  .stactionar-type {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .stactionar-type {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .stactionar-type {
    margin-bottom: 60px;
  }
}

.stactionar-type__title {
  text-align: center;
  margin-bottom: 27px;
}

@media only screen and (max-width: 767px) {
  .stactionar-type__title {
    margin-bottom: 16px;
  }
}

.stactionar-type__info {
  font-size: 18px;
  line-height: 28px;
  font-family: "HelveticaNeueCyr";
  font-weight: 300;
  color: #504f4d;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.stactionar-type__info p {
  margin-bottom: 15px;
}

.stactionar-type__info p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .stactionar-type__info {
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.stactionar-type__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .stactionar-type__tabs {
    margin-bottom: 34px;
  }
}

.stactionar-type__tab {
  transition: 300ms;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px dashed transparent;
  margin-right: 80px;
}

@media only screen and (max-width: 767px) {
  .stactionar-type__tab {
    font-size: 12px;
    line-height: 18px;
    margin-right: 20px;
    text-align: center;
    width: 100%;
  }
}

.stactionar-type__tab:last-child {
  margin-right: 0;
}

.stactionar-type__tab.active {
  border-bottom: 1px dashed #dd0003;
  color: #dd0003;
}

.stactionar-type__tab:hover {
  color: #dd0003;
}

.stactionar-type__contents {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
  .stactionar-type__contents {
    padding: 20px 0;
  }
}

.stactionar-type__content {
  display: none;
}

.stactionar-type__content:first-child {
  display: block;
}

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

@media only screen and (max-width: 991px) {
  .stactionar-type__first {
    display: block;
  }
}

.stactionar-type__first-images {
  width: 100%;
  margin-left: 30px;
  display: flex;
}

@media only screen and (max-width: 991px) {
  .stactionar-type__first-images {
    margin-left: 0;
    margin-top: 20px;
  }
}

.stactionar-type__first-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .stactionar-type__first-image {
    margin-right: 10px;
  }
}

.stactionar-type__first-image:last-child {
  margin-right: 0;
}

.stactionar-type__first-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.stactionar-type__first-text {
  width: 100%;
  font-size: 28px;
  line-height: 40px;
  font-weight: 300;
}

@media only screen and (max-width: 1260px) {
  .stactionar-type__first-text {
    font-size: 24px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .stactionar-type__first-text {
    font-size: 18px;
    line-height: 26px;
  }
}

.stactionar-type__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 28px;
  column-gap: 28px;
  margin-top: 28px;
}

@media only screen and (max-width: 991px) {
  .stactionar-type__items {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .stactionar-type__items {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}

@media only screen and (max-width: 767px) {
  .stactionar-type__item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.stactionar-type__icon {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
  .stactionar-type__icon {
    min-width: 28px;
    margin-right: 18px;
    margin-bottom: 0;
  }
}

.stactionar-type__text {
  font-size: 16px;
  line-height: 26px;
  opacity: 0.8;
  color: #504f4d;
  font-family: "HelveticaNeueCyr";
}

.price-service {
  background: url(../images/price-service-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 106px 0 120px 0;
}

@media only screen and (max-width: 1260px) {
  .price-service {
    padding: 90px 0 100px 0;
  }
}

@media only screen and (max-width: 991px) {
  .price-service {
    padding: 70px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .price-service {
    padding: 50px 0 60px 0;
  }
}

.price-service__title {
  text-align: center;
  margin-bottom: 38px;
}

@media only screen and (max-width: 767px) {
  .price-service__title {
    margin-bottom: 29px;
  }
}

.price-service__items {
  display: flex;
  align-items: flex-start;
  margin-bottom: 56px;
}

@media only screen and (max-width: 991px) {
  .price-service__items {
    display: block;
    margin-bottom: 0;
  }
}

.price-service__item {
  width: 100%;
  margin-right: 30px;
  padding-top: 13px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 991px) {
  .price-service__item {
    margin-right: 0;
    margin-bottom: 34px;
  }
  .price-service__item:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .price-service__item {
    padding-top: 17px;
  }
}

.price-service__item:last-child {
  margin-right: 0;
}

.price-service__head {
  text-align: center;
  font-size: 24px;
  line-height: 48px;
  margin-bottom: 12px;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  .price-service__head {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 18px;
  }
}

.price-service__block {
  background: #ffffff;
  text-align: center;
  padding: 44px;
}

@media only screen and (max-width: 767px) {
  .price-service__block {
    padding: 32px 20px;
  }
}

.price-service__subhead {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: "HelveticaNeueCyr", sans-serif;
  color: #dd0003;
}

@media only screen and (max-width: 767px) {
  .price-service__subhead {
    font-size: 17px;
    line-height: 26px;
  }
}

.price-service__text {
  font-size: 20px;
  line-height: 30px;
  font-family: "HelveticaNeueCyr";
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  .price-service__text {
    font-size: 17px;
    line-height: 26px;
  }
}

.price-service__btn {
  width: 456px;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .price-service__btn {
    display: none;
  }
}

.price {
  padding: 300px 0 0 0;
}

@media only screen and (max-width: 1260px) {
  .price {
    padding: 240px 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .price {
    padding: 200px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .price {
    padding: 122px 0 60px 0;
  }
}

.price__title {
  text-align: center;
  margin-bottom: 33px;
}

@media only screen and (max-width: 767px) {
  .price__title {
    margin-bottom: 28px;
  }
}

.price__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

@media only screen and (max-width: 991px) {
  .price__items {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}

.price__items-item {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .price__items-item:first-child .price__item:last-child {
    border-bottom: 0;
  }
}

.price__item {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.price__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price__header {
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .price__header {
    padding: 18px 0;
  }
}

.price__header:hover .price__head {
  color: #dd0003;
}

.price__header.active .price__arrow {
  transform: rotate(180deg);
}

.price__head {
  transition: 300ms;
  font-size: 20px;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  .price__head {
    font-size: 18px;
    line-height: 24px;
  }
}

.price__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms;
}

@media only screen and (max-width: 767px) {
  .price__arrow {
    min-width: 6px;
  }
}

.price__body {
  padding-bottom: 30px;
  display: none;
}

.price__body-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.price__body-block:last-child {
  margin-bottom: 0;
}

.price__body-start {
  font-size: 16px;
  line-height: 26px;
  font-family: "HelveticaNeueCyr";
  font-weight: 300;
  color: #504f4d;
  opacity: 0.8;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .price__body-start {
    line-height: 22px;
  }
}

.price__body-start span {
  display: none;
}

@media only screen and (max-width: 767px) {
  .price__body-start span {
    display: inline;
  }
}

.price__body-end {
  white-space: nowrap;
  margin-left: 20px;
  text-align: right;
  font-size: 16px;
  line-height: 26px;
  font-family: "HelveticaNeueCyr", sans-serif;
  font-weight: 300;
  color: #504f4d;
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .price__body-end {
    white-space: normal;
    min-width: 135px;
    width: 135px;
  }
}

.price__body-end span {
  min-width: 90px;
  display: inline-block;
  width: 90px;
  margin-left: 77px;
}

@media only screen and (max-width: 1260px) {
  .price__body-end span {
    margin-left: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .price__body-end span {
    display: none;
  }
}

.price__body-end br {
  display: block;
}

.price__end {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
  max-width: 607px;
  text-align: center;
  margin: 50px auto 25px auto;
}

@media only screen and (max-width: 1260px) {
  .price__end {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .price__end {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .price__end {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}

.price__btn {
  width: 456px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .price__btn {
    width: 100%;
  }
  .price__btn span {
    display: none;
  }
}

.service {
  padding: 302px 0 0 0;
}

@media only screen and (max-width: 1260px) {
  .service {
    padding: 240px 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .service {
    padding: 180px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .service {
    padding: 125px 0 60px 0;
  }
}

.service__title {
  text-align: center;
  margin-bottom: 29px;
}

.service__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 46px;
}

@media only screen and (max-width: 991px) {
  .service__tabs {
    padding-bottom: 35px;
  }
}

.service__tab {
  transition: 300ms;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px dashed transparent;
  margin-right: 80px;
}

@media only screen and (max-width: 767px) {
  .service__tab {
    font-size: 12px;
    line-height: 18px;
    margin-right: 18px;
    text-align: center;
    width: 100%;
  }
}

.service__tab:last-child {
  margin-right: 0;
}

.service__tab.active {
  border-bottom: 1px dashed #dd0003;
  color: #dd0003;
}

.service__tab:hover {
  color: #dd0003;
}

.service__contents {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
  .service__contents {
    padding: 28px 0;
  }
}

.service__content {
  display: none;
}

.service__content:first-child {
  display: block;
}

.service__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}

@media only screen and (max-width: 991px) {
  .service__items {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .service__items {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

.service__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 46px 36px 56px 36px;
  background: #ffffff;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  min-height: 279px;
}

@media only screen and (max-width: 767px) {
  .service__item {
    padding: 30px 26px 40px 25px;
    min-height: 239px;
  }
}

.service__head {
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
}

@media only screen and (max-width: 1260px) {
  .service__head {
    font-size: 20px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .service__head {
    font-size: 18px;
    line-height: 28px;
  }
}

.service__head:hover {
  color: #dd0003;
}

.service__text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
  margin-top: 13px;
}

@media only screen and (max-width: 1260px) {
  .service__text {
    font-size: 16px;
    line-height: 22px;
  }
}

.service__start {
  margin-bottom: 28px;
}

@media only screen and (max-width: 767px) {
  .service__start {
    margin-bottom: 20px;
  }
}

.service__link {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #dd0003;
  border-bottom: 1px dashed #dd0003;
  padding-bottom: 8px;
  display: inline-block;
  width: 132px;
}

.service__link:hover {
  border-bottom: 1px dashed transparent;
}

.single-page {
  padding: 302px 0 90px 0;
}

@media only screen and (max-width: 1260px) {
  .single-page {
    padding: 240px 0 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .single-page {
    padding: 170px 0 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .single-page {
    padding: 130px 0 60px 0;
  }
}

.who-section {
  margin-bottom: 90px;
}

@media only screen and (max-width: 1260px) {
  .who-section {
    margin-bottom: 75px;
  }
}

@media only screen and (max-width: 991px) {
  .who-section {
    margin-bottom: 65px;
  }
}

@media only screen and (max-width: 767px) {
  .who-section {
    margin-bottom: 48px;
  }
}

.single__start-title {
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .single__start-title {
    margin-bottom: 24px;
  }
}

.single__start-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  min-height: 240px;
}

@media only screen and (max-width: 991px) {
  .single__start-items {
    display: block;
  }
}

.single__start-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .single__start-image {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .single__start-image {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
}

.single__start-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.single__start-info {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  margin-bottom: 25px;
  opacity: 0.8;
}

@media only screen and (max-width: 1260px) {
  .single__start-info {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .single__start-info {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 26px;
  }
}

.single__start-end {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
}

@media only screen and (max-width: 1260px) {
  .single__start-end {
    font-size: 16px;
    line-height: 22px;
  }
}

.single__start-item {
  width: calc(50% - 29px);
  margin-right: 0;
  margin-left: auto;
}

.single__who-title {
  text-align: center;
  margin-bottom: 25px;
}

.single__who-items {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 991px) {
  .single__who-items {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .single__start-item {
    width: 100%;
  }
}

.single__who-start {
  font-size: 18px;
  line-height: 28px;
  color: #504f4d;
  font-family: "HelveticaNeueCyr";
  font-weight: 300;
  min-width: 546px;
  width: 546px;
  margin-right: 54px;
}

@media only screen and (max-width: 1260px) {
  .single__who-start {
    min-width: 460px;
    width: 460px;
    margin-right: 40px;
    font-size: 16px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .single__who-start {
    margin-right: 0;
    margin-bottom: 20px;
    min-width: auto;
    width: 100%;
  }
}

.single__who-item {
  transform: translateY(-10px);
}

.single__who-block {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  padding-left: 12px;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width: 767px) {
  .single__who-block {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

.single__who-block::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #dd0003;
  margin-right: 10px;
}

.etap {
  padding: 105px 0 120px 0;
  background: #fff;
}

@media only screen and (max-width: 1260px) {
  .etap {
    padding: 80px 0 100px 0;
  }
}

@media only screen and (max-width: 991px) {
  .etap {
    padding: 70px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .etap {
    padding: 50px 0 60px 0;
  }
}

.etap__title {
  text-align: center;
  margin-bottom: 35px;
}

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

@media only screen and (max-width: 991px) {
  .etap__items {
    display: block;
  }
}

.etap__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-left: 30px;
}

@media only screen and (max-width: 991px) {
  .etap__image {
    margin-left: 0;
    margin-top: 24px;
  }
}

@media only screen and (max-width: 520px) {
  .etap__image {
    height: 206px;
  }
}

.etap__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.etap .terapiya__item {
  width: 100%;
}

.etap .terapiya__block:first-child {
  padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .etap .terapiya__block:first-child {
    padding-bottom: 0;
  }
}

.etap .terapiya__block:first-child .terapiya__text {
  max-width: 206px;
}

@media only screen and (max-width: 767px) {
  .etap .terapiya__block:first-child .terapiya__text {
    max-width: 100%;
  }
}

.etap .terapiya__block:nth-child(2) .terapiya__text {
  max-width: 225px;
}

@media only screen and (max-width: 767px) {
  .etap .terapiya__block:nth-child(2) .terapiya__text {
    max-width: 100%;
  }
}

.etap .terapiya__block:last-child {
  border: 0;
}

.etap .terapiya__block:nth-child(4) {
  border-top: 1px dashed #ccbdbd;
  border-right: 1px dashed #ccbdbd;
  padding-bottom: 30px;
  border-bottom: 1px dashed #ccbdbd;
}

@media only screen and (max-width: 767px) {
  .etap .terapiya__block:nth-child(4) {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.etap .terapiya__block:nth-child(3) {
  border-bottom: 1px dashed #ccbdbd;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .etap .terapiya__block:nth-child(3) {
    border-bottom: 0;
  }
}

.etap .terapiya__block:nth-child(3)::before {
  content: "";
  display: block;
  left: 0;
  position: absolute;
  bottom: -60px;
  height: 60px;
  width: 12px;
  background: #fff;
  border-right: 1px dashed #ccbdbd;
}

@media only screen and (max-width: 767px) {
  .etap .terapiya__block:nth-child(3)::before {
    display: none;
  }
}

.etap .terapiya__block:nth-child(5) span {
  padding: 0;
  width: 23px;
  height: 23px;
}

@media only screen and (max-width: 767px) {
  .etap .terapiya__block:nth-child(6) .terapiya__text {
    margin-top: -30px;
  }
}

.etap .terapiya__blocks {
  margin-bottom: 0;
}

.recomendation {
  padding: 100px 0 120px 0;
  background: url(../images/single-recomendation-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 1260px) {
  .recomendation {
    padding: 90px 0 100px 0;
  }
}

@media only screen and (max-width: 991px) {
  .recomendation {
    padding: 75px 0 85px 0;
  }
}

@media only screen and (max-width: 767px) {
  .recomendation {
    padding: 50px 0;
  }
}

.recomendation__title {
  text-align: center;
  max-width: 901px;
  margin: 0 auto 34px auto;
}

@media only screen and (max-width: 1260px) {
  .recomendation__title {
    max-width: 800px;
  }
}

@media only screen and (max-width: 767px) {
  .recomendation__title {
    margin-bottom: 18px;
  }
  .recomendation__title span {
    display: block;
  }
}

.recomendation__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}

@media only screen and (max-width: 991px) {
  .recomendation__items {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }
}

.recomendation__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 365px;
  margin-bottom: 23px;
}

@media only screen and (max-width: 1260px) {
  .recomendation__image {
    height: 300px;
  }
}

@media only screen and (max-width: 991px) {
  .recomendation__image {
    height: 380px;
  }
}

@media only screen and (max-width: 767px) {
  .recomendation__image {
    height: 300px;
  }
}

@media only screen and (max-width: 520px) {
  .recomendation__image {
    height: 210px;
  }
}

.recomendation__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.recomendation__text {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
}

@media only screen and (max-width: 991px) {
  .recomendation__text {
    font-size: 16px;
    line-height: 22px;
  }
}

.recomendation__text span {
  width: 23px;
  height: 23px;
  min-width: 23px;
  border-radius: 50%;
  margin-right: 22px;
  background: rgba(232, 202, 202, 0.3);
  position: relative;
}

@media only screen and (max-width: 991px) {
  .recomendation__text span {
    margin-right: 20px;
  }
}

.recomendation__text span::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dd0003;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.white-block {
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .white-block {
    background: #fafafa;
  }
}

.white-block .specialists {
  padding-top: 0;
}

@media only screen and (max-width: 767px) {
  .white-block .specialists {
    background: #fafafa;
  }
}

.answer {
  padding: 100px 0;
}

@media only screen and (max-width: 991px) {
  .answer {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .answer {
    padding: 50px 0;
  }
}

.answer__title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

@media only screen and (max-width: 1260px) {
  .answer__title {
    max-width: 640px;
  }
}

@media only screen and (max-width: 991px) {
  .answer__title {
    max-width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .answer__title {
    margin-bottom: 10px;
  }
}

.answer__items {
  display: flex;
  position: relative;
  justify-content: space-between;
  min-height: 240px;
}

@media only screen and (max-width: 991px) {
  .answer__items {
    display: block;
  }
}

.answer__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  margin-left: 30px;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 991px) {
  .answer__image {
    margin-left: 0;
    margin-top: 28px;
    width: 100%;
    position: static;
  }
}

@media only screen and (max-width: 767px) {
  .answer__image {
    min-height: 206px;
  }
}

.answer__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .answer__image img {
    min-height: 206px;
  }
}

.answer__item {
  width: calc(50% - 29px);
}

@media only screen and (max-width: 991px) {
  .answer__item {
    width: 100%;
  }
}

.answer__block {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 16px;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 991px) {
  .answer__block {
    line-height: 22px;
    padding: 18px 0;
  }
}

.answer__block::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  transform: translateY(5px);
  border-radius: 50%;
  min-width: 8px;
  background: #dd0003;
  margin-right: 10px;
  margin-left: 12px;
}

.answer__blocks {
  margin-bottom: 35px;
}

@media only screen and (max-width: 991px) {
  .answer__blocks {
    margin-bottom: 26px;
  }
}

.answer__info {
  font-size: 17px;
  line-height: 22px;
  font-weight: 300;
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
}

@media only screen and (max-width: 1260px) {
  .answer__info {
    font-size: 16px;
    line-height: 22px;
  }
}

.answer__price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 110px;
  margin-bottom: 32px;
}

@media only screen and (max-width: 1260px) {
  .answer__price {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .answer__price {
    margin-top: 58px;
  }
}

@media only screen and (max-width: 767px) {
  .answer__price {
    margin-bottom: 28px;
  }
}

.answer__price-item {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #dd0003;
  padding-bottom: 8px;
  border-bottom: 1px dashed #dd0003;
}

.answer__price-item:hover {
  border-bottom: 1px dashed transparent;
}

.answer__btn {
  width: 456px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .answer__btn {
    width: 100%;
  }
  .answer__btn span {
    display: none;
  }
}

.specialist {
  padding: 280px 0 0 0;
}

@media only screen and (max-width: 1260px) {
  .specialist {
    padding: 220px 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .specialist {
    padding: 160px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .specialist {
    padding: 120px 0 50px 0;
  }
}

.specialist__image {
  width: 570px;
  margin-right: 40px;
  margin-bottom: 20px;
  float: left;
}

@media only screen and (max-width: 1260px) {
  .specialist__image {
    width: 480px;
    margin-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .specialist__image {
    width: 360px;
  }
}

@media only screen and (max-width: 767px) {
  .specialist__image {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.specialist__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.specialist__item {
  width: 100%;
  min-height: 580px;
}

@media only screen and (max-width: 1260px) {
  .specialist__item {
    min-height: 450px;
  }
}

@media only screen and (max-width: 991px) {
  .specialist__item {
    min-height: auto;
  }
}

.specialist__name {
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
  font-weight: 300;
}

@media only screen and (max-width: 1260px) {
  .specialist__name {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .specialist__name {
    font-size: 28px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .specialist__name {
    font-size: 22px;
    line-height: 32px;
  }
}

.specialist__profile {
  font-family: "HelveticaNeueCyr";
  color: #504f4d;
  opacity: 0.8;
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1260px) {
  .specialist__profile {
    font-size: 20px;
  }
}

.specialist__block {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid #ccbdbdb6;
  font-size: 18px;
  line-height: 26px;
}

@media only screen and (max-width: 1260px) {
  .specialist__block {
    font-size: 16px;
    line-height: 24px;
  }
}

.specialist__block:last-child {
  border-bottom: 1px solid #ccbdbdb6;
}

.specialist__blocks {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1260px) {
  .specialist__blocks {
    margin-bottom: 20px;
  }
}

.specialist__info {
  font-size: 14px;
  line-height: 24px;
  color: #504f4d;
  font-family: "HelveticaNeueCyr";
  opacity: 0.8;
}

.specialist__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  width: 26px;
  margin-right: 20px;
}

@media only screen and (max-width: 991px) {
  .specialist__icon {
    margin-right: 12px;
  }
}

.specialist__btn {
  width: 300px;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .specialist__btn {
    width: 100%;
    margin-top: 20px;
  }
}

.contacts-page {
  padding: 300px 0 100px 0;
}

@media only screen and (max-width: 1260px) {
  .contacts-page {
    padding: 220px 0 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .contacts-page {
    padding: 160px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .contacts-page {
    padding: 120px 0 50px 0;
  }
}

.contacts-page__title {
  text-align: center;
  margin-bottom: 30px;
}

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

@media only screen and (max-width: 991px) {
  .contacts-page__items {
    display: block;
  }
}

.contacts-page__item {
  width: 100%;
  margin-right: 40px;
}

@media only screen and (max-width: 991px) {
  .contacts-page__item {
    margin-bottom: 20px;
  }
}

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

@media only screen and (max-width: 991px) {
  .contacts-page__map {
    height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .contacts-page__map {
    height: 300px;
  }
}

.contacts-page__map #map {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contacts-page__map #map .ymaps-2-1-79-map {
  width: 100%;
  height: 100%;
}

.contacts-page__map #map [class*="ymaps-2"][class*="-ground-pane"] {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
}

.contacts-page__block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.contacts-page__block:last-child {
  margin-bottom: 0;
}

.contacts-page__time {
  font-size: 16px;
  color: #dd0003;
  font-weight: 500;
  margin-bottom: 6px;
}

.contacts-page__head {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 10px;
}

.contacts-page__adres {
  color: #504f4d;
  opacity: 0.8;
  font-size: 16px;
  font-family: "HelveticaNeueCyr";
  font-weight: 300;
}

.contacts-page__link {
  font-size: 16px;
  font-family: "HelveticaNeueCyr";
  font-weight: 300;
  color: #dd0003;
}

.blog {
  padding: 270px 0 140px 0;
}

@media only screen and (max-width: 1260px) {
  .blog {
    padding-top: 220px;
  }
}

@media only screen and (max-width: 991px) {
  .blog {
    padding-top: 140px;
  }
}

@media only screen and (max-width: 767px) {
  .blog {
    padding: 120px 0 170px 0;
  }
}

.blog__title {
  text-align: center;
  margin-bottom: 30px;
}

.blog__items {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

@media only screen and (max-width: 1260px) {
  .blog__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .blog__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .blog__items {
    grid-template-columns: 1fr;
  }
}

.blog__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 190px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1260px) {
  .blog__image {
    height: 230px;
  }
}

.blog__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog__item:hover .blog__name {
  color: #dd0003;
  opacity: 1;
}

.blog__name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  transition: 300ms;
  opacity: 0.8;
}

.blog__more {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 280px;
}

@media only screen and (max-width: 1260px) {
  .blog__more {
    bottom: -140px;
  }
}

@media only screen and (max-width: 767px) {
  .blog__more {
    bottom: -110px;
  }
}

.showcase__btn-more {
  display: none;
}

.showcase__btn-more.active {
  display: flex;
}

.blog-single {
  padding: 270px 0 0px 0;
}

.blog-single__title {
  font-size: 42px;
  margin-bottom: 30px;
}

.blog-single__content {
  font-size: 16px;
  line-height: 24px;
}

.blog-single__content h2,
h3,
h4,
h5,
h6 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-single__content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 15px 0;
}

.blog-single__content p {
  margin: 15px 0;
  font-weight: 300;
}

@media only screen and (max-width: 1260px) {
  .blog-single {
    padding-top: 200px;
  }

  .blog-single__title {
    font-size: 36px;
    line-height: 42px;
  }
}

@media only screen and (max-width: 991px) {
  .blog-single {
    padding-top: 200px;
  }

  .blog-single__title {
    font-size: 30px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-single {
    padding-top: 160px;
  }

  .blog-single__title {
    font-size: 28px;
    line-height: 34px;
  }

  .blog-single h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 20px;
  }
}

.form__content .wpcf7-response-output {
  margin: 20px;
  transform: translateY(-15px);
}

.specialists-page {
  padding-top: 260px;
  background: #f8f8f8;
}

@media only screen and (max-width: 1260px) {
  .specialists-page {
    padding-top: 220px;
  }
}

@media only screen and (max-width: 991px) {
  .specialists-page {
    padding-top: 160px;
  }
}

@media only screen and (max-width: 767px) {
  .specialists-page {
    padding-top: 130px;
  }
}

.wpcf7-spinner {
  display: none;
}

form.submitting .wpcf7-spinner {
  display: block;
  margin: 10px;
}

#map-showcase {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  height: 100%;
}

#map-showcase .ymaps-2-1-79-map {
  width: 100%;
  height: 100%;
}

#map-showcase [class*="ymaps-2"][class*="-ground-pane"] {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
}

@media only screen and (max-width: 767px) {
  .problem__header-text span {
    display: none;
  }
}

/* .single__start-items.no-flex {
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
} */

.single__start-items.no-flex .single__start-end {
  font-size: 24px;
  max-width: 800px;
  margin: 0 auto 25px auto;
}

.single__start-items.no-flex .single__start-image {
  max-width: 800px;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .single__start-items.no-flex {
    display: flex;
  }

  .single__start-items.no-flex .single__start-end {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .single__start-items.no-flex .single__start-end {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .single__start-items.no-flex {
    flex-direction: column-reverse;
  }
}

.single-new__item .single__who-start {
  min-width: auto;
  width: 100%;
  margin: 0 0 20px 0;
}

.single-new__item {
  min-width: 550px;
  width: 550px;
  margin-right: 40px;
}

@media only screen and (max-width: 1260px) {
  .single-new__item {
    min-width: 450px;
    width: 450px;
  }
}

@media only screen and (max-width: 991px) {
  .single-new__item {
    min-width: auto;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.single-new__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
}

.single-new__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.terapiya__blocks-foure .terapiya__block:nth-child(3)::before {
  display: none;
}

.terapiya__blocks-foure .terapiya__block:nth-child(3) {
  border-bottom: 0;
}

.terapiya__blocks-foure .terapiya__block:nth-child(4) {
  border-bottom: 0;
  border-right: 0;
  border-top: 0;
}

.etap__image-second {
  height: 735px;
}

@media only screen and (max-width: 1260px) {
  .etap__image-second {
    height: 760px;
  }
}

@media only screen and (max-width: 767px) {
  .etap__image-second {
    height: 360px;
  }
}

.etap__image-second img {
  object-position: bottom;
}

.etap__image-new {
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.etap__image-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .etap__image-new {
    height: 320px;
    margin-top: 30px;
  }
}

.recomendation__new-image {
  margin-top: 40px;
  width: 100%;
  height: 400px;
}

.recomendation__new-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recomendation .answer__price {
  margin-top: 40px;
}

.white-block .specialists-top {
  padding-top: 80px;
}

@media only screen and (max-width: 767px) {
  .white-block .specialists-top {
    padding-top: 40px;
  }

  .recomendation__new-image {
    height: 280px;
  }
}

@media only screen and (max-width: 991px) {
  .specialist__image {
    height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .specialist__image {
    height: 400px !important;
  }
}

.specialists__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.specialists .slick-track {
  display: flex !important;
}

.specialists .slick-slide {
  height: auto !important;
}

/* .specialists__block {
  height: 166px;
}

@media only screen and (max-width: 767px) {
  .specialists__block {
    height: 130px;
  }
} */

.specialist__image {
  background: #f0f0f0;
}

.terapiya__blocks-third .terapiya__block:nth-child(3)::before {
  display: none;
}

.terapiya__blocks-third .terapiya__block:nth-child(3) {
  border-bottom: 0;
}

.etap__items-image {
  align-items: stretch;
  margin-bottom: 40px;
}

.etap__items-image .etap__image-second {
  height: 350px !important;
}

@media only screen and (max-width: 767px) {
  .etap__items-image .etap__image-second {
    height: 300px !important;
  }

  .etap__items-image {
    margin-bottom: 10px;
  }
}

/* .single__start-image--small { 
  width: 350px;
  height: 600px;
} */

@media only screen and (max-width: 767px) {
  .single__start-image--small {
    width: 100%;
    height: auto;
  }
}

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

.dogovor {
  padding: 260px 0 100px 0;
  position: relative;
  z-index: 20;
}

.dogovor h1 {
  font-weight: 400;
  font-size: 44px;
  margin-bottom: 30px;
}

.dogovor ul li {
  margin-bottom: 20px;
}

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

.dogovor li a {
  font-size: 18px;
  color: #dd0003;
}

@media only screen and (max-width: 1260px) {
  .dogovor {
    padding: 220px 0 70px 0;
  }

  .dogovor h1 {
    font-size: 36px;
  }

  .dogovor ul li a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 991px) {
  .dogovor {
    padding: 120px 0 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .dogovor h1 {
    font-size: 32px;
  }

  .dogovor {
    padding: 100px 0 40px 0;
  }
}

.error-page {
  padding: 260px 0 120px 0;
  text-align: center;
}

.error-page h1 {
  font-size: 180px;
  color: #dd0003;
  margin-bottom: 20px;
  line-height: 180px;
  font-weight: 700;
}

.error-page p {
  font-size: 20px;
  margin-bottom: 20px;
}

.error-page a {
  background: #dd0003;
  padding: 15px 30px;
  color: #fff;
  font-size: 16px;
}

@media only screen and (max-width: 991px) {
  .error-page {
    padding: 120px 0 80px 0;
  }
}

.contacts-page__requiz {
  margin-top: 40px;
}

.contacts-page__requiz-items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ebebeb;
}

.contacts-page__requiz-items:last-child {
  margin-bottom: 0;
}

.contacts-page__requiz-items p {
  width: 100%;
}

.contacts-page__requiz-items p:last-child {
  margin-left: 20px;
  text-align: right;
}

.contacts-page__requiz-items p:first-child {
  font-weight: 700;
}

.contacts-page__requiz-items a {
  color: #c00003;
}

@media only screen and (max-width: 767px) {
  .contacts-page__requiz-items {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .header .container {
    padding: 0 16px;
  }

  .header__item-block {
    width: 105px;
  }

  .header__logo {
    width: 180px;
  }

  .header__tel {
    margin-right: 0;
    justify-content: flex-end;
  }
}

.price__end-content {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

.single__who-items {
  gap: 40px;
  min-height: 240px;
}

.single__who-item {
  width: 100%;
}

.single__who-images {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.single__who-images.grid-1 {
  grid-template-columns: 1fr;
}

@media only screen and (max-width: 1260px) {
  .single__who-images {
    grid-template-columns: 1fr;
    width: 50%;
  }
}

@media only screen and (max-width: 991px) {
  .single__who-images {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-top: 20px;
  }
}

.single__who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solo-block .single__who-start {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.white-block .white-block .answer {
  padding-top: 0;
}

.block-buttons {
  padding: 0 0 40px 0;
}

.block-buttons .answer__price {
  margin-top: 0;
}

.single__start-end span {
  color: red;
}

.answer__info span {
  color: red;
}

body.postid-804 .answer__price-item {
  display: none;
}

.single-page .single__who {
  margin-top: 80px;
}

.single__start-item--solo {
  width: 100%;
}

.specialist__dop-info {
  margin-top: 40px;
}

.specialist__dop-info h3 {
  color: #000;
}

.page-text {
  padding: 260px 0 500px 0;
  position: relative;
  z-index: 20;
}

.page-text h1 {
  font-weight: 400;
  font-size: 44px;
  margin-bottom: 30px;
}

.page-text__content p {
  margin-bottom: 20px;
}

.page-text__content p:last-child {
  margin-bottom: 0;
}

.page-text__content ul {
  margin-bottom: 20px;
}

.page-text__content ul:last-child {
  margin-bottom: 0;
}

.page-text__content li {
  margin-bottom: 10px;
}

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

@media only screen and (max-width: 1260px) {
  .page-text {
    padding: 220px 0 70px 0;
  }

  .page-text h1 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 991px) {
  .page-text {
    padding: 120px 0 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .page-text h1 {
    font-size: 32px;
  }

  .page-text {
    padding: 100px 0 40px 0;
  }
}

.cn-text-container {
  font-size: 16px;
}

.cn-text-container a {
  text-decoration: underline;
}

#cn-accept-cookie {
  color: #fff !important;
}

form input {
  -moz-appearance: auto;
  appearance: auto;
  -webkit-appearance: auto;
}

.price__download {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  color: #c00003;
  text-decoration: underline;
}

.price__download:hover {
  text-decoration: none;
}

.wpcf7-form.submitting input.wpcf7-submit {
  pointer-events: none !important;
}


.form__content .wpcf7-form-control-wrap.kc_captcha {
  padding-left: 48px;
}

@media only screen and (max-width: 767px) {
  .form__content .wpcf7-form-control-wrap.kc_captcha {
    padding-left: 0;
    padding-top: 20px;
  }
}

.footer__social img{
  width: 24px;
}