@charset "UTF-8";
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  --h-height: 178px;
  --w-width: 100vw;
  --w-height: 100vh;
  --box-gap: 35px;
}

*, :before, :after {
  box-sizing: inherit;
  flex: 0 1 auto;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font: normal normal 16px/1.75 Montserrat, sans-serif;
  color: #152D34;
  background-color: #e5ebd0;
}

header, footer {
  flex: 0 0 auto;
}

main {
  flex-grow: 1;
}

img,
iframe,
svg,
video {
  max-width: 100%;
  user-select: none;
}

img {
  height: auto;
}

a img {
  border: none;
}

a {
  color: #f3b00e;
}
a:active {
  color: #fff;
}

p {
  margin: 0 0 1.75em;
}
p:last-child {
  margin-bottom: 0;
}

small {
  font-size: 0.875em;
}

hr {
  margin: 1.25em 0;
  height: auto;
  border: none;
  border-top: 1px solid #f3b00e;
}

ul {
  list-style: square;
}
ul li::marker {
  color: #f3b00e;
}

ul, ol {
  padding: 0 0 0 1.2em;
  margin: 0 0 1.75em;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}

li {
  margin: 0 0 1.55em;
}
li:last-child {
  margin-bottom: 0;
}

*:focus {
  outline: none;
}

*:invalid {
  box-shadow: none;
}

blockquote {
  padding: 1em 0 1em 1.5em;
  border-left: 2px solid #f3b00e;
  background: linear-gradient(to right, rgba(130, 213, 255, 0.2), transparent);
  margin: 1.7em 0;
}
blockquote:first-child {
  margin-top: 0;
}
blockquote:last-child {
  margin-bottom: 0;
}

/*элементы форм */
input, textarea, button, select {
  font: inherit;
  color: inherit;
}

textarea {
  resize: none;
}

[type=search] {
  appearance: textfield;
}
[type=search]::-webkit-search-decoration, [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-results-button, [type=search]::-webkit-search-results-decoration {
  display: none;
}

label {
  user-select: none;
}

.text-input {
  display: block;
  width: 100%;
  min-width: 0;
  border-radius: 26px;
  border: 1px solid #f3b00e;
  font: normal 500 16px/normal Montserrat, sans-serif;
  padding: 15.5px 23px;
  color: #152D34;
  background-color: rgba(234, 240, 244, 0.5);
}
.text-input::-webkit-input-placeholder {
  color: #A5B8C2;
}
.text-input::-moz-placeholder {
  color: #A5B8C2;
}
.text-input:-ms-input-placeholder {
  color: #A5B8C2;
}
.text-input--white {
  background-color: #fff;
}
.text-input--dark {
  background-color: #eaf0f4;
}
.text-input--no-border {
  border-color: transparent;
}
.text-input--small {
  font-size: 14px;
  padding: 10px 18px;
}
.text-input--italic-placeholder:placeholder-shown {
  font-style: italic;
}

/*кастомный селект */
.select {
  display: block;
  position: relative;
  text-align: left;
  font-size: 16px;
  line-height: normal;
  color: #195a3ce6;
  cursor: pointer;
  user-select: none;
}
.select:after {
  content: "";
  display: inline-block;
  font: normal normal 10px/1 icomoon;
  position: absolute;
  top: calc(50% - .5em);
  right: 23px;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.2s ease;
}
.select--open:after {
  transform: scaleY(-1);
}
.select__input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.select__output {
  display: flex;
  align-items: center;
  gap: 1em;
  height: 52px;
  padding: 5px 50px 7px 25px;
  border: 1px solid #fff;
  border-radius: 26px;
  background-color: #fff;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.select__output-text {
  max-width: 100%;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select__icon {
  flex: 0 0 auto;
}
.select--invalid .select__output {
  color: red;
  border-color: red;
}
.select__input:disabled + .select__output {
  background-color: #F5F5F5;
  border-color: #F5F5F5;
  pointer-events: none;
}
.select__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  min-width: calc(100% - 50px);
  background-color: #fff;
  color: #000;
  border-radius: 12px;
  z-index: 3;
  max-height: 321px;
  overflow: auto;
  scrollbar-color: #195a3ce6 #D9D9D9;
  scrollbar-width: thin;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.select__list > li {
  margin: 0;
}
.select__list::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #D9D9D9;
  border-radius: 3.5px;
}
.select__list::-webkit-scrollbar-thumb {
  background: #195a3ce6;
  border-radius: 3.5px;
}
.select__list > li {
  padding: 12px 16px;
  cursor: pointer;
}
.select__list > li.selected {
  background-color: #F4F4F4;
  font-weight: 500;
}
.select__list > li.disabled {
  background-color: #A5B8C2;
  pointer-events: none;
  color: #fff;
}
.select--open .select__list {
  display: block;
}

/*кнопки */
button,
[type=submit],
[type=reset],
[type=image] {
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  vertical-align: top;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  max-width: 100%;
  user-select: none;
  text-decoration: none;
  text-align: center;
  text-shadow: none;
  font: normal 500 16px/1 Montserrat, sans-serif;
  background-color: #f3b00e;
  border: 1px solid #f3b00e;
  color: #fff;
  border-radius: 100px;
  padding: 8px 24px;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
}
.btn:active {
  transform: translateY(1px);
}
.btn--small {
  padding: 5px 18px;
  min-height: 44px;
}
.btn--white {
  background-color: #fff;
  color: #728792;
}
.btn--stroke {
  background: none;
  color: #728792;
}
.btn--no-stroke {
  border-color: transparent;
}

/*заголовки */
h1, h2, h3, h4, h5, h6 {
  line-height: normal;
  font-weight: 500;
  margin: 1.5em 0 1em;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

html {
  --h1: 40px;
  --h2: 40px;
  --h3: 28px;
  --h4: 20px;
  --h5: 18px;
}

h1 {
  font-size: var(--h1);
  line-height: 1;
  word-break: break-word;
}

h2 {
  font-size: var(--h2);
  line-height: 1;
  word-break: break-word;
}

h3 {
  font-size: var(--h3);
}

h4 {
  font-size: var(--h4);
  font-weight: 600;
}

h5 {
  font-size: var(--h5);
  line-height: inherit;
}

/*таблицы */
.wp-block-table {
  max-width: 100%;
  overflow: auto;
  margin: 1.7em 0;
}
.wp-block-table:first-child {
  margin-top: 0;
}
.wp-block-table:last-child {
  margin-bottom: 0;
}
.wp-block-table--overflow-left {
  -webkit-mask: linear-gradient(to right, transparent, black 15px);
}
.wp-block-table--overflow-right {
  -webkit-mask: linear-gradient(to left, transparent, black 15px);
}
.wp-block-table--overflow-both {
  -webkit-mask: linear-gradient(to right, transparent, black 15px, black calc(100% - 15px), transparent);
}


table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
  line-height: normal;
  font-weight: 500;
  --radius: 16px;
}

td, th {
  border: 1px solid #fff !important;
  padding: 1em 1.5em !important;
  height: 3.75em;
}
td:first-child, th:first-child {
  border-left: none;
}
td:last-child, th:last-child {
  border-right: none;
}
td img, th img {
  display: block;
  max-height: 5em;
  mix-blend-mode: multiply;
  margin: 0.5em auto;
}
td img:first-child, th img:first-child {
  margin-top: 0;
}
td img:last-child, th img:last-child {
  margin-bottom: 0;
}

th {
  font-weight: 600;
  text-align: inherit;
  background-color: #A5B8C2;
  color: #fff;
  white-space: nowrap;
}

tr:nth-last-child(2n+1) td {
  background-color: #e5ebd0;
}
body tr:nth-last-child(2n) td {
    background-color: #e5ebd0;
}
tr:first-child td, tr:first-child th {
  border-top: none;
}
tr:first-child td:first-child, tr:first-child th:first-child {
  border-top-left-radius: var(--radius);
}
tr:first-child td:last-child, tr:first-child th:last-child {
  border-top-right-radius: var(--radius);
}
tr:first-child td:only-of-type {
  background-color: #e5ebd0;
}
tr:last-child td, tr:last-child th {
  border-bottom: none;
}
tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius);
}
tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius);
}

/*контейнеры */
.wrapper {
  width: 100%;
  max-width: 1205px;
  margin: auto;
  padding: 0 20px;
}

.box {
  display: flex;
  flex-wrap: wrap;
  gap: var(--box-gap);
}

/*модальные окна */
.modal {
  display: none;
  width: 100%;
  max-width: 765px;
  padding: 0;
  border-radius: 16px;
}
.modal--small {
  max-width: 360px;
}
.modal--medium {
  max-width: 480px;
}
.modal__body {
  padding: 65px;
}
.modal__body strong {
  color: #f3b00e;
  font-weight: 600;
}
.modal__body b {
  color: #195a3ce6;
  font-weight: 500;
}
.modal__body h1, .modal__body h2, .modal__body h3, .modal__body h4, .modal__body h5 {
  color: #195a3ce6;
}
.modal__body h3, .modal__body h4, .modal__body h5 {
  margin-bottom: 0.4em;
}
.modal__body h3:last-child, .modal__body h4:last-child, .modal__body h5:last-child {
  margin-bottom: 0;
}
.modal__body li {
  margin: 0;
}
.modal__form {
  padding: 65px;
  background-color: #e5ebd0;
}
.modal__form-head {
  margin: 0 0 40px;
}
.modal__form-head h1, .modal__form-head h2 {
  margin-bottom: 0.3em;
}
.modal__form-head h1:last-child, .modal__form-head h2:last-child {
  margin-bottom: 0;
}
.modal__form-body {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  align-items: center;
  justify-content: flex-end;
}
.modal__form-body--column {
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
}
.modal__form-input {
  width: calc(50% - 17.5px);
}
.modal__form-input--full {
  width: 100%;
}
.modal__form-text {
  font-size: 14px;
  line-height: 1.5;
}

/*ШАПКА */
.social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  font-size: 15px;
}
.social__link {
  display: inline-block;
  width: 2em;
  line-height: 2;
  text-align: center;
  background-color: #e5ebd0;
  color: #A5B8C2;
  text-decoration: none;
  border-radius: 50%;
  flex: 0 0 auto;
}
.social__link.fa-paper-plane {
  text-indent: -0.3em;
}
.social__link--dark {
  color: #BED1E4;
  background-color: #426993;
}
.social__link--big {
  font-size: 17px;
}

.logo {
  display: inline-block;
}

.custom-logo-link
{
  width: 196px;
}

.custom-logo-link img {
  display: block;
  width: 100% !important;
}

.search-form {
  position: relative;
}
.search-form__input {
  padding-right: 45px;
}
.search-form__btn {
  font-size: 12px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  color: #A5B8C2;
  padding: 0;
  border: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
}
.search-form__btn--big {
  font-size: 14px;
  line-height: 52px;
  width: 52px;
  color: #195a3ce6;
}

.search-btn {
  display: none;
  font-size: 14px;
  line-height: 50px;
  width: 50px;
  text-align: center;
  color: #94A4B4;
  background-color: #e5ebd0;
  border-radius: 16px;
  flex: 0 0 auto;
  text-decoration: none;
}

