@charset "UTF-8";

/** Подключение шрифтов локально из папки "./src/fonts" */

@font-face {
  font-family: GrtskGiga;
  font-display: swap;
  src: url("../fonts/GrtskGiga-Bold.woff2") format("woff2"), url("../fonts/GrtskGiga-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: GrtskGiga;
  font-display: swap;
  src: url("../fonts/GrtskGiga-Light.woff2") format("woff2"), url("../fonts/GrtskGiga-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: GrtskGiga;
  font-display: swap;
  src: url("../fonts/GrtskGiga-Extralight.woff2") format("woff2"), url("../fonts/GrtskGiga-Extralight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: GrtskGiga;
  font-display: swap;
  src: url("../fonts/GrtskGiga-Semibold.woff2") format("woff2"), url("../fonts/GrtskGiga-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: GrtskGiga;
  font-display: swap;
  src: url("../fonts/GrtskGiga-Medium.woff2") format("woff2"), url("../fonts/GrtskGiga-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: GrtskGiga;
  font-display: swap;
  src: url("../fonts/GrtskGiga-Thin.woff2") format("woff2"), url("../fonts/GrtskGiga-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: GrtskGiga;
  font-display: swap;
  src: url("../fonts/GrtskGiga-Regular.woff2") format("woff2"), url("../fonts/GrtskGiga-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-ExtraBold.woff2") format("woff2"), url("../fonts/Roboto-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Black.woff2") format("woff2"), url("../fonts/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-ExtraLight.woff2") format("woff2"), url("../fonts/Roboto-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2"), url("../fonts/Roboto-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Thin.woff2") format("woff2"), url("../fonts/Roboto-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

/** Подключение переменных */

/** Подключение sass function и mixins и extends стилей */

@-webkit-keyframes heroGradient {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 100%;
  }
}

@keyframes heroGradient {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 100%;
  }
}

@-webkit-keyframes footerCircle {
  from {
    -webkit-transform: translate(-50%, 80px) scale(1);
            transform: translate(-50%, 80px) scale(1);
  }

  50% {
    -webkit-transform: translate(-50%, 40px) scale(1.1);
            transform: translate(-50%, 40px) scale(1.1);
  }

  to {
    -webkit-transform: translate(-50%, 80px) scale(1);
            transform: translate(-50%, 80px) scale(1);
  }
}

@keyframes footerCircle {
  from {
    -webkit-transform: translate(-50%, 80px) scale(1);
            transform: translate(-50%, 80px) scale(1);
  }

  50% {
    -webkit-transform: translate(-50%, 40px) scale(1.1);
            transform: translate(-50%, 40px) scale(1.1);
  }

  to {
    -webkit-transform: translate(-50%, 80px) scale(1);
            transform: translate(-50%, 80px) scale(1);
  }
}

@-webkit-keyframes footerCircleMobile {
  from {
    -webkit-transform: translate(-50%, 0px) scale(1);
            transform: translate(-50%, 0px) scale(1);
  }

  50% {
    -webkit-transform: translate(-50%, -40px) scale(1.5);
            transform: translate(-50%, -40px) scale(1.5);
  }

  to {
    -webkit-transform: translate(-50%, 0px) scale(1);
            transform: translate(-50%, 0px) scale(1);
  }
}

@keyframes footerCircleMobile {
  from {
    -webkit-transform: translate(-50%, 0px) scale(1);
            transform: translate(-50%, 0px) scale(1);
  }

  50% {
    -webkit-transform: translate(-50%, -40px) scale(1.5);
            transform: translate(-50%, -40px) scale(1.5);
  }

  to {
    -webkit-transform: translate(-50%, 0px) scale(1);
            transform: translate(-50%, 0px) scale(1);
  }
}

@-webkit-keyframes dotPulse {
  0%, 90%, 100% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }

  40% {
    opacity: 1;
    -webkit-transform: translateY(-0.05em) scale(1.05);
            transform: translateY(-0.05em) scale(1.05);
  }

  60% {
    opacity: 0.7;
    -webkit-transform: translateY(0.05em) scale(0.95);
            transform: translateY(0.05em) scale(0.95);
  }
}

@keyframes dotPulse {
  0%, 90%, 100% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }

  40% {
    opacity: 1;
    -webkit-transform: translateY(-0.05em) scale(1.05);
            transform: translateY(-0.05em) scale(1.05);
  }

  60% {
    opacity: 0.7;
    -webkit-transform: translateY(0.05em) scale(0.95);
            transform: translateY(0.05em) scale(0.95);
  }
}

@-webkit-keyframes commercialBG {
  0%, 100% {
    -webkit-transform: translate(100% 100%);
            transform: translate(100% 100%);
  }

  25% {
    -webkit-transform: translate(32% 132%);
            transform: translate(32% 132%);
  }

  50% {
    -webkit-transform: translate(112% 112%);
            transform: translate(112% 112%);
  }

  75% {
    -webkit-transform: translate(138% 138%);
            transform: translate(138% 138%);
  }
}

@keyframes commercialBG {
  0%, 100% {
    -webkit-transform: translate(100% 100%);
            transform: translate(100% 100%);
  }

  25% {
    -webkit-transform: translate(32% 132%);
            transform: translate(32% 132%);
  }

  50% {
    -webkit-transform: translate(112% 112%);
            transform: translate(112% 112%);
  }

  75% {
    -webkit-transform: translate(138% 138%);
            transform: translate(138% 138%);
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

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

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Remove the inner border and padding in Firefox.
 */

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

/**
 * Restore the focus styles unset by the previous rule.
 */

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

/**
 * Correct the padding in Firefox.
 */

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/** Общие параметры, шаблоны(заготовки) и вспомогательные классы */

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.container {
  max-width: 1312px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  height: 100%;
}

/** БЕМ блоки используемые во всё проекте */

a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: currentColor;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
  color: currentColor;
}

body {
  background-color: #F7F9FB;
  font-family: Roboto, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto, sans-serif;
}

.text_12 {
  font-size: 12px;
}

.text_14 {
  font-size: 14px;
}

.text_16 {
  font-size: 16px;
}

.text_18 {
  font-size: 18px;
}

.text_20 {
  font-size: 20px;
}

.text_22 {
  font-size: 22px;
}

.text_24 {
  font-size: 24px;
}

.text_28 {
  font-size: 28px;
}

.text_30 {
  font-size: 30px;
}

.text_32 {
  font-size: 32px;
}

.text_36 {
  font-size: 36px;
}

.text_40 {
  font-size: 40px;
}

.text_48 {
  font-size: 48px;
}

.text_56 {
  font-size: 56px;
}

.text_64 {
  font-size: 64px;
}

.text_72 {
  font-size: 72px;
}

.text_80 {
  font-size: 80px;
}

.text_96 {
  font-size: 96px;
}

.text_100 {
  font-size: 100px;
}

.text_120 {
  font-size: 120px;
}

.text_64-30 {
  font-size: clamp(
                    30px,
                    calc(
                        30px + (64 - 30) * ((100vw - 768px) / 544)
                    ),
                    64px
                );
}

.text_64-36 {
  font-size: clamp(
                    36px,
                    calc(
                        36px + (64 - 36) * ((100vw - 768px) / 544)
                    ),
                    64px
                );
}

.text_48-36 {
  font-size: clamp(
                    36px,
                    calc(
                        36px + (48 - 36) * ((100vw - 768px) / 544)
                    ),
                    48px
                );
}

.text_30-20 {
  font-size: clamp(
                    20px,
                    calc(
                        20px + (30 - 20) * ((100vw - 768px) / 544)
                    ),
                    30px
                );
}

.text_30-24 {
  font-size: clamp(
                    24px,
                    calc(
                        24px + (30 - 24) * ((100vw - 768px) / 544)
                    ),
                    30px
                );
}

.text_24-20 {
  font-size: clamp(
                    20px,
                    calc(
                        20px + (24 - 20) * ((100vw - 768px) / 544)
                    ),
                    24px
                );
}

.text_14-12 {
  font-size: clamp(
                    12px,
                    calc(
                        12px + (14 - 12) * ((100vw - 768px) / 544)
                    ),
                    14px
                );
}

.text_alt {
  font-family: GrtskGiga, sans-serif;
}

.p_4 {
  padding: 4px;
}

.p_8 {
  padding: 8px;
}

.p_12 {
  padding: 12px;
}

.p_16 {
  padding: 16px;
}

.p_20 {
  padding: 20px;
}

.p_24 {
  padding: 24px;
}

.p_32 {
  padding: 32px;
}

.p_48 {
  padding: 48px;
}

.p_64 {
  padding: 64px;
}

.p_96 {
  padding: 96px;
}

.pt_4 {
  padding-top: 4px;
}

.pt_8 {
  padding-top: 8px;
}

.pt_12 {
  padding-top: 12px;
}

.pt_16 {
  padding-top: 16px;
}

.pt_20 {
  padding-top: 20px;
}

.pt_24 {
  padding-top: 24px;
}

.pt_32 {
  padding-top: 32px;
}

.pt_48 {
  padding-top: 48px;
}

.pt_64 {
  padding-top: 64px;
}

.pt_96 {
  padding-top: 96px;
}

.pr_4 {
  padding-right: 4px;
}

.pr_8 {
  padding-right: 8px;
}

.pr_12 {
  padding-right: 12px;
}

.pr_16 {
  padding-right: 16px;
}

.pr_20 {
  padding-right: 20px;
}

.pr_24 {
  padding-right: 24px;
}

.pr_32 {
  padding-right: 32px;
}

.pr_48 {
  padding-right: 48px;
}

.pr_64 {
  padding-right: 64px;
}

.pr_96 {
  padding-right: 96px;
}

.pb_4 {
  padding-bottom: 4px;
}

.pb_8 {
  padding-bottom: 8px;
}

.pb_12 {
  padding-bottom: 12px;
}

.pb_16 {
  padding-bottom: 16px;
}

.pb_20 {
  padding-bottom: 20px;
}

.pb_24 {
  padding-bottom: 24px;
}

.pb_32 {
  padding-bottom: 32px;
}

.pb_48 {
  padding-bottom: 48px;
}

.pb_64 {
  padding-bottom: 64px;
}

.pb_96 {
  padding-bottom: 96px;
}

.pl_4 {
  padding-left: 4px;
}

.pl_8 {
  padding-left: 8px;
}

.pl_12 {
  padding-left: 12px;
}

.pl_16 {
  padding-left: 16px;
}

.pl_20 {
  padding-left: 20px;
}

.pl_24 {
  padding-left: 24px;
}

.pl_32 {
  padding-left: 32px;
}

.pl_48 {
  padding-left: 48px;
}

.pl_64 {
  padding-left: 64px;
}

.pl_96 {
  padding-left: 96px;
}

.m_4 {
  margin: 4px;
}

.m_8 {
  margin: 8px;
}

.m_12 {
  margin: 12px;
}

.m_16 {
  margin: 16px;
}

.m_20 {
  margin: 20px;
}

.m_24 {
  margin: 24px;
}

.m_32 {
  margin: 32px;
}

.m_48 {
  margin: 48px;
}

.m_64 {
  margin: 64px;
}

.m_96 {
  margin: 96px;
}

.mt_4 {
  margin-top: 4px;
}

.mt_8 {
  margin-top: 8px;
}

.mt_12 {
  margin-top: 12px;
}

.mt_16 {
  margin-top: 16px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_32 {
  margin-top: 32px;
}

.mt_48 {
  margin-top: 48px;
}

.mt_64 {
  margin-top: 64px;
}

.mt_96 {
  margin-top: 96px;
}

.mr_4 {
  margin-right: 4px;
}

.mr_8 {
  margin-right: 8px;
}

.mr_12 {
  margin-right: 12px;
}

.mr_16 {
  margin-right: 16px;
}

.mr_20 {
  margin-right: 20px;
}

.mr_24 {
  margin-right: 24px;
}

.mr_32 {
  margin-right: 32px;
}

.mr_48 {
  margin-right: 48px;
}

.mr_64 {
  margin-right: 64px;
}

.mr_96 {
  margin-right: 96px;
}

.mb_4 {
  margin-bottom: 4px;
}

.mb_8 {
  margin-bottom: 8px;
}

.mb_12 {
  margin-bottom: 12px;
}

.mb_16 {
  margin-bottom: 16px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_24 {
  margin-bottom: 24px;
}

.mb_32 {
  margin-bottom: 32px;
}

.mb_48 {
  margin-bottom: 48px;
}

.mb_64 {
  margin-bottom: 64px;
}

.mb_96 {
  margin-bottom: 96px;
}

.ml_4 {
  margin-left: 4px;
}

.ml_8 {
  margin-left: 8px;
}

.ml_12 {
  margin-left: 12px;
}

.ml_16 {
  margin-left: 16px;
}

.ml_20 {
  margin-left: 20px;
}

.ml_24 {
  margin-left: 24px;
}

.ml_32 {
  margin-left: 32px;
}

.ml_48 {
  margin-left: 48px;
}

.ml_64 {
  margin-left: 64px;
}

.ml_96 {
  margin-left: 96px;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  background-color: #007DFA;
  color: white;
  font-weight: 400;
  text-decoration: none;
  border-radius: 9999px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
  height: 40px;
  min-width: 120px;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 20px;
}

.btn__icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn_icon {
  min-width: 40px;
  padding: 10px;
}

.btn_sm {
  height: 32px;
  min-width: 100px;
  padding: 6px 16px;
  font-size: 14px;
  line-height: 20px;
}

.btn_sm .btn__icon {
  width: 16px;
  height: 16px;
}

.btn_sm.btn_icon {
  min-width: 32px;
  padding: 8px;
}

.btn_lg {
  height: 44px;
  min-width: 124px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
}

.btn_lg.btn_icon {
  min-width: 44px;
  padding: 12px;
}

.btn_secondary {
  background-color: #EAECF0;
  color: #475467;
}

.btn_tertiary {
  background-color: white;
  color: #475467;
  border: 1px solid #D0D5DD;
}

.btn_dark {
  background-color: rgba(255, 255, 255, 0.1019607843);
  color: #EAECF0;
}

.btn_link {
  min-width: auto;
  height: auto;
  gap: 2px;
  background-color: transparent;
  padding: 0;
  color: #007DFA;
}

.btn_link::before {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn_link-gray {
  min-width: auto;
  height: auto;
  gap: 2px;
  background-color: transparent;
  padding: 0;
  color: #98A2B3;
}

.btn_link-gray::before {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn_disabled {
  pointer-events: none;
  background-color: #EAECF0;
  color: #D0D5DD;
}

.uk-svg.svg-stroke {
  fill: none;
  stroke: currentColor;
}

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  padding: 96px 0 64px 0;
}

.section-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.section-header__title {
  margin: 0;
  font-weight: 500;
  color: #344054;
}

.section-header__subtitle {
  margin: 0;
  color: #475467;
}

.section-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.section-header__btn {
  width: 160px;
}

.section-header__text {
  color: #475467;
}

.section-divider {
  background-color: white;
  height: 12px;
}

.switcher {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  background-color: #EAECF0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
}

.switcher__thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 100px;
  background-color: #007DFA;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: width 0.3s ease, -webkit-transform 0.3s ease;
  transition: width 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, width 0.3s ease;
  transition: transform 0.3s ease, width 0.3s ease, -webkit-transform 0.3s ease;
}

.switcher__item {
  position: relative;
  z-index: 1;
  padding: 10px 24px;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  color: #344054;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
}

.switcher__item_active {
  color: white;
}

.uk-offcanvas-bar {
  background-color: white;
  color: #344054;
}

.uk-offcanvas-bar a {
  color: inherit;
}

.uk-offcanvas-bar a:hover {
  color: inherit;
}

.filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.filter-group__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.filter-group__title {
  font-weight: 500;
  color: #344054;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.filter-group__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.filter-group.uk-open .filter-group__icon {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.filter-group__content {
  padding-top: 4px;
  padding-bottom: 32px;
}

.filter-group .switcher {
  width: 100%;
}

.filter-group .switcher .switcher__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio__input {
  display: none;
}

.radio__input:checked ~ .radio__fake-input {
  border-color: #344054;
}

.radio__input:checked ~ .radio__fake-input::before {
  opacity: 1;
}

.radio__fake-input {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid #D0D5DD;
  position: relative;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.radio__fake-input::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #344054;
  opacity: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.input__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #D0D5DD;
  background-color: white;
  border-radius: 8px;
}

.input__prefix {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #D0D5DD;
  padding: 10px 0 10px 14px;
}

.input__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 10px;
  color: #344054;
  padding: 8px;
  border: none;
}

.input__postfix {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #667085;
  padding: 10px 14px 10px 0;
}

.input__error {
  color: #F04438;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox__input {
  display: none;
}

.checkbox__input:checked ~ .checkbox__fake-input {
  background-color: #101828;
  border-color: #101828;
}

.checkbox__fake-input {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid #D0D5DD;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  border-radius: 4px;
}

.range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.range__default-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.range_style .irs-handle {
  border-width: 2px;
  border-color: #007DFA;
}

.range_style .irs-bar {
  background-color: #007DFA;
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #EAECF0;
}

.search__input {
  border: none;
  padding: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.search__input:focus {
  outline: none;
}

.search__icon {
  color: #667085;
}

.scrollbar {
  overflow-y: auto;
}

@supports (-moz-appearance: none) {
  .scrollbar {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1019607843) #FFFFFF;
  }
}

.scrollbar::-webkit-scrollbar {
  width: 16px;
}

.scrollbar::-webkit-scrollbar-button {
  display: none;
}

.scrollbar::-webkit-scrollbar-button:vertical {
  display: none;
}

.scrollbar::-webkit-scrollbar-button:vertical:start:decrement,
.scrollbar::-webkit-scrollbar-button:vertical:end:increment {
  display: block;
  width: 16px;
  height: 0;
}

.scrollbar::-webkit-scrollbar-button:vertical:start:increment,
.scrollbar::-webkit-scrollbar-button:vertical:end:decrement {
  display: none;
}

.scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1019607843);
  background-clip: padding-box;
  border: 4px solid transparent;
  border-radius: 99px;
}

/** Подключение стилей отдельных блоков и секций */

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
  position: relative;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header.uk-sticky-below {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.header__logo {
  width: 154px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  list-style: none;
}

.header__nav a {
  font-family: GrtskGiga, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  color: #475467;
  font-weight: 500;
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
}

.header__burger-line {
  width: 17px;
  height: 2px;
  background-color: #475467;
  border-radius: 999px;
}

.footer {
  background-color: #1D1D1F;
  padding-top: 64px;
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}

.footer__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.footer__list {
  margin-top: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
}

.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1019607843);
  color: #98A2B3;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
}

.footer__col:first-child {
  border-left: none;
  padding-left: 0;
}

.footer__col ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-weight: 500;
}

.footer__menu {
  color: white;
  text-transform: uppercase;
}

.footer__col-title {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 96px;
  gap: 12px;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.footer__dev {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.footer__dev-link {
  color: #98A2B3;
}

.footer__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 60px);
      -ms-transform: translate(-50%, 60px);
          transform: translate(-50%, 60px);
  width: 100%;
  pointer-events: none;
  -webkit-transition: 3s;
  transition: 3s;
}

.footer__bg_active {
  -webkit-transform: translate(-50%, 50px);
      -ms-transform: translate(-50%, 50px);
          transform: translate(-50%, 50px);
}

.footer__btn_slim {
  min-width: 80px;
}

.hero {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -64px;
}

.hero__title {
  font-weight: 500;
  color: #344054;
  margin: 0;
  text-align: center;
}

.hero__subtitle {
  font-weight: 400;
  color: #475467;
  margin-top: 24px;
  text-align: center;
}

.hero__gradient {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(12%, rgb(52, 64, 84)), color-stop(24%, rgb(15, 88, 132)), color-stop(44%, rgb(43, 186, 196)), color-stop(60%, rgb(1, 109, 207)), color-stop(74%, rgb(2, 150, 224)), color-stop(91%, rgb(52, 64, 84)));
  background: linear-gradient(0deg, rgb(52, 64, 84) 12%, rgb(15, 88, 132) 24%, rgb(43, 186, 196) 44%, rgb(1, 109, 207) 60%, rgb(2, 150, 224) 74%, rgb(52, 64, 84) 91%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  -webkit-animation: heroGradient 8s ease-out 2s;
          animation: heroGradient 8s ease-out 2s;
  background-size: 100% 700%;
  background-position: 0 0;
}

.services {
  padding: 96px 0;
}

.services__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.services__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 672px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-radius: 8px;
  overflow: hidden;
}

.services__card_active .services__card-video {
  opacity: 1;
}

.services__card_active .services__card-title {
  background-position: 0 0;
}

.services__card_active .services__card-desc {
  color: white;
}

.services__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 356px;
  position: relative;
  z-index: 2;
}

