@charset "UTF-8";
/*utf*/
/*color*/
/*color*/
/*reset*/
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  width: 100%;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

/* Элементы a сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #c88727;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

/*reset*/
/*grid*/
.container {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

/*grid*/
/*classes*/
.gray-separator {
  width: 100%;
  height: 1px;
  background-color: #e4e4e4;
  margin-top: 30px;
  display: inline-block;
  margin-bottom: 45px;
}

.light-brown-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 20px !important;
}
.light-brown-title:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #ffe6c0;
  width: 100%;
  height: 14px;
  left: 0;
  top: 19px;
}

.number-list {
  list-style-type: none;
  /* Убираем исходные маркеры */
  counter-reset: my-counter;
  /* Задаём имя счетчика */
  font-size: 16px;
  line-height: 160%;
  padding-bottom: 15px !important;
}
.number-list li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 25px;
}
.number-list li:before {
  content: counter(my-counter);
  /* Выводим число */
  counter-increment: my-counter;
  /* Увеличиваем значение счётчика */
  font-style: italic;
  color: #c88727;
  margin-right: 15px;
  font-family: "Montserrat", sans-serif;
  font-family: "Montserrat Alternates", sans-serif;
  position: absolute;
  left: 0;
}

.section-title {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  color: #373737;
}

.inner-page .section-title {
  padding-top: 56px;
  padding-bottom: 30px;
}

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

.brown-btn {
  border: 1px solid #c88727;
  background-color: transparent;
  color: #c88727;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  padding: 20px 20px 21px 20px;
  height: 63px;
  cursor: pointer;
  transition: all 0.3s;
}
.brown-btn:hover {
  color: #ffffff;
  background-color: #c88727;
}

.brown-btn__brown {
  border: 1px solid #c88727;
  background-color: #c88727;
  text-align: center;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  padding: 20px 20px 21px 20px;
  height: 63px;
  cursor: pointer;
  transition: all 0.3s;
}
.brown-btn__brown:hover {
  color: #c88727;
  background-color: #ffffff;
  border: 1px solid #c88727;
}

.gray-btn {
  border: 1px solid #9c9c9c;
  color: #9c9c9c;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  padding: 19px 20px 19px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.gray-btn svg {
  margin-left: 17px;
}

.light_brown-btn {
  border: 1px solid #b7996c;
  background-color: transparent;
  width: 100%;
  padding: 14px 0;
  margin-top: 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #6f4c19;
  cursor: pointer;
  transition: all 0.3s ease;
}
.light_brown-btn:hover {
  background-color: #b7996c;
  color: #ffffff;
}

.gray-btn.dropdown-select {
  display: block;
  width: 100%;
  margin-right: 7px;
  padding: 0;
}
.gray-btn.dropdown-select.off-hover .gray-btn_select:hover ul {
  display: none;
  pointer-events: none;
}
.gray-btn.dropdown-select .gray-btn_select {
  position: relative;
}
.gray-btn.dropdown-select .gray-btn_select .gray-btn_select-main {
  position: relative;
  padding: 20px;
  width: 230px;
}
.gray-btn.dropdown-select .gray-btn_select .gray-btn_select-main svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 21px;
}
.gray-btn.dropdown-select ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  background: #fff;
  z-index: 3;
  border: 1px solid #9c9c9c;
  border-top: none;
  width: calc(100% + 2px);
  left: -1px;
  transition: all 0.3s ease;
}
.gray-btn.dropdown-select ul.active-toggle {
  display: block;
}
.gray-btn.dropdown-select ul li {
  padding: 20px;
  border-top: 1px solid #9c9c9c;
  cursor: pointer;
}
.gray-btn.dropdown-select ul li:hover {
  background-color: #ffe6c0;
}

.red-txt {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #ff8989;
}

.dropdown-list {
  padding: 60px 0 20px 0px !important;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  z-index: 2;
  left: 0;
  top: 91px;
  display: none;
  border-top: 1px solid #f7f7f7;
  border-bottom: 1px solid #f7f7f7;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.07);
}
.dropdown-list .dropdown-list_ul {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.dropdown-list li {
  flex: 0 0 170px;
  margin-bottom: 50px !important;
  margin-right: 170px !important;
  padding: 0 !important;
  margin-left: 0 !important;
}
.dropdown-list li:nth-child(4) {
  margin-right: 0 !important;
}
.dropdown-list li:nth-child(8) {
  margin-right: 0 !important;
}
.dropdown-list li a {
  color: #373737;
}
.dropdown-list li a:hover {
  color: #c88727 !important;
}
.dropdown-list li a:hover:after {
  display: none;
}
.dropdown-list li .dropdown-list_icn {
  margin-bottom: 15px;
}

.txt-gray-bg {
  position: relative;
  background-color: #eeeeee;
}

.txt-brown {
  color: #c88727;
}

.not-margin {
  margin-left: -10px;
  margin-right: -10px;
}

.left-column_big {
  padding-left: 10px;
  padding-right: 10px;
  max-width: 75%;
  width: 75%;
  flex: 0 0 75%;
}

.right-column_small {
  padding-left: 10px;
  padding-right: 10px;
  max-width: 25%;
  width: 25%;
  flex: 0 0 25%;
}

.small-form {
  background-color: #ffe6c0;
  padding: 60px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  /* Firefox 19+ */
  /* Firefox 18- */
}
.small-form .form_send {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffe6c0;
  padding: 40px 30px;
}
.small-form .small-form_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #6f4c19;
  margin-bottom: 15px;
}
.small-form .small-form_sub-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #6f4c19;
}
.small-form ::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #6f4c19;
}
.small-form ::-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #6f4c19;
}
.small-form :-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #6f4c19;
}
.small-form :-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #6f4c19;
}
.small-form .input-wrapper {
  width: 100%;
  border-bottom: 1px solid #b7996c;
  margin-bottom: 15px;
}
.small-form .input-wrapper input {
  background-color: transparent;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #6f4c19;
  border: none;
}

.form_block {
  /* Firefox 19+ */
  /* Firefox 18- */
}
.form_block ::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #9c9c9c;
}
.form_block ::-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #9c9c9c;
}
.form_block :-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #9c9c9c;
}
.form_block :-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #9c9c9c;
}
.form_block .input-wrapper {
  width: 100%;
}
.form_block .input-wrapper input {
  background-color: transparent;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #373737;
  border: none;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 10px;
}

.big-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
  /* Firefox 19+ */
  /* Firefox 18- */
}
.big-form ::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #9c9c9c;
}
.big-form ::-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #9c9c9c;
}
.big-form :-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #9c9c9c;
}
.big-form :-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #9c9c9c;
}
.big-form .input-wrapper {
  width: 100%;
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 25px;
}
.big-form .input-wrapper input {
  background-color: transparent;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #373737;
  border: none;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
button:hover,
button:focus,
div:hover,
div:focus {
  outline: none;
}

/* modal */
.overlay {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease-in-out;
  max-height: 100vh;
  overflow-y: auto;
}
.overlay.open {
  opacity: 1;
  pointer-events: inherit;
}
.overlay .modal {
  position: relative;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease-in-out;
  max-height: 100vh;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  height: auto;
  box-shadow: 0 8px 13px 0 rgba(69, 69, 69, 0.24);
  background: #fff;
  width: 800px;
  box-sizing: border-box;
  max-width: 100%;
  padding: 60px;
}
.overlay .modal.open {
  opacity: 1;
  pointer-events: inherit;
}
.overlay .modal.open .content {
  transform: translate(0, 0px);
  opacity: 1;
}
.overlay .modal .content {
  transform: translate(0, -10px);
  opacity: 0;
  transition: 0.35s ease-in-out;
  width: 100%;
}
.overlay .modal .content .big-form {
  margin-top: 0;
}
.overlay .modal .content .big-form .form_description-wrapper {
  margin-bottom: 35px;
}
.overlay .modal .content .big-form .section-title {
  margin-bottom: 15px;
}
.overlay .modal .modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.overlay .modal .modal-footer .modal-form_btn {
  margin-top: 0;
}
.overlay .modal .close-modal {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.overlay .modal .close-modal svg {
  transform: rotate(90deg);
  margin-right: 10px;
}
.overlay .modal .modal-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: 0;
  background: rgba(235, 235, 235, 0.5);
  justify-content: center;
  text-align: center;
}
.overlay .modal .modal-close-btn svg {
  margin: 0;
}
.overlay .modal .modal-close-btn:hover {
  background: rgba(235, 235, 235, 0.75);
}

.thx-window {
  position: relative;
}
.thx-window .form_send {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  flex-direction: row;
  padding: 53px 0;
  align-items: flex-end;
}
.thx-window .form_send .thx-left .section-subtitle {
  font-size: 16px;
  line-height: 150%;
  padding: 20px 113px 40px 0;
}
.thx-window .form_send .thx-right {
  width: 220px;
  flex: 0 0 220px;
}
.thx-window .form_send .brown-btn {
  width: 231px;
}

/* modal */
.sec-thx-window {
  position: relative;
}
.sec-thx-window .form_send {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  flex-direction: row;
  padding: 60px 110px;
  align-items: center;
}
.sec-thx-window .form_send .thx-left .section-title {
  width: auto;
}
.sec-thx-window .form_send .thx-left .section-subtitle {
  font-size: 16px;
  line-height: 150%;
  padding: 20px 113px 40px 0;
}
.sec-thx-window .form_send .thx-right {
  width: 220px;
  flex: 0 0 220px;
}

/*classes*/
/*main style*/
body {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
  text-align: left;
  color: #373737;
}
body h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 78px;
}
body p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 150%;
  display: inline-block;
}