.menu-btn {
  display: none;
  font: normal normal 14px/48px icomoon;
  width: 50px;
  text-align: center;
  color: #fff;
  background-color: #195a3ce6;
  border: 1px solid #195a3ce6;
  border-radius: 16px;
  flex: 0 0 auto;
  transition: all 0.3s ease;
}
.menu-btn:before {
  content: "";
}
.menu-btn--active {
  color: #195a3ce6;
  background-color: transparent;
}
.menu-btn--active:before {
  content: "";
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header {
  background-color: #fff;
}
.header__topline {
  padding: 20px 0;
}
.header__topline-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__logo {
  width: 196px;
  margin: 0 auto 0 0;
}
.header__desktop-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__separator {
  height: 62px;
  border-left: 1px solid #f3b00e;
  transform: rotate(15deg);
}
.header__btn {
  margin-left: 10px;
}
.header__phone {
  text-decoration: none;
  color: #728792;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
}
.header__bottomline {
  border-top: 1px solid #ECECEC;
}
.header__bottomline-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
  position: relative;
}
.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
  color: #0F0F0F;
  font-size: 14px;
  font-weight: 500;
}
.header__menu > li {
  margin: 0;
}
.header__menu--clone {
  display: none;
}
.header__menu:first-child {
  margin-left: -15px;
}
.header__menu:last-child {
  margin-right: -15px;
}
.header__menu ul {
  display: none;
}
.header__menu > li > a {
  display: block;
  padding: 25px 15px;
  text-decoration: none;
  color: inherit;
}
.header__menu > li > a:not(:only-child):after {
  content: "";
  font-family: icomoon;
  color: #A5B8C2;
  font-size: 0.7em;
  margin-left: 1em;
}
.header__search {
  width: 200px;
}
.header__submenu {
  position: absolute;
  z-index: 3;
  left: 20px;
  top: calc(100% - 1px);
  width: calc(100% - 40px);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.header__submenu--open {
  opacity: 1;
  pointer-events: auto;
}
.header__submenu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 1 calc(100% / 3);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  padding: 18px 0;
  background-color: #fff;
  animation: fadeIn 0.3s ease;
}
.header__submenu > ul > li {
  margin: 0;
}
.header__submenu > ul:not(:last-child) {
  border-right: none;
}
.header__submenu > ul > li > a {
  display: block;
  padding: 12.5px 35px;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.header__submenu > ul > li > a:not(:only-child):after {
  content: "";
  display: inline-block;
  font: normal normal 12px/1 icomoon;
  position: absolute;
  top: calc(50% - .5em);
  right: 15px;
  color: #728792;
}
.header__submenu > ul.complicated {
  padding: 0;
}
.header__submenu > ul.complicated > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.header__submenu > ul.complicated > li:last-child {
  border-bottom: none;
}
.header__submenu > ul.complicated > li > a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 35px 14px 16px;
}
.header__submenu > ul.complicated > li > a > img {
  width: 80px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}
.header__submenu > ul.complicated > li > a > span {
  flex: 1 1 auto;
}
.header__submenu > ul ul {
  display: none;
}
.header__mobile-content {
  display: none;
}

/*ОСНОВНОЕ СОДЕРЖИМОЕ */
.slider-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1px;
  color: #728792;
}
.slider-dots > li {
  margin: 0;
}
.slider-dots > li {
  display: inline-block;
  border: 1px solid;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dots > li.slick-active {
  background-color: currentColor;
  transform: scale(1.25);
  cursor: default;
}

.slider-arrow {
  display: inline-block;
  --border-width: 1px;
  font-size: 12px;
  width: 2.5em;
  line-height: calc(2.5em - var(--border-width) * 2);
  text-align: center;
  color: #fff;
  border: var(--border-width) solid;
  border-radius: 50%;
  background-color: #195a3ce6;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.15);
}
.slider-arrow:active {
  transform: translateY(-50%) scale(0.92);
}
.slider-arrow.slick-disabled {
  opacity: 0;
  pointer-events: none;
  cursor: none;
}
.slider-arrow--faded {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.slider-arrow--faded.slick-disabled {
  color: #A5B8C2;
}
.slider-arrow--big {
  --border-width: 2px;
  font-size: 16px;
}

.section {
  --gap: 75px;
  margin: var(--gap) 0;
}
.section--bg {
  margin: 0;
  padding: var(--gap) 0;
}
.section--white {
  background-color: #fff;
}
.section__head {
  display: flex;
  align-items: center;
  gap: 25px 35px;
  flex-wrap: wrap;
  margin: 0 0 60px;
}
.section__head:last-child {
  margin-bottom: 0;
}
.section__head-text {
  flex: 1 1 auto;
}
.section__buttons {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.intro {
  box-shadow: 0 10px 20px rgba(0, 47, 87, 0.25);
}
.intro .slick-track {
  display: flex;
}
.intro__slide {
  padding: 50px 0 90px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #195a3ce6;
}
.intro__slide:not(.slick-slide):nth-child(n+2) {
  display: none;
}
.intro__slide.slick-slide {
  height: auto;
}
.intro__slide:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #195a3ce6, transparent calc(50% + 600px));
  opacity: 0.9;
}
.intro__wrapper {
  position: relative;
  z-index: 1;
}
.intro__text {
  color: #fff;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 0 30px;
}
.intro__text:last-child {
  margin-bottom: 0;
}
.intro__text p {
  margin: 0 0 1em;
}
.intro__text p:last-child {
  margin-bottom: 0;
}
.intro__text h1, .intro__text h2 {
  line-height: normal;
  font-size: calc(1.38 * var(--h2));
  margin: 0 0 0.4em;
}
.intro__text h1:last-child, .intro__text h2:last-child {
  margin-bottom: 0;
}
.intro__btn {
  min-width: 260px;
}
.intro__dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  color: #fff;
}

.text-info__body {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.text-info__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: Max(calc(var(--item-height, 78px) - var(--gap, 0)), 78px);
  position: relative;
  line-height: 1.5;
  font-size: 16px;
  flex: 1 1 260px;
  --padding: 30px;
  padding: 0 0 0 var(--padding);
}
.text-info__item:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 40px);
  left: 0;
  height: 80px;
  border-left: 1px solid #f3b00e;
  transform-origin: center bottom;
  transform: rotate(15deg);
}
.text-info__item-title {
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  text-transform: uppercase;
  margin: 0 0 0.2em;
}
.text-info__item-title:last-child {
  margin-bottom: 0;
}
.text-info__item-title:not(:only-child) {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.text-info__item-description {
  padding-left: 13px;
  color: #728792;
  letter-spacing: -0.01em;
}
.text-info__item-description:not(:only-child) {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.line-form {
  position: relative;
}
.line-form__input {
  padding-right: 180px;
}
.line-form__btn {
  position: absolute;
  min-width: 180px;
  top: 0;
  right: 0;
  background-color: transparent;
  border-left-color: transparent;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  min-width: 160px;
  padding-left: 10px;
  padding-right: 10px;
}
.line-form__btn:active {
  transform: none;
}
.line-form__btn:before {
  content: "";
  display: block;
  height: 30px;
  position: absolute;
  left: 0;
  top: calc(50% - 15px);
  border-left: 1px solid #f3b00e;
  transform-origin: left bottom;
  transform: rotate(15deg);
}

.small-banner {
  margin: 35px 0;
  position: relative;
  --radius: 18px;
}
.small-banner:first-child {
  margin-top: 0;
}
.small-banner:last-child {
  margin-bottom: 0;
}
.small-banner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 15px;
  border-radius: var(--radius);
  background: linear-gradient(to right, #003057, #4AA43A);
  pointer-events: none;
  opacity: 0.35;
  filter: blur(15px);
}
.small-banner__inner {
  padding: 35px 45px;
  background: linear-gradient(to right, #003057, #4AA43A);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  z-index: 1;
}
.small-banner__text {
  flex: 1 1 auto;
  font-style: italic;
  font-size: 14px;
  line-height: normal;
}
.small-banner__text p {
  margin: 0 0 1.25em;
}
.small-banner__text p:last-child {
  margin-bottom: 0;
}
.small-banner__text h1, .small-banner__text h2, .small-banner__text h3, .small-banner__text h4, .small-banner__text h5 {
  font-style: normal;
  margin: 1em 0 0.3em;
}
.small-banner__text h1:first-child, .small-banner__text h2:first-child, .small-banner__text h3:first-child, .small-banner__text h4:first-child, .small-banner__text h5:first-child {
  margin-top: 0;
}
.small-banner__text h1:last-child, .small-banner__text h2:last-child, .small-banner__text h3:last-child, .small-banner__text h4:last-child, .small-banner__text h5:last-child {
  margin-bottom: 0;
}
.small-banner__text h2 {
  font-size: calc(var(--h2) / 1.11);
}
.small-banner__text a {
  display: inline-block;
  font-weight: 600;
}
.small-banner__btn {
  flex: 0 0 auto;
}
.small-banner__form {
  width: 455px;
  flex: 0 0 auto;
}

.catalog-block__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.catalog-block__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  text-decoration: none;
  color: #fff;
  background-color: rgba(0, 47, 87, 0.5);
}
.catalog-block__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #195a3ce6;
  z-index: 1;
  opacity: 0.5;
}
.catalog-block__item--big {
  grid-column: span 2;
}
.catalog-block__item-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.catalog-block__item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: rgba(0, 47, 87, 0.9);
  padding: 0.7em 2.4em 0.7em 1.4em;
  min-height: var(--text-height, 100px);
}
.catalog-block__item-text {
  max-width: 230px;
}

.post-card {
  width: 265px;
  max-width: 100%;
  line-height: normal;
  font-weight: 300;
  color: #000;
  flex: 0 0 auto;
}
.post-card.slick-slide {
  margin: 0 calc(var(--box-gap) / 2);
}
.post-card__pic {
  display: block;
  aspect-ratio: 265/180;
  margin: 0 0 12px;
}
.post-card__pic:last-child {
  margin-bottom: 0;
}
.post-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.post-card__text {
  max-height: 182px;
  overflow: hidden;
  -webkit-mask: linear-gradient(to bottom, black 155px, transparent 180px);
}
.post-card__text p {
  margin: 0 0 10px;
}
.post-card__text p:last-child {
  margin-bottom: 0;
}
.post-card__date {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: #728792;
  margin: 0 0 10px;
}
.post-card__date:last-child {
  margin-bottom: 0;
}
.post-card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: inherit;
  margin: 0 0 10px;
}
.post-card__title:last-child {
  margin-bottom: 0;
}
.post-card__title a {
  color: inherit;
  text-decoration: none;
}

.post-row {
  display: flex;
  background-color: #fff;
  margin: 0 0 35px;
}
.post-row:last-child {
  margin-bottom: 0;
}
.post-row__pic {
  width: 265px;
  flex: 0 0 auto;
}
.post-row__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.post-row__text {
  flex: 1 1 auto;
  padding: 40px 30px 30px 35px;
}
.post-row__title {
  font-size: calc(var(--h3) * 0.79);
  color: #195a3ce6;
  max-width: 700px;
  margin: 0 0 1em;
}
.post-row__title a {
  color: inherit;
  text-decoration: none;
}
.post-row__date {
  color: #728792;
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  line-height: normal;
  margin: 0 0 1.5em;
}
.post-row__date:last-child {
  margin-bottom: 0;
}
.post-row__excerpt {
  max-width: 700px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 1.25em;
}
.post-row__excerpt:last-child {
  margin-bottom: 0;
}
.post-row__excerpt p {
  margin: 0 0 1.5em;
}
.post-row__excerpt p:last-child {
  margin-bottom: 0;
}
.post-row__link {
  display: block;
  width: fit-content;
  margin: 0 0 0 auto;
  color: #A5B8C2;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.2;
  padding: 5px 0 5px 30px;
  position: relative;
}
.post-row__link:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-left: 1px solid #f3b00e;
  transform-origin: left bottom;
  transform: rotate(15deg);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  user-select: none;
}

