@charset "UTF-8";
ul, ol, p, * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pt-0 {
  padding-top: 0 !important;
}

.irs--round .irs-line {
  height: 5px;
}

.irs--round .irs-bar {
  background-color: #00A2FC;
}

.irs--round .irs-handle {
  background-color: #00A2FC;
  border: 8px solid #fff;
}

.irs--round .irs-handle:hover {
  background-color: #00A2FC;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #475569;
  background-color: #FFF;
  font-weight: 400;
}
body.mobile_menu_open {
  position: relative;
  overflow: hidden;
}
body.mobile_menu_open::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(71, 85, 105, 0.6);
  left: 0;
  top: 0;
  transition: 0.3s all ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .container {
    max-width: 1170px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 728px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 355px;
    padding: 0 15px;
  }
}

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

.breadcrumbs {
  margin: 30px 0;
}
@media (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}

.breadcrumbs ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs ul li {
  color: #475569;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
}

.breadcrumbs ul li::after {
  content: ">";
  margin: 0 15px;
}

.breadcrumbs ul li:last-child::after {
  content: none;
}

.breadcrumbs ul li a {
  color: #93A2AB;
  text-decoration: none;
  font-weight: 400;
  line-height: 140%;
}

.section_title {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  color: #202020;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .section_title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .section_title {
    font-size: 24px;
    margin: 0 0 40px 0;
  }
}
@media (max-width: 650px) {
  .section_title {
    margin-bottom: 33px;
    line-height: 130%;
  }
}

.button {
  font-weight: 700;
  font-size: 18px;
  line-height: 97%;
  padding: 22px 70px;
  display: inline-block;
  border-radius: 4px;
  text-decoration: none;
}
.button.button_blue {
  background: #00A2FC;
  color: #FFFFFF;
}
@media (max-width: 1200px) {
  .button {
    padding: 17.5px 50px;
    display: inline-block;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .button {
    display: block;
    width: 100%;
    padding: 17px 0;
  }
}

section {
  margin-bottom: 100px;
}
section.pt_mobile {
  padding-top: 0;
}
@media (max-width: 767px) {
  section {
    padding-top: 60px;
    margin-bottom: 60px;
  }
  section.pt_mobile {
    padding-top: 60px;
  }
}

.tab_navigation {
  display: flex;
  justify-content: center;
}
.tab_navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0 20px;
  margin-top: -23px;
  z-index: 100;
  background-color: #fff;
}
.tab_navigation ul a {
  display: block;
  min-width: 200px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  padding: 12px 30px;
  color: #475569;
  text-decoration: none;
  background: #F3F3F3;
  opacity: 0.3;
  border-radius: 4px;
  transition: 0.3s all ease;
}
.tab_navigation ul a.active {
  opacity: 1;
}
@media (max-width: 767px) {
  .tab_navigation ul {
    flex-wrap: wrap;
    margin-top: 0;
    position: absolute;
    top: 60px;
  }
  .tab_navigation ul li {
    width: 100%;
  }
  .tab_navigation ul li a {
    display: block;
  }
}

.tab_body {
  background-color: #fff;
}
.tab_body .block_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
  text-align: center;
  margin-bottom: 40px;
}
.tab_body .block_title span {
  color: #00A2FC;
}
@media (max-width: 1200px) {
  .tab_body .block_title {
    font-size: 22px;
    line-height: 130%;
  }
}
.tab_body .tab_item {
  display: none;
}
.tab_body .tab_item.active {
  display: block;
}
.tab_body .row {
  align-items: flex-start;
}

/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}
@media (max-width: 767px) {
  .modal__overlay {
    padding: 0 15px;
  }
  .modal__overlay.no_mobile_pd {
    padding: 0;
  }
}

.modal__container {
  background-color: #fff;
  padding: 50px 50px 65px 50px;
  max-width: 800px;
  min-width: 400px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}