/*main style*/
/*header*/
.header {
  background-color: #ffffff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}
.header .row {
  align-items: center;
  justify-content: space-between;
}
.header .container {
  position: static;
}
.header .logo {
  position: relative;
  max-width: 190px;
  top: -8px;
}
.header .header_menu .hamburger {
  display: none;
}
.header .header_menu .drawer-list .menu_list-wrapheader {
  display: flex;
  flex-direction: row;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
}
.header .header_menu .drawer-list .menu_list-wrapheader li {
  margin: 0 10px;
  padding: 37px 5px;
}
.header
  .header_menu
  .drawer-list
  .menu_list-wrapheader
  li.dropdown:hover
  > a:after {
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  margin: 0 auto;
  height: 67px;
  background-color: #ffe6c0;
  left: -5px;
  top: -36px;
  z-index: -1;
}
.header
  .header_menu
  .drawer-list
  .menu_list-wrapheader
  li.dropdown:hover
  .dropdown-list {
  display: flex;
}
.header .header_menu .drawer-list .menu_list-wrapheader li a {
  color: #373737;
  transition: 0.1s all;
  position: relative;
  z-index: 1;
}
.header .header_menu .drawer-list .menu_list-wrapheader li a.active {
  color: #c88727;
  pointer-events: none;
}
.header .header_menu .drawer-list .menu_list-wrapheader li a:hover:after {
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  margin: 0 auto;
  height: 67px;
  background-color: #ffe6c0;
  left: -5px;
  top: -36px;
  z-index: -1;
}
.header .header_menu .drawer-list .menu_list-wrapheader .dropdown-list {
  padding-top: 10px;
}
.header .contacts-dropdown_wrapper {
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
.header .contacts-dropdown_wrapper a {
  color: #373737;
}
.header .contacts-dropdown_wrapper a:hover {
  color: #c88727;
}
.header .contacts-dropdown_wrapper .contacts-dropdown_main {
  display: flex;
  align-items: center;
  position: relative;
}
.header .contacts-dropdown_wrapper .contacts-dropdown_main-wrapper {
  display: flex;
  align-items: center;
}
.header .contacts-dropdown_wrapper .contacts-dropdown_main-wrapper svg {
  margin-left: 12px;
  display: inline-block;
}
.header
  .contacts-dropdown_wrapper
  .contacts-dropdown_main-wrapper
  .open-contacts_dpd {
  cursor: pointer;
}
.header .contacts-dropdown_wrapper .contacts-dropdown {
  position: absolute;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  padding: 30px 30px 10px 30px;
  width: 260px;
  background-color: #fff;
  right: -13px;
  top: 59px;
  border: 1px solid #f3f3f3;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.07);
  display: none;
}
.header .contacts-dropdown_wrapper .contacts-dropdown li {
  padding: 0 !important;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .contacts-dropdown_wrapper .contacts-dropdown li .contacts-icn {
  width: 22px;
  margin-right: 10px;
}
.header .contacts-dropdown_wrapper .contacts-dropdown li .brown-btn {
  padding: 20px 17px 21px 16px;
}

.phone-contacts {
  display: none;
}

.mob-close_nav {
  display: none;
}

/* Gift */
.gift {
  position: fixed;
  bottom: 80px;
  left: 60px;
}

.gift-modal-trigger {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0;
  padding: 0;
  border: 0;
  background: 0;
  line-height: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.gift-modal-trigger::before,
.gift-modal-trigger::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 50%;
  transition: transform 0.35s cubic-bezier(0.87, 0.5, 0.5, 1.46);
  background: #ffe6c0;
  content: "";
}
.gift-modal-trigger::before {
  /* Outer ring */
  transform: scale(0.75);
  opacity: 0.4;
}
.gift-modal-trigger::after {
  /* Inner ring */
  transform: scale(0.6);
}
.gift-modal-trigger img {
  display: inline-block;
  width: 28px;
  height: 28px;
}

@media (max-width: 1555px) {
  .gift {
    left: 20px;
    bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .gift {
    left: auto;
    right: 0;
    top: 85px;
    bottom: auto;
  }

  .gift-modal-trigger::before {
    animation: gift-outer-pulse 4s linear infinite;
  }
  .gift-modal-trigger::after {
    animation: gift-inner-pulse 4s linear infinite;
  }
}
@media (min-width: 576px) {
  .gift-modal-trigger:hover::before,
  .gift-modal-trigger:focus::before {
    transform: none;
  }
  .gift-modal-trigger:hover::after,
  .gift-modal-trigger:focus::after {
    transform: scale(0.75);
  }
}
@keyframes gift-outer-pulse {
  0% {
    transform: scale(0.33);
  }
  32.5% {
    opacity: 0.4;
  }
  40%,
  100% {
    opacity: 0;
    transform: none;
  }
}
@keyframes gift-inner-pulse {
  0%,
  25.5%,
  100% {
    transform: scale(0.6);
  }
  20% {
    transform: scale(0.75);
  }
}
/*header*/
/* Present box modal */
.present-box-overlay {
  overflow: hidden !important;
}

.present-box .content {
  transform: none !important;
}
.present-box .section-title {
  margin-bottom: 35px;
  padding: 0 !important;
}
.present-box .highlighted-red {
  color: #ef4e4e;
}
.present-box .section-subtitle {
  max-width: 580px;
  margin-bottom: 50px;
}

.present-box-overlay .present-box {
  padding: 80px 110px 90px;
}

[lang="uk"] .present-box {
  padding-left: 90px;
  padding-right: 90px;
}

.present-box-phones {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px !important;
  max-width: 550px;
  font-weight: 600;
  font-size: 18px;
}
.present-box-phones a {
  color: inherit;
}

.present-box-actions {
  display: flex;
  margin-left: 0;
  margin-right: -15px;
}
.present-box-actions > * {
  margin-right: 15px;
}

.overlay.open .present-box {
  animation: slideInTop 0.5s 0.5s ease-out both;
}

@keyframes slideInTop {
  from {
    transform: translate3d(0, 100vh, 0);
  }
  to {
    transform: none;
  }
}
@media (max-width: 834px) {
  .present-box {
    padding-top: 40px !important;
  }
  .present-box .content {
    max-height: calc(100% - 40px);
  }
  .present-box .section-title {
    margin-bottom: 20px;
    font-size: 28px;
  }
  .present-box .section-subtitle {
    margin-bottom: 20px;
  }
  .present-box .present-box-actions {
    display: block;
    margin: 0;
  }
  .present-box .present-box-actions > * {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .present-box .present-box-phones {
    display: block;
    margin-bottom: 20px !important;
  }
  .present-box .present-box-phones > * {
    margin-bottom: 15px;
  }
}
@media (max-width: 575.98px) {
  .present-box {
    animation-duration: 0.35s !important;
  }
}
/*first-screen*/
.first-screen {
  background-image: url(../img/fs-bg.jpg);
  -webkit-background-size: 960px;
  background-size: 960px;
  background-repeat: no-repeat;
  background-position: 100% 0%;
  margin-top: 92px;
}
.first-screen .first-screen_content {
  padding: 140px 0 100px 0;
  width: 415px;
}
.first-screen .first-screen_content .main-title_wrapper {
  margin-bottom: 45px;
}
.first-screen .first-screen_content .main-title_wrapper img {
  margin-bottom: 26px;
}
.first-screen .first-screen_content .main-title_wrapper .main-title_sub {
  margin-top: 35px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.first-screen .first-screen_content .main-title_wrapper h1 {
  position: relative;
  overflow: hidden;
}
.first-screen .first-screen_content .main-title_wrapper h1:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 48px;
  background-color: #eeeeee;
  bottom: 11px;
  right: 36px;
  z-index: -1;
}
.first-screen .first-screen_content .main-title_wrapper h1:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 48px;
  background-color: #eeeeee;
  bottom: 90px;
  right: 14px;
  z-index: -1;
}
.first-screen .first-screen_content .first-screen_btn-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.first-screen .benefits_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  counter-reset: benefits;
}
.first-screen .benefits_list .benefits_card {
  display: block;
  max-width: 25%;
  width: 25%;
  flex: 0 0 25%;
  background-color: #ffffff;
  padding: 57px 0 72px 0;
}
.first-screen .benefits_list .benefits_card .benefits_card-icn {
  position: relative;
  display: inline-block;
}
.first-screen .benefits_list .benefits_card .benefits_card-icn:after {
  counter-increment: benefits;
  content: counter(benefits);
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  color: #c88727;
  position: absolute;
  top: -10px;
  right: -15px;
}
.first-screen .benefits_list .benefits_card .benefits_card-description {
  width: 200px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  margin-top: 25px;
}

/*first-screen*/
/*personal*/
.personal {
  padding-bottom: 130px;
  position: relative;
  overflow: hidden;
}
.personal:after {
  content: "";
  width: 1200px;
  height: 181px;
  background-image: url(../img/splash.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 40%;
  left: -200px;
  z-index: -1;
}
.personal .section-title {
  padding-top: 100px;
  padding-bottom: 40px;
}
.personal .personal_card-wrapper {
  padding-left: 10px;
  padding-right: 10px;
  max-width: 25%;
  width: 25%;
  flex: 0 0 25%;
}
.personal .personal_card {
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.07);
  display: block;
  margin-bottom: 20px;
  height: 285px;
  position: relative;
}
.personal .personal_card .personal_card-img {
  width: 245px;
  height: 205px;
}
.personal .personal_card .personal_card-img img {
  object-fit: cover;
  object-position: center;
}
.personal .personal_card .personal_card-name {
  margin-top: 18px;
  color: #373737;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  transition: 0.3s ease-in-out;
}
.personal .personal_card .personal_card_hover-icn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin-top: 10px;
}
.personal .personal_card:hover {
  box-shadow: 0px 7px 25px rgba(131, 92, 35, 0.22);
}
.personal .personal_card:hover .personal_card_hover {
  background: #ffffff;
  height: 65px;
  bottom: 20px;
}
.personal .personal_card:hover .personal_card_hover .personal_card-name {
  font-size: 12px;
  line-height: 15px;
  color: rgba(55, 55, 55, 0.5);
}
.personal .personal_card .personal_card_hover {
  height: 40px;
  overflow: hidden;
  position: absolute;
  width: calc(100% - 40px);
  transition: 0.3s ease-in-out;
  bottom: 20px;
}

/*personal*/
/*form*/
.form {
  padding: 60px 0;
  position: relative;
}
.form.form-about .form_description- {
  width: 620px;
}
.form .form_description-wrapper {
  padding: 60px;
  background-color: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05),
    15px 15px 25px rgba(0, 0, 0, 0.07);
}
.form .form_description-wrapper .section-title {
  width: 686px;
  margin-bottom: 30px;
}
.form .form_description-wrapper .form-about_btn-wrapper {
  display: flex;
  justify-content: space-between;
  width: 375px;
  margin-top: 30px;
}

.form-about_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 645px;
  min-height: 630px;
  background-image: url(../img/form-sec-bg-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 0%;
}

/*form*/
/*reviews*/
.reviews {
  padding: 150px 0 30px 0;
}
.reviews .reviews-card {
  background: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05), 0px 10px 15px rgba(0, 0, 0, 0.07);
  padding: 40px;
  min-height: 400px;
  margin: 40px 10px;
  cursor: pointer;
  position: relative;
}
.reviews .reviews-card .reviews-number {
  font-size: 60px;
  font-weight: 500;
  color: #cbcbcb;
  position: absolute;
  bottom: -50px;
  right: 15px;
  z-index: -1;
}
.reviews .reviews-card .reviews-card_name {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}
.reviews .reviews-card .reviews-card_name:after {
  content: "";
  position: absolute;
  left: -13px;
  top: 11px;
  width: 122px;
  height: 20px;
  background-image: url(../img/reviews-name-splash.svg);
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  z-index: -1;
}
.reviews .reviews-card .reviews-card_product {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #9c9c9c;
  margin-bottom: 30px;
}
.reviews .reviews-card .reviews-card_description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

