@import url(../libs/animate/animate.css);
@font-face {
  font-family: "Montserrat-Regular";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/Montserrat-Regular.woff2.html") format("woff2");
}

@font-face {
  font-family: "Montserrat-Bold";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/Montserrat-Bold.woff2.html") format("woff2");
}

@font-face {
  font-family: "Montserrat-SemiBold";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/Montserrat-SemiBold.woff2.html") format("woff2");
}

@font-face {
  font-family: "Montserrat-Black";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/Montserrat-Black.woff2.html") format("woff2");
}

@font-face {
  font-family: "Montserrat-Medium";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/Montserrat-Medium.woff2.html") format("woff2");
}

::-webkit-input-placeholder {
  color: rgba(33, 35, 83, 0.5);
}

::-moz-placeholder {
  color: rgba(33, 35, 83, 0.5);
}

:-ms-input-placeholder {
  color: rgba(33, 35, 83, 0.5);
}

::-ms-input-placeholder {
  color: rgba(33, 35, 83, 0.5);
}

::placeholder {
  color: rgba(33, 35, 83, 0.5);
}

::-moz-selection {
  background-color: #212353;
  color: #ffffff;
}

::selection {
  background-color: #212353;
  color: #ffffff;
}

body {
  background-color: #F9F9F9;
  font-size: 14px;
  min-width: 320px;
  position: relative;
  line-height: 1.3;
  font-family: "Montserrat-Regular", sans-serif;
  overflow-x: hidden;
  color: #212353;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
}

.hamburger {
  display: none;
}

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.align-start {
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}

.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.text-center {
  text-align: center;
}

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

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