.page-numbers {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  width: 2.38em;
  line-height: 2.38;
  text-align: center;
  color: #728792;
  text-decoration: none;
  border-radius: 50%;
}
.page-numbers[href] {
  -webkit-tap-highlight-color: transparent;
}
.page-numbers[href]:active {
  transform: scale(0.97);
}
.page-numbers.current {
  background-color: #fff;
  color: #195a3ce6;
}

.tax-block__body {
  margin: 0 0 40px;
}
.tax-block__body:last-child {
  margin-bottom: 0;
}
.tax-block__slider:not(.slick-initialized) {
  max-width: 100%;
  overflow: auto;
  display: flex;
  gap: var(--box-gap);
}
.tax-block__slider .slick-list {
  margin: 0 calc(var(--box-gap) / -2);
}
.tax-block__slider .slick-track {
  display: flex;
}
.tax-block__arrow--prev {
  left: -15px;
}
.tax-block__arrow--next {
  right: -15px;
}
.tax-block__dots {
  margin: 35px 0 0;
}

.scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 35px;
  z-index: 4;
  background-color: #fff;
  width: 50px;
  line-height: 50px;
  font-size: 15px;
  color: #224B76;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0, 47, 87, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.scroll-top-btn--active {
  opacity: 1;
  pointer-events: auto;
}

.breadcrumbs {
  padding: 15px 0;
  line-height: normal;
  font-size: 12px;
  color: #195a3ce6;
  margin: 0 0 30px;
}
.breadcrumbs:last-child {
  margin-bottom: 0;
}
.breadcrumbs__link {
  color: inherit;
}
.breadcrumbs__separator {
  color: #A5B8C2;
  margin: 0 1.5em;
}
.breadcrumbs__item {
  color: #A5B8C2;
}

.page-head {  
  color: #fff;
  padding: 15px 0 50px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 47, 87, 0.5);
}
.page-head--high {
  min-height: 440px;
}
.page-head--oversized {
  padding-bottom: 130px;
}
.page-head:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #195a3ce6, transparent calc(50% + 600px));
  opacity: 0.9;
}
.page-head__wrapper {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.page-head__breadcrumbs {
  padding: 0;
  color: inherit;
}
.page-head__text {
  font-style: italic;
  margin: auto 0 25px;
}
.page-head__text:first-child {
  padding-top: 35px;
}
.page-head__text:last-child {
  margin-bottom: auto;
}
.page-head__text--short {
  max-width: 790px;
}
.page-head__text h1, .page-head__text h2 {
  font-style: normal;
  margin-bottom: 0.5em;
}
.page-head__text h1:last-child, .page-head__text h2:last-child {
  margin-bottom: 0;
}
.page-head__form-wrapper {
  display: flex;
  align-items: center;
  gap: 35px;
}
.page-head__form-wrapper:only-child {
  margin: auto 0;
}
.page-head__search {
  flex: 1 1 auto;
}
.page-head__form-btn {
  flex: 0 0 auto;
}
.page-head__form-select {
  min-width: 265px;
}

.text-block strong,
.text strong {
  font-weight: 600;
}
.text-block b,
.text b {
  color: #195a3ce6;
  font-weight: 500;
}
.text-block h1, .text-block h2, .text-block h3, .text-block h4, .text-block h5,
.text h1,
.text h2,
.text h3,
.text h4,
.text h5 {
  color: #195a3ce6;
}
.text-block h3 strong,
.text h3 strong {
  font-weight: 600;
}

.text-block {
  overflow: hidden;
}
.text-block__body {
  margin: 0 0 2.8em;
}
.text-block__body:last-child {
  margin-bottom: 0;
}
.text-block--no-li-gaps li {
  margin: 0;
}

.buttons-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px 25px;
}

.presentation__body {
  display: flex;
  gap: 35px;
}
.presentation__banner {
  flex: 1 1 auto;
  position: relative;
  padding: 66px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 47, 87, 0.5);
  color: #fff;
  line-height: 1.5;
}
.presentation__banner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(to right, #195a3ce6, rgba(0, 0, 0, 0.3) 80%);
  opacity: 0.9;
}
.presentation__img {
  display: block;
  max-height: 48px;
  position: relative;
  z-index: 1;
  opacity: 0.5;
  margin: 0 0 20px;
}
.presentation__img:last-child {
  margin-bottom: 0;
}
.presentation__text {
  position: relative;
  z-index: 1;
  max-width: 540px;
  font-weight: 500;
  font-style: italic;
}
.presentation__text h1, .presentation__text h2 {
  line-height: 1.4;
  font-style: normal;
  margin-bottom: 0.4em;
}
.presentation__text h1:last-child, .presentation__text h2:last-child {
  margin-bottom: 0;
}
.presentation__link {
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: inherit;
  text-decoration: none;
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 25px;
  max-width: calc(100% - 56px);
}
.presentation__sidebar {
  width: 265px;
  flex: 0 0 auto;
}
.presentation__card {
  display: block;
  background-color: #fff;
  padding: 36px 25px 25px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #195a3ce6;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.3;
  margin: 0 0 35px;
}
.presentation__card:last-child {
  margin-bottom: 0;
}
.presentation__card-img {
  display: block;
  height: 30px;
  margin: 0 0 30px;
}
.presentation__card-img:last-child {
  margin-bottom: 0;
}
.presentation__card-text {
  display: block;
  border-top: 1px solid #f3b00e;
  padding: 25px 32px 0 0;
  position: relative;
}
.presentation__card-text:after {
  content: "";
  display: block;
  width: 12px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/icons/angle.svg) no-repeat center bottom/contain;
}

.post-head {
  margin: 30px 0 45px;
}
.post-head__text {
  margin: 0 0 1.5em;
}
.post-head__text:last-child {
  margin-bottom: 0;
}
.post-head__text h1, .post-head__text h2 {
  line-height: 1.45;
  margin-bottom: 0.4em;
}
.post-head__text h1:last-child, .post-head__text h2:last-child {
  margin-bottom: 0;
}
.post-head__date {
  color: #728792;
  line-height: normal;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 60px;
}
.post-head__date:last-child {
  margin-bottom: 0;
}
.post-head__img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.slider {
  --radius: 16px;
  margin: 2.4em 0;
}
.slider:first-child {
  margin-top: 0;
}
.slider:last-child {
  margin-bottom: 0;
}
.slider__main {
  margin: 0 0 24px;
}
.slider__main:last-child {
  margin-bottom: 0;
}
.slider__main:not(.slick-initialized) {
  border-radius: var(--radius);
  overflow: hidden;
}
.slider__main .slick-list {
  border-radius: var(--radius);
}
.slider__main .slick-track {
  display: flex;
}
.slider__item {
  position: relative;
  min-height: 580px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #000;
}
.slider__item:not(.slick-slide):nth-child(n+2) {
  display: none;
}
.slider__item.slick-slide {
  height: auto;
  display: flex;
}
.slider__img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}
.slider__text {
  position: relative;
  z-index: 1;
  border-left: 2px solid #f3b00e;
  color: #fff;
  line-height: 1.4;
  max-width: 580px;
  padding: 20px 24px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
}
.slider__text p {
  margin: 0 0 0.3em;
}
.slider__text p:last-child {
  margin-bottom: 0;
}
.slider__text strong {
  font-weight: 600;
  color: inherit;
}
.slider__text h1, .slider__text h2, .slider__text h3, .slider__text h4, .slider__text h5 {
  color: #f3b00e;
  font-weight: 600;
  margin-bottom: 10px;
}
.slider__text h1:last-child, .slider__text h2:last-child, .slider__text h3:last-child, .slider__text h4:last-child, .slider__text h5:last-child {
  margin-bottom: 0;
}
.slider__arrow--prev {
  left: 35px;
}
.slider__arrow--next {
  right: 35px;
}
.slider__thumbs {
  --gap: 24px;
}
.slider__thumbs:not(.slick-initialized) {
  display: flex;
  gap: var(--gap);
  max-width: 100%;
  overflow: hidden;
}
.slider__thumbs-arrow--prev {
  left: -15px;
}
.slider__thumbs-arrow--next {
  right: -15px;
}
.slider__thumb {
  width: 136px;
  flex: 0 0 auto;
  aspect-ratio: 136/100;
  cursor: pointer;
  position: relative;
}
.slider__thumb.slick-slide {
  margin: 0 calc(var(--gap) / 2);
}
.slider__thumb:before {
  content: "";
  transition: all 0.2s ease;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #f3b00e;
  background-color: rgba(130, 213, 255, 0.15);
  border-radius: var(--radius);
  opacity: 0;
}
.slider__thumb--active:before {
  opacity: 1;
}
.slider__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.accordion {
  padding-bottom: 0;
  margin-bottom: 0;
}
.accordion__item {
  transition: all 0.2s ease;
}
.accordion__item:last-child {
  padding-bottom: var(--gap);
}
.accordion__item--open {
  background-color: #fff;
  border-color: #f3b00e;
}
.accordion__item--open + .accordion__item .accordion__item-head {
  border-color: #f3b00e;
}
.accordion__item-head {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: #195a3ce6;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  border-top: 1px solid transparent;
}
.accordion__item-head-inner {
  border-top: 1px solid #f3b00e;
  padding: 21px 50px 21px 0;
  position: relative;
  margin-top: -1px;
}
.accordion__item-head-inner:after {
  content: "";
  display: inline-block;
  font: normal normal 16px/38px icomoon;
  width: 38px;
  text-align: center;
  position: absolute;
  right: 0;
  top: calc(50% - 19px);
  transition: all 0.2s ease;
}
.accordion__item-head--small-font {
  font-size: 18px;
  line-height: normal;
}
.accordion__item-head--medium-font {
  font-size: 26px;
}
.accordion__item--open .accordion__item-head {
  color: #152D34;
  border-color: #f3b00e;
}
.accordion__item--open .accordion__item-head-inner:after {
  transform: scaleY(-1);
}
.accordion__item-body {
  display: none;
  padding: 25px 0 45px;
}
.accordion__item:last-child .accordion__item-body {
 
}

.brand-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 265px;
  max-width: 100%;
  flex: 0 0 auto;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  color: #728792;
  line-height: 1.45;
}
.brand-card.slick-slide {
  display: flex;
  height: auto;
  margin: 0 calc(var(--box-gap) / 2);
}
.brand-card__pic {
  display: flex;
  flex-direction: column;
  height: 100px;
  flex: 1 1 auto;
}
.brand-card__img {
  margin: auto;
  max-height: Min(100%, 100px);
}
.brand-card__text {
  margin-top: auto;
}
.brand-card__text strong {
  display: block;
  color: #195a3ce6;
  font-size: 1.1428571429em;
  font-weight: 500;
}
.brand-card__text strong:only-child {
  font-weight: bold;
}

.accordion:not(.section--bg) + .form-block:not(.section--bg) {
  margin-top: calc(var(--gap) / 2);
}
.form-block__inner {
  background-color: #fff;
  padding: 65px;
}
.form-block__head {
  margin: 0 0 40px;
}
.form-block__head:last-child {
  margin-bottom: 0;
}
.form-block__head h1, .form-block__head h2 {
  margin-bottom: 0.3em;
}
.form-block__head h1:last-child, .form-block__head h2:last-child {
  margin-bottom: 0;
}
.form-block__body {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  flex-wrap: wrap;
}
#wpcf7-f427-o1 .form-block__body span {
  width: calc(50% - 17.5px);
}
.form-block__input--half {
  width: 100%;
}
.form-block__btn {
  margin-left: auto;
}

.vacancy-card {
  width: 565px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 35px;
  background-color: #fff;
  text-decoration: none;
  color: #195a3ce6;
  font-weight: 500;
  line-height: 1.45;
  padding: 30px;
}
.vacancy-card__img {
  width: 32px;
  flex: 0 0 auto;
}
.vacancy-card__text {
  flex: 1 1 auto;
}

