@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap'); */
@import 'normalize.min.css';
@import 'swiper.min.css';

:root {
  --color-main: #007ebd;
  --color-main-light: #00a0f0;
  --color-dark: #3a3a3a;
  --color-light: #e6e6e6;
  --width-sidebar: 320px;
}

@media (max-width: 1200px) {
  :root {
    --width-sidebar: 240px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --width-sidebar: 160px;
  }
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--color-light);
}

::-webkit-scrollbar-thumb {
  background: var(--color-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: #777;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.33333;
}

button,
a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

button,
input {
  border: none;
}

textarea:focus,
input:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

b,
strong,
.bold {
  font-weight: 700;
}

._fz125 {
  font-size: 125% !important;
}

.text-up {
  text-transform: uppercase;
}

._center {
  text-align: center;
}

._pt12 {
  padding-top: 12px !important;
}

._mb30 {
  margin-bottom: 30px !important;
}

._bg_white {
  background-color: #fff !important;
}

._bg_gray {
  background-color: var(--color-light) !important;
}

._bg_gradient {
  color: #fff;
  background: linear-gradient(90deg, rgb(60, 174, 231) 0%, rgb(0, 78, 117) 100%);
}

._bg_gradient * {
  color: #fff !important;
}

._bg_gradient .text ul li {
  font-size: 20px;
  padding-left: 32px;
}

._bg_gradient .text ul li::before {
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  background-image: url(../img/icons/right.svg);
  opacity: 1;
}

._bg_gradient .text ul li a {
  display: inline-block;
  font-weight: 400;
}

.compare {
  margin-bottom: 25px;
}

.compare_text {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background-color: #e3e3e3;
  display: table;
  width: 100%;
  border-bottom: 1px solid #fff;
}

.compare .compare_text:nth-of-type(odd) {
  background-color: #ededed;
}

.compare_text > * {
  padding: 28px 33px;
  display: table-cell;
  width: 33.3333%;
  background-color: transparent;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.compare_text.header > * {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.compare_text b {
  display: block;
  font-size: 110%;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}

.compare_text, 
.compare_text > * {
    -webkit-transition: background-color 0.1s ease-out;
    transition: background-color 0.1s ease-out;
}
.compare_text:not(.header):hover {
    background-color: #d6d6d6;
}

@media screen and (max-width: 600px) {
  .compare_text.header {
    display: none !important;
  }
  .compare_text {
    display: block;
    margin-bottom: 30px;
  }
  .compare_text>div {
    display: block;
    width: 100%;
  }
  .compare_text>div::before {
    content: attr(data-label);
    position: relative;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 0 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #000;
  }
}

@media (max-width: 450px) {
  .compare_text > * {
      font-size: 15px;
  }
}

.compare .compare_text > div:nth-of-type(even) {
  background-color: rgba(12, 115, 166, .2);
  font-weight: 600;
}

.compare .compare_text:hover > div:nth-of-type(even) {
  background-color: var(--color-main);
  color: #fff;
}
.compare .compare_text > div:nth-of-type(even) {
  font-weight: 600;
}


.lightblue-block {
  background-color: rgba(12, 115, 166, .2);
  padding: 10px 12px;
  margin: 10px 0;
}

.top-shadow {
  box-shadow: inset 0 15px 30px rgba(0, 0, 0, 0.075);
}
.bottom-shadow {
  box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.075);
}

.font125 {
  font-size: 125% !important;
}

.text ol.font125 li {
  padding-bottom: 20px;
}

.text ol.font125 li::before {
  content: counter(item) '.';
  font-size: 20px !important;
  font-weight: 700;
  top: 0;
}

.columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.columns_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.columns_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

ul.columns_4 {
  columns: 4;
  display: block;
  gap: 0;
} 

@media (max-width: 991.98px) {
  .columns {
  grid-template-columns: repeat(1, 1fr);
  }
  .columns_4,
  .columns_3 {
  grid-template-columns: repeat(2, 1fr);
  }
  ul.columns_4 {
    columns: 2;
  }
}

@media (max-width: 520px) {
  .columns_4,
  .columns_3 {
  grid-template-columns: repeat(1, 1fr);
  }
  ul.columns_4 {
    columns: 1;
  }
}

.hidden {
  display: none;
}

.o-hidden {
  overflow: hidden;
}

.container {
  position: relative;
  max-width: 1400px;
  min-width: 320px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  display: block;
  padding: 60px 0 85px;
}

.section__title {
  margin: 20px 0 30px;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
  color: #000;
}

.section_wrap {
  padding: 30px 0 0;
}

.section__title_page {
  margin: 10px 0 55px;
}

.section__subtitle {
  margin: -20px 0 30px;
  font-size: 1.25em;
  max-width: 800px;
}

.price-left {
  width: 100%;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 0 30px;
}

.price-left b {
  font-size: 120%;
}

.price-left .btn {
  margin: 0;
}

@media (min-width: 992px) {
  .price-left {
    padding-top: 80px;
  }
}

.row {
  display: flex;
  gap: 44px;
}

.row__col {
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  gap: 44px;
  max-width: 100%;
  align-items: center;
  padding: 0;
}

.row--2 {
  justify-content: space-between;
}


.section_234 {
  border-top: 1px solid var(--color-dark);
  padding-top: 30px;
  margin-top: 50px;
}

.section_234 .how {
  padding: 30px 0 20px;
  margin-bottom: 50px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.grid_2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid_3,
.grid_3-1 {
  grid-template-columns: repeat(3, 1fr);
}

.grid_4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid__col {
  padding: 0;
}

@media (min-width: 992px) {
  .grid_reverse .grid__col:first-of-type {
    order: 2;
  }

  .grid_reverse .grid__col:last-of-type {
    order: 1;
  }
}

@media (max-width: 991.98px) {
  .section__title {
    text-align: center;
    font-size: 30px;
  }

  .row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .row__col {
    flex-basis: auto;
  }

  .row_3-1 {
    flex-direction: column;
  }

  .row_3-1 .row__col {
    width: 460px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .grid,
  .grid_4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid_3-1 {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid_3-1 .grid__col {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .row {
    flex-direction: column;
  }
  .section__title {
    font-size: 28px;
  }
}

.btn {
  position: relative;
  display: inline-block;
  height: 44px;
  min-width: 268px;
  padding: 2px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0.025em;
  text-align: center;
  text-transform: uppercase;
  border: none;
  overflow: hidden;
  color: #fff;
  background-color: var(--color-main);
  margin: 20px 0 30px;
  cursor: pointer;
}

.btn_light {
  background-color: rgba(255, 255, 255, 0.3);
}

.btn span {
  position: relative;
  z-index: 20;
}

.btn::after {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.2s ease-out;
  z-index: 10;
}

.btn:hover::after {
  width: 100%;
  transition: width 0.2s ease-out;
}

.btns2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 25px 0;
}

.btns2 .btn {
  height: 60px;
  line-height: 58px;
  font-size: 20px;
  min-width: 300px;
  margin: 0;
}

.breadcrumbs {
  padding: 15px 0;
  font-size: 13px;
  font-weight: 400;
  color: #000;
  text-align: right;
  position: relative;
  overflow: hidden;
}

.breadcrumbs .container {
  position: relative;
}

.breadcrumbs .container::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 4000px;
  left: calc(var(--width-sidebar) + 50px);
  top: -15px;
  background-color: #e0e0e0;
}

.breadcrumbs ul {
  margin: 0;
}

.breadcrumbs ul li {
  display: inline-block;
}

.breadcrumbs ul li+li {
  padding-left: 11px;
}

.breadcrumbs ul li+li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  background: transparent url(../img/icons/right-arrow.svg) center no-repeat;
  background-size: cover;
  position: relative;
  margin-right: 11px;
}

.breadcrumbs li a {
  color: #000;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs ._active {
  color: var(--color-main);
}

.pagination {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 10px -5px 20px;
}

.pagination__item {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  padding: 0 5px;
  line-height: 1.5;
}

.pagination__item a {
  position: relative;
  display: block;
  padding: 5px;
  line-height: 1.25;
  min-height: 32px;
  min-width: 32px;
  color: #000;
  text-align: center;
  background-color: var(--color-light);
}

.pagination__item a:hover {
  color: var(--color-main);
}

.pagination__item._active a,
.pagination__item._active a:hover {
  color: #fff;
  background-color: var(--color-main);
}

.header__top {
  height: 42px;
  padding: 8px 0;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  background-color: var(--color-dark);

}

.header__top ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.header__top a {
  color: #fff;
}

.header__top-right {
  display: flex;
  align-items: center;
}

.header__top-right a {
  margin-left: 22px;
}

.header__top-right img {
  width: 20px;
  height: 20px;
}

.header__main {
  position: relative;
}

.header .logo {
  position: absolute;
  display: inline-block;
  z-index: 22;
  top: 5px;
  left: 15px;
}

.header .logo img {
  position: absolute;
  display: block;
  width: calc(var(--width-sidebar) - 30px);
  height: auto;
  left: 0;
  top: 6px;
}

.navbar {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  top: 0;
  right: 0;
  padding: 0;
  background-color: #fff;
  padding-top: 36px;
  z-index: 20;
}

.navbar .navbar__list {
  position: relative;
  display: flex;
  padding: 5px 0;
  margin: 15px 0 5px;
}

.navbar__list>li {
  position: relative;
  margin-left: 30px;
}

.navbar__list a {
  display: block;
  padding: 15px 0;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.navbar__list ._active>a,
.navbar__list a:hover {
  color: var(--color-main);
}

.header__phones {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  padding: 10px 0;
  text-align: right;
  z-index: 20;
}

.header__phones a {
  margin: 8px 0 8px 30px;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}

.header__phones .btn {
  font-size: 12px;
  color: #fff;
  padding: 2px 15px;
  height: 28px;
  line-height: 24px;
  margin-top: 8px;
  min-width: 185px;
}

.mobile-social {
  display: none;
  padding: 10px 10px 0;
}

.navbar .mobile-social a {
  display: inline-block;
  color: #fff;
  margin-right: 20px;
  width: auto;
}

.mobile-social img {
  width: 28px;
  height: 28px;
}

.second-menu {
  position: absolute;
  right: 0;
  top: 50px;
  min-width: 280px;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  transform: translateY(60px);
}

.navbar__list .second-menu a {
  padding: 8px 0;
}

.navbar__list>.navbar__catalog {
  position: static;
}

.second-menu_big {
  position: absolute;
  width: 100%;
  top: 50px;
  right: 0;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 8px 34px rgb(0 0 0 / 20%);
  visibility: hidden;
  opacity: 0;
  transform: translateY(60px);
}

.second-menu_big ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.second-menu_big li a {
  padding: 20px 20px 40px;
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #000;
  text-transform: none;
  cursor: pointer;
}

.second-menu li a {
  font-weight: 400;
}

.navbar__catalog:hover>a,
.navbar__catalog._active>a,
.second-menu_big li a:hover,
.second-menu_big ._active a,
body .second-menu a:hover,
body .second-menu ._active a {
  color: var(--color-main);
}

.second-menu_big li img {
  width: 84px;
  height: auto;
  float: left;
  margin-right: 22px;
}

.burger {
  position: relative;
  width: 30px;
  height: 20px;
  display: none;
  border: none;
  padding: 0;
  right: 0;
  background-color: transparent;
  cursor: pointer;
}

.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  background-color: var(--color-main);
  transform: translateY(-50%);
  transition: opacity 0.3s ease-in-out;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-main);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, bottom 0.3s ease-in-out;
}

.burger::before {
  top: 0;
}

.burger::after {
  bottom: 0;
}

.burger._active {
  position: fixed;
}

.burger._active .burger__line {
  opacity: 0;
}

.burger._active::before {
  top: 50%;
  transform: rotate(45deg);
}

.burger._active::after {
  bottom: auto;
  top: 50%;
  transform: rotate(-45deg);
}

.navbar_mobile {
  display: none !important;
  position: relative;
}

.navbar_mobile__l2,
.navbar_mobile__l3 {
  position: static !important;
}

.navbar_mobile__l2>ul,
.navbar_mobile__l3>ul {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  display: block;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: transform .2s linear;
  background-color: var(--color-dark);
}

.navbar_mobile__l2._show>ul,
.navbar_mobile__l3._show>ul {
  transform: translateX(0%);
}

.n_m__l2-show::after,
.n_m__l3-show::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: bottom;
  margin-left: 9px;
  background: url(../img/icons/right.svg) center no-repeat;
  background-size: contain;
  opacity: .7;

}

.navbar_mobile__category a {
  display: inline-block;
  width: auto !important;
  min-width: 208px;
  padding-bottom: 10px !important;
  margin-bottom: 10px;
  border-bottom: 2px solid #777;
  position: relative;
}

.navbar_mobile__category a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 9px solid #777;
    bottom: -9px;
    left: -1px;
}

