@font-face {
  font-family: "Montserrat-Black";
  src: local("Montserrat-Black"), url("../fonts//Montserrat-Black.eot"),
    url("../fonts//Montserrat-Black.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-Bold";
  src: local("Montserrat-Bold"), url("../fonts//Montserrat-Bold.eot"),
    url("../fonts//Montserrat-Bold.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-Regular";
  src: local("Montserrat-Regular"),
    url("../fonts//Montserrat-Regular.eot"),
    url("../fonts//Montserrat-Regular.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-ExtraBold";
  src: local("Montserrat-ExtraBold"),
    url("../fonts//Montserrat-ExtraBold.eot"),
    url("../fonts//Montserrat-ExtraBold.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-Light";
  src: local("Montserrat-Light"), url("../fonts//Montserrat-Light.eot"),
    url("../fonts//Montserrat-Light.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-SemiBold";
  src: local("Montserrat-SemiBold"),
    url("../fonts//Montserrat-SemiBold.eot"),
    url("../fonts//Montserrat-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-Medium";
  src: local("Montserrat-Medium"), url("../fonts//Montserrat-Medium.eot"),
    url("../fonts//Montserrat-Medium.woff") format("woff");
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Montserrat-Regular";
  color: #000;
}

main {
  overflow: hidden;
}

.button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  line-height: normal;
  text-decoration: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.button:hover,
.button:focus {
  text-decoration: none;
  outline: none;
}

.button:active,
.button_active {
  outline: none;
}

.button_disabled,
.button[disabled],
a.button_disabled,
.button_disabled:hover,
.button[disabled]:hover,
a.button_disabled:hover,
.button_disabled:focus,
.button[disabled]:focus,
a.button_disabled:focus,
.button_disabled:active,
.button[disabled]:active,
a.button_disabled:active {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
  pointer-events: none;
}

.button__icon {
  margin-right: 10px;
  fill: currentColor;
}

.button_theme_8 {
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding-right: 18px;
  padding-left: 18px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0069f8),
    to(#00a1ff)
  );
  background: linear-gradient(to right, #0069f8, #00a1ff);
  border: none;
  border-radius: 5px;
  -webkit-box-shadow: 0 11px 35px rgba(0, 105, 248, 0.64);
  box-shadow: 0 11px 35px rgba(0, 105, 248, 0.64);
  -ms-flex-pack: justify;
}

.button_theme_8:hover {
  -webkit-box-shadow: 0 11px 35px rgba(0, 105, 248, 0.8);
  box-shadow: 0 11px 35px rgba(0, 105, 248, 0.8);
}

.button_theme_8:hover .button__icon {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.button_theme_8 .button__icon {
  width: 26px;
  height: 26px;
  margin-right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: #fff;
}

.button_theme_8 .button__text {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.button_theme_9 {
  display: inline;
}

.button_theme_9 .button__icon {
  width: 25px;
  height: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button_theme_9 .button__text {
  font-weight: bold;
  font-size: 15px;
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button_theme_9:hover .button__icon {
  fill: #0087fc;
}

.button_theme_9:hover .button__text {
  color: #0087fc;
}

.button_theme_10 {
  position: relative;
  height: 40px;
  padding-right: 15px;
  padding-left: 45px;
  background-color: #f9f9f9;
  -webkit-box-shadow: 0 0px 40px rgba(88, 88, 88, 0.24);
  box-shadow: 0 0px 40px rgba(88, 88, 88, 0.24);
}

.button_theme_10::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 15px;
  font-weight: 600;
  font-size: 33px;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
}

.button_theme_10:hover {
  -webkit-box-shadow: 0 0px 40px rgba(88, 88, 88, 0.44);
  box-shadow: 0 0px 40px rgba(88, 88, 88, 0.44);
}

.button_theme_10 .button__text {
  font-weight: 600;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.textfield {
  display: inline-block;
}

.textfield__control {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.textfield__control:-moz-placeholder {
  color: #000;
}

.textfield__control::-moz-placeholder {
  color: #000;
}

.textfield__control:-ms-input-placeholder {
  color: #000;
}

.textfield__control:focus {
  outline: none;
}

.textfield_path {
  width: 48%;
}

.textfield_multiline .textfield__control {
  padding-top: 15px;
}

padding-left: 15px {
  text-align: left;
}

.textfield_theme_5 .textfield__control {
  padding: 18px 19px 18px 19px;
  font-size: 16px;
  background-color: #f1f6f9;
  border: 1px solid #cddce4;
  border-radius: 5px;
}

.textfield_theme_5 .textfield__control::-webkit-input-placeholder {
  font-size: 14px;
  color: #000;
}

.textfield_theme_5 .textfield__control:-moz-placeholder {
  font-size: 14px;
  color: #000;
}

.textfield_theme_5 .textfield__control::-moz-placeholder {
  font-size: 14px;
  color: #000;
}

.textfield_theme_5 .textfield__control:-ms-input-placeholder {
  font-size: 14px;
  color: #000;
}

.textfield_theme_5 .textfield__control:focus {
  background-color: #fff;
  -webkit-box-shadow: 0 7px 35px rgba(0, 0, 0, 0.25);
  box-shadow: 0 7px 35px rgba(0, 0, 0, 0.25);
}

.main-menu__list {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

.main-menu__item {
  list-style: none;
}

.main-menu__link {
  color: #000;
  text-decoration: none;
}

.main-menu__link:visited {
  color: inherit;
}

.main-menu__link:hover {
  color: #f03e3e;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mobile-menu__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  -ms-flex-align: center;
}

.mobile-menu__time {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-menu_theme_2 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.mobile-menu_theme_2 .mobile-menu__select {
  margin-bottom: 35px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown__trigger {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 100%;
  text-align: left;
  will-change: opacity, visibility;
  -webkit-overflow-scrolling: touch;
}

.dropdown__caret {
  position: absolute;
  top: 50%;
  right: 20px;
  display: none;
}

.dropdown[disabled] .dropdown__trigger,
.dropdown[aria-disabled="true"] .dropdown__trigger {
  pointer-events: none;
}

.dropdown[disabled],
.dropdown[aria-disabled="true"],
.dropdown[disabled]:hover,
.dropdown[aria-disabled="true"]:hover,
.dropdown[disabled]:focus,
.dropdown[aria-disabled="true"]:focus,
.dropdown[disabled]:active,
.dropdown[aria-disabled="true"]:active {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.dropdown_theme_2 .dropdown__trigger {
  width: 200px;
  padding: 8px 18px 8px 18px;
  font-weight: 500;
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #e5e7e8;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 40px rgba(109, 109, 109, 0.14);
  box-shadow: 0 0 40px rgba(109, 109, 109, 0.14);
}

.dropdown_theme_2 .dropdown__trigger:hover {
  -webkit-box-shadow: 0 0 40px rgba(109, 109, 109, 0.3);
  box-shadow: 0 0 40px rgba(109, 109, 109, 0.3);
}

.dropdown_theme_2 .dropdown__trigger:hover .dropdown__caret {
  -webkit-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

.dropdown_theme_2 .dropdown__caret {
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='utf-8'?%3E%3C!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 13.5 23.6' enable-background='new 0 0 13.5 23.6' xml:space='preserve'%3E%3Cpath d='M2.3,0.4C1.8,0,1,0,0.6,0.4s-0.5,1.3,0,1.8l9.4,9.4l-9.5,9.8c-0.5,0.5-0.5,1.3,0,1.8c0.2,0.2,0.6,0.4,0.9,0.4 c0.3,0,0.7-0.1,0.9-0.4l11.2-11.6L2.3,0.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: conver;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  size: 8px 12px;
}

.dropdown_theme_2 .dropdown__menu {
  width: 200px;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-box-shadow: 0 11px 40px rgba(109, 109, 109, 0.14);
  box-shadow: 0 11px 40px rgba(109, 109, 109, 0.14);
}

.dropdown-list {
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.dropdown-list__item {
  list-style: none;
}

.dropdown-list__item-link {
  display: block;
  padding: em(16px) em(12px);
}

.dropdown-list__item-link:hover,
.dropdown-list__item-link_active {
  background-color: #f2f2f2;
}

.dropdown-list_theme_2 .dropdown-list__item {
  border-bottom: 1px solid rgba(109, 109, 109, 0.14);
}

.dropdown-list_theme_2 .dropdown-list__item-link {
  padding: 5px 35px 5px 18px;
  color: #939393;
  cursor: pointer;
}

.dropdown-list_theme_2 .dropdown-list__item-link:hover {
  background-color: transparent;
}

.main-menu_theme_2 {
  padding: 0;
}

.main-menu_theme_2 .main-menu__item {
  position: relative;
  flex-grow: 1;
  flex-basis: auto;
  text-align: center;
  -ms-flex-preferred-size: auto;
  -ms-flex-positive: 1;
}

.main-menu_theme_2 .main-menu__link {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-weight: 700;
  font-size: 16px;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.main-menu_theme_2 .main-menu__link::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #05b2ff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-menu_theme_2 .main-menu__link:hover {
  color: #05b2ff;
}

.main-menu_theme_2 .main-menu__link:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  visibility: visible;
}

.phone {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  align-items: center;
  font-weight: bold;
  font-size: 29px;
  color: inherit;
  text-decoration: none;
  -ms-flex-align: center;
}

.phone__icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.hamburger {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0;
  -ms-flex-align: center;
}

.header {
  background-color: #fff;
}

.header__top {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}

.header__info {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

.header__time {
  font-size: 14px;
}

.header__menu {
  width: 100%;
}

.header__mobile-menu-trigger {
  display: none;
}

.header_theme_2 .header__top {
  z-index: 6;
  padding: 0;
  background-color: #fff;
}

.header_theme_2 .header__container {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 87px;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
}

.header_theme_2 .header__menu {
  z-index: 5;
  background-color: #f1f6f9;
  -webkit-box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
  box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
}

.header_theme_2 .header__menu-mobile {
  position: fixed;
  left: 0;
  z-index: 999;
  display: none;
  width: 100%;
  max-height: 100%;
  overflow-y: scroll;
  background: #fffafa;
}

.header_theme_2 .header__menu-mobile.show {
  display: block;
}

.icon {
  fill: currentColor;
  fill-rule: evenodd;
}

.form__item {
  margin-bottom: 15px;
}

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

.form__link-policy {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

.table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  color: $gray-9;
}

.table thead th {
  border: none;
}

.table td,
.table th {
  border: none;
}

.modal {
  padding-right: 0 !important;
}

.modal__content {
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0px 8px 51px 0px rgba(19, 53, 105, 0.26);
  box-shadow: 0px 8px 51px 0px rgba(19, 53, 105, 0.26);
}

.modal__header {
  position: relative;
}

.modal__close {
  position: absolute;
  top: 5px;
  right: 12px;
  z-index: 5;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  background-color: transparent;
  border: none;
  outline: none;
  -ms-flex-align: start;
  -ms-flex-pack: end;
}

.modal__close:active,
.modal__close:focus {
  outline: none;
}

.modal__close-btn {
  font-weight: normal;
  font-size: 45px;
  outline: none;
  opacity: 1;
}

.modal__close-btn:active,
.modal__close-btn:focus,
.modal__close-btn:hover {
  outline: none;
}

.modal_theme_2 .modal__dialog {
  max-width: 610px;
}

.modal_theme_2 .modal__content {
  position: relative;
  width: 100%;
}

.modal_theme_2 .modal__content::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: -1;
  width: 650px;
  height: 120%;
  border: 2px dashed #05b2ff;
  border-radius: 10px;
}

.modal_theme_2 .modal__body {
  padding: 30px 22px 30px 22px;
  background-color: #fff;
  border-radius: 10px;
}

.modal_theme_2 .modal__close {
  top: 5px;
  right: 5px;
}

.modal_theme_2 .modal__close-btn {
  font-size: 30px;
}

.modal_theme_2 .modal__form-section .form-section__title {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.modal_theme_2 .modal__form-section .form__policy,
.modal_theme_2 .modal__form-section .form__policy-link {
  color: #a9b9c2;
}

.card_theme_4 {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 140px;
  margin-bottom: 0;
  padding: 29px;
  border-collapse: collapse;
  text-decoration: none;
  background-color: #f1f6f9;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-align: center;
}

.card_theme_4 .card__icon {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 50px;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.card_theme_4 .card__icon svg {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: #000;
}

.card_theme_4 .card__icon_current svg,
.card_theme_4 .card__icon_water svg {
  fill: transparent;
  stroke: #000;
}

.card_theme_4 .card__title {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  min-height: 30px;
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-flex-align: center;
}

.card_theme_4:hover:not(.active) .card__title {
  color: #f86900;
}

.card_theme_4:hover:not(.active) .card__icon svg {
  fill: #f86900;
}

.card_theme_4:hover:not(.active) .card__icon_current svg,
.card_theme_4:hover:not(.active) .card__icon_water svg {
  fill: transparent;
  stroke: #fc8600;
}

.card_theme_4.active {
  background: #f86900;
  -webkit-box-shadow: 0 11px 35px rgba(248, 105, 0, 0.64);
  box-shadow: 0 11px 35px rgba(248, 105, 0, 0.64);
}

.card_theme_4.active .card__icon svg {
  fill: #fff;
}

.card_theme_4.active .card__title {
  color: #fff;
}

.card_theme_4.active .card__icon_current svg,
.card_theme_4.active .card__icon_water svg {
  fill: transparent;
  stroke: #fff;
}

.section-title {
  margin-bottom: 33px;
  font-size: 25px;
  font-family: "Montserrat-Bold";
  text-align: center;
  color: #000;
}

.logo {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #000;
  -ms-flex-align: center;
}

.logo:hover {
  color: #000;
  text-decoration: none;
}

.logo__icon {
  width: 50px;
  height: 60px;
  margin-right: -10px;
  -webkit-transform: rotate(-90deg) translateY(-10px);
  transform: rotate(-90deg) translateY(-10px);
  fill: #4e00ff;
}

.logo__wrapper-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
  font-family: "Montserrat-Regular";
  color: #000;
}

.logo__title {
  font-family: "Montserrat-Bold";
}

.logo__title-blue {
  color: #4e00ff;
}

.logo_footer .logo__wrapper-text {
  font-size: 11px;
  color: #fff;
}

.logo_fixed .logo__wrapper-text {
  font-size: 10px;
  color: #fff;
}

.logo_fixed .logo__icon {
  fill: #fff;
  width: 30px;
  height: 30px;
}

.phone_main .phone__number {
  font-size: 21px;
  font-family: "Montserrat-Bold";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.phone_main:hover {
  text-decoration: none;
}

.phone_main .phone__number {
  color: #7dbd00;
}

.phone_footer .phone__number {
  color: #fff;
}

.phone_theme_contacts {
  position: relative;
}

.phone_theme_contacts .phone__icon {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: balck;
}

.phone_theme_contacts .phone__number {
  font-size: 26px;
  font-family: "Montserrat-Bold";
  color: #7dbd00;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.phone_theme_contacts:hover {
  text-decoration: none;
}

.phone_theme_contacts:hover .phone__number {
  color: #6aa001;
}

.phone_theme_contacts:hover .phone__icon {
  fill: #6aa001;
}

.phone_fixed .phone__number {
  font-size: 15px;
  color: #fff;
}

.button {
  position: relative;
  z-index: 3;
  height: 38px;
}

.button.white .button__text {
  color: #fff;
}

.button__text {
  font-size: 13px;
  font-family: "Montserrat-Bold";
}

.button_theme_icon {
  padding-right: 20px;
  padding-left: 10px;
  border: 2px solid #7dbd00;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button_theme_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 38px;
  height: 100%;
  background-color: #7dbd00;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button_theme_icon .button__icon {
  position: relative;
  z-index: 3;
  width: 15px;
  height: 15px;
  margin-right: 30px;
  fill: #fff;
}

.button_theme_icon:hover {
  border-color: #6fa800;
}

.button_theme_icon:hover::before {
  background-color: #6fa800;
}

.button_theme_green {
  background-color: #7dbd00;
}

.button_theme_green:hover {
  background-color: #6fa800;
}

.button_theme_black {
  width: 216px;
  height: 46px;
  color: #fff;
  background-color: #555;
}

.button_theme_black .button__text {
  color: #fff;
}

.textfield_theme_green .textfield__control {
  height: 38px;
  padding-left: 20px;
  font-size: 14px;
  font-family: "Montserrat-Regular";
  color: #000;
  border: 2px solid #7dbd00;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.textfield_theme_green .textfield__control::-webkit-input-placeholder {
  font-size: 14px;
  font-family: "Montserrat-Regular";
  color: #000;
}

.textfield_theme_green .textfield__control:-moz-placeholder {
  font-size: 14px;
  font-family: "Montserrat-Regular";
  color: #000;
}

.textfield_theme_green .textfield__control::-moz-placeholder {
  font-size: 14px;
  font-family: "Montserrat-Regular";
  color: #000;
}

.textfield_theme_green .textfield__control:-ms-input-placeholder {
  font-size: 14px;
  font-family: "Montserrat-Regular";
  color: #000;
}

.textfield_theme_green .textfield__control:hover,
.textfield_theme_green .textfield__control:focus {
  border-color: #6fa800;
}

.textfield_gray .textfield__control {
  height: 41px;
  padding-left: 15px;
  border: 2px solid #cbced2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.textfield_gray .textfield__control:hover,
.textfield_gray .textfield__control:focus {
  border-color: #9ea0a2;
}

.header_theme_2.fixed {
  -webkit-box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.3);
}

.header_theme_2 .header__top {
  padding-top: 18px;
  padding-bottom: 18px;
}

.header_theme_2 .header__select {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-left: 70px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-align: center;
}

.header_theme_2 .header__select span {
  margin-right: 16px;
  font-size: 13px;
  font-family: "Montserrat-Bold";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header_theme_2 .header__select span.fixed {
  position: absolute;
  opacity: 0;
}

.header_theme_2 .header__select.fixed {
  -webkit-transform: scale(0.7) translateX(-200px);
  transform: scale(0.7) translateX(-200px);
}

.header_theme_2 .header__container {
  height: auto;
  padding: 0 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header_theme_2 .header__container.fixed {
  height: 73px;
}

.header_theme_2 .header__menu {
  height: auto;
  background-image: linear-gradient(
    -403deg,
    #7737fb 0%,
    #631cfd 40%,
    #4e00ff 100%
  );
  background-size: 150%;
  -webkit-box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.11);
}

.header_theme_2 .header__logo,
.header_theme_2 .header__phone {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header_theme_2 .header__logo.fixed {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: scale(0.8) translateY(-50%);
  transform: scale(0.8) translateY(-50%);
}

.header_theme_2 .header__phone {
  margin-right: 12px;
}

.header_theme_2 .header__phone.fixed {
  -webkit-transform: scale(0.8) translateX(30px);
  transform: scale(0.8) translateX(30px);
}

.header_theme_2 .header__phone {
  margin-left: auto;
}

.header_theme_2 .header__mobile-menu-trigger {
  margin-left: auto;
}

.header_theme_2 .header__menu-mobile {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-sticky.fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.header-sticky .header__container {
  height: 50px;
}

.main-menu_theme_2 .main-menu__link {
  height: 50px;
  font-size: 13px;
  font-family: "Montserrat-Bold";
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-menu_theme_2 .main-menu__link:hover {
  color: #fff;
  background-color: #9465ff;
}

.main-menu_theme_2 .main-menu__link:hover::before {
  display: none;
}

.main-menu_footer .main-menu__link {
  padding: 18px 10px;
  font-size: 11px;
  font-family: "Montserrat-Bold";
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-menu_footer .main-menu__link:hover {
  color: #fff;
  background-color: #9465ff;
}

.main-menu_fixed .main-menu__link {
  padding-right: 12px;
  padding-left: 12px;
  font-size: 13px;
}

.mobile-menu_theme_2 .mobile-menu__select {
  margin-bottom: 20px;
}

.mobile-menu_theme_2 .mobile-menu__container {
  padding-bottom: 20px;
}

.mobile-menu .main-menu__link {
  color: #000;
}

.mobile-menu__btn button {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  width: 213px;
}

.dropdown {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
}

.dropdown__icon {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background-color: #7dbd00;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.dropdown__icon svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.dropdown_theme_2 .dropdown__trigger {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 175px;
  height: 38px;
  padding: 0 30px 0 9px;
  background-color: #fff;
  border: none;
  border: 2px solid #7dbd00;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-flex-align: center;
}

.dropdown_theme_2 .dropdown__text {
  font-size: 13px;
  white-space: nowrap;
  font-family: "Montserrat-Bold";
}

.dropdown_theme_2 .dropdown__caret {
  right: 16px;
  width: 11px;
  height: 11px;
  background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='iso-8859-1'?%3E%3C!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg fill='%23999999' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='306px' height='306px' viewBox='0 0 306 306' style='enable-background:new 0 0 306 306;' xml:space='preserve'%3E%3Cg%3E%3Cg id='chevron-right'%3E%3Cpolygon points='94.35,0 58.65,35.7 175.95,153 58.65,270.3 94.35,306 247.35,153 '/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.dropdown_theme_2 .dropdown__menu {
  border-radius: 0;
}

.dropdown-list {
  background-color: #fff;
}

.dropdown-list_theme_2 {
  position: relative;
}

.dropdown-list_theme_2 .dropdown-list__item-link {
  padding: 10px 18px;
  font-size: 14px;
  font-family: "Montserrat-Medium";
  border-radius: 0;
}

.dropdown-list_theme_2 .dropdown-list__item-link:hover,
.dropdown-list_theme_2 .dropdown-list__item-link:active,
.dropdown-list_theme_2 .dropdown-list__item-link:focus {
  outline: none;
}

.offer {
  position: relative;
  background-color: #f5f5f7;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.offer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("../images/main-bg.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 133%;
}

.offer__text-wrapper {
  position: relative;
  z-index: 6;
  padding-top: 75px;
  padding-bottom: 60px;
}

.offer__title {
  margin-bottom: 45px;
  font-size: 36px;
  line-height: 1.2;
  font-family: "Montserrat-Black";
  color: #000;
  text-transform: uppercase;
}

.offer__title span {
  color: #7dbd00;
}

.form-banner {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 470px;
  margin-bottom: 45px;
  padding: 18px 20px;
  padding-right: 0;
  border-width: 1px;
  border-style: dashed;
  border-color: #000;
  -ms-flex-align: center;
}

.form-banner__text {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 30px;
  font-size: 14px;
  font-family: "Montserrat-Medium";
  color: #000;
}

.form-banner__icon {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 25px;
  font-family: "Montserrat-SemiBold";
  color: #000;
  -ms-flex-align: center;
}

.form-banner__icon span {
  white-space: nowrap;
}

.form-banner__time-icon {
  width: 45px;
  height: 45px;
  margin-right: 12px;
  fill: #000;
}

.form-section_theme_5 {
  color: #000;
}

.form-section_theme_5 .form-section__title {
  margin-bottom: 18px;
  font-size: 16px;
  font-family: "Montserrat-SemiBold";
}

.form-section_theme_feadback {
  padding-left: 30px;
}

.form-section_theme_feadback .form-section__title {
  font-size: 30px;
  font-family: "Montserrat-Bold";
}

.form-section_theme_feadback .form-section__description {
  margin-bottom: 20px;
  font-size: 20px;
  font-family: "Montserrat-Bold";
}

.form-section_theme_1 .form-section__title {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1;
  font-family: "Montserrat-ExtraBold";
}

.form-section_theme_message .form-section__title {
  margin-bottom: 30px;
  font-size: 18px;
  font-family: "Montserrat-Bold";
  text-align: center;
}

.form_theme_5 {
  width: 470px;
}

.form_theme_5 .textfield {
  width: 48%;
}

.form_theme_5 .form__line {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
}

.form_theme_5 .form__btn {
  width: 48%;
  margin-left: 10px;
}

.form_theme_5 .form__btn-line {
  margin-left: 35px;
}

.form_theme_5 .form__btn-line span {
  position: relative;
  font-size: 13px;
  font-family: "Montserrat-Bold";
  cursor: pointer;
}

.form_theme_5 .form__btn-line span::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form_theme_5 .form__btn-line span:hover::before {
  opacity: 0;
}

.form_theme_1 .form__inner {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

.form_theme_1 .textfield input {
  height: 45px;
  padding-left: 28px;
}

.form_theme_1 .textfield textarea {
  height: 105px;
  min-height: 105px;
  padding-top: 40px;
  padding-left: 28px;
}

.form_theme_1 .form__item {
  margin-bottom: 10px;
}

.form_theme_1 .form__btn button {
  justify-content: center;
  width: 140px;
  height: 45px;
  margin-right: 20px;
  -ms-flex-pack: center;
}

.form_theme_1 .form__policy,
.form_theme_1 .form__policy-link {
  margin-top: 0;
  font-size: 12px;
  font-family: "Montserrat-Light";
  color: inherit;
  text-decoration: none;
}

.form_theme_1 .form__policy:hover,
.form_theme_1 .form__policy-link:hover {
  color: inherit;
}

.form_theme_1 .form__item:not(:last-child) {
  padding-right: 0;
}

.form_feadback {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.form_feadback .form__item {
  margin-bottom: 20px;
}

.form_feadback .form__policy,
.form_feadback .form__policy-link {
  font-size: 12px;
}

.form__policy,
.form__policy-link {
  margin-top: 15px;
  font-size: 14px;
  font-family: "Montserrat-Light";
  color: #000;
}

.form__policy:hover,
.form__policy-link:hover {
  color: #000;
  text-decoration: none;
}

.form_theme_message {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 420px;
  margin-right: auto;
  margin-left: auto;
}

.form_theme_message .textfield {
  width: 203px;
  margin-right: auto;
  margin-left: auto;
}

.form_theme_message .form__btn {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  width: 100%;
  -ms-flex-pack: center;
}

.form_theme_message .form__btn button {
  width: 203px;
}

.form_theme_message .form__policy,
.form_theme_message .form__policy-link {
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.services {
  padding: 50px 0;
}

.card_theme_1 {
  position: relative;
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  padding-right: 19px;
  padding-left: 19px;
  background-color: #f5f5f7;
  border: none;
  border-radius: 0;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.card_theme_1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    -403deg,
    #7737fb 0%,
    #631cfd 40%,
    #4e00ff 100%
  );
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card_theme_1:hover::before {
  opacity: 1;
}

.card_theme_1:hover .card__icon svg {
  fill: #fff;
}

.card_theme_1:hover .card__title {
  color: #fff;
}

.card_theme_1 .card__icon svg {
  width: 60px;
  height: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: #000;
}

.card_theme_1 .card__title {
  width: 100%;
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.2;
  font-family: "Montserrat-Medium";
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-list_services {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  -ms-flex-align: center;
}

.card-list_services .card-list__item {
  width: 20%;
  border-right: 2px solid #e7e7e7;
}

.card-list_services .card-list__item:last-child {
  border-right: 0;
}

.prices__item {
  margin-bottom: 20px;
  padding-right: 10px;
  padding-left: 10px;
}

.prices__item:nth-child(n+6) {
  display: none;
}



.prices .row {
  margin-right: -10px;
  margin-left: -10px;
}

.prices__title {
  margin-bottom: 40px;
}

.prices__more-btn {
  cursor: pointer;
}

.prices__more-btn span {
  position: relative;
  font-size: 14px;
}

.prices__more-btn span::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.prices__more-btn span:hover::before {
  opacity: 0;
}

.prices-items {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 214px;
  padding-top: 47px;
  padding-left: 23px;
  overflow: hidden;
  background-color: #f5f5f7;
}

.prices-items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border: 2px solid #7dbd00;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.prices-items:hover::before {
  opacity: 1;
}

.prices-items__title {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.2;
  font-family: "Montserrat-Bold";
}

.prices-items__title::first-letter {
  text-transform: uppercase;
}

.prices-items__price {
  font-size: 15px;
  font-family: "Montserrat-Medium";
}

.prices-items__img {
  position: absolute;
}

.prices-items__img.price-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;

  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.prices-items__img img {
  max-width: 100%;
}

.price-img1 {
  right: 27px;
  bottom: -15px;
}

.price-img2 {
  top: 25px;
  right: 50px;
}

.price-img3 {
  top: 5px;
  right: 0;
}

.price-img4 {
  top: 25px;
  right: 20px;
}

.price-img5 {
  right: 10px;
  bottom: -10px;
}

.price-img6 {
  top: 77px;
  right: 25px;
}

.price-img7 {
  right: 10px;
  bottom: -10px;
}

.price-img8 {
  top: 100px;
  right: 60px;
}

.steps-item {
  position: relative;
  width: 100%;
}

.steps-item.arrow::before {
  content: "";
  position: absolute;
  top: 35%;
  right: -30px;
  width: 39px;
  height: 27px;
  background-image: url("../images/right-arrow.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.steps-item.arrow_bottom::before {
  top: 140%;
  right: auto;
  left: 37%;
  -webkit-transform: translateY(0);
  -webkit-transform: rotate(90deg) translateX(-50%);
  transform: translateY(0);
  transform: rotate(90deg) translateX(-50%);
}

.steps-item.arrow_right::before {
  top: 20%;
  right: auto;
  left: -40px;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.steps-item__icon {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.steps-item__icon svg {
  width: 60px;
  height: 60px;
}

.steps-item__title {
  position: relative;
  width: 265px;
  margin-right: auto;
  margin-left: auto;
  font-size: 15px;
  font-family: "Montserrat-Medium";
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}

.steps-item__title span {
  position: absolute;
  top: 50%;
  left: -40px;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  font-size: 14px;
  line-height: 1;
  font-family: "Montserrat-Bold";
  color: #fff;
  background-image: linear-gradient(
    -403deg,
    #7737fb 0%,
    #631cfd 40%,
    #4e00ff 100%
  );
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.steps {
  padding-top: 60px;
  padding-bottom: 30px;
}

.steps__title {
  margin-bottom: 80px;
}

.steps__item {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-bottom: 110px;
  -ms-flex-pack: center;
}

.company__container {
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
  -ms-flex-align: stretch;
}

.company__text {
  position: relative;
  width: 50%;
  height: 100%;
  padding: 60px 50px 60px 70px;
  border: 1px solid #7dbd00;
}

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


.company__text::before {
  content: "";
  position: absolute;
  top: -1px;
  left: calc(100% + 1px);
  width: 100%;
  height: calc(100% + 2px);
  background-image: url("../images/about-company.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.company__title {
  text-align: left;
}

.reviews {
  position: relative;
  padding-top: 60px;
}

.reviews__nav {
  z-index: 7;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-flex-pack: center;
}

.reviews__nav-inner {
  z-index: 8;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  background-color: #fff;
  -webkit-box-shadow: -5px 0px 13.76px 2.24px rgba(77, 78, 80, 0.1);
  box-shadow: -5px 0px 13.76px 2.24px rgba(77, 78, 80, 0.1);
  -webkit-transform: translateY(-17px);
  transform: translateY(-17px);
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.swiper-btn-prev,
.swiper-btn-next {
  position: static;

  cursor: pointer;
}

.swiper-btn-prev svg,
.swiper-btn-next svg {
  width: 17px;
  height: 17px;
}

.swiper-btn-prev:active,
.swiper-btn-next:active,
.swiper-btn-prev:focus,
.swiper-btn-next:focus {
  outline: none;
}

.swiper-btn-prev {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.swiper-container,
.swiper-wrapper {
  height: auto;
}

.swiper-pagination {
  position: static;
}

.swiper-pagination {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-left: 20px;
  -ms-flex-align: center;
}

.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin-right: 10px;
  background-color: transparent;
  border: 2px solid #ebebeb;
  opacity: 1;

  transition: all 0.3s ease;
}

.swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.swiper-pagination-bullet:hover {
  border-color: #222;
}

.swiper-pagination-bullet:active,
.swiper-pagination-bullet:focus,
.swiper-pagination-bullet:hover {
  outline: none;
}

.swiper-pagination-bullet-active {
  background-color: #000;
  border: none;
  width: 9px;
  height: 9px;
}

.swiper-pagination-bullet-active:active,
.swiper-pagination-bullet-active:focus,
.swiper-pagination-bullet-active:hover {
  outline: none;
}

.swiper-slide.swiper-slide-active .slider-item {
  border-right: 2px solid #e7e7e7;
}

.slider-item {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 30px 15px 30px 30px;
  background-color: #f4f4f6;
  -ms-flex-align: center;

  height: 450px;
}

.slider-item__text {
  width: 285px;
}

.slider-item__info {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  -ms-flex-align: center;
}

.slider-item__icons {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-right: 25px;
  -ms-flex-align: center;
}

.slider-item__icons:last-child {
  margin-right: 0;
}

.slider-item__icons svg {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  fill: #7dbd00;
}

.slider-item__icons span {
  font-size: 15px;
  font-family: "Montserrat-Bold";
  white-space: nowrap;
}

.slider-item__title {
  margin-bottom: 30px;
  font-size: 15px;
  font-family: "Montserrat-Bold";
}

.slider-item__img {
  width: 210px;
  height: 275px;
  margin-right: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.slider-item__descr {
  padding: 15px;
  font-size: 13px;
  border: 2px solid #cbced2;
}

.slider-item__descr span {
  font-family: "Montserrat-Bold";
  font-style: italic;
}

.feadback {
  margin-top: 100px;
  margin-bottom: 80px;
}

.feadback__container {
  padding-top: 35px;
  background-color: #f4f4f6;
}

.feadback__form-wrapper {
  padding-right: 0;
  padding-bottom: 35px;
}

.feadback__img-wrapper {
  position: relative;
}

.feadback__img {
  position: absolute;
  right: 40px;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: flex-end;
  -ms-flex-align: end;
}

.feadback .textfield {
  width: 100%;
}

.feadback__img img {
  max-width: 100%;
}

.contacts {
  position: relative;
  background-color: #f1f6f9;
}

.contacts__text-wrapper {
  background-color: #f1f6f9;
}

.contacts__text {
  padding-top: 40px;
  padding-bottom: 40px;
}

.contacts__title {
  font-size: 36px;
  line-height: 1.2;
  font-family: "Montserrat-ExtraBold";
  color: #000;
}

.contacts__subtitle {
  font-size: 16px;
  font-family: "Montserrat-Light";
}

.contacts__phone {
  margin-top: 20px;
  margin-bottom: 20px;
}

.contacts__map {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.map {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.footer {
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #444;
}

.footer__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

.footer__policy {
  width: 100%;
  text-align: right;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.footer__policy {
  font-size: 11px;
  font-family: "Montserrat-Regular";
  color: #fff;
}

.footer__policy a {
  position: relative;
  color: #fff;
  text-decoration: none;
}

.footer__policy a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__oferta {
  width: 100%;
  margin-top: 20px;
  font-size: 12px;
  text-align: center;

  color: #fff;
}

.footer__policy a:hover {
  color: #fff;
}

.footer__policy a:hover::before {
  opacity: 0;
}

.modal_theme_message .modal__dialog {
  max-width: 760px;
}

.modal_theme_message .modal__body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  padding: 50px 15px;
  -ms-flex-align: center;
}

.modal_theme_message .modal__title {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1;
  font-family: "Montserrat-ExtraBold";
  text-align: center;
  color: #121a27;
}

.modal_theme_message .modal__close {
  top: 5px;
  right: 5px;
}

.modal_theme_message .modal__close-btn {
  font-size: 30px;
}

@media only screen and (max-width: 1199px) {
  .phone_main .phone__number {
    font-size: 18px;
  }

  .header_theme_2 .header__select {
    margin-left: 20px;
  }

  .header_theme_2 .header__select span {
    margin-right: 10px;
  }

  .header_theme_2 .header__logo.fixed {
    -webkit-transform: scale(0.7) translateX(-42px);
    transform: scale(0.7) translateX(-42px);
  }

  .dropdown_theme_2 .dropdown__trigger {
    width: 160px;
  }

  .offer::before {
    width: 70%;
    background-position: bottom center;
    background-size: cover;
  }

  .offer__title {
    font-size: 26px;
  }

  .form-banner {
    width: 100%;
    padding: 23px 15px;
  }

  .form-banner__icon {
    width: 135px;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  .form_theme_5 {
    width: 100%;
  }

  .form_theme_1 .form__item:not(:last-child) {
    padding-right: 15px;
  }

  .price-img1 {
    right: 10px;
  }

  .price-img2 {
    right: 10px;
  }

  .price-img4 {
    top: 60px;
    right: -15px;
  }

  .price-img4 img {
    max-width: 80%;
  }

  .price-img5 {
    right: -10px;
    bottom: -20px;
  }

  .price-img5 img {
    max-width: 85%;
  }

  .price-img8 {
    right: 40px;
  }

  .feadback__img img {
    max-width: 90%;
  }

  .feadback__img {
    right: 15px;
  }

  .contacts__text-wrapper {
    padding-right: 30px;
  }

  .footer__policy {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .footer__btn {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    -ms-flex-align: center;
    -ms-flex-pack: center;
  }

  .footer__btn .button__text {
    white-space: nowrap;
  }

  .dropdown_theme_2 .dropdown__text {
    font-size: 12px;
  }
}

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

  .header_theme_2 .header__container {
    height: 60px;
  }



  .header_theme_2 .header__select,
  .header_theme_2 .header__phone {
    display: none;
  }

  .logo__icon {
    width: 30px;
    height: 30px;
  }

  .logo__wrapper-text {
    font-size: 12px;
  }

  .button {
    justify-content: flex-start;
    -ms-flex-pack: start;
  }

  .button__text {
    margin: 0 auto;
  }

  .header_theme_2 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #fff;
  }

  .header__top {
    box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.1);
  }

  .header_theme_2 .header__top {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header_theme_2 .header__container {
    height: auto;
  }

  .header_theme_2 .header__menu {
    display: none;
  }

  .header_theme_2 .header__btn-fixed {
    display: none;
  }

  .header_theme_2 .header__phone {
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
  }

  .main-menu_theme_2 .main-menu__link:hover {
    color: #000;
    background-color: transparent;
  }

  .main-menu_theme_2 .main-menu__link {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 11px;
  }

  .main-menu_theme_2 .main-menu__list {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main-menu_footer .main-menu__list {
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    -ms-flex-align: center;
  }

  .main-menu_footer .main-menu__item {
    padding: 8px 15px;
  }

  .main-menu_footer .main-menu__link {
    padding: 10px;
  }

  .main-menu_footer .main-menu__link:hover {
    color: #fff;
    background-color: transparent;
  }

  .offer::before {
    opacity: 0.4;
  }

  .offer {
    margin-top: 55px;
  }

  .offer__form-section {
    margin-top: 45px;
    padding-right: 0;
  }

  .offer__title {
    text-align: center;
  }

  .form-banner {
    justify-content: center;
    max-width: 533px;
    margin-right: auto;
    margin-left: auto;
    padding: 10px 15px;
    -ms-flex-pack: center;
  }

  .form-banner__text {
    margin-left: 0;
  }

  .form-banner__icon {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  .form-section_theme_5 {
    max-width: 533px;
    margin-right: auto;
    margin-left: auto;
  }

  .form-section_theme_feadback {
    align-items: center;
    -ms-flex-align: center;
  }

  .form-section_theme_feadback .form-section__title {
    text-align: center;
  }

  .form-section_theme_feadback .form-section__description {
    text-align: center;
  }

  .form_theme_5 {
    align-items: center;
    -ms-flex-align: center;
  }

  .form_theme_5 .textfield {
    width: 48%;
  }

  .form_theme_5 .form__line {
    justify-content: space-between;
    -ms-flex-pack: justify;
  }

  .form_theme_5 .form__btn-line {
    margin-left: 0;
  }

  .form_theme_1 .form__inner {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .form_theme_1 .form__btn {
    width: 100%;
  }

  .form_theme_1 .form__btn button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .company__text::after {
    left: 130%;
    width: 150px;
  }

  .form_theme_1 .form__policy,
  .form_theme_1 .form__policy-link {
    text-align: left;
  }

  .form_feadback button {
    width: 324px;
    margin-bottom: 20px;
  }

  .form_feadback .form__line {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }

  .form__policy,
  .form__policy-link {
    text-align: center;
  }

  .card-list_services {
    justify-content: center;
    -ms-flex-pack: center;
  }

  .card-list_services .card-list__item {
    width: 33%;
    border-bottom: 2px solid #e7e7e7;
  }

  .card-list__item:nth-child(4),
  .card-list__item:nth-child(5) {
    border-bottom: none;
  }

  .card-list__item:nth-child(3) {
    border-right: none !important;
  }

  .price-img1 {
    right: -60px;
  }

  .price-img1 img {
    max-width: 75%;
  }

  .price-img2 {
    top: 80px;
    right: -40px;
  }

  .price-img2 img {
    max-width: 75%;
  }

  .steps {
    padding-bottom: 0;
  }

  .steps__item:nth-child(2) .steps-item::before {
    visibility: hidden;
    top: 130%;
    right: auto;
    left: 45%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .steps__item:nth-child(3) .steps-item::before {
    top: 20%;
    right: auto;
    bottom: auto;
    left: 100%;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .steps__item:nth-child(5) .steps-item.arrow_right::before {
    top: auto;
    right: auto;
    bottom: 130%;
    left: 45%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .steps__item:nth-child(6) .steps-item.arrow_right::before {
    visibility: hidden;
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }

  .company__container {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .company__text {
    padding: 40px 30px;
  }
  .company__text {
    width: 100%;
    padding: 30px 20px;
  }

  .company__text::before {
    display: none;
  }

  .company__title {
    text-align: center;
  }

  .company__img {
    width: 100%;
    height: 300px;
    margin-top: 10px;
    background-image: url("../images/about-company.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .swiper-container {
    overflow: visible;
  }

  .slider-item__icons svg {
    width: 20px;
    height: 20px;
  }

  .slider-item__icons span {
    font-size: 13px;
  }

  .slider-item__img {
    height: 345px;
  }

  .feadback {
    margin-top: 70px;
  }

  .feadback__form-wrapper {
    padding: 0 15px;
    padding-bottom: 35px;
  }

  .feadback__img {
    display: none;
  }

  .contacts__text-wrapper {
    padding-right: 15px;
  }

  .contacts__title {
    font-size: 30px;
  }

  .footer__container {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__logo {
    margin-bottom: 10px;
  }

  .footer__phone {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
  }

  .footer__btn {
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    -ms-flex-align: center;
  }

  .footer__policy {
    margin-top: 20px;
    text-align: center;
  }

  .dropdown_theme_2 .dropdown__trigger {
    width: 175px;
  }

  body .steps-item.arrow::before {
    visibility: hidden;
    content: "";
    position: absolute;
    top: 35px !important;
    right: -30px !important;
    width: 39px;
    height: 27px;
    background-image: url(../images/right-arrow.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }
}

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

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .company__text::after {
    display: none;
  }

  .dropdown_theme_2 .dropdown__menu {
    position: relative;
  }

  .modal_theme_2 .modal__dialog {
    max-width: 380px;
  }

  .modal_theme_2 .modal__content::before {
    display: none;
  }

  .modal_theme_2 .modal__form-section .form-section__title {
    font-size: 17px;
    text-align: left;
  }

  .modal_theme_2 .modal__form-section .form__policy,
  .modal_theme_2 .modal__form-section .form__policy-link {
    text-align: left;
  }

  .phone_theme_contacts .phone__icon {
    position: absolute;
    left: -30px;
  }

  .button_theme_icon {
    padding-right: 10px;
    padding-left: 10px;
  }

  .header_theme_2 {
    height: 50px;
  }

  .header_theme_2 .header__select {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  .main-menu_theme_2 {
    margin-bottom: 15px;
  }

  .mobile-menu_theme_2 {
    padding-top: 20px;
  }

  .dropdown_theme_2 .dropdown__menu {
    position: absolute;
  }

  .offer::before {
    display: none;
  }

  .offer__text-wrapper {
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .offer__form-section {
    margin-top: 0;
    padding-right: 0;
  }

  .offer__title {
    margin-bottom: 30px;
    text-align: center;
  }

  .form-banner {
    margin-bottom: 30px;
  }

  .form-section_theme_5 .form-section__title {
    margin-bottom: 15px;
    font-size: 17px;
    text-align: center;
  }

  .form-section_theme_feadback {
    padding-left: 0;
  }

  .form-section_theme_1 .form-section__title {
    font-size: 17px;
    text-align: center;
  }

  .form_theme_5 .textfield {
    width: 100%;
  }

  .form_theme_5 .form__line {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .form_theme_5 .form__btn {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }

  .form_theme_1 .form__policy,
  .form_theme_1 .form__policy-link {
    text-align: center;
  }

  .form_feadback .form__item {
    margin-bottom: 15px;
  }

  .form__policy,
  .form__policy-link {
    font-size: 13px;
  }

  .card_theme_1 {
    height: 180px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .card_theme_1 .card__icon svg {
    width: 50px;
    height: 50px;
  }

  .card_theme_1 .card__title {
    margin-top: 25px;
    font-size: 12px;
  }

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

  .steps-item.arrow::before {
    width: 30px;
    height: 30px;
  }

  .steps__title {
    margin-bottom: 45px;
  }

  .steps__item {
    margin-bottom: 60px;
  }

  .steps__item .steps-item::before {
    top: 110% !important;
    right: auto !important;
    bottom: auto !important;
    left: 48% !important;
    -webkit-transform: rotate(90deg) !important;
    transform: rotate(90deg) !important;
  }

  .steps__item:nth-child(5) .steps-item.arrow_right::before {
    top: auto !important;
    right: auto !important;
    bottom: 110% !important;
    left: 48% !important;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .steps__item:nth-child(6) .steps-item.arrow_right::before {
    top: auto !important;
    right: auto !important;
    bottom: 110% !important;
    left: 48% !important;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }



  .reviews__nav-inner {
    margin-top: 15px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .slider-item {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 20px 15px;
    height: 500px;
  }

  .slider-item__text {
    width: 100%;
  }

  .slider-item__info {
    margin-bottom: 20px;
  }

  .slider-item__img {
    width: 100%;
    height: 280px;
    margin-top: 10px;
    margin-right: 0;
  }

  .feadback {
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .contacts__text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    -ms-flex-align: center;
  }

  .contacts__title {
    font-size: 26px;
    text-align: center;
  }

  .contacts__subtitle {
    text-align: center;
  }

  .contacts__map {
    position: static;
    width: 100%;
    height: 350px;
    margin-top: 10px;
  }

  .map {
    position: static;
    width: 100%;
    height: 350px;
    margin-top: 10px;
  }

  .modal_theme_message {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
}

@media only screen and (max-width: 575px) {
  .main-menu_theme_2 .main-menu__link {
    font-size: 14px;
  }

  .hamburger-box {
    width: 36px;
  }

  .hamburger-inner,
  .hamburger-inner:after,
  .hamburger-inner:before {
    width: 36px;
  }

  .section-title {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .logo__icon {
    margin-right: -3px;
    -webkit-transform: rotate(-90deg) translateY(-5px);
    transform: rotate(-90deg) translateY(-5px);
  }

  .header_theme_2 .header__logo.hidden {
    opacity: 0;
  }

  .header_theme_2 .header__phone {
    position: absolute;
    left: 15px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  .header_theme_2 .header__phone.show {
    opacity: 1;
  }

  .mobile-menu_theme_2 .mobile-menu__select {
    width: 100%;
    margin-bottom: 10px;
  }

  .mobile-menu__btn {
    width: 100%;
  }

  .mobile-menu__btn button {
    width: 100%;
  }

  .dropdown_theme_2 .dropdown__trigger {
    width: 100%;
  }

  .offer__text-wrapper {
    padding-top: 40px;
  }

  .offer__title {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.5;
  }

  .form-banner {
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 10px;
  }

  .form-banner__text {
    margin-top: 0;
    text-align: center;
  }

  .form-banner__icon {
    width: auto;
    margin-bottom: 5px;
  }

  .form-section_theme_5 .form-section__title {
    font-size: 15px;
  }

  .form-section_theme_feadback .form-section__title {
    font-size: 20px;
  }

  .form-section_theme_feadback .form-section__description {
    font-size: 17px;
  }

  .form-section_theme_message .form-section__title {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .form_theme_message {
    width: 100%;
  }

  .form_theme_message .textfield {
    width: 100%;
  }

  .form_theme_message .form__btn button {
    width: 100%;
  }

  .card-list_services .card-list__item {
    width: 50%;
  }

  .card-list__item:nth-child(3) {
    border-bottom: 2px solid #e7e7e7;
    border-right: 2px solid #e7e7e7 !important;
  }

  .card-list__item:nth-child(2),
  .card-list__item:nth-child(4) {
    border-right: none;
  }
  .card-list__item:nth-child(4) {
    border-bottom: 2px solid #e7e7e7;
  }

  .prices__item {
    margin-bottom: 10px;
  }

  .prices-items {
    padding-top: 20px;
    padding-left: 15px;
    height: 150px;
  }

  .prices-items__title {
    margin-bottom: 15px;
  }

  .price-img1 {
    right: -90px;
  }

  .price-img1 img {
    max-width: 65%;
  }

  .price-img2 {
    top: 90px;
    right: -70px;
  }

  .price-img2 img {
    max-width: 70%;
  }

  .price-img4 {
    top: 80px;
    right: -40px;
  }

  .price-img4 img {
    max-width: 70%;
  }

  .price-img5 {
    right: -40px;
  }

  .price-img5 img {
    max-width: 70%;
  }

  .price-img6 {
    right: -40px;
    bottom: -30px;
  }

  .price-img6 img {
    max-width: 70%;
  }

  .price-img7 {
    right: -50px;
  }

  .price-img7 img {
    max-width: 70%;
  }

  .price-img8 {
    right: -20px;
  }

  .price-img8 img {
    max-width: 70%;
  }

  .steps-item.arrow::before {
    display: none;
  }

  .steps-item__icon {
    margin-bottom: 20px;
  }

  .steps-item__title {
    text-align: center;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .steps-item__title span {
    display: none;
  }

  .steps {
    padding-bottom: 30px;
  }

  .steps__item {
    margin-bottom: 40px;
  }

  .company__text {
    padding: 20px 10px;
  }

  .reviews__nav-inner {
    width: 100%;
  }

  .slider-item__title {
    margin-bottom: 20px;
  }

  .slider-item__img {
    height: 250px;
  }

  .contacts__subtitle {
    font-size: 14px;
  }

  .modal_theme_message .modal__body {
    padding: 50px 10px 40px 10px;
  }

  .modal_theme_message .modal__close {
    top: -10px;
    right: 0;
  }

  .form_feadback .form__item {
    margin-bottom: 10px;
}
}
