

/* Start:/local/templates/main/css/style.css?1741153745168888*/
@charset "UTF-8";
/* stylelint-disable no-invalid-position-at-import-rule */
/*

:root {
  --base-size: 1vw;//calc(1vw + 1vh);
  @media (min-width: $mobile-l + 1) and (max-width: $tablet) {
    --base-size: calc(1vw + 1vh);
  }
  --tr: 0.2s;
  --tr-regular: all var(--tr) ease;

  --regular-column-left: 93.3rem;
  --regular-column-right: 64.4rem;
  --regular-columns: var(--regular-column-left) var(--regular-column-right);

  @media (max-width: $desktop-s) {
    --regular-column-left: 83.3rem;
    // --regular-column-right: 54.4rem;
    --regular-column-right: 58.4rem;
  }
  @media (max-width: $tablet) {
    --regular-column-left: 43.3rem;
  }
  @media (max-width: $tablet-m) {
    --regular-column-left: 53.3rem;
  }

  // Fonts
  --ff-regular: "Inter", sans-serif;

  // Widths
  --w-container: 1440px;
  @media (max-width: $desktop-m) {
    --w-container: 1260px;
  }
  @media (max-width: $desktop-s) {
    --w-container: 892px;
  }
  @media (max-width: 768px) {
    --w-container: 100%;
  }
}
*/
:root {
  --tr: 0.2s;
  --tr-regular: all var(--tr) ease;
  --dark: #1f2a35;
  --accent: #008eff;
  --accent-hover: #8ecbfa;
  --accent-gradient: linear-gradient(180deg, #8ecbfa 0%, #008eff 100%);
  --main: #ff6200;
  --main-hover: #D43C00;
  --light-gray: #BABABA;
  --light: #F8F8F8;
  --bg-card: #f0f0f2;
  --c-surface: #fff;
  --fg-text-on: #fff;
  --w-container: 1440px;
}
@media (max-width: 1536px) {
  :root {
    --w-container: 1260px;
  }
}
@media (max-width: 1280px) {
  :root {
    --w-container: 892px;
  }
}
@media (max-width: 768px) {
  :root {
    --w-container: 100%;
  }
}

/* stylelint-disable scss/operator-no-newline-after */
/*
  Подключает шфрит
  @include font('Inter', normal, 400, '../resources/fonts/Inter/Inter-Regular');
 */
/*
  Создает грид
 */
/*
  Делает маску из svg
 */
/*

  SCSS ONLY MIXINS

 */
/*
  Генерирует цвет по указанной яркости
*/
/*
  Создать цвет rgba из hex
*/
/*
 Кастомизирует скроллбар
*/
/*
    1. Use a more-intuitive box-sizing model.
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

/*
    2. Remove default margin
 */
* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
}

/*
    3. Allow percentage-based heights in the application
*/
html,
body {
  width: 100%;
  height: 100%;
}

/*
    Typographic tweaks!
    4. Add accessible line-height
    5. Improve text rendering
 */
body {
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button:active {
  outline: none;
}

input[type=submit] {
  cursor: pointer;
}

button {
  color: inherit;
  cursor: pointer;
  background: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  color: inherit;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

ul li {
  list-style: none;
  list-style-position: inside;
}

ol li {
  list-style-position: inside;
}

/*
    6. Improve media defaults
 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img,
svg {
  object-fit: contain;
}

/*
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
*/
/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

.container {
  max-width: 1820px;
  margin: 0 auto;
}
@media (max-width: 1880px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
    max-width: 1720px;
  }
}
@media (max-width: 1700px) {
  .container {
    max-width: 1480px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1536px) {
  .container {
    max-width: 1310px;
  }
}
@media (max-width: 1368px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 690px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  transition: all 0.6s ease-in-out;
}

.preloader--hidden {
  pointer-events: none;
  opacity: 0;
}

.preloader__loader {
  width: 20rem;
  height: 20rem;
  display: block;
  transition: all 0.8s ease-in-out;
}

.preloader--hidden .preloader__loader {
  transform: scale(0.2);
}

.burger {
  --line-width: 47.5%;
  --line-height: 3px;
  position: relative;
  width: var(--burger-width, 40px);
  height: var(--burger-height, 40px);
  transition: var(--tr);
}
@media (min-width: 1281px) {
  .burger {
    display: none;
  }
}

.burger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--line-width, 47.5%);
  height: var(--line-height, 0.2rem);
  background: var(--c-burger-line, #000);
  transition: var(--tr);
  border-radius: 2rem;
}

.burger__line:nth-child(1) {
  transform: translate(-50%, calc(-50% - 10px));
}

.burger__line:nth-child(2) {
  transform: translate(-50%, calc(-50% + 0px));
}

.burger__line:nth-child(3) {
  transform: translate(-50%, calc(-50% + 10px));
  transform-origin: left;
}

.burger.is-active .burger__line:nth-child(1) {
  transform: translate(-50%, calc(-50% - 0px)) rotate(45deg);
}

.burger.is-active .burger__line:nth-child(2) {
  width: 0;
}

.burger.is-active .burger__line:nth-child(3) {
  transform: translate(-50%, calc(-50% - 0px)) rotate(-45deg);
  transform-origin: unset;
}

.breadcrumbs {
  color: #646464;
  font-size: 1.9rem;
  line-height: 1.25;
  overflow: hidden;
  width: 100%;
}

.breadcrumbs__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  color: var(--accent);
}

.breadcrumbs__link {
  color: var(--dark);
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .breadcrumbs__link:hover {
    color: var(--accent);
  }
}

.breadcrumbs__link:after {
  content: "/";
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}

/*
@media (min-width: $laptop + 1) {
	.hero--has-overlay .breadcrumbs__link {
		color: #fff;
	}

	.hero--has-overlay .breadcrumbs__item {
		color: #5fb2f2;
	}
}
//*/
.chips-select {
  --c-text: var(--dark);
  --c-text-active: var(--fg-text-on);
  --bg: var(--bg-card);
  --bg-active: var(--accent);
  --brad: 9999px;
  position: relative;
  display: inline-flex;
  --fz: 1.8rem;
  line-height: 1.25;
  color: var(--c-text);
  border: none;
  border-radius: var(--brad);
  margin-right: 2.4rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .chips-select {
    --fz: 1.4rem;
  }
}
@media (max-width: 690px) {
  .chips-select {
    margin-right: 0;
    display: flex;
  }
}

.chips-select__label {
  width: 100%;
  text-align: center;
}

.chips-select__input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  appearance: none;
}

.chips-select__box {
  border-radius: 9999px;
  background-color: var(--bg);
  padding: 2.8rem 4.8rem;
  display: block;
  transition: var(--tr-regular);
  cursor: pointer;
  font-size: var(--fz);
}
@media (max-width: 992px) {
  .chips-select__box {
    padding: 2.8rem 2.4rem;
  }
}

.chips-select__label.active .chips-select__box {
  background-color: var(--bg-active);
  color: var(--c-text-active);
}

.chips-select__count {
  color: #a7a7a7;
}

.wysiwyg, .storytell__body {
  color: var(--dark);
  /* Стили для цитат */
  /* Стили для таблиц */
  /* Стили для кода */
  /* Дополнительные стили, которые могут понадобиться */
}
.wysiwyg h1, .storytell__body h1,
.wysiwyg h2,
.storytell__body h2,
.wysiwyg h3,
.storytell__body h3,
.wysiwyg h4,
.storytell__body h4,
.wysiwyg h5,
.storytell__body h5,
.wysiwyg h6,
.storytell__body h6 {
  font-weight: 600;
  margin-bottom: 0.5em;
  color: var(--dark);
}
.wysiwyg h1, .storytell__body h1 {
  font-size: 5rem;
}
@media (max-width: 690px) {
  .wysiwyg h1, .storytell__body h1 {
    font-size: 2.5rem;
  }
}
.wysiwyg h2, .storytell__body h2 {
  font-size: 4.8rem;
}
@media (max-width: 690px) {
  .wysiwyg h2, .storytell__body h2 {
    font-size: 2.2rem;
  }
}
.wysiwyg h3, .storytell__body h3 {
  font-size: 4.2rem;
}
@media (max-width: 690px) {
  .wysiwyg h3, .storytell__body h3 {
    font-size: 2rem;
  }
}
.wysiwyg h4, .storytell__body h4 {
  font-size: 3.6rem;
}
@media (max-width: 690px) {
  .wysiwyg h4, .storytell__body h4 {
    font-size: 1.8rem;
  }
}
.wysiwyg h5, .storytell__body h5 {
  margin-bottom: 1em;
}
.wysiwyg h6, .storytell__body h6 {
  margin-bottom: 2.4rem;
}
.wysiwyg p, .storytell__body p {
  font-size: 1.8rem;
  line-height: 1.45;
  margin-bottom: 1.5em;
}
@media (max-width: 690px) {
  .wysiwyg p, .storytell__body p {
    font-size: 1.6rem;
  }
}
.wysiwyg p + h1, .storytell__body p + h1,
.wysiwyg p + h2,
.storytell__body p + h2,
.wysiwyg p + h3,
.storytell__body p + h3,
.wysiwyg p + h4,
.storytell__body p + h4,
.wysiwyg p + h5,
.storytell__body p + h5,
.wysiwyg p + h6,
.storytell__body p + h6 {
  margin-top: 2em;
}
.wysiwyg > *:last-child, .storytell__body > *:last-child {
  margin-bottom: 0;
}
.wysiwyg a, .storytell__body a {
  color: var(--accent);
  text-decoration: underline;
}
.wysiwyg blockquote, .storytell__body blockquote {
  margin: 1.4em 0;
  padding: 1.5em 3em;
  background-color: #f8f8f8;
  border-radius: 30px;
  background: #F0F2F5;
}
@media (max-width: 690px) {
  .wysiwyg blockquote, .storytell__body blockquote {
    padding: 1.5em 1em;
  }
}
.wysiwyg img, .storytell__body img {
  width: 100%;
  display: block;
  border-radius: 3rem;
  margin-bottom: 7.2rem;
}
@media (max-width: 690px) {
  .wysiwyg img, .storytell__body img {
    margin-bottom: 3.5rem;
  }
}
.wysiwyg table, .storytell__body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}
.wysiwyg th, .storytell__body th,
.wysiwyg td,
.storytell__body td {
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
}
.wysiwyg pre, .storytell__body pre {
  margin-top: 1.4em;
  margin-bottom: 1.4em;
  padding: 0.5em;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  overflow-x: auto;
  font-family: monospace;
}
.wysiwyg code, .storytell__body code {
  font-family: monospace;
  color: #333;
  background-color: #f8f8f8;
  padding: 0.2em 0.4em;
  border-radius: 3px;
}
.wysiwyg strong, .storytell__body strong {
  font-weight: bold;
}
.wysiwyg em, .storytell__body em {
  font-style: italic;
}
.wysiwyg ul, .storytell__body ul,
.wysiwyg ol,
.storytell__body ol {
  --list-gap: 3.5rem;
  font-size: var(--fz-ul);
  margin-bottom: 3rem;
  padding-left: var(--list-gap);
  padding-top: 0.5rem;
}
@media (max-width: 690px) {
  .wysiwyg ul, .storytell__body ul,
  .wysiwyg ol,
  .storytell__body ol {
    --list-gap: 2rem;
  }
}
.wysiwyg ol li, .storytell__body ol li,
.wysiwyg ul li,
.storytell__body ul li {
  list-style: none;
  position: relative;
}
.wysiwyg ol, .storytell__body ol {
  counter-reset: ol;
}
.wysiwyg ol > li, .storytell__body ol > li {
  counter-increment: ol;
  list-style: none;
  position: relative;
}
.wysiwyg ol > li::before, .storytell__body ol > li::before {
  content: counter(ol) ")";
  position: absolute;
  left: calc(0px - var(--list-gap));
  font-weight: 700;
}
.wysiwyg li, .storytell__body li {
  list-style: initial;
  margin-bottom: 1.3rem;
}
.wysiwyg ol ul li, .storytell__body ol ul li {
  list-style: initial;
}
.wysiwyg button, .storytell__body button {
  margin-bottom: 3rem;
}
.wysiwyg img, .storytell__body img {
  margin-bottom: 3rem;
  border-radius: 1rem;
}
.wysiwyg ol ul li::before,
.wysiwyg ul li::before,
.storytell__body ul li::before {
  content: "";
  top: 0.7rem;
  left: -2.4rem;
  position: absolute;
  display: block;
  --size: 0.8rem;
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  border-radius: 9999px;
  background-color: var(--accent);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 690px) {
  .wysiwyg ol ul li::before,
  .wysiwyg ul li::before,
  .storytell__body ul li::before {
    top: 0.85rem;
    left: -1.5rem;
    --size: 0.8rem;
  }
}

.socials {
  display: flex;
  align-items: center;
  --icons-size: 3.7rem;
  --icons-gap: 1rem;
}
@media (max-width: 992px) {
  .socials {
    --icons-size: 4.2rem;
    --icons-gap: 1.0714rem;
  }
}

.socials__link {
  --size: var(--icons-size);
  display: block;
  width: var(--size);
  min-width: var(--size);
  max-width: var(--size);
  height: var(--size);
  min-height: var(--size);
  max-height: var(--size);
  transition: var(--tr);
  margin-right: var(--icons-gap);
  transition: var(--tr-regular);
  border-radius: 50%;
}
.socials__link:last-child {
  margin-right: 0;
}

@media (any-hover: hover) {
  .socials__link:hover {
    transform: scale(1.1);
  }
}

.socials__icon {
  height: 100%;
  width: 100%;
  border-radius: 9999px;
}