.n_m__l2-close::before,
.n_m__l3-close::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  vertical-align: bottom;
  background: url(../img/icons/left.svg) center no-repeat;
  background-size: contain;
  opacity: .7;
}

.no-scroll {
  overflow: hidden;
}

@media (min-width: 992px) {
  .navbar__list>li:hover .second-menu,
  .navbar__catalog:hover .second-menu_big {
    visibility: visible;
    opacity: 1;
    transform: translateY(1px);
    transition: all 0.4s ease-in-out;
  }

  .navbar__list>li {
    margin-left: 10px;
  }

  .header__main > .container {
    position: relative;
    padding-right: 150px;
  }

  .header__main > .container:after {
    content: '';
    position: absolute;
    top: 18px;
    right: 16px;
    width: 92px;
    height: 110px;
    background: url(../img/sk_top.png) top right no-repeat;
    background-size: contain;
  }
}

@media (min-width: 1050px) {
  .navbar__list>li {
    margin-left: 14px;
  }
}

@media (min-width: 1240px) {
  .navbar__list>li {
    margin-left: 23px;
  }
}

@media (min-width: 1420px) {
  .second-menu_big {
    width: 1006px;
  }

  .second-menu_big ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1419.98px) and (min-width: 992px) {
  .header__main > .container {
    padding-left: 320px;
  }
  .header__phones {
    max-width: 840px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .header__phones .btn {
    margin-top: 0;
  }
  .navbar .navbar_desktop {
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 60px;
  }
  .navbar__list>li a {
    padding: 0 0 14px;
  }
  .navbar .second-menu,
   .navbar .second-menu_big {
    top: 35px;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .header__main > .container {
    padding-left: 250px;
  }
}

@media (max-width: 991.98px) {
  .header .logo {
    position: relative;
    left: 0;
  }

  .header .logo img {
    position: relative;
  }

  .breadcrumbs::before {
    display: none;
  }

  .breadcrumbs {
    background-color: transparent;
    margin-top: -5px;
  }

  .burger {
    display: block;
    position: absolute;
    top: 22px;
    right: 15px;
    z-index: 125;
  }

  .burger._active {
    position: fixed;
    top: 64px;
  }

  .navbar_desktop {
    display: none !important;
  }

  .navbar_mobile {
    display: block !important;
  }

  .navbar {
    position: fixed;
    display: block;
    right: 0;
    top: 0;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px 60px 20px 40px;
    width: 100%;
    height: 100vh;
    background-color: var(--color-dark);
    transform: translateX(102%);
    transition: transform 0.6s ease-in-out;
    z-index: 124;
  }

  .navbar__list {
    overflow: hidden;
  }

  .navbar__list a,
  .header__phones a {
    color: #f1f1f1;
    font-weight: 400;
  }

  .navbar._visible {
    transform: none;
    transition: transform 0.6s ease-in-out;
  }

  .navbar__list {
    flex-direction: column;
  }

  .navbar__list li {
    width: 90%;
    margin: 3px 0 3px 10px;
  }

  .navbar li:not(:last-child) {
    margin-right: 0;
  }

  .navbar li a {
    display: inline-block;
    width: 100%;
    padding: 5px 0;
  }

  .header__phones {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }

  .header__phones a {
    margin-left: 10px;
    min-width: 100px;
  }

  .mobile-social {
    display: block;
  }

  .navbar .logo img {
    width: 130px;
  }

  .header__top {
    display: none;
  }

  .burger {
    top: 22px;
  }

  .burger._active {
    top: 22px;
  }
}

@media (max-width:500px) {
  .navbar {
    padding: 20px 40px 20px 20px;
  }
}

/* sliders */

.wrapper-slider-big {
  position: relative;
  padding-left: var(--width-sidebar);
}

.wrapper-slider-big .swiper-slide::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.slider-big_banner .btn,
.slider-big .btn {
  margin: 15px 0;
}

.slider-big_banner .btn::after,
.slider-big .btn::after {
  background-color: var(--color-main);
}

.slider-big_banner,
.slider-big {
  width: 100%;
  height: 520px;
}

.slider-big_banner {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

@media (min-width:1330px) {
  .slider-big_banner .btn {
    position: absolute;
    margin: 0;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}

.slider-big_banner .swiper-slide,
.slider-big .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  background-color: var(--color-dark);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: transparent;
  background: transparent url(../img/icons/right.svg) center no-repeat;
  background-size: 32px 32px;
}

.swiper-button-prev {
  background-image: url(../img/icons/left.svg);
}

.slider-big .swiper-pagination {
  text-align: left;
  padding-left: 55px;
}

.swiper-pagination-bullet {
  width: 36px;
  height: 4px;
  border-radius: 0;
  opacity: 1;
  margin: 0 5px;
  background: rgba(250, 250, 250, 0.4);
}

.swiper-pagination-bullet-active {
  background: var(--color-main);
}

.swiper-slide img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-big__text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-shadow: 2px 3px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  text-align: left;
  padding: 30px 60px;
  max-width: 700px;
  z-index: 4;
}

.slider-big__text-header {
  font-size: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.slider-carousel {
  height: 280px;
  padding: 50px 43px;
}

.slider-carousel .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 10px 20px;
}

.slider-carousel .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.bottom-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4,auto);
  gap: 24px;
  padding: 20px 20px 20px 18px;
  z-index: 5;
}