.services__card-title {
  margin: 0;
  font-weight: 500;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.services__card-title_blue {
  background: -webkit-gradient(linear, left top, right top, from(white), color-stop(49%, white), color-stop(50%, #00234f), to(#337cbf));
  background: linear-gradient(to right, white 0%, white 49%, #00234f 50%, #337cbf 100%);
  background-size: 200% 100%;
  background-position: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services__card-title_orange {
  background: -webkit-gradient(linear, left top, right top, from(white), color-stop(49%, white), color-stop(50%, #602500), to(#cf7601));
  background: linear-gradient(to right, white 0%, white 49%, #602500 50%, #cf7601 100%);
  background-size: 200% 100%;
  background-position: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services__card-title_gray {
  background: -webkit-gradient(linear, left top, right top, from(white), color-stop(49%, white), color-stop(50%, #313131), to(#959595));
  background: linear-gradient(to right, white 0%, white 49%, #313131 50%, #959595 100%);
  background-size: 200% 100%;
  background-position: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services__card-desc {
  margin-top: 8px;
  color: #475467;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.5;
}

.services__card-btn {
  margin-top: 32px;
}

.services__card-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.news__card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33%;
          flex: 1 1 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news__card-img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__card-title {
  color: #004AAD;
  margin-top: 44px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3333;
  min-height: 64px;
}

.news__card-date {
  color: #667085;
  margin-top: 32px;
}

.commercial-hero {
  position: relative;
  margin-top: -64px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.commercial-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}

.commercial-hero__title {
  font-weight: 500;
  max-width: 800px;
  text-align: center;
  margin: 0;
  margin-top: 32px;
  background: linear-gradient(271.11deg, rgba(255, 255, 255, 0) -17.53%, #FFFFFF 31.82%, #FFFFFF 61.08%, #FFFFFF 78.49%, rgba(255, 255, 255, 0) 123.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.commercial-hero__title-dot {
  position: relative;
}

.commercial-hero__title-dot::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
  bottom: 28px;
  left: 10px;
  opacity: 0.7;
  -webkit-animation: dotPulse 6.8s infinite ease-in-out;
          animation: dotPulse 6.8s infinite ease-in-out;
}

.commercial-hero__title-dot:nth-child(2)::after {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.commercial-hero__btn {
  margin-top: 32px;
  min-width: 224px;
}

.commercial-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.catalog-popular__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 32px;
}

.catalog-popular__grid .catalog-card:first-child {
  grid-column: 1/-1;
}

.catalog-popular__grid .catalog-card:first-child .catalog-card__img {
  aspect-ratio: 3;
}

.catalog-popular__grid .catalog-popular__more-btn {
  margin: -8px auto 0 auto;
  grid-column: 1/-1;
}

.catalog-popular__more-btn .btn__icon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.catalog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.catalog-card__title {
  color: #344054;
  text-align: center;
  font-weight: 500;
}

.catalog-card__img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  aspect-ratio: 2;
  border-radius: 8px;
}

.catalog-list-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}

.catalog-list-card__img-wrapper {
  overflow: hidden;
}

.catalog-list-card__img {
  width: 400px;
  height: 200px;
  border-radius: 8px;
}

.catalog-list-card__info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.catalog-list-card__info-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.catalog-list-card__title {
  color: #344054;
  font-weight: 500;
}

.catalog-list-card__text {
  font-weight: 500;
  color: #475467;
}

.catalog-list-card__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}

.catalog-list-card__address-text {
  font-weight: 500;
  color: #004AAD;
}

.catalog-list-card__address-circle {
  width: 4px;
  height: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #CFD0D2;
  border-radius: 50%;
}

.catalog-map-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 20px 16px;
  cursor: pointer;
  border-radius: 8px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.catalog-map-card_active {
  background-color: #F2F4F7;
}

.catalog-map-card__img {
  border-radius: 4px;
  width: 56px;
  height: 64px;
}

.catalog-map-card__info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.catalog-map-card__title {
  font-weight: 500;
  color: #475467;
}

.catalog-map-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.catalog-map-card__text {
  font-weight: 500;
  color: #667085;
}

.catalog-map-card__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 6px;
}

.catalog-map-card__address-text {
  font-weight: 500;
  color: #004AAD;
}

.catalog-map-card__address-circle {
  width: 4px;
  height: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #CFD0D2;
  border-radius: 50%;
}

.cta-gradient {
  position: relative;
  min-height: 520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta-gradient_gradient .cta-gradient__img {
  display: none;
}

.cta-gradient__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}

.cta-gradient__title {
  margin: 0;
  text-align: center;
  font-weight: 500;
  color: #344054;
}

.cta-gradient__text {
  margin-top: 12px;
  max-width: 420px;
  text-align: center;
  color: #667085;
}

.cta-gradient__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.cta-gradient__btn {
  min-width: auto;
  margin-top: 32px;
}

.cta-gradient__gradient {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#E5F4FF));
  background: linear-gradient(180deg, #FFFFFF 0%, #E5F4FF 100%);
}

.catalog__content {
  position: relative;
  margin-top: 64px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.catalog__content_load {
  opacity: 0.4;
  pointer-events: none;
}

.catalog__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.catalog__filters-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}

.catalog__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 72px 32px;
}

.catalog__more-btn {
  grid-column: 1/-1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -8px auto 0 auto;
}

.catalog__more-btn_list {
  margin-top: 32px;
}

.catalog__more-btn .btn__icon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.catalog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.catalog__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.catalog__map-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  max-height: 420px;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 12px;
}

.catalog__map-map {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-radius: 8px;
  overflow: hidden;
}

.catalog-map-pin {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border-radius: 99px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
  pointer-events: auto;
}

.catalog-map-pin_active {
  z-index: 3;
}

.catalog-map-pin_active .catalog-map-pin__icon {
  background-color: #0693FF;
}

.catalog-map-pin_active .catalog-map-pin__title {
  color: #0693FF;
}

.catalog-map-pin__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #007DFA;
}

.catalog-map-pin__title {
  font-weight: 600;
  line-height: 1;
  color: #475467;
  white-space: nowrap;
  overflow: hidden;
  margin: 8px 12px 8px 0;
}

.catalog-map-cluster {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 99px;
  background-color: #007DFA;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fullscreen-img {
  height: 100vh;
  margin-top: -64px;
  overflow: hidden;
}

.fullscreen-img__container {
  height: 100%;
}

.fullscreen-img__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-project-grid {
  background-color: white;
}

.single-project-grid__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.single-project-grid__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.single-project-grid__img-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  overflow: hidden;
}

.single-project-grid__img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-project-grid__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  background-color: #F7F9FB;
}

.single-project-grid__title {
  font-weight: 500;
  background: -webkit-gradient(linear, left top, right top, from(#00234F), to(#337CBF));
  background: linear-gradient(90deg, #00234F 0%, #337CBF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.single-project-grid__title_second {
  background: -webkit-gradient(linear, left top, right top, from(#4C0F19), to(#AD717B));
  background: linear-gradient(90deg, #4C0F19 0%, #AD717B 100%);
  -webkit-background-clip: text;
          background-clip: text;
}

.location-filter__match {
  background: rgb(226, 226, 226);
  color: inherit;
  font: inherit;
  font-weight: inherit;
  padding: 0;
}

.location-filter__empty {
  margin: 16px 0 0;
  color: #98a2b3;
}

.location-filter__empty_hidden {
  display: none;
}

.catalog-filter-modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-bottom: 32px;
}

.catalog-filter-modal__title {
  font-weight: 500;
  color: #344054;
}

.catalog-filter-modal__reset {
  color: #D0D5DD !important;
  font-weight: 500;
}

.catalog-filter-modal__btn {
  margin-top: 32px;
  width: 100%;
}

@media (min-width: 768.98px) {
  .show_mobile {
    display: none !important;
  }
}

@media (min-width: 1024.98px) {
  .show_tablet {
    display: none !important;
  }
}

@media (min-width: 1312.98px) {
  .show_laptop {
    display: none !important;
  }
}

@media (max-width: 1312.98px) {
  .hidden_laptop {
    display: none !important;
  }
}

@media (max-width: 1024.98px) {
  .hidden_tablet {
    display: none !important;
  }

  .section-header {
    padding: 64px 0 48px 0;
  }

  .services__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .services__card {
    height: 480px;
  }

  .services__card-content {
    max-width: 280px;
  }

  .catalog-popular__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .text_mobile-12 {
    font-size: 12px;
  }

  .text_mobile-14 {
    font-size: 14px;
  }

  .text_mobile-16 {
    font-size: 16px;
  }

  .text_mobile-18 {
    font-size: 18px;
  }

  .text_mobile-20 {
    font-size: 20px;
  }

  .text_mobile-22 {
    font-size: 22px;
  }

  .text_mobile-24 {
    font-size: 24px;
  }

  .text_mobile-28 {
    font-size: 28px;
  }

  .text_mobile-30 {
    font-size: 30px;
  }

  .text_mobile-32 {
    font-size: 32px;
  }

  .text_mobile-36 {
    font-size: 36px;
  }

  .text_mobile-40 {
    font-size: 40px;
  }

  .text_mobile-48 {
    font-size: 48px;
  }

  .text_mobile-56 {
    font-size: 56px;
  }

  .text_mobile-64 {
    font-size: 64px;
  }

  .text_mobile-72 {
    font-size: 72px;
  }

  .text_mobile-80 {
    font-size: 80px;
  }

  .text_mobile-96 {
    font-size: 96px;
  }

  .text_mobile-100 {
    font-size: 100px;
  }

  .text_mobile-120 {
    font-size: 120px;
  }

  .p_mobile-4 {
    padding: 4px;
  }

  .p_mobile-8 {
    padding: 8px;
  }

  .p_mobile-12 {
    padding: 12px;
  }

  .p_mobile-16 {
    padding: 16px;
  }

  .p_mobile-20 {
    padding: 20px;
  }

  .p_mobile-24 {
    padding: 24px;
  }

  .p_mobile-32 {
    padding: 32px;
  }

  .p_mobile-48 {
    padding: 48px;
  }

  .p_mobile-64 {
    padding: 64px;
  }

  .p_mobile-96 {
    padding: 96px;
  }

  .pt_mobile-4 {
    padding-top: 4px;
  }

  .pt_mobile-8 {
    padding-top: 8px;
  }

  .pt_mobile-12 {
    padding-top: 12px;
  }

  .pt_mobile-16 {
    padding-top: 16px;
  }

  .pt_mobile-20 {
    padding-top: 20px;
  }

  .pt_mobile-24 {
    padding-top: 24px;
  }

  .pt_mobile-32 {
    padding-top: 32px;
  }

  .pt_mobile-48 {
    padding-top: 48px;
  }

  .pt_mobile-64 {
    padding-top: 64px;
  }

  .pt_mobile-96 {
    padding-top: 96px;
  }

  .pr_mobile-4 {
    padding-right: 4px;
  }

  .pr_mobile-8 {
    padding-right: 8px;
  }

  .pr_mobile-12 {
    padding-right: 12px;
  }

  .pr_mobile-16 {
    padding-right: 16px;
  }

  .pr_mobile-20 {
    padding-right: 20px;
  }

  .pr_mobile-24 {
    padding-right: 24px;
  }

  .pr_mobile-32 {
    padding-right: 32px;
  }

  .pr_mobile-48 {
    padding-right: 48px;
  }

  .pr_mobile-64 {
    padding-right: 64px;
  }

  .pr_mobile-96 {
    padding-right: 96px;
  }

  .pb_mobile-4 {
    padding-bottom: 4px;
  }

  .pb_mobile-8 {
    padding-bottom: 8px;
  }

  .pb_mobile-12 {
    padding-bottom: 12px;
  }

  .pb_mobile-16 {
    padding-bottom: 16px;
  }

  .pb_mobile-20 {
    padding-bottom: 20px;
  }

  .pb_mobile-24 {
    padding-bottom: 24px;
  }

  .pb_mobile-32 {
    padding-bottom: 32px;
  }

  .pb_mobile-48 {
    padding-bottom: 48px;
  }

  .pb_mobile-64 {
    padding-bottom: 64px;
  }

  .pb_mobile-96 {
    padding-bottom: 96px;
  }

  .pl_mobile-4 {
    padding-left: 4px;
  }

  .pl_mobile-8 {
    padding-left: 8px;
  }

  .pl_mobile-12 {
    padding-left: 12px;
  }

  .pl_mobile-16 {
    padding-left: 16px;
  }

  .pl_mobile-20 {
    padding-left: 20px;
  }

  .pl_mobile-24 {
    padding-left: 24px;
  }

  .pl_mobile-32 {
    padding-left: 32px;
  }

  .pl_mobile-48 {
    padding-left: 48px;
  }

  .pl_mobile-64 {
    padding-left: 64px;
  }

  .pl_mobile-96 {
    padding-left: 96px;
  }

  .m_mobile-4 {
    margin: 4px;
  }

  .m_mobile-8 {
    margin: 8px;
  }

  .m_mobile-12 {
    margin: 12px;
  }

  .m_mobile-16 {
    margin: 16px;
  }

  .m_mobile-20 {
    margin: 20px;
  }

  .m_mobile-24 {
    margin: 24px;
  }

  .m_mobile-32 {
    margin: 32px;
  }

  .m_mobile-48 {
    margin: 48px;
  }

  .m_mobile-64 {
    margin: 64px;
  }

  .m_mobile-96 {
    margin: 96px;
  }

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

  .mt_mobile-8 {
    margin-top: 8px;
  }

  .mt_mobile-12 {
    margin-top: 12px;
  }

  .mt_mobile-16 {
    margin-top: 16px;
  }

  .mt_mobile-20 {
    margin-top: 20px;
  }

  .mt_mobile-24 {
    margin-top: 24px;
  }

  .mt_mobile-32 {
    margin-top: 32px;
  }

  .mt_mobile-48 {
    margin-top: 48px;
  }

  .mt_mobile-64 {
    margin-top: 64px;
  }

  .mt_mobile-96 {
    margin-top: 96px;
  }

  .mr_mobile-4 {
    margin-right: 4px;
  }

  .mr_mobile-8 {
    margin-right: 8px;
  }

  .mr_mobile-12 {
    margin-right: 12px;
  }

  .mr_mobile-16 {
    margin-right: 16px;
  }

  .mr_mobile-20 {
    margin-right: 20px;
  }

  .mr_mobile-24 {
    margin-right: 24px;
  }

  .mr_mobile-32 {
    margin-right: 32px;
  }

  .mr_mobile-48 {
    margin-right: 48px;
  }

  .mr_mobile-64 {
    margin-right: 64px;
  }

  .mr_mobile-96 {
    margin-right: 96px;
  }

  .mb_mobile-4 {
    margin-bottom: 4px;
  }

  .mb_mobile-8 {
    margin-bottom: 8px;
  }

  .mb_mobile-12 {
    margin-bottom: 12px;
  }

  .mb_mobile-16 {
    margin-bottom: 16px;
  }

  .mb_mobile-20 {
    margin-bottom: 20px;
  }

  .mb_mobile-24 {
    margin-bottom: 24px;
  }

  .mb_mobile-32 {
    margin-bottom: 32px;
  }

  .mb_mobile-48 {
    margin-bottom: 48px;
  }

  .mb_mobile-64 {
    margin-bottom: 64px;
  }

  .mb_mobile-96 {
    margin-bottom: 96px;
  }

  .ml_mobile-4 {
    margin-left: 4px;
  }

  .ml_mobile-8 {
    margin-left: 8px;
  }

  .ml_mobile-12 {
    margin-left: 12px;
  }

  .ml_mobile-16 {
    margin-left: 16px;
  }

  .ml_mobile-20 {
    margin-left: 20px;
  }

  .ml_mobile-24 {
    margin-left: 24px;
  }

  .ml_mobile-32 {
    margin-left: 32px;
  }

  .ml_mobile-48 {
    margin-left: 48px;
  }

  .ml_mobile-64 {
    margin-left: 64px;
  }

  .ml_mobile-96 {
    margin-left: 96px;
  }
}

@media (max-width: 768.98px) {
  .hidden_mobile {
    display: none !important;
  }

  .switcher__item {
    padding: 10px 16px;
  }

  .footer {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer__actions {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }

  .footer__btn:first-child {
    margin-right: 140px;
  }

  .footer__list {
    margin-top: 64px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__col {
    padding-top: 32px;
    padding-bottom: 16px;
    padding-right: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  }

  .footer__bottom {
    margin-top: 64px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .news__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .news__card-title {
    margin-top: 32px;
    min-height: auto;
  }

  .news__card-date {
    margin-top: 24px;
  }

  .catalog-popular__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .catalog-card {
    gap: 32px;
  }

  .catalog__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
  }

  .catalog__filters {
    gap: 20px;
  }
}

@media (any-hover: hover) {
  .btn:hover {
    background-color: #0693FF;
    color: white;
    opacity: 1;
  }

  .btn_secondary:hover {
    background-color: #D0D5DD;
    color: #101828;
  }

  .btn_tertiary:hover {
    background-color: #F2F4F7;
    color: #101828;
    border: 1px solid #D0D5DD;
  }

  .btn_dark:hover {
    background-color: rgba(255, 255, 255, 0.1764705882);
    color: #EAECF0;
  }

  .btn_link:hover {
    background-color: transparent;
    color: #0693FF;
  }

  .btn_link:hover::before {
    left: 0;
    right: 20px;
    width: calc(100% - 20px);
  }

  .btn_link-gray:hover {
    background-color: transparent;
    color: #344054;
  }

  .btn_link-gray:hover::before {
    left: 0;
    right: 20px;
    width: calc(100% - 20px);
  }

  .switcher__item:hover {
    opacity: 0.7;
  }

  .radio:hover {
    opacity: 0.8;
  }

  .checkbox:hover {
    opacity: 0.8;
  }

  .scrollbar:hover::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .services__card:hover .services__card-video {
    opacity: 1;
  }

  .services__card:hover .services__card-title {
    background-position: 0 0;
  }

  .services__card:hover .services__card-desc {
    color: white;
  }

  .catalog-popular__more-btn:hover .btn__icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .catalog-card:hover {
    opacity: 1;
  }

  .catalog-card:hover .catalog-card__img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }

  .catalog-map-card:hover {
    background-color: #F2F4F7;
  }

  .catalog__more-btn:hover .btn__icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}