@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
header {
  z-index: 9;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  position: relative;
}

header .header_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 60px;
  padding: 40px 0px 26px 0px;
}

header .header_info .header-tel a {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

header .header_menu .header__top-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  list-style: none;
  margin: 0;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

header .header_menu .header__top-menu ul li {
  padding: 15px 15px 15px 17px;
  white-space: nowrap;
}

header .header_menu .header__top-menu ul li a {
  color: #fff;
  text-decoration: none;
}

header .header_menu .menu {
  display: none;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  -webkit-transform: rotate(405deg);
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  -webkit-transform: rotate(-405deg);
  transform: rotate(-405deg);
}

@media screen and (max-width: 1024px) {
  .header__top-menu {
    display: none;
  }
  .menu-button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -42px;
    margin-left: -70px;
    margin-bottom: 50px;
    z-index: 999;
  }
  ul.menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: absolute;
    top: 10%;
    margin-top: 78px;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #menu-toggle ~ ul.menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
  }
  #menu-toggle ~ ul.menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 17px;
  }
  #menu-toggle:checked ~ ul.menu li {
    border: 1px solid rgba(0, 0, 0, 0.8);
    height: 2.5em;
    padding: 0.5em;
    -webkit-transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  ul.menu > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background: rgba(0, 0, 0, 0.4);
  }
  ul.menu > li:not(:last-child) {
    border-bottom: none !important;
  }
}

@media screen and (max-width: 1023px) {
  header .header_info {
    gap: 0;
  }
  header .header_info > * {
    width: 33%;
  }
}

@media screen and (max-width: 768px) {
  .menu-button-container {
    margin-top: -10%;
  }
}

@media screen and (max-width: 600px) {
  header .header_info .work-schedule,
  header .header_info .header-tel {
    display: none;
  }
  header .header_info .address {
    text-align: right;
    width: 50%;
  }
  .menu-button-container {
    margin-left: -5%;
  }
}

/* COLORS */
/* SCREEN SIZES */
/* FONTS */
.contacts {
  margin-top: 140px;
  margin-bottom: 70px;
  display: -ms-grid;
  display: grid;
  grid-auto-rows: 1fr;
  -ms-grid-columns: 5fr 3fr 4fr;
      grid-template-columns: 5fr 3fr 4fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contacts .map {
  position: relative;
}

.contacts .map .map_overlay {
  padding: 10px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0%;
  background: rgba(88, 53, 32, 0.75);
  height: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts .text {
  background-color: #fff;
  padding: 60px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.contacts .text .text_title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #583520;
}

.contacts .text div {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #583520;
}

.contacts .text a {
  text-decoration: none;
  color: #583520;
  font-weight: bold;
}

html {
  scroll-behavior: smooth;
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
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;
}

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

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

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

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

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

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

ul#sale_timer {
  list-style: none;
  margin: 50px 0;
  padding: 0;
  display: block;
  text-align: center;
}

ul#sale_timer li {
  display: inline-block;
}

ul#sale_timer li span {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #FFFFFF;
}

ul#sale_timer li.separator {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #FFFFFF;
  vertical-align: top;
}

ul#sale_timer li p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #FFFFFF;
}

/* COLORS */
/* SCREEN SIZES */
/* FONTS */
.slick-prev:before, .slick-next:before {
  font-size: 72px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: -50px;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 10;
}

.slick-prev:before {
  content: '←';
}

.slick-prev {
  left: 45%;
}

.slick-next:before {
  content: '→';
}

.slick-next {
  right: 45%;
}

@media screen and (max-width: 1024px) {
  .slick-next {
    right: 40%;
  }
  .slick-prev {
    left: 34%;
  }
}

@media screen and (max-width: 600px) {
  .slick-prev:before, .slick-next:before {
    font-size: 56px;
  }
}

body {
  background-color: #3F271E!important;
  font-family: 'inter'!important;
}

.container {
  width: 78.125%;
  margin: auto;
}

.top-gradient {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, black 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  z-index: -1;
}

.main_screen {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_screen .main_screen_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  width: 77%;
  padding: 20px;
}

.main_screen .main_screen_text .main_text_title {
  font-weight: 400;
  font-size: 50px;
  line-height: 130%;
  text-transform: uppercase;
  color: #fff;
}

.main_screen .main_screen_text .main_text_description {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #BBB6B3;
}

.main_screen .main_screen_text input {
  background-color: transparent;
  border: 3px solid #fff;
  width: 238px;
  padding: 20px 40px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}