.bottom-links__item {
  display: flex;
  gap: 15px;
  align-items: center;
  line-height: 1.15;
  color: #fff;
}

.bottom-links__item-img {
  display: block;
  width: 35px;
  height: 35px;
}

.bottom-links__item-text {
  color: inherit;
  font-size: 16px;
}

a.bottom-links__item-text:hover {
  color: var(--color-main-light);
}

.slider-big_banner .slider-big__text {
  padding-bottom: 60px;
}

.bottom-links-wrapper {
  padding-top: 70px;
}

.bottom-links-wrapper .container {
  position: relative;
}

.bottom-links-wrapper .container::before,
.bottom-links-wrapper .container::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: -200%;
  margin-left: 10px;
  background-color: rgba(255, 255, 255, .2);
}

.bottom-links-wrapper .container::after {
  left: auto;
  right: -200%;
  margin: 0 10px 0 0;
}

body .banner_top-menu {
  padding-bottom: 0 !important;
}

.banner_top-menu .bottom-links {
  position: relative;
  grid-template-columns: repeat(5,1fr);
  gap: 5px;
  padding: 0;
}

.banner_top-menu .bottom-links__item {
  gap: 0;
}

.banner_top-menu .bottom-links__item-text {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  min-height: 78px;
  padding: 20px 5%;
  background-color: rgba(255, 255, 255, .2);
}

.banner_top-menu .bottom-links__item-text:hover {
  color: #fff;
  background-color: var(--color-main);
}

.banner_top-menu .banner_top-border {
 height: 40px;
}

.banner_top-menu .banner_top-border::before {
  top: 30px;
  height: 40px;
}

@media (min-width: 1400px) {
  .bottom-links__item {
    max-width: 305px;
  }
}

@media (max-width: 1400px) {
  .banner_top-menu .bottom-links__item-text {
    padding: 20px 15px;
    font-size: 14px;
  }
}

@media (max-width: 950px) {
  .banner_top-menu .bottom-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner_top-menu .bottom-links__item:first-of-type {
    grid-column: span 2;
  }
}

@media (max-width: 650px) {
  .slider-big_banner {
    height: 580px;
    min-height: 80vh;
  }
  .slider-big_banner .slider-big__text {
    padding: 30px 20px 230px;
  }
  .bottom-links {
    grid-template-columns: repeat(1,auto);
    gap: 10px;
    padding: 0 20px 15px;
  }
}

@media (max-width: 450px) {
  .slider-big_banner {
    height: 650px;
  }
  .banner_top-menu .bottom-links {
    grid-template-columns: repeat(1, 1fr);
  }
  .banner_top-menu .bottom-links__item:first-of-type {
    grid-column: 1;
  }
}

.section_gallery {
  background-color: var(--color-light);
  padding: 50px 0;
}

.section_gallery .swiper-button-next {
  background-image: url(../img/icons/right-black.svg);
}

.section_gallery .swiper-button-prev {
  background-image: url(../img/icons/left-black.svg);
}

.section_gallery .swiper-slide {
  padding: 0;
  overflow: hidden;
}

.section_gallery .swiper-slide a {
  display: block;
}

.section_gallery .swiper-slide img {
  max-width: 120%;
  max-height: 120%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.section_partners {
  background-color: var(--color-main);
}

.section_partners .section__title {
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 1520px) {
  .section_partners .section__title {
    margin-left: 43px;
  }

  .section_partners .container {
    width: 1488px;
  }
}


.sidebar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--width-sidebar);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page__aside .sidebar {
  position: relative;
  bottom: auto;
}

.sidebar__list {
  width: 100%;
  list-style: none;
  padding: 36px 0 0;
  margin: 0;
}

.sidebar__list>li:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 139, 209, 0.4);
}

.sidebar-header {
  font-size: 18px;
  padding: 14px 15px 22px;
  color: var(--color-main);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-bottom: none !important;
}

.sidebar__list>li>a {
  position: relative;
  color: #000;
  display: block;
  padding: 14px 28px 14px 15px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
}

.sidebar__list>li._active>a,
.sidebar__list>li>a:hover,
.sidebar__second:hover>a {
  background-color: var(--color-main);
  color: #fff;
}

.sidebar__second {
  position: relative;
}

.sidebar__second:hover>a::after {
  content: '\1F862';
  position: absolute;
  right: 14px;
}

.sidebar__second .second-menu {
  top: 0;
  left: 0;
  transform: translateX(400px);
  width: 300px;
}

.sidebar__second .second-menu_big {
  top: 0;
  left: 0;
  transform: translateX(400px);
  width: calc(var(--width-sidebar) * 2);
  padding: 20px 5px 5px;
}

.sidebar__second .second-menu a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.sidebar__second .second-menu_big ul {
  padding: 0 5px;
  grid-template-columns: repeat(2, 1fr);
}

.sidebar__second:hover .second-menu,
.sidebar__second:hover .second-menu_big {
  transform: translateX(calc(var(--width-sidebar) - 1px));
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease;
}

@media (max-width: 991.98px) {
  .sidebar {
    display: none;
  }

  .wrapper-slider-big {
    padding-left: 0;
  }
}

.how {
  padding: 110px 0;
}

.how__item {
  min-height: 96px;
  position: relative;
  color: #000;
  box-shadow: 2px 6px 34px rgba(0, 0, 0, 0.15);
  padding: 0 30px 0 126px;
  transition: color 0.2s ease;
}

.how__item:hover {
  color: #fff;
}

.how__item::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.how__item:hover::after {
  width: 100%;
  background-color: var(--color-main);
}

.how__img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  min-width: 96px;
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  z-index: 3;
}

.how__count {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  min-width: 60px;
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  z-index: 3;
}

.how__text {
  padding: 5px;
  position: relative;
  z-index: 3;
}

.how__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 10px 0 7px;
}

