:root {
  --trn-speed: 0.3s;
  --trn-ease: ease;
  --font-family-default: 'Inter', sans-serif;
  --font-family-header: 'Involve', sans-serif;
  --gap: max(6.25%, 20px);
  --padding: calc(var(--gap) * 1);
  --header--font-size: 24px;
  --header--font-weight: 500;
  --header--line-height: 1.142857142857143;
  --min-header--font-size: 14px;
  --min-header--font-weight: 500;
  --min-header--line-height: 1.428571428571429;
  --color-font-def: #1a1200;
  --color-white: #fff;
  --color-light: #fdfcfb;
  --color-bg: #fff;
  --color-odd: #f7f1e4;
  --color-even: #d7b256;
  --color-main: #d7b256;
  --color-button: #d7b256;
  --color-button-hover: #fff;
  --color-button-border: #d7b256;
  --color-button-border-hover: #fff;
  --color-secondary: #038bd2;
  --color-dark: #efeee8;
  --color-placeholder: #1a1200;
  --color-link: #d7b256;
  --color-link-hover: #dfc178;
  --color-grey: #efeeec;
  --color-border: rgba(26,13,0,0.4);
  --tc-danger-dark: #dc3545;
}
@media only screen and (min-width: 480px) {
  :root {
    --header--font-size: 28px;
  }
}
@media only screen and (min-width: 768px) {
  :root {
    --header--font-size: 36px;
  }
}
@media only screen and (min-width: 1024px) {
  :root {
    --header--font-size: 38px;
  }
}
@media only screen and (min-width: 1280px) {
  :root {
    --header--font-size: 40px;
  }
}
@media only screen and (min-width: 1600px) {
  :root {
    --header--font-size: 41px;
  }
}
@media only screen and (min-width: 1840px) {
  :root {
    --header--font-size: 42px;
  }
}

@font-face {
  font-family: 'Involve';
  src: url("../fonts/Involve/Involve-VF.ttf") format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-stretch: 75% 125%;
  font-display: swap;
}


* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-focus-ring-color: rgba(255,255,255,0);
  cursor: default;
}
body {
  font-size: 100%;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
a {
  background: transparent;
}
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}
ol,
ul {
  list-style: none;
}
pre {
  white-space: pre-wrap;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}
