/*
Theme Name: ShumProm
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "InterTight";
  src: url("assets/fonts/InterTight-Regular/InterTight-Regular.eot");
  src: url("assets/fonts/InterTight-Regular/InterTight-Regular.eot?#iefix") format("embedded-opentype"), url("assets/fonts/InterTight-Regular/InterTight-Regular.woff2") format("woff2"), url("assets/fonts/InterTight-Regular/InterTight-Regular.woff") format("woff"), url("assets/fonts/InterTight-Regular/InterTight-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "InterTight";
  src: url("assets/fonts/InterTight-Medium/InterTight-Medium.eot");
  src: url("assets/fonts/InterTight-Medium/InterTight-Medium.eot?#iefix") format("embedded-opentype"), url("assets/fonts/InterTight-Medium/InterTight-Medium.woff2") format("woff2"), url("assets/fonts/InterTight-Medium/InterTight-Medium.woff") format("woff"), url("assets/fonts/InterTight-Medium/InterTight-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/Oswald-Medium/Oswald-Medium.eot");
  src: url("assets/fonts/Oswald-Medium/Oswald-Medium.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Oswald-Medium/Oswald-Medium.woff2") format("woff2"), url("assets/fonts/Oswald-Medium/Oswald-Medium.woff") format("woff"), url("assets/fonts/Oswald-Medium/Oswald-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --font: "InterTight", sans-serif;
  --font2: "Oswald", sans-serif;
  --base: #1E1E1E;
  --white: #FFFFFF;
  --bg: #E2E2E4;
  --primary: #EB4D18;
  --hover: #F8521A;
  --black-hover: #3A3A3A;
  --gray1: #696969;
  --gray2: #979797;
  --gray3: #D9D9D9;
  --green: #109F76;
  --base04: rgba(0, 0, 0, 0.04);
  --base08: rgba(0, 0, 0, 0.08);
  --base16: rgba(0, 0, 0, 0.16);
  --base60: rgba(30, 30, 30, 0.6);
  --white80: rgba(255, 255, 255, 0.8);
  --white60: rgba(255, 255, 255, 0.6);
  --white32: rgba(255, 255, 255, 0.32);
  --white20: rgba(255, 255, 255, 0.2);
  --white16: rgba(255, 255, 255, 0.16);
  --gradient1: linear-gradient(135deg, #F1511B, #FF9952);
}

* {
  box-sizing: border-box;
  text-decoration: none;
  word-break: break-word;
}

*:hover,
*:focus {
  outline: 0;
}

body {
  background: var(--white);
  font: 400 18px/1.36 var(--font);
  color: var(--base);
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 0;
  background: var(--white);
}

body::-webkit-scrollbar-thumb {
  width: 10px;
  background: var(--base);
  border-radius: 10px;
}

body.hidden {
  overflow: hidden;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--base) var(--white);
  }
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  width: 100%;
  max-width: 1820px;
  padding: 0 16px;
  margin: 0 auto;
}

.overflowH {
  overflow: hidden;
}

a {
  color: var(--primary);
  transition: 0.25s;
}

button {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  font: 500 18px/1.15 var(--font);
  color: var(--base);
  cursor: pointer;
  transition: 0.25s;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

svg {
  transition: 0.25s;
}

strong {
  font-weight: 500;
}

h1,
.h1 {
  text-transform: uppercase;
  font: 500 64px/1.2 var(--font2);
  letter-spacing: 0.02em;
}

h1 strong,
.h1 strong {
  color: var(--primary);
}

h2,
.h2 {
  text-transform: uppercase;
  font: 500 40px/1.32 var(--font2);
  letter-spacing: 0.02em;
}

h2 strong,
.h2 strong {
  color: var(--primary);
}

.h2-2 {
  text-transform: uppercase;
  font: 500 34px/1.32 var(--font2);
  letter-spacing: 0.02em;
}

.h2-2 strong {
  color: var(--primary);
}

h3,
.h3 {
  text-transform: uppercase;
  font: 500 24px/1.32 var(--font2);
  letter-spacing: 0.02em;
}

h3 strong,
.h3 strong {
  color: var(--primary);
}

h4,
.h4 {
  text-transform: uppercase;
  font: 500 20px/1.32 var(--font2);
  letter-spacing: 0.02em;
}

h4 strong,
.h4 strong {
  color: var(--primary);
}

.text18M {
  font: 500 18px/1.15 var(--font);
}

.text18M-2 {
  font: 500 18px/1.15 var(--font);
}

.text16 {
  font: 400 16px/1.36 var(--font);
}

.text16-2 {
  font: 400 16px/1.36 var(--font);
}

.text14 {
  font: 400 14px/1.36 var(--font);
}

.btn {
  max-width: 100%;
  min-height: 60px;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font: 500 18px/1.15 var(--font);
  color: var(--white);
  cursor: pointer;
  transition: 0.25s;
}

.btn__txt {
  max-width: 100%;
}

.btn__ic {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
}

.btn__ic svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

.btn__ic.stroke svg {
  fill: none;
  stroke: var(--white);
}

.btn_f {
  width: 100%;
}

.btn_s {
  min-height: 48px;
  border-radius: 8px;
  padding: 8px 20px;
  gap: 6px;
  font-size: 16px;
}

.btn_s .btn__ic {
  width: 20px;
  height: 20px;
}

.btn_xs {
  min-height: 40px;
  border-radius: 8px;
  padding: 4px 16px;
  gap: 4px;
  font-size: 14px;
}

.btn_white {
  background: var(--white);
  color: var(--base);
}

.btn_white .btn__ic svg {
  fill: var(--base);
}

.btn_white .btn__ic.stroke svg {
  fill: none;
  stroke: var(--base);
}

.btn_dark {
  background: var(--base);
  color: var(--white);
}

.btn_bor {
  background: var(--base04);
  border: 1px solid var(--base);
  color: var(--base);
}

.btn_bor .btn__ic svg {
  fill: var(--base);
}

.btn_bor .btn__ic.stroke svg {
  fill: none;
  stroke: var(--base);
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.swiper-slide {
  flex-shrink: 0;
}

.swiper-button-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.input {
  display: flex;
  align-items: center;
}

input {
  width: 100%;
  height: 48px;
  background: var(--base04);
  border: 1px solid var(--base08);
  border-radius: 8px;
  padding: 0 14px;
  font: 400 16px/1.36 var(--font);
  color: var(--base);
}

input::placeholder {
  font: 400 16px/1.36 var(--font);
  color: var(--gray2);
}

input:focus {
  border-color: var(--base);
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  width: 100%;
  min-height: 106px;
  background: var(--base04);
  border: 1px solid var(--base08);
  border-radius: 8px;
  padding: 13px 14px;
  font: 400 16px/1.36 var(--font);
  color: var(--base);
  resize: vertical;
}

textarea::placeholder {
  font: 400 16px/1.36 var(--font);
  color: var(--gray2);
}

textarea:focus {
  border-color: var(--base);
}

.select {
  width: 100%;
  height: 48px;
  position: relative;
  background: var(--base04);
  border: 1px solid var(--base08);
  border-radius: 8px;
}

.select::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background: url("assets/img/icons/arrow-down-20.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.select select {
  cursor: pointer;
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  appearance: none;
  width: 100%;
  height: 100%;
  padding: 0 14px;
  padding-right: 32px;
  font: 400 16px/1.36 var(--font);
  color: var(--base);
}

.agreement {
  width: 100%;
  padding-left: 30px;
  display: block;
  font: 400 14px/1.36 var(--font);
  color: var(--base);
  position: relative;
  cursor: pointer;
}

.agreement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--base);
  border-radius: 4px;
  transition: 0.15s;
}

.agreement::after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("assets/img/icons/checked.svg") no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.agreement__input {
  display: none;
}

.agreement a {
  color: var(--base);
  text-decoration: underline;
}

.agreement:has(.agreement__input:checked)::before {
  background: var(--base);
}

.agreement:has(.agreement__input:checked)::after {
  display: block;
}

.agreement.error {
  color: #FF0000;
}

.agreement.error::before {
  border-color: #FF0000;
}

.agreement.error a {
  color: #FF0000;
}

.social {
  display: flex;
  gap: 8px;
}

.social__it {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social__it svg {
  width: 24px;
  height: 24px;
  fill: var(--base);
}

.social_s .social__it {
  width: 40px;
  height: 40px;
}

.social_s .social__it svg {
  width: 20px;
  height: 20px;
}

.textBlock h1,
.textBlock h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.textBlock h1:last-child,
.textBlock h2:last-child {
  margin-bottom: 0;
}

.textBlock h1:first-child,
.textBlock h2:first-child {
  margin-top: 0;
}

.textBlock h3,
.textBlock h4 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.textBlock h3:last-child,
.textBlock h4:last-child {
  margin-bottom: 0;
}

.textBlock h3:first-child,
.textBlock h4:first-child {
  margin-top: 0;
}

.textBlock h5,
.textBlock h6 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.textBlock h5:last-child,
.textBlock h6:last-child {
  margin-bottom: 0;
}

.textBlock h5:first-child,
.textBlock h6:first-child {
  margin-top: 0;
}

.textBlock p {
  margin-bottom: 12px;
}

.textBlock p:last-child {
  margin-bottom: 0;
}

.textBlock a {
  text-decoration: underline;
}

.textBlock ul {
  margin-bottom: 16px;
}

.textBlock ul:last-child {
  margin-bottom: 0;
}

.textBlock ul li {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 4px;
}

.textBlock ul li:last-child {
  margin-bottom: 0;
}

.textBlock ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--base);
}

.textBlock ol {
  list-style-type: decimal;
  margin-left: 24px;
  margin-bottom: 16px;
}

.textBlock ol:last-child {
  margin-bottom: 0;
}

.textBlock ol li {
  margin-bottom: 4px;
}

.textBlock ol li:last-child {
  margin-bottom: 0;
}

.textBlock blockquote {
  background: var(--white);
  border: 1px solid var(--base16);
  padding: 20px;
  margin: 20px 0;
}

.textBlock blockquote:last-child {
  margin-bottom: 0;
}

.textBlock img {
  border-radius: 10px;
}

.textBlock .wp-block-image {
  margin-top: 20px;
  margin-bottom: 32px;
}

.textBlock .wp-block-image:last-child {
  margin-bottom: 0;
}

.textBlock .wp-block-image:first-child {
  margin-top: 0;
}

.textBlock .wp-block-gallery {
  margin-top: 20px;
  margin-bottom: 32px;
}

.textBlock .wp-block-gallery:last-child {
  margin-bottom: 0;
}

.textBlock .wp-block-gallery:first-child {
  margin-top: 0;
}

.textBlock .wp-block-table {
  margin: 24px 0;
}

.textBlock .wp-block-table:last-child {
  margin-bottom: 0;
}

.textBlock .wp-block-table:first-child {
  margin-top: 0;
}

.textBlock .wp-block-buttons {
  margin: 24px 0;
}

.textBlock .wp-block-buttons:last-child {
  margin-bottom: 0;
}

.textBlock .wp-block-buttons:first-child {
  margin-top: 0;
}

.textBlock .wp-block-buttons .wp-block-button {
  width: 100%;
}

.textBlock .wp-block-buttons .wp-block-button__link {
  width: 100%;
  min-height: 60px;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 500 18px/1.15 var(--font);
  color: var(--white);
  cursor: pointer;
  transition: 0.25s;
}

.mobMOverlay {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--base60);
}

.mobM {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: 0.25s;
}

.mobM.active {
  visibility: visible;
  opacity: 1;
}

.mobM.active .mobM__inner {
  right: 0;
}

.mobM__inner {
  position: absolute;
  top: 0;
  right: -80px;
  width: 100%;
  height: 100%;
  background: var(--white);
  box-shadow: 0 2px 4px var(--base04);
  padding: 20px 16px;
  padding-top: 58px;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
  overflow: auto;
  -ms-overflow-style: none;
  overflow-y: scroll;
  scrollbar-width: none;
}

.mobM__inner::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.mobM__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--base04);
  border: 1px solid var(--base);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobM__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--base);
}

.mobM__btm {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
  display: grid;
  grid-gap: 12px;
  grid-template-columns: 1fr;
}

.mobM__mail {
  font: 500 18px/1.36 var(--font);
}

.mobM__mail a {
  color: var(--primary);
}

.mobM__social {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}

.mobileM__it {
  padding: 6px 0;
  display: block;
  font: 400 18px/1.36 var(--font);
  color: var(--base);
}

.overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--base60);
}

.modal {
  position: fixed;
  z-index: 10000;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  transition: 0.25s;
}

.modal.active {
  top: 50%;
  visibility: visible;
  opacity: 1;
}

.modal__controls {
  position: absolute;
  top: 8px;
  right: 8px;
}

.modal__close {
  width: 40px;
  height: 40px;
  background: var(--base04);
  border: 1px solid var(--base16);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--base);
}

.modal__inner {
  width: 800px;
  max-height: calc(100vh - 32px);
  background: var(--white);
  border: 1px solid var(--base08);
  border-radius: 10px;
  padding: 40px;
  overflow: auto;
  -ms-overflow-style: none;
  overflow-y: scroll;
  scrollbar-width: none;
}

.modal__inner::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.modal__head {
  text-align: center;
  margin-bottom: 24px;
}

.modal__head:last-child {
  margin-bottom: 0;
}

.modal__ttl {
  padding: 0 12px;
  margin-bottom: 8px;
}

.modal__ttl:last-child {
  margin-bottom: 0;
}

.modal__subt {
  color: var(--gray1);
}

.modal__subt p {
  margin-bottom: 12px;
}

.modal__subt p:last-child {
  margin-bottom: 0;
}

.modal__form {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
}

.modal__inputs {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.modal__input {
  grid-column: span 2;
}

.modal__input.half {
  grid-column: unset;
}

.cookiePopup {
  position: fixed;
  z-index: 500;
  bottom: 20px;
  right: 20px;
  width: 570px;
  background: var(--white);
  border: 1px solid var(--base);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 12px;
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.cookiePopup__txt {
  width: 100%;
}

.cookiePopup__btn {
  flex-shrink: 0;
  margin-left: 12px;
}

.preloader {
  display: none;
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--base60);
}

.preloader__spinner {
  animation: rotate 2s linear infinite;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.preloader__spinner .path {
  stroke: var(--white);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.header {
  position: sticky;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--base);
  padding: 16px 0;
}

.header__wr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 178px;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__mail {
  min-height: 50px;
  border-left: 1px solid var(--white20);
  padding-left: 40px;
  display: inline-flex;
  align-items: center;
}

.header__mail a {
  color: var(--white);
}

.header__cnts {
  display: flex;
  gap: 8px;
}

.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 8px;
}

.header__burger svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--base);
}

.headerM {
  display: flex;
  align-items: center;
  gap: 32px;
}

.headerM__it {
  color: var(--white);
}

.headerM__it span {
  position: relative;
}

.headerM__it span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 1px;
  background: var(--white);
  opacity: 0;
  transition: 0.25s;
}

.footer {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
  background: var(--base);
  padding-top: 110px;
  padding-bottom: 20px;
  color: var(--white);
}

.footer__wr {
  display: flex;
  align-items: flex-start;
}

.footer__left {
  flex-shrink: 0;
  width: 278px;
  margin-right: 24px;
}

.footer__logo {
  width: 178px;
  display: flex;
  align-items: center;
}

.footer__logo img {
  width: 100%;
}

.footer__menu1 {
  width: 100%;
}

.footer__menu1 .footerM {
  max-width: 580px;
  display: grid;
  grid-column-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.footer__menu2 {
  flex-shrink: 0;
  width: 278px;
  margin-left: 24px;
}

.footer__right {
  flex-shrink: 0;
  width: 429px;
  margin-left: 24px;
}

.footer__ttl {
  font: 400 16px/1.36 var(--font);
  color: var(--gray1);
  margin-bottom: 12px;
}

.footer__cnts {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 12px;
}

.footerM {
  margin-top: -4px;
}

.footerM__it {
  padding: 4px 0;
  display: block;
  font: 400 16px/1.36 var(--font);
  color: var(--white);
}

.footerM__it span {
  position: relative;
}

.footerM__it span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 1px;
  background: var(--white);
  opacity: 0;
  transition: 0.25s;
}

.footerCnt.full {
  width: 100%;
}

.footerCnt__ttl {
  color: var(--gray1);
  margin-bottom: 6px;
}

.footerCnt__txt a {
  color: var(--white);
}

.footerBtm {
  border-top: 1px solid var(--white20);
  padding-top: 20px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
  color: var(--gray1);
}

.footerBtm__wr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
}

.footerBtm a {
  color: var(--gray1);
  text-decoration: underline;
}

.crumbs {
  color: var(--gray1);
  margin-bottom: 24px;
}

.crumbs a {
  color: var(--base);
}

.crumbs_white {
  color: var(--white60);
}

.crumbs_white a {
  color: var(--white);
}

.section {
  background: var(--white);
  padding-top: 25px;
  padding-bottom: 85px;
  position: relative;
  z-index: 2;
}

.section::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--white);
  border-radius: 20px 20px 0 0;
}

.section .wrapper {
  position: relative;
  z-index: 3;
}

.section_bg {
  background: var(--bg);
}

.section_bg::before {
  background: var(--bg);
}

.section.np {
  padding: 0;
}

.section.npt {
  padding-top: 0;
}

.section.npb {
  padding-bottom: 0;
}

.section.lp {
  padding-top: 80px;
  padding-bottom: 140px;
}

.section.lpt {
  padding-top: 80px;
}

.section.lpb {
  padding-bottom: 140px;
}

.section.first {
  padding-top: 40px;
}

.section.last {
  padding-bottom: 100px;
}

.sectionH {
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
}

.sectionH:last-child {
  margin-bottom: 0;
}

.sectionH__cnt {
  width: 100%;
}

.sectionH__cnt.half {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
}

.sectionH__cnt.half .sectionH__ttl {
  margin: 0;
}

.sectionH__ttl {
  margin-bottom: 20px;
}

.sectionH__ttl:last-child {
  margin-bottom: 0;
}

.sectionH__subt {
  color: var(--gray1);
}

.sectionH__btn {
  flex-shrink: 0;
  margin-left: 32px;
}

.hero {
  position: sticky;
  z-index: 1;
  top: 82px;
  left: 0;
  width: 100%;
  background-color: var(--base);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero:has(.hero__crumbs) .hero__wr {
  justify-content: space-between;
}

.hero.full .hero__wr {
  min-height: calc(100vh - 52px);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.6;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.hero .wrapper {
  position: relative;
  z-index: 3;
}

.hero__wr {
  min-height: 680px;
  padding-top: 24px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__cnt {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: 1fr;
}

.hero__head {
  max-width: 1033px;
}

.hero__ttl {
  margin-bottom: 24px;
}

.hero__ttl:last-child {
  margin-bottom: 0;
}

.hero__txt {
  max-width: 733px;
  color: var(--white80);
}

.hero__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__advan {
  max-width: 1184px;
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.heroAdvan {
  border-right: 1px solid var(--white16);
  padding-right: 12px;
}

.heroAdvan:last-child {
  border-right: none;
  padding-right: 0;
}

.heroAdvan__subt {
  color: var(--white80);
  margin-top: 4px;
}

#aboutHero .hero__wr {
  padding-bottom: 70px;
}

.cards1 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(6, 1fr);
}

.cards1It {
  min-height: 240px;
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.cards1It__ic {
  width: 50px;
  margin-bottom: 20px;
}

.cards1It__cnt {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
}

.cards1It__subt {
  color: var(--gray1);
  margin-top: 12px;
}

.cards2 {
  display: grid;
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}

.cards2It__img {
  display: block;
  aspect-ratio: 1.7875;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.cards2It__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.75s;
}

.cards2It__head {
  display: flex;
  align-items: center;
}

.cards2It__ttl {
  width: 100%;
  color: var(--base);
}

.cards2It__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--base04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: 0.25s;
}

.cards2It__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--base);
}

.cards2It__subt {
  display: block;
  color: var(--gray1);
  margin-top: 4px;
}

.cards2It2 {
  grid-column: span 2;
  background: var(--base04);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.cards2It2__ic {
  width: 50px;
  margin-bottom: 20px;
}

.cards2It2__cnt {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
}

.cards2It2__subt {
  margin-top: 12px;
}

.cards3 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.cards3__img {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.cards3__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards3__wr {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.cards3It {
  min-height: 238px;
  background: var(--base04);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.cards3It__ic {
  width: 40px;
  margin-bottom: 20px;
}

.cards3It__cnt {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
}

.cards3It__subt {
  color: var(--gray1);
  margin-top: 12px;
}

.cards3It.selected {
  background: var(--base);
  color: var(--white);
}

.cards3It.selected .cards3It__subt {
  color: var(--gray3);
}

.cards3It2 {
  min-height: 238px;
  background: var(--base04);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.cards3It2__head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.cards3It2__ttl {
  width: 100%;
}

.cards3It2__ic {
  flex-shrink: 0;
  width: 40px;
  margin-left: 20px;
}

.cards3It2__subt {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
  color: var(--gray1);
}

.cards3It2.selected {
  background: var(--green);
  color: var(--white);
}

.cards3It2.selected .cards3It2__subt {
  color: var(--white80);
}

.cards4 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.cards4It {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
}

.cards4It__subt {
  color: var(--gray1);
  margin-top: 8px;
}

.cards5 {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: 1fr;
}

.cards5__wr {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(6, 1fr);
}

.cards5It {
  background: var(--base04);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.cards5It__num {
  width: 40px;
  height: 40px;
  background: var(--gradient1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.cards5It__cnt {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
}

.cards5It__subt {
  color: var(--gray1);
  margin-top: 8px;
}

.cards5It__btn {
  margin-top: 20px;
}

.cards5It.selected {
  background: var(--gradient1);
  color: var(--white);
}

.cards5It.selected .cards5It__num {
  background: var(--white32);
}

.cards5It.selected .cards5It__subt {
  color: var(--white80);
}

.infoEl {
  min-height: 60px;
  background: var(--base04);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  color: var(--gray1);
}

.infoEl__ic {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.infoEl__ic svg {
  width: 100%;
  height: 100%;
  fill: var(--gray1);
}

#cards6Section {
  background: var(--bg);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

#cards6Section::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -720px;
  left: 50%;
  transform: rotate(25deg) translate(-1190px, 0);
  width: 511px;
  height: 561px;
  background: url("assets/img/icons/cards6-section-figure.webp") no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  filter: blur(5px);
}

#cards6Section::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -137px;
  right: 50%;
  transform: translate(1010px, 0);
  width: 511px;
  height: 561px;
  background: url("assets/img/icons/cards6-section-figure.webp") no-repeat;
  background-size: cover;
  background-position: center;
}

#cards6Section .sectionH__cnt {
  max-width: 1335px;
}

.cards6 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.cards6It {
  min-height: 240px;
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.cards6It_empty {
  visibility: hidden;
}

.cards6It__ic {
  width: 50px;
  margin-bottom: 20px;
}

.cards6It__cnt {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
}

.cards6It__subt {
  color: var(--gray1);
  margin-top: 12px;
}

.cards6It.dark {
  background: var(--base);
  color: var(--white);
}

.cards6It.dark .cards6It__subt {
  color: var(--gray3);
}

.cards6It.gradient {
  background: var(--gradient1);
  color: var(--white);
}

.cards6It.gradient .cards6It__subt {
  color: var(--white);
}

.cards7 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.cards7It {
  background: var(--base04);
  border-radius: 10px;
  padding: 20px;
}

.cards7It__subt {
  color: var(--gray1);
  margin-top: 8px;
}

.block1 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.block1__img {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.block1__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block1__cnt {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: 1fr;
}

.block1__head {
  max-width: 800px;
}

.block1__ttl {
  margin-bottom: 20px;
}

.block1__ttl:last-child {
  margin-bottom: 0;
}

.block1__ttl strong {
  color: var(--gray1);
}

.block1__subt {
  color: var(--gray1);
}

.block1__list {
  max-width: 800px;
  display: grid;
  grid-gap: 8px;
  grid-template-columns: 1fr;
}

.block1__list li {
  min-height: 28px;
  padding-left: 40px;
  display: flex;
  align-items: center;
  position: relative;
}

.block1__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 28px;
  height: 28px;
  background: url("assets/img/icons/green-list.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.block2 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.block2__cnt {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: 1fr;
}

.block2__head {
  max-width: 800px;
}

.block2__subt {
  color: var(--gray1);
  margin-top: 20px;
}

.block2__logos {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.block2__logo {
  background: var(--white);
  border-radius: 10px;
  aspect-ratio: 1.73;
  position: relative;
  overflow: hidden;
  filter: grayscale(100%);
}

.block2__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block3__wr {
  display: flex;
  align-items: flex-start;
}

.block3__img {
  width: 100%;
  border: 1px solid var(--base16);
  border-radius: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.block3__img img {
  width: 100%;
}

.block3__list {
  flex-shrink: 0;
  width: 580px;
  display: grid;
  grid-gap: 8px;
  grid-template-columns: 1fr;
  margin-left: 24px;
  counter-reset: block3-list;
}

.block3__help {
  margin-top: 40px;
}

.block3It {
  background: var(--white);
  border: 1px solid var(--base16);
  border-radius: 10px;
  padding: 16px;
  padding-left: 40px;
  position: relative;
  overflow: hidden;
  counter-increment: block3-list;
}

.block3It::before {
  content: counter(block3-list);
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: var(--primary);
  border-radius: 10px 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font: 500 16px/1.15 var(--font);
  color: var(--white);
}

.block3It__subt {
  color: var(--gray1);
  margin-top: 8px;
}

.blockText1 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.blockText1__img {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.blockText1__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blockText1__cnt {
  padding-right: 80px;
}

.blockText1__ttl {
  margin-bottom: 20px;
}

.blockText1__txt {
  margin-bottom: 32px;
}

.blog__wr {
  display: grid;
  grid-column-gap: 24px;
  grid-row-gap: 32px;
  grid-template-columns: repeat(4, 1fr);
}

.blog__more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.blog__more .btn {
  min-width: 220px;
}

.blog__mobmore {
  display: none;
  margin-top: 24px;
}

.blogSlider__wr {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.blogSlider__it {
  display: none;
}

.blogSlider__it:nth-child(-n+4) {
  display: block;
}

.blogCard__img {
  display: block;
  border-radius: 10px;
  aspect-ratio: 1.7;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.blogCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.75s;
}

.blogCard__ttl {
  display: block;
  color: var(--base);
  margin-bottom: 4px;
}

.blogCard__date {
  display: block;
  color: var(--gray1);
}

.cta1 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.cta1__cnt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta1__head {
  max-width: 810px;
  margin-bottom: 40px;
}

.cta1__subt {
  color: var(--gray1);
  margin-top: 16px;
}

.cta1Cont__ttl {
  color: var(--gray1);
  margin-bottom: 16px;
}

.cta1Cont__wr {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta1Form {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 30px var(--base08);
  padding: 32px;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
}

.cta1Form__inputs {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.cta1Form__input {
  grid-column: span 2;
}

.cta1Form__input.half {
  grid-column: unset;
}

.article__head {
  margin-bottom: 24px;
}

.article__date {
  color: var(--gray1);
  margin-top: 8px;
}

.article__wr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.article__cnt {
  width: 1033px;
  max-width: 100%;
}

.article__right {
  position: sticky;
  z-index: 5;
  top: 94px;
  right: 0;
  flex-shrink: 0;
  width: 580px;
  margin-left: 20px;
}

.articleCta1 {
  width: 100%;
  max-width: 882px;
  background: var(--base);
  border-radius: 10px;
  padding: 24px;
  padding-left: 204px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin: 32px 0;
}

.articleCta1:last-child {
  margin-bottom: 0;
}

.articleCta1:first-child {
  margin-top: 0;
}

.articleCta1__img {
  position: absolute;
  z-index: 3;
  top: -40px;
  left: -107px;
  width: 287px;
}

.articleCta1__head {
  position: relative;
  z-index: 4;
  margin-bottom: 20px;
}

.articleCta1__subt {
  color: var(--gray3);
  margin-top: 10px;
}

.articleCta1__btn {
  position: relative;
  z-index: 4;
}

.articleMenu {
  background: var(--white);
  border: 1px solid var(--base08);
  border-radius: 10px;
  padding: 24px;
}

.articleMenu__ttl {
  margin-bottom: 16px;
}

.articleMenu__list {
  counter-reset: article-menu;
}

.articleMenu__list li {
  counter-increment: article-menu;
  margin-bottom: 8px;
}

.articleMenu__list li:last-child {
  margin-bottom: 0;
}

.articleMenu__list li::before {
  content: counter(article-menu) ". ";
}

.articleMenu__list li a {
  color: var(--gray1);
}

#contactsSection {
  padding-top: 40px;
  padding-bottom: 110px;
}

.contacts {
  display: flex;
  align-items: flex-start;
}

.contacts__cnt {
  flex-shrink: 0;
  width: 731px;
  margin-right: 20px;
}

.contacts__capt {
  margin-bottom: 24px;
}

.contacts__wr {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}

.contacts__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contacts__map {
  width: 100%;
  height: 600px;
  border: 1px solid var(--base08);
  border-radius: 10px;
  overflow: hidden;
}

.contactsIt__ttl {
  color: var(--gray1);
  margin-bottom: 4px;
}

.contactsIt__txt a {
  color: var(--base);
}

#contactsMap {
  width: 100%;
  height: 100%;
}

.requisites {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.requisites__ttl {
  margin-bottom: 24px;
}

.requisites__txt {
  padding-right: 40px;
}

.requisites__txt p {
  margin-bottom: 8px;
}

.requisites__txt p:last-child {
  margin-bottom: 0;
}

.errorPage {
  padding: 110px 0;
  display: flex;
  align-items: center;
}

.errorPage__wr {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

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

.errorPage__img img {
  width: 100%;
  max-width: 580px;
}

.errorPage__head {
  max-width: 860px;
  text-align: center;
}

.errorPage__ttl {
  margin-bottom: 12px;
}

.errorPage__btns {
  width: 372px;
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.sitemap {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: 1fr;
}

.sitemap__ttl {
  margin-bottom: 16px;
}

.sitemap__wr {
  display: grid;
  grid-column-gap: 16px;
  grid-row-gap: 8px;
  grid-template-columns: repeat(4, 1fr);
}

.sitemap__it a {
  display: block;
  position: relative;
  padding-left: 12px;
}

.sitemap__it a::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--base);
  border-radius: 50%;
}

@media (width < 1900px) {
  body {
    font-size: 16px;
  }

  .wrapper {
    max-width: 1312px;
  }

  button {
    font-size: 16px;
  }

  h1,
  .h1 {
    font-size: 46px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  .h2-2 {
    font-size: 28px;
  }

  h3,
  .h3 {
    font-size: 18px;
  }

  h4,
  .h4 {
    font-size: 16px;
  }

  .text18M {
    font-size: 16px;
  }

  .text18M-2 {
    font-size: 16px;
  }

  .text16 {
    font-size: 14px;
  }

  .btn {
    min-height: 48px;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 16px;
  }

  .btn__ic {
    width: 20px;
    height: 20px;
  }

  .btn_s {
    min-height: 40px;
    padding: 4px 16px;
    font-size: 14px;
  }

  .btn_xs {
    min-height: 40px;
    border-radius: 8px;
    padding: 4px 16px;
    gap: 4px;
    font-size: 14px;
  }

  .social__it {
    width: 40px;
    height: 40px;
  }

  .social__it svg {
    width: 20px;
    height: 20px;
  }

  .modal__inner {
    width: 640px;
  }

  .header__right {
    gap: 32px;
  }

  .header__mail {
    padding-left: 32px;
  }

  .headerM {
    gap: 24px;
  }

  .footer {
    padding-top: 70px;
  }

  .footer__left {
    width: 197px;
    margin-right: 20px;
  }

  .footer__menu1 .footerM {
    max-width: 440px;
    grid-column-gap: 20px;
  }

  .footer__menu2 {
    width: 197px;
    margin-left: 20px;
  }

  .footer__right {
    width: 320px;
    margin-left: 20px;
  }

  .crumbs {
    margin-bottom: 20px;
  }

  .section {
    padding-top: 10px;
    padding-bottom: 70px;
  }

  .section.lp {
    padding-top: 40px;
    padding-bottom: 100px;
  }

  .section.lpt {
    padding-top: 40px;
  }

  .section.lpb {
    padding-bottom: 100px;
  }

  .section.first {
    padding-top: 24px;
  }

  .section.last {
    padding-bottom: 70px;
  }

  .sectionH {
    margin-bottom: 32px;
  }

  .sectionH__cnt.half {
    grid-gap: 20px;
  }

  .sectionH__ttl {
    margin-bottom: 16px;
  }

  .hero__wr {
    min-height: 600px;
    padding-bottom: 120px;
  }

  .hero__cnt {
    grid-gap: 32px;
  }

  .hero__head {
    max-width: 738px;
  }

  .hero__ttl {
    margin-bottom: 20px;
  }

  .hero__txt {
    max-width: 100%;
  }

  .hero__advan {
    max-width: 1024px;
    padding-top: 8px;
    grid-gap: 20px;
  }

  #aboutHero .hero__wr {
    padding-bottom: 62px;
  }

  .cards1 {
    grid-gap: 20px;
  }

  .cards1It {
    min-height: 220px;
    padding: 20px;
  }

  .cards1It__ic {
    width: 40px;
    margin-bottom: 16px;
  }

  .cards1It__subt {
    margin-top: 8px;
  }

  .cards2 {
    grid-column-gap: 20px;
    grid-row-gap: 24px;
  }

  .cards2It__img {
    margin-bottom: 8px;
  }

  .cards2It__arrow {
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }

  .cards2It__arrow svg {
    width: 18px;
    height: 18px;
  }

  .cards2It__subt {
    margin-top: 2px;
  }

  .cards2It2__ic {
    width: 40px;
  }

  .cards2It2__subt {
    margin-top: 8px;
  }

  .cards3 {
    grid-gap: 20px;
  }

  .cards3__wr {
    grid-gap: 20px;
  }

  .cards3It {
    min-height: 220px;
  }

  .cards3It__ic {
    width: 32px;
  }

  .cards3It__subt {
    margin-top: 8px;
  }

  .cards3It2 {
    min-height: 190px;
  }

  .cards3It2__ic {
    width: 32px;
  }

  .cards4 {
    grid-gap: 20px;
  }

  .cards5 {
    grid-gap: 32px;
  }

  .cards5__wr {
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }

  .cards5It__num {
    width: 32px;
    height: 32px;
  }

  .cards5It__btn {
    margin-top: 16px;
  }

  #cards6Section {
    padding: 70px 0;
  }

  #cards6Section::before {
    bottom: -460px;
    transform: rotate(25deg) translate(-820px, 0);
    width: 335px;
    height: 377px;
  }

  #cards6Section::after {
    top: -100px;
    transform: translate(750px, 0);
    width: 378px;
    height: 415px;
  }

  #cards6Section .sectionH__cnt {
    max-width: 955px;
  }

  .cards6 {
    grid-gap: 20px;
  }

  .cards6It {
    min-height: 210px;
  }

  .cards6It__ic {
    width: 40px;
    margin-bottom: 16px;
  }

  .cards7 {
    grid-gap: 20px;
  }

  .block1 {
    grid-gap: 20px;
  }

  .block1__cnt {
    grid-gap: 32px;
  }

  .block1__head {
    max-width: 550px;
  }

  .block1__ttl {
    margin-bottom: 16px;
  }

  .block1__list {
    max-width: 550px;
  }

  .block1__list li {
    min-height: 24px;
    padding-left: 36px;
  }

  .block1__list li::before {
    width: 24px;
    height: 24px;
  }

  .block2 {
    grid-gap: 20px;
  }

  .block2__cnt {
    grid-gap: 32px;
  }

  .block2__head {
    max-width: 600px;
  }

  .block2__subt {
    margin-top: 16px;
  }

  .block2__logo {
    aspect-ratio: 1.5;
  }

  .block3__list {
    width: 413px;
    margin-left: 20px;
  }

  .block3__help {
    margin-top: 32px;
  }

  .block3It {
    padding: 12px;
    padding-left: 36px;
  }

  .block3It__subt {
    margin-top: 6px;
  }

  .blockText1 {
    grid-gap: 20px;
  }

  .blockText1__cnt {
    padding-right: 20px;
  }

  .blockText1__txt {
    margin-bottom: 28px;
  }

  .blog__wr {
    grid-column-gap: 20px;
  }

  .blogSlider__wr {
    grid-gap: 20px;
  }

  .cta1 {
    grid-gap: 20px;
  }

  .cta1__head {
    max-width: 550px;
  }

  .article__head {
    margin-bottom: 20px;
  }

  .article__cnt {
    width: 100%;
  }

  .article__right {
    width: 413px;
  }

  .contacts__cnt {
    width: 522px;
  }

  .contacts__capt {
    margin-bottom: 20px;
  }

  .contacts__wr {
    grid-gap: 16px;
    margin-bottom: 20px;
  }

  .contacts__map {
    height: 500px;
  }

  .requisites {
    grid-gap: 20px;
  }

  .requisites__ttl {
    margin-bottom: 20px;
  }

  .errorPage {
    padding: 70px 0;
  }

  .errorPage__img img {
    max-width: 415px;
  }

  .errorPage__head {
    max-width: 630px;
  }
}

@media (width < 1200px) {
  body {
    font-size: 14px;
  }

  button {
    font-size: 14px;
  }

  h1,
  .h1 {
    font-size: 30px;
    letter-spacing: unset;
  }

  h2,
  .h2 {
    font-size: 24px;
    letter-spacing: unset;
  }

  .h2-2 {
    font-size: 22px;
    letter-spacing: unset;
  }

  h3,
  .h3 {
    letter-spacing: unset;
  }

  h4,
  .h4 {
    letter-spacing: unset;
  }

  .text18M {
    font-size: 14px;
  }

  .text16 {
    font-size: 12px;
  }

  .text16-2 {
    font-size: 14px;
  }

  .text14 {
    font-size: 12px;
  }

  .btn_xs {
    min-height: 32px;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
  }

  .btn_xs .btn__ic {
    width: 16px;
    height: 16px;
  }

  .agreement {
    font-size: 12px;
  }

  .textBlock h1,
  .textBlock h2 {
    margin-top: 40px;
    margin-bottom: 16px;
  }

  .textBlock p {
    margin-bottom: 10px;
  }

  .textBlock ul {
    margin-bottom: 12px;
  }

  .textBlock ul li {
    padding-left: 20px;
  }

  .textBlock ul li::before {
    top: 7px;
    left: 7px;
  }

  .textBlock ol {
    margin-left: 20px;
    margin-bottom: 12px;
  }

  .textBlock blockquote {
    padding: 16px;
    margin: 16px 0;
  }

  .textBlock .wp-block-image {
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .textBlock .wp-block-gallery {
    margin-top: 16px;
    margin-bottom: 20px;
  }

  .textBlock .wp-block-table {
    margin: 16px 0;
  }

  .textBlock .wp-block-buttons {
    margin: 16px 0;
  }

  .textBlock .wp-block-buttons .wp-block-button__link {
    min-height: 48px;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 16px;
  }

  .modal {
    top: 20px;
    bottom: -40px;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    padding-top: 64px;
  }

  .modal.active {
    top: 0;
  }

  .modal__controls {
    top: 0;
    right: 0;
    width: 100%;
    height: 64px;
    background: var(--base);
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .modal__close {
    background: var(--white);
    border: none;
  }

  .modal__inner {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border: none;
    border-radius: 0;
    padding: 24px 16px;
  }

  .modal__head {
    margin-bottom: 16px;
  }

  .modal__head br {
    display: none;
  }

  .modal__ttl {
    padding: 0;
  }

  .modal__subt p {
    margin-bottom: 8px;
  }

  .modal__inputs {
    grid-gap: 12px;
    grid-template-columns: 1fr;
  }

  .modal__input {
    grid-column: unset;
  }

  .cookiePopup {
    bottom: 0;
    right: 0;
    width: 100%;
    border: none;
    border-top: 1px solid var(--base);
    border-radius: 0;
    padding-left: 12px;
  }

  .header {
    padding: 12px 0;
  }

  .header__logo {
    width: 158px;
  }

  .header__mail,
  .header__cnts {
    display: none;
  }

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

  .headerM {
    display: none;
  }

  .footer {
    padding-top: 40px;
  }

  .footer__wr {
    display: block;
  }

  .footer__left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .footer__logo {
    width: 120px;
  }

  .footer__menu1 {
    margin-bottom: 24px;
  }

  .footer__menu1 .footerM {
    max-width: 100%;
    display: grid;
    grid-gap: 0;
    grid-template-columns: 1fr;
  }

  .footer__menu2 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 24px;
  }

  .footer__right {
    width: 100%;
    margin-left: 0;
  }

  .footer__cnts {
    column-gap: 32px;
  }

  .footerCnt__ttl {
    margin-bottom: 4px;
  }

  .footerBtm {
    margin-top: 40px;
  }

  .footerBtm__wr {
    width: 100%;
  }

  .footerBtm__wr p {
    width: 100%;
  }

  .crumbs {
    margin-bottom: 16px;
  }

  .section {
    padding: 24px 0;
  }

  .section::before {
    height: 24px;
    border-radius: 14px 14px 0 0;
  }

  .section.lp {
    padding-top: 24px;
    padding-bottom: 72px;
  }

  .section.lpt {
    padding-top: 24px;
  }

  .section.lpb {
    padding-bottom: 72px;
  }

  .section.first {
    padding-top: 16px;
  }

  .section.last {
    padding-bottom: 48px;
  }

  .sectionH {
    margin-bottom: 24px;
  }

  .sectionH__cnt.half {
    display: block;
  }

  .sectionH__cnt.half .sectionH__ttl {
    margin-bottom: 12px;
  }

  .sectionH__ttl {
    margin-bottom: 12px;
  }

  .hero {
    top: 68px;
  }

  .hero__wr {
    min-height: 540px;
    padding-top: 16px;
    padding-bottom: 48px;
  }

  .hero.full .hero__wr {
    min-height: 540px;
  }

  .hero__cnt {
    grid-gap: 24px;
  }

  .hero__head {
    max-width: 100%;
  }

  .hero__ttl {
    margin-bottom: 12px;
  }

  .hero__btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__advan {
    max-width: 100%;
    padding: 0;
    grid-gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .heroAdvan {
    border-right: none;
    border-top: 1px solid var(--white16);
    padding-right: 0;
    padding-top: 12px;
  }

  .heroAdvan:first-child,
  .heroAdvan:nth-child(2) {
    border-top: none;
    padding-top: 0;
  }

  .heroAdvan__subt {
    margin-top: 2px;
  }

  #aboutHero .hero__wr {
    min-height: 600px;
    padding-bottom: 48px;
  }

  .cards1 {
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .cards1It {
    min-height: auto;
    padding: 16px;
    flex-direction: row;
    align-items: flex-start;
  }

  .cards1It__ic {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 16px;
  }

  .cards1It__cnt {
    width: 100%;
    margin: 0;
  }

  .cards1It__subt {
    margin-top: 4px;
  }

  .cards2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards2It__img {
    margin-bottom: 4px;
  }

  .cards2It__arrow {
    width: 32px;
    height: 32px;
  }

  .cards2It__arrow svg {
    width: 16px;
    height: 16px;
  }

  .cards2It2 {
    min-height: auto;
    padding: 16px;
    flex-direction: row;
    align-items: flex-start;
  }

  .cards2It2__ic {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 16px;
  }

  .cards2It2__cnt {
    width: 100%;
    margin: 0;
  }

  .cards2It2__subt {
    margin-top: 4px;
  }

  .cards3 {
    grid-gap: 10px;
  }

  .cards3__wr {
    grid-gap: 10px;
    grid-template-columns: 1fr;
  }

  .cards3It {
    min-height: auto;
    padding: 16px;
    flex-direction: row;
    align-items: flex-start;
  }

  .cards3It__ic {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 16px;
  }

  .cards3It__cnt {
    width: 100%;
    margin: 0;
  }

  .cards3It__subt {
    margin-top: 4px;
  }

  .cards3It2 {
    min-height: auto;
    padding: 16px;
  }

  .cards3It2__head {
    margin-bottom: 8px;
  }

  .cards3It2__ic {
    width: 24px;
    margin-left: 12px;
  }

  .cards4 {
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .cards4It {
    padding: 16px;
  }

  .cards4It__subt {
    margin-top: 4px;
  }

  .cards5 {
    grid-gap: 24px;
  }

  .cards5__wr {
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .cards5It {
    padding: 16px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards5It__num {
    order: 1;
    margin-bottom: 0;
    margin-right: 16px;
  }

  .cards5It__cnt {
    display: contents;
    margin: 0;
  }

  .cards5It__head {
    order: 2;
    width: calc(100% - 48px);
  }

  .cards5It__subt {
    margin-top: 4px;
  }

  .cards5It__btn {
    order: 3;
    width: 100%;
  }

  .infoEl {
    min-height: auto;
    padding: 16px;
    padding-left: 12px;
    font-size: 12px;
  }

  .infoEl__ic {
    margin-right: 8px;
  }

  #cards6Section {
    padding-top: 48px;
    padding-bottom: 68px;
  }

  #cards6Section::before,
  #cards6Section::after {
    display: none;
  }

  .cards6 {
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .cards6It {
    min-height: auto;
    padding: 16px;
    flex-direction: row;
    align-items: flex-start;
  }

  .cards6It_empty {
    display: none;
  }

  .cards6It__ic {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 16px;
  }

  .cards6It__cnt {
    width: 100%;
    margin: 0;
    padding-right: 24px;
  }

  .cards6It__subt {
    margin-top: 4px;
  }

  .cards7 {
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .cards7It {
    padding: 16px;
  }

  .cards7It__subt {
    margin-top: 4px;
  }

  .block1 {
    display: flex;
    flex-direction: column;
    grid-gap: unset;
    gap: 24px;
  }

  .block1__img {
    order: 2;
    max-width: 560px;
    aspect-ratio: 1.82;
  }

  .block1__cnt {
    display: contents;
  }

  .block1__head {
    order: 1;
    max-width: 100%;
  }

  .block1__ttl {
    margin-bottom: 12px;
  }

  .block1__list {
    order: 3;
    max-width: 100%;
  }

  .block1__btn {
    order: 4;
  }

  .block1__btn .btn {
    width: 100%;
  }

  .block2 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .block2__cnt {
    display: contents;
  }

  .block2__head {
    order: 1;
    max-width: 100%;
  }

  .block2__subt {
    margin-top: 12px;
  }

  .block2__btn {
    order: 3;
  }

  .block2__btn .btn {
    width: 100%;
  }

  .block2__logos {
    order: 2;
  }

  .block2__logo {
    aspect-ratio: 1.73;
  }

  .block3__wr {
    display: block;
  }

  .block3__img {
    width: 100%;
    max-width: 768px;
    margin-bottom: 8px;
  }

  .block3__list {
    width: 100%;
    margin-left: 0;
  }

  .block3__help {
    margin-top: 24px;
  }

  .block3It {
    padding: 10px 12px;
    padding-left: 32px;
  }

  .block3It::before {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }

  .block3It__subt {
    margin-top: 4px;
  }

  .blockText1 {
    grid-template-columns: 1fr;
  }

  .blockText1__img {
    aspect-ratio: 1.82;
  }

  .blockText1__cnt {
    padding-right: 0;
  }

  .blockText1__ttl {
    margin-bottom: 12px;
  }

  .blockText1__txt {
    margin-bottom: 0;
  }

  .blockText1__btn {
    display: none;
  }

  .blog__wr {
    grid-column-gap: 16px;
    grid-row-gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .blog__more {
    margin-top: 24px;
  }

  .blogSlider__wr {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta1 {
    grid-gap: unset;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cta1__cnt {
    display: contents;
  }

  .cta1__head {
    order: 1;
    max-width: 100%;
    margin: 0;
  }

  .cta1__subt {
    margin-top: 12px;
  }

  .cta1Cont {
    order: 3;
    padding-top: 12px;
  }

  .cta1Cont__ttl {
    text-align: center;
    margin-bottom: 12px;
  }

  .cta1Cont__wr {
    flex-wrap: wrap;
  }

  .cta1Cont__btn.phone {
    width: 100%;
  }

  .cta1Cont__btn.mail {
    width: calc(100% - 96px);
  }

  .cta1Form {
    order: 2;
    padding: 16px;
    grid-gap: 16px;
  }

  .cta1Form__inputs {
    grid-template-columns: 1fr;
  }

  .cta1Form__input {
    grid-column: unset;
  }

  .article {
    display: flex;
    flex-direction: column;
  }

  .article__head {
    order: 1;
    margin-bottom: 16px;
  }

  .article__wr {
    display: contents;
  }

  .article__cnt {
    order: 3;
  }

  .article__right {
    position: static;
    width: 100%;
    display: contents;
    margin: 0;
  }

  .articleMenu {
    order: 2;
    padding: 12px;
    margin-bottom: 24px;
  }

  .articleMenu__ttl {
    margin-bottom: 12px;
  }

  .articleMenu__list li {
    margin-bottom: 6px;
  }

  #contactsSection {
    padding-top: 16px;
    padding-bottom: 72px;
  }

  .contacts {
    display: block;
  }

  .contacts__cnt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .contacts__capt {
    margin-bottom: 16px;
  }

  .contacts__wr {
    grid-gap: 12px;
    margin-bottom: 16px;
  }

  .contacts__social {
    display: grid;
    grid-gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts__map {
    height: 400px;
  }

  .requisites {
    grid-gap: 16px;
    grid-template-columns: 1fr;
  }

  .requisites__ttl {
    margin-bottom: 8px;
  }

  .requisites__txt {
    padding-right: 0;
  }

  .errorPage {
    padding: 48px 0;
  }

  .errorPage__wr {
    gap: 20px;
  }

  .errorPage__ttl {
    margin-bottom: 8px;
  }

  .errorPage__btns {
    width: 100%;
  }

  .sitemap {
    grid-gap: 32px;
  }

  .sitemap__ttl {
    margin-bottom: 12px;
  }

  .sitemap__wr {
    grid-gap: 8px;
    grid-template-columns: 1fr;
  }

  .sitemap__it a::before {
    top: 7px;
  }
}

@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  a:hover {
    color: var(--hover);
  }

  .btn:hover {
    background: var(--hover);
    color: var(--white);
  }

  .btn_white:hover {
    background: var(--white);
    color: var(--primary);
  }

  .btn_white:hover .btn__ic svg {
    fill: var(--primary);
  }

  .btn_white:hover .btn__ic.stroke svg {
    fill: none;
    stroke: var(--primary);
  }

  .btn_dark:hover {
    background: var(--black-hover);
    color: var(--white);
  }

  .btn_bor:hover {
    background: var(--base);
    color: var(--white);
  }

  .btn_bor:hover .btn__ic svg {
    fill: var(--white);
  }

  .btn_bor:hover .btn__ic.stroke svg {
    fill: none;
    stroke: var(--white);
  }

  input:not(:focus):hover {
    border-color: var(--base16);
  }

  textarea:not(:focus):hover {
    border-color: var(--base16);
  }

  .agreement:not(:has(.agreement__input:checked)):hover::before {
    border-color: var(--base);
    box-shadow: 0 0 0 4px rgba(41, 41, 51, 0.12);
  }

  .social__it:hover {
    transform: scale(1.075);
  }

  .modal__close:hover {
    background: var(--base);
    border-color: var(--base);
  }

  .modal__close:hover svg {
    stroke: var(--white);
  }

  .headerM__it:hover {
    color: var(--white);
  }

  .headerM__it:hover span::after {
    width: 100%;
    opacity: 1;
  }

  .footerM__it:hover {
    color: var(--white);
  }

  .footerM__it:hover span::after {
    width: 100%;
    opacity: 1;
  }

  .footerBtm a:hover {
    color: var(--white);
  }

  .crumbs a:hover {
    color: var(--primary);
  }

  .cards2It:hover .cards2It__img img {
    transform: scale(1.1);
  }

  .cards2It:hover .cards2It__arrow {
    background: var(--base);
  }

  .cards2It:hover .cards2It__arrow svg {
    stroke: var(--white);
  }

  .blogCard:hover .blogCard__img img {
    transform: scale(1.1);
  }

  .articleMenu__list li a:hover {
    color: var(--base);
  }
}

@media (width < 768px) {
  .sectionH br {
    display: none;
  }

  .sectionH__btn {
    display: none;
  }

  .cards1 {
    grid-template-columns: 1fr;
  }

  .cards2 {
    grid-gap: 24px;
    grid-template-columns: 1fr;
  }

  .cards2It2 {
    grid-column: unset;
  }

  .cards3 {
    grid-template-columns: 1fr;
  }

  .cards3__img {
    aspect-ratio: 1.8;
  }

  .cards4 {
    grid-template-columns: 1fr;
  }

  .cards5__wr {
    grid-template-columns: 1fr;
  }

  .infoEl {
    align-items: flex-start;
  }

  .cards6 {
    grid-template-columns: 1fr;
  }

  .cards7 {
    grid-template-columns: 1fr;
  }

  .block2__logos {
    grid-gap: 4px;
    grid-template-columns: repeat(2, 1fr);
  }

  .blog__wr {
    grid-gap: 16px;
    grid-template-columns: 1fr;
  }

  .blog__more .btn {
    width: 100%;
  }

  .blogSlider {
    transform: translate(-16px, 0);
    width: calc(100% + 32px);
    padding: 0 16px;
  }

  .blogSlider__wr {
    grid-gap: unset;
    display: flex;
    flex-wrap: nowrap;
  }

  .blogSlider__it {
    display: block;
    width: 240px;
    margin-right: 12px;
  }

  .blogSlider__it:last-child {
    margin-right: 0;
  }

  .articleCta1 {
    max-width: 100%;
    padding: 16px;
    margin: 24px 0;
  }

  .articleCta1__img {
    top: -30px;
    left: auto;
    right: -54px;
    width: 158px;
  }

  .articleCta1__head {
    padding-right: 88px;
    margin-bottom: 16px;
  }

  .articleCta1__subt {
    margin-top: 4px;
  }

  .articleCta1__btn {
    width: 100%;
  }

  .errorPage__btns {
    grid-gap: 10px;
    grid-template-columns: 1fr;
  }
}