.how__text p {
  margin: 0 0 10px;
}

.how_2 {
  background-color: var(--color-light);
  padding: 80px 0 120px;
}

.how_2 .section__title {
  margin-bottom: 60px;
}

.how_2 .how__item {
  background-color: #fff;
  min-height: 140px;
  padding: 0 24px 0 70px;
}

.how_2 .how__item+.how__item::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: transparent url(../img/icons/right-black.svg) center no-repeat;
  background-size: 42px 42px;
}

.how_small .how__item {
  min-height: 78px;
  padding-left: 60px;
}

.how_small .how__img {
  aspect-ratio: auto;
  background-color: transparent;
  min-width: 60px;
}

.how_small .how__img img {
  width: 30px;
  height: 30px;
}

.how_small .how__img .how__img__2 {
  width: 46px;
  height: 46px;
}

.how_small .how__text {
  text-align: center;
}

.how_small .how__item:hover {
  color: var(--color-main);
}

.how_small .how__item:hover::after {
  background-color: var(--color-light);
}

.how_small .how__item_color {
  color: #fff;
  background-color: var(--color-main);
}

.how_small .how__item_color:hover {
  color: #fff;
}

.how_small .how__item_color:hover::after {
  background-color: rgba(255, 255, 255, 0.2);
}

.list-brands {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px;
  margin: 30px 0;
}

.list-brands__link {
  display: flex;
  flex-basis: auto;
  flex-grow: 1;
  min-height: 32px;
  padding: 0 6px;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  font-size: 16px;
  line-height: 18px;
  border: 1px solid var(--color-main);
}

.list-brands__link:hover {
  color: #fff;
  background-color: var(--color-main);
}

.list-brands_metal {
  margin-bottom: 80px;
}

.list-brands_metal .list-brands__link {
  min-height: 68px;
  font-size: 18px;
  padding: 0 45px;
  min-width: 16%;
}

@media screen and (max-width: 1400px) {
  .list-brands__link {
    min-width: 22%;
  }

  .list-brands_metal .list-brands__link {
    padding: 0 25px;
    min-width: 18%;
  }
}

@media (max-width: 992.98px) {
  .how_2 .how__item+.how__item::before {
    top: 0%;
    margin-top: -50px;
    left: 50%;
    margin-left: -30px;
    transform: rotate(90deg);
  }
}

.product {
  background-color: white;
  display: grid;
  grid-template-columns: fit-content(50%) fit-content(50%);
  gap: 40px;
  position: relative;
  padding: 0 0 40px;
}

.product__gallery {
  width: 100%;
  max-width: 640px;
  margin: 0 0 50px;
  position: relative;
  overflow: hidden;
}

.product__gallery * {
  user-select: none;
}

.product__slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}

.product__slider .swiper-slide {
  width: 100%;
  height: auto;
}

.product__slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.product__thumbs .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  opacity: 0.3;
  cursor: pointer;
}

.product__thumbs .swiper-slide-active {
  opacity: 1;
}

.product__thumbs .swiper-slide img {
  width: auto;
  height: 100%;
}

.product__slider .swiper-button-next,
.product__slider .swiper-button-prev {
  height: 44px;
  width: 44px;
  margin-top: -14%;
  background-color: rgba(0, 0, 0, 0.5);
}

.product__slider .swiper-button-next {
  right: 0;
}

.product__slider .swiper-button-prev {
  left: 0;
}

.product .product__text {
  margin-top: 0;
}

@media (max-width: 1300px) {
  .how_small .row {
    flex-wrap: wrap;
  }

  .how_small .row__col {
    width: 40%;
  }
}

@media (max-width: 991.98px) {
  .product {
    grid-template-columns: repeat(1, 1fr);
  }

  .product__gallery {
    margin: 0 auto 20px;
  }
}

@media (max-width: 500px) {
  .how_small .row__col {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}


.tab__tabs {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border-bottom: 3px solid var(--color-main);
}

.tab__link {
  color: #000;
  background-color: var(--color-light);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 20px;
  transition: all .2s ease;
}

.tab__link:hover {
  background-color: #e0e0e0;
}

.tab__link._active,
.tab__link._active:hover {
  color: #fff;
  background-color: var(--color-main);
}


.tab__content {
  padding: 15px 0 25px;
}

.tab__content .form {
  max-width: 500px;
}

[data-tab-content] {
  display: none;
}

._active[data-tab-content] {
  display: block;
}


.catalog {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: var(--color-light);
}

.catalog .container {
  max-width: 1140px;
  margin: 0 auto;
}

.catalog .grid {
  padding: 50px 0 65px;
}

.catalog__item {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  padding: 60% 30px 20px;
  width: 100%;
  min-height: 328px;
  position: relative;
  margin-top: 44px;
  transition: color 0.2s ease;
}

.catalog__item:hover {
  color: #fff;
}

.catalog__item::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background-color: #fff;
  transition: height 0.3s ease;
}

.catalog__item:hover::after {
  height: 100%;
  background-color: var(--color-main);
}

.catalog__img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 65%;
  aspect-ratio: 1 / 1;
  top: 0;
  left: 50%;
  padding: 10%;
  transform: translate(-50%, -15%);
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 4;
}

.catalog__img img {
  width: 100%;
  height: auto;
}

.catalog__item h3, 
.catalog__item p {
  position: relative;
  z-index: 4;
  font-size: 20px;
}

.page .catalog .section__title {
  text-align: left;
}

.page .catalog__item {
  background-color: var(--color-light);
}

.section_234 .how,
.page .catalog .how {
  padding-bottom: 20px;
}

.section_234 .how .row,
.page .catalog .how .row {
  flex-basis: auto;
  flex-direction: row;
  gap: 15px;
}

.section_234 .how__item,
.page .catalog .how__item {
  width: auto;
  min-height: 58px;
  padding: 0 15px;
  justify-content: center;
}

.catalog_big .container {
  max-width: 1400px;
  padding-top: 25px;
}

.catalog_big .catalog__img {
  padding: 5%;
}

.catalog_big .catalog__item:hover {
  color: inherit;
}

.catalog_big .catalog__item::after {
  display: none;
}

.catalog_big .catalog__item .btn {
  display: block;
  text-transform: none;
  min-width: 180px;
  height: auto;
  line-height: 1.2;
  padding: 13px;
  margin: 10px 0 0;
}

.catalog_big .text li {
  padding-bottom: 7px;
  font-weight: 400;
}

.catalog_big .row_bottom {
  text-align: left;
  align-items: center;
  gap: 30px;
}

.catalog_big .row_bottom>div {
  display: flex;
}

.catalog_big .row_bottom .btn {
  margin: 0;
}

@media (max-width: 991.98px) {
  .how {
    padding: 60px 0;
  }

  .catalog .container,
  .page .catalog {
    max-width: 780px;
  }

  .catalog__item {
    min-height: 200px;
  }
}

@media (max-width: 600px) {

  .catalog .container,
  .page .catalog {
    max-width: 360px;
  }
}

.services .grid {
  grid-template-columns: repeat(2, 1fr);
  padding: 0 0 25px;
}

.service__item {
  display: block;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  text-transform: uppercase;
}

.service__item p {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  letter-spacing: 0.03em;
  padding: 5px 20px;
}

.service__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
  position: relative;
}

.service__item:hover img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}


.service__item::after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.service__item:hover::after {
  background-color: rgba(7, 53, 109, 0.75);
}

@media (max-width: 740px) {
  .services .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


.news {
  background-color: var(--color-light);
}

.news .grid {
  padding: 40px 0;
}

.news__item {
  padding: 0;
  text-align: left;
  margin: 0;
}

.news .news__item {
  color: #000;
  background-color: #fff;
  position: relative;
  transition: color 0.2s ease-out;
}

.news__text {
  padding: 5px 30px 30px;
}

.news__img {
  height: 200px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}

.news .news__item:hover .news__img img {
  transform: scale(1.1);
}

.news__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 24px 0 10px;
}

.news__text {
  position: relative;
  z-index: 3;
}

.news__text p {
  margin: 10px 0;
}