q {
  quotes: '\201C' '\201D' '\2018' '\2019';
}
img {
  border: none;
}
svg:not(:root) {
  overflow: hidden;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button {
  overflow: visible;
}
button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type='checkbox'],
input[type='radio'] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}
input[type='search'] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: none;
}
textarea {
  vertical-align: top;
  overflow: auto;
}
button,
input,
select[multiple],
textarea {
  background-image: none;
}
input,
select,
textarea {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
input,
textarea {
  resize: none;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}
[placeholder]:focus::-moz-placeholder {
  color: transparent;
}
[placeholder]:focus:-ms-input-placeholder {
  color: transparent;
}
[placeholder]:focus::-ms-input-placeholder {
  color: transparent;
}
[placeholder]:focus::placeholder {
  color: transparent;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}

body {
  color: var(--color-font-def);
  font-family: var(--font-family-default);
  font-variant: no-common-ligatures;
  font-optical-sizing: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}
@media only screen and (min-width: 480px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  body {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1280px) {
  body {
    font-size: 18px;
  }
}
h1:not([class]),
h2:not([class]),
h3:not([class]),
h4:not([class]),
h5:not([class]),
h6:not([class]) {
  margin: 2em 0 1.25em 0;
  font-family: var(--font-family-header);
  font-weight: 700;
  line-height: 1.25;
}
h1:not([class]):first-child,
h2:not([class]):first-child,
h3:not([class]):first-child,
h4:not([class]):first-child,
h5:not([class]):first-child,
h6:not([class]):first-child {
  margin-top: 0;
}
h1:not([class]):last-child,
h2:not([class]):last-child,
h3:not([class]):last-child,
h4:not([class]):last-child,
h5:not([class]):last-child,
h6:not([class]):last-child {
  margin-bottom: 0;
}
h1:not([class]) {
  font-size: 32px;
}
@media only screen and (min-width: 480px) {
  h1:not([class]) {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) {
  h1:not([class]) {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  h1:not([class]) {
    font-size: 44px;
  }
}
@media only screen and (min-width: 1280px) {
  h1:not([class]) {
    font-size: 48px;
  }
}
h2:not([class]) {
  font-size: 26px;
}
@media only screen and (min-width: 480px) {
  h2:not([class]) {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) {
  h2:not([class]) {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  h2:not([class]) {
    font-size: 34px;
  }
}
@media only screen and (min-width: 1280px) {
  h2:not([class]) {
    font-size: 36px;
  }
}
h3:not([class]) {
  font-size: 22px;
}
@media only screen and (min-width: 480px) {
  h3:not([class]) {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) {
  h3:not([class]) {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1024px) {
  h3:not([class]) {
    font-size: 27px;
  }
}
@media only screen and (min-width: 1280px) {
  h3:not([class]) {
    font-size: 28px;
  }
}
h4:not([class]) {
  font-size: 18px;
}
@media only screen and (min-width: 480px) {
  h4:not([class]) {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  h4:not([class]) {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1024px) {
  h4:not([class]) {
    font-size: 23px;
  }
}
@media only screen and (min-width: 1280px) {
  h4:not([class]) {
    font-size: 24px;
  }
}
h5:not([class]) {
  font-size: 16px;
}
@media only screen and (min-width: 480px) {
  h5:not([class]) {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) {
  h5:not([class]) {
    font-size: 19px;
  }
}
@media only screen and (min-width: 1024px) {
  h5:not([class]) {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1280px) {
  h5:not([class]) {
    font-size: 21px;
  }
}
h6:not([class]) {
  font-size: 14px;
}
@media only screen and (min-width: 480px) {
  h6:not([class]) {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  h6:not([class]) {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  h6:not([class]) {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1280px) {
  h6:not([class]) {
    font-size: 18px;
  }
}
p:not([class]),
ul:not([class]),
ol:not([class]),
table:not([class]),
img:not([class]) {
  margin: 0 0 1em;
}
p:not([class]):last-child,
ul:not([class]):last-child,
ol:not([class]):last-child,
table:not([class]):last-child,
img:not([class]):last-child {
  margin-bottom: 0;
}
ul:not([class]) {
  padding: 0 0 0 0.5em;
  list-style: none;
}
ul:not([class]) ol:not([class]),
ul:not([class]) ul:not([class]) {
  margin-top: 0.5em;
}
ul:not([class]) > li:not([class]) {
  display: table;
  margin: 0 0 0.25em 0;
  padding: 0;
  list-style: none;
}
ul:not([class]) > li:not([class]):before {
  content: '•';
  display: table-cell;
  margin: 0;
  padding: 0 0.5em 0 0;
  color: inherit;
}
ul:not([class]) > li:not([class]):last-child {
  margin-bottom: 0;
}
ol:not([class]) {
  counter-reset: ol;
  padding: 0 0 0 0.5em;
  list-style: none;
}
ol:not([class]) ol:not([class]),
ol:not([class]) ul:not([class]) {
  margin-top: 0.5em;
}
ol:not([class]) > li:not([class]) {
  counter-increment: ol;
  display: table;
  margin: 0 0 0.25em 0;
  padding: 0;
  list-style: none;
}
ol:not([class]) > li:not([class]):before {
  content: counter(ol) '.';
  display: table-cell;
  margin: 0;
  padding: 0 0.5em 0 0;
  color: inherit;
}
ol:not([class]) > li:not([class]):last-child {
  margin-bottom: 0;
}
table:not([class]) {
  display: table;
  width: 100%;
  margin: 0 0 20px;
  border-spacing: 1px;
  border-collapse: collapse;
  border: 1px solid #dedede;
}
caption:not([class]) {
  display: table-caption;
  padding: 0 0 10px;
  font-size: 1.1em;
  text-align: center;
}
th:not([class]) {
  vertical-align: middle;
  padding: 10px;
  font-weight: 700;
  text-align: center;
  background: #f1f1f1;
  border: 1px solid #dedede;
}
tbody:not([class]) th:not([class]) {
  text-align: left;
}
td:not([class]) {
  padding: 10px;
  border: 1px solid #dedede;
}
tr:not([class]):nth-child(even) th:not([class]),
tr:not([class]):nth-child(even) td:not([class]) {
  background: #e6e6e6;
}
thead:not([class]) {
  color: #888;
}
tfoot:not([class]) {
  color: #888;
}
tfoot:not([class]) th:not([class]),
tfoot:not([class]) td:not([class]) {
  background: #e6e6e6;
}
a:not([class]),
a:is([class^='js-']) {
  text-decoration: underline;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
a:not([class]):link,
a:is([class^='js-']):link {
  color: var(--color-link);
}
a:not([class]):visited,
a:is([class^='js-']):visited {
  color: var(--color-link-visited, var(--color-link));
}
a:not([class]):hover,
a:is([class^='js-']):hover {
  color: var(--color-link-hover, var(--color-link));
}
a:not([class]):active,
a:is([class^='js-']):active {
  color: var(--color-link-hover, var(--color-link));
}
a:not([class]):hover,
a:is([class^='js-']):hover,
a:not([class]):focus,
a:is([class^='js-']):focus {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
sub:not([class]) {
  bottom: -0.25em;
  vertical-align: bottom;
  font-size: 0.75em;
}
sup:not([class]) {
  top: -0.5em;
  vertical-align: top;
  font-size: 0.75em;
}
i:not([class]),
em:not([class]),
dfn:not([class]) {
  font-style: italic;
}
b:not([class]),
strong:not([class]) {
  font-weight: 700;
}
s:not([class]),
strike:not([class]),
del:not([class]) {
  text-decoration: line-through;
}
ins:not([class]) {
  text-decoration: underline;
}
q:not([class]) {
  display: inline;
}
q:not([class]):before {
  content: open-quote;
}
q:not([class]):after {
  content: close-quote;
}
kbd:not([class]) {
  font-family: monospace, monospace;
}
mark:not([class]) {
  background: #f1f1f1;
}
abbr:not([class]) {
  position: relative;
  text-decoration: none;
}
abbr:not([class])[title]:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #000;
}
blockquote:not([class]) {
  margin: 0 0 20px;
  padding: 20px;
  background: #f1f1f1;
  border: 1px solid #b1b1b1;
}
dl:not([class]) {
  margin: 0 0 20px;
}
dd:not([class]) {
  padding: 0 0 0 50px;
}
hr:not([class]) {
  width: 100%;
  height: 0;
  margin: 0 0 25px;
  background: none;
  border: none;
  border-bottom: 2px groove #dedede;
}
fieldset:not([class]) {
  margin: 0 0 25px;
  padding: 20px;
  border: 1px solid #dedede;
}
legend:not([class]) {
  margin: 0 0 0 2em;
  padding: 0 0.5em;
}
select:not([class]) {
  width: 200px;
  padding: 10px;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #343434;
}
input[type='text']:not([class]),
input[type='password']:not([class]),
input[type='email']:not([class]),
input[type='url']:not([class]),
input[type='number']:not([class]),
input[type='datetime']:not([class]),
input[type='datetime-local']:not([class]),
input[type='search']:not([class]),
input[type='tel']:not([class]),
input[type='month']:not([class]),
input[type='week']:not([class]),
input[type='date']:not([class]),
input[type='time']:not([class]),
textarea:not([class]) {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 200px;
  margin: 0 0 5px;
  padding: 10px;
  color: #343434;
  font-size: 1em;
  line-height: 1.6;
  text-align: left;
  background: #fff;
  border: 1px solid #343434;
  outline: none;
}
input[type='text']:not([class])::-webkit-input-placeholder,
input[type='password']:not([class])::-webkit-input-placeholder,
input[type='email']:not([class])::-webkit-input-placeholder,
input[type='url']:not([class])::-webkit-input-placeholder,
input[type='number']:not([class])::-webkit-input-placeholder,
input[type='datetime']:not([class])::-webkit-input-placeholder,
input[type='datetime-local']:not([class])::-webkit-input-placeholder,
input[type='search']:not([class])::-webkit-input-placeholder,
input[type='tel']:not([class])::-webkit-input-placeholder,
input[type='month']:not([class])::-webkit-input-placeholder,
input[type='week']:not([class])::-webkit-input-placeholder,
input[type='date']:not([class])::-webkit-input-placeholder,
input[type='time']:not([class])::-webkit-input-placeholder,
textarea:not([class])::-webkit-input-placeholder {
  color: 16px;
  font-family: inherit;
  font-size: #ddd;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
input[type='text']:not([class])::-moz-placeholder,
input[type='password']:not([class])::-moz-placeholder,
input[type='email']:not([class])::-moz-placeholder,
input[type='url']:not([class])::-moz-placeholder,
input[type='number']:not([class])::-moz-placeholder,
input[type='datetime']:not([class])::-moz-placeholder,
input[type='datetime-local']:not([class])::-moz-placeholder,
input[type='search']:not([class])::-moz-placeholder,
input[type='tel']:not([class])::-moz-placeholder,
input[type='month']:not([class])::-moz-placeholder,
input[type='week']:not([class])::-moz-placeholder,
input[type='date']:not([class])::-moz-placeholder,
input[type='time']:not([class])::-moz-placeholder,
textarea:not([class])::-moz-placeholder {
  color: 16px;
  font-family: inherit;
  font-size: #ddd;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
input[type='text']:not([class]):-ms-input-placeholder,
input[type='password']:not([class]):-ms-input-placeholder,
input[type='email']:not([class]):-ms-input-placeholder,
input[type='url']:not([class]):-ms-input-placeholder,
input[type='number']:not([class]):-ms-input-placeholder,
input[type='datetime']:not([class]):-ms-input-placeholder,
input[type='datetime-local']:not([class]):-ms-input-placeholder,
input[type='search']:not([class]):-ms-input-placeholder,
input[type='tel']:not([class]):-ms-input-placeholder,
input[type='month']:not([class]):-ms-input-placeholder,
input[type='week']:not([class]):-ms-input-placeholder,
input[type='date']:not([class]):-ms-input-placeholder,
input[type='time']:not([class]):-ms-input-placeholder,
textarea:not([class]):-ms-input-placeholder {
  color: 16px;
  font-family: inherit;
  font-size: #ddd;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
input[type='text']:not([class])::-ms-input-placeholder,
input[type='password']:not([class])::-ms-input-placeholder,
input[type='email']:not([class])::-ms-input-placeholder,
input[type='url']:not([class])::-ms-input-placeholder,
input[type='number']:not([class])::-ms-input-placeholder,
input[type='datetime']:not([class])::-ms-input-placeholder,
input[type='datetime-local']:not([class])::-ms-input-placeholder,
input[type='search']:not([class])::-ms-input-placeholder,
input[type='tel']:not([class])::-ms-input-placeholder,
input[type='month']:not([class])::-ms-input-placeholder,
input[type='week']:not([class])::-ms-input-placeholder,
input[type='date']:not([class])::-ms-input-placeholder,
input[type='time']:not([class])::-ms-input-placeholder,
textarea:not([class])::-ms-input-placeholder {
  color: 16px;
  font-family: inherit;
  font-size: #ddd;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
input[type='text']:not([class])::placeholder,
input[type='password']:not([class])::placeholder,
input[type='email']:not([class])::placeholder,
input[type='url']:not([class])::placeholder,
input[type='number']:not([class])::placeholder,
input[type='datetime']:not([class])::placeholder,
input[type='datetime-local']:not([class])::placeholder,
input[type='search']:not([class])::placeholder,
input[type='tel']:not([class])::placeholder,
input[type='month']:not([class])::placeholder,
input[type='week']:not([class])::placeholder,
input[type='date']:not([class])::placeholder,
input[type='time']:not([class])::placeholder,
textarea:not([class])::placeholder {
  color: 16px;
  font-family: inherit;
  font-size: #ddd;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
textarea:not([class]) {
  resize: none;
}
input[type='radio']:not([class]),
input[type='checkbox']:not([class]) {
  margin: 0 2px;
}
button:not([class]),
input[type='button']:not([class]),
input[type='reset']:not([class]),
input[type='submit']:not([class]) {
  padding: 10px;
  font-size: 1em;
  line-height: 1.6;
  background: #f5f5f5;
  border: 1px solid #dedede;
  border-radius: 0;
  outline: none;
}
button:not([class]):hover,
input[type='button']:not([class]):hover,
input[type='reset']:not([class]):hover,
input[type='submit']:not([class]):hover {
  background: #bbb;
}
label:not([class]) {
  font-weight: 700;
}
.bs-group {
  margin: 0 0 40px;
  padding: 20px 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}
.bs-group__title {
  margin: 0 0 20px;
  color: #909090;
  text-transform: uppercase;
}
.bs-tags-style li {
  margin: 0 0 8px;
}
.bs-tags-style li:last-child {
  margin-bottom: 0;
}



.about-snippet {
  display: block;
}
.about-snippet__holder {
  display: block;
  padding: 0;
}
.about-snippet__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 clamp(30px, 2.222222222222222%, 40px);
}
.about-snippet__header:last-child {
  margin-bottom: 0;
}
.about-snippet__mini-title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 9px 38px;
  color: var(--color-main);
  font-family: var(--font-family-default);
  font-size: var(--min-header--font-size);
  font-weight: var(--min-header--font-weight);
  line-height: var(--min-header--line-height);
  border: 1px solid rgba(184,182,145,0.2);
}
.about-snippet__mini-title:before,
.about-snippet__mini-title:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1px solid var(--color-main);
}
.about-snippet__mini-title:before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.about-snippet__mini-title:after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}
.about-snippet__title {
  display: block;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: var(--header--font-size);
  font-weight: var(--header--font-weight);
  line-height: var(--header--line-height);
}
.about-snippet__title strong {
  color: var(--color-main);
  font-weight: var(--header--font-weight);
}
@media only screen and (min-width: 768px) {
  .about-snippet__title {
    max-width: 890px;
  }
}
.about-snippet__body {
  display: block;
  margin: 0 0 clamp(40px, 4.444444444444445%, 80px);
}
.about-snippet__body:last-child {
  margin-bottom: 0;
}
.about-snippet__article {
  --margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  max-width: 1345px;
  margin: 0;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.about-snippet__article p {
  margin: 0;
}

.advantage-snippet {
  display: block;
}
.advantage-snippet__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.advantage-snippet__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.advantage-snippet__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.advantage-snippet__icon {
  display: block;
  width: 50px;
  height: 50px;
}
.advantage-snippet__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  margin: 0 0 38px;
}
.advantage-snippet__dots:last-child {
  margin-bottom: 0;
}
.advantage-snippet__dot {
  display: block;
  width: 12px;
  height: 12px;
  background: #f9f9f8;
  border: 1px solid #f9f9f8;
  border-radius: 50%;
}
.advantage-snippet__dot_is_active {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.advantage-snippet__title {
  display: block;
  margin: 0;
  color: var(--color-font-def);
  font-family: var(--font-family-default);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.advantage-snippet__text {
  display: block;
  margin: 0;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.advantages {
  display: block;
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.advantages__list:last-child {
  --margin-bottom: 0;
}
.advantages__list-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.alert {
  display: block;
  margin: 0 0 15px;
  padding: 10px 15px;
  color: #004085;
  background: #cce5ff;
  border: 1px solid transparent;
  border-color: #b8daff;
  border-radius: 5px;
}
.alert:last-child {
  margin-bottom: 0;
}
.alert__title {
  margin: 0 0 25px;
  font-size: 1.5em;
  font-weight: 700;
}
.alert__title:last-child {
  margin-bottom: 0;
}
.alert__fields {
  margin: 0 0 25px;
}
.alert__fields:last-child {
  margin-bottom: 0;
}
.alert__field {
  margin: 0 0 15px;
}
.alert__field:last-child {
  margin-bottom: 0;
}
.alert__link {
  display: inline;
  vertical-align: baseline;
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}
.alert__link:hover,
.alert__link:active,
.alert__link:focus {
  color: inherit;
  text-decoration: none;
}
.alert_style_default {
  color: #004085;
  background: #cce5ff;
  border-color: #b8daff;
}
.alert_style_success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert_style_danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert_style_warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert_style_info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert_style_light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert_style_grayscale {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert_style_dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.amount-input {
  display: block;
}
.amount-input__holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: auto;
  max-width: 100%;
  height: 44px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
}
.amount-input__input {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
  min-width: 20px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.amount-input__unit {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.amount-input__controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  color: #c9c9c9;
  text-align: center;
  background: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.amount-input__controller_is_minus {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.amount-input__controller_is_plus {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.article-snippet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.article-snippet__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-width: 290px;
  max-width: 290px;
  height: 100%;
  margin: 0 auto;
  padding: 20px 20px 30px;
  background: #fff;
  border: 0 none transparent;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px 5px rgba(0,0,0,0.05);
          box-shadow: 0 5px 15px 5px rgba(0,0,0,0.05);
}
.article-snippet__holder[href] {
  color: inherit;
  text-decoration: none;
}
.article-snippet__holder[href]:hover .article-snippet__title,
.article-snippet__holder[href]:focus .article-snippet__title {
  color: var(--color-main);
}
@media only screen and (min-width: 480px) {
  .article-snippet__holder {
    max-width: 320px;
  }
}
@media only screen and (min-width: 768px) {
  .article-snippet__holder {
    max-width: 340px;
    padding: 25px 25px 45px;
  }
}
@media only screen and (min-width: 1024px) {
  .article-snippet__holder {
    max-width: 360px;
  }
}
@media only screen and (min-width: 1280px) {
  .article-snippet__holder {
    max-width: 370px;
  }
}
.article-snippet__head {
  display: block;
  margin: 0 0 25px;
}
.article-snippet__head:last-child {
  margin-bottom: 0;
}
.article-snippet__body {
  display: block;
  margin: 0 0 15px;
}
.article-snippet__body:last-child {
  margin-bottom: 0;
}
.article-snippet__footer {
  display: block;
  margin: 0 0 15px;
}
.article-snippet__footer:last-child {
  margin-bottom: 0;
}
.article-snippet__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 320/229;
  margin: 0 0 25px;
  padding: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.article-snippet__image:last-child {
  margin-bottom: 0;
}
.article-snippet__date {
  position: relative;
  display: block;
  margin: 0 0 20px;
  padding: 0 0 0 30px;
  color: #929292;
  font-size: 14px;
  font-weight: 300;
}
@media only screen and (min-width: 480px) {
  .article-snippet__date {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) {
  .article-snippet__date {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1024px) {
  .article-snippet__date {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1280px) {
  .article-snippet__date {
    font-size: 16px;
  }
}
.article-snippet__date:last-child {
  margin-bottom: 0;
}
.article-snippet__date-icon {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  fill: #929292;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.article-snippet__title {
  display: block;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.666666666666667;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
}
@media only screen and (min-width: 768px) {
  .article-snippet__title {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) {
  .article-snippet__title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1024px) {
  .article-snippet__title {
    font-size: 19px;
  }
}
@media only screen and (min-width: 1280px) {
  .article-snippet__title {
    font-size: 20px;
  }
}
.article-snippet__title:last-child {
  margin-bottom: 0;
}
.article-snippet__text {
  display: block;
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.666666666666667;
}
@media only screen and (min-width: 768px) {
  .article-snippet__text {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .article-snippet__text {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .article-snippet__text {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1280px) {
  .article-snippet__text {
    font-size: 18px;
  }
}
.article-snippet__text:last-child {
  margin-bottom: 0;
}
.article-snippet__link {
  display: block;
  color: var(--color-grey);
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.article-snippet__link:hover,
.article-snippet__link:focus {
  color: var(--color-main);
}
.article-snippet_size_big .article-snippet__image {
  aspect-ratio: 520/342;
}
.article-snippet_size_big .article-snippet__holder {
  max-width: 570px;
}

.badge {
  display: block;
}
.badge__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  background: var(--color-white);
}
.badge__holder_style_location {
  background: var(--color-white);
}
.badge__holder_style_location .badge__title {
  color: var(--color-font-def);
}
.badge__holder_style_category-0 {
  background: var(--color-main);
}
.badge__holder_style_category-0 .badge__title {
  color: var(--color-white);
}
.badge__holder_style_category-1 {
  background: var(--color-main);
}
.badge__holder_style_category-1 .badge__title {
  color: var(--color-white);
}
.badge__holder_style_category-2 {
  background: var(--color-dark);
}
.badge__holder_style_category-2 .badge__title {
  color: var(--color-white);
}
.badge__icon {
  display: block;
  width: 20px;
  height: 20px;
  fill: #1e1e1e;
  opacity: 0.3;
}
.badge__title {
  display: block;
  margin: 0;
  color: var(--color-font-def);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.333333333333333;
}

.breadcrumbs {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-font-def);
  font-family: var(--font-family-default);
  font-size: 0;
}
.breadcrumbs__list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__list-item {
  display: inline;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__list-item:not(:first-child):before {
  content: '|';
  display: inline;
  vertical-align: baseline;
  width: auto;
  height: auto;
  margin: 0 0.5em;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
.breadcrumbs__item {
  display: inline;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
.breadcrumbs__item[href] {
  -webkit-text-decoration: none transparent;
          text-decoration: none transparent;
  outline: none;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.breadcrumbs__item[href]:hover,
.breadcrumbs__item[href]:active,
.breadcrumbs__item[href]:focus {
  color: var(--color-link-hover);
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.burger {
  position: relative;
  z-index: 10;
  display: block;
  width: 26px;
  height: 20px;
  margin: 0;
  color: inherit;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--color-white);
  border-left: none;
  border-right: none;
  outline: none;
  -webkit-transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.burger:before,
.burger:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: background var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: background var(--trn-speed, .3s) var(--trn-ease, ease);
}
.burger:hover,
.burger:focus,
.burger:active {
  border-color: var(--color-main);
}
.burger:hover:before,
.burger:focus:before,
.burger:active:before,
.burger:hover:after,
.burger:focus:after,
.burger:active:after {
  background-color: var(--color-main);
}

.button {
  --font-size: 16px;
  --border-radius: 3px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 54px;
  margin: 0 auto;
  padding: 14px 25px;
  color: var(--color-white);
  font-size: var(--font-size);
  font-weight: 500;
  line-height: 1.444444444444444;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: var(--color-button);
  border: 1px solid var(--color-button-border);
  border-radius: var(--border-radius);
  outline: none;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-box-shadow var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-box-shadow var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), box-shadow var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), box-shadow var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-box-shadow var(--trn-speed, .3s) var(--trn-ease, ease);
}
.button[href] {
  text-decoration: none;
}
.button:hover,
.button:focus,
.button:active {
  color: var(--color-font-def);
  background-color: var(--color-button-hover);
  border-color: var(--color-button-border-hover);
}
.button:active {
  color: var(--color-button);
  border-color: var(--color-button-border);
}
.button[disabled] {
  pointer-events: none;
  opacity: 0.75;
}
@media only screen and (min-width: 480px) {
  .button {
    min-width: 220px;
  }
}
@media only screen and (min-width: 768px) {
  .button {
    --font-size: 18px;
    min-width: 320px;
    min-height: 56px;
  }
}
.button__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
.button__icon {
  display: block;
  fill: currentColor;
  aspect-ratio: 1/1;
  -webkit-transition: fill var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: fill var(--trn-speed, .3s) var(--trn-ease, ease);
}
.button_state_loading,
.button_state_disabled {
  pointer-events: none;
  opacity: 0.75;
}
.button_width_full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
}
.button_size_tiny {
  --font-size: 16px;
  --border-radius: 10px;
  min-width: 170px;
  max-width: 170px;
  min-height: 47px;
  padding: 5px 10px;
  font-weight: 400;
  border: 0 none transparent;
}
@media only screen and (min-width: 1px) {
  .button_size_xs-tiny {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 170px;
    min-height: 47px;
    padding: 5px 10px;
    font-weight: 400;
    border: 0 none transparent;
  }
}
@media only screen and (min-width: 480px) {
  .button_size_s-tiny {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 170px;
    min-height: 47px;
    padding: 5px 10px;
    font-weight: 400;
    border: 0 none transparent;
  }
}
@media only screen and (min-width: 768px) {
  .button_size_m-tiny {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 170px;
    min-height: 47px;
    padding: 5px 10px;
    font-weight: 400;
    border: 0 none transparent;
  }
}
@media only screen and (min-width: 1024px) {
  .button_size_l-tiny {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 170px;
    min-height: 47px;
    padding: 5px 10px;
    font-weight: 400;
    border: 0 none transparent;
  }
}
@media only screen and (min-width: 1280px) {
  .button_size_xl-tiny {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 170px;
    min-height: 47px;
    padding: 5px 10px;
    font-weight: 400;
    border: 0 none transparent;
  }
}
@media only screen and (min-width: 1600px) {
  .button_size_xxl-tiny {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 170px;
    min-height: 47px;
    padding: 5px 10px;
    font-weight: 400;
    border: 0 none transparent;
  }
}
@media only screen and (min-width: 1840px) {
  .button_size_xxxl-tiny {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 170px;
    min-height: 47px;
    padding: 5px 10px;
    font-weight: 400;
    border: 0 none transparent;
  }
}
.button_size_small {
  --font-size: 16px;
  --border-radius: 10px;
  min-width: 170px;
  max-width: 215px;
  min-height: 55px;
  padding: 6px 15px;
  font-weight: 500;
}
@media only screen and (min-width: 1px) {
  .button_size_xs-small {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 215px;
    min-height: 55px;
    padding: 6px 15px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 480px) {
  .button_size_s-small {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 215px;
    min-height: 55px;
    padding: 6px 15px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 768px) {
  .button_size_m-small {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 215px;
    min-height: 55px;
    padding: 6px 15px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 1024px) {
  .button_size_l-small {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 215px;
    min-height: 55px;
    padding: 6px 15px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 1280px) {
  .button_size_xl-small {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 215px;
    min-height: 55px;
    padding: 6px 15px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 1600px) {
  .button_size_xxl-small {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 215px;
    min-height: 55px;
    padding: 6px 15px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 1840px) {
  .button_size_xxxl-small {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 170px;
    max-width: 215px;
    min-height: 55px;
    padding: 6px 15px;
    font-weight: 500;
  }
}
.button_size_medium {
  --font-size: 16px;
  --border-radius: 10px;
  min-width: 290px;
  max-width: 290px;
  min-height: 50px;
  padding: 8px 15px;
  font-weight: 500;
  border: 0 none transparent;
  border-bottom: 2px solid var(--color-button-border);
}
@media only screen and (min-width: 1px) {
  .button_size_xs-medium {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 290px;
    max-width: 290px;
    min-height: 68px;
    padding: 8px 15px;
    font-weight: 500;
    border: 0 none transparent;
    border-bottom: 2px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 480px) {
  .button_size_s-medium {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 290px;
    max-width: 290px;
    min-height: 68px;
    padding: 8px 15px;
    font-weight: 500;
    border: 0 none transparent;
    border-bottom: 2px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 768px) {
  .button_size_m-medium {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 290px;
    max-width: 290px;
    min-height: 68px;
    padding: 8px 15px;
    font-weight: 500;
    border: 0 none transparent;
    border-bottom: 2px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 1024px) {
  .button_size_l-medium {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 290px;
    max-width: 290px;
    min-height: 68px;
    padding: 8px 15px;
    font-weight: 500;
    border: 0 none transparent;
    border-bottom: 2px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 1280px) {
  .button_size_xl-medium {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 290px;
    max-width: 290px;
    min-height: 68px;
    padding: 8px 15px;
    font-weight: 500;
    border: 0 none transparent;
    border-bottom: 2px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 1600px) {
  .button_size_xxl-medium {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 290px;
    max-width: 290px;
    min-height: 68px;
    padding: 8px 15px;
    font-weight: 500;
    border: 0 none transparent;
    border-bottom: 2px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 1840px) {
  .button_size_xxxl-medium {
    --font-size: 16px;
    --border-radius: 10px;
    min-width: 290px;
    max-width: 290px;
    min-height: 68px;
    padding: 8px 15px;
    font-weight: 500;
    border: 0 none transparent;
    border-bottom: 2px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 1px) {
  .button_size_xs-default,
  .button_size_xs-normal {
    --font-size: 18px;
    --border-radius: 10px;
    min-width: 370px;
    max-width: 370px;
    min-height: 78px;
    padding: 8px 15px;
    font-weight: 600;
    border: 0 none transparent;
    border-bottom: 3px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 480px) {
  .button_size_s-default,
  .button_size_s-normal {
    --font-size: 18px;
    --border-radius: 10px;
    min-width: 370px;
    max-width: 370px;
    min-height: 78px;
    padding: 8px 15px;
    font-weight: 600;
    border: 0 none transparent;
    border-bottom: 3px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 768px) {
  .button_size_m-default,
  .button_size_m-normal {
    --font-size: 18px;
    --border-radius: 10px;
    min-width: 370px;
    max-width: 370px;
    min-height: 78px;
    padding: 8px 15px;
    font-weight: 600;
    border: 0 none transparent;
    border-bottom: 3px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 1024px) {
  .button_size_l-default,
  .button_size_l-normal {
    --font-size: 18px;
    --border-radius: 10px;
    min-width: 370px;
    max-width: 370px;
    min-height: 78px;
    padding: 8px 15px;
    font-weight: 600;
    border: 0 none transparent;
    border-bottom: 3px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 1280px) {
  .button_size_xl-default,
  .button_size_xl-normal {
    --font-size: 18px;
    --border-radius: 10px;
    min-width: 370px;
    max-width: 370px;
    min-height: 78px;
    padding: 8px 15px;
    font-weight: 600;
    border: 0 none transparent;
    border-bottom: 3px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 1600px) {
  .button_size_xxl-default,
  .button_size_xxl-normal {
    --font-size: 18px;
    --border-radius: 10px;
    min-width: 370px;
    max-width: 370px;
    min-height: 78px;
    padding: 8px 15px;
    font-weight: 600;
    border: 0 none transparent;
    border-bottom: 3px solid var(--color-button-border);
  }
}
@media only screen and (min-width: 1840px) {
  .button_size_xxxl-default,
  .button_size_xxxl-normal {
    --font-size: 18px;
    --border-radius: 10px;
    min-width: 370px;
    max-width: 370px;
    min-height: 78px;
    padding: 8px 15px;
    font-weight: 600;
    border: 0 none transparent;
    border-bottom: 3px solid var(--color-button-border);
  }
}
.button_has_shadow:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  background: transparent;
  border-radius: var(--border-radius);
  opacity: 0;
  -webkit-box-shadow: 0 7px 23px 2px rgba(215,180,115,0.38);
          box-shadow: 0 7px 23px 2px rgba(215,180,115,0.38);
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.button_has_shadow:hover:after,
.button_has_shadow:focus:after {
  opacity: 1;
}
.button_has_icon .button__icon {
  width: calc(var(--font-size) * (25 / 18));
  aspect-ratio: 1/1;
}
.button_style_revers {
  color: var(--color-main);
  background-color: var(--color-button-hover);
}
.button_style_revers:hover,
.button_style_revers:focus {
  color: var(--color-white);
  background-color: var(--color-button);
}
.button_style_secondary {
  background-color: var(--color-secondary);
}
.button_style_secondary:hover,
.button_style_secondary:focus {
  background-color: var(--color-secondary-hover);
}
.button_style_light {
  background: transparent;
  border-color: #fff;
}
.button_style_dark {
  color: var(--color-white);
  background: var(--color-dark);
  border-color: var(--color-dark);
}
.button_style_only-arrow {
  min-width: 64px;
  font-size: 0;
}
.button_style_only-arrow .button__icon {
  top: 50%;
  right: 50%;
  width: var(--font-size);
  aspect-ratio: 1/1;
  translate: 50% -50%;
}
.button_style_only-arrow:hover .button__icon,
.button_style_only-arrow:focus .button__icon,
.button_style_only-arrow:active .button__icon {
  rotate: 45deg;
}
.button_style_link {
  display: inline-block;
  width: auto;
  min-width: 0;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-font-def);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.333333333333333;
  background: none;
  border: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}
.button_style_link[href]:hover,
.button_style_link[href]:focus,
.button_style_link[href]:active {
  background: none;
  border-color: transparent;
}
.button_style_cart {
  padding-right: calc(var(--border-radius) * 0.75 + var(--font-size) * 1.5);
  padding-left: calc(var(--border-radius) * 0.75 + var(--font-size) * 1.5);
}
.button_style_cart .button__icon {
  width: var(--font-size);
  aspect-ratio: 1/1;
}
.button_style_readmore {
  --font-size: 12px;
  display: block;
  width: 39px;
  min-width: 0;
  max-width: 39px;
  height: auto;
  min-height: 0;
  max-height: 39px;
  padding: 0;
  aspect-ratio: 1/1;
  border-radius: 7px;
}
.button_style_readmore .button__icon {
  top: 50%;
  right: 50%;
  width: var(--font-size);
  aspect-ratio: 1/1;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.button_style_insta-link {
  height: auto;
  padding: 0;
  padding-right: 46px;
  color: #f5585b;
  font-size: 18px;
  background: transparent;
  border: none;
  border-radius: 0;
}
@media only screen and (min-width: 480px) {
  .button_style_insta-link {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) {
  .button_style_insta-link {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .button_style_insta-link {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1280px) {
  .button_style_insta-link {
    font-size: 30px;
  }
}
.button_style_insta-link:hover,
.button_style_insta-link:focus {
  color: #f5585b;
  background: transparent;
  border-color: transparent;
}
.button_style_insta-link:hover .button__inner,
.button_style_insta-link:focus .button__inner {
  border-bottom-color: transparent;
}
.button_style_insta-link .button__inner {
  padding: 5px 0;
  border: none;
  border-bottom: 1px dashed #f5585b;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.button_style_insta-link .button__icon {
  right: 0;
  width: 34px;
  height: 34px;
}

.carousel {
  --color-nav-arrow: var(--color-white);
  --color-nav-arrow-hover: var(--color-def-font);
  --color-pagintation-bullet-background: transparent;
  --color-pagintation-bullet-border: var(--color-main);
  --color-pagintation-bullet-background-hover: var(--color-main);
  --color-pagintation-bullet-border-hover: var(--color-main);
  --color-pagintation-bullet-background-active: var(--color-main);
  --color-pagintation-bullet-border-active: var(--color-main);
  display: block;
}
.carousel__header {
  --margin-bottom: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 0 0 var(--margin-bottom);
}
.carousel__mini-title {
  display: block;
  min-width: 455px;
  color: var(--color-main);
  font-family: var(--font-family-default);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.714285714285714;
  text-transform: lowercase;
}
.carousel__title {
  display: block;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.263157894736842;
}
.carousel__body {
  display: block;
}
.carousel__pagination-holder {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.carousel__navigation-holder {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.carousel__container {
  display: block;
}
.carousel__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.carousel__slide {
  display: block;
  height: auto;
}
.carousel__navigation {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: auto;
  margin: 0;
  padding: 0;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 480px) {
  .carousel__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.carousel__navigation-button {
  --size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--size);
  aspect-ratio: 1/1;
  fill: var(--color-nav-arrow);
  font-size: 0;
  cursor: pointer;
  pointer-events: auto;
  background: var(--color-button);
  border: 1px solid var(--color-button);
  -webkit-transition: fill var(--trn-speed, .3s) var(--trn-ease, ease), opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: fill var(--trn-speed, .3s) var(--trn-ease, ease), opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.carousel__navigation-button:hover,
.carousel__navigation-button:focus {
  fill: var(--color-nav-arrow-hover);
  background-color: var(--color-white);
  border-color: var(--color-white);
}
.carousel__navigation-button_state_disabled {
  fill: var(--color-nav-arrow);
  pointer-events: none;
  opacity: 0.5;
}
.carousel__navigation-button_state_disabled:hover,
.carousel__navigation-button_state_disabled:focus {
  fill: var(--color-nav-arrow);
}
.carousel__navigation-button_rotate_180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.carousel__navigation-button-image {
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  fill: inherit;
}
.carousel__pagination {
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 100%;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.carousel__pagination-bullet {
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  margin: 0;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  pointer-events: auto;
  background: var(--color-white);
  border: 2px solid var(--color-main);
  outline: 2px solid transparent;
  opacity: 0.5;
  -webkit-transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), outline-color var(--trn-speed, .3s) var(--trn-ease, ease), opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), outline-color var(--trn-speed, .3s) var(--trn-ease, ease), opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.carousel__pagination-bullet:hover,
.carousel__pagination-bullet:focus {
  opacity: 1;
}
.carousel__pagination-bullet_state_active {
  background: var(--color-main);
  border-color: var(--color-main);
  outline-color: var(--color-main);
}
.carousel__pagination-bullet_type_round {
  border-radius: 50%;
}
.carousel_type_silhouettes .carousel__pagination-holder {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .carousel_type_silhouettes .carousel__pagination-holder {
    padding-bottom: 0;
  }
}
.carousel_type_silhouettes .carousel__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .carousel_type_silhouettes .carousel__pagination {
    display: none;
  }
}
.carousel_type_silhouettes .carousel__navigation-holder {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}
.carousel_type_silhouettes .carousel__navigation {
  display: none;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .carousel_type_silhouettes .carousel__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.carousel_type_silhouettes .carousel__navigation-button {
  --size: 56px;
}
@media only screen and (min-width: 480px) {
  .carousel_type_silhouettes .carousel__navigation-button {
    --size: 56px;
  }
}
@media only screen and (min-width: 768px) {
  .carousel_type_silhouettes .carousel__navigation-button {
    --size: 56px;
  }
}
@media only screen and (min-width: 1024px) {
  .carousel_type_silhouettes .carousel__navigation-button {
    --size: 56px;
  }
}
@media only screen and (min-width: 1280px) {
  .carousel_type_silhouettes .carousel__navigation-button {
    --size: 56px;
  }
}

.cart-mini {
  display: block;
}
.cart-mini__holder {
  display: block;
  max-width: 60px;
  margin: 0 auto;
  fill: var(--color-font-def);
  color: var(--color-font-def);
  text-decoration: none;
  -webkit-transition: fill var(--trn-speed, .3s) var(--trn-ease, ease), color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: fill var(--trn-speed, .3s) var(--trn-ease, ease), color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.cart-mini__holder:hover,
.cart-mini__holder:focus {
  fill: var(--color-link-hover);
  color: var(--color-link-hover);
}
.cart-mini__illustration {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 8px;
}
.cart-mini__icon {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart-mini__animated-icon {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  fill: #1d1d1b;
  opacity: 1;
}
.cart-mini__counter {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 14px;
  height: 14px;
  color: var(--color-white);
  font-size: 10px;
  font-weight: 600;
  background: #f5899b;
  border-radius: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.cart-mini__title {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.catalog-button {
  --font-size: 14px;
  --border-radius: 0;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-width: 170px;
  max-width: 350px;
  min-height: 57px;
  margin: 0 auto;
  padding: 8px 15px;
  color: #fff;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: #fc4949;
  border: none;
  border-radius: var(--border-radius);
  outline: none;
}
.catalog-button__holder {
  position: relative;
  display: block;
  padding: 0 15px 0 30px;
}
.catalog-button__decorator {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  aspect-ratio: 16/15;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.catalog-button__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 6px;
  aspect-ratio: 6/4;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.catalog-button__inner {
  display: inline-block;
}

.categories {
  display: block;
}
.categories__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .categories__holder {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .categories__holder {
    margin-bottom: 90px;
  }
}
.categories__holder:last-child {
  margin-bottom: 0;
}
.categories__item {
  display: block;
}
.categories__controls {
  display: block;
}

.category-snippet {
  --border-radius: 10px;
  --gap: 25px;
  display: block;
}
@media only screen and (min-width: 480px) {
  .category-snippet {
    --border-radius: 15px;
    --gap: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .category-snippet {
    --border-radius: 20px;
    --gap: 35px;
  }
}
@media only screen and (min-width: 1024px) {
  .category-snippet {
    --border-radius: 25px;
    --gap: 40px;
  }
}
@media only screen and (min-width: 1280px) {
  .category-snippet {
    --border-radius: 30px;
    --gap: 45px;
  }
}
.category-snippet__holder {
  display: block;
  min-width: 230px;
  max-width: 230px;
  margin: 0 auto;
}
@media only screen and (min-width: 480px) {
  .category-snippet__holder {
    min-width: 240px;
    max-width: 240px;
  }
}
@media only screen and (min-width: 768px) {
  .category-snippet__holder {
    min-width: 250px;
    max-width: 250px;
  }
}
@media only screen and (min-width: 1024px) {
  .category-snippet__holder {
    min-width: 260px;
    max-width: 260px;
  }
}
@media only screen and (min-width: 1280px) {
  .category-snippet__holder {
    min-width: 270px;
    max-width: 270px;
  }
}
.category-snippet__header {
  position: relative;
  display: block;
  aspect-ratio: 270/245;
  margin: 0 0 var(--gap) 0;
}
.category-snippet__header:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 270/197;
  border-radius: var(--border-radius);
  -webkit-box-shadow: 0 5px 45px 4px rgba(0,0,0,0.05);
          box-shadow: 0 5px 45px 4px rgba(0,0,0,0.05);
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.category-snippet__header:last-child {
  margin-bottom: 0;
}
.category-snippet__body {
  position: relative;
  display: block;
  margin: 0 0 var(--gap) 0;
}
.category-snippet__body:last-child {
  margin-bottom: 0;
}
.category-snippet__illustration {
  position: relative;
  z-index: 2;
  display: block;
  min-width: 100%;
  min-height: 100%;
  background-position: center center;
  background-size: cover;
  border-radius: var(--border-radius);
}
.category-snippet__title {
  min-width: 200px;
  padding: 0 25px;
  color: var(--color-font-def);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.certificate-snippet {
  display: block;
  padding: 0 15px 20px;
}
.certificate-snippet__shadow-holder {
  position: relative;
  display: block;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}
.certificate-snippet__shadow-holder:after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
  background: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0 5px 15px 5px rgba(0,0,0,0.05);
          box-shadow: 0 5px 15px 5px rgba(0,0,0,0.05);
}
.certificate-snippet__holder {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 25px;
}
.certificate-snippet__holder[href],
.certificate-snippet__holder[data-fancybox] {
  cursor: pointer;
}
.certificate-snippet__image {
  position: relative;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 320/469;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}

.collapsible-block {
  display: block;
}
.collapsible-block__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 68px;
  margin: 0;
  padding: 20px 60px 20px 30px;
  color: var(--color-font-def);
  background: #fff;
  border: var(--color-border) 1px solid;
  border-radius: 10px;
  -webkit-transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.collapsible-block__header[href] {
  text-decoration: none;
  cursor: pointer;
}
.collapsible-block__header:hover,
.collapsible-block__header:active {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.collapsible-block__header:hover .collapsible-block__close:before,
.collapsible-block__header:active .collapsible-block__close:before {
  border-color: #cecdd4;
}
.collapsible-block__title {
  display: block;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) {
  .collapsible-block__title {
    font-size: 18px;
  }
}
.collapsible-block__close {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 5;
  display: block;
  width: 30px;
  height: 30px;
  font-size: 0;
  background: transparent;
  border: none;
  outline: none;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.collapsible-block__close:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 9px;
  height: 9px;
  border-right: 3px solid #cecdd4;
  border-bottom: 3px solid #cecdd4;
  -webkit-transform: translate(-50%, -75%) rotate(45deg);
          transform: translate(-50%, -75%) rotate(45deg);
  -webkit-transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-transform var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-transform var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease), transform var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease), transform var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-transform var(--trn-speed, .3s) var(--trn-ease, ease);
}
.collapsible-block__main {
  display: none;
  padding: 25px 45px 20px 85px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.666666666666667;
}
@media only screen and (min-width: 768px) {
  .collapsible-block__main {
    padding: 25px 45px 20px 85px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .collapsible-block__main {
    padding: 25px 45px 20px 85px;
    font-size: 18px;
  }
}
.collapsible-block_state_open .collapsible-block__close {
  -webkit-transform: translate(0, -50%) scaleY(-1);
          transform: translate(0, -50%) scaleY(-1);
}
.collapsible-block_state_open .collapsible-block__close:before {
  border-color: #cecdd4;
}
.collapsible-block_state_open .collapsible-block__main {
  display: block;
}
.collapsible-block_state_open .collapsible-block__header {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.collapsible-block_state_open .collapsible-block__header:hover,
.collapsible-block_state_open .collapsible-block__header:focus {
  color: #fff;
  background-color: #333;
  border-color: #333;
}

.collapsible-group {
  counter-reset: collapsible-group;
  display: block;
}
.collapsible-group__item {
  margin: 0 0 20px;
}
.collapsible-group__item .collapsible-block__title:before {
  counter-increment: collapsible-group;
  display: inline;
  color: var(--color-main);
}
.collapsible-group__item:last-child {
  margin-bottom: 0;
}
.collapsible-group__item_state_hidden {
  display: none;
}

.collection-snippet {
  display: block;
}
.collection-snippet__holder {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  max-width: 1800px;
  margin-right: -20px;
  margin-left: -20px;
}
@media only screen and (min-width: 768px) {
  .collection-snippet__holder {
    grid-template-columns: repeat(2, 1fr);
  }
}
.collection-snippet__column {
  display: block;
}
.collection-snippet__illustration {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 960/1080;
  -o-object-fit: cover;
     object-fit: cover;
}
.collection-snippet__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  margin: 0 auto;
  padding: clamp(40px, var(--gap), 120px) clamp(40px, 22.916666666666668%, 220px);
}
@media only screen and (min-width: 768px) {
  .collection-snippet__container {
    padding-top: clamp(40px, calc(var(--gap) * 2), 120px);
    padding-bottom: clamp(40px, calc(var(--gap) * 2), 120px);
  }
}
.collection-snippet__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.collection-snippet__title {
  display: block;
  color: var(--colro-font-def);
  font-family: var(--font-family-header);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3125;
  text-align: center;
  text-transform: uppercase;
}
.collection-snippet__description {
  display: block;
  color: var(--colro-font-def);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}
.collection-snippet__carousel {
  display: block;
  max-width: 520px;
}

.com-content {
  display: block;
}
.com-content__head {
  display: block;
  min-height: 258px;
  padding: 100px 0 50px;
  color: #fff;
  background: #081740 none 50% 50%/cover;
}
.com-content__title {
  display: block;
  margin: 0 0 20px;
}
.com-content__title .title {
  margin-bottom: 0;
}
.com-content__title:last-child {
  margin-bottom: 0;
}
.com-content__breadcrumbs {
  display: block;
  margin: 0 0 20px;
  color: #fff;
  text-align: center;
}
.com-content__breadcrumbs:last-child {
  margin-bottom: 0;
}
.com-content__body {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.666666666666667;
}
@media only screen and (min-width: 480px) {
  .com-content__body {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .com-content__body {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .com-content__body {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1280px) {
  .com-content__body {
    font-size: 18px;
  }
}
.com-content__category-description {
  display: block;
  margin: 0 0 calc(var(--padding) * 0.5);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.666666666666667;
}
@media only screen and (min-width: 480px) {
  .com-content__category-description {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .com-content__category-description {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .com-content__category-description {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1280px) {
  .com-content__category-description {
    font-size: 18px;
  }
}
.com-content__category-description:last-child {
  margin-bottom: 0;
}
.com-content__exhibition-sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: center;
          flex-direction: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.com-content__exhibition-section {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 275px;
          flex: 1 0 275px;
}
.com-content__exhibition-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) {
  .com-content__exhibition-part {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.com-content__exhibition-part-illustration {
  display: block;
  width: 100%;
  max-width: 500px;
}
.com-content__exhibition-part-image {
  display: block;
  width: 100%;
  max-width: 500px;
  height: 100%;
  margin: 0 auto;
}
.com-content__exhibition-part-description {
  display: block;
}
.com-content__exhibition-part-description ul,
.com-content__exhibition-part-description ul:not([class]) {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}
.com-content__exhibition-part-description ul > li,
.com-content__exhibition-part-description ul:not([class]) > li {
  display: table;
  margin: 0 0 0.5em 0;
}
.com-content__exhibition-part-description ul > li:before,
.com-content__exhibition-part-description ul:not([class]) > li:before {
  content: '•';
  display: table-cell;
  margin: 0;
  padding: 0 0.5em 0 0;
}
.com-content__exhibition-part-description ul > li:last-child,
.com-content__exhibition-part-description ul:not([class]) > li:last-child {
  margin-bottom: 0;
}
.com-content__exhibition-part-description ul > li > ul,
.com-content__exhibition-part-description ul:not([class]) > li > ul,
.com-content__exhibition-part-description ul > li > ul:not([class]),
.com-content__exhibition-part-description ul:not([class]) > li > ul:not([class]) {
  display: block;
  margin: 0.25em 0 0 0;
  list-style: none;
  font-size: 18px;
  font-weight: 300;
}
.com-content__exhibition-part-description ul > li > ul > li,
.com-content__exhibition-part-description ul:not([class]) > li > ul > li,
.com-content__exhibition-part-description ul > li > ul:not([class]) > li,
.com-content__exhibition-part-description ul:not([class]) > li > ul:not([class]) > li,
.com-content__exhibition-part-description ul > li > ul > li:not([class]),
.com-content__exhibition-part-description ul:not([class]) > li > ul > li:not([class]),
.com-content__exhibition-part-description ul > li > ul:not([class]) > li:not([class]),
.com-content__exhibition-part-description ul:not([class]) > li > ul:not([class]) > li:not([class]) {
  display: block;
}
.com-content__exhibition-part-description ul > li > ul > li:before,
.com-content__exhibition-part-description ul:not([class]) > li > ul > li:before,
.com-content__exhibition-part-description ul > li > ul:not([class]) > li:before,
.com-content__exhibition-part-description ul:not([class]) > li > ul:not([class]) > li:before,
.com-content__exhibition-part-description ul > li > ul > li:not([class]):before,
.com-content__exhibition-part-description ul:not([class]) > li > ul > li:not([class]):before,
.com-content__exhibition-part-description ul > li > ul:not([class]) > li:not([class]):before,
.com-content__exhibition-part-description ul:not([class]) > li > ul:not([class]) > li:not([class]):before {
  content: none;
  display: none;
}
.com-content__participation-form {
  display: block;
  max-width: 770px;
}
.com-content__icon {
  display: inline-block;
  vertical-align: text-bottom;
  width: 1.111111111111111em;
  height: 1.222222222222222em;
  aspect-ratio: 20/22;
  margin: 0 0.75em 0 0;
  fill: var(--color-main);
}
.com-content__icon_fill_red {
  fill: rgba(237,69,67,0.9);
}
.com-content__icon_fill_blue {
  fill: rgba(23,123,201,0.9);
}
.com-content__twogis-link {
  display: inline-block;
  max-width: 7.555555555555555em;
}
.com-content__pavilion-image {
  display: block;
  max-width: 915px;
  margin: calc(var(--gap) * 0.5) 0;
}
.com-content__pavilion-image:first-child {
  margin-top: 0;
}
.com-content__pavilion-image:last-child {
  margin-bottom: 0;
}
.com-content__project-logo {
  display: block;
  max-width: 280px;
  margin: 1.5em 0;
}
.com-content__project-logo:first-child {
  margin-top: 0;
}
.com-content__project-logo:last-child {
  margin-bottom: 0;
}
.com-content__stand-advantages-list {
  display: block;
  margin: calc(var(--gap) * 0.5) 0;
  padding: 0;
  list-style: none;
}
.com-content__stand-advantages-list:first-child {
  margin-bottom: 0;
}
.com-content__stand-advantages-list:last-child {
  margin-bottom: 0;
}
.com-content__stand-advantages-list-item {
  display: block;
  margin: 0 0 2rem 0;
  padding: 0;
  list-style: none;
}
.com-content__stand-advantages-list-item:last-child {
  margin-bottom: 0;
}
.com-content__info-block {
  display: block;
  margin: calc(var(--gap) * 0.5) 0;
  padding: 40px 35px;
  background: #fff;
}
.com-content__info-block:first-child {
  margin-bottom: 0;
}
.com-content__info-block:last-child {
  margin-bottom: 0;
}
.com-content__stand-blocks {
  display: block;
  margin: calc(var(--gap) * 0.5) 0;
  padding: 0;
}
.com-content__stand-blocks:first-child {
  margin-bottom: 0;
}
.com-content__stand-blocks:last-child {
  margin-bottom: 0;
}
.com-content__stand-block {
  display: block;
  margin: 0;
  padding: 45px 35px 60px;
  background: #fff;
}
.com-content__stand-block:first-child {
  margin-bottom: 0;
}
.com-content__stand-block:last-child {
  margin-bottom: 0;
}
.com-content__stand-image {
  display: block;
  width: 100%;
  max-width: 235px;
  height: auto;
  aspect-ratio: 235/175;
  -o-object-fit: cover;
     object-fit: cover;
}
.com-content__nowrap {
  text-wrap: nowrap;
}

.contact-block {
  display: block;
}
.contact-block__holder {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 300px 0 0 0;
}
.contact-block__bg-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  display: block;
  height: 552px;
}
.contact-block__illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-block__inner {
  position: relative;
  z-index: 2;
  display: block;
  padding: 40px 30px;
  color: #fff;
  background: var(--color-odd);
}
@media only screen and (min-width: 768px) {
  .contact-block__inner {
    padding: 70px 80px;
  }
}
@media only screen and (min-width: 1024px) {
  .contact-block__inner {
    padding: 80px 90px;
  }
}
@media only screen and (min-width: 1280px) {
  .contact-block__inner {
    padding: 90px 100px;
  }
}
.contact-block__title {
  display: block;
}
.contact-block__body {
  display: block;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .contact-block__body {
    padding: 0 4.5%;
  }
}
.contact-block__contacts-list {
  display: block;
  margin: 0 0 5px;
}
.contact-block__contacts-list:last-child {
  margin-bottom: 0;
}
.contact-block__contacts-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 30px;
}
@media only screen and (min-width: 768px) {
  .contact-block__contacts-list-item {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .contact-block__contacts-list-item {
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 1280px) {
  .contact-block__contacts-list-item {
    margin-bottom: 80px;
  }
}
.contact-block__contacts-list-item:last-child {
  margin-bottom: 0;
}
.contact-block__contacts-list-item-icon {
  display: block;
  width: 30px;
  min-width: 30px;
  height: auto;
  margin-top: 5px;
  fill: #fff;
}
.contact-block__contacts-list-item-icon_type_pin {
  aspect-ratio: 30/40;
}
.contact-block__contacts-list-item-icon_type_calendar {
  aspect-ratio: 30/30;
}
.contact-block__contacts-list-item-text {
  display: block;
  font-size: 18px;
}

.contact-snippet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.contact-snippet__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-snippet__row[href] {
  fill: inherit;
  color: inherit;
  text-decoration: none;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease), fill var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), fill var(--trn-speed, .3s) var(--trn-ease, ease);
}
.contact-snippet__row[href]:hover,
.contact-snippet__row[href]:focus {
  fill: var(--color-link-hover);
  color: var(--color-link-hover);
}
.contact-snippet__illustration {
  --size: 1em;
  --placeholder-size: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--size);
  height: var(--size);
}
.contact-snippet__illustration_type_whatsapp {
  --size: 1.42857em;
}
.contact-snippet__illustration_type_placeholder {
  -ms-flex-preferred-size: var(--placeholder-size);
      flex-basis: var(--placeholder-size);
  width: var(--placeholder-size);
}
.contact-snippet__icon {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}
.contact-snippet__placeholder {
  display: block;
  font-size: 0;
}
.contact-snippet__title {
  display: block;
  font-size: inherit;
  line-height: inherit;
}
.contact-snippet__text {
  display: block;
  font-size: inherit;
  line-height: inherit;
}
.contact-snippet__description {
  display: inline;
  font-size: 0.9em;
  font-weight: 300;
}
.contact-snippet_weight_thin,
.contact-snippet_weight_hairline {
  font-weight: 100;
}
.contact-snippet_weight_extra-light,
.contact-snippet_weight_ultra-light {
  font-weight: 200;
}
.contact-snippet_weight_light {
  font-weight: 300;
}
.contact-snippet_weight_regular,
.contact-snippet_weight_normal {
  font-weight: 400;
}
.contact-snippet_weight_medium {
  font-weight: 500;
}
.contact-snippet_weight_semi-bold,
.contact-snippet_weight_demi-bold {
  font-weight: 600;
}
.contact-snippet_weight_bold {
  font-weight: 700;
}
.contact-snippet_weight_extra-bold,
.contact-snippet_weight_ultra-bold {
  font-weight: 800;
}
.contact-snippet_weight_black,
.contact-snippet_weight_heavy {
  font-weight: 900;
}
.contact-snippet_weight_extra-black,
.contact-snippet_weight_ultra-black {
  font-weight: 900;
}
.contact-snippet_align_left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}
.contact-snippet_align_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.contact-snippet_align_right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}
@media only screen and (min-width: 1px) {
  .contact-snippet_align_xs-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .contact-snippet_align_xs-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .contact-snippet_align_xs-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
}
@media only screen and (min-width: 480px) {
  .contact-snippet_align_s-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .contact-snippet_align_s-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .contact-snippet_align_s-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
}
@media only screen and (min-width: 768px) {
  .contact-snippet_align_m-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .contact-snippet_align_m-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .contact-snippet_align_m-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
}
@media only screen and (min-width: 1024px) {
  .contact-snippet_align_l-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .contact-snippet_align_l-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .contact-snippet_align_l-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
}
@media only screen and (min-width: 1280px) {
  .contact-snippet_align_xl-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .contact-snippet_align_xl-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .contact-snippet_align_xl-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
}
@media only screen and (min-width: 1600px) {
  .contact-snippet_align_xxl-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .contact-snippet_align_xxl-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .contact-snippet_align_xxl-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
}
@media only screen and (min-width: 1840px) {
  .contact-snippet_align_xxxl-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .contact-snippet_align_xxxl-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .contact-snippet_align_xxxl-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
}

.contacts-snippet {
  display: block;
}
.contacts-snippet__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25em 1em;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contacts-snippet__list-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contacts {
  display: block;
}
.contacts__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .contacts__holder {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: -20px;
  }
}
.contacts__illustration {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: auto;
  height: auto;
  margin-right: -20px;
  margin-left: -20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .contacts__illustration {
    max-width: min( 35.55555555555556%, 640px);
    min-height: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.contacts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
  padding: var(--gap) 0;
}
@media only screen and (min-width: 768px) {
  .contacts__body {
    padding-left: var(--gap);
  }
}
.contacts__title {
  display: block;
}
.contacts__title .title {
  margin-bottom: 0;
}
.contacts__list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contacts__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 20px 0;
  list-style: none;
  border-bottom: 1px solid rgba(26,13,0,0.4);
}
.contacts__list-item:first-child {
  border-top: 1px solid rgba(26,13,0,0.4);
}
.contacts__snippet-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.42em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-font-def);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.428571428571429;
  opacity: 0.5;
}
.contacts__snippet-title-icon {
  display: block;
  width: 1.428571428571429em;
  height: auto;
  aspect-ratio: 1/1;
  fill: currentColor;
}
.contacts__snippet-title-inner {
  display: inline;
}
.contacts__snippets {
  display: block;
}
.contacts__snippets_type_addresses {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.222222222222222;
}
@media only screen and (min-width: 768px) {
  .contacts__snippets_type_addresses {
    font-size: 18px;
  }
}
.contacts__snippets_type_addresses .contact-snippet__illustration {
  display: none;
}
.contacts__snippets_type_phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.272727272727273;
}
@media only screen and (min-width: 768px) {
  .contacts__snippets_type_phones {
    font-size: 22px;
  }
}
.contacts__snippets_type_phones .contacts-snippet__list {
  gap: 0.25em 10px;
}
@media only screen and (min-width: 768px) {
  .contacts__snippets_type_phones .contacts-snippet__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.contacts__snippets_type_phones .contacts-snippet__list-item:last-child .contact-snippet:after {
  content: none;
}
.contacts__snippets_type_phones .contact-snippet__illustration {
  display: none;
}
.contacts__snippets_type_phones .contact-snippet:after {
  content: ';';
}
.contacts__snippets_type_socials .social-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.contacts__snippets_type_socials .social-nav__link {
  width: 56px;
  aspect-ratio: 1/1;
  color: var(--color-main);
  background-color: rgba(203,153,29,0.1);
  backdrop-filter: blur(6px);
  border-radius: 4px;
}
.contacts__snippets_type_socials .social-nav__link[href] {
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.contacts__snippets_type_socials .social-nav__link[href]:hover,
.contacts__snippets_type_socials .social-nav__link[href]:focus,
.contacts__snippets_type_socials .social-nav__link[href]:active {
  color: var(--color-white);
  background-color: var(--color-main);
}
.contacts__snippets_type_socials .social-nav__icon {
  width: 26px;
}

.controls {
  display: block;
}
.controls__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.controls__list-item {
  display: block;
}
.controls__list-item_see_no {
  display: none;
}
.controls__list-item_see_yes {
  display: block;
}
@media only screen and (min-width: 1px) {
  .controls__list-item_see_xs-no {
    display: none;
  }
}
@media only screen and (min-width: 1px) {
  .controls__list-item_see_xs-yes {
    display: block;
  }
}
@media only screen and (min-width: 480px) {
  .controls__list-item_see_s-no {
    display: none;
  }
}
@media only screen and (min-width: 480px) {
  .controls__list-item_see_s-yes {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .controls__list-item_see_m-no {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .controls__list-item_see_m-yes {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .controls__list-item_see_l-no {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .controls__list-item_see_l-yes {
    display: block;
  }
}
@media only screen and (min-width: 1280px) {
  .controls__list-item_see_xl-no {
    display: none;
  }
}
@media only screen and (min-width: 1280px) {
  .controls__list-item_see_xl-yes {
    display: block;
  }
}
@media only screen and (min-width: 1600px) {
  .controls__list-item_see_xxl-no {
    display: none;
  }
}
@media only screen and (min-width: 1600px) {
  .controls__list-item_see_xxl-yes {
    display: block;
  }
}
@media only screen and (min-width: 1840px) {
  .controls__list-item_see_xxxl-no {
    display: none;
  }
}
@media only screen and (min-width: 1840px) {
  .controls__list-item_see_xxxl-yes {
    display: block;
  }
}
.controls__list-item_width_full {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
.controls_justify-content_left .controls__list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.controls_justify-content_center .controls__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.controls_justify-content_rigth .controls__list {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (min-width: 1px) {
  .controls_justify-content_xs-left .controls__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .controls_justify-content_xs-center .controls__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .controls_justify-content_xs-rigth .controls__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 480px) {
  .controls_justify-content_s-left .controls__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .controls_justify-content_s-center .controls__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .controls_justify-content_s-rigth .controls__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .controls_justify-content_m-left .controls__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .controls_justify-content_m-center .controls__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .controls_justify-content_m-rigth .controls__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  .controls_justify-content_l-left .controls__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .controls_justify-content_l-center .controls__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .controls_justify-content_l-rigth .controls__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1280px) {
  .controls_justify-content_xl-left .controls__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .controls_justify-content_xl-center .controls__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .controls_justify-content_xl-rigth .controls__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1600px) {
  .controls_justify-content_xxl-left .controls__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .controls_justify-content_xxl-center .controls__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .controls_justify-content_xxl-rigth .controls__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1840px) {
  .controls_justify-content_xxxl-left .controls__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .controls_justify-content_xxxl-center .controls__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .controls_justify-content_xxxl-rigth .controls__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.count-snippet {
  display: block;
  height: 100%;
}
.count-snippet__holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: clamp(15px, 6.896551724137931%, 30px);
  background: transparent;
  border: 1px solid var(--color-button-border);
  -webkit-transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.count-snippet__holder:before,
.count-snippet__holder:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1px solid var(--color-button-border-hover);
  -webkit-transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.count-snippet__holder:before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.count-snippet__holder:after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}
.count-snippet__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(25px, 3vw, 60px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.count-snippet__illustration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  padding: 11px;
  background: var(--color-odd);
}
.count-snippet__icon {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--color-main);
}
.count-snippet__counter-row {
  display: block;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
}
.count-snippet__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.count-snippet__text {
  display: block;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
}
.count-snippet_type_featured .count-snippet__holder {
  background-color: rgba(184,182,145,0.102);
  border-color: rgba(184,182,145,0.102);
}
.count-snippet_type_featured .count-snippet__holder:before,
.count-snippet_type_featured .count-snippet__holder:after {
  border-color: rgba(184,182,145,0.6);
}
.count-snippet_type_featured .count-snippet__illustration {
  background-color: #fff;
}

.countdown {
  display: block;
}
.countdown__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  min-height: 40px;
}
@media only screen and (min-width: 480px) {
  .countdown__row {
    --margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .countdown__row {
    --margin-bottom: 0;
    right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 575px;
  }
}
@media only screen and (min-width: 1024px) {
  .countdown__row {
    --margin-bottom: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .countdown__row {
    --margin-bottom: 0;
  }
}
.countdown__pre-text {
  display: block;
  max-width: 115px;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  .countdown__pre-text {
    max-width: 100%;
    white-space: nowrap;
  }
}
.countdown__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
}
.countdown__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 40px;
  padding: 5px 10px;
  font-size: 16px;
  background: rgba(217,217,217,0.25);
}

.counts {
  display: block;
}
.counts__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 480px) {
  .counts__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .counts__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .counts__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1280px) {
  .counts__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.counts__list-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-select {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.custom-select__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-width: 290px;
  height: 70px;
  margin: 0;
  padding: 5px 35px;
  color: var(--color-font);
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  background: var(--color-background);
  border: 2px solid var(--color-border);
  border-radius: 35px;
  outline: none;
  -webkit-transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.custom-select__item::-webkit-input-placeholder {
  color: var(--font-color-placeholder, var(--color-font));
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.75;
}
.custom-select__item::-moz-placeholder {
  color: var(--font-color-placeholder, var(--color-font));
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.75;
}
.custom-select__item:-ms-input-placeholder {
  color: var(--font-color-placeholder, var(--color-font));
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.75;
}
.custom-select__item::-ms-input-placeholder {
  color: var(--font-color-placeholder, var(--color-font));
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.75;
}
.custom-select__item::placeholder {
  color: var(--font-color-placeholder, var(--color-font));
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.75;
}
.custom-select__item:hover,
.custom-select__item:active {
  border-color: var(--color-border);
}
.custom-select__item:focus {
  border-color: var(--color-border);
}
.custom-select__item_state_opened {
  border-bottom-color: #fff;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.custom-select__item_state_opened + .custom-select__list {
  pointer-events: auto;
  opacity: 1;
}
.custom-select__item .modifier-option__main {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.custom-select__list {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  padding: 5px 0;
  pointer-events: none;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: none;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
  opacity: 0;
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.custom-select__option {
  display: block;
  padding: 5px 20px;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.285714285714286;
  cursor: pointer;
  -webkit-transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease), color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease), color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.custom-select__option:hover {
  color: var(--color-second);
  background: #fff;
}
.custom-select__option_state_selected {
  color: #fff;
  background: var(--color-second);
}

.documentation {
  display: block;
}
.documentation__showcase {
  display: block;
  width: 100%;
  margin: 0 0 30px;
  padding: 50px;
  background: #eef;
  border: 1px solid #88f;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 10px #bbf;
          box-shadow: inset 0 0 10px #bbf;
}
.documentation__showcase:last-child {
  margin-bottom: 0;
}
.documentation__code {
  display: block;
  width: 100%;
  margin: 0 0 30px;
  padding: 10px;
  color: #fff;
  font-family: monospace, monospace;
  font-size: 16px;
  line-height: 1.2;
  background: #222;
  border: 4px solid #545454;
  border-radius: 4px;
}
.documentation__code:last-child {
  margin-bottom: 0;
}
.documentation__code-row {
  display: block;
}
.documentation__code-level {
  display: block;
  padding: 0 0 0 1em;
}
.documentation__punctuation {
  color: #fff;
}
.documentation__string {
  color: #e6db74;
}
.documentation__element {
  color: #a6e22d;
}
.documentation__number {
  color: #ae81ff;
}
.documentation__operator {
  color: #f92672;
}
.documentation__keyword {
  color: #66d9ef;
}
.documentation__code-snippet {
  padding: 1px;
  font-family: monospace, monospace;
  background: #c6c6c6;
  border-radius: 2px;
}
.documentation__code-snippet[href] {
  color: inherit;
  font-style: italic;
  text-decoration: none;
  outline: none;
  -webkit-transition: background-color 0.1s ease;
  transition: background-color 0.1s ease;
}
.documentation__code-snippet[href]:hover,
.documentation__code-snippet[href]:active,
.documentation__code-snippet[href]:focus {
  color: inherit;
  text-decoration: none;
  background: #d6d6d6;
}
.documentation__asterisk {
  vertical-align: top;
  color: #ef5350;
}

.entry-list {
  display: block;
  overflow: hidden;
}
.entry-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.entry-list__item {
  --n: 1;
  display: block;
  -ms-flex-preferred-size: calc(100% / var(--n) - 30px * (var(--n) - 1) / var(--n));
      flex-basis: calc(100% / var(--n) - 30px * (var(--n) - 1) / var(--n));
  width: calc(100% / var(--n) - 30px * (var(--n) - 1) / var(--n));
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 480px) {
  .entry-list__item {
    --n: 2;
  }
}
@media only screen and (min-width: 768px) {
  .entry-list__item {
    --n: 3;
  }
}
@media only screen and (min-width: 1024px) {
  .entry-list__item {
    --n: 4;
  }
}
@media only screen and (min-width: 1280px) {
  .entry-list__item {
    --n: 5;
  }
}

.entry-snippet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.entry-snippet__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border: 2px solid var(--color-border);
  -webkit-transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.entry-snippet__holder[href] {
  color: inherit;
  text-decoration: none;
}
.entry-snippet__holder[href]:hover {
  border-color: var(--color-main);
}
.entry-snippet__header {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 0 15px;
}
.entry-snippet__header:last-child {
  margin-bottom: 0;
}
.entry-snippet__image {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  aspect-ratio: 100/55;
  margin: 0 auto 20px;
  padding: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.entry-snippet__image:last-child {
  margin-bottom: 0;
}
.entry-snippet__body {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 0 10px;
}
.entry-snippet__body:last-child {
  margin-bottom: 0;
}
.entry-snippet__title {
  display: block;
  margin: 0 0 0.75em;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
}
@media only screen and (min-width: 768px) {
  .entry-snippet__title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .entry-snippet__title {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1280px) {
  .entry-snippet__title {
    font-size: 18px;
  }
}
.entry-snippet__title:last-child {
  margin-bottom: 0;
}
.entry-snippet__description {
  display: block;
  margin: 0 0 0.75em;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .entry-snippet__description {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  .entry-snippet__description {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1280px) {
  .entry-snippet__description {
    font-size: 16px;
  }
}
.entry-snippet__description:last-child {
  margin-bottom: 0;
}
.entry-snippet__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 10px;
}
.entry-snippet__footer:last-child {
  margin-bottom: 0;
}
.entry-snippet__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.entry-snippet__controls {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: right;
}
.entry-snippet__link {
  display: inline;
  color: #1eca9a;
  text-decoration: none;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.entry-snippet__link:hover,
.entry-snippet__link:active,
.entry-snippet__link:focus {
  color: #f5a617;
  text-decoration: none;
}
.entry-snippet_style_temporal .entry-snippet__title {
  color: var(--color-main);
}

.exhibition-section {
  display: block;
}
.exhibition-section__holder {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 276px;
  height: auto;
  aspect-ratio: 276/230;
  margin: 0 auto;
  background: #081740 none 50% 50%/cover;
}
.exhibition-section__holder[href] {
  text-decoration: none;
  outline: none;
}
.exhibition-section__holder[href]:hover:before,
.exhibition-section__holder[href]:focus:before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.exhibition-section__holder:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), color-stop(70%, #081740));
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #081740 70%);
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
  -webkit-transition: -webkit-transform var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: -webkit-transform var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: transform var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: transform var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-transform var(--trn-speed, .3s) var(--trn-ease, ease);
}
.exhibition-section__title {
  position: absolute;
  top: auto;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  padding: 30px 25px;
  color: #fff;
  font-size: 18px;
  line-height: 1.277777777777778;
}

.exhibition-snippet {
  display: block;
}
.exhibition-snippet__holder {
  display: block;
  padding: 40px 30px;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  .exhibition-snippet__holder {
    padding: 20px 30px;
  }
}
.exhibition-snippet__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 35px;
}
@media only screen and (min-width: 768px) {
  .exhibition-snippet__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.exhibition-snippet__info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  padding: 0 0 0 60px;
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  .exhibition-snippet__info {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}
.exhibition-snippet__icon {
  position: absolute;
  top: 0;
  left: 11px;
  display: block;
  width: 30px;
  height: 30px;
  margin: 0;
  fill: var(--color-main);
}
@media only screen and (min-width: 768px) {
  .exhibition-snippet__icon {
    position: static;
    margin-right: 20px;
  }
}
.exhibition-snippet__date {
  display: block;
  color: var(--color-main);
  font-weight: 700;
}
.exhibition-snippet__place {
  display: block;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .exhibition-snippet__place {
    margin: 0 0 0 0.5em;
    padding: 0 0 0 0.5em;
    border-left: 2px solid currentColor;
  }
}
.exhibition-snippet__controls {
  display: block;
}

.faq {
  display: block;
}
.faq__header {
  display: block;
}
.faq__body {
  display: block;
}

.filter {
  display: block;
}

.fixed-block {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: block;
  opacity: 1;
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.fixed-block__holder {
  display: block;
  background: var(--color-main);
  -webkit-box-shadow: 0 5px 15px 5px rgba(0,0,0,0.25);
          box-shadow: 0 5px 15px 5px rgba(0,0,0,0.25);
}
.fixed-block .header__fixed-block {
  position: static;
}
.fixed-block .header__block {
  padding: 5px 0;
}
.fixed-block .header__logo .logo__illustration {
  max-width: 180px;
}
.fixed-block_is_hidden {
  pointer-events: none;
  opacity: 0;
}

.fixed-widget {
  position: relative;
  z-index: 10;
  display: block;
}
.fixed-widget__widgets {
  position: fixed;
  top: 50%;
  right: 3%;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.fixed-widget__widget {
  display: block;
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}
.fixed-widget__widget:last-child {
  margin-bottom: 0;
}
.fixed-widget__link {
  display: block;
  margin: 0;
  padding: 0;
}
.fixed-widget__icon {
  --size: 47px;
  display: block;
  width: var(--size);
  height: var(--size);
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 480px) {
  .fixed-widget__icon {
    --size: 53px;
  }
}
@media only screen and (min-width: 768px) {
  .fixed-widget__icon {
    --size: 58px;
  }
}
@media only screen and (min-width: 1024px) {
  .fixed-widget__icon {
    --size: 63px;
  }
}
@media only screen and (min-width: 1280px) {
  .fixed-widget__icon {
    --size: 68px;
  }
}

.footer {
  display: block;
  margin: 0;
  padding: calc(var(--padding) * 0.5) 0;
  background: var(--color-main);
}
.footer__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 44px 20px;
}
@media only screen and (min-width: 1024px) {
  .footer__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer__row_aling-items_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__info {
  display: block;
  color: var(--color-light);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.285714285714286;
  text-align: center;
  opacity: 0.7;
}
.footer__menu {
  display: block;
}
.footer__menu .menu {
  --gap: 25px;
  --color-menu-link: #fbefef;
  --color-menu-link-hover: var(--color-light);
  --color-menu-link-current: var(--color-main);
  --font-size: 14px;
  --font-weight: 400;
  --line-height: 1.285714285714286;
}
.footer__menu .menu__list-item {
  position: relative;
}
.footer__menu .menu__list-item:before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(var(--gap) * -1 / 2);
  display: block;
  width: 1px;
  height: var(--font-size);
  background: var(--color-menu-link);
  translate: -50% -50%;
}
.footer__menu .menu__list-item:first-child:before {
  content: none;
}
.footer__menu .menu__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__menu .menu__link {
  text-decoration: underline;
}
.footer__menu .menu__link:hover,
.footer__menu .menu__link:focus,
.footer__menu .menu__link:active {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.footer__copyright {
  display: block;
  color: var(--color-light);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.285714285714286;
  text-align: center;
  opacity: 0.7;
}

.form {
  display: block;
}
.form__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
}
.form__header:last-child {
  margin-bottom: 0;
}
.form__mini-title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 9px 38px;
  font-family: var(--font-family-default);
  font-size: var(--min-header--font-size);
  font-weight: var(--min-header--font-weight);
  line-height: var(--min-header--line-height);
  border: 1px solid rgba(184,182,145,0.2);
}
.form__mini-title:before,
.form__mini-title:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1px solid var(--color-main);
}
.form__mini-title:before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.form__mini-title:after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}
.form__title {
  display: block;
  font-family: var(--font-family-header);
  font-size: var(--header--font-size);
  font-weight: var(--header--font-weight);
  line-height: var(--header--line-height);
}
.form__title strong {
  color: var(--color-main);
  font-weight: var(--header--font-weight);
}
@media only screen and (min-width: 768px) {
  .form__title {
    max-width: 890px;
  }
}
.form__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.form__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  aspect-ratio: 1800/424;
  margin: 0;
  padding: 0;
}
.form__description {
  display: block;
  max-width: 586px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
}
.form__group {
  display: block;
  margin: 0 0 20px;
  padding: 0;
  border: none;
}
@media only screen and (min-width: 768px) {
  .form__group {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .form__group {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 1280px) {
  .form__group {
    margin-bottom: 40px;
  }
}
.form__group:last-child {
  margin-bottom: 0;
}
.form__group-title {
  display: block;
  margin: 0 0 1.25em;
  padding: 0;
  font-family: var(--font-family-header);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.104166666666667;
  border: none;
}
.form__group-title:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .form__group-title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .form__group-title {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1280px) {
  .form__group-title {
    font-size: 18px;
  }
}
.form__group-title_display_no {
  display: none;
}
.form__group-body {
  display: block;
  margin: 0;
  padding: 0;
}
.form__item {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.form__controls {
  display: block;
}
.form__illustration {
  display: block;
  width: 255px;
  max-width: 100%;
  aspect-ratio: 255/412;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.form__link {
  display: inline;
  color: inherit;
  -webkit-text-decoration: underline solid inherit;
          text-decoration: underline solid inherit;
  -webkit-transition: -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.form__link:hover,
.form__link:active {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.form__text {
  display: block;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.375;
  opacity: 0.8;
}
@media only screen and (min-width: 768px) {
  .form__text {
    max-width: calc((100% / var(--columns)) - (var(--gap) * (var(--columns) - 1) / var(--columns)));
  }
}
.form__notice {
  display: block;
  max-width: 444px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.428571428571429;
  opacity: 0.6;
}
.form_style_white .input {
  --color-label: #fff;
  --color-border: #fff;
}
.form_style_white .button {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.form_style_white .button:before,
.form_style_white .button:after {
  border-color: #fff;
}
.form_style_white .button:active {
  color: var(--color-main);
}
.form_style_white .button:active:before,
.form_style_white .button:active:after {
  border-color: var(--color-main);
}
.form_bg_orange .form__holder {
  background-color: var(--color-main);
  background-image: url("/images/form/bg-orange.png");
}
.form_bg_orange .form__mini-title,
.form_bg_orange .form__title {
  color: var(--color-white);
}
.form_bg_orange .input__item {
  --color-border: #fff;
}
.form_bg_blue .form__holder {
  background-color: var(--color-secondary);
  background-image: url("/images/form/bg-blue.png");
}
.form_bg_blue .form__mini-title,
.form_bg_blue .form__title {
  color: var(--color-white);
}
.form_bg_blue .input__item {
  --color-border: #fff;
}

.gallery-snippet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery-snippet__holder {
  display: block;
  overflow: hidden;
  width: 180px;
  aspect-ratio: 180/123;
  margin: 0;
  padding: 0;
  background: var(--color-white);
  border-radius: 10px;
}
.gallery-snippet__holder[href] {
  font-size: 0;
  text-decoration: none;
}
.gallery-snippet__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery {
  display: block;
}
.gallery__carousel {
  display: block;
}
.gallery__carousel .carousel__pagination-holder {
  padding: 0;
}
.gallery__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guarantee-snippet {
  display: block;
  height: 100%;
}
.guarantee-snippet__holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 44px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 435px;
  min-height: 280px;
  margin: 0 auto;
  padding: clamp(15px, 6.896551724137931%, 30px);
  background: transparent;
  border: 1px solid var(--color-button-border);
  -webkit-transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.guarantee-snippet__holder:before,
.guarantee-snippet__holder:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1px solid var(--color-button-border-hover);
  -webkit-transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.guarantee-snippet__holder:before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.guarantee-snippet__holder:after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}
@media only screen and (min-width: 768px) {
  .guarantee-snippet__holder {
    min-height: 100%;
    aspect-ratio: 1/1;
  }
}
.guarantee-snippet__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.guarantee-snippet__title {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin: 0;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.285714285714286;
}
.guarantee-snippet__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28px;
          flex: 0 0 28px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  width: 28px;
  min-width: 28px;
  max-width: 28px;
}
.guarantee-snippet__dot {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--color-font-def);
  border-radius: 50%;
}
.guarantee-snippet__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.guarantee-snippet__description {
  display: block;
  margin: 0;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
}
.guarantee-snippet_type_featured .guarantee-snippet__holder {
  background-color: rgba(184,182,145,0.102);
  border-color: rgba(184,182,145,0.102);
}
.guarantee-snippet_type_featured .guarantee-snippet__holder:before,
.guarantee-snippet_type_featured .guarantee-snippet__holder:after {
  border-color: rgba(184,182,145,0.6);
}
.guarantee-snippet_type_featured .guarantee-snippet__illustration {
  background-color: #fff;
}
.guarantee-snippet_type_image .guarantee-snippet__holder {
  background-color: transparent;
  background-size: cover;
  border: none;
}
.guarantee-snippet_type_image .guarantee-snippet__holder:before,
.guarantee-snippet_type_image .guarantee-snippet__holder:after {
  border: none;
}

.guarantees {
  display: block;
}
.guarantees__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 40px;
}
@media only screen and (min-width: 768px) {
  .guarantees__header {
    display: grid;
    grid-template-columns: minmax(-webkit-min-content, 49.44444444444444%) auto;
    grid-template-columns: minmax(min-content, 49.44444444444444%) auto;
    gap: 20px;
  }
}
.guarantees__header:last-child {
  margin-bottom: 0;
}
.guarantees__mini-title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 9px 38px;
  color: var(--color-main);
  font-family: var(--font-family-default);
  font-size: var(--min-header--font-size);
  font-weight: var(--min-header--font-weight);
  line-height: var(--min-header--line-height);
  white-space: nowrap;
  border: 1px solid rgba(184,182,145,0.2);
}
.guarantees__mini-title:before,
.guarantees__mini-title:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1px solid var(--color-main);
}
.guarantees__mini-title:before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.guarantees__mini-title:after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}
.guarantees__title {
  display: block;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: var(--header--font-size);
  font-weight: var(--header--font-weight);
  line-height: var(--header--line-height);
}
.guarantees__title strong {
  color: var(--color-main);
  font-weight: var(--header--font-weight);
}
@media only screen and (min-width: 768px) {
  .guarantees__title {
    max-width: 890px;
  }
}
.guarantees__list {
  --margin-bottom: var(--gap);
  counter-reset: section;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 0 0 var(--margin-bottom);
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .guarantees__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .guarantees__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1280px) {
  .guarantees__list {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: 'a b . c' 'd . e f';
  }
}
.guarantees__list:last-child {
  --margin-bottom: 0;
}
.guarantees__list-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 1280px) {
  .guarantees__list-item:nth-child(1) {
    grid-area: a;
  }
  .guarantees__list-item:nth-child(2) {
    grid-area: b;
  }
  .guarantees__list-item:nth-child(3) {
    grid-area: c;
  }
  .guarantees__list-item:nth-child(4) {
    grid-area: e;
  }
  .guarantees__list-item:nth-child(5) {
    grid-area: f;
  }
  .guarantees__list-item:nth-child(6) {
    grid-area: d;
  }
}
.guarantees__list-item:last-child {
  margin-bottom: 0;
}
.guarantees__list-item .advantage-snippet {
  height: 100%;
}
.guarantees__list-item .advantage-snippet__holder {
  min-height: 100%;
}

.header {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.header__holder {
  display: block;
  padding: 0;
  background: var(--color-main);
}
.header__block {
  display: block;
  margin: 0;
  padding: 15px 0;
}
.header__block_see_no {
  display: none;
}
.header__block_see_yes {
  display: block;
}
@media only screen and (min-width: 1px) {
  .header__block_see_xs-no {
    display: none;
  }
  .header__block_see_xs-yes {
    display: block;
  }
}
@media only screen and (min-width: 480px) {
  .header__block_see_s-no {
    display: none;
  }
  .header__block_see_s-yes {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .header__block_see_m-no {
    display: none;
  }
  .header__block_see_m-yes {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .header__block_see_l-no {
    display: none;
  }
  .header__block_see_l-yes {
    display: block;
  }
}
@media only screen and (min-width: 1280px) {
  .header__block_see_xl-no {
    display: none;
  }
  .header__block_see_xl-yes {
    display: block;
  }
}
@media only screen and (min-width: 1600px) {
  .header__block_see_xxl-no {
    display: none;
  }
  .header__block_see_xxl-yes {
    display: block;
  }
}
@media only screen and (min-width: 1840px) {
  .header__block_see_xxxl-no {
    display: none;
  }
  .header__block_see_xxxl-yes {
    display: block;
  }
}
.header__block_type_well {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 0 60px;
}
@media only screen and (min-width: 768px) {
  .header__block_type_well {
    aspect-ratio: 1800/800;
  }
}
.header__block:last-child {
  margin-bottom: 0;
}
.header__fixed-block {
  display: block;
  padding: 10px 0;
}
.header__contacts {
  display: block;
}
.header__addresses {
  display: block;
  margin-bottom: 6px;
  fill: var(--color-white);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
}
@media only screen and (min-width: 768px) {
  .header__addresses {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .header__addresses {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1280px) {
  .header__addresses {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1600px) {
  .header__addresses {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1840px) {
  .header__addresses {
    font-size: 16px;
  }
}
.header__addresses:last-child {
  margin-bottom: 0;
}
.header__addresses .contact-snippet {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.header__addresses .contact-snippet__row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.header__phones {
  display: block;
  fill: var(--color-white);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
}
@media only screen and (min-width: 768px) {
  .header__phones {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .header__phones {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1280px) {
  .header__phones {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1600px) {
  .header__phones {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1840px) {
  .header__phones {
    font-size: 16px;
  }
}
.header__phones:last-child {
  margin-bottom: 0;
}
.header__phones .contacts-snippet__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header__phones .contact-snippet {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__phones .contact-snippet__row {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__phones .contact-snippet__row[href]:hover,
.header__phones .contact-snippet__row[href]:focus {
  fill: var(--color-font-def);
  color: var(--color-font-def);
}
.header__social-navs {
  display: block;
}
.header__social-navs .social-nav__list {
  grid-template-columns: none;
  grid-auto-columns: minmax(34px, 1fr);
  grid-auto-flow: column;
}
.header__social-navs .social-nav__link {
  max-width: 34px;
  aspect-ratio: 1/1;
  background-color: rgba(253,252,251,0.2);
  backdrop-filter: blur(6px);
  border-radius: 4px;
}
.header__social-navs .social-nav__icon {
  width: 18px;
}
.header__lang-switcher {
  display: block;
}
.header__lang-switcher .lang-switcher__dropdown-toggler {
  padding: 27px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  background: var(--color-grey);
  border-radius: 6px;
}
.header__button {
  display: block;
}
.header__button:last-child {
  margin-bottom: 0;
}
.header__button .button {
  min-width: 270px;
  min-height: 50px;
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.header__button .button:before,
.header__button .button:after {
  border-color: #fff;
}
.header__button .button:active {
  color: var(--color-main);
}
.header__button .button:active:before,
.header__button .button:active:after {
  border-color: var(--color-main);
}
.header__logo {
  position: relative;
  display: block;
  margin: 0 0 5px;
  padding: 0;
  background: transparent;
}
.header__logo .logo__row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__logo .logo__illustration {
  max-width: 180px;
}
@media only screen and (min-width: 480px) {
  .header__logo .logo__illustration {
    max-width: 280px;
  }
}
@media only screen and (min-width: 768px) {
  .header__logo .logo__illustration {
    max-width: 280px;
  }
}
@media only screen and (min-width: 1024px) {
  .header__logo .logo__illustration {
    max-width: 280px;
  }
}
@media only screen and (min-width: 1280px) {
  .header__logo .logo__illustration {
    max-width: 280px;
  }
}
@media only screen and (min-width: 1600px) {
  .header__logo .logo__illustration {
    max-width: 280px;
  }
}
@media only screen and (min-width: 1840px) {
  .header__logo .logo__illustration {
    max-width: 280px;
  }
}
.header__logo:last-child {
  margin-bottom: 0;
}
.header__burger {
  display: block;
}
.header__menu {
  display: block;
}
.header__menu .menu__list_level_1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 56px 29px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__menu .menu__list_level_2 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 3;
  display: block;
  min-width: 320px;
  margin: 0;
  padding: 30px 35px;
  pointer-events: none;
  background: #fff;
  opacity: 0;
  -webkit-box-shadow: 0 5px 45px 5px rgba(0,0,0,0.25);
          box-shadow: 0 5px 45px 5px rgba(0,0,0,0.25);
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.header__menu .menu__list_state_opened {
  pointer-events: auto;
  opacity: 1;
}
.header__menu .menu__list-item_level_1 {
  position: relative;
  margin-bottom: 0;
}
.header__menu .menu__list-item_level_1:hover > .menu__list,
.header__menu .menu__list-item_level_1:focus > .menu__list {
  pointer-events: auto;
  opacity: 1;
}
.header__menu .menu__list-item_level_2 {
  margin-bottom: 1em;
}
.header__menu .menu__list-item_state_active > .menu__link {
  color: var(--color-menu-link-current, var(--color-menu-link));
  border-bottom-color: currentColor;
}
.header__menu .menu__link_level_1 {
  padding: 0;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.411764705882353;
  text-transform: uppercase;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.header__menu .menu__link_level_1:hover,
.header__menu .menu__link_level_1:focus {
  color: var(--color-font-def);
}
.header__menu .menu__link_level_2 {
  color: var(--color-font-def);
}

.image {
  display: block;
}
.image_is_responsive {
  max-width: 100%;
  height: auto;
}
.image_is_centered {
  margin-right: auto;
  margin-left: auto;
}

.info-snippet {
  display: block;
}
.info-snippet__holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
.info-snippet__header {
  display: block;
}
@media only screen and (min-width: 768px) {
  .info-snippet__header {
    max-width: 888px;
  }
}
.info-snippet__body {
  display: block;
}
@media only screen and (min-width: 768px) {
  .info-snippet__body {
    max-width: 888px;
  }
}
.info-snippet__footer {
  display: block;
}
@media only screen and (min-width: 768px) {
  .info-snippet__footer {
    max-width: 888px;
  }
}
.info-snippet__title {
  display: block;
  margin: 0 0 34px;
}
.info-snippet__title:last-child {
  margin-bottom: 0;
}
.info-snippet__title .title {
  margin-bottom: 0;
  text-align: center;
}
.info-snippet__text {
  display: block;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.info-snippet__text:last-child {
  margin-bottom: 0;
}

.input {
  --color-label: var(--color-font-def);
  --color-font: var(--color-font-def);
  --color-background: #fff;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  font-family: var(--font-family-default);
}
.input__title {
  position: relative;
  display: block;
  margin: 0 0 6px;
  color: var(--color-label);
  font-size: 18px;
  font-weight: 700;
}
.input__title_display_no {
  display: none;
}
.input__holder {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.input__holder_is_hidden {
  display: none;
}
.input__item {
  --font-size: 16px;
  display: block;
  width: 100%;
  min-width: 216px;
  max-width: 100%;
  height: auto;
  min-height: 56px;
  margin: 0;
  padding: 17px 20px;
  color: var(--color-font);
  font-family: inherit;
  font-size: var(--font-size);
  font-weight: 300;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 0;
  outline: none;
  -webkit-transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.input__item::-webkit-input-placeholder {
  color: var(--color-placeholder, var(--color-font));
  font-family: inherit;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.input__item::-moz-placeholder {
  color: var(--color-placeholder, var(--color-font));
  font-family: inherit;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.input__item:-ms-input-placeholder {
  color: var(--color-placeholder, var(--color-font));
  font-family: inherit;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.input__item::-ms-input-placeholder {
  color: var(--color-placeholder, var(--color-font));
  font-family: inherit;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.input__item::placeholder {
  color: var(--color-placeholder, var(--color-font));
  font-family: inherit;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
@media only screen and (min-width: 1024px) {
  .input__item {
    --font-size: 16px;
    min-height: 64px;
    padding: 17px 20px;
  }
}
.input__item:hover,
.input__item:active {
  border-color: var(--color-border);
}
.input__item:focus {
  border-color: var(--color-border);
}
.input__item_state_error {
  border-color: var(--tc-danger-dark);
  -webkit-box-shadow: 0 0 10px var(--tc-danger-dark);
          box-shadow: 0 0 10px var(--tc-danger-dark);
}
.input__item_state_error::-webkit-input-placeholder {
  color: var(--tc-danger-dark);
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.input__item_state_error::-moz-placeholder {
  color: var(--tc-danger-dark);
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.input__item_state_error:-ms-input-placeholder {
  color: var(--tc-danger-dark);
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.input__item_state_error::-ms-input-placeholder {
  color: var(--tc-danger-dark);
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.input__item_state_error::placeholder {
  color: var(--tc-danger-dark);
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.input__item_state_valid {
  border-color: #3cd9ff;
}
.input__item_state_disabled {
  pointer-events: none;
  opacity: 0.75;
}
.input__item.rsform-error {
  border-color: var(--tc-danger-dark);
  -webkit-box-shadow: 0 0 10px var(--tc-danger-dark);
          box-shadow: 0 0 10px var(--tc-danger-dark);
}
.input__item-option {
  display: block;
  padding: 5px 20px;
  color: var(--color-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.285714285714286;
  cursor: pointer;
  -webkit-transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease), color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease), color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.input__item-option:hover {
  color: var(--color-second);
  background: #fff;
}
.input__sel-button {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 12px;
  height: 6px;
  fill: var(--color-border);
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.input_state_error .input__item {
  border-color: #d00101;
  -webkit-box-shadow: 0 0 10px #d00101;
          box-shadow: 0 0 10px #d00101;
}
.input_state_error .input__item::-webkit-input-placeholder {
  color: #d00101;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.75;
}
.input_state_error .input__item::-moz-placeholder {
  color: #d00101;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.75;
}
.input_state_error .input__item:-ms-input-placeholder {
  color: #d00101;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.75;
}
.input_state_error .input__item::-ms-input-placeholder {
  color: #d00101;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.75;
}
.input_state_error .input__item::placeholder {
  color: #d00101;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.75;
}
.input_state_disabled .input__item {
  pointer-events: none;
  opacity: 0.75;
}
.input_type_files .input__description {
  display: block;
  margin: 0 0 30px;
}
.input_type_files .input__description:last-child {
  margin-bottom: 0;
}
.input_type_files .input__holder {
  display: block;
  margin: 0 0 30px;
}
.input_type_files .input__holder:last-child {
  margin-bottom: 0;
}
.input_type_files .input__item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
}
.input_type_files .input__file-upload-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.input_type_files .input__file-upload-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  cursor: pointer;
}
.input_type_files .input__file-upload-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: var(--color-main);
}
.input_type_files .input__file-upload-title {
  --font-size: 14px;
  display: block;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media only screen and (min-width: 1024px) {
  .input_type_files .input__file-upload-title {
    --font-size: 16px;
  }
}
.input_type_files .input__file-upload-clear {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: var(--tc-danger-dark);
  pointer-events: auto;
  background: transparent;
  border: none;
  outline: none;
  opacity: 1;
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.input_type_files .input__file-upload-clear_is_hidden {
  pointer-events: none;
  opacity: 0;
}
.input_type_files .input__file-upload-clear-icon {
  display: block;
  width: 20px;
  height: 20px;
  fill: var(--tc-danger-dark);
}
.input_type_files .input__more-files {
  display: block;
  margin: 0 0 30px;
}
.input_type_files .input__more-files:last-child {
  margin-bottom: 0;
}
.input_type_radio .input__holder,
.input_type_checkbox .input__holder {
  display: block;
  min-height: 20px;
  padding-left: calc(20px + 12px);
}
.input_type_radio .input__title,
.input_type_checkbox .input__title {
  position: relative;
  display: block;
  margin: 0;
  font-family: var(--font-family-default);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.666666666666667;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.input_type_radio .input__item,
.input_type_checkbox .input__item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0.12em;
  left: 0;
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  background-clip: content-box;
  opacity: 0;
}
.input_type_radio .input__item + .input__checkbox-wrapper,
.input_type_checkbox .input__item + .input__checkbox-wrapper,
.input_type_radio .input__item + .input__radio-wrapper,
.input_type_checkbox .input__item + .input__radio-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  pointer-events: none;
  background: #fff;
  border: 1px solid var(--color-border);
}
.input_type_radio .input__item + .input__checkbox-wrapper .input__checkbox-inner,
.input_type_checkbox .input__item + .input__checkbox-wrapper .input__checkbox-inner,
.input_type_radio .input__item + .input__radio-wrapper .input__checkbox-inner,
.input_type_checkbox .input__item + .input__radio-wrapper .input__checkbox-inner,
.input_type_radio .input__item + .input__checkbox-wrapper .input__radio-inner,
.input_type_checkbox .input__item + .input__checkbox-wrapper .input__radio-inner,
.input_type_radio .input__item + .input__radio-wrapper .input__radio-inner,
.input_type_checkbox .input__item + .input__radio-wrapper .input__radio-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.input_type_radio .input__item + .input__checkbox-wrapper .input__checkbox-inner,
.input_type_checkbox .input__item + .input__checkbox-wrapper .input__checkbox-inner {
  fill: var(--color-font-def);
}
.input_type_radio .input__item + .input__radio-wrapper,
.input_type_checkbox .input__item + .input__radio-wrapper {
  background: #f00;
}
.input_type_radio .input__item + .input__radio-wrapper .input__checkbox-inner,
.input_type_checkbox .input__item + .input__radio-wrapper .input__checkbox-inner {
  background: var(--color-font-def);
  border-radius: 50%;
}
.input_type_radio .input__item:checked,
.input_type_checkbox .input__item:checked {
  background: var(--color-font-def);
}
.input_type_radio .input__item:checked + .input__checkbox-wrapper .input__checkbox-inner,
.input_type_checkbox .input__item:checked + .input__checkbox-wrapper .input__checkbox-inner,
.input_type_radio .input__item:checked + .input__radio-wrapper .input__checkbox-inner,
.input_type_checkbox .input__item:checked + .input__radio-wrapper .input__checkbox-inner,
.input_type_radio .input__item:checked + .input__checkbox-wrapper .input__radio-inner,
.input_type_checkbox .input__item:checked + .input__checkbox-wrapper .input__radio-inner,
.input_type_radio .input__item:checked + .input__radio-wrapper .input__radio-inner,
.input_type_checkbox .input__item:checked + .input__radio-wrapper .input__radio-inner {
  opacity: 1;
}
.input_type_radio .input__item_state_error,
.input_type_checkbox .input__item_state_error {
  border-color: #d00101;
  -webkit-box-shadow: 0 0 10px #d00101;
          box-shadow: 0 0 10px #d00101;
}
.input_type_checkbox {
  border-radius: 5px;
}
.input_type_select .input__item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease), border-radius var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease), border-radius var(--trn-speed, .3s) var(--trn-ease, ease);
}
.input_type_select .input__item:focus-within:hover {
  border-bottom-color: #fff;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.input_type_textarea .input__item {
  resize: vertical;
  height: auto;
}
.input_style_light {
  --color-label: #fff;
  --color-background: #fff;
}
.input_size_small .input__title {
  margin-bottom: 1em;
  font-size: 16px;
}
.input_size_small .input__item {
  height: 44px;
  padding: 5px 20px;
  font-size: 16px;
  border-width: 1px;
}
.input_size_small .input__item_state_opened {
  border-bottom-color: #fff;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.input_size_small .custom-select__item {
  height: 44px;
  padding: 5px 20px;
  font-size: 16px;
  border-width: 1px;
}
.input_size_small .custom-select__item_state_opened {
  border-bottom-color: #fff;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.input_size_small.input_type_select .input__item,
.input_size_small.input_type_select .custom-select__item {
  padding-right: 35px;
}

.insta-info {
  display: block;
}
.insta-info__holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 24.166666666666668%;
}
.insta-info__header {
  display: block;
}
@media only screen and (min-width: 768px) {
  .insta-info__header {
    max-width: 888px;
  }
}
.insta-info__body {
  display: block;
}
@media only screen and (min-width: 768px) {
  .insta-info__body {
    max-width: 888px;
  }
}
.insta-info__footer {
  display: block;
}
@media only screen and (min-width: 768px) {
  .insta-info__footer {
    max-width: 888px;
  }
}
.insta-info__title {
  display: block;
  margin: 0 0 34px;
}
.insta-info__title:last-child {
  margin-bottom: 0;
}
.insta-info__title .title {
  margin-bottom: 0;
  text-align: center;
}
.insta-info__slogan {
  display: block;
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.416666666666667;
  text-transform: uppercase;
}
.insta-info__slogan:last-child {
  margin-bottom: 0;
}
.insta-info__text {
  display: block;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}
.insta-info__text:last-child {
  margin-bottom: 0;
}
.insta-info__image {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 100%;
  min-width: 320px;
  height: auto;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
  translate: -50% 0;
}

.instagram-snippet {
  display: block;
  padding: 0 15px 20px;
}
.instagram-snippet__shadow-holder {
  position: relative;
  display: block;
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
}
.instagram-snippet__shadow-holder:after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 15px 5px rgba(0,0,0,0.05);
          box-shadow: 0 5px 15px 5px rgba(0,0,0,0.05);
}
.instagram-snippet__holder {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 20px;
}
.instagram-snippet__image {
  position: relative;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}

.lang-switcher {
  display: block;
}
.lang-switcher__holder {
  position: relative;
  display: block;
  margin: 0 auto;
}
.lang-switcher__dropdown-toggler {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  color: var(--color-font-def, #000);
  font-size: 1em;
  background: transparent;
  border: none;
}
.lang-switcher__dropdown-icon {
  display: block;
  width: 1em;
  height: 1em;
  fill: var(--color-font-def, #000);
}
.lang-switcher__dropdown-list {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 0 8px;
  list-style: none;
  color: var(--color-font-def, #000);
  pointer-events: none;
  background: var(--color-white);
  border: 1px solid var(--color-font-def, #000);
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.lang-switcher__dropdown-list_state_opened {
  pointer-events: auto;
  opacity: 1;
}
.lang-switcher__dropdown-list-item {
  display: block;
  margin: 0;
  padding: 5px 0;
  list-style: none;
  border: none;
  border-bottom: 1px solid #d1d1d1;
}
.lang-switcher__dropdown-list-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.lang-switcher__dropdown-link {
  display: block;
  color: inherit;
  font-size: 0.8em;
  text-decoration: none;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.lang-switcher__dropdown-link:hover,
.lang-switcher__dropdown-link:focus {
  color: #4c4c4c;
}
.lang-switcher__dropdown-link_not_active {
  opacity: 0.5;
}
.lang-switcher__dropdown-link_not_active:hover,
.lang-switcher__dropdown-link_not_active:focus {
  color: inherit;
}
.lang-switcher__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lang-switcher__list-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lang-switcher__link {
  display: block;
  color: #d1d1d1;
  font-size: inherit;
  text-decoration: none;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.lang-switcher__link:hover,
.lang-switcher__link:focus {
  color: var(--color-main, #00baff);
}
.lang-switcher__link_is_active,
.lang-switcher__link_is_current {
  color: var(--color-font-def, #4c4c4c);
}
.lang-switcher__link_is_active:hover,
.lang-switcher__link_is_current:hover,
.lang-switcher__link_is_active:focus,
.lang-switcher__link_is_current:focus {
  color: var(--color-font-def, #4c4c4c);
}

.language-snippet {
  display: block;
}
.language-snippet__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.language-snippet__illustration {
  position: relative;
  display: block;
  overflow: hidden;
  width: 24px;
  border-radius: 50%;
}
.language-snippet__illustration:before {
  content: '';
  display: block;
  padding: 100% 0 0;
}
.language-snippet__title {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.list {
  display: block;
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
}
.list:last-child {
  margin-bottom: 0;
}
.list_style_check li,
.list_style_check li:not([class]) {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 0 0 1.75em;
  list-style: none;
}
.list_style_check li:before,
.list_style_check li:not([class]):before {
  content: '';
  position: absolute;
  top: 0.22221em;
  left: 0;
  display: block;
  width: 1.11112em;
  height: 1.11112em;
  margin: 0;
  padding: 0;
  background: transparent url("/images/list/check-circle.svg") 50% 50%/contain;
}
.list_style_numbers {
  counter-reset: items;
}
.list_style_numbers li,
.list_style_numbers li:not([class]) {
  counter-increment: items;
  position: relative;
  display: block;
  margin: 0;
  padding: 0 0 0 1.75em;
  list-style: none;
}
.list_style_numbers li:before,
.list_style_numbers li:not([class]):before {
  content: counter(items) '.';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
  padding: 0;
  color: var(--color-main);
  font-weight: 700;
  background: transparent;
}
.list_style_multilevel {
  counter-reset: items;
  text-align: justify;
}
.list_style_multilevel li,
.list_style_multilevel li:not([class]) {
  counter-increment: items;
  display: table;
  margin: 0 0 0.25em 0;
  padding: 0;
  list-style: none;
}
.list_style_multilevel li:last-child,
.list_style_multilevel li:not([class]):last-child {
  margin-bottom: 0;
}
.list_style_multilevel li:before,
.list_style_multilevel li:not([class]):before {
  content: counters(items, '.') '.';
  position: static;
  display: table-cell;
  margin: 0;
  padding: 0 0.25em 0 0;
  text-align: left;
}
.list_style_multilevel ol,
.list_style_multilevel ol:not([class]),
.list_style_multilevel ul,
.list_style_multilevel ul:not([class]) {
  margin-top: 0.25em;
}
.list_style_multilevel ol ul,
.list_style_multilevel ol:not([class]) ul,
.list_style_multilevel ul ul,
.list_style_multilevel ul:not([class]) ul,
.list_style_multilevel ol ul:not([class]),
.list_style_multilevel ol:not([class]) ul:not([class]),
.list_style_multilevel ul ul:not([class]),
.list_style_multilevel ul:not([class]) ul:not([class]) {
  margin-top: 0.25em;
}
.list_style_multilevel ol,
.list_style_multilevel ol:not([class]) {
  counter-reset: items;
  display: table;
  list-style: none;
}
.list_style_multilevel ol > li,
.list_style_multilevel ol:not([class]) > li,
.list_style_multilevel ol > li:not([class]),
.list_style_multilevel ol:not([class]) > li:not([class]) {
  counter-increment: items;
  margin: 0 0 0.25em 0;
  padding: 0;
  list-style: none;
}
.list_style_multilevel ol > li:last-child,
.list_style_multilevel ol:not([class]) > li:last-child,
.list_style_multilevel ol > li:not([class]):last-child,
.list_style_multilevel ol:not([class]) > li:not([class]):last-child {
  margin-bottom: 0;
}
.list_style_multilevel ol > li:before,
.list_style_multilevel ol:not([class]) > li:before,
.list_style_multilevel ol > li:not([class]):before,
.list_style_multilevel ol:not([class]) > li:not([class]):before {
  content: counters(items, '.') '.';
  position: static;
  display: table-cell;
  margin: 0;
  padding: 0 0.25em 0 0;
  text-align: left;
}

.logo {
  display: block;
}
.logo__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo__row[href] {
  color: inherit;
  text-decoration: none;
}
.logo__illustration {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 280.0540466308594/66;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo__title {
  display: block;
  padding: 0;
  color: var(--color-font-def);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.307692307692308;
}
.logo__title_d_no {
  display: none;
}
.logo__slogan {
  display: block;
  max-width: 273px;
  padding: 0;
  color: var(--color-font-def);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.307692307692308;
}

.map {
  display: block;
}
.map__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 372px;
  margin: 0 auto;
  border-radius: 0;
}
.map__holder iframe {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 100%;
}
.map__container {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 100%;
  color: var(--color-odd);
}
.map__cluster {
  font-size: 60px;
  font-weight: 700;
}

.menu {
  --gap: 10px;
  --color-menu-link: var(--color-font-def);
  --color-menu-link-hover: var(--color-link-hover);
  --color-menu-link-current: var(--color-def-font);
  --font-family: var(--font-family-default);
  --font-size: 14px;
  --font-weight: 400;
  --line-height: 1.285714285714286;
  display: block;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gap);
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu__list-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu__list-item_state_active > .menu__link {
  color: var(--color-menu-link-current, var(--color-menu-link));
  border-bottom-color: currentColor;
}
.menu__list-item_state_disable .menu__link {
  pointer-events: none;
  opacity: 0.75;
}
.menu__list-item_state_hide {
  display: none;
}
.menu__link {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  color: var(--color-menu-link);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  text-decoration: none;
  border: none;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease), border-bottom var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), border-bottom var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), border-bottom var(--trn-speed, .3s) var(--trn-ease, ease), text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), border-bottom var(--trn-speed, .3s) var(--trn-ease, ease), text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-text-decoration-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.menu__link:hover,
.menu__link:focus {
  color: var(--color-menu-link-hover);
  border-bottom-color: currentColor;
}
.menu_layout_2cols .menu__list {
  display: block;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  gap: 15px 25px;
}
.menu_layout_2cols .menu__list-item {
  margin-bottom: 5px;
}
.menu_do_up .menu__link {
  text-transform: uppercase;
}
@media only screen and (min-width: 1px) {
  .menu_do_xs-up .menu__link {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 480px) {
  .menu_do_s-up .menu__link {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 768px) {
  .menu_do_m-up .menu__link {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 1024px) {
  .menu_do_l-up .menu__link {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 1280px) {
  .menu_do_xl-up .menu__link {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 1600px) {
  .menu_do_xxl-up .menu__link {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 1840px) {
  .menu_do_xxxl-up .menu__link {
    text-transform: uppercase;
  }
}

.mobile-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile-nav__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
  background: var(--color-main);
  background-position: 50% 50%;
  background-size: cover;
}
.mobile-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.mobile-nav__logo {
  position: relative;
  display: block;
  max-width: 270px;
  margin: 0 35px;
  padding: 0;
  background: transparent;
}
.mobile-nav__logo .logo__illustration {
  max-width: 169px;
}
.mobile-nav__lang-switcher {
  display: block;
}
.mobile-nav__lang-switcher .lang-switcher__dropdown-toggler {
  padding: 27px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  background: var(--color-grey);
  border-radius: 6px;
}
.mobile-nav__button {
  display: block;
}
.mobile-nav__button .button {
  min-width: 270px;
  min-height: 50px;
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.mobile-nav__button .button:before,
.mobile-nav__button .button:after {
  border-color: #fff;
}
.mobile-nav__button .button:active {
  color: var(--color-main);
}
.mobile-nav__button .button:active:before,
.mobile-nav__button .button:active:after {
  border-color: var(--color-main);
}
.mobile-nav__menu {
  display: block;
}
.mobile-nav__menu .menu__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-nav__menu .menu__list_level_1 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-nav__menu .menu__link_level_1 {
  padding: 0;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.411764705882353;
  text-transform: uppercase;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.mobile-nav__menu .menu__link_level_1:hover,
.mobile-nav__menu .menu__link_level_1:focus {
  color: var(--color-font-def);
}
.mobile-nav__menu .menu__list-item_state_active > .menu__link {
  color: var(--color-menu-link-current, var(--color-menu-link));
  border-bottom-color: currentColor;
}
.mobile-nav__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-nav__contacts .contact-snippet {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-nav__mini-title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 38px;
  color: var(--color-white);
  font-family: var(--font-family-default);
  font-size: var(--min-header--font-size);
  font-weight: 300;
  line-height: var(--min-header--line-height);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.2);
}
.mobile-nav__mini-title:before,
.mobile-nav__mini-title:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1px solid var(--color-white);
}
.mobile-nav__mini-title:before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.mobile-nav__mini-title:after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}
.mobile-nav__phone-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  color: var(--color-white);
}
.mobile-nav__phone {
  display: block;
  margin: 0;
  font-family: var(--font-white);
  font-size: var(--header--font-size);
  font-weight: 700;
  line-height: 1.263157894736842;
}
.mobile-nav__time {
  display: block;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.375;
  opacity: 0.8;
}
.mobile-nav__email {
  display: block;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.363636363636364;
}
.mobile-nav__email .contact-snippet {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-nav__social-nav {
  display: block;
}
.mobile-nav__social-nav .social-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-nav__social-nav .social-nav__list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
  min-width: 50px;
  max-width: 50px;
}
.mobile-nav__social-nav .social-nav__link {
  max-width: 50px;
  aspect-ratio: 1/1;
  background-color: rgba(255,255,255,0.2);
}
.mobile-nav__controller {
  --size: 26px;
  --thickness: 4px;
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  width: var(--size);
  height: var(--size);
  color: transparent;
  font-size: 0;
  background: transparent;
  border: none;
  outline: none;
}
.mobile-nav__controller:before,
.mobile-nav__controller:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(var(--size) * sqrt(2) - (var(--thickness)));
  height: var(--thickness);
  background: var(--color-white);
  -webkit-transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.mobile-nav__controller:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-nav__controller:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-nav__controller:hover:before,
.mobile-nav__controller:focus:before,
.mobile-nav__controller:hover:after,
.mobile-nav__controller:focus:after {
  background-color: var(--color-main);
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  display: none;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  cursor: pointer;
  background: rgba(0,0,0,0.62);
}
.modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 10px;
}
.modal__holder {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1140px;
  max-height: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}
.modal__header {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 20px 20px 10px;
}
.modal__body {
  display: block;
  overflow-y: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 10px 20px 20px;
}
.modal__footer {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 10px;
}
.modal__controller {
  display: block;
}
.modal__controller_type_close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  color: transparent;
  font-size: 0;
  background: transparent;
  border: none;
  outline: none;
}
.modal__controller_type_close:before,
.modal__controller_type_close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-button);
  border-radius: 2px;
  -webkit-transition: background var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: background var(--trn-speed, .3s) var(--trn-ease, ease);
}
.modal__controller_type_close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal__controller_type_close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__controller_type_close:hover:before,
.modal__controller_type_close:focus:before,
.modal__controller_type_close:hover:after,
.modal__controller_type_close:focus:after {
  background: var(--color-button-hover);
}
.modal__form {
  display: block;
  max-width: 350px;
  margin: 0 auto;
}
.modal_state_opened {
  display: block;
}
.modal_height_full .modal,
.modal_height_full__holder {
  height: 100%;
}
.modal_height_full__body {
  height: 100%;
}
.modal_width_tiny .modal,
.modal_width_tiny__holder {
  max-width: 360px;
}
.modal_width_thin .modal,
.modal_width_thin__holder {
  max-width: 540px;
}

.modifier-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100%;
  pointer-events: none;
}
.modifier-option__main {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  pointer-events: none;
}
.modifier-option__price {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 700;
  pointer-events: none;
}

.nav {
  background: #f5f5f5;
}
.nav__list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__item {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #b8b8b8;
}
.nav__link {
  display: block;
  height: 100%;
  padding: 10px 20px;
  color: inherit;
  text-decoration: none;
  background: transparent;
  -webkit-transition: all var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: all var(--trn-speed, .3s) var(--trn-ease, ease);
}
.nav__link:hover,
.nav__link:active,
.nav__link:focus {
  color: inherit;
  text-decoration: none;
  background: #e6e6e6;
}
.nav__link_state_active {
  background: #e6e6e6;
}
.nav_type_xs-horizontal {
  background: transparent;
}
@media only screen and (min-width: 1px) {
  .nav_type_xs-horizontal .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media only screen and (min-width: 1px) {
  .nav_type_xs-horizontal .nav__item {
    border-bottom: none;
  }
}
.nav_type_xs-horizontal .nav__link {
  background: transparent;
}
.nav_type_xs-horizontal .nav__link:hover,
.nav_type_xs-horizontal .nav__link:active,
.nav_type_xs-horizontal .nav__link:focus {
  color: #1eca9a;
  background: transparent;
}
.nav_type_xs-horizontal .nav__link.nav__link_state_active {
  color: #1eca9a;
  background: transparent;
}
.nav_type_s-horizontal {
  background: transparent;
}
@media only screen and (min-width: 480px) {
  .nav_type_s-horizontal .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media only screen and (min-width: 480px) {
  .nav_type_s-horizontal .nav__item {
    border-bottom: none;
  }
}
.nav_type_s-horizontal .nav__link {
  background: transparent;
}
.nav_type_s-horizontal .nav__link:hover,
.nav_type_s-horizontal .nav__link:active,
.nav_type_s-horizontal .nav__link:focus {
  color: #1eca9a;
  background: transparent;
}
.nav_type_s-horizontal .nav__link.nav__link_state_active {
  color: #1eca9a;
  background: transparent;
}
.nav_type_m-horizontal {
  background: transparent;
}
@media only screen and (min-width: 768px) {
  .nav_type_m-horizontal .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media only screen and (min-width: 768px) {
  .nav_type_m-horizontal .nav__item {
    border-bottom: none;
  }
}
.nav_type_m-horizontal .nav__link {
  background: transparent;
}
.nav_type_m-horizontal .nav__link:hover,
.nav_type_m-horizontal .nav__link:active,
.nav_type_m-horizontal .nav__link:focus {
  color: #1eca9a;
  background: transparent;
}
.nav_type_m-horizontal .nav__link.nav__link_state_active {
  color: #1eca9a;
  background: transparent;
}
.nav_type_l-horizontal {
  background: transparent;
}
@media only screen and (min-width: 1024px) {
  .nav_type_l-horizontal .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media only screen and (min-width: 1024px) {
  .nav_type_l-horizontal .nav__item {
    border-bottom: none;
  }
}
.nav_type_l-horizontal .nav__link {
  background: transparent;
}
.nav_type_l-horizontal .nav__link:hover,
.nav_type_l-horizontal .nav__link:active,
.nav_type_l-horizontal .nav__link:focus {
  color: #1eca9a;
  background: transparent;
}
.nav_type_l-horizontal .nav__link.nav__link_state_active {
  color: #1eca9a;
  background: transparent;
}
.nav_type_xl-horizontal {
  background: transparent;
}
@media only screen and (min-width: 1280px) {
  .nav_type_xl-horizontal .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media only screen and (min-width: 1280px) {
  .nav_type_xl-horizontal .nav__item {
    border-bottom: none;
  }
}
.nav_type_xl-horizontal .nav__link {
  background: transparent;
}
.nav_type_xl-horizontal .nav__link:hover,
.nav_type_xl-horizontal .nav__link:active,
.nav_type_xl-horizontal .nav__link:focus {
  color: #1eca9a;
  background: transparent;
}
.nav_type_xl-horizontal .nav__link.nav__link_state_active {
  color: #1eca9a;
  background: transparent;
}
.nav_type_xxl-horizontal {
  background: transparent;
}
@media only screen and (min-width: 1600px) {
  .nav_type_xxl-horizontal .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media only screen and (min-width: 1600px) {
  .nav_type_xxl-horizontal .nav__item {
    border-bottom: none;
  }
}
.nav_type_xxl-horizontal .nav__link {
  background: transparent;
}
.nav_type_xxl-horizontal .nav__link:hover,
.nav_type_xxl-horizontal .nav__link:active,
.nav_type_xxl-horizontal .nav__link:focus {
  color: #1eca9a;
  background: transparent;
}
.nav_type_xxl-horizontal .nav__link.nav__link_state_active {
  color: #1eca9a;
  background: transparent;
}
.nav_type_xxxl-horizontal {
  background: transparent;
}
@media only screen and (min-width: 1840px) {
  .nav_type_xxxl-horizontal .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media only screen and (min-width: 1840px) {
  .nav_type_xxxl-horizontal .nav__item {
    border-bottom: none;
  }
}
.nav_type_xxxl-horizontal .nav__link {
  background: transparent;
}
.nav_type_xxxl-horizontal .nav__link:hover,
.nav_type_xxxl-horizontal .nav__link:active,
.nav_type_xxxl-horizontal .nav__link:focus {
  color: #1eca9a;
  background: transparent;
}
.nav_type_xxxl-horizontal .nav__link.nav__link_state_active {
  color: #1eca9a;
  background: transparent;
}

.news {
  display: block;
}
.news__holder {
  display: block;
}
.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news__list-item {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 276px;
          flex: 0 0 276px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.opportunities {
  display: block;
}
.opportunities__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.opportunities__list-item {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.opportunity-snippet {
  display: block;
}
.opportunity-snippet__holder {
  display: block;
  width: 100%;
  min-width: 320px;
  max-width: 370px;
  margin: 0 auto;
}
.opportunity-snippet__header {
  display: block;
  margin: 0 0 30px 0;
}
.opportunity-snippet__header:last-child {
  margin-bottom: 0;
}
.opportunity-snippet__body {
  display: block;
  margin: 0 0 30px 0;
}
.opportunity-snippet__body:last-child {
  margin-bottom: 0;
}
.opportunity-snippet__footer {
  display: block;
  margin: 0 0 30px 0;
}
.opportunity-snippet__footer:last-child {
  margin-bottom: 0;
}
.opportunity-snippet__illustration {
  display: block;
  width: 100%;
  max-width: 48px;
  height: auto;
  aspect-ratio: 1/1;
}
@media only screen and (min-width: 480px) {
  .opportunity-snippet__illustration {
    max-width: 52px;
  }
}
@media only screen and (min-width: 768px) {
  .opportunity-snippet__illustration {
    max-width: 54px;
  }
}
@media only screen and (min-width: 1024px) {
  .opportunity-snippet__illustration {
    max-width: 56px;
  }
}
@media only screen and (min-width: 1280px) {
  .opportunity-snippet__illustration {
    max-width: 58px;
  }
}
.opportunity-snippet__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.opportunity-snippet__icon {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--color-main);
}
.opportunity-snippet__title {
  display: block;
}
.opportunity-snippet__title .title {
  margin-bottom: 0.25em;
}
.opportunity-snippet__description {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.666666666666667;
}
@media only screen and (min-width: 480px) {
  .opportunity-snippet__description {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .opportunity-snippet__description {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .opportunity-snippet__description {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1280px) {
  .opportunity-snippet__description {
    font-size: 18px;
  }
}

.page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  color: var(--color-font-def, #111);
  background: var(--color-bg, #fff);
}
.page__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page__header {
  position: relative;
  z-index: 2;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.page__body {
  display: block;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.page__section {
  display: block;
}
.page__full-image {
  --margin-bottom: 35px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.page__full-image:last-child {
  --margin-bottom: 0;
}
.page__footer {
  position: relative;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.page__left-filter {
  display: block;
}
.page__left-filter .section__header {
  padding-right: 0;
  padding-left: 0;
}
.page__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
  width: 100%;
  height: 100%;
  font-size: 0;
  cursor: pointer;
  background: rgba(0,0,0,0.62);
}
.page__mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-width: 320px;
  max-width: 375px;
  height: 100vh;
  background: var(--color-odd, #fff);
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: -webkit-transform var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: transform var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: transform var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-transform var(--trn-speed, .3s) var(--trn-ease, ease);
}
.page_state_modal-opened {
  position: relative;
  overflow: hidden;
}
.page_state_nav-opened {
  position: relative;
  overflow: hidden;
}
.page_state_nav-opened .page__overlay {
  display: block;
}
.page_state_nav-opened .page__mobile-nav {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.pagination {
  display: block;
  overflow: hidden;
}
.pagination__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.pagination__result-counter {
  display: block;
  text-align: center;
}
.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination__list-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 32px;
  min-height: 32px;
  padding: 5px;
  color: var(--color-font-def);
  line-height: 1.2;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 6px;
}
.pagination__control[href] {
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--color-button);
  border: 1px solid var(--color-button);
  -webkit-transition: all var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: all var(--trn-speed, .3s) var(--trn-ease, ease);
}
.pagination__control[href]:hover,
.pagination__control[href]:active,
.pagination__control[href]:focus {
  color: var(--color-white);
  background: var(--color-main);
  border-color: var(--color-main);
}
.pagination__dots {
  display: block;
  min-width: 25px;
  height: 32px;
  padding: 0 5px;
  color: pgn-color;
  font-weight: 400;
  line-height: 32px;
}
.pagination_align_left .pagination__list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.pagination_align_center .pagination__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination_align_right .pagination__list {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (min-width: 1px) {
  .pagination_align_xs-left .pagination__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (min-width: 1px) {
  .pagination_align_xs-center .pagination__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 1px) {
  .pagination_align_xs-right .pagination__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 480px) {
  .pagination_align_s-left .pagination__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (min-width: 480px) {
  .pagination_align_s-center .pagination__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 480px) {
  .pagination_align_s-right .pagination__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .pagination_align_m-left .pagination__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (min-width: 768px) {
  .pagination_align_m-center .pagination__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .pagination_align_m-right .pagination__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  .pagination_align_l-left .pagination__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (min-width: 1024px) {
  .pagination_align_l-center .pagination__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 1024px) {
  .pagination_align_l-right .pagination__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1280px) {
  .pagination_align_xl-left .pagination__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (min-width: 1280px) {
  .pagination_align_xl-center .pagination__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 1280px) {
  .pagination_align_xl-right .pagination__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1600px) {
  .pagination_align_xxl-left .pagination__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (min-width: 1600px) {
  .pagination_align_xxl-center .pagination__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 1600px) {
  .pagination_align_xxl-right .pagination__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1840px) {
  .pagination_align_xxxl-left .pagination__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (min-width: 1840px) {
  .pagination_align_xxxl-center .pagination__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 1840px) {
  .pagination_align_xxxl-right .pagination__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.partner-block {
  display: block;
}
.partner-block__holder {
  display: block;
  padding: 55px;
  border-radius: 30px;
  -webkit-box-shadow: 0 5px 45.5px 4.5px rgba(0,0,0,0.05);
          box-shadow: 0 5px 45.5px 4.5px rgba(0,0,0,0.05);
}
.partner-block__photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 1024px) {
  .partner-block__photos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.partner-block__photo {
  display: block;
  -ms-flex-item-align: center;
      align-self: center;
  width: 100%;
  max-width: 234px;
  height: auto;
  aspect-ratio: 234/215;
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 20px;
}
.partner-block__header {
  display: block;
  margin: 0 auto 30px;
}
.partner-block__title {
  display: block;
  margin: 0 auto 0.25em;
  padding: 0;
  font-family: var(--font-family-header);
  font-size: 38px;
  font-weight: 700;
}
.partner-block__title:last-child {
  margin-bottom: 0;
}
.partner-block__sub-title {
  display: block;
  margin: 0 auto 0.25em;
  padding: 0;
  font-size: 24px;
  font-weight: 300;
}
.partner-block__sub-title:last-child {
  margin-bottom: 0;
}
.partner-block__logo-holder {
  position: relative;
  display: block;
  width: 100%;
  max-width: 149px;
  height: auto;
  aspect-ratio: 149/76;
}
.partner-block__logo {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.partner-block__description {
  display: block;
  margin: 0 auto 45px;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
}
.partner-block__description:last-child {
  margin-bottom: 0;
}
.partner-block__scopes {
  display: block;
  -webkit-columns: 330px;
     -moz-columns: 330px;
          columns: 330px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin: 0 auto 45px;
  padding: 0;
  list-style: none;
}
.partner-block__scopes:last-child {
  margin-bottom: 0;
}
.partner-block__scope {
  position: relative;
  display: block;
  margin: 0 auto 15px;
  padding: 0;
  padding-left: 2em;
  list-style: none;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.15;
}
.partner-block__scope:before {
  content: '';
  position: absolute;
  top: 0.575em;
  left: 0;
  display: block;
  width: 0.9em;
  aspect-ratio: 1/1;
  background: url("/images/partner-block/marker.png") no-repeat center center/contain;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.partner-block__scope:last-child {
  margin-bottom: 0;
}
.partner-block__countries {
  display: block;
  padding: 30px;
  padding-bottom: 15px;
  background: #f7f7f7;
  border-radius: 20px;
}

.partner-snippet {
  display: block;
  max-width: 435px;
  height: 100%;
  margin: 0 auto;
}
.partner-snippet__holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100%;
  padding: clamp(15px, 6.896551724137931%, 30px);
  background: transparent;
  border: 1px solid var(--color-button-border);
  -webkit-transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: border-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.partner-snippet__holder:before,
.partner-snippet__holder:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1px solid var(--color-button-border-hover);
  will-change: width height;
  -webkit-transition: width var(--trn-speed, .3s) var(--trn-ease, ease), height var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: width var(--trn-speed, .3s) var(--trn-ease, ease), height var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.partner-snippet__holder:before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.partner-snippet__holder:after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}
.partner-snippet__holder[href] {
  text-decoration: none;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-box-shadow var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-box-shadow var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), box-shadow var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), box-shadow var(--trn-speed, .3s) var(--trn-ease, ease), -webkit-box-shadow var(--trn-speed, .3s) var(--trn-ease, ease);
}
.partner-snippet__holder[href]:hover,
.partner-snippet__holder[href]:focus,
.partner-snippet__holder[href]:active {
  color: var(--color-font-def);
  background-color: var(--color-button-hover);
  border-color: var(--color-button-border);
}
.partner-snippet__holder[href]:hover:before,
.partner-snippet__holder[href]:focus:before,
.partner-snippet__holder[href]:active:before,
.partner-snippet__holder[href]:hover:after,
.partner-snippet__holder[href]:focus:after,
.partner-snippet__holder[href]:active:after {
  width: calc(100% + 1px);
  height: calc(100% + 1px);
}
.partner-snippet__holder[href]:active {
  color: var(--color-main);
}
.partner-snippet__holder[href]:active:before,
.partner-snippet__holder[href]:active:after {
  border-color: var(--color-main);
}
.partner-snippet__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0;
}
.partner-snippet__illustration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  aspect-ratio: 280/96;
  font-size: 0;
}
.partner-snippet__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.partner-snippet__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.partner-snippet__title {
  display: block;
  margin: 0 auto var(--margin-bottom);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.partner-snippet__title:last-child {
  --margin-bottom: 0;
}

.partners {
  display: block;
}
.partners__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  margin: 0 0 clamp(40px, 4.444444444444445%, 80px);
}
@media only screen and (min-width: 1024px) {
  .partners__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.partners__header-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
.partners__header-cell {
  display: block;
}
.partners__mini-title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 9px 38px;
  color: var(--color-main);
  font-family: var(--font-family-default);
  font-size: var(--min-header--font-size);
  font-weight: var(--min-header--font-weight);
  line-height: var(--min-header--line-height);
  border: 1px solid rgba(184,182,145,0.2);
}
.partners__mini-title:before,
.partners__mini-title:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1px solid var(--color-main);
}
.partners__mini-title:before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.partners__mini-title:after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}
.partners__title {
  display: block;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: var(--header--font-size);
  font-weight: var(--header--font-weight);
  line-height: var(--header--line-height);
}
.partners__title strong {
  color: var(--color-main);
  font-weight: var(--header--font-weight);
}
@media only screen and (min-width: 768px) {
  .partners__title {
    max-width: 890px;
  }
}
.partners__description {
  display: block;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
}
.partners__list {
  --margin-bottom: var(--gap);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 0 0 var(--margin-bottom);
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 480px) {
  .partners__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .partners__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .partners__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.partners__list:last-child {
  --margin-bottom: 0;
}
.partners__list-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.partners__list-item_size_1 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.partners__list-item_size_2 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.partners__list-item_size_3 {
  -ms-flex-preferred-size: 33.333333333333336%;
      flex-basis: 33.333333333333336%;
}
.partners__list-item_size_4 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
.partners__list-item_size_5 {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}
.partners__list-item_size_6 {
  -ms-flex-preferred-size: 16.666666666666668%;
      flex-basis: 16.666666666666668%;
}
.partners__list-item_size_7 {
  -ms-flex-preferred-size: 14.285714285714286%;
      flex-basis: 14.285714285714286%;
}
.partners__list-item_size_8 {
  -ms-flex-preferred-size: 12.5%;
      flex-basis: 12.5%;
}
.partners__list-item_size_9 {
  -ms-flex-preferred-size: 11.11111111111111%;
      flex-basis: 11.11111111111111%;
}
.partners__list-item_size_10 {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
}
.partners__list-item_size_11 {
  -ms-flex-preferred-size: 9.090909090909092%;
      flex-basis: 9.090909090909092%;
}
.partners__list-item_size_12 {
  -ms-flex-preferred-size: 8.333333333333334%;
      flex-basis: 8.333333333333334%;
}
@media only screen and (min-width: 1px) {
  .partners__list-item_size_xs-1 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .partners__list-item_size_xs-2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .partners__list-item_size_xs-3 {
    -ms-flex-preferred-size: 33.333333333333336%;
        flex-basis: 33.333333333333336%;
  }
  .partners__list-item_size_xs-4 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .partners__list-item_size_xs-5 {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .partners__list-item_size_xs-6 {
    -ms-flex-preferred-size: 16.666666666666668%;
        flex-basis: 16.666666666666668%;
  }
  .partners__list-item_size_xs-7 {
    -ms-flex-preferred-size: 14.285714285714286%;
        flex-basis: 14.285714285714286%;
  }
  .partners__list-item_size_xs-8 {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
  .partners__list-item_size_xs-9 {
    -ms-flex-preferred-size: 11.11111111111111%;
        flex-basis: 11.11111111111111%;
  }
  .partners__list-item_size_xs-10 {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
  }
  .partners__list-item_size_xs-11 {
    -ms-flex-preferred-size: 9.090909090909092%;
        flex-basis: 9.090909090909092%;
  }
  .partners__list-item_size_xs-12 {
    -ms-flex-preferred-size: 8.333333333333334%;
        flex-basis: 8.333333333333334%;
  }
}
@media only screen and (min-width: 480px) {
  .partners__list-item_size_s-1 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .partners__list-item_size_s-2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .partners__list-item_size_s-3 {
    -ms-flex-preferred-size: 33.333333333333336%;
        flex-basis: 33.333333333333336%;
  }
  .partners__list-item_size_s-4 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .partners__list-item_size_s-5 {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .partners__list-item_size_s-6 {
    -ms-flex-preferred-size: 16.666666666666668%;
        flex-basis: 16.666666666666668%;
  }
  .partners__list-item_size_s-7 {
    -ms-flex-preferred-size: 14.285714285714286%;
        flex-basis: 14.285714285714286%;
  }
  .partners__list-item_size_s-8 {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
  .partners__list-item_size_s-9 {
    -ms-flex-preferred-size: 11.11111111111111%;
        flex-basis: 11.11111111111111%;
  }
  .partners__list-item_size_s-10 {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
  }
  .partners__list-item_size_s-11 {
    -ms-flex-preferred-size: 9.090909090909092%;
        flex-basis: 9.090909090909092%;
  }
  .partners__list-item_size_s-12 {
    -ms-flex-preferred-size: 8.333333333333334%;
        flex-basis: 8.333333333333334%;
  }
}
@media only screen and (min-width: 768px) {
  .partners__list-item_size_m-1 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .partners__list-item_size_m-2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .partners__list-item_size_m-3 {
    -ms-flex-preferred-size: 33.333333333333336%;
        flex-basis: 33.333333333333336%;
  }
  .partners__list-item_size_m-4 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .partners__list-item_size_m-5 {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .partners__list-item_size_m-6 {
    -ms-flex-preferred-size: 16.666666666666668%;
        flex-basis: 16.666666666666668%;
  }
  .partners__list-item_size_m-7 {
    -ms-flex-preferred-size: 14.285714285714286%;
        flex-basis: 14.285714285714286%;
  }
  .partners__list-item_size_m-8 {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
  .partners__list-item_size_m-9 {
    -ms-flex-preferred-size: 11.11111111111111%;
        flex-basis: 11.11111111111111%;
  }
  .partners__list-item_size_m-10 {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
  }
  .partners__list-item_size_m-11 {
    -ms-flex-preferred-size: 9.090909090909092%;
        flex-basis: 9.090909090909092%;
  }
  .partners__list-item_size_m-12 {
    -ms-flex-preferred-size: 8.333333333333334%;
        flex-basis: 8.333333333333334%;
  }
}
@media only screen and (min-width: 1024px) {
  .partners__list-item_size_l-1 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .partners__list-item_size_l-2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .partners__list-item_size_l-3 {
    -ms-flex-preferred-size: 33.333333333333336%;
        flex-basis: 33.333333333333336%;
  }
  .partners__list-item_size_l-4 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .partners__list-item_size_l-5 {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .partners__list-item_size_l-6 {
    -ms-flex-preferred-size: 16.666666666666668%;
        flex-basis: 16.666666666666668%;
  }
  .partners__list-item_size_l-7 {
    -ms-flex-preferred-size: 14.285714285714286%;
        flex-basis: 14.285714285714286%;
  }
  .partners__list-item_size_l-8 {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
  .partners__list-item_size_l-9 {
    -ms-flex-preferred-size: 11.11111111111111%;
        flex-basis: 11.11111111111111%;
  }
  .partners__list-item_size_l-10 {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
  }
  .partners__list-item_size_l-11 {
    -ms-flex-preferred-size: 9.090909090909092%;
        flex-basis: 9.090909090909092%;
  }
  .partners__list-item_size_l-12 {
    -ms-flex-preferred-size: 8.333333333333334%;
        flex-basis: 8.333333333333334%;
  }
}
@media only screen and (min-width: 1280px) {
  .partners__list-item_size_xl-1 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .partners__list-item_size_xl-2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .partners__list-item_size_xl-3 {
    -ms-flex-preferred-size: 33.333333333333336%;
        flex-basis: 33.333333333333336%;
  }
  .partners__list-item_size_xl-4 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .partners__list-item_size_xl-5 {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .partners__list-item_size_xl-6 {
    -ms-flex-preferred-size: 16.666666666666668%;
        flex-basis: 16.666666666666668%;
  }
  .partners__list-item_size_xl-7 {
    -ms-flex-preferred-size: 14.285714285714286%;
        flex-basis: 14.285714285714286%;
  }
  .partners__list-item_size_xl-8 {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
  .partners__list-item_size_xl-9 {
    -ms-flex-preferred-size: 11.11111111111111%;
        flex-basis: 11.11111111111111%;
  }
  .partners__list-item_size_xl-10 {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
  }
  .partners__list-item_size_xl-11 {
    -ms-flex-preferred-size: 9.090909090909092%;
        flex-basis: 9.090909090909092%;
  }
  .partners__list-item_size_xl-12 {
    -ms-flex-preferred-size: 8.333333333333334%;
        flex-basis: 8.333333333333334%;
  }
}
@media only screen and (min-width: 1600px) {
  .partners__list-item_size_xxl-1 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .partners__list-item_size_xxl-2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .partners__list-item_size_xxl-3 {
    -ms-flex-preferred-size: 33.333333333333336%;
        flex-basis: 33.333333333333336%;
  }
  .partners__list-item_size_xxl-4 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .partners__list-item_size_xxl-5 {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .partners__list-item_size_xxl-6 {
    -ms-flex-preferred-size: 16.666666666666668%;
        flex-basis: 16.666666666666668%;
  }
  .partners__list-item_size_xxl-7 {
    -ms-flex-preferred-size: 14.285714285714286%;
        flex-basis: 14.285714285714286%;
  }
  .partners__list-item_size_xxl-8 {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
  .partners__list-item_size_xxl-9 {
    -ms-flex-preferred-size: 11.11111111111111%;
        flex-basis: 11.11111111111111%;
  }
  .partners__list-item_size_xxl-10 {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
  }
  .partners__list-item_size_xxl-11 {
    -ms-flex-preferred-size: 9.090909090909092%;
        flex-basis: 9.090909090909092%;
  }
  .partners__list-item_size_xxl-12 {
    -ms-flex-preferred-size: 8.333333333333334%;
        flex-basis: 8.333333333333334%;
  }
}
@media only screen and (min-width: 1840px) {
  .partners__list-item_size_xxxl-1 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .partners__list-item_size_xxxl-2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .partners__list-item_size_xxxl-3 {
    -ms-flex-preferred-size: 33.333333333333336%;
        flex-basis: 33.333333333333336%;
  }
  .partners__list-item_size_xxxl-4 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .partners__list-item_size_xxxl-5 {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .partners__list-item_size_xxxl-6 {
    -ms-flex-preferred-size: 16.666666666666668%;
        flex-basis: 16.666666666666668%;
  }
  .partners__list-item_size_xxxl-7 {
    -ms-flex-preferred-size: 14.285714285714286%;
        flex-basis: 14.285714285714286%;
  }
  .partners__list-item_size_xxxl-8 {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
  .partners__list-item_size_xxxl-9 {
    -ms-flex-preferred-size: 11.11111111111111%;
        flex-basis: 11.11111111111111%;
  }
  .partners__list-item_size_xxxl-10 {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
  }
  .partners__list-item_size_xxxl-11 {
    -ms-flex-preferred-size: 9.090909090909092%;
        flex-basis: 9.090909090909092%;
  }
  .partners__list-item_size_xxxl-12 {
    -ms-flex-preferred-size: 8.333333333333334%;
        flex-basis: 8.333333333333334%;
  }
}
.partners__controls {
  --margin-bottom: 45px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.partners__controls:last-child {
  --margin-bottom: 0;
}

.photo-snippet {
  display: block;
}

.portfolio {
  display: block;
}
.portfolio__list {
  --margin-bottom: var(--gap);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 var(--margin-bottom);
  padding: 0;
  list-style: none;
}
.portfolio__list:last-child {
  --margin-bottom: 0;
}
.portfolio__list-item {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.portfolio__controls {
  --margin-bottom: 45px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.portfolio__controls:last-child {
  --margin-bottom: 0;
}
.portfolio__navigation {
  --margin-bottom: 45px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.portfolio__navigation:last-child {
  --margin-bottom: 0;
}
.portfolio__pagination {
  --margin-bottom: 15px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.portfolio__pagination:last-child {
  --margin-bottom: 0;
}
.portfolio__page-counter {
  --margin-bottom: 15px;
  display: block;
  margin: 0 0 var(--margin-bottom);
  color: var(--color-white);
  font-size: 16px;
  text-align: center;
}
.portfolio__page-counter:last-child {
  --margin-bottom: 0;
}

.product-snippet {
  display: block;
}
.product-snippet__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  width: 100%;
  min-width: 320px;
  max-width: 386px;
  min-height: 100%;
  margin: 0 auto;
}
.product-snippet__holder[href] {
  text-decoration: none;
}
.product-snippet__header {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
.product-snippet__header {
  display: block;
}
.product-snippet__illustration {
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 386/483;
}
.product-snippet__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-snippet__image_fit_contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.product-snippet__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
}
.product-snippet__body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-snippet__title {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  padding: 0;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.333333333333333;
  text-transform: uppercase;
}
.product-snippet__price-text {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.5;
}
.product-snippet__footer {
  --margin-bottom: 15px;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 0 var(--margin-bottom);
  padding: 0 15px 25px;
  pointer-events: none;
  background: #fff;
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.product-snippet__footer:last-child {
  --margin-bottom: 0;
}
.product-snippet__description {
  display: block;
  margin: 0;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  opacity: 0.5;
}
.product-snippet__controls {
  display: block;
}

.products {
  display: block;
}
.products__list {
  --margin-bottom: var(--gap);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 var(--margin-bottom);
  padding: 0;
  list-style: none;
}
.products__list:last-child {
  --margin-bottom: 0;
}
.products__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 386px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.products__list-item .product-snippet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.products__controls {
  --margin-bottom: 45px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.products__controls:last-child {
  --margin-bottom: 0;
}
.products__navigation {
  --margin-bottom: 45px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.products__navigation:last-child {
  --margin-bottom: 0;
}
.products__pagination {
  --margin-bottom: 15px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.products__pagination:last-child {
  --margin-bottom: 0;
}
.products__page-counter {
  --margin-bottom: 15px;
  display: block;
  margin: 0 0 var(--margin-bottom);
  color: var(--color-white);
  font-size: 16px;
  text-align: center;
}
.products__page-counter:last-child {
  --margin-bottom: 0;
}

.project-snippet {
  display: block;
}
.project-snippet__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 300px;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .project-snippet__holder {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.project-snippet__header {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .project-snippet__header {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    width: 50%;
  }
}
.project-snippet__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 900/582;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-snippet__body {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .project-snippet__body {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    width: 50%;
  }
}
.project-snippet__body-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding: max(4.444444444444445%, 20px);
  background: var(--color-dark);
}
.project-snippet__body-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.project-snippet__body-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.project-snippet__title {
  display: block;
  margin: 0;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1875;
}
.project-snippet__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.project-snippet__description {
  display: block;
  margin: 0;
  padding: 0 0 20px;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid rgba(43,43,43,0.2);
  opacity: 0.8;
}
.project-snippet__description:last-child {
  border-bottom: none;
}
.project-snippet__carousel {
  display: block;
  margin: 0;
}
.project-snippet__agenda {
  display: block;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
}
.project-snippet__agenda-point {
  position: relative;
  display: block;
  padding-left: 40px;
}

.projects {
  display: block;
}
.projects__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 clamp(30px, 2.222222222222222%, 40px);
}
.projects__header:last-child {
  margin-bottom: 0;
}
.projects__mini-title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 9px 38px;
  color: var(--color-main);
  font-family: var(--font-family-default);
  font-size: var(--min-header--font-size);
  font-weight: var(--min-header--font-weight);
  line-height: var(--min-header--line-height);
  border: 1px solid rgba(184,182,145,0.2);
}
.projects__mini-title:before,
.projects__mini-title:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1px solid var(--color-main);
}
.projects__mini-title:before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.projects__mini-title:after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}
.projects__title {
  display: block;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: var(--header--font-size);
  font-weight: var(--header--font-weight);
  line-height: var(--header--line-height);
}
.projects__title strong {
  color: var(--color-main);
  font-weight: var(--header--font-weight);
}
@media only screen and (min-width: 768px) {
  .projects__title {
    max-width: 890px;
  }
}
.projects__list {
  --margin-bottom: calc(var(--padding) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 clamp(15px, var(--margin-bottom), 40px);
  padding: 0;
  list-style: none;
}
.projects__list:last-child {
  --margin-bottom: 0;
}
.projects__list-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.projects__list-item:nth-child(n+4) {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .projects__list-item:nth-child(odd) .project-snippet__header {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .projects__list-item:nth-child(odd) .project-snippet__body {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .projects__list-item:nth-child(even) .project-snippet__header {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .projects__list-item:nth-child(even) .project-snippet__body {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.projects__list-item_state_hidden {
  display: none;
}
.projects__controls {
  --margin-bottom: 45px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.projects__controls:last-child {
  --margin-bottom: 0;
}
.projects_state_opened .projects__list-item:nth-child(n+4) {
  display: block;
}

.promo {
  display: block;
}
.promo__text {
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.666666666666667;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .promo__text {
    font-size: 18px;
  }
}

.range-input {
  display: block;
}

.reason-snippet {
  display: block;
}
.reason-snippet__holder {
  display: block;
  min-width: 290px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .reason-snippet__holder {
    min-width: 350px;
  }
}
@media only screen and (min-width: 1024px) {
  .reason-snippet__holder {
    min-width: 370px;
  }
}
.reason-snippet__header {
  --margin-bottom: 30px;
  display: block;
  margin: 0 auto var(--margin-bottom);
  font-size: 0;
}
@media only screen and (min-width: 768px) {
  .reason-snippet__header {
    --margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .reason-snippet__header {
    --margin-bottom: 50px;
  }
}
.reason-snippet__header:last-child {
  margin-bottom: 0;
}
.reason-snippet__illustration {
  display: block;
  max-width: 100px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 768px) {
  .reason-snippet__illustration {
    max-width: 120px;
  }
}
@media only screen and (min-width: 1024px) {
  .reason-snippet__illustration {
    max-width: 150px;
  }
}
.reason-snippet__body {
  display: block;
  margin: 0 auto 50px;
}
.reason-snippet__body:last-child {
  margin-bottom: 0;
}
.reason-snippet__title {
  display: block;
  max-width: 240px;
  margin: 0 auto 50px;
}
.reason-snippet__title:last-child {
  margin-bottom: 0;
}
.reason-snippet__title .title {
  margin-bottom: 0;
}

.reasons {
  display: block;
}
.reasons__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 70px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.reasons__list-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-snippet {
  display: block;
  height: 100%;
}
.review-snippet__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 587px;
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(15px, 5.110732538330494%, 30px);
  background: var(--color-white);
}
.review-snippet__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
.review-snippet__header-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.review-snippet__avatar {
  display: block;
  width: 80px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.review-snippet__name {
  display: block;
  color: var(--color-font-def);
  font-family: var(--font-family-default);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.review-snippet__affiliation {
  display: block;
  color: var(--color-font-def);
  font-family: var(--font-family-default);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.428571428571429;
  opacity: 0.6;
}
.review-snippet__company {
  display: inline;
}
.review-snippet__divider {
  display: inline;
}
.review-snippet__position {
  display: inline;
}
.review-snippet__body {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.review-snippet__text {
  display: block;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
}
.review-snippet__footer {
  display: block;
  padding: 20px 0 0;
  border-top: 1px solid rgba(30,30,30,0.2);
}
.review-snippet__date {
  display: block;
  color: var(--color-font-def);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.428571428571429;
  opacity: 0.6;
}

.reviews {
  display: block;
}
.reviews__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 clamp(30px, 2.222222222222222%, 40px);
}
.reviews__header:last-child {
  margin-bottom: 0;
}
.reviews__mini-title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 9px 38px;
  color: var(--color-main);
  font-family: var(--font-family-default);
  font-size: var(--min-header--font-size);
  font-weight: var(--min-header--font-weight);
  line-height: var(--min-header--line-height);
  border: 1px solid rgba(184,182,145,0.2);
}
.reviews__mini-title:before,
.reviews__mini-title:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1px solid var(--color-main);
}
.reviews__mini-title:before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.reviews__mini-title:after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}
.reviews__title {
  display: block;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: var(--header--font-size);
  font-weight: var(--header--font-weight);
  line-height: var(--header--line-height);
}
.reviews__title strong {
  color: var(--color-main);
  font-weight: var(--header--font-weight);
}
@media only screen and (min-width: 768px) {
  .reviews__title {
    max-width: 890px;
  }
}
.reviews__body {
  display: block;
}
.reviews__footer {
  display: block;
}

.reward-snippet {
  display: block;
}
.reward-snippet__holder {
  display: block;
  width: 100%;
  max-width: 270px;
  min-height: 100%;
  margin: 0 auto;
}
.reward-snippet__header {
  --margin-bottom: 40px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.reward-snippet__header:last-child {
  --margin-bottom: 0;
}
.reward-snippet__illustration {
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.reward-snippet__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.reward-snippet__body {
  --margin-bottom: 30px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.reward-snippet__body:last-child {
  --margin-bottom: 0;
}
.reward-snippet__title {
  --margin-bottom: 15px;
  display: block;
  margin: 0 0 var(--margin-bottom);
  padding: 0;
  color: var(--color-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.111111111111111;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .reward-snippet__title {
    font-size: 18px;
  }
}
.reward-snippet__title:last-child {
  --margin-bottom: 0;
}
.reward-snippet__description {
  --margin-bottom: 1em;
  display: block;
  margin: 0 0 var(--margin-bottom);
  padding: 0;
  color: var(--color-font-def);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.375;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .reward-snippet__description {
    font-size: 16px;
  }
}
.reward-snippet__description:last-child {
  --margin-bottom: 0;
}
.reward-snippet__footer {
  --margin-bottom: 15px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.reward-snippet__footer:last-child {
  --margin-bottom: 0;
}

.rewards {
  display: block;
}
.rewards__list {
  --margin-bottom: var(--gap);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 var(--margin-bottom);
  padding: 0;
  list-style: none;
}
.rewards__list:last-child {
  --margin-bottom: 0;
}
.rewards__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rewards__controls {
  --margin-bottom: 45px;
  display: block;
  margin: 0 0 var(--margin-bottom);
}
.rewards__controls:last-child {
  --margin-bottom: 0;
}

.search-form {
  position: relative;
  display: block;
}
.search-form__input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 40px 0 15px;
  color: #000;
  font-size: 14px;
  line-height: 40px;
  background: #fff;
  border: 1px solid #a6a6a6;
  border-radius: 4px;
  outline: none;
}
.search-form__input::-webkit-input-placeholder {
  color: 14px;
  font-family: inherit;
  font-size: #adadad;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.search-form__input::-moz-placeholder {
  color: 14px;
  font-family: inherit;
  font-size: #adadad;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.search-form__input:-ms-input-placeholder {
  color: 14px;
  font-family: inherit;
  font-size: #adadad;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.search-form__input::-ms-input-placeholder {
  color: 14px;
  font-family: inherit;
  font-size: #adadad;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
.search-form__input::placeholder {
  color: 14px;
  font-family: inherit;
  font-size: #adadad;
  font-weight: 400;
  line-height: inherit;
  opacity: 0.5;
}
@media only screen and (min-width: 1024px) {
  .search-form__input {
    height: 50px;
    padding: 0 60px 0 20px;
    font-size: 16px;
    line-height: 50px;
  }
  .search-form__input::-webkit-input-placeholder {
    color: 16px;
    font-family: inherit;
    font-size: #adadad;
    font-weight: 400;
    line-height: inherit;
    opacity: 0.5;
  }
  .search-form__input::-moz-placeholder {
    color: 16px;
    font-family: inherit;
    font-size: #adadad;
    font-weight: 400;
    line-height: inherit;
    opacity: 0.5;
  }
  .search-form__input:-ms-input-placeholder {
    color: 16px;
    font-family: inherit;
    font-size: #adadad;
    font-weight: 400;
    line-height: inherit;
    opacity: 0.5;
  }
  .search-form__input::-ms-input-placeholder {
    color: 16px;
    font-family: inherit;
    font-size: #adadad;
    font-weight: 400;
    line-height: inherit;
    opacity: 0.5;
  }
  .search-form__input::placeholder {
    color: 16px;
    font-family: inherit;
    font-size: #adadad;
    font-weight: 400;
    line-height: inherit;
    opacity: 0.5;
  }
}
.search-form__input:focus {
  border-color: #0dacef;
}
.search-form__control {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
}
.search-form__button {
  display: block;
  width: 42px;
  height: 42px;
  font-size: 0;
  background: transparent;
  border: none;
  outline: none;
}
@media only screen and (min-width: 1024px) {
  .search-form__button {
    width: 50px;
    height: 50px;
  }
}
.search-form__button:focus .search-form__icon {
  fill: #0dacef;
}
.search-form__icon {
  width: 16px;
  height: 16px;
  fill: #656565;
}
@media only screen and (min-width: 1024px) {
  .search-form__icon {
    width: 20px;
    height: 20px;
  }
}
.search-form__hints {
  position: absolute;
  top: 100%;
  right: 4px;
  left: 4px;
  z-index: 1;
  display: none;
  overflow-y: auto;
  max-height: 400px;
  background: #fff;
  -webkit-box-shadow: 0 4px 10px rgba(0,0,0,0.25);
          box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
@media only screen and (min-width: 1024px) {
  .search-form__hints {
    max-height: 450px;
  }
}
.search-form__hints_state_open {
  display: block;
}

.section {
  display: block;
  padding: var(--padding) 0;
}
.section__header {
  margin: 0 0 calc(var(--gap) * 0.5);
  padding: 0 clamp(20px, 3.125%, 60px);
}
.section__header:last-child {
  margin-bottom: 0;
}
.section__header .title {
  margin-bottom: 0;
}
.section__title {
  display: block;
}
.section__content {
  display: block;
}
.section__group {
  display: block;
  margin: 0 0 calc(var(--gap) * 0.5);
  padding: 0;
}
.section__group:last-child {
  margin-bottom: 0;
}
.section_spacing_minus {
  position: relative;
  z-index: 1;
  margin: -50px 0 0 0;
  padding: 0;
}
.section_spacing_close {
  padding: 0;
}
.section_spacing_small {
  padding: calc(var(--padding) * 0.5) 0;
}
.section_spacing_big {
  padding: calc(var(--padding) * 1.5) 0;
}
.section_spacing_huge {
  padding: calc(var(--padding) * 2) 0;
}
.section_spacing_top-close {
  padding-top: 0;
}
.section_spacing_top-small {
  padding-top: calc(var(--padding) * 0.5);
}
.section_spacing_top-big {
  padding-top: calc(var(--padding) * 1.5);
}
.section_spacing_top-huge {
  padding-top: calc(var(--padding) * 2);
}
.section_spacing_bottom-close {
  padding-bottom: 0;
}
.section_spacing_bottom-small {
  padding-bottom: calc(var(--padding) * 0.5);
}
.section_spacing_bottom-big {
  padding-bottom: calc(var(--padding) * 1.5);
}
.section_spacing_bottom-huge {
  padding-bottom: calc(var(--padding) * 2);
}
.section_tspacing_close .section__header {
  margin-bottom: 0;
}
.section_tspacing_small .section__header {
  margin-bottom: 15px;
}
.section_tspacing_big .section__header {
  margin-bottom: calc(var(--padding) * 1.5);
}
.section_tspacing_top-close {
  padding-top: 0;
}
.section_tspacing_top-small {
  padding-top: calc(var(--padding) * 0.5);
}
.section_tspacing_top-big {
  padding-top: calc(var(--padding) * 1.5);
}
.section_tspacing_bottom-close {
  padding-bottom: 0;
}
.section_tspacing_bottom-small {
  padding-bottom: calc(var(--padding) * 0.5);
}
.section_tspacing_bottom-big {
  padding-bottom: calc(var(--padding) * 1.5);
}
.section_bg_custom {
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.section_bg_cover {
  background-size: cover;
}
.section_bg_contain {
  background-size: contain;
}
.section_bg_odd {
  position: relative;
  background-color: var(--color-odd);
}
.section_bg_even {
  position: relative;
  background-color: var(--color-even);
}
.section_bg_light {
  position: relative;
  background-color: #fbf8f2;
}
.section_bg_grad-w-g {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--color-white)), to(var(--color-grey)));
  background: linear-gradient(180deg, var(--color-white) 0, var(--color-grey) 100%);
}
.section_bg_grad-g-w {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, var(--color-white)), to(var(--color-grey)));
  background: linear-gradient(0deg, var(--color-white) 0, var(--color-grey) 100%);
}
.section_text_white {
  color: var(--color-light);
}
.section_text_white .input {
  --color-label: var(--color-light);
  --color-background: var(--color-white);
}
.section_text_white .button {
  color: var(--color-font-def);
  background-color: var(--color-button-hover);
  border-color: var(--color-button-border-hover);
}
.section_text_white .button:hover,
.section_text_white .button:focus,
.section_text_white .button:active {
  color: var(--color-white);
  background-color: var(--color-button);
  border-color: var(--color-button-border);
}
.section_text_white .button:active {
  color: var(--color-font-def);
  border-color: var(--color-font-def);
}
.section_z-index_2 {
  z-index: 2;
}

.service-snippet {
  display: block;
  height: 100%;
}
.service-snippet__holder {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: clamp(15px, 2.222222222222222%, 40px);
  background-color: var(--color-even);
  background-size: cover;
  background-blend-mode: normal;
  -webkit-transition: background var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: background var(--trn-speed, .3s) var(--trn-ease, ease);
}
.service-snippet__holder[href] {
  color: inherit;
  text-decoration: none;
}
.service-snippet__holder:hover,
.service-snippet__holder:focus,
.service-snippet__holder:active {
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
}
.service-snippet__holder:hover .service-snippet__title,
.service-snippet__holder:focus .service-snippet__title,
.service-snippet__holder:active .service-snippet__title,
.service-snippet__holder:hover .service-snippet__description,
.service-snippet__holder:focus .service-snippet__description,
.service-snippet__holder:active .service-snippet__description {
  color: var(--color-white);
}
.service-snippet__holder:hover .service-snippet__bg-image,
.service-snippet__holder:focus .service-snippet__bg-image,
.service-snippet__holder:active .service-snippet__bg-image {
  opacity: 1;
}
.service-snippet__holder:hover .button,
.service-snippet__holder:focus .button,
.service-snippet__holder:active .button {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.2);
}
.service-snippet__holder:hover .button:before,
.service-snippet__holder:focus .button:before,
.service-snippet__holder:active .button:before,
.service-snippet__holder:hover .button:after,
.service-snippet__holder:focus .button:after,
.service-snippet__holder:active .button:after {
  border-color: #fff;
}
.service-snippet__holder:hover .button:active,
.service-snippet__holder:focus .button:active,
.service-snippet__holder:active .button:active {
  color: var(--color-main);
}
.service-snippet__holder:hover .button:active:before,
.service-snippet__holder:focus .button:active:before,
.service-snippet__holder:active .button:active:before,
.service-snippet__holder:hover .button:active:after,
.service-snippet__holder:focus .button:active:after,
.service-snippet__holder:active .button:active:after {
  border-color: var(--color-main);
}
.service-snippet__bg-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.service-snippet__bg-image:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  background-color: rgba(0,0,0,0.5);
}
.service-snippet__bg-image .image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-snippet__count {
  display: block;
  width: clamp(35px, 13.38888888888889%, 241px);
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1875;
  opacity: 0.4;
}
.service-snippet__title {
  display: block;
  width: clamp(425px, 41.05555555555556%, 739px);
  margin: 0;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1875;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.service-snippet__description {
  display: block;
  width: clamp(425px, 34.22222222222222%, 616px);
  margin: 0;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease), opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.service-snippet__controls {
  display: block;
  width: 64px;
}

.services {
  display: block;
}
.services__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 clamp(30px, 2.222222222222222%, 40px);
}
@media only screen and (min-width: 768px) {
  .services__header {
    display: grid;
    grid-template-columns: minmax(-webkit-min-content, 15.722222222222221%) auto;
    grid-template-columns: minmax(min-content, 15.722222222222221%) auto;
    gap: 20px;
  }
}
.services__header:last-child {
  margin-bottom: 0;
}
.services__mini-title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 9px 38px;
  color: var(--color-main);
  font-family: var(--font-family-default);
  font-size: var(--min-header--font-size);
  font-weight: var(--min-header--font-weight);
  line-height: var(--min-header--line-height);
  white-space: nowrap;
  border: 1px solid rgba(184,182,145,0.2);
}
.services__mini-title:before,
.services__mini-title:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1px solid var(--color-main);
}
.services__mini-title:before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.services__mini-title:after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}
.services__title {
  display: block;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: var(--header--font-size);
  font-weight: var(--header--font-weight);
  line-height: var(--header--line-height);
}
.services__title strong {
  color: var(--color-main);
  font-weight: var(--header--font-weight);
}
@media only screen and (min-width: 768px) {
  .services__title {
    max-width: 890px;
  }
}
.services__list {
  --margin-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(43,43,43,0.1);
}
.services__list_content_hide .services__list-item:nth-child(n+7) {
  display: none;
}
.services__list-item {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(43,43,43,0.1);
}
.services__list-item_size_big {
  -webkit-box-flex: 2;
      -ms-flex: 2 0 100%;
          flex: 2 0 100%;
}

.silhouette-snippet {
  display: block;
}
.silhouette-snippet__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  width: 100%;
  min-width: 320px;
  max-width: 480px;
  min-height: 100%;
  margin: 0 auto;
}
.silhouette-snippet__holder[href] {
  text-decoration: none;
}
.silhouette-snippet__header {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
.silhouette-snippet__header {
  display: block;
}
.silhouette-snippet__illustration {
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 480/640;
}
.silhouette-snippet__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.silhouette-snippet__image_fit_contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.silhouette-snippet__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 20px;
}
.silhouette-snippet__body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.silhouette-snippet__title {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  padding: 0;
  color: var(--color-font-def);
  font-family: var(--font-family-header);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.333333333333333;
  text-transform: uppercase;
}
.silhouette-snippet__badge {
  display: block;
  margin: 0;
  padding: 0 15px;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background: #efeeec;
}
.silhouette-snippet__description {
  display: block;
  margin: 0;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  opacity: 0.5;
}

.slider {
  display: block;
}
.slider__holder {
  display: block;
}
.slider__pagination-holder {
  position: relative;
  display: block;
}
.slider__navigation-holder {
  position: relative;
  display: block;
}
.slider__container {
  display: block;
}
.slider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider__slide {
  display: block;
  width: 100%;
  height: auto;
}
.slider__navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: none;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1500px;
  margin: 0;
  padding: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) {
  .slider__navigation {
    max-width: 1500px;
  }
}
.slider__navigation-button {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  height: 35px;
  fill: var(--color-grey);
  font-size: 0;
  cursor: pointer;
  pointer-events: auto;
  background: transparent;
  border: none;
  opacity: 1;
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease), fill var(--trn-speed, .3s) var(--trn-ease, ease), color var(--trn-speed, .3s) var(--trn-ease, ease), background var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease), fill var(--trn-speed, .3s) var(--trn-ease, ease), color var(--trn-speed, .3s) var(--trn-ease, ease), background var(--trn-speed, .3s) var(--trn-ease, ease);
}
.slider__navigation-button:hover,
.slider__navigation-button:focus {
  fill: var(--color-main);
}
.slider__navigation-button_state_disabled {
  pointer-events: none;
  opacity: 0.75;
}
.slider__navigation-button_state_disabled:hover,
.slider__navigation-button_state_disabled:focus {
  opacity: 0.75;
}
.slider__navigation-button_rotate_180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.slider__navigation-button-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  fill: inherit;
}
.slider__pagination {
  position: absolute;
  top: 50%;
  right: 9%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  max-width: 100%;
  pointer-events: none;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.slider__pagination-bullet {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  margin: 0;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  pointer-events: auto;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  outline: none;
  opacity: 0.5;
  -webkit-transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease), border-color var(--trn-speed, .3s) var(--trn-ease, ease), opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.slider__pagination-bullet:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(100% - 3px * 2);
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.slider__pagination-bullet:hover,
.slider__pagination-bullet:focus {
  background: #fff;
  opacity: 1;
}
.slider__pagination-bullet_state_active {
  background: transparent;
  border-color: #fff;
  opacity: 1;
}
.slider__pagination-bullet_state_active:before {
  opacity: 1;
}
.slider__pagination-bullet_state_active:hover,
.slider__pagination-bullet_state_active:focus {
  background: transparent;
  border-color: #fff;
  opacity: 1;
}
.slider__pagination-bullet_state_active:hover:before,
.slider__pagination-bullet_state_active:focus:before {
  opacity: 1;
}

.slogan {
  --font-size: 14px;
  display: block;
  font-size: var(--font-size, 14px);
  font-weight: 500;
}
.slogan__line {
  display: block;
  margin: 0;
  padding: 0;
}

.social-nav {
  display: block;
}
.social-nav__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 125.5px);
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
}
.social-nav__list-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 135.5px;
  aspect-ratio: 135.5/64;
  margin: 0;
  fill: var(--color-white);
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 0;
}
.social-nav__link[href] {
  text-decoration: none;
  outline: none;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease), fill var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), fill var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.social-nav__link[href]:hover,
.social-nav__link[href]:active,
.social-nav__link[href]:focus {
  fill: var(--color-main);
  color: var(--color-main);
  background: var(--color-white);
}
.social-nav__icon {
  display: block;
  width: 18px;
  fill: currentColor;
  aspect-ratio: 1/1;
}
.social-nav_align_left .social-nav__list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.social-nav_align_center .social-nav__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.social-nav_align_right .social-nav__list {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (min-width: 1px) {
  .social-nav_align_xs-left .social-nav__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .social-nav_align_xs-center .social-nav__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .social-nav_align_xs-right .social-nav__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 480px) {
  .social-nav_align_s-left .social-nav__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .social-nav_align_s-center .social-nav__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .social-nav_align_s-right .social-nav__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .social-nav_align_m-left .social-nav__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .social-nav_align_m-center .social-nav__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .social-nav_align_m-right .social-nav__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  .social-nav_align_l-left .social-nav__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .social-nav_align_l-center .social-nav__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .social-nav_align_l-right .social-nav__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1280px) {
  .social-nav_align_xl-left .social-nav__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .social-nav_align_xl-center .social-nav__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .social-nav_align_xl-right .social-nav__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1600px) {
  .social-nav_align_xxl-left .social-nav__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .social-nav_align_xxl-center .social-nav__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .social-nav_align_xxl-right .social-nav__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1840px) {
  .social-nav_align_xxxl-left .social-nav__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .social-nav_align_xxxl-center .social-nav__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .social-nav_align_xxxl-right .social-nav__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.stand-advantage-snippet {
  display: block;
}
.stand-advantage-snippet__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 45px;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .stand-advantage-snippet__holder {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.stand-advantage-snippet__header {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66px;
}
.stand-advantage-snippet__icon {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1/1;
  fill: var(--color-main);
}
.stand-advantage-snippet__body {
  display: block;
}
.stand-advantage-snippet__title {
  display: block;
  margin: 0 0 0.25em;
}
.stand-advantage-snippet__title .title {
  margin-bottom: 0;
}
.stand-advantage-snippet__text {
  display: block;
}
.stand-advantage-snippet_size_big .stand-advantage-snippet__header {
  width: 92px;
}

.steps-block {
  display: block;
}
.steps-block__holder {
  display: block;
  padding: 45px;
  background: var(--color-odd);
  border-radius: 40px;
}
.steps-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.steps-block__list-item {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.steps-snippet {
  display: block;
}
.steps-snippet__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  min-width: 190px;
  max-width: 190px;
}
@media only screen and (min-width: 480px) {
  .steps-snippet__holder {
    gap: 30px;
    min-width: 190px;
    max-width: 190px;
  }
}
@media only screen and (min-width: 768px) {
  .steps-snippet__holder {
    gap: 35px;
    min-width: 190px;
    max-width: 190px;
  }
}
@media only screen and (min-width: 1024px) {
  .steps-snippet__holder {
    gap: 40px;
    min-width: 190px;
    max-width: 190px;
  }
}
@media only screen and (min-width: 1280px) {
  .steps-snippet__holder {
    gap: 45px;
    min-width: 190px;
    max-width: 190px;
  }
}
.steps-snippet__icon {
  display: block;
  width: 70px;
  min-width: 70px;
  max-width: 70px;
  margin: 0 auto;
}
@media only screen and (min-width: 480px) {
  .steps-snippet__icon {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
  }
}
@media only screen and (min-width: 768px) {
  .steps-snippet__icon {
    width: 90px;
    min-width: 90px;
    max-width: 90px;
  }
}
@media only screen and (min-width: 1024px) {
  .steps-snippet__icon {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
  }
}
@media only screen and (min-width: 1280px) {
  .steps-snippet__icon {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
  }
}
.steps-snippet__description {
  display: block;
  font-size: 14px;
  line-height: 1.277777777777778;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .steps-snippet__description {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .steps-snippet__description {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .steps-snippet__description {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1280px) {
  .steps-snippet__description {
    font-size: 18px;
  }
}

.table {
  display: table;
}
.table_size_full {
  width: 100%;
  max-width: 100%;
}
.table_style_stripped {
  border: none;
}
.table_style_stripped th,
.table_style_stripped th:not([class]),
.table_style_stripped .table__th {
  vertical-align: bottom;
  color: var(--color-font-def);
  font-size: inherit;
  font-weight: 300;
  text-align: left;
}
.table_style_stripped th,
.table_style_stripped th:not([class]),
.table_style_stripped .table__th,
.table_style_stripped td,
.table_style_stripped td:not([class]),
.table_style_stripped .table__td {
  padding: 8px 15px;
  background: transparent;
  border: none;
  -webkit-transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: color var(--trn-speed, .3s) var(--trn-ease, ease), background-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
@media only screen and (min-width: 768px) {
  .table_style_stripped th:nth-child(2),
  .table_style_stripped th:not([class]):nth-child(2),
  .table_style_stripped .table__th:nth-child(2),
  .table_style_stripped td:nth-child(2),
  .table_style_stripped td:not([class]):nth-child(2),
  .table_style_stripped .table__td:nth-child(2) {
    width: 30%;
    min-width: 30%;
    max-width: 30%;
  }
}
.table_style_stripped tbody tr:nth-child(odd) td,
.table_style_stripped tbody:not([class]) tr:nth-child(odd) td,
.table_style_stripped .table__tbody tr:nth-child(odd) td,
.table_style_stripped tbody tr:not([class]):nth-child(odd) td,
.table_style_stripped tbody:not([class]) tr:not([class]):nth-child(odd) td,
.table_style_stripped .table__tbody tr:not([class]):nth-child(odd) td,
.table_style_stripped tbody .table__tr:nth-child(odd) td,
.table_style_stripped tbody:not([class]) .table__tr:nth-child(odd) td,
.table_style_stripped .table__tbody .table__tr:nth-child(odd) td,
.table_style_stripped tbody tr:nth-child(odd) td:not([class]),
.table_style_stripped tbody:not([class]) tr:nth-child(odd) td:not([class]),
.table_style_stripped .table__tbody tr:nth-child(odd) td:not([class]),
.table_style_stripped tbody tr:not([class]):nth-child(odd) td:not([class]),
.table_style_stripped tbody:not([class]) tr:not([class]):nth-child(odd) td:not([class]),
.table_style_stripped .table__tbody tr:not([class]):nth-child(odd) td:not([class]),
.table_style_stripped tbody .table__tr:nth-child(odd) td:not([class]),
.table_style_stripped tbody:not([class]) .table__tr:nth-child(odd) td:not([class]),
.table_style_stripped .table__tbody .table__tr:nth-child(odd) td:not([class]),
.table_style_stripped tbody tr:nth-child(odd) .table__td,
.table_style_stripped tbody:not([class]) tr:nth-child(odd) .table__td,
.table_style_stripped .table__tbody tr:nth-child(odd) .table__td,
.table_style_stripped tbody tr:not([class]):nth-child(odd) .table__td,
.table_style_stripped tbody:not([class]) tr:not([class]):nth-child(odd) .table__td,
.table_style_stripped .table__tbody tr:not([class]):nth-child(odd) .table__td,
.table_style_stripped tbody .table__tr:nth-child(odd) .table__td,
.table_style_stripped tbody:not([class]) .table__tr:nth-child(odd) .table__td,
.table_style_stripped .table__tbody .table__tr:nth-child(odd) .table__td {
  background: #fff;
}
.table_style_stripped tbody tr:nth-child(even) td,
.table_style_stripped tbody:not([class]) tr:nth-child(even) td,
.table_style_stripped .table__tbody tr:nth-child(even) td,
.table_style_stripped tbody tr:not([class]):nth-child(even) td,
.table_style_stripped tbody:not([class]) tr:not([class]):nth-child(even) td,
.table_style_stripped .table__tbody tr:not([class]):nth-child(even) td,
.table_style_stripped tbody .table__tr:nth-child(even) td,
.table_style_stripped tbody:not([class]) .table__tr:nth-child(even) td,
.table_style_stripped .table__tbody .table__tr:nth-child(even) td,
.table_style_stripped tbody tr:nth-child(even) td:not([class]),
.table_style_stripped tbody:not([class]) tr:nth-child(even) td:not([class]),
.table_style_stripped .table__tbody tr:nth-child(even) td:not([class]),
.table_style_stripped tbody tr:not([class]):nth-child(even) td:not([class]),
.table_style_stripped tbody:not([class]) tr:not([class]):nth-child(even) td:not([class]),
.table_style_stripped .table__tbody tr:not([class]):nth-child(even) td:not([class]),
.table_style_stripped tbody .table__tr:nth-child(even) td:not([class]),
.table_style_stripped tbody:not([class]) .table__tr:nth-child(even) td:not([class]),
.table_style_stripped .table__tbody .table__tr:nth-child(even) td:not([class]),
.table_style_stripped tbody tr:nth-child(even) .table__td,
.table_style_stripped tbody:not([class]) tr:nth-child(even) .table__td,
.table_style_stripped .table__tbody tr:nth-child(even) .table__td,
.table_style_stripped tbody tr:not([class]):nth-child(even) .table__td,
.table_style_stripped tbody:not([class]) tr:not([class]):nth-child(even) .table__td,
.table_style_stripped .table__tbody tr:not([class]):nth-child(even) .table__td,
.table_style_stripped tbody .table__tr:nth-child(even) .table__td,
.table_style_stripped tbody:not([class]) .table__tr:nth-child(even) .table__td,
.table_style_stripped .table__tbody .table__tr:nth-child(even) .table__td {
  background: #dbdbdb;
}
.table_style_stripped tbody tr:hover td,
.table_style_stripped tbody:not([class]) tr:hover td,
.table_style_stripped .table__tbody tr:hover td,
.table_style_stripped tbody tr:not([class]):hover td,
.table_style_stripped tbody:not([class]) tr:not([class]):hover td,
.table_style_stripped .table__tbody tr:not([class]):hover td,
.table_style_stripped tbody .table__tr:hover td,
.table_style_stripped tbody:not([class]) .table__tr:hover td,
.table_style_stripped .table__tbody .table__tr:hover td,
.table_style_stripped tbody tr:hover td:not([class]),
.table_style_stripped tbody:not([class]) tr:hover td:not([class]),
.table_style_stripped .table__tbody tr:hover td:not([class]),
.table_style_stripped tbody tr:not([class]):hover td:not([class]),
.table_style_stripped tbody:not([class]) tr:not([class]):hover td:not([class]),
.table_style_stripped .table__tbody tr:not([class]):hover td:not([class]),
.table_style_stripped tbody .table__tr:hover td:not([class]),
.table_style_stripped tbody:not([class]) .table__tr:hover td:not([class]),
.table_style_stripped .table__tbody .table__tr:hover td:not([class]),
.table_style_stripped tbody tr:hover .table__td,
.table_style_stripped tbody:not([class]) tr:hover .table__td,
.table_style_stripped .table__tbody tr:hover .table__td,
.table_style_stripped tbody tr:not([class]):hover .table__td,
.table_style_stripped tbody:not([class]) tr:not([class]):hover .table__td,
.table_style_stripped .table__tbody tr:not([class]):hover .table__td,
.table_style_stripped tbody .table__tr:hover .table__td,
.table_style_stripped tbody:not([class]) .table__tr:hover .table__td,
.table_style_stripped .table__tbody .table__tr:hover .table__td {
  color: #fff;
  background: var(--color-main);
}

.tabs {
  display: block;
}
.tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tabs__item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tabs__link {
  display: block;
  padding: 5px 10px;
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
  background: #f4f4f4;
  border: 1px solid #e8e8e8;
  border-radius: 6px 6px 0 0;
}
.tabs__link_state_current {
  color: #000;
  background: #fbfbfb;
}
.tabs__link_state_disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.tabs__content {
  margin: 0;
}
.tabs__panel {
  display: none;
}
.tabs__panel_state_current {
  display: block;
}
.tabs_nav-align_left .tabs__nav {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.tabs_nav-align_center .tabs__nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tabs_nav-align_right .tabs__nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.tabs_nav-align_around .tabs__nav {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.tabs_nav-align_between .tabs__nav {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tabs_style_buttons .tabs__nav {
  gap: 15px;
}
.tabs_style_buttons .tabs__item {
  display: block;
}
.tabs_style_buttons .tabs__link {
  min-width: 170px;
  height: 47px;
  padding: 5px 15px;
  color: var(--color-font-def);
  font-size: 16px;
  font-weight: 400;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}
.tabs_style_buttons .tabs__link_state_current {
  color: var(--color-white);
  background: var(--color-main);
  border-color: var(--color-main);
}
.tabs_style_buttons .tabs__content {
  margin: 0;
  padding-top: calc(var(--gap) * 0.5);
  border: none;
}

.title {
  --margin-top: 2em;
  --margin-bottom: 1.25em;
  --font-size: 48px;
  --font-weight: 700;
  position: relative;
  z-index: 1;
  display: block;
  margin: var(--margin-top) 0 var(--margin-bottom);
  padding: 0;
  color: currentColor;
  font-family: var(--font-family-header);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: 1.263157894736842;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .title {
    --font-size: 36px;
  }
}
@media only screen and (min-width: 768px) {
  .title {
    --font-size: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .title {
    --font-size: 44px;
  }
}
@media only screen and (min-width: 1280px) {
  .title {
    --font-size: 48px;
  }
}
.title:first-child {
  --margin-top: 0;
}
.title + .title {
  --margin-top: 0;
}
.title__inner {
  display: inline-block;
  -ms-hyphens: auto;
      hyphens: auto;
}
@media only screen and (min-width: 768px) {
  .title__inner {
    -ms-hyphens: none;
        hyphens: none;
  }
}
.title__flag {
  display: inline-block;
  width: 1.888888888888889em;
  height: auto;
  aspect-ratio: 34/20;
  margin: 0 0.75em 0 0;
}
.title__desc {
  display: inline-block;
  font-size: 0.75em;
  font-weight: 300;
}
.title_gap_small {
  --margin-bottom: 0.5em;
}
.title_size_h1 {
  --font-size: 32px;
}
@media only screen and (min-width: 480px) {
  .title_size_h1 {
    --font-size: 36px;
  }
}
@media only screen and (min-width: 768px) {
  .title_size_h1 {
    --font-size: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .title_size_h1 {
    --font-size: 44px;
  }
}
@media only screen and (min-width: 1280px) {
  .title_size_h1 {
    --font-size: 48px;
  }
}
.title_size_h2 {
  --font-size: 26px;
}
@media only screen and (min-width: 480px) {
  .title_size_h2 {
    --font-size: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .title_size_h2 {
    --font-size: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .title_size_h2 {
    --font-size: 34px;
  }
}
@media only screen and (min-width: 1280px) {
  .title_size_h2 {
    --font-size: 36px;
  }
}
@media only screen and (min-width: 1600px) {
  .title_size_h2 {
    --font-size: 38px;
  }
}
@media only screen and (min-width: 1840px) {
  .title_size_h2 {
    --font-size: 38px;
  }
}
.title_size_h3 {
  --font-size: 22px;
}
@media only screen and (min-width: 480px) {
  .title_size_h3 {
    --font-size: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .title_size_h3 {
    --font-size: 26px;
  }
}
@media only screen and (min-width: 1024px) {
  .title_size_h3 {
    --font-size: 27px;
  }
}
@media only screen and (min-width: 1280px) {
  .title_size_h3 {
    --font-size: 28px;
  }
}
.title_size_h4 {
  --font-size: 18px;
}
@media only screen and (min-width: 480px) {
  .title_size_h4 {
    --font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .title_size_h4 {
    --font-size: 22px;
  }
}
@media only screen and (min-width: 1024px) {
  .title_size_h4 {
    --font-size: 23px;
  }
}
@media only screen and (min-width: 1280px) {
  .title_size_h4 {
    --font-size: 24px;
  }
}
.title_size_h5 {
  --font-size: 16px;
}
@media only screen and (min-width: 480px) {
  .title_size_h5 {
    --font-size: 17px;
  }
}
@media only screen and (min-width: 768px) {
  .title_size_h5 {
    --font-size: 19px;
  }
}
@media only screen and (min-width: 1024px) {
  .title_size_h5 {
    --font-size: 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .title_size_h5 {
    --font-size: 21px;
  }
}
.title_size_h6 {
  --font-size: 14px;
}
@media only screen and (min-width: 480px) {
  .title_size_h6 {
    --font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .title_size_h6 {
    --font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .title_size_h6 {
    --font-size: 17px;
  }
}
@media only screen and (min-width: 1280px) {
  .title_size_h6 {
    --font-size: 18px;
  }
}
.title_align_left {
  text-align: left;
}
.title_align_left.title_has_decoration .title__inner:after {
  left: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.title_align_center {
  text-align: center;
}
.title_align_center.title_has_decoration .title__inner:after {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.title_align_right {
  text-align: right;
}
.title_align_right.title_has_decoration .title__inner:after {
  right: 0;
  left: auto;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media only screen and (min-width: 1px) {
  .title_align_xs-left {
    text-align: left;
  }
  .title_align_xs-left.title_has_decoration .title__inner:after {
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .title_align_xs-center {
    text-align: center;
  }
  .title_align_xs-center.title_has_decoration .title__inner:after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .title_align_xs-right {
    text-align: right;
  }
  .title_align_xs-right.title_has_decoration .title__inner:after {
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media only screen and (min-width: 480px) {
  .title_align_s-left {
    text-align: left;
  }
  .title_align_s-left.title_has_decoration .title__inner:after {
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .title_align_s-center {
    text-align: center;
  }
  .title_align_s-center.title_has_decoration .title__inner:after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .title_align_s-right {
    text-align: right;
  }
  .title_align_s-right.title_has_decoration .title__inner:after {
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media only screen and (min-width: 768px) {
  .title_align_m-left {
    text-align: left;
  }
  .title_align_m-left.title_has_decoration .title__inner:after {
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .title_align_m-center {
    text-align: center;
  }
  .title_align_m-center.title_has_decoration .title__inner:after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .title_align_m-right {
    text-align: right;
  }
  .title_align_m-right.title_has_decoration .title__inner:after {
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media only screen and (min-width: 1024px) {
  .title_align_l-left {
    text-align: left;
  }
  .title_align_l-left.title_has_decoration .title__inner:after {
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .title_align_l-center {
    text-align: center;
  }
  .title_align_l-center.title_has_decoration .title__inner:after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .title_align_l-right {
    text-align: right;
  }
  .title_align_l-right.title_has_decoration .title__inner:after {
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media only screen and (min-width: 1280px) {
  .title_align_xl-left {
    text-align: left;
  }
  .title_align_xl-left.title_has_decoration .title__inner:after {
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .title_align_xl-center {
    text-align: center;
  }
  .title_align_xl-center.title_has_decoration .title__inner:after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .title_align_xl-right {
    text-align: right;
  }
  .title_align_xl-right.title_has_decoration .title__inner:after {
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media only screen and (min-width: 1600px) {
  .title_align_xxl-left {
    text-align: left;
  }
  .title_align_xxl-left.title_has_decoration .title__inner:after {
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .title_align_xxl-center {
    text-align: center;
  }
  .title_align_xxl-center.title_has_decoration .title__inner:after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .title_align_xxl-right {
    text-align: right;
  }
  .title_align_xxl-right.title_has_decoration .title__inner:after {
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media only screen and (min-width: 1840px) {
  .title_align_xxxl-left {
    text-align: left;
  }
  .title_align_xxxl-left.title_has_decoration .title__inner:after {
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .title_align_xxxl-center {
    text-align: center;
  }
  .title_align_xxxl-center.title_has_decoration .title__inner:after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .title_align_xxxl-right {
    text-align: right;
  }
  .title_align_xxxl-right.title_has_decoration .title__inner:after {
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.title_weight_thin,
.title_weight_hairline {
  --font-weight: 100;
}
.title_weight_extra-light,
.title_weight_ultra-light {
  --font-weight: 200;
}
.title_weight_light {
  --font-weight: 300;
}
.title_weight_regular,
.title_weight_normal {
  --font-weight: 400;
}
.title_weight_medium {
  --font-weight: 500;
}
.title_weight_semi-bold,
.title_weight_demi-bold {
  --font-weight: 600;
}
.title_weight_bold {
  --font-weight: 700;
}
.title_weight_extra-bold,
.title_weight_ultra-bold {
  --font-weight: 800;
}
.title_weight_black,
.title_weight_heavy {
  --font-weight: 900;
}
.title_weight_extra-black,
.title_weight_ultra-black {
  --font-weight: 950;
}
@media only screen and (min-width: 1px) {
  .title_weight_xs-thin,
  .title_weight_xs-hairline {
    --font-weight: 100;
  }
  .title_weight_xs-extra-light,
  .title_weight_xs-ultra-light {
    --font-weight: 200;
  }
  .title_weight_xs-light {
    --font-weight: 300;
  }
  .title_weight_xs-regular,
  .title_weight_xs-normal {
    --font-weight: 400;
  }
  .title_weight_xs-medium {
    --font-weight: 500;
  }
  .title_weight_xs-semi-bold,
  .title_weight_xs-demi-bold {
    --font-weight: 600;
  }
  .title_weight_xs-bold {
    --font-weight: 700;
  }
  .title_weight_xs-extra-bold,
  .title_weight_xs-ultra-bold {
    --font-weight: 800;
  }
  .title_weight_xs-black,
  .title_weight_xs-heavy {
    --font-weight: 900;
  }
  .title_weight_xs-extra-black,
  .title_weight_xs-ultra-black {
    --font-weight: 950;
  }
}
@media only screen and (min-width: 480px) {
  .title_weight_s-thin,
  .title_weight_s-hairline {
    --font-weight: 100;
  }
  .title_weight_s-extra-light,
  .title_weight_s-ultra-light {
    --font-weight: 200;
  }
  .title_weight_s-light {
    --font-weight: 300;
  }
  .title_weight_s-regular,
  .title_weight_s-normal {
    --font-weight: 400;
  }
  .title_weight_s-medium {
    --font-weight: 500;
  }
  .title_weight_s-semi-bold,
  .title_weight_s-demi-bold {
    --font-weight: 600;
  }
  .title_weight_s-bold {
    --font-weight: 700;
  }
  .title_weight_s-extra-bold,
  .title_weight_s-ultra-bold {
    --font-weight: 800;
  }
  .title_weight_s-black,
  .title_weight_s-heavy {
    --font-weight: 900;
  }
  .title_weight_s-extra-black,
  .title_weight_s-ultra-black {
    --font-weight: 950;
  }
}
@media only screen and (min-width: 768px) {
  .title_weight_m-thin,
  .title_weight_m-hairline {
    --font-weight: 100;
  }
  .title_weight_m-extra-light,
  .title_weight_m-ultra-light {
    --font-weight: 200;
  }
  .title_weight_m-light {
    --font-weight: 300;
  }
  .title_weight_m-regular,
  .title_weight_m-normal {
    --font-weight: 400;
  }
  .title_weight_m-medium {
    --font-weight: 500;
  }
  .title_weight_m-semi-bold,
  .title_weight_m-demi-bold {
    --font-weight: 600;
  }
  .title_weight_m-bold {
    --font-weight: 700;
  }
  .title_weight_m-extra-bold,
  .title_weight_m-ultra-bold {
    --font-weight: 800;
  }
  .title_weight_m-black,
  .title_weight_m-heavy {
    --font-weight: 900;
  }
  .title_weight_m-extra-black,
  .title_weight_m-ultra-black {
    --font-weight: 950;
  }
}
@media only screen and (min-width: 1024px) {
  .title_weight_l-thin,
  .title_weight_l-hairline {
    --font-weight: 100;
  }
  .title_weight_l-extra-light,
  .title_weight_l-ultra-light {
    --font-weight: 200;
  }
  .title_weight_l-light {
    --font-weight: 300;
  }
  .title_weight_l-regular,
  .title_weight_l-normal {
    --font-weight: 400;
  }
  .title_weight_l-medium {
    --font-weight: 500;
  }
  .title_weight_l-semi-bold,
  .title_weight_l-demi-bold {
    --font-weight: 600;
  }
  .title_weight_l-bold {
    --font-weight: 700;
  }
  .title_weight_l-extra-bold,
  .title_weight_l-ultra-bold {
    --font-weight: 800;
  }
  .title_weight_l-black,
  .title_weight_l-heavy {
    --font-weight: 900;
  }
  .title_weight_l-extra-black,
  .title_weight_l-ultra-black {
    --font-weight: 950;
  }
}
@media only screen and (min-width: 1280px) {
  .title_weight_xl-thin,
  .title_weight_xl-hairline {
    --font-weight: 100;
  }
  .title_weight_xl-extra-light,
  .title_weight_xl-ultra-light {
    --font-weight: 200;
  }
  .title_weight_xl-light {
    --font-weight: 300;
  }
  .title_weight_xl-regular,
  .title_weight_xl-normal {
    --font-weight: 400;
  }
  .title_weight_xl-medium {
    --font-weight: 500;
  }
  .title_weight_xl-semi-bold,
  .title_weight_xl-demi-bold {
    --font-weight: 600;
  }
  .title_weight_xl-bold {
    --font-weight: 700;
  }
  .title_weight_xl-extra-bold,
  .title_weight_xl-ultra-bold {
    --font-weight: 800;
  }
  .title_weight_xl-black,
  .title_weight_xl-heavy {
    --font-weight: 900;
  }
  .title_weight_xl-extra-black,
  .title_weight_xl-ultra-black {
    --font-weight: 950;
  }
}
@media only screen and (min-width: 1600px) {
  .title_weight_xxl-thin,
  .title_weight_xxl-hairline {
    --font-weight: 100;
  }
  .title_weight_xxl-extra-light,
  .title_weight_xxl-ultra-light {
    --font-weight: 200;
  }
  .title_weight_xxl-light {
    --font-weight: 300;
  }
  .title_weight_xxl-regular,
  .title_weight_xxl-normal {
    --font-weight: 400;
  }
  .title_weight_xxl-medium {
    --font-weight: 500;
  }
  .title_weight_xxl-semi-bold,
  .title_weight_xxl-demi-bold {
    --font-weight: 600;
  }
  .title_weight_xxl-bold {
    --font-weight: 700;
  }
  .title_weight_xxl-extra-bold,
  .title_weight_xxl-ultra-bold {
    --font-weight: 800;
  }
  .title_weight_xxl-black,
  .title_weight_xxl-heavy {
    --font-weight: 900;
  }
  .title_weight_xxl-extra-black,
  .title_weight_xxl-ultra-black {
    --font-weight: 950;
  }
}
@media only screen and (min-width: 1840px) {
  .title_weight_xxxl-thin,
  .title_weight_xxxl-hairline {
    --font-weight: 100;
  }
  .title_weight_xxxl-extra-light,
  .title_weight_xxxl-ultra-light {
    --font-weight: 200;
  }
  .title_weight_xxxl-light {
    --font-weight: 300;
  }
  .title_weight_xxxl-regular,
  .title_weight_xxxl-normal {
    --font-weight: 400;
  }
  .title_weight_xxxl-medium {
    --font-weight: 500;
  }
  .title_weight_xxxl-semi-bold,
  .title_weight_xxxl-demi-bold {
    --font-weight: 600;
  }
  .title_weight_xxxl-bold {
    --font-weight: 700;
  }
  .title_weight_xxxl-extra-bold,
  .title_weight_xxxl-ultra-bold {
    --font-weight: 800;
  }
  .title_weight_xxxl-black,
  .title_weight_xxxl-heavy {
    --font-weight: 900;
  }
  .title_weight_xxxl-extra-black,
  .title_weight_xxxl-ultra-black {
    --font-weight: 950;
  }
}
.title_hyphens_none .title__inner {
  -ms-hyphens: none;
      hyphens: none;
}
@media only screen and (min-width: 1px) {
  .title_hyphens_xs-none .title__inner {
    -ms-hyphens: none;
        hyphens: none;
  }
}
@media only screen and (min-width: 480px) {
  .title_hyphens_s-none .title__inner {
    -ms-hyphens: none;
        hyphens: none;
  }
}
@media only screen and (min-width: 768px) {
  .title_hyphens_m-none .title__inner {
    -ms-hyphens: none;
        hyphens: none;
  }
}
@media only screen and (min-width: 1024px) {
  .title_hyphens_l-none .title__inner {
    -ms-hyphens: none;
        hyphens: none;
  }
}
@media only screen and (min-width: 1280px) {
  .title_hyphens_xl-none .title__inner {
    -ms-hyphens: none;
        hyphens: none;
  }
}
@media only screen and (min-width: 1600px) {
  .title_hyphens_xxl-none .title__inner {
    -ms-hyphens: none;
        hyphens: none;
  }
}
@media only screen and (min-width: 1840px) {
  .title_hyphens_xxxl-none .title__inner {
    -ms-hyphens: none;
        hyphens: none;
  }
}
.title_hyphens_manual .title__inner {
  -ms-hyphens: manual;
      hyphens: manual;
}
@media only screen and (min-width: 1px) {
  .title_hyphens_xs-manual .title__inner {
    -ms-hyphens: manual;
        hyphens: manual;
  }
}
@media only screen and (min-width: 480px) {
  .title_hyphens_s-manual .title__inner {
    -ms-hyphens: manual;
        hyphens: manual;
  }
}
@media only screen and (min-width: 768px) {
  .title_hyphens_m-manual .title__inner {
    -ms-hyphens: manual;
        hyphens: manual;
  }
}
@media only screen and (min-width: 1024px) {
  .title_hyphens_l-manual .title__inner {
    -ms-hyphens: manual;
        hyphens: manual;
  }
}
@media only screen and (min-width: 1280px) {
  .title_hyphens_xl-manual .title__inner {
    -ms-hyphens: manual;
        hyphens: manual;
  }
}
@media only screen and (min-width: 1600px) {
  .title_hyphens_xxl-manual .title__inner {
    -ms-hyphens: manual;
        hyphens: manual;
  }
}
@media only screen and (min-width: 1840px) {
  .title_hyphens_xxxl-manual .title__inner {
    -ms-hyphens: manual;
        hyphens: manual;
  }
}
.title_hyphens_auto .title__inner {
  -ms-hyphens: auto;
      hyphens: auto;
}
@media only screen and (min-width: 1px) {
  .title_hyphens_xs-auto .title__inner {
    -ms-hyphens: auto;
        hyphens: auto;
  }
}
@media only screen and (min-width: 480px) {
  .title_hyphens_s-auto .title__inner {
    -ms-hyphens: auto;
        hyphens: auto;
  }
}
@media only screen and (min-width: 768px) {
  .title_hyphens_m-auto .title__inner {
    -ms-hyphens: auto;
        hyphens: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .title_hyphens_l-auto .title__inner {
    -ms-hyphens: auto;
        hyphens: auto;
  }
}
@media only screen and (min-width: 1280px) {
  .title_hyphens_xl-auto .title__inner {
    -ms-hyphens: auto;
        hyphens: auto;
  }
}
@media only screen and (min-width: 1600px) {
  .title_hyphens_xxl-auto .title__inner {
    -ms-hyphens: auto;
        hyphens: auto;
  }
}
@media only screen and (min-width: 1840px) {
  .title_hyphens_xxxl-auto .title__inner {
    -ms-hyphens: auto;
        hyphens: auto;
  }
}
.title_case_up {
  text-transform: uppercase;
}
@media only screen and (min-width: 1px) {
  .title_case_xs-up {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 480px) {
  .title_case_s-up {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 768px) {
  .title_case_m-up {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 1024px) {
  .title_case_l-up {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 1280px) {
  .title_case_xl-up {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 1600px) {
  .title_case_xxl-up {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 1840px) {
  .title_case_xxxl-up {
    text-transform: uppercase;
  }
}
.title_has_decoration {
  position: relative;
}
.title_has_decoration:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 2.119047619047619em;
  aspect-ratio: 89/93;
  pointer-events: none;
  background: url("/images/title/house.svg");
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.title_has_decoration .title__inner {
  position: relative;
  z-index: 2;
}
.title_has_icon .title__inner {
  position: relative;
  padding-right: calc(15px + (43em / 42));
}
.title_has_icon .title__icon {
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(43em / 42);
  height: calc(43em / 42);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.title_color_main {
  color: var(--color-main);
}

.to-top {
  position: relative;
  z-index: 9;
  display: block;
  opacity: 1;
  -webkit-transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: opacity var(--trn-speed, .3s) var(--trn-ease, ease);
}
.to-top__holder {
  position: fixed;
  right: 3%;
  bottom: 5%;
  display: block;
}
.to-top__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-white);
  border-radius: 0;
  -webkit-transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: background-color var(--trn-speed, .3s) var(--trn-ease, ease);
}
.to-top__link:hover,
.to-top__link:focus {
  background: var(--color-main);
}
.to-top__link:hover .to-top__icon,
.to-top__link:focus .to-top__icon {
  fill: var(--color-white);
}
.to-top__icon {
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  fill: var(--color-font-def);
  -webkit-transition: fill var(--trn-speed, .3s) var(--trn-ease, ease);
  transition: fill var(--trn-speed, .3s) var(--trn-ease, ease);
}
.to-top_is_hidden {
  pointer-events: none;
  opacity: 0;
}

.video {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  background: #c4c4c4;
}
.video:before {
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}
.video:after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: block;
  width: 0;
  height: 0;
  border-top: 35px solid transparent;
  border-left: 62px solid #fff;
  border-bottom: 35px solid transparent;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.video__content {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
}

.well {
  display: block;
  height: 100%;
}
.well__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  border-radius: 0;
}
.well__background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
}
.well__background-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.well__background-video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.well__background-video:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.33);
}
.well__background-video .video__content {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.well__holder {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: calc(var(--gap) * 2) 0;
}
@media only screen and (min-width: 768px) {
  .well__holder {
    aspect-ratio: 1920/912;
    padding: var(--gap) 0;
  }
}
.well__header {
  display: block;
}
.well__body {
  display: block;
}
.well__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 480px) {
  .well__footer {
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .well__footer {
    gap: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .well__footer {
    gap: 60px;
  }
}
@media only screen and (min-width: 1280px) {
  .well__footer {
    gap: 65px;
  }
}
@media only screen and (min-width: 1600px) {
  .well__footer {
    gap: 68px;
  }
}
@media only screen and (min-width: 1840px) {
  .well__footer {
    gap: 70px;
  }
}
.well__title {
  --font-size: 26px;
  display: block;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-family-header);
  font-size: var(--font-size, 14px);
  font-weight: 500;
  line-height: 1.391304347826087;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 480px) {
  .well__title {
    --font-size: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .well__title {
    --font-size: 38px;
    max-width: 888px;
  }
}
@media only screen and (min-width: 1024px) {
  .well__title {
    --font-size: 42px;
  }
}
@media only screen and (min-width: 1280px) {
  .well__title {
    --font-size: 44px;
  }
}
@media only screen and (min-width: 1600px) {
  .well__title {
    --font-size: 45px;
  }
}
@media only screen and (min-width: 1840px) {
  .well__title {
    --font-size: 46px;
  }
}
.well__title:last-child {
  margin-bottom: 0;
}
.well__description {
  --font-size: 18px;
  display: block;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-family-default);
  font-size: var(--font-size, 14px);
  font-weight: 300;
  line-height: 1.444444444444444;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .well__description {
    --font-size: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .well__description {
    --font-size: 18px;
    max-width: 888px;
  }
}
@media only screen and (min-width: 1024px) {
  .well__description {
    --font-size: 18px;
  }
}
@media only screen and (min-width: 1280px) {
  .well__description {
    --font-size: 18px;
  }
}
@media only screen and (min-width: 1600px) {
  .well__description {
    --font-size: 18px;
  }
}
.well__image {
  --margin-bottom: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 606/579;
  margin: 0 auto var(--margin-bottom);
  margin-right: -120px;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 480px) {
  .well__image {
    margin-right: -30px;
  }
}
@media only screen and (min-width: 768px) {
  .well__image {
    max-width: 450px;
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .well__image {
    max-width: 550px;
  }
}
@media only screen and (min-width: 1280px) {
  .well__image {
    max-width: 606px;
  }
}
.well__controls {
  --margin-bottom: 0;
  display: block;
  margin: 0 0 var(--margin-bottom);
  padding: 0;
}
.well__controls:last-child {
  margin-bottom: 0;
}
.well__countdown {
  display: block;
  margin: 0 0 55px;
  color: #fff;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .well__countdown {
    padding: 0 220px;
    text-align: center;
  }
}

.work-snippet {
  display: block;
}
.work-snippet__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-width: 180px;
  max-width: 220px;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
}
.work-snippet__illustration {
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 42px;
  height: auto;
  aspect-ratio: 42/48;
  margin: 0 auto 30px;
}
.work-snippet__illustration:last-child {
  margin-bottom: 0;
}
.work-snippet__icon {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.work-snippet__description {
  display: block;
  margin: 0 auto 30px;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .work-snippet__description {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1024px) {
  .work-snippet__description {
    font-size: 18px;
  }
}
.work-snippet__description:last-child {
  margin-bottom: 0;
}

.works {
  display: block;
}
.works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 calc(var(--gap) * 0.85);
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 1280px) {
  .works__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.works__list:last-child {
  margin-bottom: 0;
}
.works__list-item {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.works__controls {
  display: block;
  margin: 0 0 calc(var(--gap) * 0.85);
  padding: 0;
}
.works__controls:last-child {
  margin-bottom: 0;
}