.modal__container.modal_md {
  max-width: 400px;
}
.modal__container.modal_lg {
  min-width: 800px;
}
.modal__container.modal_lg .modal_title,
.modal__container.modal_lg .modal_descripton {
  text-align: center;
}
.modal__container.modal_lg .calendar_block,
.modal__container.modal_lg .form_block {
  flex: 0 0 auto;
  width: 50%;
}
@media (max-width: 1000px) {
  .modal__container.modal_lg .calendar_block,
.modal__container.modal_lg .form_block {
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    padding: 0 !important;
  }
}
.modal__container.modal_lg .calendar_block {
  padding-right: 55px;
}
.modal__container.modal_lg .calendar_block .datepicker-inline {
  width: 100%;
  height: 100%;
}
.modal__container.modal_lg .calendar_block .datepicker-inline table {
  width: 100%;
  height: 80%;
}
.modal__container.modal_lg .calendar_block .datepicker-inline table thead {
  line-height: 2;
}
.modal__container.modal_lg .calendar_block .datepicker-inline table tr td.active {
  background: #00A2FC;
  border-radius: 4px;
}
.modal__container.modal_lg .calendar_block .calendar_view,
.modal__container.modal_lg .calendar_block .datepicker-days {
  height: 100%;
}
@media (max-width: 1000px) {
  .modal__container.modal_lg .calendar_block {
    margin-bottom: 90px;
  }
}
.modal__container.modal_lg .form_block {
  padding-left: 50px;
}
.modal__container.modal_lg .form_block .form_item input {
  background-color: #fff;
}
@media (max-width: 1000px) {
  .modal__container.modal_lg .form_block::after {
    content: "";
    display: block;
    background: #F9F9FA;
    height: 50%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
}
@media (max-width: 767px) {
  .modal__container.modal_lg .form_block::after {
    content: "";
    display: block;
    background: #F9F9FA;
    height: 41%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
}
.modal__container.modal_lg::after {
  content: "";
  display: block;
  height: 100%;
  width: 50%;
  background: #F9F9FA;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1000px) {
  .modal__container.modal_lg::after {
    display: none;
  }
}
@media (max-width: 1000px) {
  .modal__container.modal_lg {
    max-width: 600px;
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .modal__container.modal_lg {
    padding: 45px 55px 60px 55px;
  }
}
.modal__container .modal_form .form_item {
  margin-bottom: 10px;
}
.modal__container .modal_form .form_item input {
  height: 44px;
  width: 100%;
  background: #F9F9FA;
  border-radius: 4px;
  color: #202020;
  font-size: 14px;
  line-height: 16px;
  padding: 0 20px;
  outline: none;
  border: none;
}
.modal__container .modal_form .form_item input::placeholder {
  color: #93A2AB;
}
.modal__container .modal_form .form_item.agreement {
  font-size: 12px;
  line-height: 140%;
  color: #475569;
  margin: 20px 0;
}
.modal__container .modal_form .form_item.agreement a {
  color: #00A2FC;
}
.modal__container .modal_form .form_item .button {
  border: none;
  width: 100%;
  padding: 16px 0;
}
.modal__container .form_title {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 16px;
  color: #202020;
}
.modal__container .form_title span {
  font-weight: 600;
  color: #00A2FC;
}
@media (max-width: 1000px) {
  .modal__container .form_title {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .modal__container {
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .modal__container {
    padding: 30px 30px 45px 30px;
  }
}

.modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.modal_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
  margin-bottom: 15px;
}

.modal_descripton {
  font-size: 16px;
  line-height: 19px;
  color: #93A2AB;
  margin-bottom: 40px;
}

.modal__close {
  background: transparent;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  background: #F9F9FA;
  border-radius: 15px;
  outline: none;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.modal__content {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

/**************************\
Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  visibility: hidden;
}

.micromodal-slide.is-open {
  visibility: visible;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

header .header_top {
  background-color: #fff;
}
header .header_top .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_top .row .product_type ul {
  list-style: none;
  display: flex;
}
header .header_top .row .product_type ul a {
  display: block;
  padding: 20px 35px;
  font-size: 16px;
  line-height: 19px;
  color: #202020;
  text-decoration: none;
  background: #fff;
}
header .header_top .row .product_type ul a.active {
  background: #D6DFE4;
}
header .header_top .row .header_nav {
  display: flex;
  gap: 40px;
}
header .header_top .row .header_nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
header .header_top .row .header_nav ul a {
  font-size: 16px;
  line-height: 19px;
  color: #475569;
  text-decoration: none;
}
header .header_top .row .header_nav ul a:hover {
  color: #202020;
}
header .header_top .row .header_nav .header_phone {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #202020;
  text-decoration: none;
}
@media (max-width: 1200px) {
  header .header_top {
    display: none;
  }
}
header .header_bottom {
  background: #F9F9FA;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
  padding: 25px 0;
}
header .header_bottom .row {
  justify-content: space-between;
  align-items: center;
}
header .header_bottom .row .header_logo {
  flex: 0 0 auto;
  width: 15%;
}
header .header_bottom .row .header_filter {
  flex: 0 0 auto;
  width: 60%;
}
header .header_bottom .row .header_filter .filter_form {
  margin-bottom: 20px;
}
header .header_bottom .row .header_filter .filter_form form {
  width: 100%;
  position: relative;
}
header .header_bottom .row .header_filter .filter_form form input {
  width: 100%;
  background: #FFFFFF;
  border-radius: 4px;
  height: 44px;
  border: none;
  padding: 0 30px;
  font-size: 16px;
  line-height: 19px;
}
header .header_bottom .row .header_filter .filter_form form input::placeholder {
  color: #D6DFE4;
}
header .header_bottom .row .header_filter .filter_form form button {
  background-color: transparent;
  border: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
header .header_bottom .row .header_filter .filter_buttons > ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
header .header_bottom .row .header_filter .filter_buttons > ul > li a {
  display: flex;
  align-items: center;
  padding: 12px 30px;
  background: #F3F3F3;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #475569;
  text-decoration: none;
  gap: 4px;
  transition: 0.3s all ease;
}
header .header_bottom .row .header_filter .filter_buttons > ul > li a.catalog {
  background: #475569;
  color: #fff;
}
header .header_bottom .row .header_filter .filter_buttons > ul > li a:hover {
  background: #00A2FC;
  color: #fff;
}
@media (max-width: 1300px) {
  header .header_bottom .row .header_filter .filter_buttons > ul > li a {
    padding: 12px 22px;
  }
}
header .header_bottom .row .header_filter .filter_buttons .dropdown {
  position: relative;
}
header .header_bottom .row .header_filter .filter_buttons .dropdown > a::before {
  content: url(../images/dropdown_arrow.svg);
  display: block;
  transform: translateY(-2px);
}
header .header_bottom .row .header_filter .filter_buttons .dropdown ul {
  position: absolute;
  max-width: 475px;
  width: 475px;
  padding: 40px;
  left: 0;
  top: 90px;
  list-style: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
  opacity: 0;
  visibility: hidden;
  border-radius: 4px;
  transition: 0.3s all ease;
  z-index: 100;
  display: flex;
  gap: 10px 0;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
header .header_bottom .row .header_filter .filter_buttons .dropdown ul li {
  flex: 0 0 auto;
  width: calc(50% - 10px);
}
header .header_bottom .row .header_filter .filter_buttons .dropdown ul a {
  border-radius: 0;
  background-color: transparent;
  padding: 0;
  color: #93A2AB;
  font-size: 15px;
  font-weight: 600;
}
header .header_bottom .row .header_filter .filter_buttons .dropdown ul a:hover {
  background-color: transparent;
  color: #202020;
}
header .header_bottom .row .header_filter .filter_buttons .dropdown ul::before {
  content: url(../images/dropdown_menu_triangle.svg);
  position: absolute;
  display: block;
  top: -14px;
}
header .header_bottom .row .header_filter .filter_buttons .dropdown:hover ul {
  opacity: 1;
  top: 55px;
  visibility: visible;
}
header .header_bottom .row .header_callback {
  flex: 0 0 auto;
  width: 15%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  align-items: center;
}
header .header_bottom .row .header_callback .favorites {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  font-size: 14px;
  line-height: 16px;
  color: #475569;
  text-decoration: none;
}
header .header_bottom .row .header_callback .callback_btn {
  display: block;
  padding: 12px 28px;
  background: #00A2FC;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
}
@media (max-width: 1300px) {
  header .header_bottom .row .header_callback .callback_btn {
    padding: 12px 20px;
  }
}
@media (max-width: 1200px) {
  header .header_bottom {
    display: none;
  }
}
header .mobile_header {
  display: none;
  position: relative;
  z-index: 10;
}
@media (max-width: 1200px) {
  header .mobile_header {
    display: block;
  }
  header .mobile_header .row {
    justify-content: space-between;
    align-items: center;
  }
  header .mobile_header .mobile_header_top {
    padding: 13px 0;
    border-bottom: 1px solid #D6DFE4;
    background-color: #fff;
  }
  header .mobile_header .mobile_header_top .header_phone a {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: #202020;
    text-decoration: none;
  }
  header .mobile_header .mobile_header_bottom {
    background: #F9F9FA;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
    padding: 20px 0;
  }
  header .mobile_header .mobile_header_bottom .row {
    gap: 85px;
  }
}
@media (max-width: 1200px) and (max-width: 767px) {
  header .mobile_header .mobile_header_bottom .row {
    gap: 0;
  }
}
@media (max-width: 1200px) {
  header .mobile_header .mobile_header_bottom .header_menu {
    height: 30px;
    width: 30px;
  }
  header .mobile_header .mobile_header_bottom .header_menu .menu_toggler {
    position: relative;
    display: block;
    height: 100%;
  }
  header .mobile_header .mobile_header_bottom .header_menu .menu_toggler span {
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 15px;
    background-color: #202020;
    transition: 0.3s all ease;
    position: absolute;
    left: 0;
    top: 0;
  }
  header .mobile_header .mobile_header_bottom .header_menu .menu_toggler span:nth-child(1) {
    top: 6px;
  }
  header .mobile_header .mobile_header_bottom .header_menu .menu_toggler span:nth-child(2) {
    top: 12px;
  }
  header .mobile_header .mobile_header_bottom .header_menu .menu_toggler span:nth-child(3) {
    top: 18px;
  }
  header .mobile_header .mobile_header_bottom .header_menu .menu_toggler span:nth-child(4) {
    top: 24px;
  }
  header .mobile_header .mobile_header_bottom .header_menu .menu_toggler.opened span:nth-child(1) {
    width: 0;
    left: auto;
    right: 0;
    opacity: 0;
  }
  header .mobile_header .mobile_header_bottom .header_menu .menu_toggler.opened span:nth-child(2) {
    transform: rotate(45deg);
    top: 15px;
  }
  header .mobile_header .mobile_header_bottom .header_menu .menu_toggler.opened span:nth-child(3) {
    transform: rotate(-45deg);
    top: 15px;
  }
  header .mobile_header .mobile_header_bottom .header_menu .menu_toggler.opened span:nth-child(4) {
    width: 0;
    left: 0;
    opacity: 0;
  }
}
@media (max-width: 1200px) {
  header .mobile_header .mobile_header_bottom .header_action {
    display: flex;
    gap: 85px;
    flex: 1;
    width: 100%;
  }
  header .mobile_header .mobile_header_bottom .header_action .search_form {
    width: 100%;
    position: relative;
  }
  header .mobile_header .mobile_header_bottom .header_action .search_form input {
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    border: none;
    padding: 0 30px;
    font-size: 16px;
    line-height: 19px;
  }
  header .mobile_header .mobile_header_bottom .header_action .search_form input::placeholder {
    color: #D6DFE4;
  }
  header .mobile_header .mobile_header_bottom .header_action .search_form button {
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    border: none;
    background-color: transparent;
  }
  header .mobile_header .mobile_header_bottom .header_action .search_form .search_opener {
    display: none;
  }
}
@media (max-width: 1200px) and (max-width: 767px) {
  header .mobile_header .mobile_header_bottom .header_action .search_form {
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
  }
  header .mobile_header .mobile_header_bottom .header_action .search_form form {
    display: none;
  }
  header .mobile_header .mobile_header_bottom .header_action .search_form .search_opener {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    line-height: 140%;
  }
  header .mobile_header .mobile_header_bottom .header_action .search_form .search_opener img {
    width: 20px;
  }
}
@media (max-width: 1200px) {
  header .mobile_header .mobile_header_bottom .header_action .favorites {
    text-align: center;
  }
  header .mobile_header .mobile_header_bottom .header_action .favorites a {
    font-size: 14px;
    line-height: 16px;
    color: #475569;
    text-decoration: none;
    display: block;
  }
}
@media (max-width: 1200px) and (max-width: 767px) {
  header .mobile_header .mobile_header_bottom .header_action .favorites a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    line-height: 140%;
  }
  header .mobile_header .mobile_header_bottom .header_action .favorites a img {
    width: 20px;
  }
}
@media (max-width: 1200px) and (max-width: 767px) {
  header .mobile_header .mobile_header_bottom .header_action {
    gap: 0;
  }
}
@media (max-width: 1200px) {
  header .mobile_header .mobile_header_bottom .mobile_menu {
    position: absolute;
    left: -100%;
    top: 100%;
    padding: 40px;
    background-color: #fff;
    border-top: 1px solid #D6DFE4;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
    height: calc(100vh - 147px);
    max-width: 320px;
    width: 100%;
    transition: 0.3s all ease;
  }
  header .mobile_header .mobile_header_bottom .mobile_menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  header .mobile_header .mobile_header_bottom .mobile_menu .products_type {
    display: flex;
    margin-bottom: 25px;
  }
  header .mobile_header .mobile_header_bottom .mobile_menu .products_type a {
    flex: 1;
    padding: 15px 0;
    background: #F3F3F3;
    font-size: 16px;
    line-height: 19px;
    color: #93A2AB;
    text-align: center;
    text-decoration: none;
  }
  header .mobile_header .mobile_header_bottom .mobile_menu .products_type a.active {
    background: #D6DFE4;
    color: #202020;
  }
  header .mobile_header .mobile_header_bottom .mobile_menu .product_categories {
    margin-bottom: 25px;
  }
  header .mobile_header .mobile_header_bottom .mobile_menu .product_categories ul {
    max-width: 220px;
  }
  header .mobile_header .mobile_header_bottom .mobile_menu .product_categories ul a {
    color: #475569;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    text-decoration: none;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  header .mobile_header .mobile_header_bottom .mobile_menu .product_categories ul a::after {
    display: inline-block;
    content: url(../images/dropdown_arrow.svg);
    transform: rotate(-90deg);
  }
  header .mobile_header .mobile_header_bottom .mobile_menu .menu_navigation ul a {
    font-size: 16px;
    line-height: 19px;
    color: #475569;
    text-decoration: none;
  }
  header .mobile_header .mobile_header_bottom .mobile_menu.show {
    left: 0;
  }
}
@media (max-width: 1200px) {
  header .mobile_header .mobile_header_bottom .sub_category {
    position: absolute;
    padding: 40px 20px;
    width: 100%;
    height: calc(100vh - 147px);
    left: -100%;
    top: 100%;
    background-color: #fff;
    transition: 0.3s all ease;
  }
  header .mobile_header .mobile_header_bottom .sub_category .category_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #202020;
    margin-bottom: 20px;
  }
  header .mobile_header .mobile_header_bottom .sub_category .category_children ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  header .mobile_header .mobile_header_bottom .sub_category .category_children ul a {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #475569;
    text-decoration: none;
  }
  header .mobile_header .mobile_header_bottom .sub_category.show {
    left: 0;
  }
}
@media (max-width: 1200px) {
  header .mobile_header .mobile_header_bottom .mobile_search {
    display: none;
    position: absolute;
    padding: 40px 20px;
    width: 100%;
    height: calc(100vh - 147px);
    left: -100%;
    top: 100%;
    background-color: #fff;
    transition: 0.3s all ease;
  }
  header .mobile_header .mobile_header_bottom .mobile_search form {
    display: flex;
    position: relative;
  }
  header .mobile_header .mobile_header_bottom .mobile_search form input {
    width: 100%;
    flex: 0 0 auto;
    height: 50px;
    background: #F9F9FA;
    border-radius: 4px;
    border: none;
    padding: 0 135px 0 20px;
    color: #202020;
  }
  header .mobile_header .mobile_header_bottom .mobile_search form input::placeholder {
    color: #D6DFE4;
  }
  header .mobile_header .mobile_header_bottom .mobile_search form .button {
    position: absolute;
    right: 0;
    top: 0;
    width: 115px;
    border: none;
    height: 50px;
  }
}
@media (max-width: 1200px) and (max-width: 767px) {
  header .mobile_header .mobile_header_bottom .mobile_search {
    display: block;
  }
}
@media (max-width: 1200px) {
  header .mobile_header .mobile_header_bottom .mobile_search.show {
    left: 0;
  }
}

.hero {
  padding: 80px 0;
  background-color: #fff;
  margin-bottom: 0;
}
.hero .container {
  position: relative;
}
.hero .hero_texts .hero_title {
  font-weight: 800;
  font-size: 54px;
  line-height: 90%;
  color: #202020;
  max-width: 700px;
  margin-bottom: 30px;
}
.hero .hero_texts .hero_title span {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #4154D9;
  transform: translateY(-3px);
  display: inline-block;
}
@media (max-width: 1200px) {
  .hero .hero_texts .hero_title {
    font-size: 36px;
    max-width: 470px;
    margin-bottom: 25px;
  }
}
.hero .hero_texts .hero_description {
  font-size: 24px;
  line-height: 90%;
  color: #475569;
  margin-bottom: 15px;
}
.hero .hero_texts .hero_description span {
  line-height: 130%;
  font-weight: 700;
  color: #202020;
}
@media (max-width: 1200px) {
  .hero .hero_texts .hero_description {
    font-size: 18px;
    line-height: 21px;
  }
}
.hero .hero_texts .hero_advantages {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 435px;
  margin-bottom: 30px;
}
.hero .hero_texts .hero_advantages li {
  display: flex;
  gap: 12px;
  padding: 8px 17px;
  font-size: 18px;
  line-height: 160%;
  color: #475569;
  border-radius: 4px;
  background: #F3F3F3;
  backdrop-filter: blur(6px);
}
@media (max-width: 767px) {
  .hero .hero_texts .hero_advantages li {
    font-size: 14px;
    line-height: 16px;
    padding: 5px 7px;
    align-items: center;
    gap: 10px;
  }
  .hero .hero_texts .hero_advantages li img {
    width: 20px;
  }
}
@media (max-width: 767px) {
  .hero .hero_texts .hero_advantages {
    gap: 10px;
  }
}
.hero .hero_image {
  position: absolute;
  right: -80px;
  bottom: -80px;
}
@media (max-width: 1200px) {
  .hero .hero_image {
    max-width: 510px;
    right: -170px;
  }
}
@media (max-width: 767px) {
  .hero .hero_image {
    right: 0;
    bottom: -285px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hero {
    padding-bottom: 285px;
  }
}

.location {
  padding: 15px 0;
  background: #F9F9FA;
  border-bottom: 1px solid #D6DFE4;
  margin-bottom: 0;
}
.location .row {
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.location .row .block_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
}
@media (max-width: 1200px) {
  .location .row .block_title {
    min-width: 210px;
  }
}
@media (max-width: 767px) {
  .location .row .block_title {
    width: 100%;
    flex: 0 0 auto;
  }
}
.location .row .location_adresses {
  list-style: none;
  display: flex;
  gap: 15px;
}
.location .row .location_adresses li a {
  font-size: 16px;
  line-height: 19px;
  color: #475569;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s all ease;
}
.location .row .location_adresses li a:hover {
  color: #00A2FC;
}
@media (max-width: 1200px) {
  .location .row .location_adresses li {
    flex: 0 0 33%;
  }
  .location .row .location_adresses li:nth-child(1) {
    order: 1;
  }
  .location .row .location_adresses li:nth-child(2) {
    order: 4;
  }
  .location .row .location_adresses li:nth-child(3) {
    order: 7;
  }
  .location .row .location_adresses li:nth-child(4) {
    order: 2;
  }
  .location .row .location_adresses li:nth-child(5) {
    order: 5;
  }
  .location .row .location_adresses li:nth-child(6) {
    order: 6;
  }
  .location .row .location_adresses li:nth-child(7) {
    order: 3;
  }
}
@media (max-width: 767px) {
  .location .row .location_adresses li {
    flex: 0 0 auto;
    width: calc(50% - 15px);
  }
  .location .row .location_adresses li:nth-child(1) {
    order: 3;
  }
  .location .row .location_adresses li:nth-child(2) {
    order: 5;
  }
  .location .row .location_adresses li:nth-child(3) {
    order: 7;
  }
  .location .row .location_adresses li:nth-child(4) {
    order: 2;
  }
  .location .row .location_adresses li:nth-child(5) {
    order: 4;
  }
  .location .row .location_adresses li:nth-child(6) {
    order: 6;
  }
  .location .row .location_adresses li:nth-child(7) {
    order: 1;
  }
}
@media (max-width: 1200px) {
  .location .row .location_adresses {
    flex-wrap: wrap;
    flex: 0 0 auto;
    width: calc(100% - 270px);
    gap: 10px 0;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .location .row .location_adresses {
    width: 100%;
  }
}
.location .row .show_map a {
  font-size: 16px;
  line-height: 19px;
  color: #93A2AB;
  text-decoration: none;
  display: flex;
  gap: 5px;
  transition: 0.3s all ease;
}
.location .row .show_map a:hover {
  color: #00A2FC;
}
@media (max-width: 1200px) {
  .location .row .show_map {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 1200px) {
  .location .row {
    flex-wrap: nowrap;
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .location .row {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .location {
    padding: 25px 0;
  }
}

.free_measurement {
  margin-bottom: 0;
  padding: 80px 0;
}
.free_measurement .row {
  justify-content: center;
  gap: 60px;
}
.free_measurement .row .measurement_image {
  flex: 0 0 auto;
  width: 36%;
  position: relative;
}
.free_measurement .row .measurement_image img {
  width: 100%;
}
@media (max-width: 1200px) {
  .free_measurement .row .measurement_image img {
    width: 460px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .free_measurement .row .measurement_image img {
    width: 100%;
    position: static;
  }
}
@media (max-width: 1200px) {
  .free_measurement .row .measurement_image {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .free_measurement .row .measurement_image {
    width: 100%;
  }
}
.free_measurement .row .measurement_texts {
  flex: 0 0 auto;
  width: 47%;
}
.free_measurement .row .measurement_texts .title {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  color: #202020;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .free_measurement .row .measurement_texts .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    margin-bottom: 25px;
  }
}
.free_measurement .row .measurement_texts .description {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: #475569;
}
.free_measurement .row .measurement_texts .description p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .free_measurement .row .measurement_texts {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .free_measurement .row {
    gap: 0;
    justify-content: space-between;
  }
}
@media (max-width: 1200px) {
  .free_measurement {
    background-color: #F9F9FA;
  }
}
@media (max-width: 767px) {
  .free_measurement {
    padding: 50px 0;
  }
}

.products {
  padding-top: 100px;
  background-color: #fff;
  margin-bottom: 0;
}
.products .row {
  justify-content: space-between;
  gap: 20px 0;
}
.products .row .product_item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: calc(25% - 15px);
  background: #F9F9FA;
  padding: 40px 40px 0 40px;
  transition: 0.3s all ease;
}
.products .row .product_item .product_name {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
  margin-bottom: 5px;
}
.products .row .product_item .product_price {
  font-size: 24px;
  line-height: 120%;
  color: #93A2AB;
  margin-bottom: 25px;
}
.products .row .product_item img {
  max-width: 225px;
  height: 235px;
  object-fit: contain;
  object-position: bottom;
  align-self: flex-end;
}
.products .row .product_item.mid {
  width: calc(33% - 12px);
}
@media (max-width: 1200px) {
  .products .row .product_item.mid {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .products .row .product_item.mid {
    width: 100%;
  }
}
.products .row .product_item.big {
  width: calc(42% - 12px);
}
@media (max-width: 1200px) {
  .products .row .product_item.big {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .products .row .product_item.big {
    width: 100%;
  }
}
.products .row .product_item:hover {
  background-color: #00A2FC;
}
.products .row .product_item:hover .product_name,
.products .row .product_item:hover .product_price {
  color: #fff;
}
@media (max-width: 1200px) {
  .products .row .product_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .products .row .product_item {
    width: 100%;
  }
}
.products.pt_mobile {
  padding-top: 0;
}
@media (max-width: 767px) {
  .products {
    padding-top: 60px;
  }
  .products.pt_mobile {
    padding-top: 60px;
  }
}

.help_choose {
  padding: 100px 0;
  margin-bottom: 0;
  background-color: #fff;
}
.help_choose .border_block {
  padding: 50px;
  border: 1px solid #00A2FC;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
  border-radius: 4px;
}
.help_choose .border_block .row {
  justify-content: space-between;
  padding: 50px;
  background-color: #F9F9FA;
  border-radius: 4px;
  position: relative;
}
@media (max-width: 767px) {
  .help_choose .border_block .row .help_form {
    width: 100%;
  }
}
.help_choose .border_block .row .form_title {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  color: #00A2FC;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .help_choose .border_block .row .form_title {
    font-size: 31px;
  }
}
.help_choose .border_block .row .form_description {
  font-size: 16px;
  line-height: 19px;
  color: #202020;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .help_choose .border_block .row .form_description {
    max-width: 270px;
  }
}
.help_choose .border_block .row .input_item {
  margin-bottom: 20px;
}
.help_choose .border_block .row .input_item input {
  height: 44px;
  max-width: 340px;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  padding: 0 20px;
  background: #FFFFFF;
  border-radius: 4px;
  border: none;
}
.help_choose .border_block .row .input_item input::placeholder {
  color: #93A2AB;
}
.help_choose .border_block .row .input_item button {
  border: none;
  padding: 21px 95px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .help_choose .border_block .row .input_item button {
    padding: 17px 0;
  }
}
.help_choose .border_block .row .input_item:last-child {
  margin-bottom: 0;
}
.help_choose .border_block .row .input_item.confidential {
  font-size: 14px;
  line-height: 16px;
  max-width: 340px;
}
.help_choose .border_block .row .input_item.confidential a {
  color: #00A2FC;
  text-decoration: none;
}
@media (max-width: 767px) {
  .help_choose .border_block .row .input_item.confidential {
    font-size: 11px;
    line-height: 140%;
  }
}
.help_choose .border_block .row .manager_info p {
  font-size: 16px;
  line-height: 19px;
  color: #475569;
  margin-bottom: 5px;
}
.help_choose .border_block .row .manager_info a {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #00A2FC;
  text-decoration: none;
}
.help_choose .border_block .row .manager_info .call_us {
  margin-bottom: 10px;
}
.help_choose .border_block .row .manager_info .manager_name {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #475569;
}
@media (max-width: 767px) {
  .help_choose .border_block .row .manager_info .manager_name {
    font-size: 18px;
    line-height: 21px;
  }
}
@media (max-width: 1200px) {
  .help_choose .border_block .row .manager_info {
    margin-top: 40px;
  }
}
.help_choose .border_block .row .manager_image {
  position: absolute;
  right: 210px;
  bottom: -50px;
}
@media (max-width: 1200px) {
  .help_choose .border_block .row .manager_image {
    right: -225px;
  }
}
@media (max-width: 767px) {
  .help_choose .border_block .row .manager_image {
    width: 270px;
    right: -75px;
    bottom: -40px;
  }
}
@media (max-width: 767px) {
  .help_choose .border_block .row {
    padding: 20px 25px 195px 25px;
  }
}
@media (max-width: 1200px) {
  .help_choose .border_block {
    overflow: hidden;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .help_choose .border_block {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .help_choose {
    padding-top: 60px;
  }
}

.steps {
  padding: 85px 0;
  background: #F9F9FA;
  margin-bottom: 0;
}
.steps .step_numbers {
  justify-content: space-between;
  position: relative;
  margin-bottom: 70px;
}
.steps .step_numbers .number_item {
  position: relative;
}
.steps .step_numbers .number_item span {
  font-family: monospace;
  font-size: 40px;
  font-weight: 700;
  position: absolute;
  left: 0;
  bottom: 5px;
}
@media (max-width: 1200px) {
  .steps .step_numbers .number_item span {
    bottom: auto;
    top: 10px;
    left: auto;
    right: 0;
  }
}
@media (max-width: 767px) {
  .steps .step_numbers .number_item span {
    top: -5px;
  }
}
.steps .step_numbers .number_item:nth-child(1) {
  color: #C8CAC7;
}
.steps .step_numbers .number_item:nth-child(1)::before {
  border-color: #C8CAC7;
}
.steps .step_numbers .number_item:nth-child(2) {
  color: #B3C9A6;
}
.steps .step_numbers .number_item:nth-child(2)::before {
  border-color: #B3C9A6;
}
.steps .step_numbers .number_item:nth-child(3) {
  color: #9FC886;
}
.steps .step_numbers .number_item:nth-child(3)::before {
  border-color: #9FC886;
}
.steps .step_numbers .number_item:nth-child(4) {
  color: #8BC766;
}
.steps .step_numbers .number_item:nth-child(4)::before {
  border-color: #8BC766;
}
.steps .step_numbers .number_item:nth-child(5) {
  color: #78C747;
}
.steps .step_numbers .number_item:nth-child(5)::before {
  border-color: #78C747;
}
.steps .step_numbers .number_item:nth-child(6) {
  color: #66C62A;
}
.steps .step_numbers .number_item:nth-child(6)::before {
  border-color: #66C62A;
  right: 0;
  left: auto;
}
@media (max-width: 1200px) {
  .steps .step_numbers .number_item:nth-child(6)::before {
    bottom: auto;
    top: 0;
    left: auto;
    right: -65px;
  }
}
@media (max-width: 767px) {
  .steps .step_numbers .number_item:nth-child(6)::before {
    right: -40px;
  }
}
.steps .step_numbers .number_item::before {
  content: "";
  display: block;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  border: 3px solid #ccc;
  position: absolute;
  bottom: -49px;
  background: #F9F9FA;
  left: 0;
}
@media (max-width: 1200px) {
  .steps .step_numbers .number_item::before {
    bottom: auto;
    top: 0;
    left: auto;
    right: -65px;
  }
}
@media (max-width: 767px) {
  .steps .step_numbers .number_item::before {
    bottom: auto;
    top: 0;
    left: auto;
    height: 25px;
    width: 25px;
    right: -40px;
  }
}
@media (max-width: 1200px) {
  .steps .step_numbers .number_item {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .steps .step_numbers .number_item {
    margin-bottom: 45px;
  }
}
.steps .step_numbers::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-image: linear-gradient(269.99deg, #64C627 0.01%, #CACACA 99.99%);
  position: absolute;
  bottom: -35px;
}
@media (max-width: 1200px) {
  .steps .step_numbers::before {
    width: 3px;
    height: 85%;
    right: -50px;
    bottom: auto;
    top: 0;
  }
}
@media (max-width: 767px) {
  .steps .step_numbers::before {
    right: -26px;
  }
}
@media (max-width: 1200px) {
  .steps .step_numbers {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.steps .step_descriptions {
  justify-content: space-between;
}
.steps .step_descriptions .description_item {
  max-width: 195px;
  font-size: 16px;
  line-height: 19px;
  color: #475569;
}
.steps .step_descriptions .description_item a {
  color: #00A2FC;
}
@media (max-width: 1200px) {
  .steps .step_descriptions .description_item {
    max-width: 210px;
  }
}
@media (max-width: 767px) {
  .steps .step_descriptions .description_item {
    transform: translateX(20px);
  }
  .steps .step_descriptions .description_item:first-child {
    margin-bottom: 15px;
  }
  .steps .step_descriptions .description_item:first-child br {
    display: none;
  }
  .steps .step_descriptions .description_item:first-child a {
    display: block;
    margin-top: 10px;
  }
}
@media (max-width: 340px) {
  .steps .step_descriptions .description_item {
    max-width: 155px;
    transform: translateX(0);
    font-size: 14px;
  }
  .steps .step_descriptions .description_item br {
    display: none;
  }
}
@media (max-width: 1200px) {
  .steps .step_descriptions {
    justify-content: flex-end;
  }
}
@media (max-width: 1200px) {
  .steps .section_title {
    text-align: center;
  }
  .steps .steps_block {
    display: flex;
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .steps .steps_block .number_image {
    transform: translateY(-25px);
  }
}

.team {
  background-color: #fff;
  padding-top: 100px;
  margin-bottom: 0;
  position: relative;
}
.team .team_block {
  border: 1px solid #00A2FC;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.team .team_block .director {
  padding: 57px 115px 0 152px;
}
@media (max-width: 1200px) {
  .team .team_block .director .row {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .team .team_block .director .row {
    position: relative;
  }
}
.team .team_block .director .director_image {
  flex: 0 0 auto;
  width: 50%;
  text-align: left;
}
@media (max-width: 1200px) {
  .team .team_block .director .director_image {
    transform: translateY(53px);
  }
}
@media (max-width: 767px) {
  .team .team_block .director .director_image {
    width: 100%;
    transform: translateY(0);
    text-align: center;
    margin-bottom: 35px;
  }
  .team .team_block .director .director_image img {
    max-width: 100%;
  }
}
.team .team_block .director .director_texts {
  flex: 0 0 auto;
  width: 50%;
  position: relative;
}
.team .team_block .director .director_texts p {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
}
.team .team_block .director .director_texts .write_to_director {
  margin-top: 60px;
}
.team .team_block .director .director_texts::before {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background-color: #00A2FC;
  position: absolute;
  left: -90px;
}
@media (max-width: 1200px) {
  .team .team_block .director .director_texts::before {
    left: -50px;
  }
}
@media (max-width: 767px) {
  .team .team_block .director .director_texts::before {
    width: 100%;
    height: 5px;
    left: 0;
    top: -40px;
  }
}
.team .team_block .director .director_texts::after {
  content: "”";
  display: block;
  font-size: 140px;
  position: absolute;
  left: -240px;
  top: -25px;
  font-weight: bold;
  font-family: Arial;
  color: #00A2FC;
  line-height: 110%;
}
@media (max-width: 1200px) {
  .team .team_block .director .director_texts::after {
    left: -160px;
  }
}
@media (max-width: 767px) {
  .team .team_block .director .director_texts::after {
    left: auto;
    right: -15px;
    top: -15px;
  }
}
@media (max-width: 1200px) {
  .team .team_block .director .director_texts {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .team .team_block .director .director_texts {
    width: 100%;
    position: static;
  }
}
@media (max-width: 1200px) {
  .team .team_block .director {
    padding: 57px 55px 50px 0;
  }
}
@media (max-width: 767px) {
  .team .team_block .director {
    padding: 15px 25px 40px 15px;
    border: 1px solid #00A2FC;
    margin-bottom: 30px;
  }
}
.team .team_block .otdel_montaj {
  padding: 65px 85px;
}
.team .team_block .otdel_montaj .row {
  justify-content: space-between;
}
.team .team_block .otdel_montaj .otdel_item {
  flex: 0 0 auto;
  width: calc(25% - 15px);
}
.team .team_block .otdel_montaj .otdel_item img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .team .team_block .otdel_montaj .otdel_item img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .team .team_block .otdel_montaj .otdel_item img {
    height: 160px;
    width: 160px;
  }
}
@media (max-width: 1200px) {
  .team .team_block .otdel_montaj .otdel_item {
    width: calc(33% - 13px);
  }
  .team .team_block .otdel_montaj .otdel_item:first-child {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .team .team_block .otdel_montaj .otdel_item {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .team .team_block .otdel_montaj .otdel_item:first-child {
    text-align: left;
  }
}
@media (max-width: 1200px) {
  .team .team_block .otdel_montaj {
    padding: 60px 40px;
  }
}
@media (max-width: 767px) {
  .team .team_block .otdel_montaj {
    padding: 25px 20px;
    border: 1px solid #00A2FC;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
    border-radius: 4px;
    margin-bottom: 50px;
  }
  .team .team_block .otdel_montaj .block_title {
    text-align: left;
    margin-bottom: 30px;
  }
}
.team .team_block .team_members {
  padding: 65px 210px;
}
.team .team_block .team_members .row {
  justify-content: space-between;
}
.team .team_block .team_members .row .member_item {
  flex: 0 0 auto;
  width: calc(25% - 15px);
}
.team .team_block .team_members .row .member_item .member_image {
  margin-bottom: 5px;
}
.team .team_block .team_members .row .member_item .member_image img {
  width: 100%;
}
.team .team_block .team_members .row .member_item .member_name {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #00A2FC;
  margin-bottom: 5px;
}
@media (max-width: 1200px) {
  .team .team_block .team_members .row .member_item .member_name {
    font-size: 17px;
  }
}
.team .team_block .team_members .row .member_item .member_status {
  font-size: 16px;
  line-height: 19px;
  color: #93A2AB;
}
@media (max-width: 767px) {
  .team .team_block .team_members .row .member_item {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .team .team_block .team_members .row {
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .team .team_block .team_members {
    padding: 60px 25px;
  }
  .team .team_block .team_members .block_title {
    text-align: left;
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  .team .team_block .team_members {
    padding: 25px 20px;
    border: 1px solid #00A2FC;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
    border-radius: 4px;
    margin-bottom: 50px;
  }
  .team .team_block .team_members .block_title {
    text-align: left;
    margin-bottom: 30px;
  }
}
.team .team_block .team_photos {
  padding: 75px;
  background-color: #F9F9FA;
  border-radius: 4px;
}
.team .team_block .team_photos .section_title {
  margin-bottom: 40px;
}
.team .team_block .team_photos .gallery_block {
  display: flex;
  justify-content: space-between;
}
.team .team_block .team_photos .gallery_block .gallery_item {
  flex: 0 0 auto;
  width: calc(25% - 15px);
}
.team .team_block .team_photos .gallery_block .gallery_item img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1200px) {
  .team .team_block .team_photos .gallery_block .gallery_item {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .team .team_block .team_photos .gallery_block .gallery_item {
    width: 220px;
  }
  .team .team_block .team_photos .gallery_block .gallery_item img {
    height: 180px;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .team .team_block .team_photos .gallery_block {
    gap: 20px;
    overflow: auto;
    margin: 0 -60px;
  }
}
@media (max-width: 767px) {
  .team .team_block .team_photos .gallery_block {
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .team .team_block .team_photos {
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .team .team_block .team_photos {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .team .team_block {
    overflow: hidden;
    border: none;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .team {
    padding-top: 265px;
  }
  .team .container {
    padding: 0;
  }
  .team .container .team_tab {
    padding: 0 15px;
  }
}

.work_portfolio {
  background-color: #fff;
  padding: 100px 0;
  margin-bottom: 0;
}
.work_portfolio .portfolio_slider {
  margin-bottom: 40px;
  position: relative;
}
.work_portfolio .portfolio_slider .portfolio_item img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
}
.work_portfolio .portfolio_slider .swiper_navigation div {
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F9F9FA;
  border-radius: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
.work_portfolio .portfolio_slider .swiper_navigation .swiper_next {
  right: -60px;
  transform: rotate(180deg);
}
.work_portfolio .portfolio_slider .swiper_navigation .swiper_prev {
  left: -60px;
}
.work_portfolio .all_works {
  text-align: center;
}
.work_portfolio .all_works .button {
  padding: 22px 105px;
}
@media (max-width: 1200px) {
  .work_portfolio .all_works .button {
    display: block;
    width: 100%;
    padding: 17px 0;
  }
}
@media (max-width: 767px) {
  .work_portfolio {
    padding: 60px 0;
  }
}

.advantages {
  margin-bottom: 0;
  padding: 60px 0 40px 0;
}
.advantages .tab_navigation ul {
  background-color: transparent;
  margin-top: -83px;
}
.advantages .tab_navigation ul a {
  background: #F3F3F3;
  opacity: 0.6;
  border-radius: 4px;
}
.advantages .tab_navigation ul a.active {
  background: #475569;
  border-radius: 4px;
  opacity: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .advantages .tab_navigation ul {
    margin: 0 0 40px 0;
    position: static;
    padding: 0;
  }
  .advantages .tab_navigation ul li {
    width: 100%;
  }
  .advantages .tab_navigation ul li a {
    display: block;
  }
}
.advantages .tab_body {
  background-color: transparent;
}
.advantages .block_title {
  text-align: left;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .advantages .block_title {
    max-width: 335px;
    margin: 0 auto 30px auto;
  }
}
.advantages .warranties {
  justify-content: space-between;
}
.advantages .warranties .warranty_block {
  flex: 0 0 auto;
  justify-content: space-between;
}
.advantages .warranties .warranty_block:first-child {
  width: 34%;
}
@media (max-width: 1200px) {
  .advantages .warranties .warranty_block:first-child {
    width: 100%;
  }
}
.advantages .warranties .warranty_block:last-child {
  width: 57%;
}
@media (max-width: 1200px) {
  .advantages .warranties .warranty_block:last-child {
    width: 100%;
  }
}
.advantages .warranties .warranty_block .warranty_list ul {
  list-style: none;
  max-width: 335px;
}
.advantages .warranties .warranty_block .warranty_list ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  line-height: 19px;
  color: #202020;
  margin-bottom: 20px;
}
.advantages .warranties .warranty_block .warranty_list ul li::before {
  content: "";
  display: block;
  height: 5px;
  flex: 0 0 auto;
  width: 30px;
  background-color: #00A2FC;
}
.advantages .warranties .warranty_block .warranty_list ul li:last-child {
  margin-top: 30px;
  color: #475569;
  position: relative;
}
.advantages .warranties .warranty_block .warranty_list ul li:last-child::before {
  width: auto;
  height: auto;
  content: "”";
  font-weight: 700;
  font-size: 60px;
  line-height: 110%;
  color: #00A2FC;
  background-color: transparent;
}
.advantages .warranties .warranty_block .warranty_list ul li:last-child::after {
  content: url(../images/stamp.png);
  position: absolute;
  right: -50px;
  bottom: -85px;
}
@media (max-width: 767px) {
  .advantages .warranties .warranty_block .warranty_list ul li {
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .advantages .warranties .warranty_block .warranty_list ul {
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .advantages .warranties .warranty_block .warranty_list {
    margin-bottom: 115px;
  }
}
.advantages .warranties .warranty_block .warranty_item {
  flex: 0 0 auto;
  width: calc(50% - 30px);
}
@media (max-width: 767px) {
  .advantages .warranties .warranty_block .warranty_item {
    width: 100%;
  }
}
.advantages #numbers {
  padding-top: 20px;
}
.advantages #numbers .row {
  justify-content: space-between;
  gap: 20px 0;
}
.advantages #numbers .row .number_item {
  flex: 0 0 auto;
  width: calc(33% - 13px);
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid #D6DFE4;
}
.advantages #numbers .row .number_item .number_year {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #4154D9;
  margin-bottom: 20px;
}
.advantages #numbers .row .number_item .number_description {
  font-size: 16px;
  line-height: 19px;
  color: #475569;
}
@media (max-width: 1200px) {
  .advantages #numbers .row .number_item {
    width: calc(50% - 10px);
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .advantages #numbers .row .number_item {
    width: 100%;
    padding: 25px 20px;
  }
}
.advantages #certificates {
  padding-top: 20px;
}
.advantages #certificates .row {
  justify-content: center;
  gap: 80px;
}
.advantages #certificates .row .certificate_item {
  flex: 0 0 auto;
  width: calc(30% - 80px);
}
.advantages #certificates .row .certificate_item img {
  max-width: 100%;
  width: 100%;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 1200px) {
  .advantages #certificates .row .certificate_item {
    width: calc(30% - 20px);
  }
}
@media (max-width: 767px) {
  .advantages #certificates .row .certificate_item {
    width: 100%;
    text-align: center;
  }
  .advantages #certificates .row .certificate_item img {
    max-width: 215px;
  }
}
@media (max-width: 1200px) {
  .advantages #certificates .row {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .advantages {
    background-color: #F9F9FA;
    border-bottom: 1px solid #D6DFE4;
    padding: 40px 0;
    margin-bottom: 40px;
  }
}

.news_faq {
  padding: 60px 0;
  margin-bottom: 0;
  background-color: #fff;
}
.news_faq .section_title {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .news_faq .section_title {
    margin-bottom: 30px;
  }
}
.news_faq .row {
  justify-content: space-between;
}
.news_faq .row .news {
  flex: 0 0 auto;
  width: 32%;
}
.news_faq .row .news .news_item {
  margin-bottom: 40px;
}
.news_faq .row .news .news_item .news_title {
  font-size: 24px;
  margin-bottom: 10px;
}
.news_faq .row .news .news_item .news_title a {
  font-weight: 700;
  line-height: 130%;
  color: #00A2FC;
  text-decoration: none;
}
.news_faq .row .news .news_item .news_date {
  font-size: 14px;
  line-height: 16px;
  color: #93A2AB;
  margin-bottom: 20px;
}
.news_faq .row .news .news_item .news_anons {
  font-size: 16px;
  line-height: 19px;
  color: #202020;
  margin-bottom: 20px;
}
.news_faq .row .news .news_item .news_action a {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #4154D9;
  text-decoration: none;
}
.news_faq .row .news .news_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .news_faq .row .news {
    width: 100%;
    margin-bottom: 60px;
  }
}
.news_faq .row .faq {
  flex: 0 0 auto;
  width: 57%;
}
.news_faq .row .faq .faq_block {
  margin-bottom: 30px;
}
.news_faq .row .faq .faq_block .faq_item .faq_question {
  display: flex;
  font-size: 24px;
  line-height: 120%;
  color: #202020;
  gap: 15px;
  position: relative;
  border-bottom: 1px solid #D6DFE4;
  cursor: pointer;
  padding: 25px 0;
  transition: 0.3s all ease;
}
.news_faq .row .faq .faq_block .faq_item .faq_question .faq_number {
  font-weight: 700;
  line-height: 130%;
  color: #00A2FC;
}
.news_faq .row .faq .faq_block .faq_item .faq_question::after {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  background-image: url("../images/slider_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s all ease;
}
@media (max-width: 767px) {
  .news_faq .row .faq .faq_block .faq_item .faq_question {
    font-size: 18px;
    padding-right: 40px;
  }
}
.news_faq .row .faq .faq_block .faq_item .faq_body {
  font-size: 16px;
  line-height: 19px;
  color: #202020;
  padding: 30px 0;
  display: none;
}
.news_faq .row .faq .faq_block .faq_item.active .faq_question {
  color: #00A2FC;
}
.news_faq .row .faq .faq_block .faq_item.active .faq_question::after {
  transform: rotate(90deg);
}
@media (max-width: 1200px) {
  .news_faq .row .faq {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .news_faq {
    background: #F9F9FA;
  }
}
@media (max-width: 767px) {
  .news_faq {
    padding: 40px 0;
  }
}

.map {
  margin-bottom: 0;
  height: 620px;
}
.map .modal {
  position: relative;
}
.map .modal .working_table {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: absolute;
  right: 0;
  bottom: 109px;
  gap: 30px;
  padding: 30px;
  border: 1px solid #00A2FC;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 12px;
  line-height: 17px;
  color: #93A2AB;
  background-color: #fff;
  align-items: center;
  max-width: 100%;
}
.map .modal .working_table .top_item {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.map .modal .working_table .top_item .top_left {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.map .modal .working_table .top_item .top_left ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map .modal .working_table .top_item .top_left ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map .modal .working_table .top_item .top_right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map .modal .working_table .top_item .top_right .top_right_address {
  line-height: 140%;
}
.map .modal .working_table .top_item .top_right .top_right_title {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  text-transform: capitalize;
  color: #475569;
}
@media (max-width: 767px) {
  .map .modal .working_table .top_item {
    gap: 30px;
  }
}
.map .modal .working_table .bottom_item {
  text-align: center;
}
.map .modal .working_table .bottom_item .work_time_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #00A2FC;
}
.map .modal .working_table .bottom_item .work_time {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #475569;
}
.map .modal .working_table .bottom_item .work_day {
  line-height: 140%;
}
@media (max-width: 1200px) {
  .map .modal .working_table {
    flex-direction: row;
    padding: 30px 77.4px;
    bottom: -60px;
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .map .modal .working_table {
    justify-content: center;
    padding: 30px;
    justify-content: left;
    bottom: -250px;
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .map {
    margin: 100px 0;
  }
  .map iframe {
    height: 570px;
  }
}
@media (max-width: 767px) {
  .map {
    height: auto;
    margin: 60px 0 310px 0;
    padding-top: 0;
  }
  .map iframe {
    height: 350px;
  }
}

footer {
  background: #475569;
  padding: 60px 80px;
}
footer .footer_logo {
  margin-bottom: 40px;
}
footer .footer_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer_row .footer_item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 auto;
  width: calc(25% - 13.5px);
}
footer .footer_row .footer_item .footer_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #FFFFFF;
}
@media (max-width: 1200px) {
  footer .footer_row .footer_item .footer_title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  footer .footer_row .footer_item .footer_title::after {
    content: "";
    height: 20px;
    width: 20px;
    display: block;
    background-image: url(../images/footer_accordion.svg);
    transform: rotate(0);
    transition: 0.3s all ease;
  }
  footer .footer_row .footer_item .footer_title.show::after {
    transform: rotate(180deg);
  }
}
footer .footer_row .footer_item ul {
  list-style: none;
}
footer .footer_row .footer_item ul a {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
  color: #D6DFE4;
}
@media (max-width: 1200px) {
  footer .footer_row .footer_item ul {
    display: none;
  }
  footer .footer_row .footer_item ul li {
    margin-bottom: 10px;
  }
}
footer .footer_row .footer_item .phone {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
footer .footer_row .footer_item .phone .number {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 19px;
  color: #D6DFE4;
}
footer .footer_row .footer_item .phone .number a {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #fff;
  text-decoration: none;
}
footer .footer_row .footer_item .requisites_row, footer .footer_row .footer_item .requisites_item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
footer .footer_row .footer_item .requisites_row .requisites_item, footer .footer_row .footer_item .requisites_item .requisites_item {
  gap: 5px;
}
footer .footer_row .footer_item .requisites_row .requisites_item .title, footer .footer_row .footer_item .requisites_item .requisites_item .title {
  font-weight: 700;
  line-height: 140%;
  color: #fff;
}
footer .footer_row .footer_item .requisites_row .requisites_item .description, footer .footer_row .footer_item .requisites_item .requisites_item .description {
  color: #D6DFE4;
  line-height: 19px;
}
footer .footer_row .footer_item .mail a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #D6DFE4;
}
footer .footer_row .footer_item .vk_link a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  gap: 5px;
}
@media (max-width: 1200px) {
  footer .footer_row .footer_item {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .footer_row .footer_item:last-child {
    margin-top: 50px;
  }
}
@media (max-width: 1200px) {
  footer .footer_row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 60px 0;
  }
}

.banner {
  padding-top: 100px;
  margin-bottom: 0;
}
.banner .banner_block {
  padding: 85px 95px;
  background-color: #F9F9FA;
  position: relative;
}
.banner .banner_block .banner_name {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  color: #202020;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .banner .banner_block .banner_name {
    font-size: 32px;
  }
}
.banner .banner_block .banner_description {
  font-size: 16px;
  line-height: 19px;
  color: #93A2AB;
  margin-bottom: 30px;
}
.banner .banner_block .banner_action a {
  display: inline-flex;
  background: #FFE456;
  border-radius: 4px;
  padding: 14px 55px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 97%;
  color: #202020;
  text-decoration: none;
}
.banner .banner_block .banner_image {
  height: 100%;
  width: 60%;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .banner .banner_block .banner_image {
    top: auto;
    bottom: 0;
    height: 275px;
    width: 100%;
    right: auto;
    left: 0;
  }
}
@media (max-width: 767px) {
  .banner .banner_block {
    padding: 30px 35px 310px 35px;
  }
}
@media (max-width: 767px) {
  .banner {
    padding-top: 60px;
  }
}

.products_filter .row {
  justify-content: space-between;
}
.products_filter .row .filters_widgets {
  flex: 0 0 auto;
  width: 15.5%;
}
.products_filter .row .filters_widgets .widget_item {
  margin-bottom: 30px;
}
.products_filter .row .filters_widgets .widget_item .product_categories {
  list-style: none;
}
.products_filter .row .filters_widgets .widget_item .product_categories .parent_category {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #475569;
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px solid #D6DFE4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products_filter .row .filters_widgets .widget_item .product_categories .parent_category::after {
  content: "";
  display: block;
  height: 8px;
  width: 14px;
  background-image: url("../images/filter_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s all ease;
}
.products_filter .row .filters_widgets .widget_item .product_categories .parent_category.active::after {
  transform: rotate(180deg);
}
.products_filter .row .filters_widgets .widget_item .product_categories .child_categories {
  list-style: none;
  padding: 8px 0;
  display: none;
}
.products_filter .row .filters_widgets .widget_item .product_categories .child_categories a {
  font-size: 16px;
  line-height: 19px;
  color: #93A2AB;
  padding: 8px 0;
  display: block;
  text-decoration: none;
}
.products_filter .row .filters_widgets .widget_item.price_filter .price_status {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.products_filter .row .filters_widgets .widget_item.price_filter .price_status > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.products_filter .row .filters_widgets .widget_item.price_filter .price_status > div .text {
  font-size: 16px;
  line-height: 19px;
  color: #93A2AB;
}
.products_filter .row .filters_widgets .widget_item.price_filter .price_status > div .value {
  font-size: 16px;
  line-height: 19px;
  color: #475569;
  padding: 5px 10px;
  display: inline-block;
  background: #F3F3F3;
  border-radius: 4px;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_title {
  padding: 10px 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_title::after {
  content: "";
  display: block;
  height: 8px;
  width: 14px;
  background-image: url("../images/filter_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s all ease;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_title.active::after {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .products_filter .row .filters_widgets .widget_item.boxed .widget_title {
    display: flex;
    justify-content: space-between;
    padding: 20px;
  }
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_body {
  padding: 10px;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 4px 4px;
  display: flex;
  flex-direction: column;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_body .color_item {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #D6DFE4;
  cursor: pointer;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_body .color_item input {
  display: none;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_body .color_item input:checked ~ .checkmark {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_body .color_item input:checked ~ .color_name {
  font-weight: bold;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_body .color_item .checkmark {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: block;
  border-radius: 50%;
  border: 8px solid #F9F9FA;
  transition: 0.3s all ease;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_body .color_item .color_name {
  font-size: 16px;
  line-height: 19px;
  color: #475569;
  transition: 0.3s all ease;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_body .color_item:last-child {
  border-bottom: none;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_body .link_list {
  list-style: none;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_body .link_list li:last-child a {
  border-bottom: none;
}
.products_filter .row .filters_widgets .widget_item.boxed .widget_body .link_list a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  line-height: 19px;
  color: #475569;
  text-decoration: none;
  border-bottom: 1px solid #D6DFE4;
}
@media (max-width: 1200px) {
  .products_filter .row .filters_widgets {
    width: 27%;
  }
}
@media (max-width: 767px) {
  .products_filter .row .filters_widgets {
    width: 100%;
  }
}
.products_filter .row .filtered_products {
  flex: 0 0 auto;
  width: 80%;
}
.products_filter .row .filtered_products .image_banner {
  margin-bottom: 40px;
}
.products_filter .row .filtered_products .image_banner img {
  width: 100%;
}
.products_filter .row .filtered_products .sort_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.products_filter .row .filtered_products .sort_block .sort_left, .products_filter .row .filtered_products .sort_block .sort_right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.products_filter .row .filtered_products .sort_block .sort_left ul, .products_filter .row .filtered_products .sort_block .sort_right ul {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.products_filter .row .filtered_products .sort_block .sort_left ul a, .products_filter .row .filtered_products .sort_block .sort_right ul a {
  font-size: 14px;
  line-height: 16px;
  color: #475569;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 7px 13px;
  background: #F3F3F3;
  opacity: 0.3;
  border-radius: 4px;
}
.products_filter .row .filtered_products .sort_block .sort_left ul a.active, .products_filter .row .filtered_products .sort_block .sort_right ul a.active {
  opacity: 1;
}
@media (max-width: 767px) {
  .products_filter .row .filtered_products .sort_block .sort_left ul li, .products_filter .row .filtered_products .sort_block .sort_right ul li {
    flex: 0 0 auto;
    width: calc(50% - 5px);
  }
  .products_filter .row .filtered_products .sort_block .sort_left ul li a, .products_filter .row .filtered_products .sort_block .sort_right ul li a {
    font-size: 12px;
    line-height: 140%;
  }
}
@media (max-width: 1200px) {
  .products_filter .row .filtered_products .sort_block .sort_left.sort_right, .products_filter .row .filtered_products .sort_block .sort_right.sort_right {
    display: none;
  }
  .products_filter .row .filtered_products .sort_block .sort_left .sort_name, .products_filter .row .filtered_products .sort_block .sort_right .sort_name {
    font-size: 14px;
    line-height: 16px;
    color: #475569;
  }
}
@media (max-width: 767px) {
  .products_filter .row .filtered_products .sort_block .sort_left .sort_name, .products_filter .row .filtered_products .sort_block .sort_right .sort_name {
    font-size: 12px;
    line-height: 140%;
    white-space: nowrap;
  }
}
.products_filter .row .filtered_products .products_block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  justify-content: space-between;
}
.products_filter .row .filtered_products .products_block .product_item {
  width: calc(25% - 15px);
  padding: 22px 17px;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  text-align: center;
  position: relative;
}
.products_filter .row .filtered_products .products_block .product_item .product_type {
  position: absolute;
  left: 0;
  top: 50px;
  padding: 11px;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #475569;
  background: #FFE456;
}
@media (max-width: 767px) {
  .products_filter .row .filtered_products .products_block .product_item .product_type {
    padding: 11px 37px;
  }
}
.products_filter .row .filtered_products .products_block .product_item .product_image {
  margin-bottom: 20px;
}
.products_filter .row .filtered_products .products_block .product_item .product_image img {
  max-width: 135px;
}
.products_filter .row .filtered_products .products_block .product_item .product_info .product_name {
  margin-bottom: 15px;
}
.products_filter .row .filtered_products .products_block .product_item .product_info .product_name a {
  font-size: 16px;
  line-height: 19px;
  color: #202020;
  text-decoration: none;
}
.products_filter .row .filtered_products .products_block .product_item .product_info .product_price {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
  margin-bottom: 15px;
}
.products_filter .row .filtered_products .products_block .product_item .product_action {
  display: flex;
  align-items: center;
  gap: 10px;
}
.products_filter .row .filtered_products .products_block .product_item .product_action a {
  width: 100%;
  height: 100%;
  padding: 12px 0;
  text-align: center;
  display: block;
  background: #F9F9FA;
  border-radius: 4px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  color: #475569;
}
.products_filter .row .filtered_products .products_block .product_item .product_action a:first-child {
  padding: 13px 29px;
}
@media (max-width: 1200px) {
  .products_filter .row .filtered_products .products_block .product_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .products_filter .row .filtered_products .products_block .product_item {
    width: 100%;
  }
}
.products_filter .row .filtered_products .products_block.three_in_row .product_item {
  width: calc(33% - 13px);
}
.products_filter .row .filtered_products .products_block.three_in_row .product_item .product_image img {
  max-width: 280px;
}
@media (max-width: 1200px) {
  .products_filter .row .filtered_products .products_block.three_in_row .product_item {
    width: calc(50% - 10px);
  }
  .products_filter .row .filtered_products .products_block.three_in_row .product_item .product_image img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .products_filter .row .filtered_products .products_block.three_in_row .product_item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .products_filter .row .filtered_products {
    width: 68%;
  }
}
@media (max-width: 767px) {
  .products_filter .row .filtered_products {
    width: 100%;
  }
}
.products_filter.pt_mobile {
  padding-top: 0;
}
@media (max-width: 767px) {
  .products_filter {
    padding-top: 60px;
    margin-bottom: 0;
  }
  .products_filter.pt_mobile {
    padding-top: 60px;
  }
}

.product_view .row {
  justify-content: space-between;
  align-items: start;
}
.product_view .product_image {
  flex: 0 0 auto;
  width: 25%;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 30px 55px;
  text-align: center;
}
.product_view .product_image .image_block {
  margin-bottom: 30px;
}
.product_view .product_image .image_block img {
  max-width: 170px;
  width: 100%;
}
.product_view .product_image .action_block a {
  display: flex;
  background: #F9F9FA;
  border-radius: 4px;
  justify-content: center;
  padding: 13px 0;
  gap: 6px;
  font-size: 16px;
  line-height: 19px;
  color: #475569;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .product_view .product_image {
    width: 42%;
  }
}
@media (max-width: 767px) {
  .product_view .product_image {
    width: 100%;
    margin-bottom: 30px;
  }
}
.product_view .product_info {
  flex: 0 0 auto;
  width: 65%;
}
.product_view .product_info .product_name {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  color: #202020;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .product_view .product_info .product_name {
    font-size: 22px;
    line-height: 130%;
  }
}
.product_view .product_info .product_prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.product_view .product_info .product_prices .price_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  padding: 12px 20px;
  border: 1px solid #00A2FC;
  border-radius: 4px;
  background: #FFFFFF;
  gap: 20px;
}
.product_view .product_info .product_prices .price_item .sale_block {
  flex: 1;
}
.product_view .product_info .product_prices .price_item .sale_block .price_name {
  font-size: 12px;
  line-height: 140%;
  color: #00A2FC;
  margin-bottom: 1px;
  min-width: 120px;
}
.product_view .product_info .product_prices .price_item .sale_block .price_sale {
  font-size: 12px;
  line-height: 140%;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 1px;
}
.product_view .product_info .product_prices .price_item .sale_block .price_count {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #00A2FC;
}
.product_view .product_info .product_prices .price_item .price_block {
  flex: 1;
  background: #FFE456;
  border-radius: 4px;
  text-align: center;
  padding: 10px 13px;
  color: #202020;
}
.product_view .product_info .product_prices .price_item .price_block .new_price {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 2px;
}
.product_view .product_info .product_prices .price_item .price_block .old_price {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  text-decoration-line: line-through;
}
@media (max-width: 1300px) {
  .product_view .product_info .product_prices .price_item .price_block {
    flex: 0 0 auto;
    max-width: 90px;
  }
}
.product_view .product_info .product_prices .price_item .price_description {
  max-width: 253px;
  font-size: 12px;
  line-height: 140%;
  color: #475569;
  padding-left: 20px;
  border-left: 3px solid #F3F3F3;
}
@media (max-width: 1200px) {
  .product_view .product_info .product_prices .price_item .price_description {
    max-width: 100%;
    flex: 0 0 auto;
    width: 100%;
    padding-left: 0;
    border-left: none;
    padding-top: 20px;
    border-top: 3px solid #f3f3f3;
  }
}
@media (max-width: 1300px) {
  .product_view .product_info .product_prices .price_item {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 1300px) {
  .product_view .product_info .product_prices {
    gap: 20px 0;
  }
}
.product_view .product_info .product_colors .block_title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #475569;
  margin-bottom: 20px;
}
.product_view .product_info .product_colors .colors_block {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.product_view .product_info .product_colors .colors_block .color_item {
  cursor: pointer;
}
.product_view .product_info .product_colors .colors_block .color_item input {
  display: none;
}
.product_view .product_info .product_colors .colors_block .color_item input:checked ~ .border {
  border-color: #00A2FC;
}
.product_view .product_info .product_colors .colors_block .color_item .border {
  border: 4px solid #F9F9FA;
  display: flex;
  border-radius: 4px;
  transition: 0.3s all ease;
}
.product_view .product_info .product_colors .colors_block .color_item .border img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 1200px) {
  .product_view .product_info .product_colors .colors_block {
    gap: 4.7px;
  }
}
@media (max-width: 767px) {
  .product_view .product_info .product_colors .colors_block {
    gap: 10px;
  }
}
.product_view .product_info .call_to_measure {
  margin-bottom: 30px;
}
.product_view .product_info .call_to_measure .measure_texts {
  margin-bottom: 30px;
}
.product_view .product_info .call_to_measure .measure_texts .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #202020;
  margin-bottom: 10px;
}
.product_view .product_info .call_to_measure .measure_texts .description {
  font-size: 16px;
  line-height: 19px;
  color: #475569;
}
.product_view .product_info .call_to_measure .measure_action .button {
  padding: 22px 50px;
}
@media (max-width: 1300px) {
  .product_view .product_info .call_to_measure .measure_action .button {
    width: 100%;
  }
}
.product_view .product_info .product_advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product_view .product_info .product_advantages .advantage_item {
  flex: 0 0 auto;
  width: calc(25% - 15px);
}
.product_view .product_info .product_advantages .advantage_item .advantage_image {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #475569;
  margin-bottom: 15px;
}
.product_view .product_info .product_advantages .advantage_item .advantage_description {
  font-size: 16px;
  line-height: 19px;
  color: #93A2AB;
}
.product_view .product_info .product_advantages .advantage_item .advantage_description span {
  color: #00A2FC;
}
@media (max-width: 1200px) {
  .product_view .product_info .product_advantages .advantage_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 1200px) {
  .product_view .product_info .product_advantages {
    gap: 20px 0;
  }
}
@media (max-width: 1200px) {
  .product_view .product_info {
    width: 52%;
  }
}
@media (max-width: 767px) {
  .product_view .product_info {
    width: 100%;
  }
}
.product_view .product_characteristics {
  margin-top: 75px;
  max-width: 955px;
}
.product_view .product_characteristics .block_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .product_view .product_characteristics .block_title {
    margin-bottom: 30px;
  }
}
.product_view .product_characteristics .characteristics_table tr td {
  border-bottom: 1px solid #D6DFE4;
  padding: 15px 0;
  color: #93A2AB;
  font-size: 16px;
  line-height: 19px;
}
.product_view .product_characteristics .characteristics_table tr td:first-child {
  font-weight: 600;
  line-height: 140%;
  color: #475569;
  width: 25%;
}
@media (max-width: 767px) {
  .product_view .product_characteristics .characteristics_table tr td {
    flex: 0 0 auto;
    width: 100%;
  }
  .product_view .product_characteristics .characteristics_table tr td:first-child {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .product_view .product_characteristics .characteristics_table tr {
    display: flex;
    flex-direction: column;
    width: 375px;
  }
}

.last_seen .last_seen_slider {
  position: relative;
}
.last_seen .last_seen_slider .swiper {
  padding: 10px;
  margin: 0 -10px;
}
.last_seen .last_seen_slider .product_item {
  padding: 22px 17px;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  text-align: center;
  position: relative;
}
.last_seen .last_seen_slider .product_item .product_type {
  position: absolute;
  left: 0;
  top: 50px;
  padding: 11px;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #475569;
  background: #FFE456;
}
.last_seen .last_seen_slider .product_item .product_image {
  margin-bottom: 20px;
}
.last_seen .last_seen_slider .product_item .product_image img {
  max-width: 135px;
  width: 100%;
}
.last_seen .last_seen_slider .product_item .product_info .product_name {
  margin-bottom: 15px;
}
.last_seen .last_seen_slider .product_item .product_info .product_name a {
  font-size: 16px;
  line-height: 19px;
  color: #202020;
  text-decoration: none;
}
.last_seen .last_seen_slider .product_item .product_info .product_price {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
  margin-bottom: 15px;
}
.last_seen .last_seen_slider .product_item .product_action {
  display: flex;
  align-items: center;
  gap: 10px;
}
.last_seen .last_seen_slider .product_item .product_action a {
  width: 100%;
  height: 100%;
  padding: 12px 0;
  text-align: center;
  display: block;
  background: #F9F9FA;
  border-radius: 4px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  color: #475569;
}
.last_seen .last_seen_slider .product_item .product_action a:first-child {
  padding: 13px 29px;
}
.last_seen .last_seen_slider .swiper_navigation div {
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F9F9FA;
  border-radius: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
@media (max-width: 767px) {
  .last_seen .last_seen_slider .swiper_navigation div {
    position: static;
    margin: 0;
  }
}
.last_seen .last_seen_slider .swiper_navigation .swiper_next {
  right: -60px;
  transform: rotate(180deg);
}
.last_seen .last_seen_slider .swiper_navigation .swiper_prev {
  left: -60px;
}
@media (max-width: 767px) {
  .last_seen .last_seen_slider .swiper_navigation {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .last_seen {
    margin-bottom: 60px;
  }
}

.contacts {
  margin-bottom: 20px;
}
.contacts .section_title {
  margin-bottom: 40px;
}
.contacts .address_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.contacts .address_row .address_item {
  flex: 0 0 auto;
  width: calc(50% - 10px);
  padding: 50px 60px;
  background: #fff;
  border: 1px solid #00A2FC;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.contacts .address_row .address_item:last-child {
  background-color: #00A2FC;
  color: #fff;
  padding: 30px 27px 38px 30px;
}
@media (max-width: 767px) {
  .contacts .address_row .address_item:last-child {
    padding: 30px 25px 49px 30px;
  }
}
.contacts .address_row .address_item .address_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #202020;
  margin-bottom: 32px;
}
.contacts .address_row .address_item .address_list {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.contacts .address_row .address_item .address_list .address_text {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #475569;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .contacts .address_row .address_item .address_list .address_text {
    max-width: 80%;
  }
}
.contacts .address_row .address_item .address_list .work_time {
  font-size: 16px;
  line-height: 19px;
  color: #D6DFE4;
  margin-bottom: 4px;
}
.contacts .address_row .address_item .address_list .time {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #00A2FC;
}
.contacts .address_row .address_item .address_list .work_days {
  font-size: 12px;
  line-height: 140%;
}
@media (max-width: 767px) {
  .contacts .address_row .address_item .address_list {
    flex-direction: column;
    gap: 64px;
  }
}
@media (max-width: 767px) {
  .contacts .address_row .address_item .address_list img {
    transform: rotate(90deg);
    height: 246px;
    width: 4px;
    position: absolute;
    top: 40px;
    left: 123px;
  }
}
.contacts .address_row .address_item .item_body {
  display: flex;
}
.contacts .address_row .address_item .item_body .left_row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts .address_row .address_item .item_body .left_row .left_item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contacts .address_row .address_item .item_body .left_row .left_item .left_item_title {
  font-weight: 600;
  line-height: 140%;
}
.contacts .address_row .address_item .item_body .left_row .left_item .left_item_description {
  font-size: 14px;
  line-height: 16px;
  color: #F3F3F3;
}
@media (max-width: 1200px) {
  .contacts .address_row .address_item .item_body {
    gap: 60px;
  }
}
@media (max-width: 1200px) {
  .contacts .address_row .address_item .item_body {
    gap: 20px;
  }
}
.contacts .address_row .address_item .item_body .right_row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts .address_row .address_item .item_body .right_row .phone {
  display: flex;
  gap: 10px;
  align-items: center;
}
.contacts .address_row .address_item .item_body .right_row .phone p {
  font-size: 12px;
  line-height: 140%;
  color: #F3F3F3;
  margin-top: 2px;
}
.contacts .address_row .address_item .item_body .right_row a {
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
@media (max-width: 767px) {
  .contacts .address_row .address_item .item_body .right_row {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .contacts .address_row .address_item .item_body {
    flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .contacts .address_row .address_item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contacts .address_row .address_item {
    padding: 30px 25px 35px 30px;
  }
}
@media (max-width: 1200px) {
  .contacts {
    margin-bottom: 60px;
  }
}

.gallery {
  margin-bottom: 90px;
}
.gallery .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}
.gallery .swiper-wrapper img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 280px;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
  border-radius: 4px;
}
@media (max-width: 1200px) {
  .gallery {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .gallery {
    margin-bottom: 60px;
    padding-top: 0;
  }
}

.wrapper {
  overflow: hidden;
}

.about_us .texts_block {
  background-color: #F9F9FA;
  border: 1px solid #00A2FC;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
  border-radius: 4px;
  padding: 50px 36px 50px 64px;
  position: relative;
  overflow: hidden;
}
.about_us .texts_block .texts_row {
  background-color: #F5F5F5;
  display: flex;
  justify-content: space-between;
}
.about_us .texts_block .texts_row .director_image {
  flex: 0 0 auto;
  width: 37%;
  text-align: left;
}
.about_us .texts_block .texts_row .director_image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: block;
}
@media (max-width: 1200px) {
  .about_us .texts_block .texts_row .director_image img {
    left: -110px;
    height: 87%;
    top: 110px;
  }
}
@media (max-width: 767px) {
  .about_us .texts_block .texts_row .director_image img {
    height: 70%;
    top: 225px;
  }
}
@media (max-width: 767px) {
  .about_us .texts_block .texts_row .director_image img {
    height: 40%;
    left: -10px;
    top: 620px;
  }
}
@media (max-width: 1200px) {
  .about_us .texts_block .texts_row .director_image {
    width: 50%;
  }
}
.about_us .texts_block .texts_row .texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  flex: 0 0 auto;
  width: 63%;
  padding: 63.5px 57px 69.5px 0;
}
.about_us .texts_block .texts_row .texts .text_top {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
.about_us .texts_block .texts_row .texts .text_top .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
}
@media (max-width: 767px) {
  .about_us .texts_block .texts_row .texts .text_top .title {
    font-size: 18px;
    line-height: 21px;
  }
}
.about_us .texts_block .texts_row .texts .text_bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
}
.about_us .texts_block .texts_row .texts .text_bottom .bottom_title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #202020;
}
.about_us .texts_block .texts_row .texts .description {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
}
.about_us .texts_block .texts_row .texts::before {
  content: "";
  display: block;
  height: 67%;
  width: 5px;
  background-color: #00A2FC;
  position: absolute;
  left: -66px;
  top: 10px;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1200px) {
  .about_us .texts_block .texts_row .texts::before {
    height: 83%;
  }
}
@media (max-width: 767px) {
  .about_us .texts_block .texts_row .texts::before {
    left: -45px;
    height: 88%;
    top: 30px;
  }
}
@media (max-width: 767px) {
  .about_us .texts_block .texts_row .texts::before {
    transform: rotate(90deg);
    top: 545px;
    height: 50%;
    left: 122px;
  }
}
.about_us .texts_block .texts_row .texts::after {
  content: "”";
  display: block;
  font-size: 140px;
  position: absolute;
  left: -175px;
  top: 45px;
  font-weight: bold;
  font-family: Arial;
  color: #00A2FC;
  line-height: 110%;
}
@media (max-width: 1200px) {
  .about_us .texts_block .texts_row .texts::after {
    top: 30px;
  }
}
@media (max-width: 767px) {
  .about_us .texts_block .texts_row .texts::after {
    left: -155px;
  }
}
@media (max-width: 767px) {
  .about_us .texts_block .texts_row .texts::after {
    top: 600px;
    left: 0;
  }
}
@media (max-width: 1200px) {
  .about_us .texts_block .texts_row .texts {
    width: 50%;
    padding: 45px 40px 50px 0;
  }
}
@media (max-width: 767px) {
  .about_us .texts_block .texts_row .texts {
    padding: 45px 20px 25px 0;
  }
}
@media (max-width: 767px) {
  .about_us .texts_block .texts_row .texts {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about_us .texts_block .texts_row {
    flex-direction: column;
    background-color: #fff;
  }
}
@media (max-width: 1200px) {
  .about_us .texts_block {
    padding: 31.5px 34px 33.6px 34px;
  }
}
@media (max-width: 767px) {
  .about_us .texts_block {
    padding: 21px 18px 518px 27px;
    background-color: #fff;
  }
}
@media (max-width: 767px) {
  .about_us {
    margin: 71px 0;
  }
}

.services {
  background: #F9F9FA;
}
.services .div {
  padding: 60px 0;
}
.services .div .section_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
  max-width: 60%;
}
@media (max-width: 1300px) {
  .services .div .section_title {
    max-width: 92%;
  }
}
@media (max-width: 767px) {
  .services .div .section_title {
    max-width: 100%;
    padding: 0;
  }
}
.services .div .services_row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.services .div .services_row .services_item {
  flex: 0 0 auto;
  width: calc(33.3% - 13px);
  background-color: #fff;
  padding: 58px 39.5px 47px 33px;
  line-height: 19px;
  height: 230px;
  position: relative;
  background-image: url(../images/about_us_vector.svg);
  background-repeat: no-repeat;
  background-position: left 22px top 19px;
}
@media (max-width: 1200px) {
  .services .div .services_row .services_item:last-child {
    width: 100%;
  }
}
.services .div .services_row .services_item a {
  text-decoration: none;
  font-weight: 600;
  line-height: 140%;
  color: #00A2FC;
}
.services .div .services_row .services_item span {
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 1200px) {
  .services .div .services_row .services_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .services .div .services_row .services_item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .services .div .services_row .services_item {
    padding: 41.5px 26px 41.5px 33px;
  }
}
@media (max-width: 1200px) {
  .services .div .services_row {
    column-gap: 20px;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .services .div {
    padding: 0;
  }
}

.history .history_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.history .history_row .history_photo {
  max-width: 55%;
  flex: 0 0 auto;
  width: calc(55% - 21.5px);
}
.history .history_row .history_photo img {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1200px) {
  .history .history_row .history_photo {
    width: 100%;
    max-width: 100%;
  }
}
.history .history_row .history_texts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 auto;
  width: calc(45% - 21.5px);
}
.history .history_row .history_texts .history_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  max-width: 80%;
}
@media (max-width: 1200px) {
  .history .history_row .history_texts .history_title {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .history .history_row .history_texts .history_title {
    font-size: 23px;
  }
}
.history .history_row .history_texts .history_description {
  margin-right: 43px;
  font-size: 24px;
  line-height: 120%;
}
@media (max-width: 1200px) {
  .history .history_row .history_texts .history_description {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .history .history_row .history_texts .history_description {
    font-size: 23px;
  }
}
@media (max-width: 1200px) {
  .history .history_row .history_texts {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .history .history_row {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .history .history_row {
    flex-direction: column-reverse;
  }
}

.about_us_advantages {
  background: #F9F9FA;
}
.about_us_advantages .advantages_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about_us_advantages .advantages_row .advantages_item {
  flex: 0 0 auto;
  width: calc(50% - 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about_us_advantages .advantages_row .advantages_item img {
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
}
.about_us_advantages .advantages_row .advantages_item .advantages_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .about_us_advantages .advantages_row .advantages_item .advantages_title br {
    display: none;
  }
}
.about_us_advantages .advantages_row .advantages_item .advantages_type {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  max-width: 78%;
}
.about_us_advantages .advantages_row .advantages_item .advantages_type:last-child {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .about_us_advantages .advantages_row .advantages_item .advantages_type {
    max-width: 65%;
  }
}
@media (max-width: 767px) {
  .about_us_advantages .advantages_row .advantages_item .advantages_type {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .about_us_advantages .advantages_row .advantages_item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .about_us_advantages .advantages_row {
    padding: 60px 0 100px 0;
  }
}
@media (max-width: 767px) {
  .about_us_advantages .advantages_row {
    padding: 0 0 57px 0;
  }
}

.sales .sales_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sales .sales_row .sales_item {
  flex: 0 0 auto;
  width: calc(33.333% - 13px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.sales .sales_row .sales_item .item_top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sales .sales_row .sales_item .item_top img {
  border-bottom: 1px solid #D6DFE4;
  border-radius: 4px 4px 0px 0px;
}
.sales .sales_row .sales_item .item_top .texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 45px 24px 40px;
}
.sales .sales_row .sales_item .item_top .texts .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #202020;
}
.sales .sales_row .sales_item .item_top .texts .description {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  line-height: 16px;
  color: #93A2AB;
}
@media (max-width: 1200px) {
  .sales .sales_row .sales_item .item_top .texts .description br:nth-last-child(n+4) {
    display: none;
  }
}
@media (max-width: 1200px) {
  .sales .sales_row .sales_item .item_top .texts .description {
    max-width: 87%;
  }
}
.sales .sales_row .sales_item .item_bottom {
  padding: 0 0 25px 40px;
}
.sales .sales_row .sales_item .item_bottom .action a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #00A2FC;
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 1200px) {
  .sales .sales_row .sales_item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .sales .sales_row {
    gap: 20px;
  }
}

@media (max-width: 650px) {
  .examples_of_forms .section_title {
    font-size: 23px;
    margin-bottom: 48px;
  }
}
.examples_of_forms .return_row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 650px) {
  .examples_of_forms .return_row .return_item:first-child .item_description {
    padding: 28px 25px;
  }
}
.examples_of_forms .return_row .return_item .item_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
  margin-bottom: 40px;
}
@media (max-width: 650px) {
  .examples_of_forms .return_row .return_item .item_title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.examples_of_forms .return_row .return_item .item_description {
  padding: 53px 140px;
  background: #F9F9FA;
  border-radius: 4px;
  line-height: 19px;
  color: #475569;
}
.examples_of_forms .return_row .return_item .item_description ul {
  padding-left: 10px;
  color: #00A2FC;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.examples_of_forms .return_row .return_item .item_description ul a {
  text-decoration: none;
  color: #00A2FC;
}
.examples_of_forms .return_row .return_item .item_description .description_top {
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 16px;
}
.examples_of_forms .return_row .return_item .item_description .description_bottom ul {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #475569;
}
@media (max-width: 1200px) {
  .examples_of_forms .return_row .return_item .item_description {
    padding: 40px;
  }
}
@media (max-width: 650px) {
  .examples_of_forms .return_row .return_item .item_description {
    padding: 19px 20px;
  }
}

.terms_of_use .terms_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .terms_of_use .terms_title {
    margin-bottom: 30px;
  }
}
@media (max-width: 650px) {
  .terms_of_use .terms_title {
    font-size: 18px;
    line-height: 21px;
  }
}
.terms_of_use .terms {
  background: #F9F9FA;
  border-radius: 4px;
  padding: 65px 140px;
  line-height: 19px;
}
.terms_of_use .terms p {
  margin-bottom: 16px;
}
.terms_of_use .terms .description span {
  font-weight: 600;
  line-height: 140%;
}
.terms_of_use .terms .description a {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #475569;
}
.terms_of_use .terms .title {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
}
@media (max-width: 1200px) {
  .terms_of_use .terms {
    padding: 42px 38px 42px 40px;
  }
}
@media (max-width: 650px) {
  .terms_of_use .terms {
    padding: 19px 20px;
  }
}

.tips .tips_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
  margin-bottom: 40px;
}
.tips .tips_row .tips_item {
  flex: 0 0 auto;
  width: calc(33.333% - 13px);
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.tips .tips_row .tips_item .item_top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex-direction: column;
}
.tips .tips_row .tips_item .item_top img {
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
}
.tips .tips_row .tips_item .item_top .texts {
  padding: 0 45px 0 40px;
}
.tips .tips_row .tips_item .item_top .texts .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #202020;
  margin-bottom: 10px;
}
.tips .tips_row .tips_item .item_top .texts .date {
  font-size: 14px;
  line-height: 16px;
  color: #D6DFE4;
  margin-bottom: 20px;
}
.tips .tips_row .tips_item .item_top .texts .description {
  font-size: 14px;
  line-height: 16px;
  color: #93A2AB;
}
@media (max-width: 650px) {
  .tips .tips_row .tips_item .item_top .texts {
    padding: 0 25px 0 30px;
  }
}
.tips .tips_row .tips_item .item_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 45px 31.5px 40px;
}
.tips .tips_row .tips_item .item_bottom .bottom_left a {
  display: flex;
  font-weight: 600;
  color: #00A2FC;
  line-height: 140%;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.tips .tips_row .tips_item .item_bottom .bottom_right a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  color: #4489C8;
}
@media (max-width: 1200px) {
  .tips .tips_row .tips_item .item_bottom {
    padding: 0 25px 29px 30px;
  }
}
@media (max-width: 1200px) {
  .tips .tips_row .tips_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .tips .tips_row .tips_item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .tips .tips_row {
    gap: 20px;
  }
}
.tips .tips_action {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.tips .tips_action .all_insurances_opener {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.tips .tips_action .all_insurances_opener a {
  font-weight: 700;
  font-size: 18px;
  line-height: 97%;
  color: #FFFFFF;
  text-decoration: none;
  padding: 21.5px 54.5px;
  background: #00A2FC;
  border-radius: 4px;
}
.tips .tips_action .pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
}
.tips .tips_action .pagination a {
  padding: 7px 16px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  background: #F3F3F3;
  opacity: 0.3;
  border-radius: 4px;
  color: #475569;
}
.tips .tips_action .pagination a:hover {
  background-color: #00A2FC;
  opacity: 1;
  color: #FFFFFF;
}
.tips .tips_action .pagination a:nth-child(5) {
  padding: 7px 8px;
}
.tips .tips_action .pagination a:nth-child(6) {
  padding: 0;
  background: #F3F3F3;
}
.tips .tips_action .pagination a:last-child {
  background-color: transparent;
}
.tips .tips_action .pagination p {
  color: #202020;
}

.how_to_choose .section_title {
  margin-bottom: 45px;
}
@media (max-width: 650px) {
  .how_to_choose .section_title {
    margin-bottom: 30px;
  }
}
.how_to_choose .choose_item .item_bg {
  border: 1px solid #00A2FC;
  border-radius: 4px;
  margin-bottom: 43px;
  padding: 42px 45px;
}
.how_to_choose .choose_item .item_bg img {
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1200px) {
  .how_to_choose .choose_item .item_bg {
    padding: 30px 34px;
  }
}
@media (max-width: 650px) {
  .how_to_choose .choose_item .item_bg {
    padding: 25px 28px;
  }
}
.how_to_choose .choose_item_texts {
  padding: 0 236.5px;
}
.how_to_choose .choose_item_texts .item_texts_top {
  margin-bottom: 40px;
}
.how_to_choose .choose_item_texts .item_texts_top .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
  margin-bottom: 20px;
}
@media (max-width: 650px) {
  .how_to_choose .choose_item_texts .item_texts_top .title {
    font-size: 18px;
    line-height: 21px;
  }
}
.how_to_choose .choose_item_texts .item_texts_top .date {
  font-size: 14px;
  line-height: 16px;
  color: #D6DFE4;
  margin-bottom: 40px;
}
.how_to_choose .choose_item_texts .item_texts_top .quota {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  padding: 29px 62.5px;
  background: #F9F9FA;
  border-radius: 4px;
}
@media (max-width: 1200px) {
  .how_to_choose .choose_item_texts .item_texts_top .quota {
    padding: 29px 26.5px;
  }
}
@media (max-width: 650px) {
  .how_to_choose .choose_item_texts .item_texts_top .quota {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    padding: 21.5px 16px;
  }
}
.how_to_choose .choose_item_texts .texts_middle_row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.how_to_choose .choose_item_texts .texts_middle_row .texts_middle_item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 16px;
}
.how_to_choose .choose_item_texts .texts_middle_row .texts_middle_item .title {
  font-size: 24px;
  line-height: 120%;
}
.how_to_choose .choose_item_texts .texts_middle_row .texts_middle_item.item2 {
  gap: 30px;
}
@media (max-width: 1200px) {
  .how_to_choose .choose_item_texts .texts_middle_row .texts_middle_item img {
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
  }
}
.how_to_choose .choose_item_texts .texts_bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  padding: 46px 100px;
  background: #F9F9FA;
  border-radius: 4px;
}
.how_to_choose .choose_item_texts .texts_bottom .bottom_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
}
.how_to_choose .choose_item_texts .texts_bottom .bottom_description, .how_to_choose .choose_item_texts .texts_bottom .call_back {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
  line-height: 160%;
}
.how_to_choose .choose_item_texts .texts_bottom .call_back {
  font-weight: 700;
  line-height: 21px;
}
.how_to_choose .choose_item_texts .texts_bottom .call_back a {
  color: #00A2FC;
  text-decoration: none;
}
@media (max-width: 650px) {
  .how_to_choose .choose_item_texts .texts_bottom {
    padding: 19px;
  }
}
@media (max-width: 1200px) {
  .how_to_choose .choose_item_texts {
    padding: 0;
  }
}
.how_to_choose .link_to_vk {
  margin-top: 43px;
}
.how_to_choose .link_to_vk a {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #4489C8;
}

.delivery .delivery_row {
  margin-bottom: 100px;
}
.delivery .delivery_row .delivery_top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 40px;
}
.delivery .delivery_row .delivery_top .top_blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item {
  flex: 0 0 auto;
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .block_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #475569;
}
@media (max-width: 767px) {
  .delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .block_title {
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
  }
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .left_item_texts {
  background: #00A2FC;
  border: 1px solid #00A2FC;
  border-radius: 4px;
  padding: 46px 73px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  color: #fff;
  height: 100%;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .left_item_texts .left_item_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .left_item_texts .left_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .left_item_texts .left_item .title {
  line-height: 140%;
  color: #FFFFFF;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .left_item_texts .left_item .description {
  font-weight: 400;
  line-height: 19px;
  color: #F9F9FA;
}
@media (max-width: 1200px) {
  .delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .left_item_texts {
    padding: 43px 46px 43px 73px;
  }
}
@media (max-width: 767px) {
  .delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .left_item_texts {
    padding: 20px;
  }
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .top_item_texts {
  border: 1px solid #00A2FC;
  border-radius: 4px;
  height: 100%;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .top_item_texts .item_2 {
  background: #FFFFFF;
  padding: 43.5px 66px 43px 66px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .top_item_texts .item_2 ul {
  color: #00A2FC;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 26px;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .top_item_texts .item_2 ul span {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #475569;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .top_item_texts .item_2 ul a {
  text-decoration: none;
  color: #00A2FC;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .top_item_texts .item_2 .top_right_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #00A2FC;
}
.delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .top_item_texts .item_2 .notice {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
}
@media (max-width: 1200px) {
  .delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .top_item_texts .item_2 {
    padding: 55px 66px;
    max-width: 85%;
  }
}
@media (max-width: 767px) {
  .delivery .delivery_row .delivery_top .top_blocks .delivery_top_item .top_item_texts .item_2 {
    padding: 20px;
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .delivery .delivery_row .delivery_top .top_blocks .delivery_top_item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .delivery .delivery_row .delivery_top .top_blocks {
    flex-direction: column;
    gap: 60px;
  }
}
.delivery .delivery_row .delivery_top .call_back {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}
.delivery .delivery_row .delivery_top .call_back .number a {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #475569;
  text-decoration: none;
}
@media (max-width: 767px) {
  .delivery .delivery_row .delivery_top .call_back .number {
    order: 2;
  }
}
.delivery .delivery_row .delivery_top .call_back .call_back_button a {
  padding: 21.5px 49px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 97%;
  color: #fff;
  background: #00A2FC;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .delivery .delivery_row .delivery_top .call_back .call_back_button a {
    padding: 21.5px 0;
    width: 100%;
    text-align: center;
    display: block;
  }
}
@media (max-width: 767px) {
  .delivery .delivery_row .delivery_top .call_back .call_back_button {
    flex: 0 0 auto;
    width: 100%;
    order: 1;
  }
}
@media (max-width: 767px) {
  .delivery .delivery_row .delivery_top .call_back {
    margin-bottom: 100px;
  }
}
.delivery .delivery_bottom_row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
  gap: 100px;
}
.delivery .delivery_bottom_row .bottom_item .item_title {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  color: #202020;
  margin-bottom: 40px;
}
.delivery .delivery_bottom_row .bottom_item .item_title br {
  display: none;
}
@media (max-width: 1200px) {
  .delivery .delivery_bottom_row .bottom_item .item_title br {
    display: block;
  }
}
@media (max-width: 767px) {
  .delivery .delivery_bottom_row .bottom_item .item_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
  }
  .delivery .delivery_bottom_row .bottom_item .item_title br {
    display: none;
  }
}
.delivery .delivery_bottom_row .bottom_item .description {
  padding: 19.5px 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
}
.delivery .delivery_bottom_row .bottom_item .description:nth-child(2n) {
  background: #F9F9FA;
}
.delivery .delivery_bottom_row .bottom_item .description span {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}
@media (max-width: 767px) {
  .delivery .delivery_bottom_row .bottom_item .description {
    padding: 18px 35px;
    font-size: 16px;
    line-height: 19px;
  }
  .delivery .delivery_bottom_row .bottom_item .description span {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  .delivery .delivery_bottom_row {
    gap: 60px 0;
  }
}

.reviews .reviews_top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.reviews .reviews_top .review_action {
  display: flex;
  gap: 107px;
  align-items: center;
  background: #F9F9FA;
  border-radius: 4px;
  padding: 15px 30px;
  max-width: 60%;
  justify-content: space-between;
}
.reviews .reviews_top .review_action a {
  text-decoration: none;
  background: #00A2FC;
  border-radius: 4px;
  font-weight: 700;
  font-size: 18px;
  line-height: 97%;
  color: #fff;
  padding: 13.5px 26.5px;
}
@media (max-width: 767px) {
  .reviews .reviews_top .review_action a {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .reviews .reviews_top .review_action {
    gap: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .reviews .reviews_top .review_action {
    flex-wrap: wrap;
    padding: 20px 30px;
    position: relative;
  }
  .reviews .reviews_top .review_action img:first-child {
    margin-bottom: 50px;
  }
  .reviews .reviews_top .review_action img:nth-child(2) {
    display: none;
  }
  .reviews .reviews_top .review_action::before {
    content: "";
    display: block;
    width: calc(100% - 60px);
    height: 3px;
    background-color: #D6DFE4;
    position: absolute;
    top: 80px;
    left: 30px;
  }
}
.reviews .reviews_bottom {
  position: relative;
}
.reviews .reviews_bottom .swiper-slide {
  padding: 10px;
}
.reviews .reviews_bottom .swiper-slide .review_item {
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 30px 30px 45px 30px;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 17px;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_author .author_name {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_author .author_name .name {
  line-height: 19px;
  color: #202020;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_author .author_name .date {
  font-size: 14px;
  line-height: 16px;
  color: #D6DFE4;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_texts_row {
  display: flex;
  flex-wrap: wrap;
  padding-left: 75px;
  gap: 15px;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_texts_row .review_mark {
  display: flex;
  gap: 10px;
  align-items: center;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_texts_row .review_mark .stars {
  display: flex;
  gap: 2px;
  align-items: center;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_texts_row .review_mark .date {
  font-size: 12px;
  line-height: 140%;
  color: #D6DFE4;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_texts_row .review_text {
  line-height: 19px;
  color: #000;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_texts_row .review_text a {
  text-decoration: none;
  color: #D6DFE4;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_texts_row .review_photos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 430px;
}
.reviews .reviews_bottom .swiper-slide .review_item .review_texts_row .review_photos img {
  width: calc(25% - 7.5px);
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .reviews .reviews_bottom .swiper-slide .review_item .review_texts_row .review_photos img {
    width: calc(33% - 7.5px);
    height: 80px;
  }
  .reviews .reviews_bottom .swiper-slide .review_item .review_texts_row .review_photos img:nth-child(n+4) {
    display: none;
  }
}
@media (max-width: 767px) {
  .reviews .reviews_bottom .swiper-slide .review_item .review_texts_row .review_photos {
    overflow: hidden;
    width: 260px;
    flex: 0 0 auto;
  }
}
@media (max-width: 767px) {
  .reviews .reviews_bottom .swiper-slide .review_item .review_texts_row {
    padding-left: 0;
  }
}
.reviews .reviews_bottom .slide_buttons .slide_prev, .reviews .reviews_bottom .slide_buttons .slide_next {
  cursor: pointer;
  background: #F9F9FA;
  border-radius: 4px;
  align-items: center;
  height: 44px;
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -75px;
}
.reviews .reviews_bottom .slide_buttons .slide_prev.slide_next, .reviews .reviews_bottom .slide_buttons .slide_next.slide_next {
  left: auto;
  right: -75px;
}
@media (max-width: 767px) {
  .reviews .reviews_bottom .slide_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  .reviews .reviews_bottom .slide_buttons .slide_prev, .reviews .reviews_bottom .slide_buttons .slide_next {
    position: static;
    margin: 0;
  }
}
.reviews.reviews_other .review_item {
  padding: 30px 30px 60px 30px !important;
}
.reviews.avito {
  margin-bottom: 82px;
}

.help_choose.reviews {
  padding: 0;
  margin-bottom: 100px;
}

.favourites .section_title {
  margin-bottom: 37px;
}
@media (max-width: 1200px) {
  .favourites .section_title {
    margin-bottom: 30px;
  }
}
@media (max-width: 650px) {
  .favourites .section_title {
    margin-bottom: 30px;
  }
}
.favourites .sort_form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 60px;
}
.favourites .sort_form .sort_links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.favourites .sort_form .sort_links a {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #475569;
  padding: 7px 13px;
  background: #F3F3F3;
  opacity: 0.3;
  border-radius: 4px;
  transition: all ease 0.3s;
}
.favourites .sort_form .sort_links a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .favourites .sort_form .sort_links a {
    font-size: 12px;
    line-height: 140%;
  }
}
@media (max-width: 1200px) {
  .favourites .sort_form .sort_links {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .favourites .sort_form .sort_links {
    gap: 10px;
    max-width: 70%;
  }
}
@media (max-width: 650px) {
  .favourites .sort_form .sort_links {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .favourites .sort_form {
    flex-direction: column;
    align-items: stretch;
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .favourites .sort_form {
    max-width: 100%;
  }
}
.favourites .sort_dialog {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px;
  border: 1px solid #00A2FC;
  border-radius: 4px;
  max-width: 36%;
}
.favourites .sort_dialog .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #202020;
}
@media (max-width: 650px) {
  .favourites .sort_dialog .title {
    font-size: 18px;
    line-height: 21px;
  }
}
.favourites .sort_dialog .description {
  line-height: 19px;
  color: #93A2AB;
}
@media (max-width: 650px) {
  .favourites .sort_dialog .description {
    font-size: 14px;
    line-height: 16px;
  }
}
.favourites .sort_dialog a {
  background: #00A2FC;
  border-radius: 4px;
  padding: 21.5px 86.5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 97%;
  color: #fff;
}
@media (max-width: 650px) {
  .favourites .sort_dialog a {
    padding: 16.5px 0;
    text-align: center;
  }
}
@media (max-width: 1300px) {
  .favourites .sort_dialog {
    max-width: 40%;
  }
}
@media (max-width: 1200px) {
  .favourites .sort_dialog {
    max-width: 63%;
  }
}
@media (max-width: 650px) {
  .favourites .sort_dialog {
    max-width: 100%;
    padding: 48.5px 26px;
  }
}

.recommendations .section_title {
  margin-bottom: 40.5px;
}
.recommendations .recommendations_row {
  display: flex;
  justify-content: space-between;
}
.recommendations .recommendations_row .recommendations_item {
  flex-direction: 0 0 auto;
  width: calc(20% - 16px);
}
.recommendations .recommendations_row .recommendations_item .item_body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 22.5px 17px;
  position: relative;
}
.recommendations .recommendations_row .recommendations_item .item_body .item_top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.recommendations .recommendations_row .recommendations_item .item_body .item_top img {
  text-align: center;
  object-fit: cover;
  object-position: center;
}
.recommendations .recommendations_row .recommendations_item .item_body .item_top .item_texts {
  color: #202020;
  text-align: center;
}
.recommendations .recommendations_row .recommendations_item .item_body .item_top .item_texts .title {
  line-height: 19px;
  margin-bottom: 15px;
}
.recommendations .recommendations_row .recommendations_item .item_body .item_top .item_texts .price {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}
.recommendations .recommendations_row .recommendations_item .item_body .item_top .hot {
  position: absolute;
  left: 0;
  top: 48px;
  padding: 11px 17px;
  background: #FFE456;
  line-height: 140%;
}
.recommendations .recommendations_row .recommendations_item .item_body .item_bottom .item_action {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: space-between;
}
.recommendations .recommendations_row .recommendations_item .item_body .item_bottom .item_action a {
  text-decoration: none;
  line-height: 19px;
  color: #475569;
  background: #F9F9FA;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.recommendations .recommendations_row .recommendations_item .item_body .item_bottom .item_action a:first-child {
  padding: 13px 30px;
}
.recommendations .recommendations_row .recommendations_item .item_body .item_bottom .item_action a:last-child {
  padding: 12px 20px;
}
@media (max-width: 1200px) {
  .recommendations .recommendations_row .recommendations_item {
    width: calc(33.33% - 13px);
  }
  .recommendations .recommendations_row .recommendations_item:nth-child(n+4) {
    display: none;
  }
}
@media (max-width: 767px) {
  .recommendations .recommendations_row .recommendations_item {
    width: calc(50% - 10px);
  }
  .recommendations .recommendations_row .recommendations_item:nth-child(n+3) {
    display: none;
  }
}
@media (max-width: 650px) {
  .recommendations .recommendations_row .recommendations_item {
    width: 100%;
  }
  .recommendations .recommendations_row .recommendations_item:nth-child(n+3) {
    display: block;
  }
}
@media (max-width: 650px) {
  .recommendations .recommendations_row {
    flex-direction: column;
    gap: 20px;
  }
}

.favourites.have_products {
  margin-bottom: 79px;
}
.favourites.have_products .sort_form {
  margin-bottom: 0;
}

.recommendations.have_products .recommendations_row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.recommendations.have_products .recommendations_row .recommendations_item {
  flex: 0 0 auto;
  width: calc(20% - 16px);
}
.recommendations.have_products .recommendations_row .recommendations_item:first-child {
  opacity: 0.3;
}
.recommendations.have_products .recommendations_row .recommendations_item:nth-child(9) {
  opacity: 0.3;
}
.recommendations.have_products .recommendations_row .recommendations_item.double {
  width: 25%;
}
@media (max-width: 650px) {
  .recommendations.have_products .recommendations_row .recommendations_item.double {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .recommendations.have_products .recommendations_row .recommendations_item {
    width: calc(33% - 13px);
  }
}
@media (max-width: 767px) {
  .recommendations.have_products .recommendations_row .recommendations_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 650px) {
  .recommendations.have_products .recommendations_row .recommendations_item {
    width: 100%;
  }
}
.recommendations .favourites_action {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}
.recommendations .favourites_action .all_insurances_opener {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.recommendations .favourites_action .all_insurances_opener a {
  font-weight: 700;
  font-size: 18px;
  line-height: 97%;
  color: #FFFFFF;
  text-decoration: none;
  padding: 21.5px 36px;
  background: #00A2FC;
  border-radius: 4px;
}
.recommendations .favourites_action .pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
}
.recommendations .favourites_action .pagination a {
  padding: 7px 16px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  background: #F3F3F3;
  opacity: 0.3;
  border-radius: 4px;
  color: #475569;
}
.recommendations .favourites_action .pagination a:hover {
  background-color: #00A2FC;
  opacity: 1;
  color: #FFFFFF;
}
.recommendations .favourites_action .pagination a:nth-child(6) {
  padding: 0;
  background: #F3F3F3;
}
.recommendations .favourites_action .pagination p {
  color: #202020;
}

.portfolio .section_title {
  margin-bottom: 40px;
}
.portfolio .portfolio_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.portfolio .portfolio_row .portfolio_item {
  flex: 0 0 auto;
  width: calc(25% - 15px);
  background: #F9F9FA;
  text-decoration: none;
}
.portfolio .portfolio_row .portfolio_item .item_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #252525;
  padding: 20px 19px 25px 20px;
}
.portfolio .portfolio_row .portfolio_item .item_img img {
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  width: 100%;
  max-height: 100%;
}
@media (max-width: 1200px) {
  .portfolio .portfolio_row .portfolio_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 650px) {
  .portfolio .portfolio_row .portfolio_item {
    width: 100%;
  }
}
.portfolio .portfolio_action {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.portfolio .portfolio_action .all_insurances_opener {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.portfolio .portfolio_action .all_insurances_opener a {
  font-weight: 700;
  font-size: 18px;
  line-height: 97%;
  color: #FFFFFF;
  text-decoration: none;
  padding: 21.5px 54.5px;
  background: #00A2FC;
  border-radius: 4px;
}
.portfolio .portfolio_action .pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
}
.portfolio .portfolio_action .pagination a {
  padding: 7px 16px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  background: #F3F3F3;
  opacity: 0.3;
  border-radius: 4px;
  color: #475569;
}
.portfolio .portfolio_action .pagination a:hover {
  background-color: #00A2FC;
  opacity: 1;
  color: #FFFFFF;
}
.portfolio .portfolio_action .pagination a:nth-child(5) {
  padding: 7px 8px;
}
.portfolio .portfolio_action .pagination a:nth-child(6) {
  padding: 0;
  background: #F3F3F3;
}
.portfolio .portfolio_action .pagination p {
  color: #202020;
}

.portfolio_door .section_title {
  margin-bottom: 40px;
}
.portfolio_door .portfolio_door_row {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.portfolio_door .portfolio_door_row .row_item {
  flex: 0 0 auto;
  width: calc(25% - 15px);
}
.portfolio_door .portfolio_door_row .row_item img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  max-height: 100%;
}
@media (max-width: 1200px) {
  .portfolio_door .portfolio_door_row .row_item img {
    max-height: 600px;
  }
}
@media (max-width: 1200px) {
  .portfolio_door .portfolio_door_row .row_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 650px) {
  .portfolio_door .portfolio_door_row .row_item {
    width: 100%;
  }
}
@media (max-width: 1300px) {
  .portfolio_door .portfolio_door_row {
    gap: 20px;
  }
}
.portfolio_door .portfolio_door_action .action_row {
  display: flex;
  justify-content: space-between;
  padding: 19px 40px;
  align-items: center;
  background: #F9F9FA;
  border-radius: 4px;
}
.portfolio_door .portfolio_door_action .action_row .action_item {
  display: flex;
  align-items: center;
  gap: 40px;
}
.portfolio_door .portfolio_door_action .action_row .action_item .item_name {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
}
.portfolio_door .portfolio_door_action .action_row .action_item a {
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 97%;
  color: #fff;
  padding: 21.5px 36px;
  background: #00A2FC;
  border-radius: 4px;
}
@media (max-width: 650px) {
  .portfolio_door .portfolio_door_action .action_row .action_item {
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  .portfolio_door .portfolio_door_action .action_row .action_item img {
    display: none;
  }
}
@media (max-width: 650px) {
  .portfolio_door .portfolio_door_action .action_row .action_item:first-child {
    background-image: url(../images/vertical.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (max-width: 1300px) {
  .portfolio_door .portfolio_door_action .action_row {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 650px) {
  .portfolio_door .portfolio_door_action .action_row {
    padding: 40px 0;
  }
}/*# sourceMappingURL=main.css.map */