.news__text .bold {
  font-weight: 600;
  color: #000;
}

.news .news__item:hover * {
  color: #fff;
}

.news__item::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: #fff;
  transition: width 0.4s ease;
}

.news__item:hover::after {
  width: 100%;
  background-color: var(--color-main);
}

.page .news .grid_4 {
  grid-template-columns: repeat(2, 1fr);
}

.page .news__item {
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.1);
  ;
}

.news__date {
  color: #3a3a3a;
  font-size: 12px;
  display: block;
  margin: 0 0 7px;
}

.publications {
  padding: 0 0 30px;
}

.publications .news__item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 20px;
}

.publications .news__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  line-height: 1.25;
  padding: 0 30px;
}

.publications .news__text * {
  margin-top: 0;
}

.publications .news__title {
  font-size: 22px;
  text-transform: none;
  margin: 0 0 10px;
}

.publications .news__text a {
  color: inherit;
  text-decoration: underline;
}

.publications .news__text a:hover {
  color: var(--color-main);
  text-decoration: none;
}

.publications .news__img {
  aspect-ratio: 1/1;
  width: 200px;
  min-width: 200px;
  height: auto;
}

.publications .news__item:hover * {
  color: #000;
}

.publications .news__item::after {
  display: none;
}


.publications .news__item:hover .news__img img {
  transform: none;
}

@media (max-width: 600px) {
  .news__img {
    display: none;
  }
  .publications .news__title {
  font-size: 18px;
  }
  .page .news .grid_4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.promo {
  padding: 0;
}

.promo .grid {
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.promo .grid__col {
  padding: 0;
  margin: 0;
}

.promo_grdnt {
  background: linear-gradient(90deg, rgb(60, 174, 231) 0%, rgb(0, 78, 117) 100%);
}

.promo_grdnt .promo__text {
  background: none;
}

.promo_grdnt .promo__text p {
  font-size: 16px;
  padding-bottom: 24px;
  width: 100%;
}

.promo_grdnt .promo__text p::after {
  background-image: url(../img/icons/rez.svg);
  width: 34px;
  height: 34px;
  background-size: 34px 34px;
}

.promo_grdnt_2 .promo__text p::after {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .25);
  background-image: url(../img/icons/check-white.svg);
  background-size: 26px 26px;
}

.promo_grdnt .container .promo__text {
  padding-left: 0;
  padding-right: 0;
}

.promo_gray {
  background: var(--color-light);
}

.promo_gray * {
  color: #000 !important;
}

.promo_gray .promo__text p {
  padding-left: 60px;
}

.promo_gray .promo__text p::after {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-main);
  background-image: url(../img/icons/check.svg);
  background-size: 30px 30px;
}

.promo_grdnt .promo__text .header {
  display: block;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-size: 20px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.promo__text .big-icons p {
  padding-left: 58px;
}

.promo__text .big-icons p::after {
  top: -8px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background-color: rgba(12, 115, 166, .2);
  background-image: url(../img/icons/pump.svg);
  background-size: 22px 22px;
}

.block-btn-quiz {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 50px 0;
}

.block-btn-quiz .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  margin: 0;
  min-width: 240px;
  height: 68px;
  position: relative;
}

.block-btn-quiz .btn::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/icons/right.svg) center no-repeat;
  background-size: 30px 30px;
}

@media (max-width:600px) {
  .block-btn-quiz {
    gap: 20px;
    font-size: 16px;
    flex-direction: column;
    justify-content: center;
  }
}

.catalog-2 {
  padding: 60px 0;
}

.catalog-2_bg {
  position: relative;
  overflow: hidden;
  background-color: var(--color-dark);
}

.catalog-2 .container {
  position: relative;
  z-index: 5;
}

.catalog-2_bg__img {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/3.jpg) center no-repeat;
  background-size: cover;
  opacity: .25;
  -webkit-filter: grayscale(100%) blur(3px);
  filter: grayscale(100%) blur(3px);
}

.catalog-2_bg .section__title {
  color: #fff;
}

.catalog-2 .grid {
  grid-template-columns: repeat(5, 1fr);
  grid-template-columns: repeat(auto-fit, 18%);
  justify-items: center;
  justify-content: center;
  gap: 2.5%;
}

.catalog-2 .grid_3 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: repeat(auto-fit, 31%);
  gap: 3.5%;
  font-weight: 700;
}

.catalog-2 .grid_2 {
  grid-template-columns: repeat(2, 1fr);
}

.catalog-2 .grid__col {
  background: #fff;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  overflow: hidden;
}

.catalog-2 .grid__col img {
  display: block;
  max-width: 80%;
}

.catalog-2 .grid_3 img {
  width: 80px;
  height: 80px;
  margin-top: 20px;
}

.catalog-2 .container {
  max-width: 1400px;
}

.catalog-2_bg .grid_3 {
  grid-template-columns: repeat(auto-fit, 23.5%);
  gap: 2%;
}

.catalog-2_bg .grid__col {
  justify-content: flex-start;
}

.catalog-2_info .grid__col {
  padding: 30px 0 0;
  justify-content: flex-start;
  gap: 0;
  overflow: visible;
}

.catalog-2_info .grid__col img {
  max-height: 80%;
  margin: 20px auto;
}

.catalog-2_info-text {
  font-weight: 400;
}

.catalog-2_info-name {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.catalog-2_info-top,
.catalog-2_info-bottom {
  display: flex;
  align-items: center;
  text-align: left;
  text-transform: none;
  padding: 18px 25px;
  font-size: 18px;
  height: 180px;
  min-height: 40%;
  color: #fff;
  background-color: var(--color-dark);
}

.catalog-2_info-bottom {
  height: auto;
  padding: 30px 25px;
  background-color: var(--color-main);
}

.promo__item {
  text-align: left;
}

.promo .section__title {
  margin: 0 0 35px;
}

.promo__text_main .section__title,
.promo__text_dark .section__title {
  color: #fff;
  margin-bottom: 45px;
}

.promo__img {
  background: url(../img/3.jpg) center no-repeat;
  background-size: cover;
}

.promo__text {
  display: grid;
  color: #000;
  height: 100%;
  padding: 60px 45px 65px;
}

.grid_reverse .promo__item:last-of-type .promo__text {
  justify-content: end;
}

.promo__text_main,
.promo__text_dark {
  color: #fff;
  background-color: var(--color-main);
}

.promo__text_dark {
  background-color: var(--color-dark);
}

.promo__text-wrap {
  max-width: 640px;
}

.promo__text p {
  margin: 10px 0 0;
  position: relative;
  font-size: 18px;
}

.list-count,
.promo__text .list-count {
  counter-reset: item;
  font-size: 22px;
}

.list-count li,
.promo__text .list-count li {
  counter-increment: item;
  margin-top: 15px;
  padding-left: 60px;
  position: relative;
  padding-bottom: 15px;
}

.list-count li:before,
.promo__text .list-count li:before {
  position: absolute;
  top: 1px;
  left: 14px;
  font-size: 24px;
  font-weight: 600;
  content: counter(item);
  color: inherit;
  z-index: 2;
}

.list-count li:after, 
.promo__text .list-count li:after {
  content: '';
  position: absolute;
  background-color: var(--color-main);
  top: -6px;
  left: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  opacity: 0.25;
  z-index: 1;
}

.promo__text_main .list-count li:after,
.promo__text_dark .list-count li:after {
  background-color: #fff;
}

.list-count li a,
.promo__text li a {
  color: inherit;
  text-decoration: underline;
}

.list-count li a:hover,
.promo__text li a:hover {
  text-decoration: none;
}

.promo__text_light p,
.promo__text_main p,
.promo__text_dark p {
  margin-top: 10px;
  padding-left: 50px;
  position: relative;
  padding-bottom: 10px;
  font-size: 20px;
}
.promo__text_light p::after,
.promo__text_main p::after,
.promo__text_dark p::after {
  content: '';
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 0;
  left: -1px;
  background: url(../img/icons/right.svg) center no-repeat;
  background-size: 24px 24px;
}

.promo__text_light p::after {
 background-image: url(../img/icons/right-black.svg);
}

.promo__text_main .text p {
  padding: 0;
}

.promo__text_main .text p::after {
  display: none;
}

.wrapper-video {
  position: relative;
  padding-bottom: 61%;
  padding-top: 25px;
  height: 0;
  margin: 5px 0 35px;
}

.wrapper-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.promo .wrapper-video {
  margin: 65px 0 70px;
}

.promo .btn {
  margin-bottom: 20px;
}

.promo .text .btn {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .promo__item_2 .section__title {
    text-align: center;
    position: relative;
    transform: translateX(-50%);
    margin: 0 0 20px -32px;
    min-height: 80px;
  }
}

@media (max-width: 991.98px) {
  .catalog-2 .container {
    max-width: 400px;
  }

  .catalog-2 .grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .promo__text-wrap {
    max-width: 1000px;
  }

  .hidden_sm {
    display: none;
  }

  .promo .grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .promo__text {
    padding: 50px 15px;
  }

  .promo__text,
  .grid_reverse .promo__text {
    justify-content: space-around;
  }

  .promo__img {
    display: none;
  }

  .promo .wrapper-video {
    margin: 5px 0 65px;
  }
}

.answer .row {
  display: block;
  padding: 8px 0 0;
}

.answer .row__col {
  margin: 15px 0;
}

.answer__item {
  position: relative;
  padding: 10px 0 30px 60px;
  user-select: none;
  cursor: pointer;
}

.answer__item:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}