/*reviews*/
/*cooperation*/
.cooperation {
  padding-top: 85px;
  border-bottom: 1px solid #f3f3f3;
}
.cooperation .cooperation-steps_wrapper {
  position: relative;
  margin-top: 70px;
  min-height: 1238px;
  padding-top: 20px;
  padding-bottom: 150px;
}
.cooperation .cooperation-steps_wrapper .cooperation-center-steps {
  width: 135px;
  height: 1238px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-image: url(../img/cooperation-road.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.cooperation .cooperation-steps_wrapper .cooperation-step {
  padding-top: 107px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #373737;
  display: flex;
  justify-content: center;
  position: relative;
}
.cooperation
  .cooperation-steps_wrapper
  .cooperation-step.cooperation-step__last {
  padding-top: 60px;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step_number {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 17px;
  line-height: 150%;
  color: #ffffff;
  background: #c88727;
  border-radius: 50%;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step__1,
.cooperation .cooperation-steps_wrapper .cooperation-step .step__2,
.cooperation .cooperation-steps_wrapper .cooperation-step .step__3,
.cooperation .cooperation-steps_wrapper .cooperation-step .step__4,
.cooperation .cooperation-steps_wrapper .cooperation-step .step__5,
.cooperation .cooperation-steps_wrapper .cooperation-step .step__6,
.cooperation .cooperation-steps_wrapper .cooperation-step .step__7,
.cooperation .cooperation-steps_wrapper .cooperation-step .step__last {
  position: relative;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step__1 {
  left: -257px;
}
.cooperation
  .cooperation-steps_wrapper
  .cooperation-step
  .step__1
  .step_number {
  right: -100px;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step__2 {
  left: 321px;
}
.cooperation
  .cooperation-steps_wrapper
  .cooperation-step
  .step__2
  .step_number {
  left: -104px;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step__3 {
  left: -247px;
}
.cooperation
  .cooperation-steps_wrapper
  .cooperation-step
  .step__3
  .step_number {
  right: -103px;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step__4 {
  left: 287px;
}
.cooperation
  .cooperation-steps_wrapper
  .cooperation-step
  .step__4
  .step_number {
  left: -107px;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step__5 {
  left: -284px;
}
.cooperation
  .cooperation-steps_wrapper
  .cooperation-step
  .step__5
  .step_number {
  right: -107px;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step__6 {
  left: 332px;
}
.cooperation
  .cooperation-steps_wrapper
  .cooperation-step
  .step__6
  .step_number {
  left: -105px;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step__7 {
  left: -332px;
}
.cooperation
  .cooperation-steps_wrapper
  .cooperation-step
  .step__7
  .step_number {
  right: -113px;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step__last {
  left: 198px;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step__last a {
  position: relative;
}
.cooperation .cooperation-steps_wrapper .cooperation-step .step__last a:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #c88727;
}
.cooperation
  .cooperation-steps_wrapper
  .cooperation-step
  .step__last
  .step_number {
  left: -113px;
}

/*cooperation*/
/*faq*/
.faq {
  padding-top: 150px;
}
.faq .faq_wrapper {
  width: 100%;
  margin-top: 60px;
}
.faq .faq_wrapper .accordion-menu li {
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #ebebeb;
  transition: 0.3s all;
}
.faq .faq_wrapper .accordion-menu li.open {
  border: 1px solid #c88727;
}
.faq .faq_wrapper .accordion-menu li.open .dropdownlink .faq-icn {
  background-color: transparent;
  transform: rotateZ(180deg);
}
.faq .faq_wrapper .accordion-menu li.open .dropdownlink .faq-icn svg path {
  stroke: #c88727;
}
.faq .faq_wrapper .dropdownlink {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  position: relative;
  z-index: 9;
  color: #373737;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq .faq_wrapper .faq-icn {
  background: #c88727;
  border: 2px solid #c88727;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}
.faq .faq_wrapper .submenuItems {
  font-size: 16px;
  line-height: 150%;
  padding: 0 30px 25px 30px;
  display: none;
  background: #ffffff;
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
  color: #373737;
  width: 100%;
}

/*faq*/
/*command*/
.command {
  padding-top: 150px;
  padding-bottom: 150px;
  overflow: hidden;
}
.command .row {
  justify-content: center;
}
.command .command_card-wrapper {
  margin-top: 80px;
  position: relative;
}
.command .command_card-wrapper:after {
  content: "";
  width: 1200px;
  height: 188px;
  background-image: url(../img/splash-dark.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: -1;
}
.command .command_card {
  margin: 0 20px;
}
.command .command_card .command_card-avatar {
  width: 270px;
  height: 320px;
}
.command .command_card .command_card-avatar img {
  object-fit: cover;
  object-position: center;
}
.command .command_card .command_card-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  margin-top: 20px;
}
.command .command_card .command_card-tel_title {
  font-size: 16px;
  line-height: 150%;
  color: #9c9c9c;
  margin-top: 10px;
}
.command .command_card .command_card-tel {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  margin-top: 3px;
}

/*command*/
/*form-advice*/
.form.form-advice {
  margin-bottom: 100px;
}
.form.form-advice .input_btn-wrapper {
  margin-top: 15px;
}

.form-advice_bg {
  position: absolute;
  width: 950px;
  min-height: 670px;
  top: 0;
  right: 0;
  background-image: url(../img/form-sec-bg-2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  z-index: -1;
}

/*form-advice*/
/*footer*/
.footer {
  border-top: 1px solid #f3f3f3;
  padding-top: 100px;
}
.footer .footer-contacts_wrapper {
  max-width: 75%;
  width: 75%;
  flex: 0 0 75%;
  padding: 0 10px;
  display: flex;
}
.footer .footer-contacts_wrapper .footer-contacts_col {
  flex: 0 0 50%;
  max-width: 50%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.footer .footer-contacts_wrapper .footer-contacts_list {
  margin-bottom: 70px;
}
.footer
  .footer-contacts_wrapper
  .footer-contacts_list
  .footer-contacts_list-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 10px;
}
.footer
  .footer-contacts_wrapper
  .footer-contacts_list
  .footer-contacts_list-sub_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #9c9c9c;
  margin-bottom: 10px;
}
.footer
  .footer-contacts_wrapper
  .footer-contacts_list
  .footer-contacts_list-contact_wrapper {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
}
.footer
  .footer-contacts_wrapper
  .footer-contacts_list
  .footer-contacts_list-contact_wrapper
  .footer-contacts_list-contact_icn {
  margin-right: 14px;
  width: 26px;
}
.footer
  .footer-contacts_wrapper
  .footer-contacts_list
  .footer-contacts_list-contact_wrapper
  a.footer-contacts_list-contact {
  color: #373737;
}
.footer
  .footer-contacts_wrapper
  .footer-contacts_list
  .footer-contacts_list-contact_wrapper
  a.footer-contacts_list-contact:hover {
  color: #c88727;
}
.footer
  .footer-contacts_wrapper
  .footer-contacts_list
  .footer-contacts_list-contact_wrapper
  .footer-contacts_list-contact {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
.footer
  .footer-contacts_wrapper
  .footer-contacts_list
  .footer-contacts_list-contact_wrapper
  .footer-contacts_list-contact
  .social-list {
  display: flex;
}
.footer
  .footer-contacts_wrapper
  .footer-contacts_list
  .footer-contacts_list-contact_wrapper
  .footer-contacts_list-contact
  .social-list
  li {
  margin-right: 15px;
}
.footer .google-link {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  margin-top: 27px;
  display: inline-block;
}
.footer .right-column_small {
  margin-bottom: 60px;
}
.footer .sub-footer {
  border-top: 1px solid #f3f3f3;
  height: 80px;
  display: flex;
  align-items: center;
}
.footer .sub-footer .row {
  align-items: center;
  justify-content: space-between;
}
.footer .sub-footer .sub-footer_column {
  display: flex;
}
.footer .sub-footer .sub-footer_column .copyright {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #9c9c9c;
}
.footer .sub-footer .sub-footer_column .footer-language {
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  left: -105px;
  position: relative;
}
.footer .sub-footer .sub-footer_column .footer-language li {
  margin: 0 8px;
}
.footer .sub-footer .sub-footer_column .footer-language li a {
  color: #9c9c9c;
}
.footer .sub-footer .sub-footer_column .footer-language li a.active-language {
  pointer-events: none;
  color: #c88727;
}
.footer .sub-footer .sub-footer_column .go-top_wrapper {
  display: flex;
  cursor: pointer;
}
.footer .sub-footer .sub-footer_column .go-top_wrapper .go-top {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #c88727;
}
.footer .sub-footer .sub-footer_column .go-top_wrapper .go-top_icn {
  align-items: center;
  display: flex;
  margin-left: 12px;
}

/*footer*/
/*inner-page*/
.inner-page {
  /*personal*/
  /*personal*/
  /*price*/
  /*price*/
}
.inner-page .overlay .modal .content .big-form .section-title {
  padding: 0;
}
.inner-page .breadcrumb {
  margin-top: 92px;
}
.inner-page .breadcrumb-list {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}
.inner-page .breadcrumb-list li {
  margin-right: 15px;
  position: relative;
  color: #9c9c9c;
}
.inner-page .breadcrumb-list li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #373737;
}
.inner-page .breadcrumb-list li a:hover {
  color: #c88727;
}
.inner-page .breadcrumb-list li:before {
  content: "-";
  position: absolute;
  right: -11px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #9c9c9c;
}
.inner-page .breadcrumb-list li:last-child:before {
  display: none;
}
.inner-page .personal:after {
  left: auto;
  right: -200px;
}
.inner-page .personal .section-title {
  padding-top: 56px;
  padding-bottom: 60px;
}
.inner-page .price {
  padding-bottom: 80px;
}
.inner-page .price .price-page_description {
  font-size: 18px;
  line-height: 150%;
  color: #9c9c9c;
  width: 95%;
}
.inner-page .price .accordion-menu_price {
  margin-top: 60px;
  margin-left: -10px;
  margin-right: -10px;
}
.inner-page .price .accordion-menu_price li {
  flex: 0 0 25%;
  width: 25%;
  min-width: 25%;
  padding-bottom: 20px;
  position: relative;
}
.inner-page .price .accordion-menu_price li:hover:after {
  border-color: #c88727 !important;
}
.inner-page .price .accordion-menu_price li:after {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  background-color: transparent;
  transition: all 0.3s ease;
}
.inner-page .price .accordion-menu_price li:nth-child(4n + 1):after {
  border-top: 2px solid #ffe6c0;
  border-right: 2px solid #ffe6c0;
  top: 0;
  right: 10px;
}
.inner-page .price .accordion-menu_price li:nth-child(4n + 2):after {
  border-bottom: 2px solid #ffe6c0;
  border-left: 2px solid #ffe6c0;
  bottom: 20px;
  left: 10px;
}
.inner-page .price .accordion-menu_price li:nth-child(4n + 3):after {
  border-top: 2px solid #ffe6c0;
  border-right: 2px solid #ffe6c0;
  top: 0;
  right: 10px;
}
.inner-page .price .accordion-menu_price li:nth-child(4n + 4):after {
  border-bottom: 2px solid #ffe6c0;
  border-right: 2px solid #ffe6c0;
  bottom: 20px;
  right: 10px;
}
.inner-page .price .accordion-menu_price li .price-card_wrapper {
  padding-bottom: 40px;
  margin-left: 10px;
  margin-right: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  position: relative;
}
.inner-page .price .accordion-menu_price li .price-card_wrapper:hover {
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper:hover
  .brown-btn {
  color: #ffffff;
  background-color: #c88727;
}
.inner-page .price .accordion-menu_price li .price-card_wrapper .dropdownlink {
  padding: 40px 40px 0 40px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .dropdownlink
  .icn-dropdown {
  display: none;
}
.inner-page .price .accordion-menu_price li .price-card_wrapper .submenuItems {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px 40px 0 40px;
}
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .submenuItems
  .price-card_list {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .submenuItems
  .price-card_list
  .price__hour {
  width: 45%;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #9c9c9c;
}
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .submenuItems
  .price-card_list
  .price__price {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 100%;
  color: #373737;
}
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .submenuItems
  .price-card_footer,
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .submenuItems
  .callback_card-btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .submenuItems
  .price-card_footer
  .brown-btn,
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .submenuItems
  .callback_card-btn
  .brown-btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  padding: 13px 34px;
  height: auto;
}
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .submenuItems
  .price-card_footer
  .price-card_info,
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .submenuItems
  .callback_card-btn
  .price-card_info {
  display: inherit;
  transition: all 0.3s ease;
}
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .submenuItems
  .price-card_footer
  .price-card_info:hover
  svg
  path,
.inner-page
  .price
  .accordion-menu_price
  li
  .price-card_wrapper
  .submenuItems
  .callback_card-btn
  .price-card_info:hover
  svg
  path {
  fill: #c88727;
}
.inner-page .choice {
  padding-top: 56px;
  margin-bottom: 100px;
}
.inner-page .choice .thx-choice {
  width: 560px;
  height: 670px;
  align-items: center;
  background-color: #ffffff;
  display: none;
}
.inner-page .choice .thx-choice .section-title {
  margin-bottom: 20px;
  line-height: 140%;
}
.inner-page .choice .thx-choice .section-subtitle {
  font-size: 16px;
  width: 100%;
  max-width: 340px;
  line-height: 160%;
}
.inner-page .choice .thx-choice .brown-btn {
  margin-top: 40px;
  display: inline-block;
  background-color: #c88727;
  color: #ffffff;
}
.inner-page .choice .thx-choice .brown-btn:hover {
  background-color: #ffffff;
  color: #c88727;
}
.inner-page .choice .container {
  position: relative;
}
.inner-page .choice .choice_bg {
  background-image: url(../img/choice-bg.jpg);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  width: 700px;
  height: 100%;
  z-index: -1;
}
.inner-page .choice .choice_form_step {
  position: relative;
  width: 560px;
  padding: 60px;
  margin-bottom: 20px;
  background: #ffffff;
  box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.1);
}
.inner-page .choice .choice_form_step .choice_form_step-number {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  background-color: #9c9c9c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: absolute;
  left: -17px;
  top: 58px;
  border-radius: 50%;
  text-align: center;
}
.inner-page .choice .choice_form_step .choice_form-title_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-page .choice .choice_form_step .toggle_back {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #c88727;
  display: flex;
  cursor: pointer;
}
.inner-page .choice .choice_form_step.toggle .choice_form_step-number {
  background-color: #c88727;
}
.inner-page .choice .choice_form_step.toggle .choice_form-title {
  color: #373737;
}
.inner-page .choice .choice_form_step.toggle .toggle_back {
  display: none;
}
.inner-page .choice .choice_form-wrapper .choice_form-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #9c9c9c;
}
.inner-page .choice .choice_form-wrapper .form_select-wrapper {
  margin-top: 30px;
}
.inner-page .choice .choice_form-wrapper .form_select-wrapper .dropdown-select {
  margin-top: 15px;
}
.inner-page
  .choice
  .choice_form-wrapper
  .form_select-wrapper
  .dropdown-select
  .gray-btn_select
  .gray-btn_select-main {
  width: 100%;
}
.inner-page .choice .choice_form-wrapper .choice_form-footer {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.inner-page .choice .choice_form-wrapper .choice_form-footer .footer_step {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  margin-left: 30px;
}
.inner-page .container_wrapper-bg {
  background-color: #fafafa;
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 110px;
}
.inner-page .container_wrapper-bg .brown-btn {
  display: block;
  text-align: center;
  margin-top: 80px;
}
.inner-page .container_wrapper-bg .container {
  width: 860px;
}
.inner-page p {
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 25px;
}
.inner-page .command {
  padding-top: 0;
  padding-bottom: 0;
}
.inner-page .command .section-title {
  padding-top: 0;
  padding-bottom: 0;
}
.inner-page .command .command_card-wrapper {
  margin-top: 25px;
  z-index: 2;
}
.inner-page .command .command_card-wrapper:after {
  width: 970px;
  top: 180px;
  z-index: -1;
}
.inner-page .command .command_card {
  margin: 0 12px;
}
.inner-page .command .command_card .command_card-avatar {
  width: 260px;
  height: 320px;
}

.icon-work-list_wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: -15px;
}
.icon-work-list_wrapper .icon-work-card_wrapper {
  width: 25%;
  min-width: 25%;
  flex: 0 0 25%;
  padding-top: 40px;
}
.icon-work-list_wrapper .icon-work-card_wrapper .icon-work-list_name {
  margin-top: 15px;
}

.form_block {
  padding: 40px;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #f3f3f3;
  margin-top: 15px;
}
.form_block .form_block-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #373737;
  margin-bottom: 30px;
}
.form_block .form_block-input_wrapper .gray-btn.dropdown-select {
  max-width: 290px;
  width: 100%;
}
.form_block
  .form_block-input_wrapper
  .gray-btn.dropdown-select
  .gray-btn_select
  .gray-btn_select-main {
  width: 100%;
}

.inner-page .container_wrapper-bg .candidate_form_send {
  margin-top: 10px;
}
.inner-page .container_wrapper-bg .candidate_form_send .brown-btn {
  margin-top: 30px;
  color: #ffffff;
  background-color: #c88727;
}
.inner-page .container_wrapper-bg .candidate_form_send .brown-btn:hover {
  color: #c88727;
  background-color: #ffffff;
}

/* для элемента input c type="radio" */
.custom-radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
  cursor: pointer;
}

/* для элемента label связанного с .custom-radio */
.custom-radio + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #373737;
  cursor: pointer;
}

/* создание в label псевдоэлемента  before со следующими стилями */
.custom-radio + label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #cdcdcd;
  border-radius: 50%;
  margin-right: 10px;
}

/* стили при наведении курсора на радио */
.custom-radio:not(:disabled):not(:checked) + label:hover::before {
  border-color: #c88727;
  cursor: pointer;
}

/* стили для активной радиокнопки (при нажатии на неё) */
.custom-radio:not(:disabled):active + label::before {
  background-color: #c88727;
  border-color: #c88727;
}

/* стили для радиокнопки, находящейся в фокусе */
/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
.custom-radio:focus:not(:checked) + label::before {
  border-color: #80bdff;
}

/* стили для радиокнопки, находящейся в состоянии checked */
.custom-radio:checked + label::before {
  border-color: #c88727;
  background-color: #ffffff;
  background-image: url("../img/eclips.svg");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

/* стили для радиокнопки, находящейся в состоянии disabled */
.custom-radio:disabled + label::before {
  background-color: #e9ecef;
}

.thank-you {
  margin-bottom: 100px;
}
.thank-you .container {
  position: relative;
}
.thank-you .thx-page_bg {
  background-image: url(../img/choice-bg.jpg);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  width: 700px;
  height: 100%;
  z-index: -1;
}
.thank-you .thank-you-wrapper {
  display: flex;
  width: 560px;
  height: 670px;
  align-items: center;
  background-color: #ffffff;
}
.thank-you .thank-you-wrapper .section-subtitle {
  font-size: 16px;
  width: 100%;
  max-width: 340px;
  line-height: 160%;
}
.thank-you .thank-you-wrapper .brown-btn {
  margin-top: 40px;
  display: inline-block;
  background-color: #c88727;
  color: #ffffff;
}

.form_send_c {
  display: none;
}
.form_send_c .brown-btn {
  width: 100%;
  max-width: 260px;
  margin-top: 35px !important;
  padding: 20px 19px 21px 19px;
  background-color: #c88727;
  color: #ffffff;
}
.form_send_c .brown-btn:hover {
  background-color: transparent;
  color: #c88727;
}

/*inner-page*/
@media screen and (max-width: 1219px) {
  /*main*/
  .container {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
  }

  .inner-page .breadcrumb {
    margin-top: 74px;
  }
  .inner-page .container_wrapper-bg {
    width: 960px;
  }

  .dropdown-list {
    top: 73px;
    padding: 50px 0 20px 0px !important;
  }
  .dropdown-list .dropdown-list_ul {
    width: 960px;
  }
  .dropdown-list li {
    margin-bottom: 30px !important;
    flex: 0 0 25%;
    margin-right: 0 !important;
  }

  .left-column_big {
    max-width: 70%;
    width: 70%;
    flex: 0 0 70%;
  }

  .right-column_small {
    max-width: 30%;
    width: 30%;
    flex: 0 0 30%;
  }

  .sec-thx-window .form_send {
    flex-direction: column;
  }

  /*body*/
  body h1 {
    font-size: 50px;
    line-height: 68px;
  }

  /*body*/
  /*main*/
  /*header*/
  .header .logo {
    top: -4px;
    flex: 0 0 135px;
  }
  .header .header_menu .drawer-list .menu_list-wrapheader {
    font-size: 14px;
  }
  .header .header_menu .drawer-list .menu_list-wrapheader li {
    margin: 0 5px;
    padding: 28px 5px;
  }
  .header .contacts-dropdown_wrapper {
    font-size: 13px;
  }
  .header .contacts-dropdown_wrapper .contacts-dropdown {
    font-size: 13px;
    top: 46px;
    padding: 15px 15px 0 15px;
    width: 200px;
  }
  .header .contacts-dropdown_wrapper .contacts-dropdown li .brown-btn {
    width: 100%;
    font-size: 15px;
    padding: 15px 10px 15px 10px;
    height: auto;
    text-align: center;
  }

  /*header*/
  /*first-screen*/
  .first-screen {
    -webkit-background-size: 620px;
    background-size: 620px;
    margin-top: 74px;
  }
  .first-screen .first-screen_content {
    padding: 100px 0 40px 0;
  }
  .first-screen .first-screen_content .main-title_wrapper {
    margin-bottom: 25px;
  }
  .first-screen .first-screen_content .main-title_wrapper img {
    margin-bottom: 10px;
  }
  .first-screen .first-screen_content .main-title_wrapper h1:after {
    height: 38px;
    bottom: 12px;
    right: 90px;
  }
  .first-screen .first-screen_content .main-title_wrapper h1:before {
    height: 38px;
    bottom: 80px;
    right: 73px;
  }
  .first-screen .first-screen_content .main-title_wrapper .main-title_sub {
    margin-top: 30px;
    line-height: 20px;
  }
  .first-screen .benefits_list .benefits_card {
    padding: 30px 0 30px 0;
  }
  .first-screen .benefits_list .benefits_card .benefits_card-description {
    font-size: 14px;
    margin-top: 5px;
  }

  /*first-screen*/
  /*personal*/
  .personal .personal_card {
    height: 231px;
  }
  .personal .personal_card .personal_card-img {
    width: 100%;
  }

  /*personal*/
  /*form*/
  .form .form_description-wrapper .section-title {
    width: 100%;
    font-size: 31px;
    line-height: 43px;
  }
  .form.form-about .form_description- {
    width: 100%;
  }

  /*form*/
  /*cooperation*/
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__1 {
    left: -240px;
  }
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__1
    .step_number {
    right: -80px;
  }
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__2 {
    left: 275px;
  }
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__2
    .step_number {
    left: -60px;
  }
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__3 {
    left: -225px;
  }
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__3
    .step_number {
    right: -80px;
  }
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__4 {
    left: 250px;
  }
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__4
    .step_number {
    left: -72px;
  }
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__5 {
    left: -225px;
  }
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__5
    .step_number {
    right: -49px;
  }
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__6 {
    left: 275px;
  }
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__6
    .step_number {
    left: -52px;
  }
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__7 {
    left: -253px;
  }
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__7
    .step_number {
    right: -43px;
  }

  /*cooperation*/
  /*footer*/
  .footer .footer-contacts_wrapper {
    max-width: 70%;
    width: 70%;
    flex: 0 0 70%;
  }
  .footer .right-column_small .small-form {
    padding: 30px 20px;
  }
  .footer
    .footer-contacts_wrapper
    .footer-contacts_list
    .footer-contacts_list-sub_title {
    width: 80%;
  }

  /*footer*/
  /*inner-page*/
  .inner-page .price .accordion-menu_price li {
    flex: 0 0 33.33333333%;
    width: 33.33333333%;
    min-width: 33.33333333%;
  }
  .inner-page .choice .choice_form_step {
    width: 460px;
  }
  .inner-page .choice .thx-choice {
    width: 460px;
    height: 670px;
  }

  .thank-you .thank-you-wrapper {
    width: 460px;
    height: 670px;
  }

  /*inner-page*/
}
@media screen and (max-width: 991px) {
  /*main*/
  .container {
    width: 740px;
  }

  .inner-page .container_wrapper-bg {
    width: 740px;
  }
  .inner-page .container_wrapper-bg .container {
    width: 660px;
  }

  .left-column_big {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }

  .right-column_small {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }

  /*main*/
  /*menu*/
  .nav_wrapper .header_menu .drawer-list {
    position: fixed;
    z-index: 999;
    left: 0;
    border: none !important;
    bottom: 0;
    height: 100vh;
    width: 100%;
    transform: translate(120vw, 0);
    -ms-transform: translatex(-120vw);
    background-color: rgba(0, 0, 0, 0.7) !important;
    top: 0;
    padding-top: 0;
    transition: width 475ms ease-out, transform 450ms ease;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #373737;
  }
  .nav_wrapper .header_menu .drawer-list .menu_wrap-bg {
    height: 80vh;
    margin-top: 20vh;
    background: #fff;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 40px;
  }
  .nav_wrapper .header_menu .drawer-list .mob-close_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 99999;
    cursor: pointer;
    right: 0;
    top: 20vh;
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background-color: #fafafa;
  }
  .nav_wrapper .header_menu .drawer-list .mob-close_nav img {
    flex: 0 0 18px;
  }
  .nav_wrapper .header_menu .drawer-list .phone-contacts {
    border-top: 1px solid #f3f3f3;
    display: flex;
  }
  .nav_wrapper .header_menu .drawer-list .phone-contacts li {
    padding: 0 !important;
  }
  .nav_wrapper .header_menu .drawer-list .phone-contacts li a {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 150%;
    padding: 30px 0 20px 0;
    padding-top: 0 !important;
    padding-bottom: 15px !important;
  }
  .nav_wrapper .header_menu .drawer-list .phone-contacts li a:hover {
    color: #c88727;
  }

  /*menu*/
  /*header*/

  /*header*/
  /*first-screen*/

  /*first-screen*/
  /*personal*/

  /*personal*/
  /*form*/

  /*form*/
  /*reviews*/

  /*reviews*/
  /*cooperation*/

  /*cooperation*/
  /*faq*/

  /*faq*/
  /*command*/

  /*command*/
  /*form-advice*/

  /*form-advice*/
  /*footer*/

  /*footer*/
  /*inner-page*/

  /*inner-page*/
}
@media screen and (max-width: 991px) and (min-width: 576px) {
  .nav_wrapper .header_menu .drawer-list {
    width: 100vw;
    height: 100vh;
    padding-top: 0;
    transform: translate(120vw, 0);
    -ms-transform: translatex(-120vw);
    align-items: flex-end;
    transition: width 475ms ease-out, transform 450ms ease;
  }
  .nav_wrapper .header_menu .drawer-list .menu_wrap-bg {
    height: 100vh;
    width: 40vw;
    margin-top: 0;
    background: #fff;
    padding-top: 60px;
  }
  .nav_wrapper .header_menu .drawer-list .mob-close_nav {
    display: none;
  }
  .nav_wrapper .header_menu .drawer-list ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-color: white;
    background-color: white;
  }
}
@media screen and (max-width: 991px) {
  .nav_wrapper
    .header_menu
    .drawer-list
    .menu_list-wrapheader
    li
    a:hover:after {
    top: -14px;
    height: 37px;
  }
  .nav_wrapper
    .header_menu
    .drawer-list
    .menu_list-wrapheader
    li.dropdown:hover
    > a:after {
    top: -14px;
    height: 37px;
  }
}
@media screen and (max-width: 991px) {
  .nav_wrapper .header_menu .drawer-list ul {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    pointer-events: auto;
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .nav_wrapper .header_menu .drawer-list li {
    pointer-events: auto;
    white-space: nowrap;
    margin: 0 !important;
    padding: 15px 0 !important;
    transform: translatex(100vw);
    /* ie workaround */
    -ms-transform: translatex(-100vw);
  }
  .nav_wrapper .header_menu .drawer-list li .dropdown-list {
    display: none !important;
  }
  .nav_wrapper .header_menu .drawer-list li:last-child {
    margin-bottom: 2em;
  }
  .nav_wrapper .header_menu .drawer-list li a {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #373737;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    display: inline-block;
  }
}
@media screen and (max-width: 991px) {
  .nav_wrapper .header_menu input.hamburger {
    display: none;
  }
  .nav_wrapper .header_menu input.hamburger:checked {
    position: fixed;
  }
  .nav_wrapper .header_menu input.hamburger:checked ~ .drawer-list {
    transform: translatex(0);
    border-bottom-left-radius: 0;
    border-left: 1px solid #f3f3f3;
  }
  .nav_wrapper .header_menu input.hamburger:checked ~ .drawer-list li {
    transform: translatex(0);
  }
  .nav_wrapper .header_menu input.hamburger:checked ~ label > i {
    background-color: transparent;
    transform: rotate(90deg);
  }
  .nav_wrapper .header_menu input.hamburger:checked ~ label > i:before {
    transform: translate(-50%, -50%) rotate(315deg);
  }
  .nav_wrapper .header_menu input.hamburger:checked ~ label > i:after {
    transform: translate(-50%, -50%) rotate(-315deg);
  }
  .nav_wrapper .header_menu input.hamburger:checked ~ label close {
    width: 100%;
  }
  .nav_wrapper .header_menu input.hamburger:checked ~ label open {
    width: 0;
  }
}
@media screen and (max-width: 991px) {
  .nav_wrapper .header_menu label.hamburger {
    z-index: 9979;
    position: relative;
    display: flex !important;
    height: auto;
    width: 92px;
    align-items: center;
    border-radius: 15px;
  }
  .nav_wrapper .header_menu label.hamburger:hover {
    cursor: pointer;
  }
  .nav_wrapper .header_menu label.hamburger text open {
    color: #373737;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    overflow: hidden;
    transition: width 0.25s 0.35s, color 0.45s 0.35s;
  }
  .nav_wrapper .header_menu label.hamburger text close {
    right: 0;
    width: 0;
  }
  .nav_wrapper .header_menu label.hamburger text open {
    width: 100%;
  }
  .nav_wrapper .header_menu label.hamburger > i {
    position: absolute;
    width: 22px;
    right: 6px;
    height: 2px;
    background-color: #c88727;
    pointer-events: auto;
    transition-duration: 0.35s;
    transition-delay: 0.35s;
  }
  .nav_wrapper .header_menu label.hamburger > i:before,
  .nav_wrapper .header_menu label.hamburger > i:after {
    position: absolute;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 2px;
    left: 50%;
    background-color: #c88727;
    content: "";
    transition: transform 0.35s;
    transform-origin: 50% 50%;
  }
  .nav_wrapper .header_menu label.hamburger > i:before,
  .nav_wrapper .header_menu label.hamburger > i:after {
    transform: translate(-50%, 6px);
  }
  .nav_wrapper .header_menu label.hamburger > i:after {
    transform: translate(-50%, -6px);
  }
}
@media screen and (max-width: 991px) {
  .nav_wrapper .header_menu label.hamburger {
    position: absolute;
    top: 7px;
    right: 10px;
  }
}
@media screen and (max-width: 991px) {
  .header {
    height: 70px;
    align-items: center;
    display: flex;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
  }
  .header .container {
    position: relative;
  }
  .header .logo {
    top: -4px;
    flex: 0 0 150px;
  }
  .header .contacts-dropdown_wrapper {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .first-screen {
    -webkit-background-size: 60%;
    background-size: 60%;
    margin-top: 70px;
  }
  .first-screen .benefits_list .benefits_card .benefits_card-description {
    width: 170px;
  }
}
@media screen and (max-width: 991px) {
  .personal .personal_card-wrapper {
    max-width: 33.333333333%;
    width: 33.333333333%;
    flex: 0 0 33.333333333%;
  }
}
@media screen and (max-width: 991px) {
  .form .form_description-wrapper {
    padding: 30px 20px;
  }
  .form .form_description-wrapper .section-title {
    font-size: 20px;
    line-height: 130%;
  }
  .form .form_description-wrapper .form-about_btn-wrapper {
    width: 100%;
    flex-direction: column;
  }
  .form
    .form_description-wrapper
    .form-about_btn-wrapper
    .gray-btn.dropdown-select {
    margin-bottom: 10px;
  }
  .form
    .form_description-wrapper
    .form-about_btn-wrapper
    .gray-btn.dropdown-select
    .gray-btn_select-main {
    width: 100%;
  }
  .form .form_description-wrapper .form-about_btn-wrapper .brown-btn {
    text-align: center;
  }
  .form.form-about .form_description- p {
    font-size: 14px;
    line-height: 150%;
  }
}
@media screen and (max-width: 991px) {
  .reviews {
    padding: 70px 0 30px 0;
  }
}
@media screen and (max-width: 991px) {
  .cooperation {
    padding-bottom: 45px;
  }
  .cooperation .cooperation-steps_wrapper {
    margin-top: 0;
    min-height: 0;
    padding-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 0;
  }
  .cooperation .cooperation-steps_wrapper .cooperation-step {
    padding-top: 0;
    margin-bottom: 25px;
    flex: 0 0 50%;
    max-width: 50%;
    align-items: center;
    justify-content: end;
    padding-left: 50px;
  }
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step.cooperation-step__last {
    padding-top: 0;
  }
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__1,
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__2,
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__3,
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__4,
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__5,
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__6,
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__7,
  .cooperation .cooperation-steps_wrapper .cooperation-step .step__last {
    position: relative;
    left: 0;
  }
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__1
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__2
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__3
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__4
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__5
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__6
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__7
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__last
    .step_number {
    left: -50px;
  }
  .cooperation .cooperation-steps_wrapper .cooperation-center-steps {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .faq {
    padding-top: 50px;
  }
}
@media screen and (max-width: 991px) {
  .command {
    padding-top: 70px;
  }
  .command .command_card-wrapper {
    margin-top: 30px;
  }
  .command .command_card {
    margin: 30px 15px 0 15px;
  }
  .command .command_card .command_card-avatar {
    width: 215px;
    height: 255px;
  }
  .command .command_card .command_card-name {
    font-size: 18px;
    margin-top: 20px;
  }
  .command .command_card .command_card-tel_title {
    font-size: 14px;
    margin-top: 5px;
  }
  .command .command_card .command_card-tel {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .form-advice_bg {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .form.form-advice {
    margin-bottom: 100px;
  }
  .form.form-advice .form_send {
    padding: 50px 15px;
    align-items: self-start;
    justify-content: space-around;
  }
  .form.form-advice .form_send .thx-left {
    order: 2;
  }
  .form.form-advice .form_send .thx-left .section-subtitle {
    padding: 0;
  }
  .form.form-advice .form_send .thx-right {
    order: 1;
    width: 160px;
    height: 160px;
    flex: 0 0 160px;
  }
  .form.form-advice .brown-btn {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer-contacts_wrapper {
    width: 50%;
    min-width: 50%;
    flex: 0 0 50%;
    flex-direction: column;
  }
  .footer .footer-contacts_wrapper .footer-contacts_col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer .small-form {
    height: auto;
    min-height: 505px;
  }
}
@media screen and (max-width: 991px) {
  .inner-page .breadcrumb {
    margin-top: 70px;
  }
  .inner-page .price .accordion-menu_price {
    justify-content: center;
  }
  .inner-page .price .accordion-menu_price li {
    flex: 0 0 285px;
    width: 285px;
    min-width: 285px;
  }
  .inner-page .choice .choice_bg {
    display: none;
  }
  .inner-page .choice .choice_form_step {
    width: 100%;
  }
  .inner-page .choice .section-title {
    max-width: 360px;
    width: 100%;
  }
  .inner-page .choice .thx-choice {
    width: 100%;
    height: 370px;
  }
}
@media screen and (max-width: 991px) {
  .thank-you .thx-page_bg {
    display: none;
  }
  .thank-you .thank-you-wrapper {
    width: 100%;
    height: 370px;
  }
  .thank-you .thank-you-wrapper .section-title {
    max-width: 360px;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .icon-work-list_wrapper .icon-work-card_wrapper {
    width: 33.33333%;
    min-width: 33.33333%;
    flex: 0 0 33.33333%;
  }
}
@media screen and (max-width: 834px) {
  /*modal*/
  .overlay {
    padding: 0;
    display: block;
  }
  .overlay .modal {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px 15px;
  }
  .overlay .modal .content .big-form .section-title {
    margin-bottom: 10px;
  }
  .overlay .modal .content .big-form .form_description-wrapper {
    margin-bottom: 15px;
  }
  .overlay .modal .modal-footer {
    flex-direction: column;
    margin-top: 15px;
  }
  .overlay .modal .modal-footer .close-modal {
    order: 2;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
  }
  .overlay .modal .modal-footer .modal-form_btn {
    order: 1;
    width: 100%;
    margin-bottom: 30px;
  }
  .overlay .modal .modal-footer .modal-form_btn .brown-btn {
    width: 100%;
  }

  /*modal*/
  .thx-window .form_send {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 0;
  }
  .thx-window .form_send .brown-btn {
    width: 100%;
    text-align: center;
    display: inline-block;
  }
  .thx-window .form_send .thx-left {
    order: 2;
  }
  .thx-window .form_send .thx-left .section-subtitle {
    font-size: 14px;
    padding: 0;
    margin-bottom: 20px;
  }
  .thx-window .form_send .thx-right {
    order: 1;
    width: 190px;
    flex: 0 0 190px;
  }
}
@media screen and (max-width: 770px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  .inner-page .container_wrapper-bg {
    width: 100%;
  }
  .inner-page .container_wrapper-bg .container {
    width: 100%;
  }

  .section-title {
    font-size: 32px;
    line-height: 44px;
  }

  /*first-screen*/
  .first-screen .benefits_list .benefits_card {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }
  .first-screen .benefits_list .benefits_card .benefits_card-wrapper {
    display: flex;
  }
  .first-screen .benefits_list .benefits_card .benefits_card-icn {
    margin-right: 30px;
  }

  /*first-screen*/
  /*personal*/
  .personal .section-title {
    padding-top: 60px;
  }
  .personal .personal_card-wrapper {
    max-width: 305px;
    width: 305px;
    flex: 0 0 305px;
  }
  .personal .personal_card {
    height: 285px;
  }
  .personal .personal_card:hover {
    box-shadow: 0px 7px 25px rgba(131, 92, 35, 0.22);
  }
  .personal .personal_card:hover .personal_card_hover {
    height: 40px;
    overflow: hidden;
    position: absolute;
    width: calc(100% - 40px);
    transition: 0.3s ease-in-out;
    bottom: 20px;
  }
  .personal .personal_card:hover .personal_card_hover .personal_card-name {
    color: #373737;
    font-size: 18px;
    line-height: 22px;
  }
  .personal .row {
    justify-content: center;
  }

  /*personal*/
  /*form*/
  .form-about_bg {
    width: 100%;
  }

  /*form*/
  /*reviews*/
  .reviews .reviews-card .reviews-number {
    display: none;
  }
  .reviews .prev,
  .reviews .next {
    position: absolute;
    bottom: -30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .reviews .prev:hover path,
  .reviews .next:hover path {
    fill: #c88727;
  }
  .reviews .prev {
    left: 0;
  }
  .reviews .next {
    right: 0;
  }
  .reviews .slick-dots li {
    height: auto;
    width: auto;
    margin: 0 7px;
  }
  .reviews .slick-dots li.slick-active button {
    background-color: #c88727;
  }
  .reviews .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #cbcbcb;
  }
  .reviews .slick-dots li button:before {
    display: none;
  }
  .reviews .slick-dots {
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  /*reviews*/
  .form.form-advice .left-column_big {
    max-width: 70%;
    width: 70%;
    flex: 0 0 70%;
  }

  /*footer*/
  .footer .sub-footer .sub-footer_column .footer-language {
    left: 0;
  }

  /*footer*/
  /*command*/
  .command .command_card-wrapper:after {
    display: none;
  }

  /*command*/
  /*inner-page*/
  .inner-page .container_wrapper-bg {
    padding-bottom: 50px;
  }
  .inner-page .container_wrapper-bg .brown-btn {
    margin-top: 40px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .inner-page p {
    font-size: 14px;
    line-height: 160%;
  }
  .inner-page .breadcrumb-list {
    font-size: 14px;
  }
  .inner-page .breadcrumb-list li a {
    font-size: 14px;
  }
  .inner-page .breadcrumb-list li:before {
    font-size: 14px;
  }
  .inner-page .personal .section-title {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .inner-page .choice .choice_form_step .choice_form_step-number {
    left: 15px;
  }

  /*inner-page*/
  .gray-separator {
    margin-top: 10px;
    margin-bottom: 25px;
  }

  .number-list {
    font-size: 14px;
    line-height: 140%;
  }
  .number-list li {
    padding-left: 20px;
  }
}
@media screen and (max-width: 580px) {
  /*inner-page*/
  .inner-page .price .price-page_description {
    font-size: 14px;
  }
  .inner-page .price .accordion-menu_price {
    margin-top: 30px;
  }
  .inner-page .price .accordion-menu_price li .price-card_wrapper {
    padding-bottom: 25px;
  }
  .inner-page .price .accordion-menu_price li .price-card_wrapper.open {
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  }
  .inner-page
    .price
    .accordion-menu_price
    li
    .price-card_wrapper.open
    .dropdownlink
    .icn-dropdown {
    background-color: transparent;
    transform: rotateZ(180deg);
  }
  .inner-page
    .price
    .accordion-menu_price
    li
    .price-card_wrapper.open
    .dropdownlink
    .icn-dropdown
    svg
    path {
    stroke: #c88727;
  }
  .inner-page
    .price
    .accordion-menu_price
    li
    .price-card_wrapper:hover
    .brown-btn {
    color: #c88727;
    background-color: #ffffff;
  }
  .inner-page
    .price
    .accordion-menu_price
    li
    .price-card_wrapper
    .dropdownlink {
    padding: 25px 25px 0 25px;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .inner-page
    .price
    .accordion-menu_price
    li
    .price-card_wrapper
    .dropdownlink
    .icn-dropdown {
    background: #c88727;
    border: 2px solid #c88727;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
  }
  .inner-page
    .price
    .accordion-menu_price
    li
    .price-card_wrapper
    .submenuItems {
    display: none;
    padding: 20px 25px 0 25px;
  }
  .inner-page
    .price
    .accordion-menu_price
    li
    .price-card_wrapper
    .submenuItems
    .price-card_list {
    margin-bottom: 15px;
  }
  .inner-page
    .price
    .accordion-menu_price
    li
    .price-card_wrapper
    .submenuItems
    .price-card_list
    .price__price {
    font-size: 14px;
    line-height: 100%;
  }
  .inner-page
    .price
    .accordion-menu_price
    li
    .price-card_wrapper
    .submenuItems
    .price-card_list
    .price__hour {
    font-size: 14px;
    line-height: 100%;
  }
  .inner-page
    .price
    .accordion-menu_price
    li
    .price-card_wrapper
    .submenuItems
    .price-card_footer,
  .inner-page
    .price
    .accordion-menu_price
    li
    .price-card_wrapper
    .submenuItems
    .callback_card-btn {
    margin-top: 25px;
  }

  /*inner-page*/
}
@media screen and (max-width: 576px) {
  /*main*/
  .nav_wrapper .header_menu label.hamburger {
    z-index: 99 !important;
  }

  body h1 {
    font-size: 42px;
    line-height: 130%;
  }
  body p {
    font-size: 14px;
    line-height: 150%;
  }

  .gray-btn.dropdown-select {
    margin-bottom: 10px;
  }
  .gray-btn.dropdown-select .gray-btn_select .gray-btn_select-main {
    width: 100%;
  }

  .brown-btn {
    text-align: center;
    font-size: 15px;
    line-height: 18px;
  }

  .section-title {
    font-size: 28px;
    line-height: 130%;
  }

  .big-form .input-wrapper {
    margin-bottom: 15px;
  }
  .big-form .input-wrapper input {
    padding: 0;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 150%;
  }

  .thx-window .form_send {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 0;
  }
  .thx-window .form_send .brown-btn {
    width: 100%;
    text-align: center;
    display: inline-block;
  }
  .thx-window .form_send .thx-left {
    order: 2;
  }
  .thx-window .form_send .thx-left .section-subtitle {
    font-size: 14px;
    padding: 0;
    margin-bottom: 20px;
  }
  .thx-window .form_send .thx-right {
    order: 1;
    width: 120px;
    flex: 0 0 120px;
  }

  .left-column_big {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 10px;
  }

  .right-column_small {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }

  .small-form {
    padding: 30px 20px;
  }
  .small-form .small-form_title-wrapper {
    margin-bottom: 30px;
  }
  .small-form .small-form_title {
    font-size: 16px;
    line-height: 150%;
  }
  .small-form .input-wrapper input {
    padding: 0;
    padding-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
  }
  .small-form .light_brown-btn {
    margin-top: 20px;
  }
  .small-form .input_btn-wrapper {
    max-width: 290px;
    margin: 0 auto;
  }
  .small-form .form_send {
    padding: 15px;
  }
  .small-form .form_send .small-send-form_icn {
    width: 110px;
    height: 110px;
  }

  /*main*/
  .nav_wrapper .header_menu input.hamburger:checked ~ label > i {
    background-color: #c88727;
    transform: rotate(0deg);
  }
  .nav_wrapper .header_menu input.hamburger:checked ~ label > i:before {
    transform: translate(-50%, 6px);
  }
  .nav_wrapper .header_menu input.hamburger:checked ~ label > i:after {
    transform: translate(-50%, -6px);
  }

  /*first-screen*/
  .first-screen {
    background-image: none;
  }
  .first-screen .first-screen_content {
    padding: 50px 0 60px 0;
    width: 290px;
  }
  .first-screen .first-screen_content .main-title_wrapper {
    margin-bottom: 35px;
  }
  .first-screen .first-screen_content .main-title_wrapper img {
    width: 97px;
  }
  .first-screen .first-screen_content .main-title_wrapper h1:before {
    height: 33px;
    bottom: 60px;
    right: 23px;
  }
  .first-screen .first-screen_content .main-title_wrapper h1:after {
    height: 33px;
    bottom: 7px;
    right: 38px;
  }
  .first-screen .first-screen_content .first-screen_btn-wrapper {
    flex-direction: column;
    width: 290px;
  }
  .first-screen .benefits_list {
    flex-direction: column;
  }
  .first-screen .benefits_list .benefits_card {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    padding: 0 0 40px 0;
  }

  /*first-screen*/
  /*personal*/
  .personal {
    padding-bottom: 20px;
  }

  /*personal*/
  /*form*/
  .form-about_bg {
    background-image: none;
  }

  .form .form_description-wrapper .form-about_btn-wrapper {
    max-width: 290px;
    margin: 30px auto 0 auto;
  }

  /*form*/
  /*reviews*/
  .reviews {
    padding: 10px 0 30px 0;
  }
  .reviews .reviews-card {
    padding: 30px 20px;
  }
  .reviews .reviews-card .reviews-card_name {
    font-size: 18px;
    line-height: 150%;
  }
  .reviews .reviews-card .reviews-card_name:after {
    left: -5px;
    top: 4px;
    width: 82px;
    height: 20px;
  }
  .reviews .reviews-card .reviews-card_product {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 20px;
  }
  .reviews .reviews-card .reviews-card_description p {
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 10px;
  }
  .reviews .prev,
  .reviews .next {
    bottom: 5px;
    width: 10px;
    height: 10px;
  }
  .reviews .next {
    right: 20px;
  }
  .reviews .prev {
    left: 20px;
  }
  .reviews .slick-dots {
    bottom: 5px;
  }

  /*reviews*/
  /*cooperation*/
  .cooperation {
    padding-top: 10px;
    border-bottom: none;
  }
  .cooperation .cooperation-steps_wrapper {
    flex-direction: column;
  }
  .cooperation .cooperation-steps_wrapper .cooperation-step {
    flex: 0 0 100%;
    min-width: 100%;
    padding-left: 45px;
    font-size: 14px;
  }
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__1
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__2
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__3
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__4
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__5
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__6
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__7
    .step_number,
  .cooperation
    .cooperation-steps_wrapper
    .cooperation-step
    .step__last
    .step_number {
    left: -45px;
  }
  .cooperation .cooperation-steps_wrapper .cooperation-step .step_number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  /*cooperation*/
  /*faq*/
  .faq {
    padding-top: 0;
  }
  .faq .faq_wrapper .dropdownlink {
    padding: 20px;
    font-size: 14px;
    line-height: 17px;
  }
  .faq .faq_wrapper .faq-icn {
    flex: 0 0 28px;
    margin-left: 15px;
  }
  .faq .faq_wrapper .submenuItems {
    font-size: 14px;
    line-height: 150%;
    padding: 0 20px 20px 20px;
  }

  /*faq*/
  /*command*/
  .command {
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .command .container {
    padding: 0;
  }
  .command .row {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: auto;
    justify-content: flex-start;
    padding-bottom: 20px;
  }
  .command .command_card {
    margin: 0 15px;
  }
  .command .command_card .command_card-avatar {
    width: 200px;
    height: 235px;
  }

  /*command*/
  /*form.form-advice*/
  .form.form-advice {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 50px;
  }
  .form.form-advice .form-advice_bg {
    display: none;
  }
  .form.form-advice .left-column_big {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .form.form-advice .form_description-wrapper .section-title {
    margin-bottom: 15px;
  }
  .form.form-advice .big-form {
    margin-top: 15px;
  }
  .form.form-advice .brown-btn {
    padding: 20px 16px 21px 16px;
  }

  /*form.form-advice*/
  /*footer*/
  .footer {
    padding-top: 40px;
  }
  .footer .row {
    display: block;
  }
  .footer .sub-footer .row {
    display: flex;
  }
  .footer .footer-contacts_wrapper {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .footer .footer-contacts_wrapper .footer-contacts_col {
    width: 100%;
  }
  .footer .footer-contacts_wrapper .footer-contacts_list {
    margin-bottom: 50px;
  }
  .footer
    .footer-contacts_wrapper
    .footer-contacts_list
    .footer-contacts_list-title {
    font-size: 18px;
  }
  .footer
    .footer-contacts_wrapper
    .footer-contacts_list
    .footer-contacts_list-sub_title {
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .footer
    .footer-contacts_wrapper
    .footer-contacts_list
    .footer-contacts_list-contact_wrapper
    .footer-contacts_list-contact {
    font-size: 16px;
  }
  .footer .google-link {
    font-size: 16px;
  }
  .footer .small-form {
    height: auto;
    min-height: 400px;
  }
  .footer .sub-footer {
    height: 145px;
  }
  .footer .sub-footer .sub-footer_column .footer-language {
    margin-bottom: 25px;
  }
  .footer .sub-footer .sub-footer_column .footer-language li {
    margin-left: 0;
    margin-right: 15px;
  }
  .footer .sub-footer .order-m-1 {
    order: 1;
  }
  .footer .sub-footer .order-m-2 {
    order: 2;
  }
  .footer .sub-footer .order-m-3 {
    order: 3;
  }

  /*footer*/
  /*inner-page*/
  .inner-page .section-title {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .inner-page .choice {
    padding-top: 40px;
  }
  .inner-page .choice .choice_form_step {
    padding: 0;
    box-shadow: none;
  }
  .inner-page .choice .choice_form_step .choice_form_step-number {
    left: -5px;
    top: -5px;
  }
  .inner-page .choice .choice_form_step .toggle_back {
    font-size: 12px;
    line-height: 130%;
  }
  .inner-page .choice .choice_form-wrapper .choice_form-title {
    font-size: 18px;
    line-height: 130%;
    padding-left: 35px;
  }
  .inner-page .choice .choice_form_step-1 {
    border-bottom: 1px solid #9c9c9c;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .inner-page .choice .choice_form_step-1 .brown-btn {
    padding: 20px 35px 21px 35px;
  }
  .inner-page .choice .choice_form_step-2 .brown-btn {
    width: 100%;
  }

  .icon-work-list_wrapper .icon-work-card_wrapper {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 15px;
  }
  .icon-work-list_wrapper .icon-work-card_wrapper .icon-work-list_card {
    display: flex;
    align-items: center;
  }
  .icon-work-list_wrapper
    .icon-work-card_wrapper
    .icon-work-list_card
    .icon-work-list_icn {
    margin-right: 15px;
  }

  .form_block {
    padding: 25px;
  }
  .form_block .form_block-title {
    font-size: 14px;
    line-height: 17px;
  }

  .custom-radio + label {
    font-size: 14px;
    line-height: 150%;
  }

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[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;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"),
    url("./fonts/slick.woff") format("woff"),
    url("./fonts/slick.ttf") format("truetype"),
    url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*# sourceMappingURL=style.css.map */