.callback_form {
  padding: 60px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.callback_form .callback_form_title {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.callback_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.callback_form form input[type=submit] {
  background-color: transparent;
  border: 3px solid #fff;
  width: 238px;
  padding: 12px 40px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}

.callback_form form input[type=text] {
  width: 238px;
  padding: 12px 12px;
}

.callback_form form .submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.callback_form form .submit .privacy-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.callback_form form .submit .privacy-policy label {
  font-weight: 400;
  font-size: 10px;
  line-height: 110%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
}

.callback_form form .submit .privacy-policy input[type=radio]:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: #d1d3d1;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

.callback_form form .submit .privacy-policy input[type=radio]:checked:after {
  background-color: #20160F;
}

.callback_form .sale_timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.callback_form .sale_timer span {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #FFFFFF;
}

.advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.advantages .advantage_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 12px;
  padding: 8px;
}

.advantages .advantage_item .advantage_item_title {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
}

.advantages .advantage_item .advantage_item_description {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
  padding: 0px 24px;
}

.block_title {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.why_choose_us {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
}

.why_choose_us .left_side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 60px 120px 192px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.why_choose_us .left_side .why_choose_us_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 72px;
}

.why_choose_us .left_side .why_choose_us_items .why_choose_us_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44%;
}

.why_choose_us .left_side .why_choose_us_items .why_choose_us_item .why_choose_us_item_description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.why_choose_us .left_side .why_choose_us_items .why_choose_us_item .why_choose_us_item_description .wcuid_title {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
}

.why_choose_us .left_side .why_choose_us_items .why_choose_us_item .why_choose_us_item_description .wcuid_description {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #FFFFFF;
}

.why_choose_us .right_side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pop_services .pop_services_items {
  margin: 56px 0px;
}

.pop_services .pop_services_items .products_block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(2, 1fr);
  row-gap: 56px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

.pop_services .pop_services_items .products_block a {
  text-decoration: none;
}

.pop_services .pop_services_items .products_block .pop_services_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pop_services .pop_services_items .products_block .pop_services_item .product_info {
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
}

.pop_services .pop_services_items .products_block .pop_services_item .product_info .product_title {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  text-transform: capitalize;
  color: #20160F;
}

.pop_services .pop_services_items .products_block .pop_services_item .product_info .product_price {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  text-align: center;
  text-transform: lowercase;
  color: #20160F;
}

.pop_services .pop_services_items .products_block .pop_services_item .product_info .price_symbol {
  font-family: 'Raleway';
}

.pop_services .popup_products {
  display: none;
}

.modal {
  max-width: 70% !important;
  padding: 70px !important;
}

.how_we_work {
  margin-top: 118px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.how_we_work .left_side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.how_we_work .right_side {
  padding: 64px 112px;
  background-color: #fff;
}

.how_we_work .right_side .how_we_work_title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-transform: uppercase;
  color: #583520;
}

.how_we_work .right_side ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.how_we_work .right_side ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #545151;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.how_we_work .right_side ul li::marker {
  vertical-align: middle;
}

.how_we_work > * {
  width: 50%;
}

.chain_of_work {
  margin-top: 100px;
}

.chain_of_work .chain_of_work_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 60px;
}

.chain_of_work .chain_of_work_items .chain_of_work_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 20%;
}

.chain_of_work .chain_of_work_items .chain_of_work_item .chain_of_work_item_title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #FFFFFF;
}

.chain_of_work .chain_of_work_items .chain_of_work_item .chain_of_work_item_description {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
}

.chain_of_work .chain_of_work_items .chain_of_work_arrow {
  width: 6%;
  padding: 30px 0px;
}

.reviews_wrapper {
  margin-top: 120px;
  background-image: url(/img/reviews_bg.png);
  background-repeat: no-repeat;
}

.reviews_wrapper .container .reviews {
  padding: 100px 0px;
}

.reviews_wrapper .container .reviews .reviews_items {
  margin-top: 60px;
}

.reviews_wrapper .container .reviews .reviews_items .reviews_item_wrapper {
  padding: 8px;
}

.reviews_wrapper .container .reviews .reviews_items .reviews_item_wrapper .reviews_item {
  -webkit-box-shadow: -6px -2px 8px #fff;
          box-shadow: -6px -2px 8px #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  padding: 30px;
}

.reviews_wrapper .container .reviews .reviews_items .reviews_item_wrapper .reviews_item .first_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.reviews_wrapper .container .reviews .reviews_items .reviews_item_wrapper .reviews_item .first_line .review_author_name {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #545151;
}

.reviews_wrapper .container .reviews .reviews_items .reviews_item_wrapper .reviews_item .second_line p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #545151;
}

.reviews_wrapper .container .reviews .reviews_items .reviews_item_wrapper .reviews_item .second_line a {
  font-family: 'raleway';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #583520;
}



.gallery .slick-prev {
  left: 80%;
}

.gallery .slick-next {
  right: 10%;
}

.gallery .gallery_item_wrapper {
  padding: 12px;
}


.partners_wrapper {
  margin-top: 100px;
  background-color: #000;
  -webkit-box-shadow: 0px 0px 500px 300px;
          box-shadow: 0px 0px 500px 300px;
}

.partners_wrapper .partners .partners_items {
  margin-top: 50px;
}

.partners_wrapper .partners .partners_items .partner_item_wrapper {
  padding: 10px;
}