.answer__img {
  position: absolute;
  left: -1px;
  top: 25px;
  background-color: #fff;
  width: 32px;
  height: 32px;
  z-index: 3;
  background: url(../img/icons/plus.svg) center no-repeat;
  background-size: 30px 30px;
  transition: background-image 0.3s ease-out;
}

.answer__text {
  padding: 5px 20px;
  position: relative;
  z-index: 3;
}

.answer__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 15px 0 15px;
}

.answer__text p {
  margin: 10px 0;
}

.answer__text-toggle {
  visibility: hidden;
  max-height: 0;
  transition: visibility 0.4s ease-out, max-height 0.5s linear;
  overflow: hidden;
}

.answer__item._open .answer__img {
  background-image: url(../img/icons/minus.svg);
}

.answer__item._open .answer__text-toggle {
  visibility: visible;
  max-height: 280px;
  transition: visibility 0.4s ease-out, max-height 0.5s linear;
}

.page {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 44px;
  padding-bottom: 30px;
}

.page .section {
  padding-top: 30px;
}

.page__main .section__title {
  margin-bottom: 64px;
}

.page__main {
  position: relative;
  z-index: 2;
  flex-basis: auto;
  /* flex-basis: calc(80vw-(var(--width-sidebar)-30px)); */
}

.page__aside {
  position: sticky;
  top: 0;
  padding: 10px 0 30px;
  flex-basis: var(--width-sidebar);
  z-index: 3;
}

.page .section {
  background-color: transparent;
}

.text {
  font-size: 18px;
  padding: 0 0 20px;
  text-align: left;
  margin-top: 25px;
  overflow: hidden;
}

.text h2,
.text h3 {
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 20px;
}

.text h4,
.text h5 {
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 12px;
}

.text p {
  font-size: 18px;
  margin: 0 0 22px;
}

.text ul,
.text ol {
  margin: 0 0 22px;
}

.text ul li,
.text ol li {
  position: relative;
  padding: 0 0 10px 22px;
}

.text ul li::before {
  content: '';
  position: absolute;
  display: block;
  left: -1px;
  top: 1px;
  width: 20px;
  height: 20px;
  background: url(../img/icons/right-black.svg) center top no-repeat;
  background-size: 18px 18px;
  opacity: 0.5;
}

.banner__wrap-text_2 {
  display:flex; 
  gap:30px;
  padding-top:1em;
  justify-content: space-between;
}

.banner__wrap-text_2 p {
  margin-top: 0;
}

@media (max-width:991.98px) {
  .banner__wrap-text_2 {
    flex-direction: column;
  }
}

.banner__wrap-text .text ul li::before {
background-image: url(../img/icons/right.svg);
}

.text ol {
  counter-reset: item;
}

.text ol li {
  counter-increment: item;
}

.text ol li:before {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 14px;
  font-weight: 700;
  content: counter(item);
  color: var(--color-dark);
}

.text p a,
.text li a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.text p a:hover,
.text li a:hover {
  text-decoration: none;
}

.promo .text ul,
.promo .text ol {
  margin-top: 25px;
}

.promo .text ol li:before {
  color: var(--color-light);
}

.promo .text ul li::before {
  background-image: url(../img/icons/right.svg);
}

.promo .text._dark ul li::before {
  background-image: url(../img/icons/right-black.svg);
}

.img-left {
  float: left;
  display: block;
  width: 38%;
  height: auto;
  margin: 2px 22px 22px 0;
}

.img-right {
  float: right;
  display: block;
  width: 38%;
  height: auto;
  margin: 2px 0 22px 22px;
}

.img-big {
  display: block;
  width: 100%;
  height: auto;
  margin: 2px 0 14px;
}

.block-quote {
  text-indent: 25px;
  color: #000;
  font-size: 125%;
  background: var(--color-light);
  padding: 32px 42px 34px;
  position: relative;
  margin: 0 0 20px;
}

.block-quote::before,
.block-quote::after {
  text-indent: 0px;
  content: '“';
  color: #777;
  font-size: 42px;
  position: absolute;
  top: 20px;
  left: 30px;
}

.block-quote::after {
  content: '„';
  top: auto;
  left: auto;
  right: 30px;
  bottom: 20px;
}

.block-quote_2 {
  margin: 80px 0;
  padding-left: 150px;
  text-indent: 0;
}

.block-quote_2::before,
.block-quote_2::after {
  display: none;
}

.table table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
}

.table tr:nth-of-type(odd) {
  background: var(--color-light);
}

.table th {
  background-color: var(--color-main);
  color: #fff;
  font-weight: 600;
}

.table td,
.table th {
  padding: 10px;
  border: 1px solid #c3c3c3;
  text-align: left;
  font-size: inherit;
}

.table_adapt tr:nth-of-type(odd) {
  background-color: transparent;
}

.table_adapt_2 tr td:first-child {
  background-color: #f1f1f1;
  font-weight: 600;
}

.table_adapt td a {
  color: inherit;
  text-decoration: underline;
}

@media screen and (max-width: 670px) {
  .table_adapt table {
    border: 0;
  }
  .table__thead {
    display: none !important;
  }
  .table_adapt tr {
    margin-bottom: 20px;
    display: block;
    border-bottom: 1px solid #c3c3c3;
  }
  .table_adapt td {
    display: flex;
    gap: 10px;
    text-align: right;
    font-size: 16px;
    border-bottom: 1px dotted #ccc;
  }
  .table_adapt td:last-child {
    border-bottom: 0;
  }
  .table_adapt td b {
    width: 50%;
    color: #000;
    font-weight: 700;
    text-align:left;
  }
  .table_adapt td b:before {
    content: attr(data-label);
  }
  .table_adapt td span {
    width: 50%;
    text-align:right;
  }
}

@media (max-width: 991.98px) {
  .answer__item {
    padding-left: 40px;
  }

  .page,
  .page__main {
    display: block;
    width: 100%;
  }

  .page__aside {
    display: none;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 10px 0 25px;
}

.gallery__item {
  overflow: hidden;
}

.gallery-column img,
.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-fslightbox],
.video-link {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}

[data-fslightbox]::before,
.video-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
}

[data-fslightbox]:hover::before,
.video-link:hover::before {
  transition: background-color 0.2s ease;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 5;
}


[data-fslightbox]::after,
.video-link::after {
  content: '';
  position: absolute;
  width: 42px;
  height: 42px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -150%);
  background: url(../img/icons/search.svg) center no-repeat;
  background-size: 30px 30px;
  opacity: 0;
}