.product-card {
  width: 365px;
  max-width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: relative;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: #195a3ce6;
}
.product-card.slick-slide {
  display: flex;
  margin: 0 calc(var(--box-gap) / 2);
}
.product-card__btn {
  position: absolute;
  top: 30px;
  left: 30px;
  max-width: calc(100% - 60px);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.product-card__pic {
  height: 200px;
  display: flex;
}
.product-card__img {
  max-height: 100%;
  margin: auto;
}
.product-card__text {
  padding: 26px 55px 27px 25px;
  font-style: italic;
  margin-top: auto;
  min-height: 100px;
}
.product-card__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.file-card {
  width: 565px;
  display: flex;
}
.file-card__img {
  width: 166px;
  flex: 0 0 auto;
  align-self: flex-start;
}
.file-card__text {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
  color: #728792;
  padding: 20px;
}
.file-card__text p {
  margin: 0 0 1.45em;
}
.file-card__text p:last-child {
  margin-bottom: 0;
}
.file-card__title {
  font-size: 18px;
  line-height: inherit;
  color: #195a3ce6;
  font-weight: 500;
  margin: 0 0 0.5em;
}
.file-card__title:last-child {
  margin-bottom: 0;
}
.file-card__title > a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.file-card__description {
  font-style: italic;
  margin: 0 0 1.5em;
}
.file-card__description:last-child {
  margin-bottom: 0;
}
.file-card__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1em 1.5em;
  margin: auto 0 0;
}
.file-card__link {
  display: inline-block;
  color: #A5B8C2;
  text-decoration: none;
  line-height: 1.25;
  padding: 5px 10px 5px 20px;
  position: relative;
  font-weight: 500;
}
.file-card__link:before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
  border-right: 1px solid #f3b00e;
  transform-origin: center bottom;
  transform: rotate(15deg);
}
.file-card__gallery-link {
  display: none;
}

.docs:not(.section) {
  margin: 2em 0;
}
.docs:not(.section):first-child {
  margin-top: 0;
}
.docs:not(.section):last-child {
  margin-bottom: 0;
}

.pic-block__inner {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 47, 87, 0.15);
}
.pic-block__text {
  padding: 65px;
  width: 50%;
  align-self: center;
  color: #728792;
  font-style: italic;
  line-height: 1.4;
}
.pic-block__text h1, .pic-block__text h2, .pic-block__text h3, .pic-block__text h4, .pic-block__text h5 {
  color: #0F0F0F;
  font-style: normal;
}
.pic-block__text a {
  display: inline-block;
}
.pic-block__banner {
  position: relative;
  width: 50%;
}
.pic-block__banner:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #195a3ce6, transparent 85%);
  opacity: 0.9;
}
.pic-block__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pic-block__logo {
  position: absolute;
  left: 10%;
  bottom: 10%;
  max-width: 40%;
  opacity: 0.5;
}

.product {
  margin: 45px 0 75px;
}
.product__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}
.product__media {
  width: 525px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  --height: 435px;
  position: relative;
}
.product__thumbs {
  width: 118px;
  height: var(--height);
  flex: 0 0 auto;
  order: -1;
  padding: 22px 0;
}
.product__thumbs:not(.slick-initialized) {
  padding: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  scrollbar-color: #195a3ce6 #D9D9D9;
  scrollbar-width: thin;
}
.product__thumbs:not(.slick-initialized)::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #D9D9D9;
  border-radius: 3.5px;
}
.product__thumbs:not(.slick-initialized)::-webkit-scrollbar-thumb {
  background: #195a3ce6;
  border-radius: 3.5px;
}
.product__thumbs-arrow {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: #728792;
  color: #fff;
  font-size: 10px;
  line-height: 2;
  border-radius: 0.8em;
  cursor: pointer;
}
.product__thumbs-arrow.slick-disabled {
  background-color: #A5B8C2;
  cursor: not-allowed;
}
.product__thumbs-arrow--prev {
  top: 0;
}
.product__thumbs-arrow--next {
  bottom: 0;
}
.product__thumb {
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  padding: 15px;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.product__thumb.slick-slide {
  display: flex;
  margin: 7.5px 0;
}
.product__thumb--active {
  border-color: #f3b00e;
}
.product__thumb--active.slick-slide {
  border-color: #f3b00e;
}
.product__thumb img {
  max-height: 100%;
  margin: auto;
}
.product__slider {
  background-color: #fff;
  border-radius: 16px;
  width: calc(100% - 140px);
  flex: 1 1 auto;
}
.product__slide {
  height: var(--height);
  padding: 65px;
  display: flex;
  flex-direction: column;
}
.product__slide:not(.slick-slide):nth-child(n+2) {
  display: none;
}
.product__slide.slick-slide {
  display: flex;
}
.product__img {
  max-height: 100%;
  margin: auto;
}
.product__arrow--prev {
  left: -15px;
}
.product__arrow--next {
  right: -15px;
}
.product__zoom-btn {
  display: inline-block;
  cursor: pointer;
  font-size: 22px;
  color: #fff;
  width: 2.73em;
  line-height: 2.73;
  border-radius: 50%;
  text-align: center;
  background-color: #f3b00e;
  box-shadow: 0.18em 0.18em 0.5em rgba(130, 213, 255, 0.7);
  position: absolute;
  right: 45px;
  bottom: 45px;
}
.product__text {
  padding: 50px 0 0;
  flex: 0 0 auto;
  max-width: 570px;
}
.product__title {
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 0.5em;
  word-break: unset;
}
.product__title strong {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
}
.product__features {
  line-height: 1.45;
  margin: 0 0 35px;
}
.product__features:last-child {
  margin-bottom: 0;
}
.product__features-title {
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  padding: 0 0 0.5em;
  border-bottom: 1px solid;
  color: #728792;
  margin: 0 0 2em;
}
.product__feature {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 14px;
  color: #195a3ce6;
  margin: 0 0 1.45em;
}
.product__feature:last-child {
  margin-bottom: 0;
}
.product__feature:after {
  content: "";
  display: block;
  border-top: 1px solid #728792;
  flex: 1 1 auto;
}
.product__feature-key {
  font-style: italic;
  font-weight: 500;
}
.product__feature-value {
  order: 1;
  font-weight: 600;
}
.product__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px 20px 20px;
  position: relative;
  color: #195a3ce6;
  text-decoration: none;
  line-height: 1.3;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  width: 365px;
  max-width: 100%;
  background-color: #fff;
}
.category-card__img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.gallery {
  margin: 30px 0;
}
.gallery:first-child {
  margin-top: 0;
}
.gallery:last-child {
  margin-bottom: 0;
}
.gallery__item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 20px;
  border: 1px solid #728792;
  border-radius: 16px;
  width: 365px;
  aspect-ratio: 365/300;
}
.gallery__item-img {
  max-height: 100%;
  margin: auto;
}

.drawing {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  margin: 45px 0 60px;
}
.drawing:first-child {
  margin-top: 0;
}
.drawing:last-child {
  margin-bottom: 0;
}
.drawing__pic {
  width: 365px;
}
.drawing__img {
  display: block;
  margin: 0 auto;
}
.drawing__body {
  width: 765px;
}
.drawing__legend {
  padding: 50px 65px;
  background-color: #e5ebd0;
  border-radius: 16px;
  margin: 0 0 30px;
}
.drawing__legend:last-child {
  margin-bottom: 0;
}

.legend {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
}
.legend__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-left: 1px solid #A5B8C2;
  padding: 13px 0 0 4px;
  min-height: calc(255px - var(--index) * 33px);
  gap: 1em;
}
.legend__item:before {
  content: "";
  display: block;
  width: 100px;
  max-width: 100%;
  height: 6px;
  background-color: #f3b00e;
  position: absolute;
  top: 0;
  left: 0;
}
.legend__item-value {
  font-size: 22px;
  font-weight: bold;
  line-height: normal;
  color: #195a3ce6;
}
.legend__item-key {
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

.code-block {
  margin: 1.5em 0;
}
.code-block:first-child {
  margin-top: 0;
}
.code-block:last-child {
  margin-bottom: 0;
}
.code-block__value {
  font-size: 1.75em;
  font-weight: bold;
  line-height: normal;
  color: #195a3ce6;
  position: relative;
}
.code-block__value-item {
  display: inline-block;
  position: relative;
  padding: 0 0 0.18em;
}
.code-block__value-item:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 0.18em;
  background-color: #A5B8C2;
  border-radius: 1em;
}
.code-block__description {
  display: flex;
  flex-flow: column-reverse;
  gap: 0.56em;
  line-height: normal;
  color: #152D34;
  font-style: italic;
  padding: 1em 0 0;
  overflow: hidden;
}
.code-block__description-item {
  position: relative;
  padding-left: 1.5em;
  margin-left: calc(var(--left, 0) - .25em);
}
.code-block__description-item:before {
  content: "";
  display: block;
  position: absolute;
  left: calc(.25em - .5px);
  bottom: calc(100% - .625em);
  height: 100vh;
  border-left: 1px solid #A5B8C2;
}
.code-block__description-item:after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #A5B8C2;
  position: absolute;
  top: 0.37em;
  left: 0;
}
.code-block__description-item p {
  margin: 0;
}
.code-block__description-item b, .code-block__description-item strong {
  font-weight: bold;
  color: #195a3ce6;
  font-style: normal;
}

.page-head--oversized + .number-block {
  margin-top: -70px;
  position: relative;
  z-index: 1;
}
.number-block__body {
  margin-bottom: 40px;
}
.number-block__body:last-child {
  margin-bottom: 0;
}
.number-block__item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 365px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px 20px 20px 15px;
  min-height: 140px;
}
.number-block__item-head {
  width: 63px;
  flex: 0 0 auto;
  text-align: center;
  position: relative;
}
.number-block__item-head--big {
  width: 85px;
}
.number-block__item-value {
  font-size: 68px;
  line-height: 1;
  font-weight: 300;
  color: #f3b00e;
}
.number-block__item-value--medium {
  font-size: 60px;
}
.number-block__item-value--small {
  font-size: 24px;
  font-weight: normal;
}
.number-block__item-unit {
  display: inline-block;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  padding: 0 0.5em;
  border-radius: 0.65em;
  background-color: #A5B8C2;
  color: #fff;
  position: absolute;
  right: -4px;
  bottom: 0;
}
.number-block__item-text {
  line-height: 1.45;
  font-style: italic;
  color: #728792;
}
.number-block__item-text h4, .number-block__item-text h5 {
  color: #195a3ce6;
  margin: 0 0 0.4em;
}
.number-block__item-text h4:last-child, .number-block__item-text h5:last-child {
  margin-bottom: 0;
}
.number-block__item-text h4 strong, .number-block__item-text h5 strong {
  font-weight: bold;
  color: inherit;
  display: block;
}
.number-block__item-text h4 {
  font-size: calc(1em + 2px);
}
.number-block__item-text h5 {
  font-size: inherit;
}