.section {
  padding-top: 65px;
  padding-bottom: 65px;
}
@media (max-width: 1536px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 690px) {
  .section {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.section-shifter {
  margin-top: 65px;
  margin-bottom: 65px;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 1536px) {
  .section-shifter {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (max-width: 1100px) {
  .section-shifter {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 690px) {
  .section-shifter {
    padding: 0 16px;
    margin-top: 35px;
    margin-bottom: 35px;
  }
}

.section-flip {
  background-color: var(--light);
  position: relative;
  z-index: 2;
  border-radius: 10rem 10rem 0 0;
  padding-bottom: 60px;
  margin-top: -60px;
}
@media (max-width: 1536px) {
  .section-flip {
    margin-top: -50px;
  }
}
@media (max-width: 768px) {
  .section-flip {
    padding-top: 0;
  }
}
@media (max-width: 450px) {
  .section-flip {
    border-radius: 4rem 4rem 0 0;
  }
}

.section-flip .section:not(.storytell):first-child {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .section-flip .section:not(.storytell):first-child {
    padding-top: 60px;
  }
}
@media (max-width: 450px) {
  .section-flip .section:not(.storytell):first-child {
    padding-top: 36px;
  }
}

.section-flip .section:last-child {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .section-flip .section:last-child {
    padding-bottom: 60px;
  }
}
@media (max-width: 450px) {
  .section-flip .section:last-child {
    padding-bottom: 36px;
  }
}

.section-flip--light {
  background-color: var(--c-surface);
}

.section__buttons {
  padding-top: 4rem;
  display: flex;
  justify-content: center;
}

.section-text--underline {
  border-bottom: 1px solid;
}

.btn-primary {
  text-align: center;
  font-size: 1.6rem;
  color: var(--dark);
  padding: 28px 24px;
  background-color: transparent;
  border: 1px solid #BABABA;
  border-radius: 10rem;
  transition: 0.2s;
}
@media (max-width: 450px) {
  .btn-primary {
    padding: 18px 24px;
  }
}

@media (any-hover: hover) {
  .btn-primary:hover {
    color: #FFF;
    background-color: var(--accent);
    border-color: var(--accent);
  }
}

@media (max-width: 1200px) {
  .btn-primary._desktop {
    display: none;
  }
}

.btn-accent {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  color: #FFF;
  padding: 30px 0;
  background: linear-gradient(180deg, #8ecbfa 0%, #008eff 100%);
  border: none;
  border-radius: 10rem;
  transition: 0.2s;
}

@media (any-hover: hover) {
  .btn-accent:hover {
    color: #FFF;
    background-color: var(--accent-hover);
  }
}

.btn-accent._mobile {
  display: none;
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 1200px) {
  .btn-accent._mobile {
    display: block;
  }
}

.btn-main {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  color: #FFF;
  padding: 30px 0;
  background: linear-gradient(180deg, #ffc179 0%, #ff6200 100%);
  border: none;
  border-radius: 10rem;
  transition: 0.2s;
}

@media (any-hover: hover) {
  .btn-main:hover {
    color: #FFF;
    background-color: var(--main-hover);
  }
}

.play-cover {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(32, 42, 52, 0.6);
}

.play-cover:before,
.play-cover:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  transition: all 0.3s ease;
}

.play-cover:before {
  --size: 70px;
  --bg-circle: transparent;
  background-color: var(--bg-circle);
  border: 0.4rem solid var(--main);
  z-index: 1;
  border-radius: var(--size);
}
@media (max-width: 768px) {
  .play-cover:before {
    --size: 56px;
  }
}

.play-cover:after {
  --size: 25px;
  --path: polygon(17% 0, 17% 100%, 100% 50%);
  --bg-play: var(--main);
  background-color: var(--bg-play);
  clip-path: var(--path);
  -webkit-clip-path: var(--path);
  z-index: 2;
}
@media (max-width: 768px) {
  .play-cover:after {
    --size: 22px;
  }
}

@media (any-hover: hover) {
  .play-cover:hover::before,
  .play-cover:hover::after {
    --bg-circle: var(--main);
    --bg-play: var(--c-surface);
  }
}

.button--wait {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

.link {
  color: var(--accent);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, var(--accent) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr=var(--accent), GradientType=0);
  background-repeat: repeat-x;
  background-position: 0 84%;
  background-size: 1px 1px;
  transition: 0.2s;
}
.link:hover {
  color: var(--accent-hover);
}

.link--phone::before {
  background-image: url("/local/templates/main/css/../images/phone.svg");
}

.link--mail::before {
  background-image: url("/local/templates/main/css/../images/mail.svg");
}

.link--geo::before {
  background-image: url("/local/templates/main/css/../images/geo.svg");
}

.link--geo,
.link--phone,
.link--mail {
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  background: none;
}

.link--geo::before,
.link--phone::before,
.link--mail::before {
  content: "";
  display: block;
  width: 1em;
  min-width: 1em;
  height: 1em;
  margin-right: 0.3em;
  margin-top: 0.25em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.input {
  --input-fz: 1.6rem;
  --input-fg: var(--dark);
  --input-bg: #FFF;
  --input-border: 1px solid #BABABA;
  --input-padding: 28px 24px;
  --c-invalid: #ff3b30;
}
@media (max-width: 1536px) {
  .input {
    --input-padding: 28px 30px;
  }
}

.input.is-invalid {
  --input-fg: var(--c-invalid);
  --input-border: 1px solid var(--c-invalid);
}

.input__field {
  width: 100%;
  font-size: var(--input-fz);
  color: var(--input-fg);
  padding: var(--input-padding);
  background-color: var(--input-bg);
  border: var(--input-border);
  border-radius: 2rem;
  box-sizing: border-box;
}

:root {
  --bg-b_modal-overlay: rgba(0, 0, 0, 0.8);
  --c-b_modal-closer-hover: #ff3b30;
  --z-b_modal: 1234567890;
}

.b_modal__storage {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-b_modal);
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.b_modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: var(--bg-b_modal-overlay);
  opacity: 0;
  transition: all 0.3s ease;
}

.b_modal__overlay._show {
  pointer-events: initial;
  opacity: 1;
}

.b_modal__aligner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1em;
}

.b_modal__content {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  transition: all 0.3s ease;
  transform: scale(0.86);
}

._show .b_modal {
  transform: scale(1);
}

.b_modal__closer {
  position: absolute;
  top: 4rem;
  right: 4rem;
  display: block;
  width: 2.5em;
  height: 2.5em;
  font-size: 0;
  background-color: transparent;
  transition: all 0.3s ease;
  --closer-color: #fff;
}

.b_modal__closer::before,
.b_modal__closer::after {
  position: absolute;
  top: 48%;
  left: 0;
  display: block;
  width: 100%;
  height: 10%;
  content: "";
  background-color: var(--closer-color);
  border-radius: 1em;
  transition: all 0.3s ease;
}

.b_modal__closer::before {
  transform: rotate(45deg);
}

.b_modal__closer::after {
  transform: rotate(-45deg);
}

.b_modal__closer:hover::before,
.b_modal__closer:hover::after {
  background-color: var(--c-b_modal-closer-hover);
}

.b_modal__closer {
  --closer-color: var(--c-text-regular);
  font-size: 1rem;
  color: transparent;
  background-color: var(--bg-b_modal);
  border-radius: var(--radius-b_modal);
}

.b_modal__closer::before,
.b_modal__closer::after {
  top: 44%;
  right: 0;
  width: 80%;
  height: 8%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .b_modal__closer::before,
  .b_modal__closer::after {
    top: 46%;
    width: 70%;
  }
}

.b_modal--scrollable {
  padding-bottom: 0;
}

.b_modal--scrollable .b_modal__aligner {
  align-items: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
}

.bayan {
  overflow: hidden;
  transition: all 0.4s;
}

.bayan__top {
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.bayan__bottom {
  transition: all 0.4s;
  opacity: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  grid-template-rows: 0fr;
  display: grid;
}

.bayan__bottom > * {
  min-height: 0;
  transition: var(--tr-regular);
}

.bayan:not(.bayan--opened) .bayan__bottom > * {
  padding-top: 0;
  padding-bottom: 0;
}

.bayan__bottom--absolute {
  position: absolute;
}

.bayan--opened .bayan__bottom {
  opacity: 1;
  grid-template-rows: 1fr;
}

.bayan__toggler {
  --line-width: 100%;
  --line-height: 0.4rem;
  --closer-width: 3rem;
  --closer-height: 3rem;
  position: relative;
  width: var(--closer-width, 3rem);
  height: var(--closer-height, 3rem);
  transition: var(--tr);
  transform-origin: center;
  background: transparent;
}
@media (max-width: 992px) {
  .bayan__toggler {
    --closer-width: 1.6rem;
    --closer-height: 1.6rem;
    --line-height: 0.2rem;
  }
}

.bayan__toggler:before,
.bayan__toggler:after {
  content: "";
  position: relative;
  top: 50%;
  left: 50%;
  display: block;
  background: var(--togler-color, #202A34);
  transition: var(--tr);
  border-radius: 2rem;
}

.bayan__toggler:before {
  width: var(--line-width, 40%);
  height: var(--line-height, 0.2rem);
}

.bayan__toggler:after {
  width: var(--line-height, 0.2rem);
  height: var(--line-width, 40%);
}

.bayan__toggler:before {
  transform: translate(-50%, -50%);
}

.bayan__toggler:after {
  transform: translate(-50%, -60%);
}

.bayan--opened .bayan__toggler:before {
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--togler-color, #fff);
}

.bayan--opened .bayan__toggler:after {
  transform: translate(-50%, -60%) rotate(45deg);
  background: var(--togler-color, #fff);
}

.bayan--toggler-angle .bayan__toggler {
  --line-width: 80%;
  transform: scale(0.9, 0.8);
}
.bayan--toggler-angle .bayan__toggler:before {
  transform: rotate(50deg);
  top: 0;
  left: 0;
  width: var(--line-width, 40%);
  height: var(--line-height, 0.2rem);
}
.bayan--toggler-angle .bayan__toggler:after {
  transform: rotate(-50deg);
  top: -10%;
  right: -50%;
  left: unset;
  width: var(--line-width, 40%);
  height: var(--line-height, 0.2rem);
}

.bayan--toggler-angle.bayan--opened .bayan__toggler {
  transform: scale(0.9, 0.8) rotate(180deg);
}

@media (max-width: 768px) {
  .modal {
    padding: 28px 20px;
  }
}
@media (max-width: 690px) {
  .modal {
    max-width: 100%;
    padding: 28px 15px;
  }
}
@media (max-width: 360px) {
  .modal {
    padding: 20px 15px;
  }
}

.modal-header {
  display: flex;
  gap: 32px;
}
@media (max-width: 1380px) {
  .modal-header {
    display: flex;
    gap: 32px;
  }
}
@media (max-width: 690px) {
  .modal-header {
    gap: 24px;
  }
}

.modal-header {
  justify-content: end;
}
@media (max-width: 1380px) {
  .modal-header {
    display: flex;
    gap: 32px;
  }
}

.header-mobile__btn {
  flex-basis: 60px;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid var(--light-gray);
  border-radius: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.modal-header__btn {
  flex-basis: 60px;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #FFF;
}

.modal-header__close {
  background-color: var(--main);
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  transition: 0.3s;
  display: flex;
  justify-content: end;
  visibility: hidden;
  transition: 0.2s;
}

.modal {
  background-color: #F0F0F2;
  padding: 28px 80px;
  position: relative;
  height: 100vh;
  max-width: 467px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: auto;
}

.modal-menu {
  font-size: 4rem;
  flex-grow: 1;
}
@media (max-width: 690px) {
  .modal-menu {
    font-size: 2.4rem;
  }
}

.modal-menu > a {
  display: block;
}

.modal-menu > a + a {
  margin-top: 32px;
}
@media (max-width: 690px) {
  .modal-menu > a + a {
    margin-top: 24px;
  }
}

.modal__btn {
  background-color: var(--accent);
  border-radius: 10rem;
  border: none;
  padding: 30px 0;
  display: block;
  width: 100%;
  color: #FFF;
  font-size: 16px;
}
@media (max-width: 690px) {
  .modal__btn {
    padding: 20px 30px;
  }
}

.modal__btn > span {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #FFF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr=#FFF, GradientType=0);
  background-repeat: repeat-x;
  background-position: 0 85%;
  background-size: 1px 1px;
}

.modal-form {
  background-color: var(--c-surface);
  border-radius: 30px;
  padding: 40px;
  color: var(--dark);
}
@media (max-width: 450px) {
  .modal-form {
    padding: 32px 20px;
  }
}

.modal-form__head {
  margin-bottom: 32px;
}
@media (max-width: 450px) {
  .modal-form__head {
    margin-bottom: 24px;
  }
}

.modal-form__title {
  font-size: 40px;
  line-height: 1.35;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 450px) {
  .modal-form__title {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

@media (max-width: 450px) {
  .modal-form__title br {
    display: none;
  }
}

.modal-form__desc {
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
}
@media (max-width: 450px) {
  .modal-form__desc {
    font-size: 14px;
  }
}

@media (max-width: 450px) {
  .modal-form__desc br {
    display: none;
  }
}

.modal-form .b_modal__closer {
  --closer-color: #BABABA;
  top: 27px;
  right: 27px;
}
@media (max-width: 690px) {
  .modal-form .b_modal__closer {
    top: 12px;
    right: 12px;
  }
}

.modal-form .b_modal__closer::before,
.modal-form .b_modal__closer::after {
  height: 12%;
}

.modal-service {
  max-width: 70rem;
}
@media (max-width: 992px) {
  .modal-service {
    max-width: 40rem;
  }
}
@media (max-width: 690px) {
  .modal-service {
    max-width: 90%;
  }
}

@media (max-width: 992px) {
  .modal-service .modal-form__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 690px) {
  .modal-service .modal-form__title {
    font-size: 2rem;
  }
}

.modal-service__name br {
  display: none;
}

.form__fieldset {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 0;
}

.form__hidden {
  display: none;
  appearance: none;
  visibility: hidden;
}

.form-vertical {
  display: grid;
  gap: 20px;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .form-vertical {
    gap: 22px;
    margin-bottom: 0;
  }
}
@media (max-width: 450px) {
  .form-vertical {
    gap: 14px;
  }
}

.form__agree {
  color: var(--light-gray);
  font-size: 1.2rem;
}
@media (max-width: 1100px) {
  .form__agree {
    display: block;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 450px) {
  .form__agree {
    font-size: 1rem;
  }
}

.form__agree > a {
  border-bottom: 1px solid var(--light-gray);
  transition: 0.2s;
}

.form__agree > a:hover {
  border-bottom: 1px solid transparent;
}

.reivew-card__profile {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 1536px) {
  .reivew-card__profile {
    margin-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .reivew-card__profile {
    margin-bottom: 10px;
  }
}

.review-card__profile-pic {
  --size: 68px;
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  border-radius: var(--size);
  margin-right: 20px;
}
@media (max-width: 450px) {
  .review-card__profile-pic {
    --size: 48px;
    margin-right: 16px;
  }
}

.review-card__profile-img {
  border-radius: inherit;
}

.review-card__profile-name {
  margin-bottom: 6px;
  color: #1F2B3D;
  font-size: 1.6rem;
  line-height: 1.5;
  text-shadow: 0 0 1px #1f2b3d;
  font-weight: 500;
}
@media (max-width: 450px) {
  .review-card__profile-name {
    font-size: 1.4rem;
  }
}

.review-card__profile-date {
  color: #8A9099;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (max-width: 450px) {
  .review-card__profile-date {
    font-size: 1.2rem;
  }
}

@media (max-width: 450px) {
  .review-card__profile-user {
    margin-bottom: 8px;
  }
}

.review-card__profile-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 9px;
}
@media (max-width: 450px) {
  .review-card__profile-meta {
    flex-direction: column;
    padding-top: 0;
  }
}

.review-card__profile-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: auto;
}

.review-card__profile-stars {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}

.review-card__profile-star {
  --size: 19px;
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  margin-left: 6px;
}
@media (max-width: 450px) {
  .review-card__profile-star {
    --size: 11px;
    margin-left: 5px;
  }
}

.review-card__profile-star:first-child {
  margin-left: 0;
}

.reviews-card__profile-source {
  height: 2rem;
}
@media (max-width: 450px) {
  .reviews-card__profile-source {
    display: none;
  }
}

.review-card__title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 135%;
  color: var(--dark);
}
@media (max-width: 450px) {
  .review-card__title {
    font-size: 1.8rem;
    max-width: 85%;
  }
}

.review-card__desc {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #202A34;
}
@media (max-width: 1536px) {
  .review-card__desc {
    max-width: 90%;
  }
}

.review-card__full {
  position: relative;
  display: inline-block;
  padding-right: 3rem;
  transition: 0.2s;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.review-card__full .button__text {
  border-bottom: 1px solid;
}

@media (any-hover: hover) {
  .review-card__full:hover {
    color: var(--accent);
  }
}

.review-card__full::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
  -webkit-mask-image: url(/local/templates/main/css/../images/arrow.svg);
  background-color: var(--dark);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  display: block;
  width: 24px;
  height: 24px;
  transform: scaleY(-1);
  transition: 0.2s;
}

.review-card__full:hover::after {
  transform: rotate(90deg) scaleY(-1);
  background-color: var(--accent);
}

.video {
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  padding-top: 44%;
}
@media (max-width: 1536px) {
  .video {
    padding-top: 46.9%;
  }
}
@media (max-width: 962px) {
  .video {
    padding-top: 82.5%;
  }
}
@media (max-width: 450px) {
  .video {
    padding-top: 91%;
  }
}

.video__preview-pic {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video__preview-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map {
  position: relative;
  min-height: 600px;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 690px) {
  .map {
    min-height: 400px;
  }
}

.map__content {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.map__content > * {
  width: 100%;
  height: 100%;
}

@font-face {
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url("/local/templates/main/css/../resources/fonts/gothampro/gothampro.woff2") format("woff2"), url("/local/templates/main/css/../resources/fonts/gothampro/gothampro.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url("/local/templates/main/css/../resources/fonts/gothampro/gothampro-bold.woff2") format("woff2"), url("/local/templates/main/css/../resources/fonts/gothampro/gothampro-bold.woff") format("woff");
  font-display: swap;
}
:root {
  --ff-regular: "Gotham Pro", sans-serif;
  --gap: 32px;
}
@media (max-width: 1440px) {
  :root {
    --gap: 24px;
  }
}

html {
  font-size: 10px;
}

body {
  font: 400 1.8rem/2rem var(--ff-regular);
  color: var(--dark);
  line-height: 1.45;
  margin: 0;
}

body._lock {
  overflow: hidden;
  touch-action: none;
}

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

button {
  cursor: pointer;
}

input,
button {
  font-family: var(--ff-regular);
}

input:focus,
button:focus {
  outline: none;
}

input::placeholder {
  color: var(--light-gray);
}

h1,
h2,
h3 {
  margin: 0;
}

.center {
  text-align: center;
}

.title-h1 {
  font-size: 7.2rem;
  font-weight: 600;
  line-height: 1.35;
}
@media (max-width: 1800px) {
  .title-h1 {
    font-size: 6.8rem;
  }
}
@media (max-width: 1536px) {
  .title-h1 {
    font-size: 5.4rem;
  }
}
@media (max-width: 962px) {
  .title-h1 {
    font-size: 5rem;
  }
}
@media (max-width: 450px) {
  .title-h1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 330px) {
  .title-h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 450px) {
  #alp .title-h1 {
    font-size: 2.8rem;
  }
}

.title-h2 {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.35;
}
@media (max-width: 1536px) {
  .title-h2 {
    font-size: 5rem;
  }
}
@media (max-width: 962px) {
  .title-h2 {
    font-size: 4.8rem;
  }
}
@media (max-width: 690px) {
  .title-h2 {
    font-size: 2.6rem;
  }
}

.title-h3 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.25;
}

/**
 * Swiper 9.2.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 21, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper, swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide, swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.staff .swiper-button-next, .staff .swiper-button-prev {
  top: 220px;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next::before,
.swiper-button-prev::before {
  content: '';
  display: block;
  background-color: var(--accent);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  position: absolute;
  transition: 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet, :host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification, swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.carousel {
  position: relative;
  box-sizing: border-box;
}

.carousel *, .carousel *:before, .carousel *:after {
  box-sizing: inherit;
}

.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__image {
  transform-origin: 0 0;
  user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__iframe {
  border: 0;
  display:block;
  height:100%;
  width:100%;
  background:rgba(0, 0, 0, 0)
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
  width: 960px;
  aspect-ratio: 16 / 9;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.006) 8.1%, hsla(0, 0%, 0%, 0.021) 15.5%, hsla(0, 0%, 0%, 0.046) 22.5%, hsla(0, 0%, 0%, 0.077) 29%, hsla(0, 0%, 0%, 0.114) 35.3%, hsla(0, 0%, 0%, 0.155) 41.2%, hsla(0, 0%, 0%, 0.198) 47.1%, hsla(0, 0%, 0%, 0.242) 52.9%, hsla(0, 0%, 0%, 0.285) 58.8%, hsla(0, 0%, 0%, 0.326) 64.7%, hsla(0, 0%, 0%, 0.363) 71%, hsla(0, 0%, 0%, 0.394) 77.5%, hsla(0, 0%, 0%, 0.419) 84.5%, hsla(0, 0%, 0%, 0.434) 91.9%, hsla(0, 0%, 0%, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: flex;
}

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

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  user-select: none;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

header {
  background-color: var(--c-surface);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header {
  display: flex;
  align-items: center;
  padding: 28px 0;
  font-size: 1.6rem;
}
@media (max-width: 1580px) {
  .header {
    font-size: 1.4rem;
  }
}
@media (max-width: 1380px) {
  .header {
    justify-content: space-between;
  }
}
@media (max-width: 360px) {
  .header {
    padding: 20px 0;
  }
}

.header__logo {
  margin-right: 3.5rem;
  mix-blend-mode: multiply;
}
@media (max-width: 1536px) {
  .header__logo {
    margin-right: 2rem;
  }
}
@media (max-width: 962px) {
  .header__logo {
    margin-right: 0;
  }
}
@media (max-width: 450px) {
  .header__logo {
    position: relative;
    z-index: 3;
  }
}

.header__menu {
  flex-grow: 1;
}
@media (max-width: 1280px) {
  .header__menu {
    position: fixed;
    width: 100%;
    z-index: 2;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    background: rgba(31, 31, 31, 0);
    pointer-events: none;
    transition: all 0.3s ease;
  }
}

@media (max-width: 1280px) {
  .header--opened .header__menu {
    background: rgba(31, 31, 31, 0.7);
  }
}

@media (max-width: 1280px) {
  .header__menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--bg-card);
    max-width: 467px;
    width: 100%;
    height: 100%;
    padding: 223px 20px 30px 74px;
    transition: inherit;
    transform: translateX(150vw);
    pointer-events: auto;
    overflow: auto;
  }
}
@media (max-width: 450px) {
  .header__menu-inner {
    padding-top: 118px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.header--opened .header__menu-inner {
  transform: translateX(0);
}

.header__nav {
  pointer-events: initial;
  display: flex;
}
@media (max-width: 1280px) {
  .header__nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

.header__nav-link {
  transition: 0.2s;
  margin-right: 1.6rem;
  text-transform: uppercase;
}
@media (max-width: 1536px) {
  .header__nav-link {
    margin-right: 0.6rem;
  }
}
@media (max-width: 1280px) {
  .header__nav-link {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 3.2rem;
    margin-right: 0;
  }
}
@media (max-width: 450px) {
  .header__nav-link {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
}

.header__nav-link.active {
  color: var(--accent);
  border-bottom: 1px solid;
}

@media (any-hover: hover) {
  .header__nav-link:hover {
    color: var(--accent);
  }
}

.header__button-callback {
  pointer-events: initial;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1281px) {
  .header__button-callback {
    display: none;
  }
}
@media (max-width: 450px) {
  .header__button-callback {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.header__img {
  height: 55px;
}
@media (max-width: 1536px) {
  .header__img {
    height: 43px;
  }
}
@media (max-width: 690px) {
  .header__img {
    height: 47px;
  }
}
@media (max-width: 360px) {
  .header__img {
    height: 34px;
  }
}

.header__info {
  display: flex;
  align-items: center;
}
@media (max-width: 1100px) {
  .header__info {
    display: none;
  }
}

.header__info .link {
  margin-right: 3.2rem;
}
@media (max-width: 1536px) {
  .header__info .link {
    margin-right: 2.4rem;
  }
}
@media (max-width: 1100px) {
  .header__info .link {
    margin-right: 0;
  }
}

.header__btn {
  padding-top: 19px;
  padding-bottom: 19px;
  background: linear-gradient(180deg, #8ecbfa 0%, #008eff 100%);
  color: white;
  border: none;
  font-weight: 600;
}
.header__btn:hover {
  color: #FFF;
  opacity: 0.8;
  background: linear-gradient(180deg, #8ecbfa 0%, #008eff 100%);
}

.header-mobile {
  display: none;
  z-index: 2;
}
@media (max-width: 1280px) {
  .header-mobile {
    display: flex;
    gap: 10px;
  }
}

.header-mobile__btn {
  background-color: var(--c-surface);
}

.header--opened .header-mobile__btn {
  border-color: transparent;
}

.burger.is-active {
  --c-burger-line: var(--fg-text-on);
  background: var(--main);
}

.header__nav-dropdown {
  position: relative;
  margin-right: 3.2rem;
}
@media (max-width: 1536px) {
  .header__nav-dropdown {
    margin-right: 2.7rem;
  }
}
@media (max-width: 1280px) {
  .header__nav-dropdown {
    margin-bottom: 3.2rem;
    margin-right: 0;
  }
}
@media (max-width: 450px) {
  .header__nav-dropdown {
    margin-bottom: 2.4rem;
  }
}

.header__nav-dropdown > .header__nav-link {
  margin-right: 2rem;
}

.header__nav-dropdown::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  right: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  transition: var(--tr);
  transform: rotate(90deg);
  background-image: url("/local/templates/main/css/../images/link-angle-accent.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1280px) {
  .header__nav-dropdown::after {
    display: none;
  }
}

.header__nav-dropdown:hover::after {
  transform: rotate(-90deg);
}

@media (min-width: 1281px) {
  .header__nav-dropdown-menu {
    padding-top: 6.1rem;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transform: translateY(2rem);
  }
}

.header__nav-dropdown-menu-inner {
  background-color: #fff;
  padding: 2.4rem 1.6rem;
  border-radius: 1rem;
  transition: var(--tr);
}
@media (max-width: 1280px) {
  .header__nav-dropdown-menu-inner {
    min-width: 20rem;
    padding-top: 0.8rem;
    padding-left: 2.8rem;
    background-color: transparent;
  }
}

.header__nav-dropdown-menu .header__nav-link {
  display: block;
  font-weight: 400;
  margin-right: 0;
  margin-bottom: 1em;
}
@media (max-width: 1280px) {
  .header__nav-dropdown-menu .header__nav-link {
    margin-bottom: 0.2em;
    font-size: 2.6rem;
    position: relative;
  }
}
@media (max-width: 690px) {
  .header__nav-dropdown-menu .header__nav-link {
    font-size: 2rem;
  }
}

@media (max-width: 1280px) {
  .header__nav-dropdown-menu .header__nav-link::before {
    content: "";
    display: block;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 0.6rem;
    position: absolute;
    left: -0.7em;
    top: 0.56em;
    background: var(--accent);
  }
}
@media (max-width: 690px) {
  .header__nav-dropdown-menu .header__nav-link::before {
    top: 0.55em;
  }
}

.header__nav-dropdown-menu .header__nav-link:last-child {
  margin-bottom: 0;
}

.header__nav-dropdown:hover .header__nav-dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: initial;
}

.footer {
  background-color: var(--light);
  position: relative;
  border-radius: 10rem 10rem 0 0;
  max-width: 1920px;
  margin: 0 auto;
  font-size: 1.6rem;
}
@media (max-width: 690px) {
  .footer {
    border-radius: 6rem 6rem 0 0;
    padding-bottom: 0;
  }
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 50px 0;
}
@media (min-width: 1537px) {
  .footer-top {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 992px) {
  .footer-top {
    flex-wrap: wrap;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 992px) and (min-width: 691px) {
  .footer-top {
    padding-top: 12rem;
  }
}

.footer-top__logo {
  display: block;
  height: 14.5rem;
  margin-right: 11.7rem;
  margin-top: 4rem;
}
@media (max-width: 1536px) {
  .footer-top__logo {
    margin-top: 0;
    margin-right: 6.7rem;
  }
}
@media (max-width: 992px) {
  .footer-top__logo {
    height: 10.7rem;
    margin-bottom: 11.7rem;
    margin-right: auto;
  }
}
@media (max-width: 690px) {
  .footer-top__logo {
    margin-left: 0;
    margin-bottom: 5rem;
    height: 9.4rem;
  }
}

.footer-top__img {
  width: 100%;
  height: 100%;
  margin-right: auto;
}

.footer-top__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  font-weight: 600;
  margin-right: 2rem;
}
@media (max-width: 690px) {
  .footer-top__nav {
    order: 3;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding-top: 4rem;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #BFCEE3;
  padding: 50px 0;
}
@media (max-width: 690px) {
  .footer-bottom {
    flex-wrap: wrap;
  }
}

.footer-bottom__address {
  display: flex;
  align-items: center;
}

.footer-bottom__address span:not(:last-child) {
  margin-right: 32px;
}
@media (max-width: 1536px) {
  .footer-bottom__address span:not(:last-child) {
    margin-right: 24px;
  }
}
@media (max-width: 768px) {
  .footer-bottom__address span:not(:last-child) {
    margin-right: 15px;
  }
}
@media (max-width: 450px) {
  .footer-bottom__address span:not(:last-child) {
    margin-bottom: 28px;
    line-height: 1.25;
  }
}

.footer-bottom__docs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 690px) {
  .footer-bottom__docs {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 450px) {
  .footer-bottom__docs {
    padding-bottom: 22px;
  }
}

.footer-top__info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 992px) {
  .footer-top__info {
    max-width: 20rem;
  }
}
@media (max-width: 450px) {
  .footer-top__info {
    padding-bottom: 15px;
  }
}

.footer-top__info > * {
  display: block;
}

@media (max-width: 768px) {
  .footer-top__info .link {
    font-size: 1.6rem;
  }
}
@media (max-width: 450px) {
  .footer-top__info .link {
    margin-right: 0;
    margin-bottom: 22px;
  }
}

.footer-top__info .link:not(:last-child) {
  margin-right: 32px;
}
@media (max-width: 1536px) {
  .footer-top__info .link:not(:last-child) {
    margin-right: 24px;
  }
}

.footer-top__nav-link,
.footer-bottom__docs-link {
  transition: var(--tr);
}
@media (max-width: 768px) {
  .footer-top__nav-link,
  .footer-bottom__docs-link {
    font-size: 1.6rem;
  }
}
@media (max-width: 450px) {
  .footer-top__nav-link,
  .footer-bottom__docs-link {
    margin-bottom: 2.4rem;
    line-height: 1.25;
  }
}

.footer-bottom__docs-link {
  margin-right: 3.2rem;
}
@media (max-width: 1536px) {
  .footer-bottom__docs-link {
    margin-right: 2.4rem;
  }
}
@media (max-width: 768px) {
  .footer-bottom__docs-link {
    margin-right: 0;
  }
}

.footer-bottom__docs-link:last-child {
  margin-right: 0;
}

@media (any-hover: hover) {
  .footer-top__nav-link:hover,
  .footer-bottom__docs-link:hover {
    color: var(--accent);
  }
}

.footer-bottom__socials {
  margin-left: auto;
  --icons-size: 4rem;
}
@media (max-width: 690px) {
  .footer-bottom__socials {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 690px) {
  .footer-bottom__socials > * {
    margin-bottom: 1.2rem;
  }
}

.footer__menu {
  margin-right: 8.9rem;
  max-width: 31.2rem;
}
@media (max-width: 1536px) {
  .footer__menu {
    margin-right: 6rem;
  }
}
@media (max-width: 992px) {
  .footer__menu {
    margin-right: 3rem;
    max-width: 28rem;
  }
}
@media (max-width: 630px) {
  .footer__menu {
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 3rem;
  }
}

@media (max-width: 992px) {
  .footer__menu:first-of-type {
    margin-right: 0;
    max-width: 24rem;
  }
}
@media (min-width: 691px) and (max-width: 992px) {
  .footer__menu:first-of-type {
    margin-bottom: 3rem;
  }
}

.footer__menu:last-of-type {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 992px) {
  .footer__menu:last-of-type {
    margin-right: auto;
  }
}

.footer__menu-title {
  font-size: 2.2rem;
  margin-bottom: 3.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 27.5px */
}
@media (max-width: 690px) {
  .footer__menu-title {
    margin-bottom: 2.2rem;
  }
}

.footer__menu-item {
  font-size: 1.6rem;
  margin-bottom: 2.1rem;
}
@media (max-width: 690px) {
  .footer__menu-item {
    margin-bottom: 1.5rem;
  }
}

.hero {
  background-color: #f0f2f5;
}

.hero__thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 1000px;
}
@media (max-width: 1800px) {
  .hero__thumb {
    min-height: 800px;
  }
}
@media (max-width: 1536px) {
  .hero__thumb {
    min-height: 600px;
  }
}
@media (max-width: 1100px) {
  .hero__thumb {
    min-height: initial;
    background-image: url(/local/templates/main/css/../images/bg-thumb.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #d6e6f2;
    padding-bottom: 12vw;
  }
}
@media (max-width: 992px) {
  .hero__thumb {
    padding-bottom: 0;
  }
}
.hero--no-bullets .hero__thumb {
  min-height: initial;
  padding-bottom: 318px;
}
@media (min-width: 1280px) {
  .hero--no-bullets .hero__thumb {
    min-height: 440px;
  }
}
@media (max-width: 1536px) {
  .hero--no-bullets .hero__thumb {
    padding-bottom: 180px;
  }
}
@media (max-width: 962px) {
  .hero--no-bullets .hero__thumb {
    padding-bottom: 20px;
  }
}
@media (max-width: 690px) {
  .hero--no-bullets .hero__thumb {
    padding-bottom: 90px;
  }
}

@media (max-width: 992px) {
  .hero--thumb-half .hero__thumb {
    padding-bottom: 0;
  }
}
@media (max-width: 1100px) {
  .hero--thumb-half .hero__thumb {
    background-image: none;
  }
}

@media (max-width: 992px) {
  .hero--has-breadcrumbs .hero__thumb {
    padding-bottom: 12rem;
  }
}

@media (max-width: 450px) {
  .hero__thumb p {
    max-width: 300px;
  }
}

.hero__pic {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/*.main-page .hero__img {*/
/*  object-position: 60% -140px;*/
/*}*/

.hero__worker {
  display: none;
}
@media (max-width: 1100px) {
  .hero__pic {
    display: none;
  }
}
@media (max-width: 1100px) {
  .hero__worker {
    position: relative;
    display: block;
    margin: 0 auto;
    height: auto;
    width: 100%;
    max-width: none;
    z-index: 2;
  }
}
@media (max-width: 768px) {
  .hero__worker {
    margin: 0 -30px;
    width: calc(100% + 60px);
  }
}

.hero__worker-img {
  display: block;
  width: 100%;
  height: 100%;
  object-position: bottom;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero--thumb-half .hero__worker {
  position: static;
  width: 100%;
  margin-top: 80px;
}
@media (max-width: 690px) {
  .hero--thumb-half .hero__worker {
    margin-top: 60px;
  }
}

.hero--thumb-half .hero__worker-img {
  object-fit: cover;
}

.hero__container {
  padding-top: 3rem;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__container {
    padding-top: 1.6rem;
  }
}

.container_about {
  padding-top: 3rem;
}
@media (max-width: 768px) {
  .container_about {
    padding-top: 1.6rem;
  }
}

.hero__title {
  padding-top: 11.5rem;
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 26px;
}
@media (max-width: 1536px) {
  .hero__title {
    max-width: 718px;
    padding-top: 79px;
  }
}
@media (max-width: 1100px) {
  .hero__title {
    max-width: 560px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    padding-top: 85px;
  }
}
@media (max-width: 690px) {
  .hero__title {
    padding-top: 50px;
  }
}
@media (max-width: 450px) {
  .hero__title {
    max-width: 380px;
  }
}

@media (max-width: 1100px) {
  .hero__title br {
    display: none;
  }
}

.hero--no-bullets .hero__title {
  max-width: 1100px;
  margin-bottom: 16px;
  padding-top: 150px;
}
@media (max-width: 1800px) {
  .hero--no-bullets .hero__title {
    max-width: 800px;
    padding-top: 98px;
  }
}
@media (max-width: 962px) {
  .hero--no-bullets .hero__title {
    padding-top: 92px;
  }
}
@media (max-width: 690px) {
  .hero--no-bullets .hero__title {
    padding-top: 50px;
  }
}

.hero--has-breadcrumbs .hero__title {
  padding-top: 9.2rem;
}
@media (max-width: 1536px) {
  .hero--has-breadcrumbs .hero__title {
    padding-top: 5rem;
  }
}
@media (max-width: 768px) {
  .hero--has-breadcrumbs .hero__title {
    padding-top: 4.6rem;
  }
}
@media (max-width: 690px) {
  .hero--has-breadcrumbs .hero__title {
    padding-top: 3.2rem;
  }
}

@media (max-width: 690px) {
  .hero__title ._desktop {
    display: none;
  }
}

.hero--privacy .hero__title {
  font-size: 3.6rem;
}
@media (max-width: 690px) {
  .hero--privacy .hero__title {
    font-size: 2.8rem;
  }
}

.hero__title ._mobile {
  display: none;
}
@media (max-width: 690px) {
  .hero__title ._mobile {
    display: inline-block;
  }
}

.hero__desc {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  max-width: 700px;
}
@media (max-width: 450px) {
  .hero__desc {
    font-size: 1.82rem;
  }
}

@media (max-width: 1100px) {
  .hero__desc br {
    display: none;
  }
}

.hero__title + p,
.hero__desc + p {
  max-width: 62rem;
}
@media (max-width: 1280px) {
  .hero__title + p,
  .hero__desc + p {
    max-width: 50rem;
  }
}
@media (max-width: 450px) {
  .hero__title + p,
  .hero__desc + p {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero__title + p br,
  .hero__desc + p br {
    display: none;
  }
  .main-page .container.hero__container > p, .services-page .container.hero__container > p, .project-page .container.hero__container > p, .news-page .container.hero__container > p{
    max-width: 250px;
    font-size: 2rem;
  }
  .main-page .hero__worker, .services-page .hero__worker, .project-page .hero__worker, .news-page .hero__worker{
    height: 320px;
  }
  .main-page .hero__worker-img {
    height: 130%;
    transform: translate(60px, -22%);
    object-fit: cover;
    object-position: left top;
  }
  .services-page .hero__worker-img {
    height: 130%;
    transform: translate(-10px, -22%);
    object-fit: cover;
    object-position: 50% top;
  }
  .project-page .hero__worker-img {
    height: 116%;
    transform: translate(80px, -8%);
    object-fit: cover;
    object-position: 50% top;
  }
  .news-page .hero__worker-img {
    height: 130%;
    transform: translate(-10px, -22%);
    object-fit: cover;
    object-position: center top;
  }
}

.hero__buttons {
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .hero__buttons {
    margin-top: 46px;
  }
}
@media (max-width: 690px) {
  .hero__buttons {
    margin-top: 32px;
    margin-bottom: 0;
  }
}

.hero__form {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 32px;
  max-width: 543px;
}
@media (max-width: 1100px) {
  .hero__form {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .hero__form {
    max-width: 100%;
    grid-template-columns: 100%;
    margin-top: 16px;
    display: grid;
  }
}
@media (max-width: 690px) {
  .hero__form {
    gap: 24px;
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.hero__btn {
  display: inline-block;
  font-size: 1.6rem;
  color: #FFF;
  padding: 28px 30px;
  background: linear-gradient(180deg, #ffc179 0%, #ff6200 100%);
  border: none;
  border-radius: 10rem;
  transition: 0.2s;
  text-align: center;
}
@media (max-width: 1100px) {
  .hero__btn {
    display: block;
    flex-basis: auto;
    width: 100%;
  }
}

.hero__btn:hover {
  background-color: var(--main-hover);
}

.hero-info {
  background-color: #FFF;
  margin-top: auto;
  margin-bottom: 70px;
  padding: 8px;
  border-radius: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1536px) {
  .hero-info {
    margin-top: 62px;
    margin-bottom: 60px;
  }
}
@media (max-width: 1368px) {
  .hero-info {
    margin-top: 3vw;
  }
}
@media (max-width: 1100px) {
  .hero-info {
    background-color: transparent;
    margin-top: 60px;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .hero-info {
    margin-bottom: 0;
    padding-bottom: 60px;
  }
}

.hero-info__stroke {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  padding: 42px 20px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='30' ry='30' stroke='%233333' stroke-width='4' stroke-dasharray='15' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
  border-radius: 30px;
  column-gap: 20px;
}
@media (max-width: 1670px) {
  .hero-info__stroke {
    padding: 29px 30px;
  }
}
@media (max-width: 1100px) {
  .hero-info__stroke {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
    background-image: none;
  }
  .experience-info .hero-info__stroke {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='30' ry='30' stroke='%233333' stroke-width='4' stroke-dasharray='15' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
  }
}
@media (max-width: 690px) {
  .hero-info__stroke {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
@media (max-width: 450px) {
  .experience-info .hero-info__stroke {
    background-image: none;
  }
}

.hero-info__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media (max-width: 1670px) {
  .hero-info__item {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .hero-info__item {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-end;
  }
}
@media (max-width: 1368px) {
  .hero-info__item {
    padding: 0 20px;
  }
}
@media (max-width: 1100px) {
  .hero-info__item {
    position: relative;
    background-color: #FFF;
    border-radius: 30px;
    padding: 28px 30px;
    gap: 16px;
    box-sizing: border-box;
  }
}
@media (max-width: 450px) {
  .hero-info__item {
    padding-bottom: 24px;
  }
}

.hero-info__item::after {
  content: "";
  width: 1px;
  height: 100px;
  background-color: var(--light-gray);
  position: absolute;
  top: calc(50% - 50px);
  right: 25px;
}
@media (max-width: 1536px) {
  .hero-info__item::after {
    height: 122px;
    right: 0;
  }
}
@media (max-width: 1100px) {
  .hero-info__item::after {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-info__item::before {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='30' ry='30' stroke='%233333' stroke-width='4' stroke-dasharray='15' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
    border-radius: 30px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    left: 0;
    right: 0;
    top: 8px;
    margin: 0 auto;
    position: absolute;
    pointer-events: none;
  }
}

.hero-info__item:last-child::after {
  display: none;
}

.hero-info__desc {
  flex-basis: 60%;
  margin-right: 0.6rem;
  margin-bottom: auto;
}
@media (max-width: 1670px) {
  .hero-info__desc {
    flex-basis: 67%;
  }
}
@media (max-width: 768px) {
  .hero-info__desc {
    width: 75%;
  }
}
@media (max-width: 450px) {
  .hero-info__desc {
    width: 80%;
  }
}
@media (max-width: 330px) {
  .hero-info__desc {
    width: 90%;
  }
}

.hero-info__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
}
@media (max-width: 1536px) {
  .hero-info__title {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .hero-info__title {
    margin-bottom: 5px;
  }
}

@media (max-width: 1536px) {
  .hero-info__text {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .hero-info__text {
    line-height: 1.45;
  }
}

@media (max-width: 768px) {
  .hero-info__text br {
    display: none;
  }
}

.hero-info__icon {
  --size: 100px;
  flex-basis: var(--size);
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  min-height: var(--size);
  border-radius: 100%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media (max-width: 1670px) {
  .hero-info__icon {
    --size: 58px;
    border: 1px solid var(--accent);
  }
}
@media (max-width: 1100px) {
  .hero-info__icon {
    --size: 60px;
  }
}

.hero-info__icon > img {
  width: 50px;
  height: 50px;
}
@media (max-width: 1670px) {
  .hero-info__icon > img {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 1100px) {
  .hero-info__icon > img {
    width: 30px;
    height: 30px;
  }
}

.hero--contacts .hero__thumb {
  padding-bottom: 383px;
}
@media (max-width: 1100px) {
  .hero--contacts .hero__thumb {
    padding-bottom: 0;
  }
}
@media (max-width: 992px) {
  .hero--contacts .hero__thumb {
    padding-bottom: 5rem;
  }
}

.hero--contacts .hero__title {
  padding-top: 168px;
}
@media (max-width: 1536px) {
  .hero--contacts .hero__title {
    padding-top: 187px;
  }
}
@media (max-width: 1100px) {
  .hero--contacts .hero__title {
    padding-top: 92px;
  }
}
@media (max-width: 690px) {
  .hero--contacts .hero__title {
    padding-top: 50px;
  }
}

.hero--contacts .hero__img {
  object-position: top;
}

.hero--thumb-half .hero__desc + p,
.hero--thumb-half .hero__title {
  max-width: 77rem;
}
@media (max-width: 1536px) {
  .hero--thumb-half .hero__desc + p,
  .hero--thumb-half .hero__title {
    max-width: 60rem;
  }
}
@media (max-width: 1280px) {
  .hero--thumb-half .hero__desc + p,
  .hero--thumb-half .hero__title {
    max-width: 50rem;
  }
}

@media (max-width: 450px) {
  .hero--blog-article .title-h1 {
    font-size: 3rem;
  }
}

.services__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 75px;
}
@media (max-width: 450px) {
  .services__head {
    margin-bottom: 32px;
  }
}

@media (max-width: 330px) {
  .services__head-button {
    font-size: 1.4rem;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.services-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1536px) {
  .services-box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  .services-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .services-box {
    margin-bottom: 80px;
  }
}
@media (max-width: 690px) {
  .services-box {
    grid-template-columns: 100%;
    gap: 24px;
  }
}
@media (max-width: 450px) {
  .services-box {
    margin-bottom: 40px;
  }
}

.services-box__item {
  background-color: #F0F2F5;
  border-radius: 30px;
  padding: 20px;
  padding-bottom: 10px;
  position: relative;
}

@media (max-width: 1440px) {
  .services-box__item:nth-child(10),
  .services-box__item:nth-child(11),
  .services-box__item:nth-child(12) {
    display: none;
  }
}

@media (max-width: 1100px) {
  .services-box__item:nth-child(7),
  .services-box__item:nth-child(8),
  .services-box__item:nth-child(9) {
    display: none;
  }
}

.services-box__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 265px;
  border-radius: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1536px) {
  .services-box__thumb {
    height: 200px;
    margin-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .services-box__thumb {
    height: 190px;
  }
}

.services-box__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  transition: all 0.4s ease;
  transform-origin: center;
}

@media (any-hover: hover) {
  .services-box__item:hover .services-box__img {
    transform: scale(1.2) translate(-50%, -50%);
  }
}

.services-box__title {
  min-height: 60px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 21px;
  max-width: 260px;
}
@media (max-width: 690px) {
  .services-box__title {
    min-height: auto;
  }
}

.services-box__title-link {
  transition: all 0.3s ease;
}

.services-box__title-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .services-box__item:hover .services-box__title-link,
  .services-box__title-link:hover {
    color: var(--accent);
  }
}

.services-box__desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  /* Новые свойства без префикса */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  /* Стандартные свойства */
  display: -moz-box;
  -moz-line-clamp: 4;
  -moz-box-orient: vertical;
  lineamp: 4;
  box-orient: vertical;
  margin-bottom: 2rem;
}

.services-list {
  padding-left: 0;
  list-style-type: none;
}

.services-list__item {
  margin-bottom: 12px;
}

.services-list__link {
  position: relative;
  display: block;
  padding-right: 3rem;
  transition: 0.2s;
}
@media (max-width: 450px) {
  .services-list__link {
    padding-right: 0;
  }
}

@media (any-hover: hover) {
  .services-list__link:hover {
    color: var(--accent);
  }
}

.services-list__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
  -webkit-mask-image: url(/local/templates/main/css/../images/arrow.svg);
  background-color: var(--dark);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  display: block;
  width: 24px;
  height: 24px;
  transition: 0.2s;
}
@media (max-width: 450px) {
  .services-list__link::after {
    content: none;
  }
}

@media (any-hover: hover) {
  .services-list__link:hover::after {
    transform: rotate(-90deg);
    background-color: var(--accent);
  }
}

@media (min-width: 769px) {
  .services__button {
    display: none;
  }
}

.services-highlights {
  margin-bottom: 80px;
}

.services-highlights__title {
  font-weight: 700;
  font-size: 45px;
  margin-bottom: 40px;
}

.services-highlights__gallery {
  position: relative;
}

.services-highlights__gallery .swiper-button-prev, .services-highlights__gallery .swiper-button-next {
  width: 60px;
  height: 60px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  top: 50%;
}

.services-highlights__gallery .swiper-button-prev {
  left: -100px;
}

.services-highlights__gallery .swiper-button-next {
  right: -100px;
}

.services-highlights__gallery .swiper-button-prev:before, .services-highlights__gallery .swiper-button-next:before {
  background-color: var(--accent);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.services-highlights__gallery .swiper-button-prev:hover:before, .services-highlights__gallery .swiper-button-next:hover:before {
  background-color: var(--accent-hover);
}

.services-highlights__gallery .swiper-button-prev:after, .services-highlights__gallery .swiper-button-next:after {
  width: 100%;
  height: 100%;
  background-color: white;
  transition: 0.2s;
}

.services-highlights__gallery .swiper-pagination {
  bottom: -60px;
}

.services-highlights__gallery .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: #6CBFF3;
  opacity: 0.4;
}

.services-highlights__gallery .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 767px) {
  .services-highlights__gallery .swiper-pagination {
    bottom: -40px;
  }

  .services-highlights__gallery .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }


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

.services-highlights__pic {
  height: 218px;
}

.services-highlights__link {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.services-highlights__img {
  border-radius: inherit;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.services-box__media {
  display: block;
}

.consultation__container {
  background-image: url("/local/templates/main/css/../images/city.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 30px;
  padding: 120px 30px;
}
@media (max-width: 1536px) {
  .consultation__container {
    padding: 50px;
    max-width: 1280px;
  }
}
@media (max-width: 1100px) {
  .consultation__container {
    background: none;
    padding: 0;
  }
}

.consultation__bg {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background: var(--accent-gradient);
  border-radius: 30px;
  color: #FFF;
  padding: 80px 60px;
  box-sizing: border-box;
}
@media (max-width: 1536px) {
  .consultation__bg {
    align-items: center;
    max-width: 1060px;
    padding: 3vw 5vw;
    gap: 4vw;
  }
}
@media (max-width: 992px) {
  .consultation__bg {
    display: grid;
    justify-content: initial;
    align-items: flex-start;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .consultation__bg {
    padding: 40px;
    padding-bottom: 60px;
  }
}
@media (max-width: 690px) {
  .consultation__bg {
    padding: 40px 20px;
    gap: 34px;
  }
}

.contacts__map-container .consultation__bg {
  gap: 0;
  padding: 0;
  background: transparent;
}
@media (min-width: 691px) {
  .contacts__map-container .consultation__bg {
    flex-direction: column;
  }
}
.consultation__content {
  flex-basis: 416px;
}
@media (max-width: 1536px) {
  .consultation__content {
    flex-basis: 340px;
  }
}
@media (max-width: 1100px) {
  .consultation__content {
    flex-basis: auto;
  }
}

.contacts__map-container .consultation__content {
  flex-basis: initial;
  margin-bottom: 5rem;
}

.consultation__title {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media (max-width: 1536px) {
  .consultation__title {
    font-size: 4rem;
  }
}
@media (max-width: 1100px) {
  .consultation__title {
    max-width: 4.8rem;
    max-width: 37rem;
  }
}
@media (max-width: 768px) {
  .consultation__title {
    font-size: 4.8rem;
  }
}
@media (max-width: 690px) {
  .consultation__title {
    font-size: 3.2rem;
    margin-bottom: 14px;
  }
}
@media (max-width: 450px) {
  .consultation__title {
    font-size: clamp(2.8rem, 9vw, 3.2rem);
  }
}

.contacts__map-container .consultation__title {
  margin-right: -1rem;
}
@media (max-width: 1800px) {
  .contacts__map-container .consultation__title {
    font-size: 3.8rem;
  }
}

.consultation__text {
  max-width: 360px;
}
@media (max-width: 1536px) {
  .consultation__text {
    font-size: 1.8rem;
  }
}
@media (max-width: 1100px) {
  .consultation__text {
    font-size: 1.6rem;
    margin-bottom: 0;
    max-width: 450px;
  }
}
@media (max-width: 690px) {
  .consultation__text {
    font-size: 1.4rem;
  }
}

.contacts__map-container .consultation__text {
  max-width: 100%;
}

.consultation__box {
  background-color: #FFF;
  border-radius: 30px;
  padding: 40px 40px 29px 40px;
  box-sizing: border-box;
  flex-basis: 580px;
}
@media (max-width: 1800px) {
  .consultation__box {
    flex-basis: 28.8vw;
    padding: 2.8vw 2.8vw 2vw 2.8vw;
  }
}
@media (max-width: 1100px) {
  .consultation__box {
    flex-basis: auto;
    width: 100%;
    padding: 40px 20px;
  }
}
@media (max-width: 690px) {
  .consultation__box {
    padding: 20px 10px;
  }
}

.contacts__map-container .consultation__box {
  flex-basis: initial;
}

.price {
  max-width: 1590px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1536px) {
  .price {
    max-width: 1090px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .price {
    margin-bottom: 0;
  }
}

.price__title {
  margin-bottom: 80px;
}
@media (min-width: 769px) {
  .price__title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .price__title {
    margin-bottom: 75px;
  }
}
@media (max-width: 450px) {
  .price__title {
    margin-bottom: 60px;
  }
}

@media (min-width: 451px) {
  .price__title br {
    display: none;
  }
}

.price-card {
  background-color: #F0F2F5;
  border-radius: 30px;
  padding: 60px 40px;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .price-card {
    padding: 40px 20px;
  }
}

.price-card__section:not(:only-child) {
  padding-bottom: 40px;
  border-bottom: 1px solid #BFCEE3;
  margin-bottom: 60px;
}
@media (max-width: 962px) {
  .price-card__section:not(:only-child) {
    margin-bottom: 40px;
  }
}

.price-card__section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

.price-card__title {
  color: var(--accent);
  font-size: 4rem;
  font-weight: 600;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, var(--accent) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr=var(--accent), GradientType=0);
  background-repeat: repeat-x;
  background-position: 0 85%;
  background-size: 1px 1px;
  transition: 0.2s;
}
@media (max-width: 690px) {
  .price-card__title {
    font-size: 2.4rem;
  }
}

.price-card__title:hover {
  color: var(--accent-hover);
}

.price-table {
  margin-top: 40px;
  font-size: 2.4rem;
}
@media (max-width: 1536px) {
  .price-table {
    font-size: 1.8rem;
  }
}
@media (max-width: 690px) {
  .price-table {
    margin-top: 40px;
    font-size: 1.6rem;
  }
}
@media (max-width: 450px) {
  .price-table {
    margin-top: 28px;
  }
}

.price-table__row {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr;
  margin-bottom: 40px;
  gap: 3vw;
  align-items: center;
}
@media (max-width: 1536px) {
  .price-table__row {
    margin-bottom: 48px;
  }
}
@media (max-width: 1100px) {
  .price-table__row {
    grid-template-columns: 2fr 1fr 0.8fr;
  }
}
@media (max-width: 768px) {
  .price-table__row {
    margin-bottom: 40px;
  }
}
@media (max-width: 690px) {
  .price-table__row {
    grid-template-columns: 1fr auto;
    margin-bottom: 30px;
    gap: 0 3vw;
    align-items: start;
    position: relative;
  }
}

.price-table__row:last-child {
  margin-bottom: 0;
}
@media (max-width: 690px) {
  .price-table__row:last-child {
    margin-bottom: 0;
  }
}

.price-table__link {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr=var(--dark), GradientType=0);
  background-repeat: repeat-x;
  background-position: 0 90%;
  background-size: 1px 1px;
  transition: 0.2s;
}

@media (max-width: 690px) {
  .price-table__item:nth-child(1) {
    padding-bottom: 2rem;
  }
}

@media (max-width: 690px) {
  .price-table__item:nth-child(2) {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.price-table__item:nth-child(3) .price-table__link {
  background: var(--accent);
  color: #fff;
  padding: 0.75em 1em;
  font-size: 2rem;
  border-radius: 1em;
}
@media (max-width: 992px) {
  .price-table__item:nth-child(3) .price-table__link {
    font-size: 1.8rem;
  }
}
@media (max-width: 690px) {
  .price-table__item:nth-child(3) .price-table__link {
    font-size: 1.6rem;
  }
}

@media (any-hover: hover) {
  .price-table__item:nth-child(3) .price-table__link:hover {
    opacity: 0.8;
  }
}

@media (any-hover: hover) {
  .price-table__link:hover {
    background-size: 0 0;
  }
}

@media (max-width: 690px) {
  .price-table__item:nth-child(2) {
    grid-column: 1/3;
    grid-row: 2/3;
    margin-top: 6px;
  }
}

.price-table__item:nth-child(3) {
  display: inline-flex;
  justify-content: flex-end;
}

@media (max-width: 690px) {
  .price-table__qt {
    font-size: 1.4rem;
  }
}

.prices__button {
  max-width: 28rem;
  width: 100%;
}

.advantages__box {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 600px;
  gap: 40px;
  margin-top: 80px;
}
@media (max-width: 1536px) {
  .advantages__box {
    grid-template-columns: calc(60% - 40px) 40%;
    grid-auto-rows: 500px;
  }
}
@media (max-width: 1100px) {
  .advantages__box {
    grid-template-columns: 100%;
    grid-auto-rows: initial;
  }
}
@media (max-width: 690px) {
  .advantages__box {
    margin-top: 60px;
  }
}

@media (min-width: 769px) {
  .advantages__title {
    text-align: center;
  }
}

@media (min-width: 769px) {
  .advantages__title br {
    display: none;
  }
}

.advantages-card {
  border-radius: 30px;
  padding: 50px;
  box-sizing: border-box;
  background-color: #F0F2F5;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1536px) {
  .advantages-card {
    padding: 30px;
  }
}
@media (max-width: 690px) {
  .advantages-card {
    padding: 20px;
  }
}
@media (max-width: 450px) {
  .advantages-card {
    font-size: 1.6rem;
    padding-right: 16px;
    min-height: 400px;
  }
}

.advantages-card__pic {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 1536px) {
  .advantages-card__pic {
    width: 53%;
  }
}
@media (max-width: 450px) {
  .advantages-card__pic {
    width: 70%;
  }
}

.advantages-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

.advantages-card:nth-child(1),
.advantages-card:nth-child(4n+1),
.advantages-card:nth-child(4),
.advantages-card:nth-child(4n+4) {
  background-color: var(--accent);
  color: #FFF;
  background-image: url("/local/templates/main/css/../images/advantages/lines.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
@media (max-width: 1536px) {
  .advantages-card:nth-child(1),
  .advantages-card:nth-child(4n+1),
  .advantages-card:nth-child(4),
  .advantages-card:nth-child(4n+4) {
    background-position: 2rem 6rem;
    background-size: 120%;
  }
}
@media (max-width: 1100px) and (min-width: 451px) {
  .advantages-card:nth-child(1),
  .advantages-card:nth-child(4n+1),
  .advantages-card:nth-child(4),
  .advantages-card:nth-child(4n+4) {
    min-height: 500px;
  }
}
@media (max-width: 720px) and (min-width: 451px) {
  .advantages-card:nth-child(1),
  .advantages-card:nth-child(4n+1),
  .advantages-card:nth-child(4),
  .advantages-card:nth-child(4n+4) {
    background-position: bottom right;
    background-size: 84%;
  }
}
@media (max-width: 450px) {
  .advantages-card:nth-child(1),
  .advantages-card:nth-child(4n+1),
  .advantages-card:nth-child(4),
  .advantages-card:nth-child(4n+4) {
    background-position: -10px 60px;
    background-size: 200%;
  }
}
@media (max-width: 330px) {
  .advantages-card:nth-child(1),
  .advantages-card:nth-child(4n+1),
  .advantages-card:nth-child(4),
  .advantages-card:nth-child(4n+4) {
    background-position: -10px 110px;
  }
}

.advantages-card:nth-child(1),
.advantages-card:nth-child(4n+1) {
  grid-column: 1/8;
}
@media (max-width: 1536px) {
  .advantages-card:nth-child(1),
  .advantages-card:nth-child(4n+1) {
    grid-column: 1/2;
  }
}
@media (max-width: 1100px) {
  .advantages-card:nth-child(1),
  .advantages-card:nth-child(4n+1) {
    grid-column: initial;
  }
}

.advantages-card:nth-child(1) .advantages-card__title,
.advantages-card:nth-child(1) .advantages-card__title + p,
.advantages-card:nth-child(4n+1) .advantages-card__title,
.advantages-card:nth-child(4n+1) .advantages-card__title + p {
  max-width: 650px;
}
@media (max-width: 690px) {
  .advantages-card:nth-child(1) .advantages-card__title,
  .advantages-card:nth-child(1) .advantages-card__title + p,
  .advantages-card:nth-child(4n+1) .advantages-card__title,
  .advantages-card:nth-child(4n+1) .advantages-card__title + p {
    max-width: 500px;
  }
}

.advantages-card:nth-child(2),
.advantages-card:nth-child(4n+2) {
  grid-column: 8/13;
}
@media (max-width: 1536px) {
  .advantages-card:nth-child(2),
  .advantages-card:nth-child(4n+2) {
    grid-column: 2/3;
  }
}
@media (max-width: 1100px) {
  .advantages-card:nth-child(2),
  .advantages-card:nth-child(4n+2) {
    grid-column: initial;
  }
}

.advantages-card:nth-child(2) .advantages-card__pic,
.advantages-card:nth-child(4n+2) .advantages-card__pic {
  width: 70%;
}
@media (max-width: 1536px) {
  .advantages-card:nth-child(2) .advantages-card__pic,
  .advantages-card:nth-child(4n+2) .advantages-card__pic {
    display: none;
  }
}

.advantages-card:nth-child(2) .advantages-card__title,
.advantages-card:nth-child(2) .advantages-card__title + p,
.advantages-card:nth-child(4n+2) .advantages-card__title,
.advantages-card:nth-child(4n+2) .advantages-card__title + p {
  max-width: 490px;
}
@media (max-width: 1100px) {
  .advantages-card:nth-child(2) .advantages-card__title,
  .advantages-card:nth-child(2) .advantages-card__title + p,
  .advantages-card:nth-child(4n+2) .advantages-card__title,
  .advantages-card:nth-child(4n+2) .advantages-card__title + p {
    max-width: 490px;
  }
}
@media (max-width: 450px) {
  .advantages-card:nth-child(2) .advantages-card__title,
  .advantages-card:nth-child(2) .advantages-card__title + p,
  .advantages-card:nth-child(4n+2) .advantages-card__title,
  .advantages-card:nth-child(4n+2) .advantages-card__title + p {
    max-width: 100%;
  }
}

.advantages-card:nth-child(3),
.advantages-card:nth-child(4n+3) {
  grid-column: 1/6;
}
@media (max-width: 1536px) {
  .advantages-card:nth-child(3),
  .advantages-card:nth-child(4n+3) {
    grid-column: 1/2;
  }
}
@media (max-width: 1100px) {
  .advantages-card:nth-child(3),
  .advantages-card:nth-child(4n+3) {
    grid-column: initial;
  }
}

@media (max-width: 1100px) {
  .advantages-card:nth-child(3) {
    order: 4;
  }
}

@media (max-width: 1536px) {
  .advantages-card:nth-child(3) .advantages-card__title + p,
  .advantages-card:nth-child(4n+3) .advantages-card__title + p {
    max-width: 510px;
  }
}
@media (max-width: 1100px) {
  .advantages-card:nth-child(3) .advantages-card__title + p,
  .advantages-card:nth-child(4n+3) .advantages-card__title + p {
    max-width: 490px;
  }
}
@media (max-width: 450px) {
  .advantages-card:nth-child(3) .advantages-card__title + p,
  .advantages-card:nth-child(4n+3) .advantages-card__title + p {
    max-width: 100%;
  }
}

.advantages-card:nth-child(4),
.advantages-card:nth-child(4n+4) {
  background-size: 94%;
  grid-column: 6/13;
}
@media (max-width: 1536px) {
  .advantages-card:nth-child(4),
  .advantages-card:nth-child(4n+4) {
    grid-column: 2/3;
    background-position: -8rem 6rem;
    background-size: 170%;
  }
}
@media (max-width: 1100px) {
  .advantages-card:nth-child(4),
  .advantages-card:nth-child(4n+4) {
    grid-column: initial;
  }
}
@media (max-width: 992px) {
  .advantages-card:nth-child(4),
  .advantages-card:nth-child(4n+4) {
    background-position: center;
  }
}
@media (max-width: 450px) {
  .advantages-card:nth-child(4),
  .advantages-card:nth-child(4n+4) {
    background-position: -8rem 16rem;
  }
}

.advantages-card:nth-child(4) .advantages-card__title,
.advantages-card:nth-child(4) .advantages-card__title + p,
.advantages-card:nth-child(4n+4) .advantages-card__title,
.advantages-card:nth-child(4n+4) .advantages-card__title + p {
  max-width: 640px;
}

.advantages-card:nth-child(2) .advantages-card__pic,
.advantages-card:nth-child(4n+2) .advantages-card__pic {
  width: 70%;
}

@media (max-width: 1536px) {
  .advantages-card:nth-child(4) .advantages-card__pic,
  .advantages-card:nth-child(4n+4) .advantages-card__pic {
    width: 80%;
  }
}
@media (max-width: 1100px) {
  .advantages-card:nth-child(4) .advantages-card__pic,
  .advantages-card:nth-child(4n+4) .advantages-card__pic {
    width: 65%;
  }
}
@media (max-width: 330px) {
  .advantages-card:nth-child(4) .advantages-card__pic,
  .advantages-card:nth-child(4n+4) .advantages-card__pic {
    width: 65%;
  }
}

.advantages-card__title {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  margin-bottom: 2.4rem;
}
@media (max-width: 690px) {
  .advantages-card__title {
    font-size: 2.4rem;
    max-width: 450px;
  }
}
@media (max-width: 450px) {
  .advantages-card__title {
    margin-right: 1.6rem;
    margin-bottom: 1.4rem;
  }
}

.clients {
  overflow: hidden;
  background-color: var(--light);
}

.clients-carousel {
  position: relative;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .clients-carousel {
    max-width: initial;
    margin-right: auto;
  }
}
@media (max-width: 690px) {
  .clients-carousel {
    margin-top: 38px;
  }
}

@media (max-width: 768px) {
  .clients-carousel__swiper {
    overflow: visible;
  }
}

.clients-carousel .swiper-button-next,
.clients-carousel .swiper-button-prev {
  top: calc(50% - 3rem);
}
@media (max-width: 768px) {
  .clients-carousel .swiper-button-next,
  .clients-carousel .swiper-button-prev {
    top: 100%;
  }
}
@media (max-width: 690px) {
  .clients-carousel .swiper-button-next,
  .clients-carousel .swiper-button-prev {
    top: 40%;
  }
}


.clients-carousel .swiper-button-next:before,
.clients-carousel .swiper-button-prev:before {
  background-color: var(--accent);
}

.clients-carousel .swiper-button-next {
  right: -3rem;
}
@media (max-width: 690px) {
  .clients-carousel .swiper-button-next {
    right: -1rem;
  }
}

.clients-carousel .swiper-button-prev {
  left: -3rem;
}
@media (max-width: 690px) {
  .clients-carousel .swiper-button-prev {
    left: -1rem;
  }
}

.clients__box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 150px 150px;
  gap: 40px;
  margin-top: 70px;
}
@media (max-width: 1670px) {
  .clients__box {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1200px) {
  .clients__box {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 20px;
  }
}
@media (max-width: 690px) {
  .clients__box {
    grid-auto-rows: 21vw;
    margin-top: 38px;
  }
}

.clients__thumb {
  background-color: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-height: 17rem;
}
@media (max-width: 690px) {
  .clients__thumb {
    padding: 0 10px;
    min-height: 12rem;
  }
}

@media (max-width: 1670px) {
  .clients__thumb:nth-child(9),
  .clients__thumb:nth-child(10),
  .clients__thumb:nth-child(11),
  .clients__thumb:nth-child(12) {
    display: none;
  }
}

@media (max-width: 1200px) {
  .clients__thumb:nth-child(7),
  .clients__thumb:nth-child(8) {
    display: none;
  }
}

.clients__img {
  width: auto;
  height: auto;
  max-width: 182px;
  max-height: 110px;
}
@media (max-width: 768px) {
  .clients__img {
    max-width: 222px;
    max-height: 130px;
  }
}
@media (max-width: 690px) {
  .clients__img {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

.gallery {
  padding-bottom: 30px;
}
@media (max-width: 1536px) {
  .gallery {
    padding-bottom: 15px;
  }
}

.gallery__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 450px) {
  .gallery__head {
    margin-bottom: 60px;
  }
}

.swiper-gallery__slide {
  position: relative;
  background-color: #F0F2F5;
  border-radius: 30px;
  padding: 40px;
}
@media (max-width: 1536px) {
  .swiper-gallery__slide {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .swiper-gallery__slide {
    padding-bottom: 40px;
  }
}

.swiper-gallery__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 345px;
  height: 18vw;
  border-radius: 30px;
  margin-bottom: 4rem;
}
@media (max-width: 1536px) {
  .swiper-gallery__thumb {
    margin-bottom: 3.2rem;
    height: clamp(200px, 17vw, 300px);
  }
}
@media (max-width: 768px) {
  .swiper-gallery__thumb {
    height: 300px;
  }
}
@media (max-width: 450px) {
  .swiper-gallery__thumb {
    height: 200px;
  }
}

.swiper-gallery__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.swiper-gallery__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (max-width: 1440px) {
  .swiper-gallery__link {
    font-size: 1.8rem;
    gap: 24px;
  }
}

@media (any-hover: hover) {
  .swiper-gallery__link:hover {
    color: var(--accent);
  }
}

.swiper-gallery__link::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  -webkit-mask-image: url(/local/templates/main/css/../images/arrow.svg);
  background-color: var(--dark);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: 0.2s;
}
@media (max-width: 1440px) {
  .swiper-gallery__link::after {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 450px) {
  .swiper-gallery__link::after {
    content: none;
  }
}

@media (any-hover: hover) {
  .swiper-gallery__link:hover::after {
    transform: rotate(-90deg);
    background-color: var(--accent);
  }
}

.swiper-gallery__title {
  margin-bottom: 12px;
}

.swiper-gallery__info {
  position: relative;
  display: block;
  padding-left: 32px;
  font-size: 1.6rem;
  margin-top: 23px;
}

.swiper-gallery__info + .swiper-gallery__info {
  margin-top: 16px;
}

.swiper-gallery__info::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
}

.swiper-gallery__arg::before {
  background-image: url(/local/templates/main/css/../images/icons/parameter.svg);
}

.swiper-gallery__loc::before {
  background-image: url(/local/templates/main/css/../images/icons/location.svg);
}

.swiper-button-next,
.swiper-button-prev {
  width: 97px;
  height: 97px;
  border-radius: 100%;
  top: calc(50% - 36px);
  transition: 0.2s;
  transform: translateZ(0);
  background: rgba(217, 217, 217, 0.1);
  box-shadow: inset 10.7333px -10.7333px 10.7333px rgba(165, 165, 165, 0.1), inset -10.7333px 10.7333px 10.7333px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10.7333px);
  border-radius: 50%;
}
@media (max-width: 690px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 67px;
    height: 67px;
  }
}

@media (max-width: 1440px) {
  .gallery .swiper-button-next,
  .gallery .swiper-button-prev {
    display: none;
  }
}

.swiper-button-next {
  right: -9px;
}

.swiper-button-prev {
  left: -9px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  display: block;
  width: 72px;
  height: 72px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 24px;
  background-color: white;
  transition: 0.2s;
}

.swiper-button-next::after {
  -webkit-mask-image: url(/local/templates/main/css/../images/arrow-next.svg);
}

.swiper-button-prev::after {
  -webkit-mask-image: url(/local/templates/main/css/../images/arrow-prev.svg);
}

@media (any-hover: hover) {
  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    background-color: #FFF;
  }
}

.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  display: block;
  background-color: var(--accent);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  position: absolute;
  transition: 0.3s ease;
}

@media (any-hover: hover) {
  .swiper-button-next:hover::before,
  .swiper-button-prev:hover::before {
    background-color: var(--main);
  }
}

.gallery-carousel {
  position: relative;
}

@media (max-width: 768px) {
  .gallery-carousel .swiper-button-next,
  .gallery-carousel .swiper-button-prev {
    display: none;
  }
  .staff .swiper-button-next, .staff .swiper-button-prev {
    display: block;
    width: 52px;
    height: 52px;
    top: 230px;
  }
  .staff .swiper-button-next:before, .staff .swiper-button-prev:before, .staff .swiper-button-next:after, .staff .swiper-button-prev:after{
    display: block;
    width: 75%;
    height: 75%;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
  }
}

.gallery__button-all {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 993px) {
  .gallery__button-all {
    display: none;
  }
}

.swiper-gallery__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.experience {
  margin-top: 130px;
  margin-bottom: 70px;
  padding-top: 0;
}
@media (max-width: 1536px) {
  .experience {
    margin-top: 110px;
    margin-bottom: 130px;
  }
}
@media (max-width: 768px) {
  .experience {
    margin-top: 180px;
    margin-bottom: 150px;
  }
}
@media (max-width: 450px) {
  .experience {
    margin-top: 100px;
    margin-bottom: 140px;
  }
}

.experience__main {
  background-image: url("/images/experience/experience-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background: var(--accent-gradient);
  color: #fff;
  border-radius: 100px;
  padding-top: 75px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media (max-width: 1536px) {
  .experience__main {
    padding-top: 45px;
    padding-bottom: 140px;
  }
}
@media (max-width: 992px) {
  .experience__main {
    padding-bottom: 110px;
  }
}
@media (max-width: 768px) {
  .experience__main {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 450px) {
  .experience__main {
    padding-top: 55px;
    padding-bottom: 20px;
    border-radius: 60px;
  }
}

.experience__container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
}
@media (max-width: 962px) {
  .experience__container {
    grid-template-columns: 100%;
  }
}

.experience__content {
  max-width: 810px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 1536px) {
  .experience__content {
    max-width: 603px;
  }
}
@media (max-width: 962px) {
  .experience__content {
    margin-left: unset;
    max-width: initial;
  }
}

.experience__title {
  font-size: 5.2rem;
  line-height: 1.3;
  margin-bottom: 3rem;
}
@media (max-width: 1536px) {
  .experience__title {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .experience__title {
    font-size: 4.8rem;
    margin-bottom: 2.2rem;
  }
}
@media (max-width: 450px) {
  .experience__title {
    font-size: 2.7rem;
    margin-bottom: 2.4rem;
  }
}

.experience-slides {
  max-width: 100%;
}
@media (max-width: 962px) {
  .experience-slides {
    margin-bottom: 42px;
  }
}

.experience-gallery__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: var(--c-surface);
  padding: 13px;
  height: 230px;
}
@media (max-width: 1536px) {
  .experience-gallery__slide {
    height: 180px;
  }
}

.experience-gallery__thumb {
  width: 100%;
  height: 100%;
}

.experience-gallery__img {
  width: 100%;
  height: 100%;
}

.experience-gallery__link {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.experience-gallery__link::after {
  content: none;
}

.experience-slides .swiper-button-disabled {
  opacity: 0;
}

.experience-slides .swiper-button-prev,
.experience-slides .swiper-button-next {
  width: 60px;
  height: 60px;
  top: calc(50% + 20px);
  transform: translateY(-50%);
  display: flex;
}

.experience-slides .swiper-button-next::before,
.experience-slides .swiper-button-prev::before {
  height: 44px;
  width: 44px;
}

.experience-slides .swiper-button-prev {
  left: -49px;
}
@media (max-width: 1280px) {
  .experience-slides .swiper-button-prev {
    left: -29px;
  }
}
@media (max-width: 768px) {
  .experience-slides .swiper-button-prev {
    left: -17px;
  }
}
@media (max-width: 330px) {
  .experience-slides .swiper-button-prev {
    left: -12px;
  }
}

.experience-slides .swiper-button-next {
  right: -49px;
}
@media (max-width: 1280px) {
  .experience-slides .swiper-button-next {
    right: -29px;
  }
}
@media (max-width: 768px) {
  .experience-slides .swiper-button-next {
    right: -17px;
  }
}
@media (max-width: 330px) {
  .experience-slides .swiper-button-next {
    right: -12px;
  }
}

.experience__hero {
  position: relative;
}
@media (max-width: 962px) {
  .experience__hero {
    order: 2;
  }
}

.experience__hero-pic {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(5rem);
}
@media (max-width: 1800px) {
  .experience__hero-pic {
    transform: translateY(-3rem);
  }
}
@media (max-width: 1536px) {
  .experience__hero-pic {
    max-width: 120%;
    width: 120%;
    transform: translateY(-2rem);
  }
}
@media (max-width: 1100px) {
  .experience__hero-pic {
    z-index: 2;
  }
}
@media (max-width: 962px) {
  .experience__hero-pic {
    max-width: 58.2%;
    margin-left: 80px;
  }
}
@media (max-width: 450px) {
  .experience__hero-pic {
    max-width: 100%;
    margin-left: -25px;
    margin-top: 25px;
  }
}

.experience__hero-img {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 450px) {
  .experience__hero-img {
    object-position: bottom;
  }
}

.experience__video {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4.1rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (max-width: 1536px) {
  .experience__video {
    grid-template-columns: 0.9fr 1.1fr;
    margin-right: -30px;
  }
}
@media (max-width: 1280px) {
  .experience__video {
    margin-right: 0;
  }
}
@media (max-width: 962px) {
  .experience__video {
    grid-template-columns: 100%;
    gap: 2.4rem;
  }
}
@media (max-width: 450px) {
  .experience__video {
    gap: 3.2rem;
  }
}

.experience__video-box {
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  padding-top: 57.8%;
}
@media (max-width: 1536px) {
  .experience__video-box {
    padding-top: 69.8%;
  }
}
@media (max-width: 962px) {
  .experience__video-box {
    order: 2;
    padding-top: 41.8%;
  }
}
@media (max-width: 450px) {
  .experience__video-box {
    padding-top: 55.8%;
  }
}

.experience__video-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1536px) {
  .experience__video-desc {
    font-size: 1.6rem;
  }
}
@media (max-width: 962px) {
  .experience__video-desc {
    max-width: 618px;
  }
}

.experience__hero {
  display: flex;
}

.experience__hero-media {
  position: relative;
  margin-top: auto;
  width: 100%;
}
@media (max-width: 1800px) and (min-width: 769px) {
  .experience__hero-media {
    margin-bottom: -75px;
  }
}
@media (max-width: 450px) {
  .experience__hero-media {
    height: 305px;
  }
}

.experience__hero-hint {
  position: absolute;
  bottom: 22.7%;
  left: 0;
  z-index: 1;
}
@media (max-width: 1536px) {
  .experience__hero-hint {
    bottom: 19%;
    left: 5px;
  }
}
@media (max-width: 1280px) {
  .experience__hero-hint {
    bottom: unset;
    top: 50%;
    left: 10px;
  }
}
@media (max-width: 1100px) {
  .experience__hero-hint {
    top: -40%;
  }
}
@media (max-width: 962px) {
  .experience__hero-hint {
    left: unset;
    right: 60px;
    top: 14%;
  }
}
@media (max-width: 690px) {
  .experience__hero-hint {
    right: 0;
  }
}
@media (max-width: 450px) {
  .experience__hero-hint {
    left: unset;
    top: unset;
    bottom: 8%;
    z-index: 2;
    right: -3%;
  }
}

.experience__hero-hint-title {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 2rem;
  font-weight: 600;
}
@media (max-width: 1536px) {
  .experience__hero-hint-title {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 450px) {
  .experience__hero-hint-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}

.experience__hero-hint-desc {
  display: inline-block;
  padding: 20px 12px 20px 23px;
  margin: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 10.8333px -10.8333px 10.8333px rgba(194, 194, 194, 0.1), inset -10.8333px 10.8333px 10.8333px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10.8333px);
  line-height: 1.25;
}
@media (max-width: 1536px) {
  .experience__hero-hint-desc {
    padding: 23px 20px;
    font-size: 1.6rem;
  }
}

@media (max-width: 450px) {
  .experience__hero-hint-desc {
    padding: 10px 20px;
    font-size: 1.4rem;
  }
}

.experience-info {
  color: var(--dark);
  margin-bottom: -100px;
  margin-top: -100px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1800px) {
  .experience-info {
    margin-top: -90px;
  }
}
@media (max-width: 1536px) {
  .experience-info {
    margin-bottom: -115px;
    margin-top: -100px;
  }
}
@media (max-width: 1100px) {
  .experience-info {
    background-color: var(--c-surface);
    margin-bottom: -140px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .experience-info {
    margin-top: -130px;
  }
}
@media (max-width: 450px) {
  .experience-info {
    background-color: transparent;
    margin-top: -30px;
  }
}

@media (min-width: 769px) {
  .experience-info .hero-info__title {
    white-space: nowrap;
  }
}

.experience-info .hero-info__text br {
  display: none;
}

.experience-info .hero-info__stroke {
  column-gap: 100px;
  padding: 62px 42px;
  color: var(--dark);
}
@media (max-width: 1536px) {
  .experience-info .hero-info__stroke {
    padding: 48px 22px;
    column-gap: 60px;
  }
}
@media (max-width: 1100px) and (min-width: 451px) {
  .experience-info .hero-info__stroke {
    display: grid;
    gap: 30px;
    padding: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 450px) {
  .experience-info .hero-info__stroke {
    padding: 0;
  }
}

.experience-info .hero-info__item {
  justify-content: space-between;
}
@media (max-width: 1536px) and (min-width: 1101px) {
  .experience-info .hero-info__item {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 1100px) and (min-width: 451px) {
  .experience-info .hero-info__item {
    padding: 0;
  }
}

@media (max-width: 1536px) and (min-width: 1100px) {
  .experience-info .hero-info__icon {
    --size: 64px;
  }
}

@media (max-width: 1100px) and (min-width: 451px) {
  .experience-info .hero-info__desc {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .experience-info .hero-info__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 1100px) {
  .experience-info .hero-info__item::before {
    content: none;
  }
}
@media (max-width: 450px) {
  .experience-info .hero-info__item::before {
    content: "";
  }
}

.experience-info .hero-info__item::after {
  top: calc(50% - 70px);
  right: -51px;
  height: 140px;
}

.reviews {
  overflow: hidden;
}

.reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 450px) {
  .reviews__head {
    margin-bottom: 52px;
  }
}

.reviews__head-aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 720px) {
  .reviews__head-aside {
    display: none;
  }
}

.reviews__head-button {
  margin-left: 16px;
}
@media (max-width: 962px) {
  .reviews__head-button {
    padding: 0;
    border: none;
    border-bottom: 1px solid;
    border-radius: 0;
    font-size: 1.4rem;
  }
}

.reviews-carousel {
  position: relative;
}
@media (min-width: 769px) {
  .reviews-carousel {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

.reviews-carousel .swiper-button-prev {
  left: -6rem;
}
@media (max-width: 1536px) {
  .reviews-carousel .swiper-button-prev {
    left: -8rem;
  }
}
@media (max-width: 768px) {
  .reviews-carousel .swiper-button-prev {
    left: 2rem;
    top: 91%;
  }
}

.reviews-carousel .swiper-button-next {
  right: -6rem;
}
@media (max-width: 1536px) {
  .reviews-carousel .swiper-button-next {
    right: -8rem;
  }
}
@media (max-width: 768px) {
  .reviews-carousel .swiper-button-next {
    right: 2rem;
    top: 91%;
  }
}

.reviews-carousel .swiper-button-disabled {
  opacity: 0;
}

@media (max-width: 992px) {
  .reviews-gallery {
    overflow: visible;
  }
}

.reviews-gallery__slide {
  background-color: #F0F2F5;
  border-radius: 30px;
  padding: 40px;
}
@media (max-width: 1536px) {
  .reviews-gallery__slide {
    padding: 40px 20px;
  }
}
@media (max-width: 450px) {
  .reviews-gallery__slide {
    padding: 30px 20px;
    padding-bottom: 90px;
  }
}

.locations__title {
  margin-bottom: 80px;
}
@media (max-width: 690px) {
  .locations__title {
    margin-bottom: 60px;
  }
}

@media (min-width: 769px) {
  .locations__title br {
    display: none;
  }
}

.locations__content {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 20px));
  gap: 40px;
  width: 100%;
}
@media (max-width: 1100px) {
  .locations__content {
    grid-template-columns: 100%;
  }
}

@media (min-width: 1101px) {
  .locations--dropdowns .locations__content {
    grid-template-columns: 2fr 1fr;
  }
}

.locations__map {
  max-width: 890px;
  max-width: 100%;
  height: 701px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1536px) {
  .locations__map {
    height: 680px;
  }
}
@media (max-width: 1100px) {
  .locations__map {
    max-width: 100%;
    height: 400px;
  }
}
@media (max-width: 450px) {
  .locations__map {
    height: 300px;
  }
}

@media (min-width: 691px) {
  .locations--dropdowns .locations__map {
    position: sticky;
    top: 10rem;
    z-index: 3;
  }
}

.locations__map > * {
  width: 100%;
  height: 100%;
}

.locations-addresses {
  width: 100%;
}

.locations-addresses__address {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1536px) {
  .locations-addresses__address {
    column-gap: 30px;
  }
}

.locations-addresses__link {
  background: #F8F8F8;
  border-radius: 100px;
  max-width: 100%;
  width: 100%;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-right: 3rem;
  transition: 0.2s;
  font-size: 1.8rem;
  padding: 28px;
  padding-left: 40px;
}
@media (max-width: 1536px) {
  .locations-addresses__link {
    padding: 28px;
  }
}
@media (max-width: 1100px) {
  .locations-addresses__link {
    padding: 28px 20px;
  }
}
@media (max-width: 450px) {
  .locations-addresses__link {
    padding: 28px 16px;
  }
}
@media (max-width: 330px) {
  .locations-addresses__link {
    font-size: 1.6rem;
  }
}

.locations-card__top .locations-addresses__link {
  padding: 0;
  background: transparent;
  font-family: var(--ff-regular);
}

.locations-card {
  margin-bottom: 2.4rem;
}
@media (max-width: 690px) {
  .locations-card {
    margin-bottom: 0.6rem;
  }
}

@media (max-width: 690px) {
  .locations-card.bayan--opened {
    margin-bottom: 1.6rem;
  }
}

@media (any-hover: hover) {
  .locations-addresses__link:hover {
    color: var(--accent);
  }
}

.locations-addresses__link::after {
  content: "";
  -webkit-mask-image: url(/local/templates/main/css/../images/arrow.svg);
  background-color: var(--dark);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  display: block;
  --size: 24px;
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  transition: 0.2s;
  margin-left: 15px;
}
@media (max-width: 768px) {
  .locations-addresses__link::after {
    margin-left: 10px;
  }
}
@media (max-width: 450px) {
  .locations-addresses__link::after {
    margin-left: 6px;
  }
}
@media (max-width: 330px) {
  .locations-addresses__link::after {
    --size: 16px;
  }
}

.locations-card__top .locations-addresses__link::after {
  display: none;
}

@media (any-hover: hover) {
  .locations-card__top .locations-addresses__link:hover {
    color: inherit;
  }
}

@media (any-hover: hover) {
  .locations-addresses__link:hover::after {
    transform: rotate(-90deg);
    background-color: var(--accent);
  }
}

.locations-addresses__slider {
  z-index: 1;
  position: relative;
}

@media (max-width: 1100px) {
  .locations-addresses__slider .swiper-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .locations-addresses__slider .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 690px) {
  .locations-addresses__slider .swiper-wrapper {
    grid-template-columns: repeat(2, 47%);
  }
}
@media (max-width: 330px) {
  .locations-addresses__slider .swiper-wrapper {
    gap: 15px;
  }
}

.locations-addresses__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  --arrow-button-size: 72px;
  margin-top: calc(0px - var(--arrow-button-size));
}
@media (max-width: 1100px) {
  .locations-addresses__buttons {
    margin-top: 40px;
  }
}

.locations--dropdowns .locations-addresses__buttons {
  margin-top: 20px;
}

.locations-addresses__button-next,
.locations-addresses__button-prev {
  --size: var(--arrow-button-size);
  position: relative;
  z-index: 2;
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  border-radius: var(--size);
  background-color: #f8f8f8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  transition: all 0.3s ease-out;
}
@media (max-width: 1100px) {
  .locations-addresses__button-next,
  .locations-addresses__button-prev {
    display: none;
  }
}

@media (any-hover: hover) {
  .locations-addresses__button-next:hover,
  .locations-addresses__button-prev:hover {
    transform: scale(1.15);
  }
}

.locations-addresses__button-next.swiper-button-disabled,
.locations-addresses__button-prev.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.locations-addresses__button-prev {
  background-image: url("/local/templates/main/css/../images/arrow-prev.svg");
  margin-right: 34px;
}

.locations-addresses__button-next {
  background-image: url("/local/templates/main/css/../images/arrow-next.svg");
}

@media (min-width: 1101px) {
  .locations-addresses__button-more {
    display: none;
  }
}

.locations--dropdowns .locations-addresses__button-more {
  display: block;
}

.locations-card__top {
  border-radius: 2rem;
  border: 0.1rem solid #BABABA;
  padding: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 125%; /* 25px */
  transition: all 0.4s ease-in-out;
}
@media (max-width: 690px) {
  .locations-card__top {
    padding: 3rem 2.4rem;
  }
}

.bayan--opened .locations-card__top {
  background-color: var(--accent);
}

.locations-card__titie {
  color: #202A34;
  font-family: var(--ff-regular);
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 25px */
  transition: all 0.4s ease-in-out;
}
@media (max-width: 690px) {
  .locations-card__titie {
    font-size: 1.8rem;
  }
}

.bayan--opened .locations-card__titie {
  color: #fff;
}

.locations-card__contacts {
  border-radius: 2rem;
  padding: 2.4rem 3.2rem;
  background: #F0F2F5;
  margin-top: 1.6rem;
}
@media (max-width: 690px) {
  .locations-card__contacts {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}

.locations-card__contact {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (max-width: 690px) {
  .locations-card__contact {
    margin-bottom: 1.6rem;
  }
}

.locations-card__contact:last-child {
  margin-bottom: 0;
}

.locations-card__contact-icon {
  display: block;
  --size: 2rem;
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  margin-right: 0.6rem;
  margin-top: 0.3rem;
}
@media (max-width: 690px) {
  .locations-card__contact-icon {
    --size: 1.6rem;
  }
}

.locations-card__contact a {
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .locations-card__contact a:hover {
    color: var(--accent);
  }
}

.projects__head {
  margin-bottom: 6.5rem;
}

@media (max-width: 690px) {
  .projects__filter-togglers {
    display: block;
  }
}

.projects__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  transition: var(--tr);
}
@media (max-width: 962px) {
  .projects__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 690px) {
  .projects__gallery {
    grid-template-columns: 100%;
  }
}

.projects__button-more {
  display: block;
  position: relative;
  max-width: 245px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}
@media (max-width: 962px) {
  .projects__button-more {
    max-width: 100%;
  }
}
@media (max-width: 690px) {
  .projects__button-more {
    margin-top: 40px;
  }
}

.projects ~ .experience {
  margin-top: 90px;
}

.projects .chips-select__input:checked + .chips-select__box .chips-select__caption::before {
  content: "";
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("/local/templates/main/css/../images/common/loader-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
  transition: var(--tr);
  transform: scale(0);
}

.projects .is-loading .chips-select__input:checked + .chips-select__box .chips-select__caption::before {
  opacity: 1;
  transform: scale(1);
}

.projects .chips-select__input:checked + .chips-select__box .chips-select__caption {
  transition: var(--tr);
  pointer-events: none;
  position: relative;
}

.projects .is-loading .chips-select__input:checked + .chips-select__box .chips-select__caption {
  color: rgba(255, 255, 255, 0.15);
}

.projects .is-loading .projects__gallery {
  opacity: 0.4;
  pointer-events: none;
}

.storytell {
  counter-reset: story;
}

.storytell__section {
  counter-increment: story;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 6rem;
}
@media (max-width: 1100px) {
  .storytell__section {
    grid-template-columns: 100%;
    margin-bottom: 5rem;
  }
}
.storytell__section:last-child {
  margin-bottom: 0;
}

.storytell__title {
  display: flex;
  align-items: center;
}
@media (max-width: 1100px) {
  .storytell__title {
    display: block;
  }
}

@media (max-width: 1100px) {
  .storytell__title br {
    display: none;
  }
}

.storytell__section:not(:only-child) .storytell__title::before {
  content: counter(story);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  --size: 40px;
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  border-radius: var(--size);
  background-color: #f0f2f5;
  margin-right: 115px;
}
@media (max-width: 1100px) {
  .storytell__section:not(:only-child) .storytell__title::before {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.storytell__body {
  padding-top: 40px;
}
@media (max-width: 1100px) {
  .storytell__body {
    font-size: 1.6rem;
    padding-top: 0;
  }
}

.storytell__body table {
  margin-bottom: 43px;
  font-family: var(--ff-regular);
  font-size: 1.6rem;
}
@media (max-width: 1536px) {
  .storytell__body table {
    margin-bottom: 24px;
  }
}

.storytell__body td {
  padding-left: 8px;
  padding-right: 8px;
  border-right: 1px solid #bababa;
}

.storytell__body tr td:first-child {
  padding-left: 0;
}

.storytell__body tr td:last-child {
  border-right: none;
}

@media (max-width: 1100px) {
  .storytell__body br {
    display: none;
  }
}

.project-highlights {
  overflow: hidden;
}

.storytell ~ .project-highlights {
  padding-top: 10px;
}

.project-highlights__pic {
  margin-bottom: 84px;
  border-radius: 30px;
  min-height: 800px;
}
@media (max-width: 1536px) {
  .project-highlights__pic {
    min-height: 600px;
  }
}
@media (max-width: 690px) {
  .project-highlights__pic {
    min-height: 400px;
  }
}

.project-highlights__img {
  border-radius: inherit;
  object-fit: cover;
  min-height: inherit;
  height: 100%;
}

.project-highlights__gallery {
  position: relative;
}

.project-highlights-carousel__slide {
  position: relative;
  z-index: 1;
}

.project-highlights-carousel__pic {
  border-radius: 30px;
  height: 600px;
}
@media (max-width: 1536px) {
  .project-highlights-carousel__pic {
    height: 400px;
  }
}

.project-highlights-carousel__img {
  border-radius: inherit;
  object-fit: cover;
  height: 100%;
}

.project-highlights-carousel__link {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.project-highlights-carousel {
  overflow: visible;
}

.project-highlights__gallery .swiper-button-next,
.project-highlights__gallery .swiper-button-prev {
  top: calc(50% - 20px);
}

@media (max-width: 1100px) {
  .project-highlights__gallery .swiper-button-next,
  .project-highlights__gallery .swiper-button-prev {
    display: none;
  }
}

.project-highlights__gallery .swiper-button-next {
  right: 5px;
}

.project-highlights__gallery .swiper-button-prev {
  left: 5px;
}

.requisites__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 450px) {
  .requisites__head {
    margin-bottom: 30px;
  }
}

.requisites__content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 992px) {
  .requisites__content {
    display: block;
  }
}

.requisites-qr {
  padding: 4rem;
  border-radius: 3rem;
  background-color: #F0F2F5;
  margin-left: 3rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1100px) {
  .requisites-qr {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .requisites-qr {
    margin-left: 0;
  }
}
@media (max-width: 690px) {
  .requisites-qr {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    justify-content: center;
  }
}

.requisites-qr__title {
  font-size: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 690px) {
  .requisites-qr__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.requisites-qr__media {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5rem;
}
@media (max-width: 690px) {
  .requisites-qr__media {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}

.requisites-qr__media-pic {
  display: block;
  width: 28rem;
  height: 28rem;
  margin-right: 2rem;
}
@media (max-width: 1800px) {
  .requisites-qr__media-pic {
    height: 20rem;
  }
}
@media (max-width: 690px) {
  .requisites-qr__media-pic {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 22rem;
    height: 22rem;
  }
}
@media (max-width: 450px) {
  .requisites-qr__media-pic {
    width: 100%;
    height: initial;
  }
}

.requisites-qr__media-img {
  display: block;
  width: 100%;
  height: 100%;
}

.requisites-qr__media-caption {
  max-width: 30rem;
  font-size: 1.8rem;
}
@media (max-width: 1536px) {
  .requisites-qr__media-caption {
    max-width: 25rem;
  }
}
@media (max-width: 690px) {
  .requisites-qr__media-caption {
    font-size: 1.5rem;
  }
}
@media (max-width: 450px) {
  .requisites-qr__media-caption {
    max-width: 100%;
  }
}

.requisites-table {
  max-width: 110rem;
  width: 100%;
  padding: 40px;
  border-radius: 30px;
  background-color: #F0F2F5;
}
@media (max-width: 1100px) {
  .requisites-table {
    padding: 40px 20px;
  }
}
@media (max-width: 992px) {
  .requisites-table {
    margin-bottom: 4rem;
  }
}
@media (max-width: 690px) {
  .requisites-table {
    display: flex;
    flex-wrap: wrap;
  }
}

.requisites-table__row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid #BFCEE3;
  margin-bottom: 40px;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 690px) {
  .requisites-table__row {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.requisites-table__row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

@media (max-width: 690px) {
  .requisites-table__row--mobile-half {
    max-width: 50%;
  }
}

.requisites-table__title {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.35;
  color: #202A34;
}
@media (max-width: 1100px) {
  .requisites-table__title {
    font-size: 1.6rem;
  }
}
@media (max-width: 690px) {
  .requisites-table__title {
    margin-bottom: 12px;
  }
}

.requisites-table__desc {
  font-size: 1.8rem;
  line-height: 1.35;
  text-align: right;
  color: #202A34;
}
@media (max-width: 1100px) {
  .requisites-table__desc {
    font-size: 1.6rem;
  }
}
@media (max-width: 690px) {
  .requisites-table__desc {
    text-align: left;
  }
}

.requisites__download-button {
  display: block;
  margin-top: auto;
}

.staff {
  overflow: hidden;
  position: relative;
}

.staff__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 690px) {
  .staff__head {
    margin-bottom: 44px;
  }
}

.staff__buttons {
  display: flex;
  justify-content: space-between;
  position: absolute;
  max-width: 98%;
  width: 100%;
  top: 50%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 5;
  transform: translateY(-100%);
}
@media (max-width: 1100px) {
  .staff__buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 98%;
    display: flex;
    justify-content: space-between;
  }
}

.staff-card__pic {
  border-radius: 30px;
  width: 100%;
  height: 500px;
  margin-bottom: 32px;
}

.staff-card__img {
  border-radius: inherit;
  height: inherit;
  object-fit: cover;
}

.staff-card__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 135%;
  color: #202A34;
  margin-bottom: 12px;
}

.staff-card__desc {
  font-size: 18px;
  line-height: 145%;
  color: #202A34;
}

.contacts__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 4rem;
}
@media (max-width: 1536px) {
  .contacts__gallery {
    gap: 2rem;
  }
}
@media (max-width: 1100px) {
  .contacts__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 690px) {
  .contacts__gallery {
    grid-template-columns: 100%;
  }
}

.contacts-card {
  border-radius: 30px;
  padding: 3rem 2rem;
  background-color: #F0F2F5;
  text-align: center;
}
@media (max-width: 992px) {
  .contacts-card {
    text-align: left;
  }
}

.contacts-card__title {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 125%;
  color: #202A34;
  margin-bottom: 2.4rem;
}
@media (max-width: 1536px) {
  .contacts-card__title {
    font-size: 1.8rem;
  }
}
@media (max-width: 1100px) {
  .contacts-card__title {
    font-size: 24px;
  }
}

.contacts-card__desc {
  font-size: 1.6rem;
  line-height: 125%;
  color: #202A34;
}

.contacts-card__desc--bigger {
  font-size: 3.6rem;
  font-weight: 600;
}

.contacts-card__desc a {
  transition: var(--tr-regular);
}

@media (any-hover: hover) {
  .contacts-card__desc a:hover {
    color: var(--accent);
  }
}

.contacts__map-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: stretch;
  background: var(--accent-gradient);
  border-radius: 3rem;
  padding: 6.4rem;
}
@media (max-width: 1100px) {
  .contacts__map-container {
    grid-template-columns: 100%;
    padding: 4rem 2rem;
    border-radius: 0;
  }
}

.contacts-card__socials {
  justify-content: center;
}
@media (max-width: 690px) {
  .contacts-card__socials {
    justify-content: flex-start;
  }
}

.blog-article__date {
  color: #8A9099;
  font-family: var(--ff-regular);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 4rem;
}

.section-error {
  margin-bottom: auto;
}

.section-error__number {
  text-align: center;
  color: var(--accent);
  font-size: 42rem;
  font-style: normal;
  font-weight: 700;
  margin-bottom: -0.25em;
}
@media (max-width: 992px) {
  .section-error__number {
    font-size: 30rem;
    margin-bottom: -0.2em;
  }
}
@media (max-width: 690px) {
  .section-error__number {
    font-size: 16rem;
  }
}
@media (max-width: 330px) {
  .section-error__number {
    font-size: 12rem;
  }
}

.section-error__content {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 5rem;
  font-family: "Manrope";
}

.section-error__title {
  color: #202A34;
  text-align: center;
  font-size: 4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 135%; /* 54px */
  margin-bottom: 2rem;
  font-family: "Manrope";
}
@media (max-width: 992px) {
  .section-error__title {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }
}
@media (max-width: 690px) {
  .section-error__title {
    margin-bottom: 1.2rem;
    font-size: 2.2rem;
  }
}

.section-error__desc {
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .section-error__desc {
    font-size: 1.8rem;
  }
}
@media (max-width: 690px) {
  .section-error__desc {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}

.is-hidden {
  display: none !important;
  visibility: hidden !important;
}

.js_counter {
  will-change: transform;
}

.button-scroll-top {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  transition: all 0.45s ease-in-out;
  transform: translateY(3rem);
  opacity: 0;
  pointer-events: none;
  --size: 9.6rem;
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  background-color: rgba(84, 134, 229, 0.1);
  border-radius: 99999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
  transition: var(--tr-regular);
}

.button-scroll-top_back {
  right: auto;
  left: 3rem;
  opacity: 0.6;
  transform: rotate(-90deg);
  pointer-events: initial;
}
@media (max-width: 690px) {
  .button-scroll-top {
    --size: 6rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .button-scroll-top_back  {
    --size: 6rem;
    left: 1.5rem;
  }
}

.button-scroll-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 75%;
  height: 75%;
  background-color: var(--accent);
  border-radius: inherit;
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .button-scroll-top:hover::before {
    background-color: #fff;
  }
}

.button-scroll-top::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 30%;
  height: 30%;
  -webkit-mask: url("/local/templates/main/css/../images/arrow-lt.svg");
  mask: url("/local/templates/main/css/../images/arrow-lt.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  transition: all 0.3s ease;
  transform: rotate(90deg);
}

@media (any-hover: hover) {
  .button-scroll-top:hover::after {
    background-color: var(--accent);
  }
}

.button-scroll-top._show {
  opacity: 0.6;
  pointer-events: initial;
  transform: translateY(0);
}

.font-default {
  font-family: sans-serif;
}
/*# sourceMappingURL=../maps/style.css.map */


/* services bg */
.container.hero__container {
  position: initial !important;
} 
.container.hero__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  /* background: #ffffffc9; */
  background: linear-gradient(90deg,#8ecbfa 30%,hsla(0,0%,100%,0) 55%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.container.hero__container * {
  z-index: 2;
} 

.container.hero__container > p {
  max-width: 768px;
} 

/*@media (max-width: 1100px) {
  .hero__worker {
    display: none;
  }
}*/
/* services bg end */
.wysiwyg h2{
  font-size: 32px;
  margin-top:1em;
}
.statii-content-page .hero__title.title-h1{
  max-width: 100%;
}
.wysiwyg p + h2{
  margin-top:1em;
}
.statii-content-page .hero__pic{
  z-index: 2;
}



.faq-card {
  font-size: 1.8rem;
  line-height: 1.25;
  border-bottom: 2px solid #f0f0f0;
}
@media (max-width: 768px) {
  .faq-card {
    font-size: 1.4rem;
  }
}

.faq-card__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.35;
  font-weight: 600;
  text-align: left;
  padding: 20px 20px 20px 0;
  border: none;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: 0.2s;
}
@media (max-width: 768px) {
  .faq-card__question {
    font-size: 1.6rem;
    padding: 10px 20px 10px 0;
    gap: 3rem;
  }
}

.faq-card__question > span {
  transition: 0.2s;
}

.faq-card__question > span:first-child {
  flex-basis: calc(100% - 32px);
}
@media (max-width: 768px) {
  .faq-card__question > span:first-child {
    flex-basis: calc(100% - 24px);
  }
}

.faq-card .bayan__toggler {


}
@media (max-width: 768px) {
  .faq-card .bayan__toggler {


  }
}

.faq-card.bayan--opened .bayan__toggler:before {
  transform: scale(-1);
  background-color: #002C42;
}

@media (any-hover: hover) {
  .faq-card__question:hover > span {
    color: var(--main);
  }
}

@media (any-hover: hover) {
  .faq-card:hover .bayan__toggler:before {
    background-color: #002C42;
  }
}

.faq-card__answer {
  padding: 0 40px 20px 0;
  transition: 0.3s;
}
@media (max-width: 1100px) {
  .faq-card__answer:before {
    content: "";
    background-color: var(--main);
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: calc(100% - 32px);
  }
}

.faq-card__answer p:first-child {
  margin-top: 0;
}

.faq__button-more {
  margin-top: 5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 690px) {
  .faq__button-more {
    margin-top: 3rem;
  }
}

.faq-card .bayan__toggler {
  --line-width: 100%;
  --line-height: 0.4rem;
  --closer-width: 3rem;
  --closer-height: 3rem;
  flex-shrink: 0;
  position: relative;
  width: 40px;
  height: 40px;
  transform-origin: center;
  background: transparent;
}

.bayan--opened .bayan__toggler:before {
  transform: translate(0, 0) rotate(0);
}

.faq-card .bayan__toggler:after,
.faq-card .bayan--opened .bayan__toggler:after {
  opacity: 0;
}

.faq-card .bayan__toggler:before,
.faq-card .bayan--opened .bayan__toggler:before {
  content: "";
  background-image: url('/local/templates/zima/assets/images/icons/fag-down.svg');
  background-repeat: no-repeat;
  transform: translate(0, 0);
  background-size: 20px;
  background-position: center;
  background-color: #5DB6EF;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .faq-card .bayan__toggler {
    width: 24px;
    height: 24px;
  }
  .faq-card .bayan__toggler:before {
    background-size: 12px;
  }
}

.faq__title span {
  background: linear-gradient(180deg, #8ecbfa 0%, #008eff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq__wrap {
  display: flex;
  gap: 160px;
  margin-top: 80px;
}
@media (max-width: 690px) {
  .faq__wrap {
    margin-top: 10px;
  }
}
.faq__nav {
  font-weight: 500;
  font-size: 31px;
  line-height: 158%;
  color: #000;
  padding-left: 30px;
  padding-top: 20px;
  position: relative;
  flex-shrink: 0;
  height: fit-content;
  cursor: pointer;
}
.faq__nav h4 {
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.faq__nav h4:hover {
  color: var(--main);
}
.faq__nav:before {
  content: "";
  height: calc(100% - 20px);
  width: 10px;
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 0;
  background-color: #C9C9C9;
}
.faq__list {
  max-width: 65%;
}
@media (max-width: 1439px) {
  .faq__nav {
    display: none !important;
  }
  .faq__list {
    max-width: 100%;
  }
}
.faq__nav h4.is-active:before {
  content: "";
  height: 100%;
  width: 10px;
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  background-color: #ff6200;
}
/* End */


/* Start:/local/templates/main/css/custom.css?17484339077801*/
header{
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.12);
}
.header__info_left_part {
    display: grid;
    grid-template-columns: auto auto;
    margin-right: 39px;
    row-gap: 11px;
}
.rows_info {
    display: flex;
    align-items: center;
}
.header__info_left_part a {
    height: fit-content;
    width: fit-content;
}
.rows_info svg {
    margin-right: 9px;
}
.header__info .header__info_left_part .link {
    margin-right: 39px;
}
.header {
    padding: 23px 0;
}
.rows_info span {
    font-family: Gotham Pro;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: left;
    color: #333333;
}
.mobile_link {
    display: none;
}
.text_main {
padding: 50px 50px 0;
}

@media(max-width: 1540px) {
    .header__info .header__info_left_part .link,
    .header__info_left_part {
        margin-right: 20px;
    }
}
@media(max-width: 1370px) {
    .header__info .header__info_left_part .link,
    .header__info_left_part {
        margin-right: 7px;
    }
    .header__logo {
        margin-right: 10px;
    }
}
@media(max-width: 1280px) {
    .header__info_left_part > a {
        display: none;
    }
    .header__info_left_part {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .header__info_left_part > div:first-child {
        margin-bottom: 0;   
    }
    .header__info .header__info_left_part .link {
        margin-right: 39px;
    }
    
    .header__info_left_part {
        margin-right: 0;
    }
    .header__info .header__btn {
        display: none;
    }
    
    .mobile_link {
        margin-bottom: 40px;
        display: block;
    }
    .mobile_link > * {
        margin-bottom: 20px;
        display: block;
        width: fit-content;
        font-family: Gotham Pro;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0em;
        text-align: left;

    }
    .mobile_link .rows_info {
        display: flex;
        align-items: center;
    }
}
@media (max-width: 1100px) {
    .header__info {
         display: flex; 
    }
}
@media (max-width: 992px) {
    .header__info .header__info_left_part .link {
        margin-right: 15px;
    }
}
@media (max-width: 650px) {
    .header__info {
        display: none;
    }
}
.page-title{
    color: #333;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 45px 0;
}

.page__subtitle {
    max-width: 1250px;
    font-weight: 400;
    font-size: 25px;
    line-height: 120%;
    margin-bottom: 128px;
    color: #000;
}

.page-title_team{
    font-size: 54px;
    margin: 45px 0 20px;
}


/* footer */
.footer__logo {

}
@media (max-width: 1200px) {
    .page-title_team{
        margin: 45px 0 20px;
    }
    .page__subtitle {
        font-size: 20px;
        margin-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .page-title{
        font-size: 36px;
        margin: 20px 0;
    }
    .page-title_team{
        font-size: 35px;
    }
    .page__subtitle {
         font-size: 16px;
         margin-bottom: 40px;
     }
    .footer__logo {
        margin-bottom: 30px;
    }
}

.footer__wrap {
    padding: 80px 0 36px 0;
}

.footer__wrap a:hover {
    color: var(--accent-hover);
}

.footer__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer__row.menu-wrap  {
        flex-wrap: nowrap;
    }

    .footer__row.menu-wrap .footer__col {
        flex: 0 0 31%;
        max-width: 31%;
    }
    
}
@media (max-width: 540px) {
    .footer__row.menu-wrap  {
        flex-wrap: wrap;
    }
    .footer__row.menu-wrap .footer__col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.footer__col {
    max-width: 100%;
}
@media (max-width: 768px) {
    .footer__col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.footer__col-4 {
    flex: 0 0 25%;
    max-width: 25%;
}

.footer__col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
@media (max-width: 768px) {
    .footer__col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        border-bottom: 1px solid #E4E4E4;
        margin: 0 0 40px 0;
        padding-bottom: 30px;
    }
}

.footer__col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.menu-wrap .footer__col {
    margin-right: 15px;
}
@media (max-width: 768px) {
    .menu-wrap .footer__col {
        margin-right: 0;
    }
}


.menu-wrap .footer__col:last-child {
    margin-right: 0;
}

.footer__header_h3 {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 30px;
}

.footer__header_h4 {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
    margin-bottom: 20px;
}

.footer__menu-list--bold li a {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 30px;
}

.footer__ul {}

.footer__ul li {
    margin-bottom: 15px;
}

.footer__ul li a {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #333333;
}

.footer__ul.footer__contact {}
@media (max-width: 768px) {
    .footer__ul.footer__contact {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}
@media (max-width: 540px) {
    .footer__ul.footer__contact {
        display: block;
    }
}

.footer__contact_email {}

.footer__contact_phone {}

.footer__contact_street {}

.footer__ul.footer__soc {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0;
}

.footer__ul.footer__soc li a {
    margin-right: 5px;
    display: inline-flex;
}

.footer__ul.footer__soc li:last-child a {
    margin-right: 0;
    display: inline-flex;
}

@media (max-width: 768px) {
    .services-block {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .soc-block {
        flex: 0 0 50%;
        max-width: 50%;

        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}

@media (max-width: 540px) {
    .services-block {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .soc-block {
        flex: 0 0 100%;
        max-width: 100%;
        display: block;
    }
}

.footer__header_h4.view {
    color: var(--accent-hover);
}
.footer__header_h4.view~.footer__menu-list {
    display: block;
}

.footer-menu-mobile {
    display: none;
}

@media (max-width: 540px) {
    .menu-wrap .footer__menu-list {
        display: none;
    }
}
@media (max-width: 1550px) and (min-width: 769px) {
    .footer__col-4_middle-screen {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
@media (max-width: 991px) and (min-width: 769px) {
    .footer-row_middle-screen {
        flex-wrap: unset;
    }

    .soc-block {
        max-width: 30%;
    }
}

@media (max-width: 769px) {
    .footer__wrap {
        display: none;
    }

    .footer-menu-mobile {
        display: flex;
    }

    .footer-menu-mobile .footer-top {
        justify-content: space-between;
        row-gap: 30px;
    }

    .footer-menu-mobile .footer-top__logo {
        height: auto;
        width: auto;
        margin: 0;
    }

    .footer-menu-mobile .footer__menu {
        margin: 0;
    }

    .footer-menu-mobile__block {
        display: flex;
        justify-content: flex-start;
        gap: 50px;
    }
}

@media (max-width: 690px) {
    .footer-menu-mobile__block {
        gap: 20px;
    }
}

@media (max-width: 630px) {
    .footer-menu-mobile .footer-top {
        justify-content: flex-start;
        flex-direction: column;
        gap: 30px;
    }

}

/* footer end */
/* End */


/* Start:/local/templates/main/components/bitrix/menu/header_menu_new/style.css?17399060616013*/
.menu-nav {
    color: #202a34;
    font-family: Gotham Pro, Sans-Serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
}
.menu-item{
    margin-right: 3rem;
    display: block;
    position: relative;
    padding-bottom: 23px;
    margin-bottom: -23px;
}
.menu-link,
.menu-link a{
    display: flex;
    align-items: center;
}
.menu-link svg{
    margin-right: 8px;
    position: relative;
    top: 1px;
}
.menu-item:hover .menu-link svg line {
    stroke: #008eff;
}

.menu-link.active{
    color: #008eff;
    position: relative;
}
.js-first > .menu-link{
    white-space: nowrap;
}

.menu-with-child {
    position: relative;
}

.menu-link-section {
    font-weight: 700;
    text-transform: none;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 40px 0 0;
    font-size: 18px;
}

.menu-link-section.active{
    color: #008eff;
}

.menu-link-section.active:after,
.menu-with-child.js-second:hover .menu-link-section:after {
    transform: rotateY(180deg);
}

.menu-with-child.js-second:last-child:after {
    content: none;
}
.menu-dropdown{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.container-small .menu-dropdown{
    grid-template-columns: 1fr;
}
.menu-dropdown-wrapper {
    position: fixed;
    top: 116px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 34px 40px;
    min-width: 259px;
    background-color: #fff;
}



.menu-child-wrapper {
    position: static;
    top: -12px;
    left: 100%;
    padding: 24px 40px 24px 0;
    min-width: 288px;
    background-color: #fff;
}
.container-small .menu-link-section,
.menu-link-child {
    font-size: 14px;
    text-transform: none;
    padding: 3px 30px 3px 0;
    display: flex;
    min-height: 33px;
    margin-bottom: 14px;
    border-bottom: 1px dotted #DEDEDE;
    line-height: 0.9;
    background-repeat: no-repeat;
    background-position: right 6px;
    font-weight: normal;
}
.container-small .menu-link-section.active,
.container-small .menu-link-section:hover,
.menu-link-child.active,
.menu-link-child:hover {
    color: #008eff;
    text-decoration: underline;
}
.menu-link-child--blue{
    font-weight: 700;
    color: #008eff;
    border-bottom: 1px solid #DEDEDE;
}

@media (min-width: 1281px) {
    .menu-dropdown-wrapper.container-small{
        position: absolute;
        width: fit-content;
        top: 100% !important;
    }
    .menu-with-child.js-second:hover .menu-link-section{
        color: #008eff;
    }
    .menu-item:hover .menu-link {
        color: #008eff;
        position: relative;
    }
    .menu-dropdown-wrapper.hide,
    .menu-child-wrapper.hide {
        display: none;
    }
    .menu-link {
        min-height: 70px;
    }

    .container-small .menu-link-section:hover,
    .menu-link-child:hover{
        background-image: url(/local/templates/main/components/bitrix/menu/header_menu_new/./image/arrow.svg);
    }
    .menu-item:hover:after{
        content: "";
        height: 2px;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        background: #008eff;
    }
    .menu-dropdown-wrapper {
        box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 1720px) {
    .menu-nav {
        font-size: 14px;
    }
    .menu-item{
        margin-right: 1.2rem;
    }
}
@media (max-width: 1540px) {
    .header .btn-primary {
        font-size: 14px;
        padding: 12px 10px;
    }
}
@media (max-width: 1340px) {
    header .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 1280px) {
    .active > .menu-link{
        color: #008eff;
    }
    .menu-nav {
        font-size: 24px;
        font-weight: 700;
        flex-direction: column;
        gap: 32px;
        margin-bottom: 48px;
        margin-top: 11px;
    }

    .menu-with-child {
        position: unset;
    }
    .menu-dropdown{
        display: block;
        margin-top: 20px;
    }

    .menu-dropdown-wrapper {
        position: inherit;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        padding: 0 0 0 24px;
        background-color: inherit;
    }

    .menu-dropdown-wrapper.mobile-hide,
    .menu-child-wrapper.mobile-hide{
        display: none;
    }
    .menu-item{
        border-bottom: 1px solid #DDDDDD;
        padding-bottom: 19px;
        margin-bottom: -16px;
    }
    .menu-link{
        font-size: 20px;
    }
    .menu-with-child .menu-link{
        margin-right: -24px;
    }

    .menu-link-section {
        font-size: 18px;
        padding: 14px 0;

    }
    .menu-with-child + .menu-with-child > .menu-link-section{
        border-top: 1px solid #DEDEDE;
    }

    .menu-link-section:after {
        content: none;
    }
    .menu-link svg{
        display: none;
    }
    .menu-with-child.js-first,
    .menu-with-child > .menu-link-section{
        background-repeat: no-repeat;
        background-position: right 0;
        padding-right: 24px;
        background-image: url(/local/templates/main/components/bitrix/menu/header_menu_new/./image/arrowm.svg);
    }
    .menu-with-child > .menu-link-section{
        background-position: right center;
    }
    .menu-with-child.js-first.active,
    .menu-with-child > .menu-link-section.active{
        background-image: url(/local/templates/main/components/bitrix/menu/header_menu_new/./image/arrowm-active.svg);
    }
    .menu-child-wrapper {
        position: unset;
        padding: 0 24px;
        background-color: inherit;
    }

    .menu-child {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        margin-bottom: 10px;
    }
    .container-small .menu-link-section,
    .menu-link-child {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 0;
        align-items: center;
        padding: 16px 0;
    }
    .container-small .menu-link-section:last-of-type,
    .menu-link-child:last-of-type{
        border-bottom: 0;
    }
    .menu-link-child--blue {
        font-weight: 700;
    }
    .header__logo {
        z-index: 0;
    }
}

/* End */


/* Start:/local/templates/main/styles.css?17748040963786*/
.serviceAllBtn
{
    text-align: center;
    margin-top: 80px;
}
@media (any-hover: hover) {
    .swiper-gallery__slide:hover .swiper-gallery__img {
      transform: scale(1.2) translate(-50%, -50%);
    }
}

.swiper-gallery__img {
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: all 0.4s ease;
    transform-origin: center;
}

.storytell__container {
	max-width: 1260px;
}
.responsive-video {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}
.responsive-video__inner {
    position: relative;
    padding-bottom: 56.25%; /* Пропорция 16:9 */
    height: 0;
    width: 100%;
}
.responsive-video iframe {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
@media (max-width: 575px) {
    .responsive-video {
        max-width: 100%;
    }
}
.hero__thumb-none{
    min-height: auto !important;
    padding-bottom: 0px !important;
}
.none-header-block::before{
    background: white !important;
}
.none-header-block .hero__title{
    padding-top: 3rem;
    margin-bottom: 9rem;
}
.hero--no-bullets + .section-flip section{
    /*padding-top: 15px !important;*/
}
.statii-content-page + .section-flip .blog-article{
    padding-top: 20px !important;
    padding-bottom: 30px !important;
}
.statii-content-page .none-header-block .hero__title{
    margin-bottom: 6rem !important;
}
.statii-content-page + .section-flip .blog-article__date{
    margin-bottom: 15px;
}
.otziv-header{
    display: flex;
    align-items: center;
    gap: 2em;
    margin-bottom: 2rem;
}
.otziv-avatar img{
    border-radius: 50%;
}
.otziv-name{
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 20px;
}
.otziv-rating .star {
    font-size: 36px;
    color: #F0F2F5;
}
.otziv-rating .filled{
    font-size: 36px;
    color: #f7cc0c;
}
.section.reviews{
    background-color: var(--light); 
}
.otziv-card{
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
}
.otziv-read-more{
    background-color: var(--accent);
    padding: 16px 32px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    width: max-content;
    margin-top: 1.5rem;
}
.otziv-read-more:hover{
    color: #FFF;
    background-color: var(--accent-hover);
}
.otziv-carousel{
    position: relative;
}
.btn-otziv{
    padding: 28px 50px;
}
.otziv-rating{
    margin-bottom: 8px;
}
.otziv-text{
    min-height: 130px;
    margin-bottom: 25px;
}
@media (max-width: 575px) {
    .none-header-block .hero__title {
        padding-top: 1rem;
        margin-bottom: 6rem;
    }
    .statii-page + .section-flip .services-box{
        margin-bottom: 0px !important;
    }
    .statii-content-page .none-header-block .hero__title {
        margin-bottom: 4rem !important;
    }  
}
@media (max-width: 992px) {
    .reviews__head{
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    .reviews__head-aside{
        display: block;
    }
    .btn-otziv{
        display: flex !important;
    }
    .otziv-read-more{
        margin: 0 auto;
    }
    .otziv-carousel .swiper-button-next{
        width: 40px;
        height: 40px;
    }
    .otziv-carousel .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .otziv-carousel .swiper-button-next:after{
        width: 40px !important;
        height: 40px !important;
    }
    .otziv-carousel .swiper-button-prev:after{
        width: 40px !important;
        height: 40px !important;
    }
    .otziv-carousel .swiper-button-next::before{
        width: 40px !important;
        height: 40px !important;
    }
    .otziv-carousel .swiper-button-prev::before{
        width: 40px !important;
        height: 40px !important;
    }
}
/* End */


/* Start:/local/templates/main/template_styles.css?178474562413806*/
.contentBlockOplata {
    padding-top: 160px;
    overflow: hidden;
}
.oplataBlock {
    margin-bottom: 26px;    
}
.oplataBlock__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 34px;
}
.oplataBlock__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -50px;
    margin-right: -50px;
    max-width: 1440px;
}
.oplataBlock__items__item {
    margin-left: 50px;
    margin-right: 50px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: calc(100%/3 - 100px);
    max-width: 370px;
    margin-bottom: 34px;
}
.oplataBlock__items__item__number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    border: 3px solid #008eff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #008eff;
    margin-right: 16px;
}
.oplataBlock__items__item__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.oplataBlock__items__item__icon {
    margin-right: 18px;
    max-height: 56px;
    flex-shrink: 0;
}
.oplataBlock.oplataBlock-icon .oplataBlock__items {
    margin-left: -8px;
    margin-right: -8px;
    max-width: 100%;
}
.oplataBlock.oplataBlock-icon .oplataBlock__items__item {
    margin-left: 8px;
    margin-right: 8px;
    width: calc(100%/3 - 16px);
}
.oplataBlock-warranty {
    padding: 40px 56px;
    border: 3px solid #008eff;
}
.oplataBlock-warranty .oplataBlock__title {
    color: #008eff;
}
.container.container-oplataBottom {
    margin-bottom: 30px;
}
.container-oplataBottom .oplataBlock__items__item__text {
    margin-bottom: 10px;
}
.services-box__title-link{
    margin-bottom: 14px;
    display: block;
}
.services-box__item{
    padding-bottom: 15px;
}
@media screen and (max-width: 1279px) {
    .contentBlockOplata {
        padding-top: 80px;
    }
}
@media screen and (max-width: 1100px) {
    .topBlockOplata .hero__pic {
        display: block;
    }
}
@media screen and (max-width: 992px) {
    .topBlockOplata.hero--has-breadcrumbs .hero__thumb {
        padding-bottom: 20rem;
    }
    .oplataBlock__items {        
        margin-left: -8px;
        margin-right: -8px;
    }
    .oplataBlock__items__item {
        width: calc(50% - 16px);
        margin-left: 8px;
        margin-right: 8px;
        max-width: unset;
        flex: unset;
    }
    .oplataBlock.oplataBlock-icon .oplataBlock__items__item {
        width: calc(50% - 16px);
    }
}
@media screen and (max-width: 768px) {
    .oplataBlock__title {
        font-size: 24px;
        font-weight: 700;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .oplataBlock__items__item__text {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
    }
    .oplataBlock {
        margin-bottom: 20px;
    }
    .oplataBlock__items__item {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 490px) {    
    .oplataBlock__items {        
        margin-left: 0;
        margin-right: 0;
    }
    .oplataBlock__items__item {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .oplataBlock.oplataBlock-icon .oplataBlock__items__item {
        width: 100%;
    }
}
.price-table.price-table-top {
    margin-top: 0;
}
.section.price.priceTop {
    padding-bottom: 0;
}

@media screen and (max-width: 768px) {    
    .hero__title-descOplata {
        max-width: 60% !important;
    }
}


.otziv-header{
    display: flex;
    align-items: center;
    gap: 2em;
    margin-bottom: 2rem;
}
.otziv-avatar img{
    border-radius: 50%;
}
.otziv-name{
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 20px;
}
.otziv-rating .star {
    font-size: 36px;
    color: #F0F2F5;
}
.otziv-rating .filled{
    font-size: 36px;
    color: #f7cc0c;
}
.section.reviews{
    background-color: var(--light); 
}
.otziv-card{
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
}
.otziv-read-more{
    background-color: var(--accent);
    padding: 16px 32px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    width: max-content;
    margin-top: 1.5rem;
}
.otziv-read-more:hover{
    color: #FFF;
    background-color: var(--accent-hover);
}
.otziv-carousel{
    position: relative;
}
.btn-otziv{
    padding: 28px 50px;
}
.otziv-rating{
    margin-bottom: 8px;
}
.otziv-text{
    min-height: 150px;
    margin-bottom: 25px;
}
.doc-riew{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 10px;
    margin-bottom: -5px;
}
.otziv-list{
    padding: 0px 60px;
}
.otziv-carousel .swiper-button-prev {
    left: -100px;
}
.otziv-carousel .swiper-button-next {
    right: -100px;
}
@media (max-width: 992px) {
    .reviews__head{
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    .reviews__head-aside{
        display: block;
    }
    .btn-otziv{
        display: flex !important;
    }
    .otziv-read-more{
        margin: 0 auto;
    }
    .otziv-carousel .swiper-button-next{
        width: 40px;
        height: 40px;
    }
    .otziv-carousel .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .otziv-carousel .swiper-button-next:after{
        width: 40px !important;
        height: 40px !important;
    }
    .otziv-carousel .swiper-button-prev:after{
        width: 40px !important;
        height: 40px !important;
    }
    .otziv-carousel .swiper-button-next::before{
        width: 40px !important;
        height: 40px !important;
    }
    .otziv-carousel .swiper-button-prev::before{
        width: 40px !important;
        height: 40px !important;
    }
    .otziv-rating{
        justify-content: center;
        display: flex;
    }
    .otziv-list {
        padding: 0px 0px;
    }
    .otziv-carousel .swiper-button-prev {
        left: -9px;
    }
    .otziv-carousel .swiper-button-next {
        right: -9px;
    }
}


/****************** FOOTER ******************/
.page-footer__content {
	background-color: #002C42;
	color: #fff;
	padding: 60px 0 90px;
}
.grid-list-3 {
	display: grid;
	/*grid-template-columns: repeat(3, 1fr);*/
	grid-template-columns: 25% 50% 25%;
	/*grid-template-rows: repeat(1, 1fr);*/
	/*grid-gap: 80px;*/
	grid-template-areas:
	"small1 small2 small3";
	margin: 0 -40px;
}
.grid-list__item {
	padding: 0 40px;
}
.grid-list__item-title {
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 36px;
	position: relative;
	min-height: 32px;
}
.grid-list__item-title span {
	display: inline-block;
	background-color: #002C42;
	padding-right: 30px;
	position: relative;
	z-index: 2;
}
.grid-list__item-title:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #2294DF;
	position: absolute;
	top: 50%;
	z-index: 1;
}
.grid-list__item-contacts-item {
	display: flex;
	gap: 25px;
	align-items: center;
	font-size: 20px;
	line-height: 120%;
	margin-bottom: 20px;
}
.grid-list__item-contacts-item svg {
	width: 32px;
}
.grid-list__item-menu {
	display: flex;
	justify-content: space-between;
}
.grid-list__item-menu-title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 20px;
}
.grid-list__item-menu li {
	font-size: 18px;
	margin-bottom: 8px;
}
.footer__social {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: 0;
	gap: 10px;
}
.footer__social a {
	display: inline-flex;
}
.page-footer__bottom {
	color: #002C42;
	font-size: 18px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0;
}
.page-footer__bottom a {
	text-decoration: underline;
}
.page-footer__bottom .links {
	display: flex;
	gap: 40px;
}
.footer__social li img {
	width: 53px;
}
.footer__social-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media only screen and (max-width:1890px) {
	.page-footer__content {
		padding: 45px 0 55px;
	}
	.grid-list__item-title {
		font-size: 14px;
		line-height: 32px;
		margin-bottom: 27px;
	}
	.grid-list__item-contacts-item {
		gap: 20px;
		font-size: 14px;
		line-height: 120%;
		margin-bottom: 12px;
	}
	.grid-list__item-contacts-item svg {
		width: 24px;
	}
	.grid-list__item-menu-title {
		font-size: 20px;
		margin-bottom: 14px;
	}
	.grid-list__item-menu li {
		font-size: 14px;
	}
	.footer__social li img {
		width: 40px;
		height: 40px;
	}
	.page-footer__bottom {
		font-size: 14px;
		padding: 18px 0;
	}
}
@media only screen and (max-width:1550px) {
	.grid-list-3 {
		margin: 0 -30px;
	}
	.grid-list__item {
		padding: 0 30px;
	}
}
@media only screen and (max-width:1380px) {
	.grid-list-3 {
		grid-template-columns: 62% 38%;
	}
	.small2 { grid-row: 1 / span 2; }
	.small1 { grid-column: 2; grid-row: 1; }
	.small3 { grid-column: 1; grid-row: 3; }
	.social-col .grid-list__item-title:after {
		display: none;
	}
	.footer__social-blocks {
		flex-direction: row;
		gap: 60px;
	}
}
@media only screen and (max-width:1100px) {
	.small2 .grid-list__item-menu {
		justify-content: flex-start;
		flex-wrap: wrap;
		row-gap: 20px;
		gap: 30px;
	}
	.small2 .grid-list__item-menu-col {
		min-width: 40%;
	}
}
@media only screen and (max-width:960px) {
	.footer__social li img {
		width: 35px;
	}
}
@media only screen and (max-width:710px) {
	.grid-list-3 {
		grid-template-columns: 100%;
		grid-template-rows: auto auto;
	}
	.small2 {
		display: none; /* Скрываем блок */
	}
	.small1 {
		grid-column: 1;
		grid-row: 1;
	}
	.small3 {
		grid-column: 1;
		grid-row: 2;
	}
}


/****************** REQUIZITES ******************/
.requisites__content {
    margin: 0 -20px;
}
.requisites__left {
    flex: 0 0 auto;
    width: 66.66666667%;
    padding: 0 20px;
}
.requisites-qrcode {
    flex: 0 0 auto;
    width: 33.33333333%;
    padding: 0 20px;
}
.requisites-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    min-height: 52px;
}
h3.requisites-item__title {
    min-width: 295px;
    font-size: 24px;
    line-height: 34px;
}
.requisites-item__desc {
    font-size: 22px;
    line-height: 34px;
    padding-top: 2px;
}
.requisites-qrcode__inner {
    background-color: #F0F2F5;
    margin-top: 100px;
    border-radius: 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 80px 80px;
}
.requisites-qr__media {
    margin-bottom: 5rem;
    margin-top: -100px;
}
.requisites-qr__media-pic {
    display: block;
    width: 100%;
    max-width: 353px;
    height: auto;
    margin-right: 0;
}
a.gradient-btn {
    font-weight: 700;
    font-size: 27px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #FFC179 0%, #FF6200 100%);
    display: flex;
    width: 100%;
    text-align: center;
    height: 107px;
    align-items: center;
    justify-content: center;
    border-width: 4px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 10px 25px 0px #FF6200;
}
a.gradient-btn:hover {
    box-shadow: 0px 3px 10px 0px #FF6200;
}
a.gradient-btn:before {
    content: "";
    position: absolute;
    inset: calc(0px - 4px);
    border-radius: 10px;
    padding: 4px;
    background: linear-gradient(180deg, #FFDBA6, #BC3B00);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}
@media only screen and (max-width:1919px) {
    h3.requisites-item__title {
        min-width: 225px;
        font-size: 18px;
    }
    .requisites-item__desc {
        font-size: 18px;
    }
    .requisites-qrcode__inner {
        padding: 0 60px 60px;
        margin-top: 70px;
    }
    .requisites-qr__media {
        margin-top: -70px;
    }
    .requisites-qr__media-pic {
        max-width: 260px;
    }
    a.gradient-btn {
        font-size: 20px;
        height: 80px;
        padding: 0;
    }
    .requisites-item {
        gap: 30px;
        min-height: 41px; 
    }
}
@media only screen and (max-width:1700px) {
    a.gradient-btn:before {
        inset: calc(0px - 3px);
        border-radius: 8px;
        padding: 3px;
    }
    a.gradient-btn {
        border-width: 3px;
        border-radius: 8px;
    }
}

@media only screen and (max-width:1539px) {
    .requisites-qrcode__inner {
        padding: 0 50px 60px;
    }
    .requisites-qr__media-pic {
        max-width: 225px;
    }
}
@media only screen and (max-width:1369px) {
    .requisites-qrcode__inner {
        padding: 0 40px 60px;
    }
}
@media only screen and (max-width:1310px) {
    a.gradient-btn:before {
        inset: calc(0px - 2px);
        border-radius: 6px;
        padding: 2px;
    }
    a.gradient-btn {
        border-width: 2px;
        border-radius: 6px;
    }
}
@media only screen and (max-width:1269px) {
    .requisites__content {
        margin: 0;
        display: block;
    }
    .requisites__left, .requisites-qrcode {
        padding: 0;
        width: 100%;
    }
    .requisites-qrcode__inner {
        padding: 0;
        margin-top: 20px;
        background-color: transparent;
        align-items: flex-start;
    }
    .requisites-qr__media {
        margin: 0;
        display: none;
    }
    a.gradient-btn {
        width: 313px;
    }
}
@media only screen and (max-width:600px) {
    .requisites-item {
        gap: 4px;
        min-height: auto;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }
    h3.requisites-item__title {
        min-width: auto;
        font-size: 18px;
        white-space: nowrap;
    }
}
@media only screen and (max-width:500px) {
    .requisites-item__desc {
        font-size: 18px;
        line-height: 150%;
    }
    .requisites-qrcode__inner {
        padding: 0 20px;
    }
    a.gradient-btn {
        width: 100%;
    }
}

.bx-composite-btn-fixed {
	display: none;
}

/* End */
/* /local/templates/main/css/style.css?1741153745168888 */
/* /local/templates/main/css/custom.css?17484339077801 */
/* /local/templates/main/components/bitrix/menu/header_menu_new/style.css?17399060616013 */
/* /local/templates/main/styles.css?17748040963786 */
/* /local/templates/main/template_styles.css?178474562413806 */