.video-link::after {
  background-image: url(../img/icons/play.svg);
  background-size: 42px 42px;
}

[data-fslightbox]:hover::after,
.video-link:hover::after {
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 6;
}

[data-fslightbox] img,
.video-link img {
  display: block;
  position: relative;
}

.gallery-column {
  width: 100%;
  columns: 4;
  gap: 10px;
  padding: 30px 0 20px;
  aspect-ratio: 1/.6;
}

.gallery-column__item {
  overflow: hidden;
  padding-bottom: 10px;
}

.gallery-column .gallery-column__item:nth-of-type(1),
.gallery-column .gallery-column__item:nth-of-type(6) {
  height: 27%;
}

.gallery-column .gallery-column__item:nth-of-type(2),
.gallery-column .gallery-column__item:nth-of-type(7) {
  height: 73%;
}

.gallery-column .gallery-column__item:nth-of-type(3),
.gallery-column .gallery-column__item:nth-of-type(8) {
  height: 39%;
}

.gallery-column .gallery-column__item:nth-of-type(4),
.gallery-column .gallery-column__item:nth-of-type(9) {
  height: 25%;
}

.gallery-column .gallery-column__item:nth-of-type(5),
.gallery-column .gallery-column__item:nth-of-type(10) {
  height: 36%;
}

@media (max-width: 500px) {
  .gallery-column {
    columns: 2;
    aspect-ratio: 1/1.2;
  }
  .gallery-column .gallery-column__item:nth-of-type(6) {
    height: 35%;
  }
  .gallery-column .gallery-column__item:nth-of-type(7) {
    height: 30%;
  }
  .gallery-column .gallery-column__item:nth-of-type(8) {
    height: 53%;
  }
  .gallery-column .gallery-column__item:nth-of-type(9) {
    height: 45%;
  }
  .gallery-column .gallery-column__item:nth-of-type(10) {
    height: 37%;
  }
}





.tags {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -6px;
}

.tags__item {
  padding: 7px 6px;
}

.tags__item span {
  display: inline-block;
  padding: 7px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border: 1px solid var(--color-dark);
  white-space: nowrap;
  cursor: pointer;
}

.tags__item._active span {
  color: #fff;
  background-color: var(--color-main);
}

@media (max-width: 991.98px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}


.docs-list {
  padding: 20px 0 50px;
}

.docs-list__item {
  position: relative;
  display: block;
  padding-left: 40px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 400;
}

.docs-list__item::before {
  content: '';
  position: absolute;
  display: block;
  left: -1px;
  top: 2px;
  width: 29px;
  height: 40px;
  background: url(../img/icons/file.svg) center top no-repeat;
  background-size: 28px 28px;
}

.docs-list__item a {
  font-weight: 600;
  color: #000;
}

.docs-list__item a:hover {
  text-decoration: underline;
}

.docs-list__item small {
  display: block;
  font-size: 80%;
  color: #777;
}


.contacts-list {
  padding: 20px 0;
}

.contacts-list__item {
  position: relative;
  display: block;
  padding-left: 34px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 400;
}

.contacts-list__item::before {
  content: '';
  position: absolute;
  display: block;
  left: -1px;
  top: 2px;
  width: 22px;
  height: 22px;
  background: url(../img/icons/right-black.svg) center top no-repeat;
  background-size: 20px 20px;
}

.contacts-list__item a {
  display: inline-block;
  font-weight: 600;
  color: #000;
  margin: 0 7px;
}

.contacts-list__item a:hover {
  text-decoration: underline;
}

.contacts-list_icons {
  padding-top: 0;
  margin-top: 0;
}

.contacts-list_icons .contacts-list__item {
  padding-left: 40px;
  margin-bottom: 30px;
}

.contacts-list_icons .contacts-list__item small {
  display: inline-block;
  font-size: inherit;
  margin-bottom: 10px;
}

.contacts-list_icons ._phone::before {
    background-image: url(../img/icons/phone.svg);
}

.contacts-list_icons ._address::before {
    background-image: url(../img/icons/map.svg);
}

.contacts-list_icons ._time::before {
    background-image: url(../img/icons/time.svg);
}

.contacts-list_icons ._email::before {
    background-image: url(../img/icons/mail.svg);
}

.contacts .grid_2 {
  padding-top: 35px;
}

.contacts .grid_2 .docs-list {
  padding-bottom: 25px;
}

.contacts .btn {
  margin: 0 0 20px;
}

.map {
  height: 400px;
  overflow: hidden;
}

.map_geo {
    margin: 60px 0 30px;
}

.specialists {
  background-color: var(--color-light);
}

.specialists .grid {
  padding-top: 55px;
}

.specialists__item {
  background-color: #fff;
  padding: 15px 30px 32px;
  font-size: 16px;
  height: 100%;
}

.specialists__target {
  margin: 0;
  text-align: center;
  font-size: 14px;
  height: 90px;
}

.specialists__target a {
  font-weight: 600;
  color: #000;
  text-decoration: underline;
}

.specialists__target a:hover {
  text-decoration: none;
}

.specialists__img img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.specialists__name {
  font-size: 20px;
  font-weight: 600;
  margin: 14px 0;
}

.specialists__item-list li {
  display: block;
  margin-bottom: 9px;
  font-size: 16px;
  font-weight: 400;
}

.specialists__item-list a {
  display: inline-block;
  font-weight: 600;
  color: #000;
  margin: 0 3px;
}

.specialists__item-list a:hover {
  color: var(--color-main);
  text-decoration: underline;
}

.slider-spec {
  max-width: var(--width-sidebar);
  margin: 40px 0 0;
}

.slider-spec .specialists__item {
  padding: 12px 15px 30px;
  background-color: var(--color-light);
}

.page__main .specialists__item {
  padding: 35px 0 25px;
}