.infographics {
  margin: 45px 0;
}
.infographics__item {
  width: 365px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 1.45;
  font-weight: 500;
  font-style: italic;
}
.infographics__item--bg {
  padding: 10px;
  border-radius: 28px;
  background-color: #e5ebd0;
}
.infographics__item-pic {
  display: flex;
  flex-direction: column;
  width: 80px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  background-color: #195a3ce6;
  border-radius: 28px;
  padding: 20px;
}
.infographics__item--bg .infographics__item-pic {
  background: linear-gradient(to right, #003057, #4AA43A);
}
.infographics__item-img {
  max-height: 100%;
  margin: auto;
}

.decorated-text {
  display: flex;
  border-radius: 16px;
  gap: 35px;
  align-items: flex-start;
  margin: 75px 0;
}
.decorated-text:first-child {
  margin-top: 0;
}
.decorated-text:last-child {
  margin-bottom: 0;
}
.decorated-text--bg {
  background-color: #e5ebd0;
  padding: 35px 50px 35px 35px;
  gap: 30px;
  font-style: italic;
  margin: 35px 0;
}
.decorated-text__pic {
  display: flex;
  flex-direction: column;
  width: 70px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  background-color: #195a3ce6;
  border-radius: 16px;
  padding: 15px;
}
.decorated-text__pic--light {
  background-color: #f3b00e;
}
.decorated-text--bg .decorated-text__pic {
  background: linear-gradient(to right, #003057, #4AA43A);
}
.decorated-text__img {
  max-height: 100%;
  margin: auto;
}
.decorated-text__text {
  flex: 1 1 auto;
}
.decorated-text__text li {
  margin: 0 0 0.6em;
}
.decorated-text__text li:last-child {
  margin-bottom: 0;
}
.decorated-text__text h1, .decorated-text__text h2, .decorated-text__text h3, .decorated-text__text h4, .decorated-text__text h5 {
  font-style: normal;
}

.map {
  height: 420px;
  background-color: #efefef;
  border-radius: 16px;
  overflow: hidden;
}

.contact {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: #195a3ce6;
  margin: 0 0 0.8em;
}
.contact:last-child {
  margin-bottom: 0;
}
.contact__icon {
  flex: 0 0 auto;
  font-size: 21px;
  line-height: 1.2;
}
.contact__text {
  align-self: center;
  line-height: 1.6;
  font-weight: 500;
  word-break: break-word;
}
.contact__text p {
  margin: 0 0 0.8em;
}
.contact__text p:last-child {
  margin-bottom: 0;
}
.contact__text a {
  text-decoration: none;
}
.contact__text i, .contact__text em {
  display: block;
  color: #728792;
  font-weight: 400;
}

.person {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0 0 0.8em;
}
.person:last-child {
  margin-bottom: 0;
}
.person__pic {
  width: 33px;
  aspect-ratio: 1;
  background: url(../img/icons/user.svg) no-repeat left 50% bottom 30%/auto 70% #728792;
  border-radius: 50%;
  flex: 0 0 auto;
}
.person__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.person__text {
  line-height: normal;
  color: #728792;
  font-style: italic;
}
.person__text p {
  margin: 0 0 0.8em;
}
.person__text p:last-child {
  margin-bottom: 0;
}
.person__name {
  color: #195a3ce6;
  line-height: inherit;
  font-style: normal;
  font-size: 18px;
  margin: 0 0 0.2em;
}

.place-card {
  width: 365px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.place-card__title {
  color: #195a3ce6;
}
.place-card.slick-slide {
  box-shadow: none;
  margin: 0 calc(var(--box-gap) / 2);
}

.person-card {
  width: 265px;
  max-width: 100%;
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 16px;
}
.person-card.slick-slide {
  margin: 0 calc(var(--box-gap) / 2);
}
.person-card__head {
  padding: 0 0 20px;
  border-bottom: 1px solid #f3b00e;
  margin: 0 0 20px;
}
.person-card__head:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.accordion-widget__item {
  background-color: #195a3ce6;
  color: #fff;
  border-radius: 14px;
  border: 1px solid #195a3ce6;
  transition: all 0.2s ease;
  margin: 0 0 10px;
}
.accordion-widget__item:last-child {
  margin-bottom: 0;
}
.accordion-widget__item--open {
  background-color: #fff;
  border-color: #f3b00e;
  color: #195a3ce6;
}
.accordion-widget__item-head {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  padding: 21px 40px 21px 25px;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.accordion-widget__item-head:after {
  content: "";
  font: normal normal 13px/1 icomoon;
  display: inline-block;
  position: absolute;
  right: 18px;
  top: calc(50% - .5em);
  transition: all 0.2s ease;
}
.accordion-widget__item--open .accordion-widget__item-head:after {
  transform: scaleY(-1);
}
.accordion-widget__item-body {
  padding: 5px 25px 25px;
  display: none;
}

.contacts-block__inner {
  display: flex;
  gap: var(--box-gap);
}
.contacts-block__sidebar {
  background-color: #fff;
  width: 365px;
  flex: 0 0 auto;
  height: 554px;
  padding: 10px;
  border-radius: 16px;
}
.contacts-block__text {
  padding: 25px;
  max-height: 100%;
  overflow: auto;
  scrollbar-color: #195a3ce6 #D9D9D9;
  scrollbar-width: thin;
}
.contacts-block__text::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #D9D9D9;
  border-radius: 3.5px;
}
.contacts-block__text::-webkit-scrollbar-thumb {
  background: #195a3ce6;
  border-radius: 3.5px;
}
.contacts-block__accordion {
  max-height: 100%;
  padding: 3px;
  overflow: auto;
  scrollbar-color: #195a3ce6 #D9D9D9;
  scrollbar-width: thin;
}
.contacts-block__accordion::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #D9D9D9;
  border-radius: 3.5px;
}
.contacts-block__accordion::-webkit-scrollbar-thumb {
  background: #195a3ce6;
  border-radius: 3.5px;
}
.contacts-block__title {
  margin: 2.5em 0 1em;
}
.contacts-block__subtitle {
  color: #195a3ce6;
  font-weight: 600;
  line-height: 1.6;
  margin: 1.4em 0 0.75em;
}
.contacts-block__map {
  width: calc(100% - var(--box-gap) - 365px);
  flex: 1 1 auto;
  height: 554px;
}

.page404 {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.page404__img {
  display: block;
  max-height: 30vh;
  margin: 0 auto 70px;
}
.page404__text {
  line-height: 1.6;
  font-style: italic;
  color: #728792;
  margin: 0 0 35px;
}
.page404__text:last-child {
  margin-bottom: 0;
}
.page404__text h1, .page404__text h2, .page404__text h3, .page404__text h4, .page404__text h5 {
  font-style: normal;
  color: #195a3ce6;
}
.page404__text h1, .page404__text h2 {
  font-size: calc(var(--h1) / 1.17);
}

.result {
  display: flex;
  background-color: #fff;
  margin: 0 0 20px;
}
.result:last-child {
  margin-bottom: 0;
}
.result__pic {
  display: block;
  width: 180px;
  flex: 0 0 auto;
  min-height: 120px;
  display: flex;
  flex-direction: column;
}
.result__img {
  margin: auto;
}
.result__img--full {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.result__text {
  padding: 30px;
  align-self: center;
}
.result__head {
  display: flex;
  align-items: center;
  gap: 0.75em 1em;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
.result__head:last-child {
  margin-bottom: 0;
}
.result__title {
  line-height: normal;
  margin: 0;
  color: #195a3ce6;
}
.result__title > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.result__alt-link {
  display: inline-block;
  position: relative;
  line-height: 1.9;
  min-height: 1.9em;
  font-weight: 500;
  color: #A5B8C2;
  text-decoration: none;
  padding: 0 1.2em;
}
.result__alt-link:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - .95em);
  left: 0;
  border-right: 1px solid #f3b00e;
  height: 1.9em;
  transform-origin: left bottom;
  transform: rotate(15deg);
}
.result__date {
  color: #A5B8C2;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
}
.result__breadcrumbs {
  padding: 0;
  color: #728792;
}

.search-results {
  color: #152D34;
}
.search-results__head {
  margin: 0 0 45px;
}
.search-results__head:last-child {
  margin-bottom: 0;
}
.search-results__title {
  margin: 0 0 0.3em;
}
.search-results__title:last-child {
  margin-bottom: 0;
}
.search-results__query {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #728792;
  font-style: italic;
}
.search-results__body {
  margin: 0 0 45px;
}
.search-results__body:last-child {
  margin-bottom: 0;
}
.search-results__category {
  margin: 0 0 75px;
}
.search-results__category:last-child {
  margin-bottom: 0;
}
.search-results__category-head {
  margin: 0 0 45px;
}
.search-results__category-head:last-child {
  margin-bottom: 0;
}

/*ПОДВАЛ */
.footer {
  padding: 32px 0;
  background-color: #195a3ce6;
  color: #F6F7F8;
  font-size: 14px;
  line-height: normal;
}
.footer__wrapper {
  display: flex;
  gap: 35px;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  display: block;
  width: fit-content;
  margin: 0 0 1em;
}
.footer__logo:last-child {
  margin-bottom: 0;
}
.footer__text {
  margin: 0 0 1.5em;
}
.footer__text:last-child {
  margin-bottom: 0;
}
.footer__contact {
  color: #fff;
  font-weight: 500;
}
.footer__contact-title {
  font-size: inherit;
  color: #F6F7F8;
  font-weight: 300;
  margin: 0 0 0.8em;
}
.footer__contact-title:last-child {
  margin-bottom: 0;
}
.footer__contact a {
  color: inherit;
  text-decoration: none;
}

/*АДАПТИВ */
@media(min-width: 992px) {
  a:hover {
    text-decoration: none;
  }

  .wp-block-table {
    scrollbar-color: #195a3ce6 #D9D9D9;
    scrollbar-width: thin;
  }
  .wp-block-table::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: #D9D9D9;
    border-radius: 3.5px;
  }
  .wp-block-table::-webkit-scrollbar-thumb {
    background: #195a3ce6;
    border-radius: 3.5px;
  }

  .select__list > li {
    transition: all 0.2s ease;
  }
  .select__list > li:hover {
    background-color: #E3F3FF;
  }

  .btn {
    transition: color 0.3s ease, background 0.3s ease, border 0.3s ease, border-radius 0.3s ease;
  }
  .btn:hover {
    border-color: #195a3ce6;
    background-color: #195a3ce6;
    color: #fff;
  }
  .btn--white:hover, .btn--stroke:hover {
    background-color: #f3b00e;
    border-color: #f3b00e;
  }

  .search-form__btn {
    transition: all 0.2s ease;
  }
  .search-form__btn:hover {
    color: #195a3ce6;
  }
  .search-form__btn--big:hover {
    color: #A5B8C2;
  }

  .social__link {
    transition: all 0.2s ease;
  }
  .social__link:hover {
    background-color: #426993;
    color: #BED1E4;
  }
  .social__link--dark:hover {
    background-color: #e5ebd0;
    color: #A5B8C2;
  }

  .slider-arrow {
    transition: color 0.2s ease, background 0.2s ease;
  }
  .slider-arrow:not(.slick-disabled):hover {
    background-color: #A5B8C2;
  }
  .slider-arrow--faded:not(.slick-disabled):hover {
    background-color: #fff;
    color: #000;
  }

  .header__phone {
    transition: all 0.2s ease;
  }
  .header__phone:hover {
    color: #f3b00e;
  }
  .header__menu > li > a {
    transition: all 0.2s ease;
  }
  .header__menu > li:hover > a, .header__menu > li.hover > a:not(:only-child) {
    color: #f3b00e;
  }
  .header__menu > li:not(.multilevel) {
    position: relative;
  }
  .header__menu > li:not(.multilevel):hover > ul {
    opacity: 1;
    pointer-events: auto;
  }
  .header__menu > li:not(.multilevel) > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 10px 20px;
    z-index: 2;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    width: max-content;
    max-width: 260px;
    line-height: 1.5;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .header__menu > li:not(.multilevel) > ul > li {
    margin: 0;
  }
  .header__menu > li:not(.multilevel) > ul > li > a {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 0.4em 0;
  }
  .header__menu > li:not(.multilevel) > ul > li:hover > a {
    color: #f3b00e;
  }
  .header__submenu > ul > li > a {
    transition: all 0.2s ease;
  }
  .header__submenu > ul > li:hover > a, .header__submenu > ul > li.hover > a:not(:only-child) {
    color: #f3b00e;
  }
  .header__submenu > ul.complicated > li:hover > a, .header__submenu > ul.complicated > li.hover > a:not(:only-child) {
    font-weight: inherit;
    color: #fff;
    background-color: #f3b00e;
    letter-spacing: normal;
  }
  .header__submenu > ul.complicated > li:hover > a:after, .header__submenu > ul.complicated > li.hover > a:not(:only-child):after {
    color: #fff;
  }

  .text-info__item-title {
    margin: 0;
    transition: all 0.2s ease;
  }
  .text-info__item-description {
    transition: all 0.2s ease;
    position: absolute;
    left: var(--padding);
    width: calc(100% - var(--padding));
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
  }
  .text-info__item:hover .text-info__item-title:not(:only-child) {
    opacity: 0;
  }
  .text-info__item:hover .text-info__item-description {
    opacity: 1;
    pointer-events: auto;
  }

  .catalog-block__item:before {
    transition: all 0.2s ease;
  }
  .catalog-block__item:hover:before {
    opacity: 0;
  }
  .catalog-block__item-body:after {
    content: "";
    display: block;
    position: absolute;
    width: 1.22em;
    height: 100%;
    top: 0;
    right: 1.15em;
    background: url(../img/icons/angle.svg) no-repeat center/contain;
    transform: translateX(0.5em);
    opacity: 0;
    transition: all 0.2s ease;
  }
  .catalog-block__item:hover .catalog-block__item-body:after {
    opacity: 1;
    transform: none;
  }

  .post-card__pic {
    overflow: hidden;
  }
  .post-card__img {
    transition: all 0.2s ease;
  }
  .post-card__pic:hover .post-card__img {
    transform: scale(1.1);
  }
  .post-card__title a {
    transition: all 0.2s ease;
  }
  .post-card__title a:hover {
    color: #f3b00e;
  }

  .post-row {
    transition: all 0.2s ease;
  }
  .post-row:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .post-row__pic {
    overflow: hidden;
  }
  .post-row__img {
    transition: all 0.2s ease;
  }
  .post-row__pic:hover .post-row__img {
    transform: scale(1.1);
  }
  .post-row__title a {
    transition: all 0.2s ease;
  }
  .post-row__title a:hover {
    color: #f3b00e;
  }
  .post-row__link {
    transition: color 0.2s ease;
  }
  .post-row__link:hover {
    color: #728792;
  }

  .line-form__btn:hover {
    border-radius: 100px;
  }
  .line-form__btn:hover:before {
    opacity: 0;
  }

  .scroll-top-btn {
    transition: all 0.2s ease;
  }
  .scroll-top-btn:hover {
    background-color: #f3b00e;
    color: #fff;
  }

  .presentation__banner {
    overflow: hidden;
    background-size: 0;
  }
  .presentation__banner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    transition: all 0.4s ease;
  }
  .presentation__banner:hover:before {
    transform: scale(1.07);
  }
  .presentation__link {
    transition: all 0.2s ease;
  }
  .presentation__link:hover {
    color: #f3b00e;
  }
  .presentation__card {
    transition: all 0.2s ease;
  }
  .presentation__card:hover {
    background-color: #f3b00e;
  }
  .presentation__card-text {
    transition: inherit;
  }
  .presentation__card-text:after {
    transition: inherit;
  }
  .presentation__card:hover .presentation__card-text {
    color: #fff;
    border-color: #fff;
  }
  .presentation__card:hover .presentation__card-text:after {
    filter: grayscale(1) brightness(100);
  }

  .page-numbers {
    transition: background 0.2s ease, color 0.2s ease;
  }
  .page-numbers[href]:hover {
    background-color: #fff;
    color: #195a3ce6;
  }
  .page-numbers.current:hover {
    background-color: #f5f5f5;
    color: #728792;
  }

  .slider__thumb:not(.active):hover:before {
    border-color: transparent;
    background-color: rgba(0, 47, 87, 0.8);
    opacity: 1;
  }

  .accordion__item-head {
    transition: all 0.2s ease;
  }
  .accordion__item-head:hover {
    background-color: #fff;
  }
  .accordion__item-head-inner {
    transition: all 0.2s ease;
    padding-right: 70px;
  }
  .accordion__item-head:hover .accordion__item-head-inner {
    padding-left: 20px;
    padding-right: 50px;
  }
  .accordion__item:hover .accordion__item-head {
    border-color: #f3b00e;
  }
  .accordion__item:hover + .accordion__item .accordion__item-head {
    border-color: #f3b00e;
  }

  .brand-card {
    transition: all 0.2s ease;
  }
  .brand-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  .brand-card.slick-slide {
    box-shadow: none;
  }
  .brand-card__text strong {
    transition: all 0.2s ease;
  }
  .brand-card:hover .brand-card__text strong {
    color: #f3b00e;
  }

  .vacancy-card {
    transition: all 0.2s ease;
  }
  .vacancy-card:hover {
    color: #f3b00e;
  }

  .product-card__btn {
    transition: color 0.3s ease, background 0.3s ease, border 0.3s ease, border-radius 0.3s ease, opacity 0.3s ease;
  }
  .product-card:hover .product-card__btn {
    opacity: 1;
    pointer-events: auto;
  }
  .product-card__text {
    position: relative;
    transition: all 0.2s ease;
  }
  .product-card__text:after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 100%;
    right: 22px;
    top: 0;
    background: url(../img/icons/angle.svg) no-repeat center/contain;
    transform: translateX(0.5em);
    opacity: 0;
    transition: all 0.4s ease;
  }
  .product-card:hover .product-card__text {
    background-color: #195a3ce6;
    color: #fff;
  }
  .product-card:hover .product-card__text:after {
    opacity: 1;
    transform: translateX(0);
  }

  .file-card__title a {
    transition: all 0.2s ease;
  }
  .file-card__title a:hover {
    color: #f3b00e;
  }
  .file-card__link:hover {
    color: #728792;
  }

  .product__thumb {
    position: relative;
  }
  .product__thumb:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #195a3ce6;
    opacity: 0;
    transition: all 0.2s ease;
  }
  .product__thumb:after {
    content: "";
    font: normal normal 20px/1 icomoon;
    display: inline-block;
    color: #fff;
    position: absolute;
    right: 17px;
    bottom: 17px;
    opacity: 0;
    transition: all 0.2s ease;
  }
  .product__thumb:hover:before {
    opacity: 0.8;
  }
  .product__thumb:hover:after {
    opacity: 1;
  }
  .product__zoom-btn {
    transition: all 0.2s ease;
  }
  .product__zoom-btn:hover {
    background-color: #195a3ce6;
    box-shadow: 0.18em 0.18em 0.5em rgba(0, 47, 87, 0.7);
  }

  .category-card {
    position: relative;
    transition: all 0.2s ease;
  }
  .category-card:after {
    content: "";
    display: block;
    width: 21px;
    height: 100%;
    position: absolute;
    right: 17px;
    top: 0;
    background: url(../img/icons/angle.svg) no-repeat center/contain;
    transform: translateX(0.5em);
    opacity: 0;
    transition: all 0.4s ease;
  }
  .category-card:hover {
    background-color: #195a3ce6;
    color: #fff;
  }
  .category-card:hover:after {
    opacity: 1;
    transform: translateX(0);
  }

  .gallery__item {
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  .gallery__item:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 47, 87, 0.8);
    opacity: 0;
    transition: inherit;
  }
  .gallery__item:after {
    content: "";
    font: normal normal 20px/1 icomoon;
    display: inline-block;
    color: #fff;
    position: absolute;
    right: 30px;
    bottom: 30px;
    opacity: 0;
  }
  .gallery__item:hover:before, .gallery__item:hover:after {
    opacity: 1;
  }

  .number-block__item {
    transition: all 0.2s ease;
  }
  .number-block__item:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }

  .contact__text a:hover {
    text-decoration: underline;
  }

  .person-card {
    transition: all 0.2s ease;
  }
  .person-card:not(.slick-slide):hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .result {
    transition: all 0.2s ease;
  }
  .result:hover {
    background-color: #195a3ce6;
    color: #fff;
  }
  .result:hover .result__title {
    color: inherit;
  }
  .result__title:hover {
    font-weight: 600;
    letter-spacing: -0.0096em;
  }
  .result__alt-link:hover {
    font-weight: 600;
    letter-spacing: -0.0096em;
    color: #728792;
  }

  .footer__column a:hover {
    color: #f3b00e;
  }
}
@media(max-width: 1339px) {
  html {
    --h-height: 168px;
    --box-gap: 30px;
  }

  .wrapper {
    max-width: 992px;
  }

  .modal {
    max-width: 560px;
  }
  .modal--small {
    max-width: 320px;
  }
  .modal--medium {
    max-width: 440px;
  }
  .modal__body, .modal__form {
    padding: 40px;
    font-size: 14px;
  }
  .modal__form-body {
    gap: 20px;
  }
  .modal__form-input {
    width: calc(50% - 10px);
  }
  .modal__form-input--full {
    width: 100%;
  }

  .header__topline {
    padding: 15px 0;
  }
  .header__bottomline-wrapper {
    gap: 30px;
  }
  .header__search {
    width: 170px;
  }
  .header__submenu > ul > li > a {
    padding: 10px 35px 10px 20px;
  }
  .header__submenu > ul.complicated > li > a {
    padding: 10px 35px 10px 16px;
    gap: 12px;
  }

  .section {
    --gap: 55px;
  }
  .section__head {
    margin-bottom: 30px;
  }
  .section__buttons {
    gap: 15px;
  }

  .intro__slide {
    display: flex;
    flex-direction: column;
    padding: 50px 0 60px;
    min-height: calc(var(--w-height) - var(--h-height));
  }
  .intro__slide.slick-slide {
    display: flex;
    min-height: calc(var(--w-height) - var(--h-height));
  }
  .intro__text h1 {
    font-size: var(--h1);
  }
  .intro__text h2 {
    font-size: var(--h2);
  }
  .intro__btn {
    min-width: 0;
  }

  .text-info__body {
    gap: 30px 20px;
  }
  .text-info__item {
    flex-basis: calc(50% - 10px);
  }

  .catalog-block__body {
    gap: 15px;
  }
  .catalog-block__item {
    font-size: 16px;
  }

  .post-card {
    width: 297px;
  }

  .brand-card {
    width: 297px;
  }

  .post-row {
    margin: 0 0 20px;
  }
  .post-row__text {
    padding: 25px;
  }

  .tax-block__body {
    margin: 0 0 30px;
  }

  .small-banner__inner {
    gap: 30px;
    padding: 30px;
  }
  .small-banner__form {
    width: 340px;
  }

  .page-head__form-wrapper {
    gap: 20px;
  }

  .presentation__body {
    gap: 20px;
  }
  .presentation__banner {
    padding: 50px 40px 66px;
  }
  .presentation__card {
    margin: 0 0 20px;
  }
  .presentation__card:last-child {
    margin-bottom: 0;
  }

  .post-head__date {
    margin: 0 0 20px;
  }

  .slider__main {
    margin: 0 0 15px;
  }
  .slider__item {
    min-height: 480px;
  }
  .slider__arrow--prev {
    left: 15px;
  }
  .slider__arrow--next {
    right: 15px;
  }
  .slider__thumbs {
    --gap: 15px;
  }

  .vacancy-card {
    width: 461px;
    gap: 20px;
  }

  .product-card {
    width: 297px;
    font-size: 16px;
  }
  .product-card__btn {
    left: 20px;
    top: 20px;
  }
  .product-card__text {
    min-height: 73px;
    padding: 15px 45px 15px 20px;
  }
  .product-card__text:after {
    width: 15px;
    right: 15px;
  }

  .file-card {
    width: 461px;
    gap: 20px;
  }
  .file-card__text {
    padding: 0;
  }

  .pic-block__text {
    padding: 35px;
  }

  .product__media {
    width: calc(55% - 15px);
    --height: 444px;
  }
  .product__thumbs {
    width: 90px;
  }
  .product__thumbs:not(.slick-initialized) {
    gap: 10px;
  }
  .product__thumb.slick-slide {
    margin: 5px 0;
  }
  .product__zoom-btn {
    bottom: 20px;
    right: 20px;
  }
  .product__text {
    width: calc(45% - 15px);
    padding: 0;
  }

  .gallery__item {
    width: 297px;
  }

  .drawing {
    gap: 30px;
  }
  .drawing__pic {
    width: 297px;
  }
  .drawing__body {
    width: 624px;
  }
  .drawing__legend {
    padding: 40px;
  }

  .category-card {
    width: 461px;
  }

  .number-block__body {
    margin-bottom: 30px;
  }
  .number-block__item {
    width: 297px;
    padding: 15px 15px 15px 10px;
    font-size: 14px;
    min-height: 120px;
  }
  .number-block__item-head {
    width: 46px;
  }
  .number-block__item-head--big {
    width: 66px;
  }
  .number-block__item-value {
    font-size: 46px;
  }
  .number-block__item-value--medium {
    font-size: 48px;
  }
  .number-block__item-value--small {
    font-size: 20px;
  }

  .infographics__item {
    width: 461px;
  }

  .buttons-line {
    gap: 15px;
  }

  .place-card {
    width: 297px;
    padding: 30px 20px;
  }

  .person-card {
    width: 297px;
  }

  .footer__wrapper {
    gap: 30px;
  }
}
@media(max-width: 1099px) {
  .scroll-top-btn {
    display: none;
  }
}
@media(max-width: 991px) {
  html {
    --h-height: 70px;
    --h1: 36px;
    --h2: 36px;
    --h3: 24px;
    --h4: 18px;
    --h5: 16px;
    --box-gap: 20px;
  }

  h1, h2, h3, h4 {
    line-height: 1.4;
  }

  .mobile-menu-blur {
    overflow: hidden;
  }
  .mobile-menu-blur main, .mobile-menu-blur footer {
    filter: blur(5px);
    pointer-events: none;
  }

  .select__input {
    z-index: 2;
    pointer-events: auto;
  }
  .select__output {
    z-index: 0;
  }

  .box {
    justify-content: center;
  }

  .slider-arrow {
    --border-width: 1px;
    font-size: 16px;
  }
  .slider-arrow--faded {
    background-color: rgba(255, 255, 255, 0.45);
  }

  .modal__body {
    padding: 40px 30px;
  }
  .modal__form {
    padding: 30px;
  }
  .modal__form:first-child {
    padding-top: 40px;
  }

  .search-btn,
  .menu-btn {
    display: inline-block;
  }

  .header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 4;
    border-bottom: 1px solid #ECECEC;
  }
  .header__topline {
    padding: 10px 0;
  }
  .header__topline-wrapper {
    gap: 15px;
  }
  .header__desktop-content, .header__search {
    display: none;
  }
  .header__bottomline {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(var(--w-height) - var(--h-height));
    overflow: auto;
    background-color: #fff;
    border: 1px solid #ECECEC;
    pointer-events: none;
    transition: transform 0.25s ease;
    transform-origin: center top;
    transform: perspective(100vh) rotateX(-90deg);
  }
  .header__bottomline--open {
    transform: perspective(100vh) rotateX(0deg);
    pointer-events: auto;
  }
  .header__bottomline-wrapper {
    display: block;
    padding: 0;
  }
  .header__menu {
    font-size: 16px;
    display: block;
    animation: fadeIn 0.3s ease;
  }
  .header__menu--clone {
    display: block;
  }
  .header__menu:nth-of-type(n+2) {
    display: none;
  }
  .header__menu:first-child {
    margin-left: 0;
  }
  .header__menu:last-child {
    margin-right: 0;
  }
  .header__menu > li {
    border-bottom: 1px solid #ECECEC;
  }
  .header__menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.7em;
    padding: 10px 20px;
    -webkit-tap-highlight-color: transparent;
  }
  .header__menu > li > a:not(:only-child):after {
    content: "";
    margin-left: 0;
  }
  .header__menu > li > a:active {
    background-color: #F4F4F4;
  }
  .header__menu > li > a > img {
    width: 2em;
    height: 2em;
    object-fit: contain;
    object-position: center;
  }
  .header__menu > li.back > a:before {
    content: "";
    font-family: icomoon;
    color: #A5B8C2;
    font-size: 0.7em;
  }
  .header__menu > li.title > a {
    font-weight: 600;
    color: #f3b00e;
  }
  .header__submenu {
    display: none;
  }
  .header__mobile-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }
  .header__btn {
    margin: 0;
  }

  .text-info__item-title:not(:only-child) {
    padding-left: 13px;
  }

  .catalog-block__body {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-block__item--big {
    grid-column: auto;
  }

  .post-card {
    width: 265px;
  }

  .brand-card {
    width: 265px;
  }

  .tax-block__slider .slick-list {
    margin: 0 -20px;
    -webkit-mask: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
  }

  .presentation__body {
    display: block;
  }
  .presentation__banner {
    margin: 0 0 20px;
  }
  .presentation__banner:last-child {
    margin-bottom: 0;
  }
  .presentation__sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: auto;
  }
  .presentation__card {
    flex: 1 1 calc(50% - 10px);
    margin: 0;
  }

  .breadcrumbs {
    white-space: nowrap;
    max-width: 100%;
    overflow: auto;
  }
  .breadcrumbs__wrapper {
    padding-right: 0;
  }
  .breadcrumbs__separator {
    margin: 0 0.5em;
  }
  .breadcrumbs__item:last-child {
    padding-right: 15px;
  }

  .page-head__breadcrumbs {
    padding: 0;
  }
  .page-head__text h1, .page-head__text h2 {
    line-height: normal;
  }

  .slider {
    --radius: 10px;
  }
  .slider__item {
    padding: 20px;
    min-height: 400px;
  }
  .slider__arrow--prev {
    left: -10px;
  }
  .slider__arrow--next {
    right: -10px;
  }
  .slider__thumb {
    width: 100px;
  }
  .slider__thumbs-arrow--prev {
    left: -10px;
  }
  .slider__thumbs-arrow--next {
    right: -10px;
  }

  .accordion__item-head {
    font-size: 18px;
  }
  .accordion__item-head--small-font {
    font-size: 16px;
  }
  .accordion__item-head-inner {
    padding: 15px 35px 15px 0;
  }
  .accordion__item-head-inner:after {
    font-size: 12px;
    width: 28px;
    line-height: 28px;
    top: calc(50% - 14px);
  }
  .accordion__item-body {
    padding: 15px 0 30px;
  }

  .form-block__inner {
    padding: 30px;
  }
  .form-block__body {
    gap: 20px;
  }

  .vacancy-card {
    padding: 20px;
    flex: 1 1 auto;
  }

  .product-card {
    width: 290px;
  }
  .product-card__text {
    padding-right: 20px;
  }

  .file-card {
    flex: 1 1 auto;
  }
  .file-card__text {
    padding: 10px 0;
  }
  .file-card__links {
    gap: 1em;
  }

  .docs__box {
    gap: 60px var(--box-gap);
  }

  .pic-block__inner {
    border-radius: 10px;
  }
  .pic-block__text {
    padding: 20px;
  }

  .product {
    margin-bottom: 45px;
  }
  .product__wrapper {
    display: block;
  }
  .product__media {
    width: 700px;
    --height: 580px;
    margin: 0 auto 30px;
  }
  .product__media:last-child {
    margin-bottom: 0;
  }
  .product__thumbs {
    width: 118px;
  }
  .product__thumbs:not(.slick-initialized) {
    gap: 15px;
  }
  .product__thumb.slick-slide {
    margin: 7.5px 0;
  }
  .product__zoom-btn {
    bottom: 45px;
    right: 45px;
  }
  .product__text {
    width: auto;
  }

  .legend {
    font-size: 12px;
  }

  .code-block {
    font-size: 12px;
  }

  .gallery {
    gap: 10px;
    justify-content: flex-start;
    width: 490px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .gallery__item {
    width: 240px;
  }

  .drawing {
    margin: 20px 0 60px;
  }
  .drawing__pic {
    width: 200px;
    flex: 0 0 auto;
  }
  .drawing__body {
    flex: 1 1 auto;
  }
  .drawing__legend {
    padding: 20px;
  }

  .category-card {
    padding: 20px;
    flex: 1 1 auto;
  }

  .infographics {
    gap: 50px var(--box-gap);
  }
  .infographics__item {
    flex: 1 1 auto;
  }

  .decorated-text {
    gap: 20px;
  }
  .decorated-text--bg {
    padding: 20px 20px 40px;
  }
  .decorated-text__pic {
    width: 60px;
  }

  .person-card {
    width: 265px;
  }

  .map {
    border-radius: 10px;
  }

  .contacts-block__inner {
    display: block;
  }
  .contacts-block__sidebar {
    width: auto;
    height: auto;
    border-radius: 10px;
    margin: 0 0 30px;
  }
  .contacts-block__sidebar:last-child {
    margin-bottom: 0;
  }
  .contacts-block__text {
    padding: 10px;
  }
  .contacts-block__accordion {
    padding: 0;
  }
  .contacts-block__map {
    width: auto;
    height: 400px;
  }

  .page404 {
    padding: 50px 0;
  }
  .page404__img {
    max-height: Min(300px, 50vh);
    margin-bottom: 30px;
  }

  .result {
    width: 390px;
    max-width: 100%;
    display: block;
    margin: 0;
  }
  .result.slick-slide {
    margin: 0 calc(var(--box-gap) / 2);
    min-height: 0;
  }
  .result__pic {
    width: 100%;
    aspect-ratio: auto;
    min-height: 170px;
  }
  .result__img--full {
    height: auto;
    aspect-ratio: 390/272;
  }
  .result__text {
    padding: 20px;
  }
  .result__head {
    display: block;
  }
  .result__alt-link {
    display: none;
  }
  .result__breadcrumbs {
    white-space: normal;
    line-height: 1.4;
  }

  .search-results__body {
    margin: 0 0 40px;
  }
  .search-results__query {
    display: block;
    margin-top: 1em;
  }
  .search-results__category {
    margin: 0 0 40px;
  }
  .search-results__category-head {
    margin: 0 0 20px;
  }
  .search-results__category-body {
    display: flex;
    flex-wrap: wrap;
    gap: var(--box-gap);
    justify-content: center;
  }

  .footer__wrapper {
    flex-wrap: wrap;
  }
  .footer__column--main {
    width: calc(50% - 15px);
    order: 1;
  }
  .footer__social {
    order: 2;
  }
}
@media(max-width: 767px) {
  .section__head {
    display: block;
  }
  .section__head-text {
    margin: 0 0 1.5em;
  }
  .section__head-text:last-child {
    margin-bottom: 0;
  }
  .section__buttons {
    gap: 10px;
  }

  .text-info__body {
    display: block;
  }
  .text-info__item {
    margin: 0 0 30px;
  }
  .text-info__item:last-child {
    margin-bottom: 0;
  }

  .small-banner__inner {
    display: block;
  }
  .small-banner__text {
    width: auto;
    margin: 0 0 1.5em;
  }
  .small-banner__text:last-child {
    margin-bottom: 0;
  }
  .small-banner__form {
    width: auto;
    max-width: 100%;
  }

  .catalog-block__body {
    display: block;
  }
  .catalog-block__item {
    min-height: Min(290px, calc(100vw - 40px));
    margin: 0 0 20px;
  }
  .catalog-block__item:last-child {
    margin-bottom: 0;
  }

  .page-head {
    padding: 15px 0 50px;
    min-height: 250px;
  }
  .page-head--high {
    min-height: 620px;
  }
  .page-head--oversized {
    padding-bottom: 300px;
  }
  .page-head--mobile-oversized-small {
    padding-bottom: 110px;
  }
  .page-head__text:first-child {
    padding-top: 35px;
  }
  .page-head--oversized .page-head__text:first-child {
    padding-top: 80px;
  }
  .page-head__form-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .page-head__search {
    width: 100%;
    display: none;
  }
  .page-head__search--mobile-visible {
    display: block;
  }
  .page-head__form-select {
    width: 100%;
  }

  .presentation__banner {
    padding: 30px 30px 60px;
  }
  .presentation__link {
    bottom: 20px;
  }
  .presentation__sidebar {
    display: block;
  }
  .presentation__card {
    margin: 0 0 20px;
  }

  .post-row {
    flex-direction: column;
    width: 390px;
    max-width: 100%;
    margin: 0;
  }
  .post-row__pic {
    display: block;
    width: 100%;
    aspect-ratio: 390/270;
    flex: 0 0 auto;
  }
  .post-row__img {
    height: auto;
    aspect-ratio: inherit;
  }
  .post-row__text {
    font-size: 14px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
  }
  .post-row__title {
    margin: 0 0 0.7em;
  }
  .post-row__date {
    margin: 0 0 0.7em;
  }
  .post-row__link {
    padding-left: 20px;
    margin-top: auto;
  }

  .tax-block__body--mobile-box {
    display: flex;
    flex-wrap: wrap;
    gap: var(--box-gap);
    justify-content: center;
  }

  .post-head__img {
    border-radius: 10px;
  }

  .slider__item {
    display: block;
    padding: 0;
    min-height: 0;
  }
  .slider__item.slick-slide {
    display: block;
  }
  .slider__img {
    position: static;
    height: auto;
    aspect-ratio: 390/320;
  }
  .slider__text {
    border: none;
    background: none;
    max-width: none;
    padding: 20px;
  }

  .form-block__inner {
    padding: 30px 20px;
  }
  .form-block__head {
    margin: 0 0 30px;
  }
  .form-block__body {
    flex-direction: column;
    align-items: center;
  }
  #wpcf7-f427-o1 .form-block__body span {
    width: 100%;
  }
  .form-block__btn {
    margin: auto;
  }

  .pic-block__inner {
    flex-direction: column;
  }
  .pic-block__text {
    width: 100%;
    padding: 20px 20px 30px;
  }
  .pic-block__text h1, .pic-block__text h2, .pic-block__text h3 {
    line-height: 1.5;
  }
  .pic-block__banner {
    width: 100%;
    height: 390px;
  }
  .pic-block__logo {
    left: 20px;
    bottom: 20px;
    max-width: calc(50% - 10px);
  }

  .product {
    margin: 20px 0 40px;
  }
  .product__media {
    width: auto;
    display: block;
    --height: 300px;
  }
  .product__thumbs {
    width: auto;
    height: auto;
    padding: 0 45px;
  }
  .product__thumbs:not(.slick-initialized) {
    flex-direction: row;
    gap: 15px;
  }
  .product__thumbs-arrow {
    width: 20px;
    height: 100%;
    line-height: 1;
  }
  .product__thumbs-arrow--next {
    left: auto;
    right: 0;
  }
  .product__thumbs-arrow:before {
    display: block;
    width: 100%;
    position: absolute;
    top: calc(50% - .5em);
    left: 0;
  }
  .product__thumb {
    width: 90px;
    border-radius: 10px;
  }
  .product__thumb.slick-slide {
    margin: 0 7.5px;
  }
  .product__slider {
    width: auto;
    border-radius: 10px;
    margin: 0 0 15px;
  }
  .product__slider:last-child {
    margin-bottom: 0;
  }
  .product__slide {
    padding: 20px;
  }
  .product__zoom-btn {
    background-color: #195a3ce6;
    font-size: 16px;
    bottom: auto;
    top: calc(var(--height) - 2.73em - 15px);
    right: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .legend {
    display: block;
  }
  .legend__item {
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 0.5em;
    min-height: 0;
    border: none;
  }
  .legend__item:before {
    display: none;
  }
  .legend__item:after {
    content: "";
    display: block;
    flex: 1 1 auto;
    border-top: 1px solid #A5B8C2;
  }
  .legend__item-key {
    flex: 0 0 auto;
  }
  .legend__item-value {
    flex: 0 0 auto;
    order: 1;
  }

  .gallery {
    width: 430px;
    margin: 20px auto;
  }
  .gallery__item {
    width: 210px;
  }

  .drawing {
    display: block;
  }
  .drawing__pic {
    max-width: 100%;
    margin: 0 auto 10px;
  }
  .drawing__pic:last-child {
    margin-bottom: 0;
  }
  .drawing__body {
    width: auto;
  }
  .drawing__legend {
    margin: 0 0 20px;
  }

  .page-head--oversized + .number-block {
    margin-top: -240px;
  }
  .page-head--mobile-oversized-small + .number-block {
    margin-top: -50px;
  }
  .number-block__item {
    width: 100%;
  }

  .infographics__item--bg {
    border-radius: 16px;
  }
  .infographics__item-pic {
    width: 60px;
    border-radius: 16px;
  }
}
@media(max-width: 479px) {
  html {
    --h1: 28px;
    --h2: 28px;
    --h3: 20px;
  }

  .wrapper {
    padding: 0 15px;
  }

  .modal__form, .modal__body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .modal__form-head {
    margin: 0 0 20px;
  }
  .modal__form-body {
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 15px;
  }
  .modal__form-input {
    width: 100%;
  }
  .modal__form-btn {
    width: 100%;
  }
  .modal__form-text {
    order: -1;
  }

  .header__topline-wrapper {
    gap: 10px;
  }
  .header__logo {
    width: 150px;
  }
  .header__bottomline-wrapper {
    padding: 0;
  }
  .header__menu {
    line-height: normal;
  }
  .header__menu > li > a {
    padding: 15px;
  }
  .header__menu > li > a > img {
    display: none;
  }
  .header__mobile-content {
    text-align: center;
    align-items: center;
  }
  .header__social {
    justify-content: center;
  }
  .header__btn {
    display: flex;
    width: 100%;
  }

  .section__btn {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .intro__slide {
    padding-top: 40px;
  }

  .small-banner__inner {
    border-radius: 10px;
    padding: 30px 20px;
  }
  .small-banner__btn {
    width: 100%;
  }

  .tax-block__body {
    gap: 15px;
  }
  .tax-block__slider .slick-list {
    margin: 0 -15px;
  }
  .tax-block__arrow--prev {
    left: -5px;
  }
  .tax-block__arrow--next {
    right: -5px;
  }

  .line-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .line-form__input {
    padding-right: 23px;
  }
  .line-form__btn {
    position: static;
    width: 100%;
    border-radius: 100px;
    border: 1px solid #f3b00e;
    background-color: #fff;
  }
  .line-form__btn:before {
    display: none;
  }

  .breadcrumbs {
    padding: 15px;
    margin-bottom: 20px;
  }
  .breadcrumbs__wrapper {
    padding: 0;
  }

  .page-head__breadcrumbs {
    padding: 0;
  }
  .page-head__form-btn {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .post-head {
    margin-top: 20px;
  }

  .presentation__banner {
    box-shadow: none;
    padding: 20px 15px;
  }
  .presentation__img {
    margin-bottom: 15px;
    max-width: 50%;
  }
  .presentation__text {
    margin: 0 0 1.5em;
  }
  .presentation__text:last-child {
    margin-bottom: 0;
  }
  .presentation__link {
    display: block;
    width: fit-content;
    margin: 0 0 0 auto;
    position: relative;
    bottom: auto;
    right: auto;
  }

  .slider__main {
    margin: 0 0 10px;
  }
  .slider__text {
    padding: 15px;
    font-size: 14px;
  }
  .slider__thumbs {
    gap: 10px;
  }

  .accordion__item-head {
    font-size: 16px;
    line-height: normal;
  }
  .accordion__item-head--small-font {
    font-size: 14px;
  }
  .accordion__item-body {
    font-size: 14px;
  }

  .brand-card {
    flex: 1 1 auto;
  }
  .brand-card.slick-slide {
    flex: 0 0 auto;
    width: calc(var(--w-width) - 30px);
  }

  .form-block__inner {
    margin-left: -15px;
    margin-right: -15px;
    padding: 30px 15px;
  }
  #wpcf7-f427-o1 form {
    gap: 15px;
  }
  .form-block__btn {
    width: 100%;
  }

  .vacancy-card {
    padding: 15px;
    font-size: 14px;
  }

  .file-card {
    font-size: 14px;
    display: block;
    width: auto;
  }
  .file-card__text p {
    margin: 0 0 1em;
  }
  .file-card__description {
    margin-bottom: 1em;
  }
  .file-card__links {
    justify-content: flex-start;
  }

  .pic-block__text {
    padding: 30px 15px;
  }

  .product__arrow--prev {
    left: -10px;
  }
  .product__arrow--next {
    right: -10px;
  }
  .product__thumbs {
    padding: 0 25px;
  }
  .product__thumbs:not(.slick-initialized) {
    gap: 10px;
  }
  .product__thumb.slick-slide {
    margin: 0 5px;
  }
  .product__buttons {
    display: block;
  }
  .product__btn {
    display: flex;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0 0 10px;
  }
  .product__btn:last-child {
    margin-bottom: 0;
  }

  .gallery__item {
    width: 100%;
    padding: 10px;
    aspect-ratio: 4/3;
  }

  .code-block {
    font-size: 2.8vw;
  }
  .code-block__value {
    font-size: 1.3em;
  }
  .code-block__description-item {
    padding-left: 1em;
  }

  .category-card {
    padding: 10px;
    font-size: 14px;
    gap: 15px;
  }
  .category-card__img {
    width: 60px;
    height: 60px;
  }

  .number-block__item {
    min-height: 0;
  }

  .decorated-text {
    display: block;
    margin: 50px 0;
  }
  .decorated-text--bg {
    padding: 15px 15px 25px;
    margin: 30px 0;
  }
  .decorated-text__text {
    padding: 15px 0 0;
  }

  .buttons-line__btn {
    display: flex;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .person-card {
    flex: 1 1 auto;
  }
  .person-card.slick-slide {
    flex: 0 0 auto;
  }

  .place-card {
    flex: 1 1 auto;
  }
  .place-card.slick-slide {
    flex: 0 0 auto;
  }

  .accordion-widget__item-head {
    font-size: 16px;
  }
  .accordion-widget__item-head-inner {
    padding: 15px 30px 15px 15px;
  }
  .accordion-widget__item-head-inner:after {
    right: 10px;
  }
  .accordion-widget__item-body {
    padding: 0 10px 15px;
  }

  .contacts-block__sidebar {
    margin: 0 0 20px;
  }

  .page404 {
    padding: 30px 0;
    font-size: 14px;
  }

  .result__breadcrumbs {
    padding: 0;
  }	

}
