@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
  --color-black: #232323;
  --color-white: #fff;
  --color-light-grey: #f2f2f2;
  --color-grey: #595757;
  --color-red: #ED1C24;
  --color-green: #17D25E;
  --font-base-vw: calc(10/1920 * 100vw);
  --font-size-xs: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-md: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2rem;
  --font-size-h1: 5rem;
  --title-size: 6rem;
  --font-size-h2: 4rem;
  --font-size-h3: 3rem;
  --font-size-h4: 2.4rem;
  --font-size-h5: 2rem;
  --fontDefault: "Inter", sans-serif;
  --fontMain: "Eurostile Roman", sans-serif;
  --headerPadding: 2rem 0;
  --padding-btn-sm: 1.5rem 5rem;
  --margin-bottom-text: 4rem;
}

* {
  box-sizing: border-box;
  padding: 0;
}

*,
html {
  margin: 0;
}

html {
  font-size: var(--font-base-vw);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--fontDefault);
  font-size: 1.6rem;
  line-height: normal;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  display: block;
  flex: 1 0 auto;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

picture,
img {
  border-style: none;
  display: block;
}

picture,
img,
.video,
video {
  max-width: 100%;
  object-fit: contain;
}

.video,
video {
  -o-object-fit: cover;
  object-fit: cover;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
  font-family: inherit;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template,
[hidden] {
  display: none;
}

@font-face {
  font-family: "Eurostile Roman";
  src: url('/static/fonts/eurostile-roman\ copy.woff2') format("woff2"), url('/static/fonts/eurostile-roman\ copy.woff') format("woff");
  font-display: swap;
}

[bg='dark'] {
  background-color: #232323;
  color: #fff;
}

[color='white'] {
  color: #fff;
}

[color='red'] {
  color: var(--color-red);
}

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

.mh-100 {
  max-height: 100vh;
  overflow: hidden;
}


.font-default {
  font-family: var(--fontDefault);
}

.font-main {
  font-family: var(--fontMain);
}

.text-xs {
  font-size: var(--font-size-xs);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-md {
  font-size: var(--font-size-md);
  line-height: 1.6;
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl,h6 {
  font-size: var(--font-size-xl);
}

.title-xxl {
  font-size: var(--title-size);
  line-height: 1;
}

.title-xs,
h5 {
  font-size: var(--font-size-h5);
}

.title-sm,
h4 {
  font-size: var(--font-size-h4);
}

.title-md,
h3 {
  font-size: var(--font-size-h3);
}

.title-lg,
h2 {
  font-size: var(--font-size-h2);
  line-height: 1.2;
}

.title-xl,
h1 {
  font-size: var(--font-size-h1);
  line-height: 1;
}

.title-xs,
.title-sm,
.title-md,
.title-lg,
.title-xl,
h5,
h4,
h3,
h2,
h1 {
  font-weight: normal;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-normalcase {
  text-transform: none;
}

.text-underline {
  text-decoration: underline;
}

.text-line-through {
  text-decoration: line-through;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.text-pretty {
  text-wrap-style: pretty;
  text-wrap: pretty;
}

.filter-invert {
  filter: invert(1);
}

.text {
  line-height: 1.6;
}

.relative {
  position: relative;
}

.text h6:not(:last-child),
.text h5:not(:last-child),
.text h4:not(:last-child),
.text h3:not(:last-child),
.text h2:not(:last-child),
.text h1:not(:last-child),
.text p:not(:last-child),
.text ul:not(:last-child),
.text ol:not(:last-child),
.text address:not(:last-child) {
  margin-bottom: var(--margin-bottom-text);
}

.text h4:first-child {
  padding-bottom: 4rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 1.58;
}

.text ul {
  list-style-type: none;
}

.text ul li {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.text ul li::before {
  content: "";
  display: block;
  width: 0.55rem;
  height: 1.1rem;
  background: url(/static/img/icons/arrow_right_red.svg) no-repeat center center / contain;
  flex-shrink: 0;
  transform: translateY(0.6rem);
}

.text p + ul, .text p + ol, .text h3 + ul, .text h3 + ol, .text h4 + ul, .text h4 + ol, .text h5 + ul, .text h5 + ol, .text h6 + ul, .text h6 + ol {
  margin-top: -2rem;
}

.text address {
  font-style: normal;
  padding-left: 4rem;
  border-left: 4px solid #ED1C24;
  font-weight: 600;
}

.text ul,
.text ol {
  list-style-position: inside;
}

.text blockquote {
  width: calc(100% + 80rem);
  margin-left: calc(-50vw + 50%);
  padding: 5rem 40rem;
  background: #f2f2f2;
  margin-bottom: var(--margin-bottom-text);
}

.text blockquote p:first-child {
  margin-bottom: 2rem;
}

.text li:not(:last-child) {
  margin-bottom: 0.7rem;
}

.text li::marker {
  color: inherit;
}

.text ol {
  list-style: none;
  counter-reset: item;
}

.text ol li {
  counter-increment: item;
  position: relative;
  padding-inline-start: 2.2rem;
  line-height: 1.8;
}

.text ol li:not(:last-child) {
  margin-bottom: 4rem;
}

.text ol li span:not(:last-child) {
  margin-bottom: 1.6rem;
}

.text ol li::before {
  content: counter(item) ".";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-red);
  font-size: inherit;
  text-align: center;
  line-height: 1.8;
}

.border-text {
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  padding: 6rem 0;
  display: flex;
}

.border-text::before {
  content: "";
  display: inline-flex;
  border-left: 3px solid var(--color-red);
  height: auto;
  background-color: var(--color-red);
  margin-right: 4rem;
}

.border-text::after {
  content: "";
  display: block;
  background-color: var(--color-light-grey);
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  margin-left: calc(-50vw + 50%);
  z-index: -1;
}

hr {
  opacity: 0.35;
  display: block;
  border: none;
  border-bottom: 1px solid;
  margin: 3rem auto;
}

.text-opacity {
  opacity: 0.65;
}

mark {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--fontDefault);
  display: inline-flex;
  background: none;
  padding: 0.15rem 0.65rem;
  font-weight: 600;
  border-radius: 4px;
  position: absolute;
  top: 0;
  border: 1px solid;
}

mark.promo {
  color: var(--color-red);
}

mark.new {
  background-color: var(--color-red);
  color: #fff;
}

mark.green {
  border-color: var(--color-green);
  color: var(--color-green);
}

.container {
  max-width: 88vw;
  position: relative;
}

.container,
.container-md {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.container-md {
  max-width: 136.6rem;
}

.container-sm {
  max-width: 116rem;
  padding: 0 2rem;
}

.container-sm,
.container-xs {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.container-xs {
  max-width: 68rem;
}

.sidebar-container {
  display: grid;
  grid-template-columns: 1fr 35rem;
  gap: 2rem;
  align-items: flex-start;
}

/* .sticky {
  position: sticky;
} */

aside {
  padding: 3.8rem 1.6rem;
}

section {
  position: relative;
  overflow: hidden;
}

section.overflow-auto {
  overflow: visible;
}

.section {
  padding-top: 10rem;
  padding-bottom: 10rem;
}



.section-md {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.section-sm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.full-height {
  height: 100vh;
}

.full-width,
.fullscreen {
  width: 100%;
}

.fullscreen {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
}

.grid5.fullscreen {
  max-height: 98rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.image {
  display: block;
}

.img {
  -o-object-fit: cover;
  object-fit: cover;
}

.bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.flex {
  display: flex;
}

.flex-2 .col {
  flex: 1;
  max-width: 50%;
}

.f-col {
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

.row-reverse {
  flex-flow: row-reverse wrap;
}

.grid.row-reverse .text {
  order: 2;
}

.grid.row-reverse .image {
  order: 1;
}

.align-center {
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.gap-vw {
  gap: 3vw;
}

.post__item,
.post__item mark {
  position: relative;
}

.post__item mark {
  top: 0;
  border: 1px solid;
  margin-bottom: 1rem;
}

.post__img {
  max-height: 26rem;
}

.post__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.post__title {
}

.post__announce {
  color: rgba(0, 0, 0, 0.45);
  font-family: var(--fontDefault);
}

.post__item {
  align-self: stretch;
}

#home #main-news .post__item .text-group {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
}

#home #main-news .post__announce {
  margin-top: auto;
}

.post__date {
  position: relative;
  font-family: var(--fontDefault);
}

.color-gray {
  color: #666666;
}

.post__date mark {
  border-color: green;
  right: 0;
  background-color: green;
  color: #fff;
}

.sticky-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

.sticky-content .right-block {
  position: sticky;
  top: 6rem;
}

.page-form .section {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.page-form .sidebar {
  font-size: var(--font-size-xs);
  top: 6rem;
}

.form-container {
}

.form {
  display: grid;
  gap: 2rem;
  font-family: var(--fontDefault);
  grid-template-columns: repeat(2, 1fr);
  gap: 4.7rem 13.8rem ;
  font-size: var(--font-size-md);
  font-weight: 500;
  position: relative;
  padding-left: 14rem;
}

.popup .form {
  padding-left: 0;
  column-gap: 6.2rem;
  row-gap: 5rem;
}

.popup {
  padding: 10rem 14.5rem;
}

.popup .form .form-field {
  padding-inline-start: 0 !important
}

.popup .form .form-label {
  left: 0 !important;
}

.popup .note {
  max-width: 70%;
}

.form .form-row {
  position: relative;
}

.form-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--font-size-md);
  color: var(--color-grey);
  font-weight: inherit;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, font-size 0.3s ease;
  transform: translateY(0);
  opacity: 1;
  z-index: 1;
}

.bg_dark .form-label {
  color: #fff;
}

.bg_dark .form-field {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

#formSection,#main-news  {
  height: 100vh;
  max-height: 98rem;
  display: flex;
  align-items: center;
}

.form-row.focused .form-label,
.form-row.filled .form-label {
  transform: translateY(-100%);
  opacity: 0;
  font-size: 1.2rem;
}

.form .dotsquare {
  position: absolute;
  left: 0;
  top: 0;
}

.form .vertical-text {
  position: absolute;
  left: 1.3rem;
  color: #666666;
  bottom: 0;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.form-row input {
  font-size: var(--font-size-md);
}

.form .form-row .text-sm {
  font-size: var(--font-size-md);
}

.form-field[type="date"] {
  color: transparent;
}

.form-field[type="date"]::-webkit-datetime-edit {
  color: transparent;
}

.form-row.focused .form-field[type="date"],
.form-row.filled .form-field[type="date"] {
  color: inherit;
}

.form-row.focused .form-field[type="date"]::-webkit-datetime-edit,
.form-row.filled .form-field[type="date"]::-webkit-datetime-edit {
  color: inherit;
}

.form-field {
  padding: 0 0 2rem;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(35,35,35, 0.15);
  outline: none;
  border-radius: 0;
  font-weight: inherit;
}

.file-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.file-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.file-label {
  cursor: pointer;
  flex-shrink: 0;
}

.file-hint {
  color: var(--color-grey);
  font-size: var(--font-size-sm);
  max-width: 32rem;
  line-height: 1.6;
}

#formSection.section_intro .title-xxl {
  margin-bottom: 3.6rem;
}


[bg="white"] .form-field {
  background-color: #fff;
}

[bg="light-grey"] {
  background-color: #f2f2f2;
}

.form .note {
  margin-top: 12px;
  font-size: 1.2rem;
}



.error .form-field {
  border-color: var(--color-red);
  color: var(--color-red);
  position: relative;
}

.errorMessage {
  display: block;
  color: var(--color-red);
  font-size: 12px;
  margin-top: 5px;
}

.checkbox {
  display: inline-flex;
  align-items: center;
}

.checkbox a {
  text-decoration: underline;
  color: var(--color-blue);
}

.form-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form-checkbox+label {
  display: inline-flex;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  align-items: center;
}

.form-checkbox+label::before {
  content: "";
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid var(--color-red);
  margin-right: 2rem;
  background-repeat: no-repeat;
  align-self: stretch;
  background-position: center center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.form-checkbox:checked+label::before {
  background-color: var(--color-red);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 13l5 5L20 7' stroke='%23fff' stroke-linecap='square'/%3E%3C/svg%3E");
  background-size: 2rem 2rem;
}

.form-checkbox:disabled+label::before {
  background-color: #fff;
}

#to-top {
  width: 7rem;
  height: 7rem;
  position: fixed;
  bottom: 6rem;
  right: 3rem;
  background: #fff url(../img/icons/to-top.svg) no-repeat center/2rem 1rem;
  border-radius: 50%;
  z-index: 999;
  border: 1px solid var(--color-black);
}

#to-top,
button {
  cursor: pointer;
}

button {
  border: none;
  background-color: inherit;
  font-size: inherit;
}

.btn-link {
  border: 1px solid var(--color-grey);
  padding: 0.6rem 1rem;
  font-size: var(--font-size-xs);
  display: inline-block;
}

.btn,
.btn-sm {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  justify-content: center;
  padding: 1.8rem 3rem;
  cursor: pointer;
  font-weight: 500;
  border: 1px solid;
}

.btn-sm {
  padding: var(--padding-btn-sm);
}

.btn-default {
  /* background-color: rgba(255, 255, 255, 0.05); */
  border: 1px solid;
}

.btn-primary {
  color: var(--color-white);
  background-color: var(--color-red);
  border-color: var(--color-red);
}

.btn-transparent-white {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background-color: transparent;
}

.btn-primary.white {
  color: var(--color-black);
  background-color: #fff;
  border-color: #fff;
}

.btn-primary.black {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bg-wrapper img, .bg-wrapper video, .bg-wrapper picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loading:not([href]) {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.0' width='160px' height='20px' viewBox='0 0 128 16' xml:space='preserve'%3E%3Cpath fill='%23ffffff' fill-opacity='0.42' d='M6.4,4.8A3.2,3.2,0,1,1,3.2,8,3.2,3.2,0,0,1,6.4,4.8Zm12.8,0A3.2,3.2,0,1,1,16,8,3.2,3.2,0,0,1,19.2,4.8ZM32,4.8A3.2,3.2,0,1,1,28.8,8,3.2,3.2,0,0,1,32,4.8Zm12.8,0A3.2,3.2,0,1,1,41.6,8,3.2,3.2,0,0,1,44.8,4.8Zm12.8,0A3.2,3.2,0,1,1,54.4,8,3.2,3.2,0,0,1,57.6,4.8Zm12.8,0A3.2,3.2,0,1,1,67.2,8,3.2,3.2,0,0,1,70.4,4.8Zm12.8,0A3.2,3.2,0,1,1,80,8,3.2,3.2,0,0,1,83.2,4.8ZM96,4.8A3.2,3.2,0,1,1,92.8,8,3.2,3.2,0,0,1,96,4.8Zm12.8,0A3.2,3.2,0,1,1,105.6,8,3.2,3.2,0,0,1,108.8,4.8Zm12.8,0A3.2,3.2,0,1,1,118.4,8,3.2,3.2,0,0,1,121.6,4.8Z'/%3E%3Cg%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M-42.7,3.84A4.16,4.16,0,0,1-38.54,8a4.16,4.16,0,0,1-4.16,4.16A4.16,4.16,0,0,1-46.86,8,4.16,4.16,0,0,1-42.7,3.84Zm12.8-.64A4.8,4.8,0,0,1-25.1,8a4.8,4.8,0,0,1-4.8,4.8A4.8,4.8,0,0,1-34.7,8,4.8,4.8,0,0,1-29.9,3.2Zm12.8-.64A5.44,5.44,0,0,1-11.66,8a5.44,5.44,0,0,1-5.44,5.44A5.44,5.44,0,0,1-22.54,8,5.44,5.44,0,0,1-17.1,2.56Z'/%3E%3CanimateTransform attributeName='transform' type='translate' values='23 0;36 0;49 0;62 0;74.5 0;87.5 0;100 0;113 0;125.5 0;138.5 0;151.5 0;164.5 0;178 0' calcMode='discrete' dur='1170ms' repeatCount='indefinite'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  text-indent: 1000%;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  transition: none;
}

.form-btn {
  width: 100%;
  font-weight: 500;
  border-radius: 0.6rem;
  height: 7rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}

.icon {
  display: inline-flex;
  align-items: center;
}

.icon::before {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.phone__icon::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.193984 0.73698C0.00540544 1.06479 -0.0332675 1.35021 0.0248673 1.98456C0.278464 4.75147 1.28112 7.24486 3.02917 9.45573C3.40319 9.92882 4.65244 11.1781 5.12552 11.5521C7.02464 13.0536 9.17318 14.0284 11.475 14.4328C12.2223 14.5641 13.1778 14.6467 13.4268 14.6015C14.016 14.4947 14.5115 13.9736 14.5623 13.4075C14.5742 13.2745 14.595 12.4728 14.6085 11.6258C14.6364 9.88239 14.6079 9.70173 14.2487 9.34372C13.998 9.09369 13.8437 9.0415 12.3117 8.68843C11.0418 8.39576 10.7098 8.35952 10.4133 8.48124C10.048 8.63127 9.93535 8.73718 9.43817 9.398C8.80438 10.2404 8.82575 10.2211 8.64284 10.1155C6.93894 9.13117 5.61886 7.84069 4.632 6.19458C4.503 5.97941 4.39728 5.78401 4.39703 5.76035C4.39681 5.73673 4.67822 5.50619 5.02243 5.24809C5.93769 4.56174 6.15803 4.26518 6.14989 3.73064C6.14529 3.4251 5.56786 0.953562 5.44098 0.696273C5.3096 0.429848 5.11398 0.245869 4.81933 0.111671C4.54102 -0.0150807 4.41189 -0.0197428 2.48208 0.0277852C1.12896 0.061139 0.98672 0.0792238 0.6845 0.256538C0.412694 0.416018 0.334721 0.492363 0.193984 0.73698ZM1.21513 0.899682C1.27295 0.883662 2.00711 0.852623 2.84656 0.83069C4.41164 0.789826 4.59649 0.809289 4.70923 1.02678C4.73488 1.07628 4.89411 1.70328 5.06307 2.4201C5.32662 3.53796 5.36182 3.74719 5.31072 3.89053C5.25321 4.05204 5.22402 4.07823 4.44662 4.66671C4.0041 5.00166 3.60413 5.31364 3.55779 5.36004C3.41339 5.50463 3.44118 5.70763 3.66324 6.13081C4.3321 7.40549 5.41463 8.72238 6.5875 9.68811C7.3405 10.3082 8.7066 11.1416 8.94465 11.1261C9.13254 11.114 9.21477 11.0334 9.71464 10.3723C9.98738 10.0116 10.3023 9.60789 10.4145 9.4751C10.6167 9.23593 10.6205 9.23364 10.836 9.2281C11.0875 9.22156 13.4831 9.774 13.631 9.87262C13.6856 9.90898 13.7503 10.0018 13.7748 10.0789C13.7994 10.156 13.8074 10.9386 13.7926 11.8181C13.7636 13.5422 13.754 13.5947 13.4384 13.7537C13.3328 13.8069 13.1462 13.8163 12.7893 13.7864C10.2042 13.57 7.7858 12.6087 5.7069 10.9711C5.19314 10.5664 4.14909 9.5358 3.7046 8.99456C2.30949 7.29583 1.32786 5.12397 0.965068 2.93334C0.838817 2.17117 0.777334 1.45938 0.824049 1.30115C0.868573 1.15031 1.0748 0.938637 1.21513 0.899682Z' fill='black'/%3E%3C/svg%3E%0A");
  margin-right: 6px;
}

.icon__wa::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.21129 0.0230987C5.89905 0.168642 4.78802 0.552943 3.70575 1.23566C2.30602 2.11865 1.17793 3.46989 0.564607 4.99828C-0.258386 7.04901 -0.179324 9.30001 0.786485 11.3157L0.969033 11.6967L0.789985 12.5C0.691494 12.9418 0.571825 13.4836 0.524074 13.7041C0.476286 13.9245 0.344442 14.5286 0.231043 15.0465C0.117644 15.5644 0.0301975 15.9931 0.0367587 15.9993C0.0432835 16.0053 0.212672 15.9731 0.413153 15.9275C2.08498 15.5475 2.9979 15.3397 3.62085 15.1974C4.02181 15.1057 4.38268 15.0381 4.42278 15.0471C4.46287 15.0561 4.6506 15.1319 4.83992 15.2156C6.51321 15.9549 8.50374 16.0723 10.306 15.538C13.293 14.6525 15.539 12.0399 15.9424 8.98134C16.0197 8.3957 16.0191 7.42471 15.9412 6.87147C15.5743 4.26616 13.9078 1.9735 11.5307 0.803982C10.8256 0.457032 9.98223 0.191527 9.2161 0.0752815C8.75233 0.0049149 7.637 -0.0241282 7.21129 0.0230987ZM8.57821 1.26105C10.2277 1.41655 11.6658 2.09496 12.8133 3.25905C13.7519 4.21124 14.3578 5.33736 14.638 6.65071C14.7267 7.06639 14.7358 7.18183 14.7371 7.91002C14.7383 8.60553 14.7273 8.76721 14.6544 9.13078C14.3826 10.4846 13.8145 11.5803 12.8824 12.5483C10.833 14.6763 7.64491 15.226 4.9901 13.9091C4.62275 13.7268 4.55218 13.7035 4.441 13.7279C4.37083 13.7432 4.05918 13.8142 3.74843 13.8858C2.33522 14.2111 1.70192 14.3487 1.68676 14.3335C1.67247 14.3192 1.90575 13.2215 2.20392 11.9L2.29851 11.4808L2.16226 11.2483C1.50166 10.1215 1.15665 8.65804 1.26498 7.44216C1.28743 7.19007 1.34772 6.78532 1.39897 6.54274C1.94468 3.95882 4.04547 1.89621 6.66452 1.37285C7.37386 1.2311 7.92128 1.19914 8.57821 1.26105ZM5.2247 4.49026C4.81543 4.70504 4.44457 5.303 4.36475 5.8769C4.25189 6.68803 4.65931 7.6103 5.6814 8.85747C6.11411 9.38546 6.85968 10.06 7.36566 10.3812C7.98033 10.7714 9.06618 11.1811 9.75109 11.2812C10.3429 11.3678 10.917 11.1949 11.3489 10.8003C11.6275 10.5458 11.7076 10.3698 11.7862 9.83973C11.8291 9.55032 11.8076 9.53137 10.9574 9.10968C10.505 8.88531 10.1181 8.7166 10.0285 8.70468C9.8545 8.68154 9.90904 8.63428 9.43164 9.22188C9.26881 9.4223 9.11681 9.59834 9.09381 9.61307C9.0022 9.67181 8.83923 9.63337 8.50538 9.47419C7.97505 9.22144 7.52889 8.90641 7.11903 8.49537C6.72171 8.09693 6.22711 7.40671 6.22711 7.2507C6.22711 7.18927 6.30409 7.07816 6.46623 6.90561C6.69044 6.66689 6.84415 6.41629 6.84597 6.28634C6.84678 6.23059 6.30657 4.87387 6.20673 4.68085C6.1023 4.47897 5.99222 4.42981 5.64808 4.43141C5.43535 4.4324 5.29877 4.45138 5.2247 4.49026Z' fill='black'/%3E%3C/svg%3E%0A");
}

.icon__ig::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("/static/img/icons/instagram.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon__telegram::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("/static/img/icons/telegram.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  filter: invert(1);
}

.icon__download::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='15' viewBox='0 0 14 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.76719 0.0546724C6.70373 0.0867939 6.63004 0.165203 6.59277 0.240267C6.52978 0.367148 6.52825 0.485974 6.52825 5.26129V10.1524L5.45682 9.05527C4.86752 8.45189 4.35273 7.94123 4.31283 7.92047C4.20961 7.86681 4.04835 7.87381 3.91752 7.93758C3.66423 8.06108 3.59107 8.41042 3.76742 8.65422C3.87552 8.80366 6.59094 11.5863 6.74038 11.7008C6.80682 11.7517 6.8844 11.7742 6.99337 11.7742C7.10234 11.7742 7.17991 11.7517 7.24636 11.7008C7.39579 11.5863 10.1112 8.80366 10.2193 8.65422C10.3957 8.41042 10.3225 8.06108 10.0692 7.93758C9.93839 7.87381 9.77713 7.86681 9.6739 7.92047C9.634 7.94123 9.11922 8.45189 8.52992 9.05527L7.45849 10.1524V5.26129C7.45849 0.479283 7.45706 0.367319 7.3937 0.239755C7.28363 0.018045 7.00314 -0.0648018 6.76719 0.0546724ZM0.256413 10.2248C0.196446 10.2562 0.11422 10.3296 0.0736879 10.388L0 10.4941V12.3204V14.1466L0.0944853 14.3412C0.205947 14.5708 0.454453 14.8215 0.673855 14.9256L0.830566 15H6.99337H13.1562L13.3115 14.9262C13.5321 14.8215 13.7598 14.5925 13.8819 14.3527L13.9867 14.1466L13.9964 12.3627C14.0052 10.7559 14.0006 10.5668 13.9508 10.459C13.7966 10.125 13.3727 10.0858 13.1585 10.3856C13.0916 10.4793 13.0893 10.5297 13.0731 12.2232C13.0571 13.8969 13.054 13.9663 12.992 14.0128C12.895 14.0857 1.09173 14.0857 0.99472 14.0128C0.932726 13.9663 0.929603 13.897 0.913623 12.2277C0.898473 10.6434 0.891862 10.483 0.838407 10.3992C0.710832 10.1992 0.452958 10.1219 0.256413 10.2248Z' fill='black'/%3E%3C/svg%3E%0A");
  margin-right: 1rem;
}
.close__icon {
  cursor: pointer;
}

.close__icon::before {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.707031 0.707108L20.707 20.7071' stroke='black' stroke-width='2'/%3E%3Cpath d='M20.707 0.707108L0.707031 20.7071' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.arrow-left__icon::before {
  content: "";
  width: 7px;
  height: 10px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.707031 0.707108L4.70703 4.70711L0.707031 8.70711' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.arrow-right__icon {
  border: none;
}

.arrow-right__icon::after {
  content: "";
  width: 7px;
  height: 10px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.530334 0.530273L5.53033 5.53027L0.530334 10.5303' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}

.menu.mobile {
  width: 3.4rem;
  height: 3.4rem;
  background: url(../img/icons/menu.svg) no-repeat center/3.4rem 1.6rem;
}

.menu.mobile.is-active {
  background: url(../img/icons/close.svg) no-repeat center/2.2rem 2.2rem;
}

.user-select-none {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.filter-invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.img-auto {
  height: auto;
}

/* Padding top */

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

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pt-10 {
  padding-top: 10rem;
}

/* Padding bottom */

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

/* Margin top */

.mt-auto {
  margin-top: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mt-10 {
  margin-top: 10rem;
}

/* Margin bottom */

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.w-100 {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.h-opacity {
  transition: opacity 0.3s;
}

.h-opacity:hover {
  opacity: 0.75;
}

.h-underline:hover {
  text-decoration: underline;
}

.h-color {
  transition: color 0.15s;
}

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

.h-imgZoom,
.h-imgZoom .post__img {
  position: relative;
  overflow: hidden;
}

.h-imgZoom img {
  transition: 0.35s;
}

.h-imgZoom:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.header {
  padding: var(--headerPadding);
  font-size: var(--font-size-lg);
  position: sticky;
  background: var(--color-white);
  top: 0;
  z-index: 999;
}

.header .container {
  align-items: center;
}

.nav {
  display: flex;
  gap: 3.5rem;
  margin-right: 8rem;
  font-weight: 600;
}

.header .langs {
  margin-right: 5.5rem;
  margin-left: 5.5rem;
}

.header-logo {
  max-width: 13.8rem;
}

.header__menu:after {
  content: '';
  width: 100vw;
  height: 120vh;
  position: fixed;
  opacity: 0;
  top: 10rem;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.header__menu.active:after {
  opacity: 1;
  pointer-events: auto;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  position: relative;
}

.nav-link.active::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-red);
  position: absolute;
  bottom: -0.6rem;
  left: 0;
}

.dropdown .nav-link::after {
  content: "";
  display: block;
  background: url(/static/img/icons/chevron-down.svg) no-repeat center/cover;
  width: 8px;
  height: 4px;
  transform: translateY(1px);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.footer .dropdown .nav-link::after {
  filter: brightness(0) invert(1);
}

.dropdown.active .nav-link::after {
  transform: translateY(1px) rotate(180deg);
}

.dropdown__content {
  position: absolute;
  top: calc(100% + 3.9rem);
  left: 50%;
  transform: translateX(-50%);
  background-color: #F2F2F2;
  padding: 2.6rem 5.5rem 3.3rem;
  border-radius: 0.5rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: none;
  min-width: max-content;
  font-size: var(--font-size-md);
}

.dropdown__content a {
  display: block;
  margin-bottom: 2rem;
}

.dropdown__content a.active {
  color: var(--color-red);
}

.dropdown__content a:last-child {
  margin-bottom: 0;
}

.mob {
  display: none;
}

main {
  flex: 1 0 auto;
}

.footer {
  background: #232323;
  padding: 6.3rem 0 8rem;
  color: var(--color-white);
  font-size: 1.6rem;
  position: relative;
  z-index: 99;
}

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

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

.footer_top .footer-nav{align-items:flex-start; gap: 14rem;}
.footer .footer-nav__col{display:flex;flex-direction:column;gap:1.4rem}
.footer .footer-nav__title{font-weight:600}
.footer .footer-nav__sub{list-style:none;margin:0;display:flex;flex-direction:column;gap:1rem}
.footer .footer-nav__sublink{color:#888;font-size:1.4rem;font-weight:400}

.footer hr {
  margin: 4.5rem 0;
}

.footer .dropdown:after {
  filter: invert(1);
}

.footer .dropdown__content {
  background: #232323;
  z-index: 10;
  top: auto;
  bottom: calc(100% + 3.9rem);
}

.footer-logo {margin-left: auto; max-width: 17rem;}

.footer .langs {margin-left: auto; margin-right: 11rem;}


.banner {
  position: relative;
  height: 74rem;
  min-height: 720px;
  color: #fff;
}

.banner-template {
  height: 79rem;
  min-height: revert;
}

.banner-sm {
  height: 28vh;
  position: relative;
  max-height: 30rem;
  min-height: 300px;
}

.banner-lg {
  height: 69vh;
  max-height: 74.3rem;
  /* min-height: 835px; */
}

.page__title {
  text-align: center;
}

.banner-lg .container {
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 11rem;
  text-align: center;
  color: #fff;
}

.banner-sm .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page_title {
  line-height: 1.1;
  margin-bottom: 1rem;
}

.banner .crumbs {
  position: absolute;
  left: 0;
  text-wrap: nowrap;
  top: 4rem;
}

.banner .text-md {
  max-width: 85rem;
}

.about .banner .text-md {
  margin-left: auto;
  align-self: flex-end;
  padding-left: 3.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  max-width: 41rem;
  text-align: start;
  margin-top: 5rem;
}

.crumbs a {
  text-decoration: underline;
  font-family: var(--fontMain);
}

.crumbs .sep {
  margin: 0 1rem;
}

.banner .slider {
  height: 100%;
  max-height: 100%;
}

.slider {
  overflow-x: hidden;
}

.banner .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10rem 0;
}

.banner .swiper-slide.bottom {
  align-items: flex-end;
}

.banner .swiper-slide:not(:has(.title-svg)) .btn-group {
  margin-top: 4rem;
}

.swiper-button-next, .swiper-button-prev {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
}

.swiper-pagination-bullet-active {
  background: var(--color-white);
  width: 4.3rem;
  border-radius: 5rem;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 1);
}

.swiper-button-next {
  right: 10.6rem;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {bottom: 0; top: auto; padding-bottom: 7rem;}

.swiper-button-prev {
  left: 10.6rem;
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: #fff;
  font-size: 2rem;
}

.banner_content {
  padding: 0 15rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.text-right .banner_content {
  justify-content: flex-end;
}

.banner_content .title-svg {
  max-width: 46rem;

}

.banner_content h2 {
  font-family: var(--fontMain);
}

.banner_content .text-group {
  color: #fff;
  width: 48rem;
}

.banner_content .title .btn-group {
  margin-top: 4.4rem;
}

.btn-group .btn {
  flex: 1;
}

.section_intro {
  background: #fff;

}

.section_intro.fullscreen {
  max-height: 98rem;
  height: 100vh;
  display: flex;
  align-items: center;
}

.section_intro.fullscreen .text-md {
  font-size: var(--font-size-h4);
}

.section_intro .btn-group  {
  margin-top: 5.5rem;
}

.section_intro .btn-group .btn {
  flex-shrink: 0;
  padding: var(--padding-btn-sm);
  text-wrap: nowrap;
}

.section_intro .title-xxl {
  max-width: 116rem;
  margin-bottom: 7.2rem;
}

.section_intro .grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 6rem;
  row-gap: 4rem;
  align-items: stretch;
}

.section_intro .grid.grid-4 {
  grid-template-columns: repeat(4,1fr);
  gap: 5rem;
  align-items: flex-start;
}

.section_intro.simple .grid.grid-4 {
  align-items: stretch;
}

.section_intro .grid_item, .support .grid_item {
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  min-height: 22.2rem;
  padding: 3.6rem;
  border-radius: 0.5rem;
}

.support .grid_item, .simple .grid_item {
  padding: 2.2rem;
}

.support .grid_item {
  flex-direction: column;
}

.support .grid_item .text-md {
  margin-top: 1rem;
}

.link_to {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: background 0.3s;
}

.section_intro .grid_item.link::after {
  content: '';
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  background: url(/static/img/icons/link.svg) no-repeat center/contain;
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  transition: transform 0.3s ease-in-out;
}

.bg_light .grid_item, .support .grid_item {
  border: 1px solid #d9d9d9;
}

.support .grid {
  gap: 2rem;
}

.section_intro .grid_item.link:hover::after {
  transform: scale(1.1);
}

.dotsquare {
  background: var(--color-red);
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.2rem;
}

.section_intro .text-container .title-sm, .section_intro .text-container .text-md {
  max-width: 86rem;
  margin-left: auto;
  color: #232323;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section_intro.text-center .title-xxl {
  margin: 0 auto;
}

.section_intro .text-container table td {
  padding-right: 18rem;
}

.section_intro .text-container table td:last-child {
  padding-right: 0;
}

.pin_section_next {
  position: relative;
  z-index: 0;
}

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

section {
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
}

section.pin_section_next,
section.section-next {
  background-color: transparent;
}

.pin-spacer {
  z-index: 0 !important;
}

.section-next {
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square_block {
  background: var(--color-red);
  color: var(--color-white);
  max-width: 75rem;
  margin: auto;
  padding: 7.6rem 2.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.square_block>img, .square_block .video_link {
  margin: 2.5rem 0 3.5rem;
}

.square_block .video_link:hover .play_icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.video_link {
  position: relative;
}

.video_link .play_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease-in-out;
}

.square_block .title-md {
  padding: 0 9.1rem;
}

.square_block.small {
  max-width: 37.5rem;
  padding: 6rem 8rem;
  font-family: var(--fontMain);
  text-transform: uppercase;
}

.square_block.small>img {
  margin: 0;
  padding: 3rem 0 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  margin-bottom: 1.8rem;
}

.square_block.medium {
  max-width: 56rem;
  padding: 7.4rem 7.5rem 7rem;
  font-family: var(--fontMain);
  text-transform: uppercase;
}

.square_block.medium .title-md {
  padding: 0;
  font-size: var(--font-size-h4);
}

.square_block.medium .text-md {
  display: flex;
  align-items: flex-end;
}

.square_block.medium .text-md h2 {
  font-size: 10rem;
  line-height: 1;
  margin-right: 1.4rem;
  margin-bottom: 0.4rem;
}

.square_block.medium .text-md p {
  font-size: 7rem;
  line-height: 125%;
}

.flex-1 {
  flex: 1;
}

.multibrand_container .container>img, .multibrand_container .images_col{
  width: 50%;
  flex: 1;
}

.multibrand_container .container {
  gap: 13rem;
  align-items: center;
}

.multibrand {
  height: 100vh;
  max-height: 100rem;
}

.multibrand .section_intro .title-xxl {
  margin-bottom: 9rem;
}

.multibrand_container .images_col .image_item {
  flex-direction: row;
  gap: 6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.multibrand_container .images_col .image_item img {
  margin-top: 0.6rem;
}

.multibrand_container .images_col .image_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.multibrand_container .grid_image {
  width: 4.5rem;
  height: 4.5rem;
}

.multibrand_container .image_item .title-xl {
  margin: 0;
}

.image-item.bg_dark {
  background-color: #232323;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-item.bg_dark img {
  max-width: 52rem;
}

.separator {
  width: 1px;
  background-color: rgba(0, 0, 0, 0.15);
}

.image_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image_item .title-xl {
  margin: 6rem 0 2.6rem;
}

.grid_image {
  height: 4.5rem;
  object-fit: contain;
  width: auto;
}

.image_grid .separator {
  margin: 0 7.5rem;
}

.square_block.small .title-md {
  font-size: var(--font-size-h4);
  padding: 0 1rem;
}

.square_block .border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  margin-bottom: 2.3rem;
  padding-bottom: 1.4rem;
}

/* .sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
} */

.sticky+section {
  background: #fff;
}

.section_next:has(.small) {
  padding: 25vh 0;
}

.indexed_grid .grid_item {
  position: relative;
}

.indexed_grid .grid {
  row-gap: 7rem;
}

.indexed_grid .grid_item>img {
  width: 100%;
}

.indexed_grid .grid_content {
  position: absolute;
  right: 12.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 7rem;
  padding-right: 7.5rem;
  max-width: 45.5rem;
  display: flex;
  flex-direction: column;
}

.grid_index {
  margin: 0;
  border: 1px solid #ED1C24;
  color: #ED1C24;
  width: 8.5rem;
  height: 8.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}

.grid_content .title-md {
  margin-bottom: 3.3rem;
}

.bg_gray {
  background: #F2F2F2;
}

.photo_grid {
  background: #f2f2f2;
  padding-bottom: 10rem;
}

.photo_grid .container {
  display: flex;
  flex-flow: wrap;
  row-gap: 5.2rem;
  column-gap: 5.6rem;
}

.photo_grid .container img:last-child {
  width: 100%;
  flex: 1 0 auto;
  object-fit: cover;
}

.photo_column_1 {
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
  max-width: 70rem;
}

.photo_column_2 {
  display: flex;
  flex-direction: column;
  row-gap: 5.2rem;
  max-width: 55%;
  flex-grow: 1;
  /* max-width: 93rem; */
}

#post .sep {
  width: 1px;
  height: 1.6rem;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0 1rem;
}

.icon-vk::before {
  content: '';
  display: block;
  width: 2.9rem;
  height: 1.5rem;
  background-image: url(/static/img/icons/vk.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-facebook::before {
  content: '';
  display: block;
  width: 1.2rem;
  height: 2.2rem;
  background-image: url(/static/img/icons/facebook.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-telegram::before {
  content: '';
  display: block;
  width: 2.4rem;
  height: 2.2rem;
  background-image: url(/static/img/icons/telegram.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-whatsapp::before {
  content: '';
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url(/static/img/icons/whatsapp.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social {
  display: flex;
  align-items: center;
  gap: 3.3rem;
}

.social .sns {
  display: flex;
  align-items: center;
  gap: 2.7rem;
}



#main-news .container {
  gap: 13.8rem;
}

#home #main-news .posts {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

#home #main-news hr {
  color: rgba(35,35,35, 0.15);
}

#home #main-news .posts .post__item {
  display: flex;
  gap: 8rem;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid rgba(35,35,35, 0.15);
}

#home #main-news .posts .btn{
  margin-top: auto;
  align-self: flex-start;
}

#home #main-news .main_post {
  max-width: 86rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.main_post .news_date {
  position: absolute;
  top: 5rem;
  left: 6rem;
  padding: 0.8rem 1.6rem;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 0.5rem;
  z-index: 2;
}

.news_image {
  position: relative;
}

.text_grid .grid_item {
  text-align: center;
}

.section+.text_image_grid {
  padding-top: 0;
}

.text_image_grid .flex {
  gap: 5.9rem;
}

.text_image_grid.margin_sm .title-md {
  line-height: 1;
  margin: 4rem 0 2rem;
}

.text_image_grid .title-md {
  margin: 2rem 0 1rem;
  line-height: 1.8
} 

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

.photos_grid .container {
  display: flex;
  flex-direction: column;
}

.photos_grid .grid {
  column-gap: 2rem;
  row-gap: 7.5rem;
}

.photos_grid .grid_item {
  width: 100%;
}

.photos_grid .grid_item img {
  width: 100%;
  max-height: 56rem;
  object-fit: cover;
  object-position: center -8rem;
}

.photos_grid .btn {
  margin: 0 auto;
  margin-top: 6rem;
}

.photos_grid .grid_item .title-sm {
  margin: 2.4rem 0 1.4rem;
}

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

.with_square::before {
  content: '';
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--color-red);
  border-radius: 0.2rem;
  margin-right: 2rem;
  transform: translateY(0.6rem);
}

#news .posts {
  row-gap: 7rem;
  column-gap: 5rem;
}

#post .page__title {
  text-align: left;
}

#post .post__date {
  display: flex;
  align-items: center;
}

#post .post__date p {
  margin-bottom: 0;
}

@media (max-width: 1600px) and (min-width: 1000px) {
  .nav {
    gap: 2rem;
  }
}

.contacts-map-section {
  position: relative;
  width: 100%;
  height: 60rem;
}

#contacts-map {
  width: 100%;
  height: 100%;
}

.contacts-panel {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 52rem;
  height: 100%;
  background: var(--color-white);
  padding: 8.8rem 9.6rem 4rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.contacts-panel.active {
  transform: translateX(0);
}

.contacts-panel__close {
  position: absolute;
  top: 2.8rem;
  right: 2.9rem;
  width: 3.5rem;
  height: 3.5rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.contacts-panel__title {
  font-weight: 600;
  margin-bottom: 3rem;
  padding-right: 2rem;
  line-height: 1;
}

.contacts-panel__divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin-bottom: 2.2rem;
}

.contacts-panel__row {
  margin-bottom: 3rem;
}

.contacts-panel__row a {
  color: var(--color-black);
  text-decoration: none;
}

.contacts-panel__row a:hover {
  text-decoration: underline;
}

.contacts-panel__socials {
  display: flex;
  gap: 1.2rem;
}

.contacts-panel__social {
  color: var(--color-black);
  transition: color 0.2s;
}

.contacts-panel__social:hover {
  color: var(--color-red);
}

.form-left,
.form-right {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.form-right {
  justify-content: space-between;
}

.form-right .text-area {
  flex: 1 0 auto;
}

.text-area .form-field {
  background-image: repeating-linear-gradient(to bottom, transparent, transparent 5.5rem, rgba(35,35,35, 0.15) calc(5.6rem + 1px));
  background-size: 100% calc(5.6rem + 1px);
  line-height: calc(5.6rem + 1px);
  padding-bottom: 0;
  height: 100%;
  min-height: 22.4rem;
  resize: none;
  border-bottom: 0;
}

.form-left .checkbox {
  margin-top: 2.2rem;
  justify-self: center;
}

.page__form .text {
  display: flex;
  flex-direction: column;
}

.page__form .text .btn-group {
  align-self: flex-start;
  text-wrap: nowrap;
}

.big_num {
  font-size: 20.4rem;
  font-weight: 600;
  font-family: var(--font-main);
  line-height: 1;
  text-transform: uppercase;
}

#subdivisions .banner .container{
  padding-top: 0;
  justify-content: center;
}

#subdivisions .banner {
  background: rgba(0, 0, 0, 0.65);
}

.other_subdivisions .grid_item {
  display: flex;
  flex-direction: column;
}

.other_subdivisions .grid_item .text-group {
  background: #fff;
  padding: 5.4rem 6rem;
  flex: 1 0 auto;
}

.other_subdivisions .grid {
  align-items: stretch;
}

.hero-tiles+.pt-7 {
  padding-top: 0;
  margin-top: -3rem;
}

.hero-tiles .flex:nth-child(even){flex-direction: row-reverse;}

.hero-tiles .flex-1[bg="dark"]{display: flex; flex-direction: column; align-items: center; justify-content: center;}

.hero-tiles .flex-1 img{width: 100%; height: 100%; object-fit: cover;}

.hero-tiles .text-group {max-width: 36.5rem; text-align: center;}

.hero-tiles .big-num {
  font-size: 20.4rem;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--fontMain);
}

.hero-tiles .flex-1 .text-md span {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  padding: 1.8rem 0 1.3rem;
  font-size: var(--font-size-h4);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.pt-7+.hero-tiles {
  padding-top: 0;
}

@media (max-width: 768px) {
  .contacts-map-section {
    height: 50rem;
    overflow: hidden;
  }

  .contacts-panel {
    width: 100%;
    height: auto;
    max-height: 70%;
    bottom: 0;
    top: auto;
    padding: 4rem 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
  }
  .contacts-panel.active {
    transform: translateY(0);
  }

  .form-left,
  .form-right {
  }

  .text-area .form-field {
    min-height: 20rem;
  }
}

.vacancies-tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.vacancies-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem 2.4rem;
  border: 1px solid #C2C2C2;
  cursor: pointer;
  font-size: var(--font-size-md);
  font-family: var(--fontDefault);
  font-weight: 500;
  color: var(--color-black);
  transition: all 0.3s;
  border-radius: 0.5rem;
}

.vacancies-tab.active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

.vacancies-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.6rem;
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--color-red);
}

.vacancies-tab.active .vacancies-tab__count {
  color: var(--color-white);
}

.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vacancy-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3.9rem 5rem 3rem;
  background: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s, border-color 0.3s;
  min-height: 14rem;
  position: relative;
}

.vacancy-card:hover {
  border-color: #ccc;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.06);
}

.vacancy-card__info {
  flex: 1;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vacancy-card__title {
  font-size: var(--font-size-h4);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2rem;
  font-family: var(--fontDefault);
}

.vacancy-card__salary {
  font-size: var(--font-size-sm);
  color: var(--color-grey);
  line-height: 1.4;
  margin-top: auto;
}

.vacancy-card__action {
  flex-shrink: 0;
  align-self: flex-end;
  position: absolute;
  bottom: 3.1rem;
  right: 3.1rem;
}

.vacancy-card__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}



.vacancy-card.hidden {
  display: none;
}

@media (max-width: 1024px) {
  .vacancies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vacancies-grid {
    grid-template-columns: 1fr;
  }

  .vacancies-tabs {
    gap: 0.8rem;
  }
}

.vacancy-banner {
  height: 37vh;
  max-height: 40.8rem;
}

.vacancy-banner .container {
  align-items: flex-start;
}

.vacancy-banner .container-sm {
  width: 100%;
}

.vacancy-banner .page_title {
  text-align: left;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.vacancy-banner__salary {
  font-size: var(--font-size-xl);
  font-family: var(--fontMain);
  opacity: 0.85;
  margin-bottom: 3rem;
}

.vacancy-banner__actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.vacancy-banner__btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.vacancy-banner__btn-outline:hover {
  border-color: #fff;
}

.vacancy-body {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.vacancy-description {
  font-size: var(--font-size-md);
  line-height: 1.7;
}

.vacancy-description p {
  margin-bottom: 1.6rem;
  font-weight: 600;
}

.vacancy-description li p {
  margin-bottom: 0;
  font-weight: 400;
}

.vacancy-description ul,
.vacancy-description ol {
  padding-left: 0;
  list-style: none;
}

.vacancy-description li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.vacancy-description li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 600;
}

.vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #e5e5e5;
}

.vacancy-meta__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vacancy-meta__label {
  font-size: var(--font-size-xs);
  color: var(--color-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vacancy-meta__value {
  font-size: var(--font-size-md);
  font-weight: 500;
}

.vacancy-bottom-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #e5e5e5;
  flex-wrap: wrap;
}

.vacancy-bottom-actions .social {
  margin-left: auto;
}

.vacancy-bottom__btn-outline {
  border-color: #232323;
  color: #232323;
  background: transparent;
}

.vacancy-bottom__btn-outline:hover {
  background: #232323;
  color: #fff;
}

.vacancy-others {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.vacancy-description h4 {
  font-weight: 500;
}

.vacancy-description h4:first-child{
  border: none;
  padding-bottom: 0;
  margin-bottom: var(--margin-bottom-text);
}

.page .section_intro+.photos_grid {
  padding-top: 0;
}


.absolute_center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.banner-template .slider .swiper-pagination {
  display: none;
}

@media (max-width: 768px) {

  :root {
    --font-size-h1: 2.8rem;
    --font-size-h2: 2rem;
    --title-size: 2.4rem;
    --font-size-h3: 2.4rem;
    --font-size-h4: 2rem;
    --font-size-h5: 1.6rem;
    --font-size-md: 1.4rem;
    --font-size-lg: 1.4rem;
    --font-size-xl: 1.8rem;
    --font-size-sm: 1.1rem;
    --font-size-xs: 1rem;
    --font-base-vw: calc(10/480*100vw);
    --headerPadding: 1rem 2rem;
  }

  .header {
    position: fixed;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.6rem;
  }

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

  main {
    padding-top: 6rem;
  }

  .header__menu::before {
    content: '';
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    background: url("/static/img/icons/menu.svg?v=23445") no-repeat center/contain;
    cursor: pointer;
  }

  .header__menu.active::before {
    background: url(/static/img/icons/close.svg) no-repeat center/contain;
  }

  .header__menu:after {
    content: '';
    width: 100vw;
    height: 120vh;
    position: fixed;
    opacity: 0;
    top: 6rem;
    left: 0;
    z-index: -1;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
  }

  .header__menu.active:after {
    opacity: 1;
    pointer-events: auto;
  }



  .section, .section-md, .section-sm {
    width: 100%;
    padding: 5rem 0;
  }

  .square_block.small {
    padding: 3.6rem 14rem;
  }


  .container, .container-sm, .container-xs, .container-md {
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
  }

  .header__menu .container {
    position: fixed;
    top: 6rem;
    left: 0;
    width: 100vw;
    max-width: 100%;
    padding: 3.1rem 2rem 1rem;
    background: #F2F2F2;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    align-items: flex-start;
  }

  .header__menu.active .container {
    max-height: 100vh;
    opacity: 1;
    pointer-events: auto;
  }

  .header-logo {
    height: 100%;
    max-width: 12rem;
    order: 4;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2rem;
    img {
      height: 100%;
    }
  }

  .header__menu {
    order: 1;
  }

  html {
    overflow-x: revert;
  }

  body {
    font-size: 1.4rem;
    overflow-x: revert;
  }

  .dropdown {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .dropdown__content {
    position: static;
    font-size: var(--font-size-md);
    transform: none;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  .dropdown__content a {
    margin: 0;
    padding: 1.5rem 0;
    color: #666666;
    font-weight: 400;
  }

  .dropdown__content a:first-child {
    padding-top: 3rem;
  }

  .dropdown__content a:last-child {
    padding-bottom: 3rem;
  }

  .dropdown.active .dropdown__content {
    max-height: 100vh;
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown .nav-link::after {
    margin-left: auto;
  }

  .banner {
    height: 62rem;
    max-height: 100vh;
    overflow: hidden;
    min-height: revert;
  }

  .banner-template {
    height: 62rem;
    overflow: revert;
    margin-bottom: 4rem;

  }

  .banner-template .slider .swiper-pagination {
    padding-bottom: 0;
    bottom: 6rem;
    display: block;
    mix-blend-mode: exclusion;
  }

  .banner-template .slider {
    overflow: revert; 
    overflow-x: hidden;
  }

  .banner-template .slider .swiper-pagination .swiper-pagination-bullet {
    background: #232323;
  }

  .banner .swiper-slide {
    /* height: 62rem;
    max-height: 100vh;
    overflow: hidden;
    padding: 0; */
  }

  .banner-lg {
    height: 38.5rem;
    min-height: 300px;
    max-height: 60vh;
  }




  .banner-lg .container {
    padding-top: 8.5rem;
  }

  .swiper-button-next, .swiper-button-prev {
    display: none;
  }

  .banner_content .btn-group {
    margin-top: 4.6rem;
  }

  .banner_content {
    padding: 0 2rem;
  }

  .banner .swiper-slide .bg-wrapper {
    
  }

  #home .banner .banner_content {
    position: absolute;
    bottom: 13.5rem;
    left: 0;
    right: 0;
  }

  .banner-lg .bg-wrapper {
    position: absolute;
    max-height: 100%;
  }

  .banner-sm {
    height: 20rem;
    max-height: 50vh;
  }

  .banner-sm .page_title {
    font-size: 3.2rem;
  }

  .banner .swiper-slide {
    flex-direction: column;
  }

  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {padding-bottom: 5rem;}

  .banner_content .title-svg {padding: 0 8rem;}

  .banner .swiper-slide {
    align-items: flex-start;
    padding-top: 0;
  }

  .section-next {
    padding: 0;
    position: static;
  }

  #subdivisions .section-next {
    padding: 0 2rem 5rem;
    background: #fff;
    margin-top: -1px;
  }

  #subdivisions .pin_section_next {
    padding: 5rem 2rem 0;
    position: static;
  }

  .section-next+.hero-tiles {
    padding-top: 0;
  }

  .pin_section_next img {
    height: auto;
  }


  .nav {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
    margin-right: 0;
    gap: 0;
  }

  .nav-link {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
  }

  .nav-link:first-child {
    padding-top: 0;
  }

  .nav-link.active::before {
    bottom: 0;
  }

  .dropdown .nav-link:first-child {
    padding-top: 3rem;
  }

  .dropdown:last-child .nav-link:first-child {
    border-bottom: none;
  }

  .header .showPopupForm {
    display: none;
    padding: 1rem 2.6rem;
    order: 2;
    margin-left: auto;
  }
  .header .langs {
    display: none;
    order: 3;
    margin: 0;
    margin-left: 3.5rem;
  }

  .btn {
    padding: 1.2rem 2rem;
  }

  .section_intro .text-container .text-md {
    gap: 2rem;
  }

  .section_intro .text-container {
    gap: 2rem;
  }

  .section_intro.fullscreen .text-md {
    font-size: var(--font-size-md);
  }

  .multibrand, .grid5.fullscreen {height: revert; max-height: revert;}


  .grid5.fullscreen .text_image_grid {
    padding-bottom: 0;
  }

  .section_intro.simple .grid.grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .multibrand_container .container {
    flex-direction: column;
    gap: 4rem;
  }

  .multibrand_container .container>img, .multibrand_container .images_col {width: 100%; flex: revert;}

  .dotsquare {flex-shrink: 0; width: 0.7rem; height: 0.7rem; margin-top: 0.6rem;}

  .section_intro .title-xxl {
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .vacancy-banner {
    min-height: 30rem;
  }

  .vacancy-banner .container-sm {
    padding: 0;
  }

  .vacancy-meta {
    gap: 1.6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
  }

  .vacancy-bottom-actions .social {margin-left: 0;}

  .image_array {
    flex-direction: column;
  }

  .image_array .bg_dark {
    padding: 8rem 2rem;
  }

  .image_grid_section .image_grid {
    display: grid;
  }

  .image_grid .separator {
    width: 100%;
    height: 1px;
    margin: 3rem 0;
  }

  .image_item .title-xl {
    margin: 0;
  }

  .photos_grid .grid_item img {
    max-height: 28rem;
    object-position: center -4rem;
  }

  .grid_image {
    height: auto;
    width: 4.5rem;
    margin-right: 2rem;
    height: 4.5rem;
  }

  .image-item.bg_dark img {
    max-width: 100%;
  }

  .image_array .image-item {
    width: 100%;
  }

  .square_block, .square_block.medium, .square_block.small {
    width: 100%;
    max-width: 100%;
  }

  .indexed_grid .grid_content {
    position: static;
    transform: none;
    padding: 4rem 4rem 4rem;
    flex-flow: wrap;
    align-items: center;
    gap: 2rem;
    background: #fff;
    color: #000;
    /* border: 1px solid #e5e5e5; */

  }

  .grid_content .title-md {
    margin-bottom: 0;
    color: var(--color-black);
  }

  .grid_content .text-md {
    width: 100%;
  }

  .indexed_grid .grid {
    row-gap: 3rem;
  }

  .photo_column_1 {
    row-gap: 2rem;
    flex-flow: wrap;
    gap: 1rem;
  }

  .photo_column_1 img {
    width: calc(50% - 0.5rem);
  }

  .photo_grid .container {
    row-gap: 1rem;
  }

  .photo_column_2 {
    max-width: 100%;
    gap: 1rem;
    flex-flow: wrap;
  }

  .photo_column_2 img,.photo_grid .container .photo_column_2 img:last-child {
    width: calc(50% - 0.5rem);
  }

  .grid_content .grid_index {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--color-red);
  }

  .grid_item .grid_content .grid_index, .grid_item .grid_content .grid_index+.title-md {
    margin-top: 0;
  }

  .photo_grid {
    padding-bottom: 4rem;
  }

  .section_intro .btn-group {
    margin-top: 3rem;
    width: calc(100% + 4.8rem);
    margin-left: -2.8rem;
    padding-right: 2rem;
  }

  .section_intro .btn-group .btn {
    flex: 1;
    max-width: calc(50% - 0.5rem);
  }

  .btn-group {
    row-gap: 2rem;
  }

  .form .dotsquare {
    display: none;
  }

  .form .text-md.font-default {
    display: flex;
    justify-content: flex-start;
  }

  .form .form-right .text-md.font-default {
    display: none;
  }

  .form .text-md.font-default:before {
    content: '';
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    background: var(--color-red);
    border-radius: 0.2rem;
    margin-right: 2rem;
    margin-top: 0.7rem;
    flex-shrink: 0;
  }

  .empty-square {
    display: none;
  }

  .square_block .title-md {
    padding: 0;
    font-family: var(--fontMain);
  }

  .form, .popup .form {
    padding-left: 0;
    grid-template-columns: 1fr;
    row-gap: 5rem;
  }
 
  #formSection.section_intro .title-xxl {
    margin-bottom: 2rem;
  }

  .popup__header {
    margin-bottom: 3.2rem;
  }

  .form .vertical-text {
    display: none;
  }

  .file-row {
    /* flex-direction: column; */
    align-items: stretch;
    gap: 2rem;
  }

  .checkbox {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
  
  .form-btn.btn {
    height: 6rem;
    background-color: var(--color-red);
    border-color: var(--color-red);
  }

  #home #main-news .main_post {
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(35,35,35, 0.15);
  }

  #home #main-news .posts .post__item {
    gap: 1rem;
    flex-direction: column;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  #home #main-news .posts .post__item:nth-last-child(2) {
    border-bottom: none;
    padding-bottom: 0;
  }

  #main-news .title-xxl {
    margin-bottom: 4.5rem;
  }

  .post__title {
    font-size: 1.6rem;
  }

  #home #main-news .posts .btn {margin-top: 5rem; width: 100%; height: 6rem;}

  #home #main-news .posts {
    gap: 0;
  }
  .mobile_slider {
    overflow-x: hidden;
    width: 100%;
  }

  .mobile_slider .grid {
    overflow-x: auto;
    width: calc(100% + 4rem);
    margin-left: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .mobile_slider .col {
    width: 70vw;
  }

  .main_post .news_date {
    top: 2rem;
    left: 2rem;
  }

  .main_post .post__title {
    font-size: 1.6rem;
    line-height: 1;
  }
  
  #home #main-news .post__date{
    width: 7rem;
  }

  .footer_top {
    display: none;
  }

  .footer hr {
    display: none;
  }

  .footer {
    font-size: 1.2rem;
  }

  

  .footer_bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .footer_bottom .item:first-child {
    margin-bottom: 1.5rem;
  }

  .footer_bottom .item:last-child {
    margin-bottom: 0;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-tiles+.pt-7 {
    margin-top: -1rem;
  }

  /* .sticky {
    top: 6rem;
  } */

  #to-top {
    width: 4rem;
    height: 4rem;
    bottom: 2rem;
    right: 2rem;
  }

  .banner .crumbs {
    left: 2rem;
  }

  .text_image_grid .flex {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .text_image_grid .text-group .title-md {
    font-size: 2rem;
    margin-top: 0;
    line-height: 1.2;
  }

  .text_image_grid .grid_image {
  }

  .text_image_grid .separator {
    display: none;
  }

  .text_grid .flex{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: #d1d1d1;
  }


  .text_grid .separator{
    display: none;
  }

  .pin_section_next {
    position: static;
    top: 6rem;
    padding: 0;
    z-index: -1;
  }

  .indexed_grid .grid_item {
    /* box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); */
  }

  .text_image_grid.margin_sm .title-md {
    margin: 0;
    max-width: calc(100% - 5.2rem);
    vertical-align: middle;
    hyphens: auto;
  }

  .pin_section_next .container {
    padding: 0;
  }

  /* .square_block.medium {
    height: 28.4rem;
  } */

  .text_grid .grid_item {
    background-color: var(--color-light-grey);
    padding: 1.7rem 4.4rem ;
  }

  .text_image_grid .flex-1 {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(35,35,35, 0.15);
    margin-bottom: 3rem;
  }

  .text_image_grid .flex-1:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }

  .text_image_grid {
    padding-bottom: 6rem;
  }

  .text_image_grid .title-md {
    margin: 0;
  }

  .grid_item .title-md {
    hyphens: manual;
    font-size: 1.8rem;
    margin-top: 2rem;
  }

  .other_subdivisions .grid_item .title-md {
    margin-top: 0;
  }

  .section.text_grid {
    padding-bottom: 6.8rem;
    padding-top: 5.5rem;
  }

  .text_image_grid .text-md {
    width: 100%;
    margin-top: 1.5rem;
  }

  .photos_grid .grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 4rem;
  }

  .photos_grid .btn {
    width: 100%;
    margin-top: 6.4rem;
    padding: 1.8rem 0;
  }

  .with_square::before {
    margin-right: 1.5rem;
    width: 0.7rem;
    flex-shrink: 0;
    height: 0.7rem;
  }

  .with_square {
    font-size: 1.2rem;
  }


  .photos_grid .grid_item .title-sm {
    line-height: 100%;
    margin: 2.4rem 0 1rem;
    font-size: 2rem;
  }

 
  .section_intro.fullscreen {height: revert; max-height: revert;}

  .section_intro .grid {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .section_intro .grid_item {
    min-height: revert;
    height: 17.2rem;

    img {
      max-height: 3.5rem;
    }
  }

  .section_intro .grid_item.link::after {
    height: 1.8rem;
    width: 2.1rem;
    right: 2.3rem;
    bottom: 2.3rem;
  }

  .section_intro.images_small .grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    img {
      max-height: 6rem;
    }
  }

  .simple .grid_item {
    height: 12rem;
  }

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

  .support .mb-7 {margin-bottom: 4rem;}

  .section_intro+.indexed_grid {
    padding-top: 5rem;
  }

  .square_block {
    padding: 5rem 2rem 6rem;
  }

  .square_block.medium .text-md h2 {
    font-size: 3rem;
  }

  .square_block.medium .text-md p {
    font-size: 1.8rem;
  }

  .square_block.medium .text-md {
    margin-top: 1rem;
  }

  .square_block.medium .text-md p {
    line-height: 1;
  }
  .square_block.medium .text-md {
    align-items: baseline;
  }

  .hero-tiles .flex, .hero-tiles .flex:nth-child(even) {
    flex-direction: column-reverse;
  }

  .hero-tiles .text-group {
    max-width: 100%;
    padding: 4rem;
  }

  .hero-tiles .big-num {
    font-size: 10rem;
  }

  .other_subdivisions .grid_item .text-group {
    padding: 4rem 4rem 5rem;
  }

  hr {
    margin: 2rem 0;
  }

  .social {
    gap: 1rem;
  }

  .pb-10 {
    padding-bottom: 4rem;
  }

  .icon-vk::before {
    width: 1.4rem;
    height: 8px;
  }

  .icon-facebook::before {
    width: 6px;
    height: 1.1rem;
  }

  .icon-telegram::before {
    width: 1.4rem;
    height: 1.2rem;
  }

  .icon-whatsapp::before {
    width: 1.4rem;
    height: 1.2rem;
  }

  .social .sns {
    gap: 1.5rem;
  }

  .text h4:first-child {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  
  .text h6:not(:last-child), .text h5:not(:last-child), .text h4:not(:last-child), .text h3:not(:last-child), .text h2:not(:last-child), .text h1:not(:last-child), .text p:not(:last-child), .text ul:not(:last-child), .text ol:not(:last-child), .text address:not(:last-child) {
    margin-bottom: 3rem;
  }

  .text p + ul, .text p + ol, .text h3 + ul, .text h3 + ol, .text h4 + ul, .text h4 + ol, .text h5 + ul, .text h5 + ol, .text h6 + ul, .text h6 + ol {margin-top: -1rem;}

  .text blockquote {
    width: calc(100% + 4rem);
    margin-left: calc(-50vw + 50%);
    padding: 2rem 2rem;
    background: #f2f2f2;
    margin-bottom: var(--margin-bottom-text);
  }

  .text blockquote p:first-child {
    margin-bottom: 2rem;
  }

  .section_intro .text-container table td {
    padding-right: 0;
    display: block;
  }

  .section_intro .text-container .text-md:has(table) {
    margin-left: 0;
  }

  .form-right .text-md {
    display: none;
  }

  .file-hint {
    line-height: 1.9rem;
  }

  .form-left .text-md {
    color: inherit !important;
  }

  .form .dotsquare {
    position: static;
  }

  .form-checkbox+label::before {
    width: 2rem;
    height: 2rem;
    margin-right: 2rem;
  }

  .vacancies-tab {
    padding: 1rem 1.5rem;
    text-wrap: nowrap;
  }

  .vacancies-tabs {flex-wrap: nowrap; overflow-x: auto; width: calc(100% + 4rem); margin-left: -2rem; padding-left: 2rem; padding-bottom: 2rem; margin-bottom: 2rem;}

  .vacancy-card {padding: 4rem 2rem;}

  .fancybox-slide:before {display: none;}

  .popup {padding: 4rem 2rem;}

  .popup .note {max-width: 100%;}

  .fancybox-slide--current {display: flex !important; align-items: center;}

  .image_item {flex-flow: nowrap; text-align: left; align-items: center;}

  .image_item .text-md {width: 100%; margin-top: -0.2rem;}

  .contacts-panel__close {
    width: 2rem;
    height: 2rem;
    top: 2rem;
    right: 2rem;
  }

  .about .banner .text-md {margin-left: 0; padding-left: 2rem; align-self: flex-start; margin-top: 2rem;}

  .contacts-panel__title {margin-bottom: 2rem;}
}