.banner {
  color: #fff;
  text-align: center;
  padding: 90px 0;
  background: var(--color-dark) url(../img/documents.webp) center fixed no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.banner_2 {
    background-image: url(../img/51783fe9d18e.jpeg);
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.banner .container {
  position: relative;
  z-index: 3;
}

.banner .section__title {
  color: #fff;
  text-shadow: 0 1px 2px rgba(255, 255, 255, .6);
}

.banner .section__title .bold {
  display: block;
  margin: 0.25em 0;
}

.banner .section__title .small {
  display: block;
  font-size: 60%;
  font-weight: 400;
  margin-top: 1em;
}

.banner__text {
  font-size: 22px;
}

.banner__agree {
  display: block;
  margin: 30px 0;
  font-size: 13px;
}

.banner_top {
  text-align: right;
  padding: 80px 0 260px;
  position: relative;
}

.banner_top .section__title {
  margin-bottom: 0;
}

.banner_top .bold {
  font-size: 1.25em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.banner__wrap {
  position: absolute;
  left: 50%;
  right: 0;
  bottom: 0;
  padding: 60px 50px 50px;
  z-index: 4;
  text-align: left;
}

.banner__wrap-text {
  font-size: 2em;
  font-weight: 600;
  letter-spacing: .05em;
  position: relative;
  z-index: 3;
  text-align: left;
  text-transform: uppercase;
}

.banner__wrap-text .small {
  font-size: 0.65em;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  margin: 0.5em 0;
}

.banner__wrap::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background-color: var(--color-main);
  opacity: .5;
  z-index: 2;
}

.banner__wrap::before {
  content: '';
  position: absolute;
  left: 20%;
  top: -25px;
  bottom: auto;
  right: 0;
  height: 50px;
  background-color: var(--color-light);
  opacity: .2;
  z-index: 1;
}
 
.banner_top-left {
  text-align: left;
  padding: 100px 0 120px !important;
  background-image: url(../img/bg01.jpg);
}

.banner_top-left .section__title {
 text-align: left;
 max-width: 980px;
}

.banner_top-border {
  left: -20%;
  position: relative;
  height: 70px;
  width: 90%;
  background-color: var(--color-main);
  opacity: .5;
  z-index: 2;
  margin-top: 2em;
  transform: skew(55deg, 0deg);
}

.banner_top-border::before {
  content: '';
  position: absolute;
  left: 25%;
  top: 40px;
  right: 10%;
  height: 60px;
  background-color: var(--color-light);
  opacity: .4;
  z-index: 1;
}

.banner_top-2 {
  padding-top: 160px;
  padding-bottom: 240px;
}

.banner_top-2 .bold {
  text-align-last: left;
  font-size: 1em;
  letter-spacing: 0.075em;
}

.banner__messanger {
  margin-top: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__messanger a {
  display: inline-block;
  border-radius: 25px;
}

.banner__messanger a + a {
  margin-left: 7px;
}

.btn_social {
  font-size: 26px;
  width: 42px;
  height: 42px;
  line-height: 40px;
  min-width: 42px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
}

.btn_social img {
  width: 30px;
  height: 30px;
  margin-top: 6px;
}

.banner .btn_social {
  display: inline-block;
  min-width: 42px;
  margin: 0;
}

.banner .btn_social + .btn_social {
  margin-left: 15px;
}

.form {
  display: grid;
}

.form .btn {
  margin: 0 0 10px;
}

.form_inline .btn {
  margin: 0;
  width: 100%;
}

.form_inline {
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  padding-bottom: 35px;
}

.form__group {
  margin: 0 0 20px;
}

.form_inline .form__group {
  margin: 0;
}

.banner .form__group_recaptcha {
  margin-bottom: 30px;
}

.form__group_recaptcha img {
  max-width: 100%;
  height: auto;
}

.input {
  display: block;
  width: 100%;
  height: 44px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  background-color: #fff;
  background-image: none;
  border: 1px solid #777;
  transition: all ease-in-out .15s;
}

textarea.input {
  height: auto;
}

.input:focus {
  border-color: var(--color-main);
}

.banner .input {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .5);
}

.banner .input:focus {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 1);
}

::-webkit-input-placeholder {
  color: #777 !important;
  opacity: .8;
}

::-moz-placeholder {
  color: #777 !important;
  opacity: .8;
}

:-moz-placeholder {
  color: #777 !important;
  opacity: .8;
}

:-ms-input-placeholder {
  color: #777 !important;
  opacity: .8;
}

.banner ::-webkit-input-placeholder {
  color: #fff !important;
  opacity: .8;
}

.banner ::-moz-placeholder {
  color: #fff !important;
  opacity: .8;
}

.banner :-moz-placeholder {
  color: #fff !important;
  opacity: .8;
}

.banner :-ms-input-placeholder {
  color: #fff !important;
  opacity: .8;
}

.search {
  width: 230px;
  margin: 6px 0;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #737373;
  display: flex;
  overflow: hidden;
  padding-left: 2px;
}

.search .input {
  height: 30px;
  font-size: 14px;
  border: none;
  border-radius: 20px 0 0 20px;
  background-color: transparent;
}

.search__btn {
  height: 30px;
  width: 40px;
  min-width: 40px;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}

.search__btn button {
  height: 30px;
  width: 40px;
  background: transparent url(../img/icons/search.svg) center no-repeat;
  background-size: 16px 16px;
  -webkit-filter: invert(100%);
  filter: invert(100%);
  cursor: pointer;
}

.search__btn button:hover {
  background-color: var(--color-main);
  -webkit-filter: invert(0%);
  filter: invert(0%);
}

@media (max-width: 1239.98px) {
  .search {
    width: 208px;
  }
}

:focus::-webkit-input-placeholder {
  opacity: 0;
}

:focus::-moz-placeholder {
  opacity: 0;
}

:focus:-moz-placeholder {
  opacity: 0;
}

:focus:-ms-input-placeholder {
  opacity: 0;
}

@media (max-width: 1100.98px) {
  .banner__wrap {
    padding: 40px 35px 20px;
  }
}

@media (max-width: 991.98px) {
  .banner_top {
    padding-bottom: 200px;
  }

  .banner_top-2 {
    padding-top: 60px;
    padding-bottom: 260px;
  }

  .banner_top .bold {
    font-size: 1em;
    letter-spacing: 0.05em;
  }

  .banner__wrap {
    font-size: 12px;
    left: 50px;
  }

  .form_inline {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    max-width: 400px;
    margin: auto;
  }
}

.modal,
.modalordercatalogitems,
.modal_video {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 5% 6%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  z-index: 222;
}

.modal__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 50px 45px;
  width: 520px;
  max-width: 92%;
  max-height: 95%;
  overflow-y: scroll;
}

.modal_video .modal__wrap {
  width: 850px;
  padding: 0;
}

.modal_video .wrapper-video {
  margin: 0;
}

.modal__content {
  position: relative;
  overflow-y: auto;
  color: #000;
  text-align: center;
}

.modal__close-catalog-btn {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 36px;
  line-height: 1;
  color: var(--color-dark);
  background: transparent;
  cursor: pointer;
}

.modal__close-catalog-btn:hover {
  color: var(--color-main);
}

.modal__close-btn {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 36px;
  line-height: 1;
  color: var(--color-dark);
  background: transparent;
  cursor: pointer;
}

.modal__close-btn:hover {
  color: var(--color-main);
}

.modal_video .modal__close-btn {
  top: -25px;
  right: -25px;
  color: #fff;
}

.modal._show,
.modalordercatalogitems._show,
.modal_video._show  {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modal__title {
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  color: #000;
}


.form__agree {
  font-size: 11px;
}

.form__agree a.bold {
  color: var(--color-main);
  text-decoration: underline;
}

.modal__text {
  font-size: 16px;
}


/* --- Footer --- */
.footer {
  padding: 20px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  background-color: var(--color-dark);
  overflow: hidden;
}

.footer .row {
  align-items: flex-start;
}

.footer .row__col {
  padding: 20px 0;
  align-items: flex-start;
}

.footer__logo {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-right: 5px;
}

.footer__skolkovo {
  display: none;
}

.footer__social {
  margin: 0 -8px;
  padding: 30px 0;
}

.footer__social a {
  display: inline-block;
  margin: 0 8px;
}

.footer__social img {
  width: 20px;
  height: 20px;
}

.footer .container {
  padding: 25px 15px 10px;
}

.footer__header {
  display: block;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #d1d1d1;
}

.footer__menu {
  display: block;
  margin: 0 0 20px;
  font-size: 14px;
}

.footer__menu li {
  display: block;
  margin-bottom: 7px;
}

.footer a {
  color: #fff;
}

.footer__menu a:hover,
.footer .copyright a {
  text-decoration: underline;
}

.footer__phone {
  margin: 17px 0 0;
  font-size: 18px;
}

.footer__phone+.footer__phone {
  margin-top: 7px;
}

.footer .copyright {
  margin: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.totop {
  position: fixed;
  top: 50%;
  right: -100px;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  background: var(--color-dark) url(../img/icons/arrow-up.svg) center no-repeat;
  background-size: 30px 30px;
  transition: all 0.4s ease;
  opacity: 0.6;
  cursor: pointer;
  z-index: 99;
}

.totop._visible {
  right: 0;
  transition: all 0.4s ease;
}

.totop:hover {
  opacity: 0.8;
}

@media (min-width: 992px) {
  .footer .row__col:last-of-type {
    justify-content: flex-end;
  }

  .footer__contacts {
    text-align: right;
  }
}

@media (max-width: 991.98px) {
  .footer .row,
  .footer .row__col {
    display: block;
    align-items: center;
    text-align: center;
  }

  .footer__menu {
    max-width: 600px;
    margin: 0 auto;
  }

  .footer__menu li {
    display: inline-block;
    padding: 3px 5px;
  }

  .footer__contacts .footer__menu li {
    display: block;
  }

  .footer .copyright .row__col {
    padding-bottom: 0;
  }

  .footer__skolkovo {
    display: inline-block;
    width: 120px;
    height: auto;
    margin-top: 10px;
    margin-left: 20px;
    vertical-align: top;
  }

  .totop {
    width: 40px;
    height: 40px;
    right: -85px;
    margin-top: -20px;
    background-size: 24px 24px;
  }
}