.certificates {
  margin-top: 120px;
}

.certificates .certificate_items {
  margin-top: 50px;
}

.certificates .certificate_items .certificate_item_wrapper {
  padding: 10px;
}

.certificates .certificate_items .certificate_item_wrapper .certificate_item {
  background-color: #fff;
  position: relative;
}

.certificates .certificate_items .certificate_item_wrapper .certificate_item a {
  -webkit-transition: .5s ease;
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.certificates .certificate_items .certificate_item_wrapper .certificate_item .hover_effect_text {
  width: 100%;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 75%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.certificates .certificate_items .certificate_item_wrapper .certificate_item > *:not(:first-child) {
  opacity: 0;
}

.certificates .certificate_items .certificate_item_wrapper .certificate_item:hover *:not(:first-child) {
  opacity: 1;
}

.certificates .certificate_items .certificate_item_wrapper .certificate_item:hover > img:first-child {
  opacity: 0.3;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

@media screen and (max-width: 1024px) {
  .advantages {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .advantages .advantage_item {
    width: 30%;
  }
  .why_choose_us .left_side {
    padding: 100px 20px 100px 100px;
  }
  .why_choose_us .left_side .why_choose_us_items {
    gap: 10px;
  }
  .why_choose_us .left_side .why_choose_us_items .why_choose_us_item {
    width: 48%;
    gap: 10px;
  }
  .why_choose_us .left_side .why_choose_us_items .why_choose_us_item .why_choose_us_item_description .wcuid_title {
    font-size: 18px;
  }
  .why_choose_us .left_side .why_choose_us_items .why_choose_us_item .why_choose_us_item_description .wcuid_description {
    font-size: 14px;
  }
  .how_we_work .right_side {
    padding: 64px 64px;
  }
  .gallery .slick-current img {
    height: 314px;
  }
  .gallery .slick-prev {
    left: 70%;
  }
  .contacts .text {
    padding: 60px 29px;
  }
  .contacts .right_picture img {
    height: 100%;
  }
  .callback_form form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .certificates .certificate_item_wrapper .certificate_item .hover_effect_text {
    font-size: 11px;
  }
}

@media screen and (max-width: 1023px) {
  .main_screen {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .main_screen .right_pic {
    display: none;
  }
  .main_screen .main_screen_text {
    margin: auto;
  }
  .why_choose_us .left_side .why_choose_us_items .why_choose_us_item {
    width: 96%;
  }
  .pop_services .pop_services_items .products_block .pop_services_item .product_info .product_title {
    font-size: 15px;
  }
  .how_we_work {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .how_we_work > * {
    width: 100%;
  }
  .chain_of_work .chain_of_work_items .chain_of_work_arrow {
    width: 3%;
  }
  .chain_of_work .chain_of_work_items .chain_of_work_item {
    width: 23%;
  }
  .chain_of_work .chain_of_work_items .chain_of_work_item .chain_of_work_item_title {
    font-size: 15px;
  }
  .chain_of_work .chain_of_work_items .chain_of_work_item .chain_of_work_item_description {
    font-size: 14px;
  }
  .reviews_wrapper .container .reviews .reviews_items .slick-prev, .reviews_wrapper .container .reviews .reviews_items .slick-next {
    bottom: -16px;
  }
  .gallery .slick-current img {
    height: 232px;
  }
  .contacts {
    -ms-grid-columns: 5fr 3fr;
        grid-template-columns: 5fr 3fr;
  }
  .contacts .right_picture {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pop_services .pop_services_items .products_block {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .gallery .slick-current img {
    height: 232px;
  }
}

@media screen and (max-width: 600px) {
  .block_title {
    text-align: center;
    margin-top: 60px;
  }
  .main_screen {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .main_screen .left_pic {
    margin: auto;
  }
  .callback_form .sale_timer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
  .advantages {
    gap: 0;
  }
  .advantages .advantage_item {
    width: 46%;
  }
  .advantages .advantage_item .advantage_item_description {
    display: none;
  }
  .why_choose_us {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .why_choose_us .left_side {
    padding: 20px;
  }
  .why_choose_us .left_side .why_choose_us_items .why_choose_us_item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .why_choose_us .right_side {
    display: none;
  }
  .pop_services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pop_services .pop_services_title {
    margin-bottom: 0 !important;
  }
  .chain_of_work {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .chain_of_work .chain_of_work_title {
    margin-bottom: 0 !important;
  }
  .chain_of_work .chain_of_work_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .chain_of_work .chain_of_work_items .chain_of_work_arrow img {
    margin: auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .chain_of_work .chain_of_work_items > * {
    width: 100% !important;
  }
  .contacts {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .gallery .slick-prev, .gallery .slick-next {
    bottom: -8px;
  }
  .gallery .slick-prev {
    left: 34%;
  }
  .gallery .slick-next {
    right: 40%;
  }
  .gallery .slick-current img {
    height: 100%;
  }
}
/*# sourceMappingURL=style.css.map */