.flex-grow-1 {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

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

b, strong {
  font-weight: bold;
}

.hidden {
  display: none;
}

.pagination ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination li {
  width: 10px;
  height: 10px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  background-color: rgba(175, 200, 204, 0.5);
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.pagination li button {
  display: none;
}

.pagination li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4CAFA8;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.pagination li:hover, .pagination li.slick-active {
  background: #4CAFA8;
}

@-webkit-keyframes btn-anim {
  0% {
    left: -75px;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@keyframes btn-anim {
  0% {
    left: -75px;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@-webkit-keyframes fx {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes fx {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

.btn {
  background: #4CAFA8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 280px;
  height: 80px;
  width: 100%;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Montserrat-Bold", sans-serif;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  letter-spacing: 1px;
}

.btn:hover {
  background: -o-linear-gradient(49.95deg, #8bdad6 24.5%, #4CAFA8 86.72%);
  background: linear-gradient(40.05deg, #8bdad6 24.5%, #4CAFA8 86.72%);
  color: #212353;
  -webkit-box-shadow: 0 6px 10px rgba(139, 218, 214, 0.8);
          box-shadow: 0 6px 10px rgba(139, 218, 214, 0.8);
}

.gradient {
  background: -o-linear-gradient(49.95deg, #8bdad6 24.5%, #4CAFA8 86.72%);
  background: linear-gradient(40.05deg, #8bdad6 24.5%, #4CAFA8 86.72%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section_title {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 35px;
  text-align: center;
}

.section_title strong {
  color: #4CAFA8;
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 1;
    -webkit-box-shadow: inset 0px 0px 25px 3px rgba(248, 105, 147, 0.75), 0px 0px 25px 10px rgba(248, 105, 147, 0.75);
            box-shadow: inset 0px 0px 25px 3px rgba(248, 105, 147, 0.75), 0px 0px 25px 10px rgba(248, 105, 147, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 1;
    -webkit-box-shadow: inset 0px 0px 25px 3px rgba(248, 105, 147, 0.75), 0px 0px 25px 10px rgba(248, 105, 147, 0.75);
            box-shadow: inset 0px 0px 25px 3px rgba(248, 105, 147, 0.75), 0px 0px 25px 10px rgba(248, 105, 147, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.main_header {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 10px 0;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.main_header.scroll {
  background-color: #ffffff;
  padding: 10px 0;
}

.main_header .d-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_header-logo {

}

.main_header-logo img {
	max-width: 100%;
    display: block;
    height: 50px;
    margin-top: -17px;
}

.main_header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: center;
}

.main_header-nav .main_header-phone {
  display: none;
}

.main_header-nav-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.main_header-nav-list li {
  margin: 0 24px;
}

.main_header-nav-list a {
  text-decoration: none;
  font-family: "Montserrat-Medium", sans-serif;
  color: #212353;
  font-size: 14px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  white-space: nowrap;
}

.main_header-nav-list a:hover {
  color: #FF7168;
}

.main_header-phone {
  text-align: right;
}

.main_header-phone-tel {
  font-family: "Montserrat-Bold", sans-serif;
  text-decoration: none;
}
.main_header-phone-tel-telefon {
  margin-right: 10px;
}
.main_header-phone-tel-wp {
  margin-right: 10px;
}

.main_header-phone-tel span {
  color: #212353;
  font-size: 20px;
}

.main_header-phone-tel span:hover {
  text-decoration: underline;
}

.main_header-phone p {
  font-size: 12px;
  margin: 5px 0 10px;
}

.main_header-phone-soc {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.main_header-phone-soc img {
  margin: 0 5px;
}

.main {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 30px;
  min-height: 966px;
  padding-top: 180px;
}

.main h1 {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 42px;
  text-transform: uppercase;
  max-width: 740px;
}

.main h1 strong {
  color: #4CAFA8;
}

.main_old-price {
  color: #c5c5c5 !important;
  font-size: 24px !important;
  text-decoration: line-through;
}

.main ul {
  list-style-type: none;
  margin: 40px 0 0;
  padding: 0;
  max-width: 600px;
}

.main ul li {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.main ul li::before {
  content: '';
  background-color: #4CAFA8;
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  margin-right: 18px;
  margin-top: 5px;
}

.main .btn {
  margin-top: 50px;
}

.why {
  padding: 100px 0 20px;
}

.why_cards {
  margin-top: 80px;
}

.why_card {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 50px 15px 15px 30px;
  margin: 0 15px;
  -webkit-box-shadow: 0px 4px 4px rgba(33, 35, 83, 0.1);
          box-shadow: 0px 4px 4px rgba(33, 35, 83, 0.1);
}

.why_card .heading {
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
}

.why_card p {
  max-width: 220px;
  font-size: 13px;
  font-family: "Montserrat-Regular", sans-serif;
  line-height: 1.7;
  margin: 0;
}

.why_card p strong {
  color: #4CAFA8;
}

.why_card img {
  position: absolute;
  z-index: 2;
  top: -25px;
  left: 31;
}

.service {
  padding-top: 150px;
}

.service .section_title {
  max-width: 880px;
  margin: 0 auto;
}

.service_cards {
  margin-top: 75px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.service_card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  max-width: 362px;
  width: 100%;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 3px 10px rgba(33, 35, 83, 0.1);
          box-shadow: 0px 3px 10px rgba(33, 35, 83, 0.1);
  margin-right: 32px;
}

.service_card:nth-child(3n) {
  margin-right: 0;
}

.service_card-img {
  display: block;
}

.service_card-badge {
  background-color: #FF7168;
  font-family: "Montserrat-Bold", sans-serif;
  color: #ffffff;
  font-size: 18px;
  width: 81px;
  height: 44px;
  text-transform: uppercase;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}

.service_card-text {
  padding: 30px;
  min-height: 300px;
}

.service_card-text-title {
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 20px;
  color: #212353;
  text-decoration: none;
  min-height: 66px;
  display: block;
}

.service_card-text-title::after {
  content: '';
  height: 2px;
  width: 50px;
  background-color: #212353;
  display: block;
  margin: 15px 0;
}

.service_card-text p {
  max-width: 310px;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  min-height: 66px;
}

.service_card-text-price {
  margin: 25px 0;
  align-items: center;
}

.service_card-text-price-new {
  color: #FF7168;
  font-size: 18px;
  font-family: "Montserrat-SemiBold", sans-serif;
  margin-right: 26px;
}

.service_card-text-price-old {
  color: #828282;
  font-size: 14px;
  font-family: "Montserrat-SemiBold", sans-serif;
  text-decoration: line-through;
}

.service_card-text-what {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_card-text-what a {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 12px;
  color: #212353;
}

.service_card-text-what-img {
  margin-right: 10px;
}

.service_card .btn {
  max-width: 100%;
  height: 70px;
}
.service .service_section_title {
  margin-top: 50px;
  font-size: 25px;
}
.service_section_title a {
  color: #FF7168;
}
.step {
  padding-top: 130px;
}

.step_cards {
  margin-top: 80px;
}

.step_card {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 60px 15px 15px 30px;
  margin: 0 15px;
  max-width: 264px;
  width: 100%;
  -webkit-box-shadow: 0px 4px 4px rgba(33, 35, 83, 0.1);
          box-shadow: 0px 4px 4px rgba(33, 35, 83, 0.1);
}

.step_card span {
  position: absolute;
  z-index: 2;
  top: 2px;
  right: 20px;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 36px;
  color: rgba(33, 35, 83, 0.15);
}

.step_card .heading {
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
}

.step_card p {
  max-width: 190px;
  font-size: 13px;
  font-family: "Montserrat-Regular", sans-serif;
  line-height: 1.7;
  margin: 0;
}

.step_card p strong {
  color: #4CAFA8;
}

.step_card img {
  position: absolute;
  z-index: 2;
  top: -30px;
  left: 31px;
}

.step_card:nth-child(1) img {
  top: -20px;
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before {
  display: table;
  content: '';
}

.slick-track:after {
  display: table;
  content: '';
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.before_after {
  padding-top: 140px;
}

.before_after-slider {
  margin-top: 50px;
}

.before_after-slider-img {
  max-width: 340px;
  height: 265px;
  margin: 0 10px;
  margin-bottom: 50px;
}

.before_after-slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.questions {
  padding-top: 150px;
}

.questions .section_title {
  max-width: 394px;
  text-align: left;
}

.questions_cards {
  max-width: 720px;
  width: 100%;
}

.questions_card {
  background-color: #ffffff;
  padding: 20px 30px;
  margin-bottom: 15px;
  max-width: 720px;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-cont hent: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.questions_card.active .questions_card-answer {
  display: block;
}

.questions_card.active .questions_card-plus {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.questions_card-issue .heading {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 18px;
  margin-bottom: 0;
}

.questions_card-answer {
  display: none;
}

.questions_card-answer p {
  max-width: 530px;
  font-size: 14px;
  line-height: 1.7;
  margin: 15px 0 0;
}

.questions_card-plus {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
  -webkit-transition: all .34s ease;
  -o-transition: all .34s ease;
  transition: all .34s ease;
}

.reviews {
  padding-top: 150px;
}

.reviews iframe {
  margin-top: 70px;
  display: block;
}

.forma {
  margin-top: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 1169px;
  padding-top: 130px;
}

.forma_card {
  max-width: 432px;
  background-color: rgba(76, 175, 168, 0.95);
  padding: 40px 65px;
}

.forma_card h5 {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 24px;
  color: #ffffff;
  max-width: 300px;
  text-transform: uppercase;
}

.forma_card p {
  max-width: 300px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Montserrat-Medium", sans-serif;
  line-height: 1.7;
  margin-bottom: 40px;
}
.forma_card p a {
  color: #ffffff;
}

.forma_card-pol {
  color: #ffffff;
  font-size: 10px;
  font-family: "Montserrat-Regular", sans-serif;
  line-height: 1.2;
  max-width: 300px;
  margin-top: 20px;
  text-align: center;
}

.forma_card-pol a {
  color: #ffffff;
}

form label {
  position: relative;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 20px;
  max-width: 300px;
}

form label img {
  position: absolute;
  top: 17px;
  left: 15px;
}

form input {
  width: 100%;
  max-width: 300px;
  height: 60px;
  background-color: #ffffff;
  padding: 15px 50px;
  border: none;
  font-family: "Montserrat-SemiBold", sans-serif;
  color: rgba(33, 35, 83, 0.5);
  font-size: 14px;
  outline: none;
}

form .btn {
  max-width: 300px;
  height: 60px;
  background-color: #212353;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 14px;
  outline: none;
  border: none;
}

form .btn:hover {
  background: rgba(210, 230, 229, 0.8);
  color: #212353;
  -webkit-box-shadow: 0 6px 10px rgba(96, 223, 216, 0.8);
          box-shadow: 0 6px 10px rgba(96, 223, 216, 0.8);
}

.footer {
  padding: 60px 0;
}

.footer .footer_wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer h6 {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 16px;
  color: #4CAFA8;
}

.footer_pol {
  color: #212353;
  font-size: 14px;
  margin-top: 10px;
  display: block;
}

.contacts_geo {
  padding-top: 100px;
}

.contacts_geo iframe {
  min-height: 450px;
}

.contacts_contact {
  padding-top: 90px;
}

.contacts_contact-cards {
  margin: 0 auto;
  max-width: 875px;
  margin-top: 70px;
}

.contacts_contact-card {
  max-width: 45%;
  width: 100%;
  margin: 0 20px 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts_contact-card img {
  margin-right: 25px;
}

.contacts_contact-card h6 {
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 16px;
}

.contacts_contact-card p {
  font-size: 16px;
}

.contacts_contact-card a {
  color: #212353;
  font-size: 16px;
  margin-top: 15px;
  display: block;
}

.contacts_requisites {
  padding-top: 50px;
}

.contacts_requisites-text {
  margin: 50px auto 0;
}

.services_main {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 93px;
  min-height: 644px;
  padding-top: 70px;
}

.services_main h1 {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 39px;
  text-transform: uppercase;
  max-width: 657px;
}
.services_main h1 span {
  color: #ff7168;
}

.services_main h1 strong {
  color: #4CAFA8;
}

.services_main ul {
  list-style-type: none;
  margin: 40px 0 0;
  padding: 0;
  max-width: 530px;
}

.services_main ul li {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.services_main ul li::before {
  content: '';
  background-color: #4CAFA8;
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  margin-right: 20px;
  margin-top: 5px;
}

.services_main .btn {
  margin-top: 50px;
}

.services_why {
  padding-top: 90px;
}

.services_content {
  padding-top: 90px;
}

.w-full {
  width: 100%;
}

.services_content-wrap {
  margin-left: 60px;
}

.services_content-list {
  list-style-type: none;
  margin: 20px 0 0 0;
  padding: 0;
  max-width: 290px;
}

.services_content-title {
  font-size: 28px;
  font-family: "Montserrat-SemiBold", sans-serif;
}

.services_content-one img {
  margin-top: 20px;
  border-radius: 5px;
  max-width: 300px;
}

.services_content-subtitle {
  color: #4CAFA8;
  font-size: 18px;
}

.services_content-li {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  position: relative;
  min-height: 80px;
  display: none;
}

.services_content-li.active, .services_content-li:nth-child(1), .services_content-li:nth-child(2), .services_content-li:nth-child(3) {
  display: flex;
}

.services_content-more {
  margin-top: 15px !important;
  height: 50px;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.services_content-twotitle {
  font-size: 16px;
}

.services_content-doptitle {
  font-size: 16px;
  color: #4CAFA8;
}

.services_content-dopprice {
  color: #D1CECE;
  margin-top: 10px;
  font-size: 14px;
}

.services_content-hint {
  position: absolute;
  top: 25px;
  left: 0;
  z-index: 2;
  background: #212353;
  color: #fff;
  padding: 5px 10px;
  opacity: 0;
  user-select: none;
  pointer-events: none;
}

.services_content-what {
  margin-bottom: 40px;
}

.services_content-li:hover .services_content-hint {
  opacity: 1;
}

.subscribe {
  text-align: center;
  margin: 50px auto 0;
}

.subscribe .d-flex {
  justify-content: center;
  align-items: center;
}

.subscribe_text {
  font-size: 25px;
  font-family: "Montserrat-Bold", sans-serif;
  color: #4CAFA8;;
}

.subscribe_price {
  font-size: 30px;
  font-family: "Montserrat-Bold", sans-serif;
  margin: 0 20px;
}

.subscribe .btn {
  height: 50px;
  max-width: 250px;
}

@media (max-width: 767px) {
  .services_content-hint {
    width: 100%;
    top: 60px;
  }
  .main_header-logo img{
	  margin-top:0;
  }
.subscribe {
  margin: 0;
  padding: 20px 0;
}
.subscribe .d-flex {
  flex-direction: column;
}
.subscribe_price {
  margin: 10px 0;
}
  .services_content-list {
    max-width: 100%;
  }

  .services_content-li {
    /* flex-direction: column; */
    justify-content: space-between;
    align-items: center;
  }
  .services_content-li img {
    /* display: none; */
  }
  .services_content-what {
    flex-direction: column;
  }

  .services_content-wrap {
    margin: 30px 0;
  }

  .services_content-one {
    width: 100%;
  }

  .services_content-one img {
    width: 100%;
    max-width: 100%;
  }

}

.services_content-cards {
  margin: 50px auto 0;
  max-width: 1000px;
}

.services_content-card {
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 300px;
  margin: 0 50px 40px 0;
  position: relative;
  z-index: 1;
  -webkit-filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
  padding-bottom: 30px;
}
.services_content-card:nth-child(3n) {
  margin-right: 0;
}
.services_content-card-text {
  padding: 20px 15px;
}

.services_content-card-text .heading {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #212353;
  max-width: 260px;
}

.services_content-card-text span {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 40px;
  color: rgba(33, 35, 83, 0.15);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 20px;
}

.services_content-article {
  line-height: 1.7;
  padding: 40px 0;
}
.services_content-article .section_title {
  margin-bottom: 40px;
}
.services_content-article strong {
  font-family: "Montserrat-Bold", sans-serif;
}
.services_content-article h2 {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 25px;
}
.services_content .btn {
  margin: 40px auto 0;
}
.services_content-additionally {
  margin: 50px auto;
}
.services_content-additionally_card {
  margin: 50px auto;
  justify-content: space-between;
  max-width: 1000px;
  align-items: flex-start;
}
.services_content-additionally_card ul {
  list-style-type: none;
  padding: 0;
  max-width: 600px;
  margin-top: 0;
}

.services_content-additionally_card ul li {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 18px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.services_content-additionally_card ul li::before {
  content: '';
  background-color: #4CAFA8;
  min-width: 13px;
  max-width: 13px;
  height: 13px;
  margin-right: 13px;
  margin-top: 3px;
}
.services_service-card {
  margin: 0 15px 40px;
}

.services_service-card:nth-child(3n) {
  margin-right: 15px;
}

.services_service-card img {
  max-width: 100%;
}

.services_service_slider {
  position: relative;
}

.services_service_nav-arr {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.services_service_nav-prev {
  left: -50px;
}

.services_service_nav-next {
  right: -50px;
}

.services_service_nav-next img {
  -webkit-transform: scale(-1, -1);
      -ms-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
       -o-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
       -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
       -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .25s ease,visibility 0s ease .25s;
  -o-transition: opacity .25s ease,visibility 0s ease .25s;
  transition: opacity .25s ease,visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  -webkit-transition: opacity .25s ease 0s,visibility 0s ease 0s;
  -o-transition: opacity .25s ease 0s,visibility 0s ease 0s;
  transition: opacity .25s ease 0s,visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  -o-transition-property: transform,opacity;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  -o-transition-property: transform,opacity;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe, .fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
  color: #ccc;
}

.fancybox-button:link, .fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled] {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2), .fancybox-button--fsexit svg:first-child, .fancybox-button--pause svg:first-child, .fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(transparent));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  -webkit-animation: a 1s linear infinite;
          animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes a {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes a {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
       -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-1turn);
      -ms-transform: rotate(-1turn);
          transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(1turn);
      -ms-transform: rotate(1turn);
          transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1) translateZ(0);
          transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translateZ(0) scale(1);
          transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

@-webkit-keyframes hand {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes hand {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.popup, .pol, .thnx {
  max-width: 432px;
  width: 100%;
  background-color: rgba(76, 175, 168, 0.95);
  padding: 40px 65px;
}

.pol {
  max-width: 600px;
  width: 100%;
}
.popup p a {
  color: #ffffff;
}
.popup h5, .pol h3, .thnx h3 {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
}
.pol h3 {
  font-size: 18px;
  margin-bottom: 40px;
}

.popup p, .pol p, .thnx p {
  color: #ffffff;
  font-size: 14px;
  font-family: "Montserrat-Medium", sans-serif;
  line-height: 1.7;
  margin-bottom: 40px;
}

.thnx p {
  margin-bottom: 0;
}

.pol p {
  margin: 20px 0;
}

.popup-pol {
  color: #ffffff;
  font-size: 10px;
  font-family: "Montserrat-Regular", sans-serif;
  letter-spacing: 1.2;
  max-width: 300px;
  margin-top: 20px;
  text-align: center;
}

.popup-pol a {
  color: #ffffff;
}

.fancybox-slide--html .fancybox-close-small {
  right: 15px;
}

.fancybox-button svg {
  width: 36px;
  height: 36px;
}

.fancybox-button svg path {
  fill: #fff;
}

@media (max-width: 1320px) {
  .container {
    padding: 0 15px;
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .main_header-nav {
    display: none;
  }
  .main_header-logo {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    z-index: 21;
  }
  .main {
    min-height: auto;
    padding: 150px 0 60px;
    position: relative;
  }
  .main .container {
    position: relative;
    z-index: 2;
  }
  .main_backpack {
    max-width: 446px;
    height: 253px;
  }
  .main h1 {
    font-size: 45px;
    margin-bottom: 24px;
  }
  .main ul li {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .main ul li ::before {
    margin-top: 0;
  }
  .main_img-main {
    max-width: 724px;
  }
  .main .btn {
    margin: 20px 0;
    max-width: 280px;
  }
  .btn {
    margin: 0 auto;
  }
  .why_cards {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 60px;
  }
  .why_card {
    margin: 0 0 45px;
    width: 100%;
    max-width: 48%;
  }
  .why_card p {
    max-width: 100%;
  }
  .section_title {
    font-size: 25px;
  }
  .service {
    padding-top: 40px;
  }
  .service_cards {
    margin-top: 50px;
  }
  .step {
    padding-top: 80px;
  }
  .step_cards {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 60px;
  }
  .step_card {
    margin: 0 0 45px;
    width: 100%;
    max-width: 48%;
  }
  .step_card p {
    max-width: 100%;
  }
  .before_after {
    padding-top: 80px;
  }
  .questions {
    padding-top: 80px;
  }
  .questions_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .questions .section_title {
    text-align: center;
    margin: 0 auto;
  }
  .questions_cards {
    margin-top: 50px;
  }
  .reviews {
    padding-top: 80px;
  }
  .forma {
    padding-top: 80px;
    min-height: 800px;
  }
  .services_content-card {
    margin: 0 auto 40px !important;
  }
  .services_content-additionally_card img {
    max-width: 40%;
    height: auto !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .hamburger {
    top: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    -o-transition-property: opacity, filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0 0 0 20px;
    overflow: visible;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 21;
  }
  .hamburger-box {
    width: 36px;
    height: 30px;
    display: inline-block;
    position: relative;
  }
  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: 0;
    width: 36px;
    height: 3px;
    background-color: #4CAFA8;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease;
  }
  .hamburger-inner::before, .hamburger-inner::after {
    width: 36px;
    height: 3px;
    background-color: #4CAFA8;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease;
  }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
  }
  .hamburger-inner::before {
    top: -7px;
  }
  .hamburger-inner::after {
    bottom: -5px;
  }
  .hamburger--3dx .hamburger-box {
    -webkit-perspective: 80px;
            perspective: 80px;
  }
  .hamburger--3dx .hamburger-inner {
    -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  .hamburger--3dx.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
            transform: translate3d(0, 10px, 0) rotate(45deg);
  }
  .hamburger--3dx.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
            transform: translate3d(0, -10px, 0) rotate(-45deg);
  }
  .hamburger--3dx-r .hamburger-box {
    -webkit-perspective: 80px;
            perspective: 80px;
  }
  .hamburger--3dx-r .hamburger-inner {
    -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
            transform: translate3d(0, 10px, 0) rotate(45deg);
  }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
            transform: translate3d(0, -10px, 0) rotate(-45deg);
  }
  .hamburger--3dy .hamburger-box {
    -webkit-perspective: 80px;
            perspective: 80px;
  }
  .hamburger--3dy .hamburger-inner {
    -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent;
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
  .hamburger--3dy.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
            transform: translate3d(0, 10px, 0) rotate(45deg);
  }
  .hamburger--3dy.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
            transform: translate3d(0, -10px, 0) rotate(-45deg);
  }
  .hamburger--emphatic {
    overflow: hidden;
  }
  .hamburger--emphatic .hamburger-inner {
    -webkit-transition: background-color 0.125s 0.175s ease-in;
    -o-transition: background-color 0.125s 0.175s ease-in;
    transition: background-color 0.125s 0.175s ease-in;
  }
  .hamburger--emphatic .hamburger-inner::before {
    left: 0;
    -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    -o-transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  .hamburger--emphatic .hamburger-inner::after {
    top: 7px;
    right: 0;
    -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    -o-transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  .hamburger--emphatic.is-active .hamburger-inner {
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transition-timing-function: ease-out;
         -o-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    background-color: transparent;
  }
  .hamburger--emphatic.is-active .hamburger-inner::before {
    left: -80px;
    top: -80px;
    -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg);
            transform: translate3d(80px, 80px, 0) rotate(45deg);
    -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .hamburger--emphatic.is-active .hamburger-inner::after {
    right: -80px;
    top: -80px;
    -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg);
            transform: translate3d(-80px, 80px, 0) rotate(-45deg);
    -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .main_header-phone {
    display: none;
  }
  .main_header-phone-soc img {
    margin: 0 10px;
  }
  .main_header-phone p {
    margin: 3px 0 15px;
  }
  .main_header-nav {
    padding: 100px 0 60px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-color: #ffffff;
  }
  .main_header-nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main_header-nav.active {
    display: block;
  }
  .main_header-nav ul li {
    margin-bottom: 15px;
  }
  .main_header-nav .main_header-phone {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  .main_header-nav .main_header-phone .d-flex {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .btn {
    width: 100%;
    max-width: 100%;
    font-size: 11px;
    height: 50px;
  }
  .main {
    padding: 65px 0 30px;
    position: relative;
  }
  .main::before {
    content: '';
    background-color: rgba(249, 249, 249, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  .main .d-flex {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main h1 {
    font-size: 22px;
  }
  .main ul {
    margin-top: 20px;
  }
  .main ul li {
    font-size: 13px;
  }
  .main ul li::before {
    margin-right: 8px;
    margin-top: 4px;
    min-width: 10px;
    height: 10px;
  }
  .why {
    padding: 50px 0 0;
  }
  .why_cards {
    width: 100%;
    margin: 20px 0;
    display: block;
  }
  .why_card {
    margin: 44px auto;
    padding: 40px 18px 30px;
    max-width: 100%;
  }
  .why_card .heading {
    margin: 0;
  }
  .section_title {
    font-size: 22px;
    line-height: 1.2;
  }
  .service {
    padding-top: 50px;
  }
  .service_cards {
    justify-content: center;
  }
  .service_card {
    margin-right: 0;
  }
  .service_card-badge {
    font-size: 15px;
    width: 60px;
    height: 35px;
  }
  .service_card-img {
    display: block;
  }
  .service_card-img img {
    max-width: 100%;
    width: 100%;
  }
  .service_card-text {
    padding: 20px;
    min-height: auto;
  }
  .service_card-text p {
    font-size: 12px;
    min-height: auto;
  }
  .service_card-text-title {
    font-size: 18px;
    min-height: auto;
  }
  .service_card-text-price {
    margin: 20px 0;
  }
  .service_card .btn {
    height: 50px;
    font-size: 11px;
  }
  .step {
    padding-top: 50px;
  }
  .step_cards {
    width: 100%;
    margin: 20px 0;
    display: block;
  }
  .step_card {
    margin: 44px auto;
    padding: 50px 18px 30px;
    max-width: 100%;
  }
  .step_card .heading {
    margin: 0;
  }
  .step_card p {
    margin-top: 15px;
  }
  .before_after {
    padding-top: 30px;
  }
  .before_after-slider-img {
    max-width: 100%;
    height: auto;
  }
  .questions {
    padding-top: 50px;
  }
  .questions_cards {
    margin-top: 30px;
  }
  .questions_card {
    padding: 15px;
    max-width: 100%;
  }
  .questions_card h6 {
    font-size: 15px;
    margin: 0;
    max-width: 85%;
  }
  .questions_card p {
    font-size: 12px;
    margin-top: 15px;
    max-width: 90%;
  }
  .reviews {
    padding-top: 50px;
  }
  .reviews iframe {
    margin-top: 30px;
  }
  .forma {
    margin-top: 60px;
    min-height: auto;
  }
  .forma_card {
    padding: 40px 20px;
  }
  .forma_card h5 {
    font-size: 16px;
    margin: 0 auto;
  }
  .forma_card p {
    font-size: 11px;
    margin: 20px auto;
  }
  .forma_card-pol {
    margin: 20px auto 0;
  }
  form input {
    height: 50px;
    font-size: 11px;
  }
  form img {
    height: 18px;
  }
  form .btn {
    font-size: 11px;
    height: 50px;
  }
  .footer {
    padding: 40px 0;
  }
  .footer .footer_wrap {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer h6 {
    font-size: 11px;
  }
  .footer_pol {
    font-size: 10px;
  }
  .footer_phone {
    display: block;
  }
  .footer_phone-tel {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer_phone-tel span {
    font-size: 15px;
  }
  .footer_phone p {
    font-size: 10px;
    margin: 0px 0 10px;
  }
  .service .service_section_title {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.4;
  }
  .contacts_geo {
    padding-top: 64px;
  }
  .contacts_geo iframe {
    min-height: 300px;
  }
  .contacts_contact {
    padding-top: 50px;
  }
  .contacts_contact-cards {
    margin-top: 35px;
  }
  .contacts_contact-card {
    max-width: 100%;
    margin: 0 20px 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contacts_contact-card img {
    height: 35px;
  }
  .contacts_contact-card h6 {
    font-size: 14px;
  }
  .contacts_contact-card p {
    font-size: 13px;
    margin: 10px 0;
  }
  .contacts_contact-card a {
    font-size: 13px;
    margin-top: 10px;
  }
  .contacts_requisites {
    padding-top: 30px;
  }
  .contacts_requisites-text {
    margin: 30px auto 0;
  }
  .contacts_requisites-text p {
    font-size: 12px;
  }
  .services_main {
    padding-top: 40px;
    min-height: 437px;
    margin-top: 75px;
    position: relative;
  }
  .services_main::before {
    content: '';
    background-color: rgba(249, 249, 249, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  .services_main .container {
    position: relative;
    z-index: 2;
  }
  .services_main h1 {
    font-size: 25px;
  }
  .services_main ul {
    margin-top: 40px;
  }
  .services_main ul li {
    font-size: 13px;
  }
  .services_main ul li::before {
    margin-right: 8px;
    margin-top: 4px;
    min-width: 10px;
    height: 10px;
  }
  .services_why {
    padding-top: 40px;
  }
  .services_content {
    padding-top: 50px;
  }
  .services_content-card {
    margin-right: 0;
    margin: 0 auto 40px !important;
  }
  .services_content-card img {
    max-width: 100%;
  }
  .services_content-card-text {
    padding: 15px;
  }
  .services_content-card-text .heading {
    font-size: 13px;
  }
  .services_content-card-text span {
    font-size: 30px;
  }
  .services_content-article {
    padding: 20px 0;
  }
  .services_content-article .section_title {
    margin-bottom: 30px;
  }
  .services_content-article h2 {
    font-size: 18px;
  }
  .services_content-additionally {
    margin: 30px auto;
  }
  .services_content-additionally_card img {
    display: none;
  }
  .services_content-additionally_card {
    margin: 30px auto 0;
  }
  .services_content-additionally_card ul {
    margin: 0;
  }
  .services_content-additionally_card ul li {
    font-size: 13px;
  }
  .services_content-additionally_card ul li::before {
    margin-top: 2px;
  }
  .services_content .btn {
    margin: 0 auto;
  }
  .services_service_nav {
    display: none;
  }
  .services_service-card {
    margin: 0 5px 40px;
    max-width: 100%;
  }
  .services_service-card:nth-child(3n) {
    margin-right: 5px;
  }
  .services_service-card-img {
    display: block;
  }
  .services_service-card-img img {
    width: 100%;
  }
  .pagination li {
    width: 5px;
    height: 5px;
    margin: 0 2px;
  }
  .popup, .pol, .thnx {
    padding: 40px 20px;
  }
  .popup h5 {
    font-size: 22px;
  }
  .pol h3, .thnx h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .pol p, .thnx p {
    font-size: 12px;
    margin: 10px 0;
  }
  .cart-message {
    top: 120px;
  }
  .cart-link {
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 330px) {
  .footer .main_header-logo {
    max-width: 90px;
  }
}
