.v-flex {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.h-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
/**
 * Modern CSS Reset Tweaks
 * ================================================== */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Box sizing normalization */
*,
::after,
::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

li {
  list-style-type: none;
}

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

/**
 * Input Reset
 */
input:required,
input {
  -webkit-box-shadow: none;
          box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/* Make pictures easier to work with */
picture {
  display: inline-block;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

[disabled] {
  pointer-events: none;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
 * 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;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 75%;
}

/**
 * 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: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * 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;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * 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 all browsers.
 */
summary {
  display: list-item;
}

/*
 * Misc
 * ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

.v-flex {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.h-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font: 400 16px/150% "Montserrat", sans-serif !important;
  background: #F0F4F7;
}

a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #A7C7FA;
  display: inline-block;
  cursor: pointer;
}

[class*="--m-container"] {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1359px) {
  [class*="--m-container"] {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  [class*="--m-container"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.advanced-filters {
  min-height: 100%;
  padding: 40px 40px 48px;
  background: #FFFFFF;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: -ms-grid;
  display: grid;
  gap: 32px;
}
@media (max-width: 1359px) {
  .advanced-filters {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .advanced-filters {
    border-radius: 0;
  }
}
.advanced-filters__close {
  position: absolute;
  right: 35px;
  top: 35px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/dist/close.svg");
  cursor: pointer;
}
@media (max-width: 767px) {
  .advanced-filters__close {
    right: 20px;
    top: 20px;
  }
}
.advanced-filters__title {
  font: 600 26px/120% "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .advanced-filters__title {
    font: 600 18px/120% "Montserrat", sans-serif;
  }
}
.advanced-filters__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-column-gap: 16px;
  grid-row-gap: 32px;
}
.advanced-filters__field {
  width: 100%;
}
.advanced-filters__field--border {
  border: 1px solid #D9DBDE;
  border-radius: 8px;
}
.advanced-filters__field--range .range__wrapper {
  border: 1px solid #D9DBDE;
}
.advanced-filters__checkbox-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.advanced-filters__block {
  max-width: 288px;
  width: 100%;
}
@media (max-width: 767px) {
  .advanced-filters__block {
    max-width: 100%;
  }
}
.advanced-filters__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.advanced-filters__reset {
  width: 18px;
  height: 19px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/dist/reset.svg");
}

.agents-card {
  width: 243px;
  height: 373px;
  padding: 24px 16px;
  background: #FFFFFF;
  border-radius: 16px;
}
@media (max-width: 1359px) {
  .agents-card {
    padding: 16px;
    width: 220px;
    height: 339px;
  }
}
@media (max-width: 767px) {
  .agents-card {
    padding: 16px 12px;
    width: 196px;
    height: 315px;
  }
}
.agents-card__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.agents-card__img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .agents-card__img {
    width: 156px;
    height: 156px;
  }
}
.agents-card__fio {
  text-align: center;
  font: 600 16px/150% "Montserrat", sans-serif;
  color: #333333;
}
@media (max-width: 767px) {
  .agents-card__fio {
    font: 500 14px/150% "Montserrat", sans-serif;
  }
}
.agents-card__role {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #777E8C;
}
.agents-card__info {
  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: 4px;
}

.agents {
  position: relative;
  padding: 40px 0 40px;
}
.agents__header {
  margin-bottom: 24px;
  margin-right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .agents__header {
    margin-right: 0;
  }
}
.agents__all-view {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #D9DBDE;
  border-radius: 20px;
  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;
  font: 600 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
@media (max-width: 767px) {
  .agents__all-view--top {
    display: none;
  }
}
.agents__all-view--bottom {
  display: none;
}
@media (max-width: 767px) {
  .agents__all-view--bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.agents__all-view:hover {
  background: #DEEAFA;
}
.agents__swiper {
  overflow: hidden;
  position: initial;
}
@media (max-width: 1359px) {
  .agents__swiper {
    margin-right: -24px;
    margin-left: -24px;
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .agents__swiper {
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 16px;
    padding: 0 10px;
  }
}
.agents .swiper-slide {
  width: auto;
}

.card-apart {
  position: relative;
  height: auto;
  width: 308px !important;
  background: #FFFFFF;
  border-radius: 16px;
}
.card-apart__content {
  height: calc(100% - 220px);
  padding: 16px;
  gap: 16px;
}
.card-apart__info {
  width: 100%;
  height: 100%;
  gap: 16px;
}
@media (max-width: 767px) {
  .card-apart__info {
    gap: 8px;
  }
}
.card-apart__middle {
  gap: 4px;
}
.card-apart__commerce {
  gap: 16px;
}
.card-apart__metro {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #777E8C;
}
.card-apart__street {
  margin-right: 9px;
}
.card-apart__location {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
}
.card-apart__areas {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
.card-apart__men {
  width: 16px;
  height: 17px;
  background-image: url("../images/dist/men.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 4px;
}
.card-apart__time {
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
.card-apart__bus {
  width: 16px;
  height: 17px;
  background-image: url("../images/dist/bus.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 4px;
}
.card-apart__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
}
.card-apart__dot--red {
  background: #D32126;
}
.card-apart__dot--green {
  background: #22954F;
}
.card-apart__dot--grey {
  width: 4px;
  height: 4px;
  background: #D6D7D9;
  margin: 0 8px;
}
.card-apart__title {
  font: 600 16px/150% "Montserrat", sans-serif;
  color: #333333;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
@media (max-width: 767px) {
  .card-apart__title {
    font: 600 14px/150% "Montserrat", sans-serif;
  }
}
.card-apart__price {
  font: 600 18px/120% "Montserrat", sans-serif;
  color: #333333;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
@media (max-width: 767px) {
  .card-apart__price {
    font: 600 16px/150% "Montserrat", sans-serif;
  }
}
.card-apart__price-square {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
}
@media (max-width: 767px) {
  .card-apart__price-square {
    font: 500 12px/140% "Montserrat", sans-serif;
  }
}
.card-apart__label {
  height: 25px;
  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;
  padding: 0 8px;
  background: #D32126;
  border-radius: 14px;
  font: 600 12px/140% "Montserrat", sans-serif;
  color: #FFFFFF;
}
.card-apart__favorite {
  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: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  cursor: pointer;
}
.card-apart__favorite:hover {
  background: #DEEAFA;
}
.card-apart__icon-favorite {
  width: 20px;
  height: 18px;
  background-image: url("../images/dist/favorite.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.card-apart__actions {
  position: absolute;
  width: 100%;
  top: 0;
  padding: 8px;
}
.card-apart__buttons {
  width: 100%;
  display: none;
  -ms-grid-columns: 2fr 8px 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
}
@media (max-width: 767px) {
  .card-apart__buttons {
    display: -ms-grid;
    display: grid;
  }
}
.card-apart__img {
  width: 100%;
  height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
}

.card-new-building {
  position: relative;
  height: auto;
  width: 308px !important;
  background: #FFFFFF;
  border-radius: 16px;
}
.card-new-building__content {
  padding: 16px;
  gap: 16px;
}
.card-new-building__info {
  width: 100%;
  gap: 18px;
}
@media (max-width: 767px) {
  .card-new-building__info {
    gap: 16px;
  }
}
.card-new-building__top {
  position: relative;
}
.card-new-building__deadline {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 8px;
  padding: 4px 8px;
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #333333;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
}
.card-new-building__middle {
  gap: 4px;
}
.card-new-building__bottom {
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
.card-new-building__metro {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #777E8C;
}
.card-new-building__time {
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
.card-new-building__street {
  margin-right: 9px;
}
.card-new-building__men {
  width: 16px;
  height: 17px;
  background-image: url("../images/dist/men.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 4px;
}
.card-new-building__bus {
  width: 16px;
  height: 17px;
  background-image: url("../images/dist/bus.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 4px;
}
.card-new-building__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
}
.card-new-building__dot--red {
  background: #D32126;
}
.card-new-building__dot--green {
  background: #22954F;
}
.card-new-building__dot--grey {
  width: 4px;
  height: 4px;
  background: #D6D7D9;
  margin: 0 8px;
}
.card-new-building__name {
  font: 600 18px/120% "Montserrat", sans-serif;
  color: #333333;
}
@media (max-width: 767px) {
  .card-new-building__name {
    font: 600 16px/150% "Montserrat", sans-serif;
  }
}
.card-new-building__price {
  font: 600 16px/150% "Montserrat", sans-serif;
  color: #333333;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
.card-new-building__img {
  width: 100%;
  height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}

.collections {
  position: relative;
  padding: 40px 0 60px;
}
@media (max-width: 767px) {
  .collections {
    padding: 24px 0;
  }
}
.collections__header {
  margin-bottom: 24px;
}
.collections__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.collections__container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.collections__container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.collections__container > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media (max-width: 767px) {
  .collections__container {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 8px 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
  .collections__container > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .collections__container > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .collections__container > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .collections__container > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
.collections__item {
  position: relative;
}
.collections__item--1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}
.collections__item--2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
}
.collections__item--3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1/3/2/4;
}
@media (max-width: 1359px) {
  .collections__item {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .collections__item {
    height: 150px;
  }
  .collections__item--1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/2/3;
  }
  .collections__item--2 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .collections__item--3 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
  }
}
.collections__content {
  position: absolute;
  bottom: 0;
  width: 100%;
  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: 16px;
  padding: 0 16px 16px 24px;
}
@media (max-width: 767px) {
  .collections__content {
    gap: 0;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    height: 100%;
    padding: 16px 8px 8px 16px;
  }
}
.collections__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.collections__name {
  font: 600 22px/120% "Montserrat", sans-serif;
  color: #FFFFFF;
}
@media (max-width: 1359px) {
  .collections__name {
    font: 600 18px/120% "Montserrat", sans-serif;
  }
}
.collections__to {
  min-width: 40px;
  height: 40px;
  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;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  cursor: pointer;
}
.collections__to:hover {
  background: #DEEAFA;
}
@media (max-width: 767px) {
  .collections__to {
    margin-top: auto;
  }
}
.collections__icon-to {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("../images/dist/arrow-right.svg");
}

.company {
  position: relative;
  padding: 40px 0 60px;
}
@media (max-width: 767px) {
  .company {
    padding: 24px 0;
  }
}
.company__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 29px;
  margin-left: 3px;
}
@media (max-width: 767px) {
  .company__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }
}
.company__title {
  width: 415px;
}
@media (max-width: 1359px) {
  .company__title {
    width: auto;
  }
}
@media (max-width: 1359px) {
  .company__title {
    width: auto;
  }
}
.company__description {
  width: 626px;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
.company__description-mobile {
  display: none;
}
@media (max-width: 767px) {
  .company__description-mobile {
    display: block;
  }
}
@media (max-width: 1359px) {
  .company__description {
    min-width: 354px;
  }
}
@media (max-width: 767px) {
  .company__description {
    width: auto;
    display: none;
  }
}
.company__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  gap: 16px;
}
.company__container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.company__container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.company__container > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.company__container > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
@media (max-width: 767px) {
  .company__container {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[2];
    grid-template-rows: repeat(2, 1fr);
  }
  .company__container > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .company__container > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .company__container > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .company__container > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
.company__item {
  height: 172px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px 32px;
  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;
}
.company__item--1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}
.company__item--2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
}
.company__item--3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1/3/2/4;
}
.company__item--4 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 1/4/2/5;
}
@media (max-width: 1359px) {
  .company__item {
    height: 140px;
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .company__item--1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .company__item--2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
  .company__item--3 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .company__item--4 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
  }
}
.company__name {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
}
.company__value {
  font-weight: 600;
  font-size: 56px;
  line-height: 120%;
  color: #0C54A0;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
@media (max-width: 1359px) {
  .company__value {
    font: 600 36px/120% "Montserrat", sans-serif;
  }
}

.cta {
  height: auto;
  margin: 39px 0;
  background: #0C54A0;
  border-radius: 24px;
}
@media (max-width: 1359px) {
  .cta {
    margin: 24px 0;
  }
}
.cta__content {
  width: 100%;
  padding: 48px 66px 39px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1359px) {
  .cta__content {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .cta__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px;
  }
}
.cta__left {
  width: 67%;
  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;
}
@media (max-width: 1359px) {
  .cta__left {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .cta__left {
    width: 100%;
  }
}
.cta__right {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media (max-width: 1359px) {
  .cta__right {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .cta__right {
    width: 100%;
    gap: 16px;
  }
}
.cta__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.cta__phone input::-webkit-input-placeholder {
  color: #777E8C !important;
}
.cta__phone input::-moz-placeholder {
  color: #777E8C !important;
}
.cta__phone input:-ms-input-placeholder {
  color: #777E8C !important;
}
.cta__phone input::-ms-input-placeholder {
  color: #777E8C !important;
}
.cta__phone input::placeholder {
  color: #777E8C !important;
}
.cta__title {
  font: 600 30px/120% "Montserrat", sans-serif;
  color: #FFFFFF;
}
@media (max-width: 1359px) {
  .cta__title {
    font: 600 22px/120% "Montserrat", sans-serif;
  }
}
.cta__text {
  font: 400 16px/150% "Montserrat", sans-serif;
  color: #FFFFFF;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
@media (max-width: 1359px) {
  .cta__text {
    font: 500 14px/150% "Montserrat", sans-serif;
  }
}
.cta__polity {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #A7C7FA;
}
.cta__polity a {
  color: #A7C7FA;
  border-bottom: 1px solid #A7C7FA;
}
.cta__polity a:hover {
  color: #FFFFFF;
}

.drawer-menu {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  z-index: 10151;
}
.drawer-menu--open {
  display: block;
}
.drawer-menu__close {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/dist/close.svg");
  cursor: pointer;
}
@media (max-width: 767px) {
  .drawer-menu__close {
    right: 16px;
    top: 16px;
  }
}
.drawer-menu__overlay {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.drawer-menu__content {
  overflow-y: scroll;
  position: absolute;
  top: 0;
  right: 0;
  background: #FFFFFF;
  width: 50vw;
  height: 100%;
  padding: 56px 24px 0;
}
@media (max-width: 767px) {
  .drawer-menu__content {
    width: 100vw;
    padding: 16px 17px;
  }
}
.drawer-menu__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .drawer-menu__container {
    gap: 24px;
  }
}
.drawer-menu__header {
  display: none;
}
@media (max-width: 767px) {
  .drawer-menu__header {
    display: -ms-grid;
    display: grid;
    gap: 28px;
  }
}
.drawer-menu__geo {
  position: relative;
}
.drawer-menu__geo-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
}
.drawer-menu__dropdown {
  left: 0 !important;
}
.drawer-menu__nav {
  height: 100%;
  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;
  background: #F4F6FB;
  margin: 0 -24px;
  padding: 32px 24px;
}
@media (max-width: 767px) {
  .drawer-menu__nav {
    margin: 0 -16px;
    padding: 24px 16px;
  }
}
.drawer-menu__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.drawer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  margin-left: 16px;
}
.drawer-menu__list a {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #777E8C;
}
.drawer-menu__collapsible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drawer-menu__collapsible.active .drawer-menu__collapsible-icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.drawer-menu__collapsible-icon {
  width: 10px;
  height: 6px;
  background-image: url("../images/dist/arrow-input.svg");
}
.drawer-menu__label {
  font: 600 16px/150% "Montserrat", sans-serif;
  color: #333333;
}
.drawer-menu__sub-label {
  font: 600 16px/150% "Montserrat", sans-serif;
  color: #141414;
}
.drawer-menu__sub-label a {
  color: #141414;
}
.drawer-menu__info {
  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 0 0;
  gap: 16px;
}
.drawer-menu__phone {
  font: 600 26px/120% "Montserrat", sans-serif;
}
.drawer-menu__phone a {
  color: #141414;
}
@media (max-width: 767px) {
  .drawer-menu__phone {
    font: 600 22px/120% "Montserrat", sans-serif;
  }
}
@media (max-width: 767px) {
  .drawer-menu__call {
    height: 40px !important;
  }
}
.drawer-menu__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.drawer-menu__piker {
  margin-right: 4px;
}
.drawer-menu__arrow {
  margin-left: 20px;
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.drawer-menu__vk {
  width: 32px;
  height: 32px;
  background-image: url("../images/dist/vk-2.svg");
}
.drawer-menu__ok {
  width: 32px;
  height: 32px;
  background-image: url("../images/dist/ok-2.svg");
}
.drawer-menu__tg {
  width: 32px;
  height: 32px;
  background-image: url("../images/dist/tg-2.svg");
}

.filter {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 24px 0 32px;
}
.filter__tabs {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.filter__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
  padding: 4px;
  width: 338px;
  height: 45px;
  background: #DEEAFA;
  border-radius: 23px;
}
@media (max-width: 767px) {
  .filter__nav {
    display: none;
  }
}
.filter__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  height: 37px;
  border-radius: 19px;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.filter__item:hover {
  background: #A7C7FA;
}
.filter__item--active {
  color: #FFFFFF;
  background: #0C54A0;
}
.filter__item--active:hover {
  background: #0C54A0;
}
.filter__tab {
  background-color: #f2f2f2;
  display: none;
  height: 57px;
}
.filter__tab--active {
  display: block;
}
.filter__tab-buy, .filter__tab-take {
  height: 100%;
}
.filter__main {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 1359px) {
  .filter__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.filter__col {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}
.filter__col--1 {
  width: 57%;
}
@media (max-width: 1359px) {
  .filter__col--1 {
    width: 100%;
  }
}
.filter__col--2 {
  width: 42%;
}
@media (max-width: 767px) {
  .filter__col {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.filter__col--wrap {
  width: 30%;
}
@media (max-width: 767px) {
  .filter__col--wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
  }
}
.filter__deal {
  display: none;
  width: 100%;
}
@media (max-width: 767px) {
  .filter__deal {
    display: block;
  }
}
.filter__reality {
  width: 100%;
  min-width: 166px;
}
.filter__list-rooms {
  width: 216px;
  min-width: 166px;
}
@media (max-width: 1359px) {
  .filter__list-rooms {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .filter__list-rooms {
    width: 100%;
  }
}
.filter__price {
  width: 280px;
}
@media (max-width: 1359px) {
  .filter__price {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .filter__price {
    width: 100%;
  }
}
.filter__address {
  max-width: 340px;
  width: 100%;
}
@media (max-width: 1359px) {
  .filter__address {
    max-width: 100%;
  }
}
.filter__sell, .filter__rent {
  height: 100%;
}
.filter__sell .filter__price, .filter__rent .filter__price {
  width: 50%;
}
@media (max-width: 767px) {
  .filter__sell .filter__price, .filter__rent .filter__price {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .filter__sell .filter__fio, .filter__rent .filter__fio {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .filter__sell .filter__phone, .filter__rent .filter__phone {
    max-width: 100%;
  }
}
.filter__sell .filter__col--1, .filter__rent .filter__col--1 {
  width: 35%;
}
@media (max-width: 1359px) {
  .filter__sell .filter__col--1, .filter__rent .filter__col--1 {
    width: 100%;
  }
}
.filter__sell .filter__col--2, .filter__rent .filter__col--2 {
  width: 65%;
}
@media (max-width: 1359px) {
  .filter__sell .filter__col--2, .filter__rent .filter__col--2 {
    width: 100%;
  }
}
.filter__sell .filter__col--wrap, .filter__rent .filter__col--wrap {
  width: 50%;
}
@media (max-width: 767px) {
  .filter__sell .filter__col--wrap, .filter__rent .filter__col--wrap {
    width: 100%;
  }
}
.filter__fio {
  max-width: 518px;
  width: 100%;
}
.filter__phone {
  max-width: 219px;
  width: 100%;
}
@media (max-width: 1359px) {
  .filter__send {
    width: 100% !important;
  }
}
.filter__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}
.filter__actions .button {
  padding: 0 15px !important;
}
@media (max-width: 767px) {
  .filter__actions {
    width: 100%;
  }
}
.filter__btn-skeleton {
  min-width: 52px;
}
@media (max-width: 767px) {
  .filter__btn-search {
    width: 100% !important;
  }
}
.filter__icon-filter {
  width: 18px;
  height: 19px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/dist/filter.svg");
}
.filter__icon-map {
  width: 18px;
  height: 19px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/dist/map.svg");
}
.filter__popover-advanced-filters {
  display: none;
  max-width: 976px;
  width: 100%;
  top: calc(100% - 16px);
  height: auto;
  position: absolute;
  z-index: 100;
}
.filter__popover-advanced-filters--active {
  display: block;
}
@media (max-width: 767px) {
  .filter__popover-advanced-filters {
    overflow-y: scroll;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.footer {
  background: #0C54A0;
  padding: 60px 0 40px;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0 20px;
  }
}
.footer__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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
}
@media (max-width: 767px) {
  .footer__content {
    gap: 32px;
  }
}
.footer__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
}
@media (max-width: 767px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.footer__contacts {
  min-width: 308px;
  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;
}
@media (max-width: 1359px) {
  .footer__contacts {
    min-width: 260px;
  }
}
@media (max-width: 767px) {
  .footer__contacts {
    gap: 24px;
  }
}
.footer__logo {
  max-width: 168px;
}
.footer__phone {
  font: 600 16px/150% "Montserrat", sans-serif;
  color: #FFFFFF;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
.footer__phone:hover {
  color: #A7C7FA !important;
}
.footer__geo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.footer__address-label {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #A7C7FA;
}
.footer__address {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #FFFFFF;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
.footer__menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1359px) {
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    gap: 16px;
  }
}
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  gap: 60px;
}
@media (max-width: 1359px) {
  .footer__left {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer__left {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  gap: 60px;
}
@media (max-width: 1359px) {
  .footer__right {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer__right {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__category {
  width: 194px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .footer__category {
    width: 100%;
    gap: 0;
  }
}
.footer__label {
  font: 600 16px/150% "Montserrat", sans-serif;
  color: #FFFFFF;
}
.footer__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: 8px;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #A7C7FA;
}
@media (max-width: 767px) {
  .footer__list {
    max-height: 0;
    overflow: hidden;
  }
}
.footer__bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #A7C7FA;
}
@media (max-width: 767px) {
  .footer__bottom {
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.footer__social-link--left {
  display: none;
}
@media (max-width: 1359px) {
  .footer__social-link--left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1359px) {
  .footer__social-link--bottom {
    display: none;
  }
}
.footer__copy {
  width: 45%;
}
@media (max-width: 1359px) {
  .footer__copy {
    width: 63%;
  }
}
@media (max-width: 767px) {
  .footer__copy {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
.footer__polity {
  width: 40%;
}
@media (max-width: 767px) {
  .footer__polity {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.footer__collapsible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__collapsible.active .footer__collapsible-icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 767px) {
  .footer__collapsible.active {
    margin-bottom: 16px;
  }
}
.footer__collapsible-icon {
  display: none;
  width: 10px;
  height: 6px;
  background-image: url("../images/dist/arrow-collapsible.svg");
}
@media (max-width: 767px) {
  .footer__collapsible-icon {
    display: block;
  }
}
.footer__vk {
  width: 32px;
  height: 32px;
  background-image: url("../images/dist/vk.svg");
}
.footer__ok {
  width: 32px;
  height: 32px;
  background-image: url("../images/dist/ok.svg");
}
.footer__tg {
  width: 32px;
  height: 32px;
  background-image: url("../images/dist/telegram.svg");
}
.footer a:hover {
  color: #FFFFFF;
}

.main-banner {
  position: relative;
}
@media (max-width: 1359px) {
  .main-banner {
    height: 425px;
  }
}
@media (max-width: 767px) {
  .main-banner {
    height: 320px;
  }
}
.main-banner__swiper {
  width: 100%;
  height: 100%;
}
.main-banner__slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.main-banner__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.main-banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  width: 100%;
  padding: 100px 108px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (max-width: 1359px) {
  .main-banner__content {
    padding: 70px 48px;
  }
}
@media (max-width: 767px) {
  .main-banner__content {
    padding: 32px 16px 28px;
  }
}
.main-banner__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font: 600 36px/120% "Montserrat", sans-serif;
  color: #FFFFFF;
  margin-bottom: 16px;
}
@media (max-width: 1359px) {
  .main-banner__title {
    font: 600 30px/120% "Montserrat", sans-serif;
  }
}
@media (max-width: 767px) {
  .main-banner__title {
    font: 600 22px/120% "Montserrat", sans-serif;
    margin-bottom: 10px;
  }
}
.main-banner__color {
  color: #B2CFFD;
}
@media (max-width: 767px) {
  .main-banner__button {
    margin-top: auto;
    width: 100% !important;
    padding: 9px !important;
  }
}
.main-banner__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #FFFFFF;
  margin-bottom: 24px;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
.main-banner__description > div {
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
@media (max-width: 767px) {
  .main-banner__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main-banner__pagination {
  left: 108px !important;
  bottom: 17px !important;
  text-align: left;
}
@media (max-width: 1359px) {
  .main-banner__pagination {
    bottom: 28px !important;
    left: 48px !important;
  }
}
@media (max-width: 767px) {
  .main-banner__pagination {
    left: inherit !important;
    bottom: 2px !important;
    text-align: center;
  }
}
.main-banner .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 3px !important;
  background: transparent;
  border: 1px solid #FFFFFF;
  opacity: 1;
}
.main-banner .swiper-pagination-bullet-active {
  background: #FFF;
}
@media (max-width: 767px) {
  .main-banner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.menu {
  display: none;
  position: absolute;
  top: 110%;
  width: 100%;
  height: auto;
  padding: 32px 60px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  z-index: 1000;
}
@media (max-width: 1359px) {
  .menu {
    display: none;
  }
}
.menu--active {
  display: block;
}
.menu__close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/dist/close.svg");
  cursor: pointer;
}
.menu__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.menu__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  min-width: 240px;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.menu__list a {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #777E8C;
}
.menu__list a:hover {
  color: #0C54A0;
}
.menu__label {
  font: 600 16px/120% "Montserrat", sans-serif;
  color: #333333;
}
.menu__label a {
  color: #333333;
}
.menu__label a:hover {
  color: #0C54A0;
}

.navbar {
  position: relative;
  width: 100%;
  height: 64px;
  margin: 8px 0;
  background: #FFFFFF;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .navbar {
    margin: 8px 0;
  }
}
.navbar__container {
  height: 100%;
  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;
  padding: 12px 16px;
}
@media (max-width: 767px) {
  .navbar__container {
    padding: 12px 8.5px;
  }
}
@media (max-width: 767px) {
  .navbar__logo {
    width: 126px;
  }
}
.navbar__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.navbar__nav a {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
}
.navbar__nav a:hover {
  color: #0C54A0;
}
.navbar__nav li:hover {
  color: #0C54A0;
}
.navbar__nav li:last-child {
  margin-left: 6px;
}
@media (max-width: 1359px) {
  .navbar__nav {
    display: none;
  }
}
.navbar__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.navbar__right {
  width: 37.1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 1359px) {
  .navbar__right {
    width: auto;
  }
}
.navbar__phone a {
  font: 600 14px/150% "Montserrat", sans-serif;
  color: #333333;
  -webkit-font-feature-settings: "tnum" on, "lnum" on;
          font-feature-settings: "tnum" on, "lnum" on;
}
.navbar__phone a:hover {
  color: #0C54A0 !important;
}
@media (max-width: 1359px) {
  .navbar__phone {
    display: none;
  }
}
.navbar__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.navbar__add-ad-full {
  width: 191px !important;
  padding: 0 12px !important;
}
@media (max-width: 767px) {
  .navbar__add-ad-full {
    display: none !important;
  }
}
.navbar__add-ad-small {
  display: none;
  width: 32px;
  height: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #0C54A0;
}
@media (max-width: 767px) {
  .navbar__add-ad-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.navbar__geo {
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .navbar__geo {
    display: none;
  }
}
.navbar__dropdown {
  display: none;
  position: absolute;
  top: 36px;
  right: -70px;
  width: 151px;
  height: 74px;
  background: #FFFFFF;
  border-radius: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px;
  gap: 8px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
.navbar__dropdown a {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
}
.navbar__dropdown-item {
  position: relative;
  height: 21px;
}
.navbar__dropdown-item--active:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0;
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
@media (max-width: 1359px) {
  .navbar__dropdown {
    right: -96px;
  }
}
.navbar__item--active {
  color: #D32126;
}
.navbar__menu {
  width: 18px;
  height: 18px;
  background-image: url("../images/dist/menu.svg");
  cursor: pointer;
}
@media (max-width: 1359px) {
  .navbar__menu {
    display: block;
  }
}
.navbar__more {
  width: 18px;
  height: 18px;
  background-image: url("../images/dist/more.svg");
  cursor: pointer;
}
.navbar__piker {
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  background-image: url("../images/dist/piker.svg");
  cursor: pointer;
}
.navbar__favorite {
  width: 20px;
  height: 18px;
  background-image: url("../images/dist/favorite.svg");
  background-repeat: no-repeat;
  cursor: pointer;
}
.navbar__favorite--active {
  background-image: url("../images/dist/favourite-active.svg");
}
.navbar__lk {
  width: 18px;
  height: 18px;
  background-image: url("../images/dist/lk.svg");
  cursor: pointer;
}
.navbar__plus {
  width: 18px;
  height: 18px;
  background-image: url("../images/dist/plus.svg");
  cursor: pointer;
}

.navbar__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  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;
}
@media (max-width: 767px) {
  .navbar__btn--geo {
    display: none;
  }
}
.navbar__btn--menu {
  display: none;
}
@media (max-width: 1359px) {
  .navbar__btn--menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.news-card {
  width: 308px;
  height: 352px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1359px) {
  .news-card {
    width: 260px;
    height: 376px;
  }
}
.news-card__img {
  border-radius: 16px;
  margin-bottom: 12px;
}
.news-card__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.news-card__badge-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 6px;
  height: 19px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #D9DBDE;
  border-radius: 14px;
  font-weight: 500;
  font-size: 11px;
  line-height: 100%;
  color: #777E8C;
}
.news-card__badge-item:hover {
  color: #0C54A0;
}
.news-card__title {
  font: 600 16px/150% "Montserrat", sans-serif;
  color: #333333;
}
.news-card__title:hover {
  color: #0C54A0;
}
.news-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  margin-top: auto;
  margin-bottom: 12px;
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
}
@media (max-width: 767px) {
  .news-card__bottom {
    margin-bottom: 0;
  }
}
.news-card__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}
.news-card__eye {
  width: 16px;
  height: 17px;
  background-image: url("../images/dist/eye.svg");
}

.news {
  position: relative;
  padding: 42.5px 0 40px;
}
@media (max-width: 767px) {
  .news {
    padding: 24px 0;
  }
}
.news__header {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .news__header {
    margin-bottom: 16px;
  }
}
.news__all-view {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #D9DBDE;
  border-radius: 20px;
  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;
  font: 600 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
@media (max-width: 767px) {
  .news__all-view--top {
    display: none;
  }
}
.news__all-view--bottom {
  display: none;
}
@media (max-width: 767px) {
  .news__all-view--bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.news__all-view:hover {
  background: #DEEAFA;
}
.news__swiper {
  overflow: hidden;
  position: initial;
}
@media (max-width: 1359px) {
  .news__swiper {
    margin-right: -24px;
    margin-left: -24px;
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .news__swiper {
    display: none;
  }
}
.news .swiper-slide {
  width: auto;
}
.news__list {
  width: 100%;
  display: none;
  gap: 8px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .news__list {
    display: -ms-grid;
    display: grid;
  }
}
.news__item {
  width: auto;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 12px 16px;
}

.popular-new-buildings {
  position: relative;
  padding: 42.5px 0 40px;
}
@media (max-width: 767px) {
  .popular-new-buildings {
    padding: 24px 0;
  }
}
.popular-new-buildings__header {
  margin-bottom: 24px;
  margin-right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .popular-new-buildings__header {
    margin-right: 0;
  }
}
.popular-new-buildings__all-view {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #D9DBDE;
  border-radius: 20px;
  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;
  font: 600 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
@media (max-width: 767px) {
  .popular-new-buildings__all-view--top {
    display: none;
  }
}
.popular-new-buildings__all-view--bottom {
  display: none;
}
@media (max-width: 767px) {
  .popular-new-buildings__all-view--bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.popular-new-buildings__all-view:hover {
  background: #DEEAFA;
}
.popular-new-buildings__swiper {
  overflow: hidden;
  position: initial;
}
@media (max-width: 1359px) {
  .popular-new-buildings__swiper {
    margin-right: -24px;
    margin-left: -24px;
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .popular-new-buildings__swiper {
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 16px;
    padding: 0 10px;
  }
}
.popular-new-buildings .swiper-slide {
  width: auto;
}

.recommendations {
  position: relative;
  padding: 38px 0 40px;
}
@media (max-width: 767px) {
  .recommendations {
    padding: 24px 0;
  }
}
.recommendations__header {
  margin-bottom: 23px;
  margin-right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .recommendations__header {
    margin-right: 0;
  }
}
.recommendations__all-view {
  height: 39px;
  padding: 0 11px;
  border: 1px solid #D9DBDE;
  border-radius: 20px;
  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;
  font: 600 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
@media (max-width: 767px) {
  .recommendations__all-view--top {
    display: none;
  }
}
.recommendations__all-view--bottom {
  display: none;
}
@media (max-width: 767px) {
  .recommendations__all-view--bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.recommendations__all-view:hover {
  background: #DEEAFA;
}
.recommendations__swiper {
  overflow: hidden;
  position: initial;
}
@media (max-width: 1359px) {
  .recommendations__swiper {
    margin-right: -24px;
    margin-left: -24px;
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .recommendations__swiper {
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 16px;
    padding: 0 10px;
  }
}
.recommendations .swiper-slide {
  width: 100%;
}

.seo {
  width: 100%;
  height: auto;
  padding: 0 0 40px 0;
  font: 500 12px/150% "Montserrat", sans-serif;
  color: #777E8C;
}
@media (max-width: 767px) {
  .seo {
    padding: 0 0 24px 0;
  }
}
.seo > p {
  margin-bottom: 8px;
}
.seo h1 {
  font: 600 18px/120% "Montserrat", sans-serif;
  color: #141414;
  margin-bottom: 16px;
}
.seo__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .seo__content {
    max-height: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.seo__text {
  font: 500 12px/150% "Montserrat", sans-serif;
  color: #777E8C;
}
.seo__text--top {
  display: none;
}
@media (max-width: 767px) {
  .seo__text--top {
    display: block;
  }
}
@media (max-width: 767px) {
  .seo__text--disable {
    display: none;
  }
}
.seo__unwrap {
  display: none;
  margin-top: 16px;
  font: 600 14px/150% "Montserrat", sans-serif;
  color: #0C54A0;
}
@media (max-width: 767px) {
  .seo__unwrap {
    display: block;
  }
}
.seo__block {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .seo__block {
    width: 100%;
  }
}
.seo h2 {
  font: 600 14px/150% "Montserrat", sans-serif;
  color: #777E8C;
}
.seo ul li {
  list-style: disc;
  list-style-position: inside;
}
.seo ol {
  list-style: decimal;
  padding-left: 18px;
}
.seo ol li {
  list-style: decimal;
}

.services {
  position: relative;
  padding: 39px 0 40px;
}
@media (max-width: 767px) {
  .services {
    padding: 24px 0;
  }
}
.services__header {
  margin-bottom: 24px;
  margin-left: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.services__all-view {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #D9DBDE;
  border-radius: 20px;
  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;
  font: 600 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
@media (max-width: 767px) {
  .services__all-view--top {
    display: none;
  }
}
.services__all-view--bottom {
  display: none;
}
@media (max-width: 767px) {
  .services__all-view--bottom {
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.services__all-view:hover {
  background: #DEEAFA;
}
.services__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr 16px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-bottom: 24px;
}
.services__container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.services__container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.services__container > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.services__container > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.services__container > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.services__container > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.services__container > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.services__container > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
@media (max-width: 1359px) {
  .services__container {
    -ms-grid-columns: (1fr)[24];
    grid-template-columns: repeat(24, 1fr);
    -ms-grid-rows: (1fr)[30];
    grid-template-rows: repeat(30, 1fr);
  }
  .services__container > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(6) {
    -ms-grid-row: 1;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(7) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(8) {
    -ms-grid-row: 1;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(9) {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(10) {
    -ms-grid-row: 1;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(11) {
    -ms-grid-row: 1;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(12) {
    -ms-grid-row: 1;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(13) {
    -ms-grid-row: 1;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(14) {
    -ms-grid-row: 1;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(15) {
    -ms-grid-row: 1;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(16) {
    -ms-grid-row: 1;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(17) {
    -ms-grid-row: 1;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(18) {
    -ms-grid-row: 1;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(19) {
    -ms-grid-row: 1;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(20) {
    -ms-grid-row: 1;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(21) {
    -ms-grid-row: 1;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(22) {
    -ms-grid-row: 1;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(23) {
    -ms-grid-row: 1;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(24) {
    -ms-grid-row: 1;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(25) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(26) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(27) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(28) {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(29) {
    -ms-grid-row: 2;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(30) {
    -ms-grid-row: 2;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(31) {
    -ms-grid-row: 2;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(32) {
    -ms-grid-row: 2;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(33) {
    -ms-grid-row: 2;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(34) {
    -ms-grid-row: 2;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(35) {
    -ms-grid-row: 2;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(36) {
    -ms-grid-row: 2;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(37) {
    -ms-grid-row: 2;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(38) {
    -ms-grid-row: 2;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(39) {
    -ms-grid-row: 2;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(40) {
    -ms-grid-row: 2;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(41) {
    -ms-grid-row: 2;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(42) {
    -ms-grid-row: 2;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(43) {
    -ms-grid-row: 2;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(44) {
    -ms-grid-row: 2;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(45) {
    -ms-grid-row: 2;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(46) {
    -ms-grid-row: 2;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(47) {
    -ms-grid-row: 2;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(48) {
    -ms-grid-row: 2;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(49) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(50) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(51) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(52) {
    -ms-grid-row: 3;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(53) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(54) {
    -ms-grid-row: 3;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(55) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(56) {
    -ms-grid-row: 3;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(57) {
    -ms-grid-row: 3;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(58) {
    -ms-grid-row: 3;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(59) {
    -ms-grid-row: 3;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(60) {
    -ms-grid-row: 3;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(61) {
    -ms-grid-row: 3;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(62) {
    -ms-grid-row: 3;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(63) {
    -ms-grid-row: 3;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(64) {
    -ms-grid-row: 3;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(65) {
    -ms-grid-row: 3;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(66) {
    -ms-grid-row: 3;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(67) {
    -ms-grid-row: 3;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(68) {
    -ms-grid-row: 3;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(69) {
    -ms-grid-row: 3;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(70) {
    -ms-grid-row: 3;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(71) {
    -ms-grid-row: 3;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(72) {
    -ms-grid-row: 3;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(73) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(74) {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(75) {
    -ms-grid-row: 4;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(76) {
    -ms-grid-row: 4;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(77) {
    -ms-grid-row: 4;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(78) {
    -ms-grid-row: 4;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(79) {
    -ms-grid-row: 4;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(80) {
    -ms-grid-row: 4;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(81) {
    -ms-grid-row: 4;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(82) {
    -ms-grid-row: 4;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(83) {
    -ms-grid-row: 4;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(84) {
    -ms-grid-row: 4;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(85) {
    -ms-grid-row: 4;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(86) {
    -ms-grid-row: 4;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(87) {
    -ms-grid-row: 4;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(88) {
    -ms-grid-row: 4;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(89) {
    -ms-grid-row: 4;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(90) {
    -ms-grid-row: 4;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(91) {
    -ms-grid-row: 4;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(92) {
    -ms-grid-row: 4;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(93) {
    -ms-grid-row: 4;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(94) {
    -ms-grid-row: 4;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(95) {
    -ms-grid-row: 4;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(96) {
    -ms-grid-row: 4;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(97) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(98) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(99) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(100) {
    -ms-grid-row: 5;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(101) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(102) {
    -ms-grid-row: 5;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(103) {
    -ms-grid-row: 5;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(104) {
    -ms-grid-row: 5;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(105) {
    -ms-grid-row: 5;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(106) {
    -ms-grid-row: 5;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(107) {
    -ms-grid-row: 5;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(108) {
    -ms-grid-row: 5;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(109) {
    -ms-grid-row: 5;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(110) {
    -ms-grid-row: 5;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(111) {
    -ms-grid-row: 5;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(112) {
    -ms-grid-row: 5;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(113) {
    -ms-grid-row: 5;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(114) {
    -ms-grid-row: 5;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(115) {
    -ms-grid-row: 5;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(116) {
    -ms-grid-row: 5;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(117) {
    -ms-grid-row: 5;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(118) {
    -ms-grid-row: 5;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(119) {
    -ms-grid-row: 5;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(120) {
    -ms-grid-row: 5;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(121) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(122) {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(123) {
    -ms-grid-row: 6;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(124) {
    -ms-grid-row: 6;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(125) {
    -ms-grid-row: 6;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(126) {
    -ms-grid-row: 6;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(127) {
    -ms-grid-row: 6;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(128) {
    -ms-grid-row: 6;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(129) {
    -ms-grid-row: 6;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(130) {
    -ms-grid-row: 6;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(131) {
    -ms-grid-row: 6;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(132) {
    -ms-grid-row: 6;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(133) {
    -ms-grid-row: 6;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(134) {
    -ms-grid-row: 6;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(135) {
    -ms-grid-row: 6;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(136) {
    -ms-grid-row: 6;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(137) {
    -ms-grid-row: 6;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(138) {
    -ms-grid-row: 6;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(139) {
    -ms-grid-row: 6;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(140) {
    -ms-grid-row: 6;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(141) {
    -ms-grid-row: 6;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(142) {
    -ms-grid-row: 6;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(143) {
    -ms-grid-row: 6;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(144) {
    -ms-grid-row: 6;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(145) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(146) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(147) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(148) {
    -ms-grid-row: 7;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(149) {
    -ms-grid-row: 7;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(150) {
    -ms-grid-row: 7;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(151) {
    -ms-grid-row: 7;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(152) {
    -ms-grid-row: 7;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(153) {
    -ms-grid-row: 7;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(154) {
    -ms-grid-row: 7;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(155) {
    -ms-grid-row: 7;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(156) {
    -ms-grid-row: 7;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(157) {
    -ms-grid-row: 7;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(158) {
    -ms-grid-row: 7;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(159) {
    -ms-grid-row: 7;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(160) {
    -ms-grid-row: 7;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(161) {
    -ms-grid-row: 7;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(162) {
    -ms-grid-row: 7;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(163) {
    -ms-grid-row: 7;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(164) {
    -ms-grid-row: 7;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(165) {
    -ms-grid-row: 7;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(166) {
    -ms-grid-row: 7;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(167) {
    -ms-grid-row: 7;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(168) {
    -ms-grid-row: 7;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(169) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(170) {
    -ms-grid-row: 8;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(171) {
    -ms-grid-row: 8;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(172) {
    -ms-grid-row: 8;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(173) {
    -ms-grid-row: 8;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(174) {
    -ms-grid-row: 8;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(175) {
    -ms-grid-row: 8;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(176) {
    -ms-grid-row: 8;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(177) {
    -ms-grid-row: 8;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(178) {
    -ms-grid-row: 8;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(179) {
    -ms-grid-row: 8;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(180) {
    -ms-grid-row: 8;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(181) {
    -ms-grid-row: 8;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(182) {
    -ms-grid-row: 8;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(183) {
    -ms-grid-row: 8;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(184) {
    -ms-grid-row: 8;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(185) {
    -ms-grid-row: 8;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(186) {
    -ms-grid-row: 8;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(187) {
    -ms-grid-row: 8;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(188) {
    -ms-grid-row: 8;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(189) {
    -ms-grid-row: 8;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(190) {
    -ms-grid-row: 8;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(191) {
    -ms-grid-row: 8;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(192) {
    -ms-grid-row: 8;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(193) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(194) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(195) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(196) {
    -ms-grid-row: 9;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(197) {
    -ms-grid-row: 9;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(198) {
    -ms-grid-row: 9;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(199) {
    -ms-grid-row: 9;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(200) {
    -ms-grid-row: 9;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(201) {
    -ms-grid-row: 9;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(202) {
    -ms-grid-row: 9;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(203) {
    -ms-grid-row: 9;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(204) {
    -ms-grid-row: 9;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(205) {
    -ms-grid-row: 9;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(206) {
    -ms-grid-row: 9;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(207) {
    -ms-grid-row: 9;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(208) {
    -ms-grid-row: 9;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(209) {
    -ms-grid-row: 9;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(210) {
    -ms-grid-row: 9;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(211) {
    -ms-grid-row: 9;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(212) {
    -ms-grid-row: 9;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(213) {
    -ms-grid-row: 9;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(214) {
    -ms-grid-row: 9;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(215) {
    -ms-grid-row: 9;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(216) {
    -ms-grid-row: 9;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(217) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(218) {
    -ms-grid-row: 10;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(219) {
    -ms-grid-row: 10;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(220) {
    -ms-grid-row: 10;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(221) {
    -ms-grid-row: 10;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(222) {
    -ms-grid-row: 10;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(223) {
    -ms-grid-row: 10;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(224) {
    -ms-grid-row: 10;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(225) {
    -ms-grid-row: 10;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(226) {
    -ms-grid-row: 10;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(227) {
    -ms-grid-row: 10;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(228) {
    -ms-grid-row: 10;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(229) {
    -ms-grid-row: 10;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(230) {
    -ms-grid-row: 10;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(231) {
    -ms-grid-row: 10;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(232) {
    -ms-grid-row: 10;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(233) {
    -ms-grid-row: 10;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(234) {
    -ms-grid-row: 10;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(235) {
    -ms-grid-row: 10;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(236) {
    -ms-grid-row: 10;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(237) {
    -ms-grid-row: 10;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(238) {
    -ms-grid-row: 10;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(239) {
    -ms-grid-row: 10;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(240) {
    -ms-grid-row: 10;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(241) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(242) {
    -ms-grid-row: 11;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(243) {
    -ms-grid-row: 11;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(244) {
    -ms-grid-row: 11;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(245) {
    -ms-grid-row: 11;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(246) {
    -ms-grid-row: 11;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(247) {
    -ms-grid-row: 11;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(248) {
    -ms-grid-row: 11;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(249) {
    -ms-grid-row: 11;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(250) {
    -ms-grid-row: 11;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(251) {
    -ms-grid-row: 11;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(252) {
    -ms-grid-row: 11;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(253) {
    -ms-grid-row: 11;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(254) {
    -ms-grid-row: 11;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(255) {
    -ms-grid-row: 11;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(256) {
    -ms-grid-row: 11;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(257) {
    -ms-grid-row: 11;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(258) {
    -ms-grid-row: 11;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(259) {
    -ms-grid-row: 11;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(260) {
    -ms-grid-row: 11;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(261) {
    -ms-grid-row: 11;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(262) {
    -ms-grid-row: 11;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(263) {
    -ms-grid-row: 11;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(264) {
    -ms-grid-row: 11;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(265) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(266) {
    -ms-grid-row: 12;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(267) {
    -ms-grid-row: 12;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(268) {
    -ms-grid-row: 12;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(269) {
    -ms-grid-row: 12;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(270) {
    -ms-grid-row: 12;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(271) {
    -ms-grid-row: 12;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(272) {
    -ms-grid-row: 12;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(273) {
    -ms-grid-row: 12;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(274) {
    -ms-grid-row: 12;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(275) {
    -ms-grid-row: 12;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(276) {
    -ms-grid-row: 12;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(277) {
    -ms-grid-row: 12;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(278) {
    -ms-grid-row: 12;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(279) {
    -ms-grid-row: 12;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(280) {
    -ms-grid-row: 12;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(281) {
    -ms-grid-row: 12;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(282) {
    -ms-grid-row: 12;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(283) {
    -ms-grid-row: 12;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(284) {
    -ms-grid-row: 12;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(285) {
    -ms-grid-row: 12;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(286) {
    -ms-grid-row: 12;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(287) {
    -ms-grid-row: 12;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(288) {
    -ms-grid-row: 12;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(289) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(290) {
    -ms-grid-row: 13;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(291) {
    -ms-grid-row: 13;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(292) {
    -ms-grid-row: 13;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(293) {
    -ms-grid-row: 13;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(294) {
    -ms-grid-row: 13;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(295) {
    -ms-grid-row: 13;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(296) {
    -ms-grid-row: 13;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(297) {
    -ms-grid-row: 13;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(298) {
    -ms-grid-row: 13;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(299) {
    -ms-grid-row: 13;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(300) {
    -ms-grid-row: 13;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(301) {
    -ms-grid-row: 13;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(302) {
    -ms-grid-row: 13;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(303) {
    -ms-grid-row: 13;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(304) {
    -ms-grid-row: 13;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(305) {
    -ms-grid-row: 13;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(306) {
    -ms-grid-row: 13;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(307) {
    -ms-grid-row: 13;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(308) {
    -ms-grid-row: 13;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(309) {
    -ms-grid-row: 13;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(310) {
    -ms-grid-row: 13;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(311) {
    -ms-grid-row: 13;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(312) {
    -ms-grid-row: 13;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(313) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(314) {
    -ms-grid-row: 14;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(315) {
    -ms-grid-row: 14;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(316) {
    -ms-grid-row: 14;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(317) {
    -ms-grid-row: 14;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(318) {
    -ms-grid-row: 14;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(319) {
    -ms-grid-row: 14;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(320) {
    -ms-grid-row: 14;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(321) {
    -ms-grid-row: 14;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(322) {
    -ms-grid-row: 14;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(323) {
    -ms-grid-row: 14;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(324) {
    -ms-grid-row: 14;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(325) {
    -ms-grid-row: 14;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(326) {
    -ms-grid-row: 14;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(327) {
    -ms-grid-row: 14;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(328) {
    -ms-grid-row: 14;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(329) {
    -ms-grid-row: 14;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(330) {
    -ms-grid-row: 14;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(331) {
    -ms-grid-row: 14;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(332) {
    -ms-grid-row: 14;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(333) {
    -ms-grid-row: 14;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(334) {
    -ms-grid-row: 14;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(335) {
    -ms-grid-row: 14;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(336) {
    -ms-grid-row: 14;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(337) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(338) {
    -ms-grid-row: 15;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(339) {
    -ms-grid-row: 15;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(340) {
    -ms-grid-row: 15;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(341) {
    -ms-grid-row: 15;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(342) {
    -ms-grid-row: 15;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(343) {
    -ms-grid-row: 15;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(344) {
    -ms-grid-row: 15;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(345) {
    -ms-grid-row: 15;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(346) {
    -ms-grid-row: 15;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(347) {
    -ms-grid-row: 15;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(348) {
    -ms-grid-row: 15;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(349) {
    -ms-grid-row: 15;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(350) {
    -ms-grid-row: 15;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(351) {
    -ms-grid-row: 15;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(352) {
    -ms-grid-row: 15;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(353) {
    -ms-grid-row: 15;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(354) {
    -ms-grid-row: 15;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(355) {
    -ms-grid-row: 15;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(356) {
    -ms-grid-row: 15;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(357) {
    -ms-grid-row: 15;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(358) {
    -ms-grid-row: 15;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(359) {
    -ms-grid-row: 15;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(360) {
    -ms-grid-row: 15;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(361) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(362) {
    -ms-grid-row: 16;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(363) {
    -ms-grid-row: 16;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(364) {
    -ms-grid-row: 16;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(365) {
    -ms-grid-row: 16;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(366) {
    -ms-grid-row: 16;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(367) {
    -ms-grid-row: 16;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(368) {
    -ms-grid-row: 16;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(369) {
    -ms-grid-row: 16;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(370) {
    -ms-grid-row: 16;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(371) {
    -ms-grid-row: 16;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(372) {
    -ms-grid-row: 16;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(373) {
    -ms-grid-row: 16;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(374) {
    -ms-grid-row: 16;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(375) {
    -ms-grid-row: 16;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(376) {
    -ms-grid-row: 16;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(377) {
    -ms-grid-row: 16;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(378) {
    -ms-grid-row: 16;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(379) {
    -ms-grid-row: 16;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(380) {
    -ms-grid-row: 16;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(381) {
    -ms-grid-row: 16;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(382) {
    -ms-grid-row: 16;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(383) {
    -ms-grid-row: 16;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(384) {
    -ms-grid-row: 16;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(385) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(386) {
    -ms-grid-row: 17;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(387) {
    -ms-grid-row: 17;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(388) {
    -ms-grid-row: 17;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(389) {
    -ms-grid-row: 17;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(390) {
    -ms-grid-row: 17;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(391) {
    -ms-grid-row: 17;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(392) {
    -ms-grid-row: 17;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(393) {
    -ms-grid-row: 17;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(394) {
    -ms-grid-row: 17;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(395) {
    -ms-grid-row: 17;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(396) {
    -ms-grid-row: 17;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(397) {
    -ms-grid-row: 17;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(398) {
    -ms-grid-row: 17;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(399) {
    -ms-grid-row: 17;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(400) {
    -ms-grid-row: 17;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(401) {
    -ms-grid-row: 17;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(402) {
    -ms-grid-row: 17;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(403) {
    -ms-grid-row: 17;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(404) {
    -ms-grid-row: 17;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(405) {
    -ms-grid-row: 17;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(406) {
    -ms-grid-row: 17;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(407) {
    -ms-grid-row: 17;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(408) {
    -ms-grid-row: 17;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(409) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(410) {
    -ms-grid-row: 18;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(411) {
    -ms-grid-row: 18;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(412) {
    -ms-grid-row: 18;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(413) {
    -ms-grid-row: 18;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(414) {
    -ms-grid-row: 18;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(415) {
    -ms-grid-row: 18;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(416) {
    -ms-grid-row: 18;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(417) {
    -ms-grid-row: 18;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(418) {
    -ms-grid-row: 18;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(419) {
    -ms-grid-row: 18;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(420) {
    -ms-grid-row: 18;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(421) {
    -ms-grid-row: 18;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(422) {
    -ms-grid-row: 18;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(423) {
    -ms-grid-row: 18;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(424) {
    -ms-grid-row: 18;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(425) {
    -ms-grid-row: 18;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(426) {
    -ms-grid-row: 18;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(427) {
    -ms-grid-row: 18;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(428) {
    -ms-grid-row: 18;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(429) {
    -ms-grid-row: 18;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(430) {
    -ms-grid-row: 18;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(431) {
    -ms-grid-row: 18;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(432) {
    -ms-grid-row: 18;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(433) {
    -ms-grid-row: 19;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(434) {
    -ms-grid-row: 19;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(435) {
    -ms-grid-row: 19;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(436) {
    -ms-grid-row: 19;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(437) {
    -ms-grid-row: 19;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(438) {
    -ms-grid-row: 19;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(439) {
    -ms-grid-row: 19;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(440) {
    -ms-grid-row: 19;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(441) {
    -ms-grid-row: 19;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(442) {
    -ms-grid-row: 19;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(443) {
    -ms-grid-row: 19;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(444) {
    -ms-grid-row: 19;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(445) {
    -ms-grid-row: 19;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(446) {
    -ms-grid-row: 19;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(447) {
    -ms-grid-row: 19;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(448) {
    -ms-grid-row: 19;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(449) {
    -ms-grid-row: 19;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(450) {
    -ms-grid-row: 19;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(451) {
    -ms-grid-row: 19;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(452) {
    -ms-grid-row: 19;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(453) {
    -ms-grid-row: 19;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(454) {
    -ms-grid-row: 19;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(455) {
    -ms-grid-row: 19;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(456) {
    -ms-grid-row: 19;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(457) {
    -ms-grid-row: 20;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(458) {
    -ms-grid-row: 20;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(459) {
    -ms-grid-row: 20;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(460) {
    -ms-grid-row: 20;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(461) {
    -ms-grid-row: 20;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(462) {
    -ms-grid-row: 20;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(463) {
    -ms-grid-row: 20;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(464) {
    -ms-grid-row: 20;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(465) {
    -ms-grid-row: 20;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(466) {
    -ms-grid-row: 20;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(467) {
    -ms-grid-row: 20;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(468) {
    -ms-grid-row: 20;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(469) {
    -ms-grid-row: 20;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(470) {
    -ms-grid-row: 20;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(471) {
    -ms-grid-row: 20;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(472) {
    -ms-grid-row: 20;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(473) {
    -ms-grid-row: 20;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(474) {
    -ms-grid-row: 20;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(475) {
    -ms-grid-row: 20;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(476) {
    -ms-grid-row: 20;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(477) {
    -ms-grid-row: 20;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(478) {
    -ms-grid-row: 20;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(479) {
    -ms-grid-row: 20;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(480) {
    -ms-grid-row: 20;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(481) {
    -ms-grid-row: 21;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(482) {
    -ms-grid-row: 21;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(483) {
    -ms-grid-row: 21;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(484) {
    -ms-grid-row: 21;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(485) {
    -ms-grid-row: 21;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(486) {
    -ms-grid-row: 21;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(487) {
    -ms-grid-row: 21;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(488) {
    -ms-grid-row: 21;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(489) {
    -ms-grid-row: 21;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(490) {
    -ms-grid-row: 21;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(491) {
    -ms-grid-row: 21;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(492) {
    -ms-grid-row: 21;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(493) {
    -ms-grid-row: 21;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(494) {
    -ms-grid-row: 21;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(495) {
    -ms-grid-row: 21;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(496) {
    -ms-grid-row: 21;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(497) {
    -ms-grid-row: 21;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(498) {
    -ms-grid-row: 21;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(499) {
    -ms-grid-row: 21;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(500) {
    -ms-grid-row: 21;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(501) {
    -ms-grid-row: 21;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(502) {
    -ms-grid-row: 21;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(503) {
    -ms-grid-row: 21;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(504) {
    -ms-grid-row: 21;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(505) {
    -ms-grid-row: 22;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(506) {
    -ms-grid-row: 22;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(507) {
    -ms-grid-row: 22;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(508) {
    -ms-grid-row: 22;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(509) {
    -ms-grid-row: 22;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(510) {
    -ms-grid-row: 22;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(511) {
    -ms-grid-row: 22;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(512) {
    -ms-grid-row: 22;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(513) {
    -ms-grid-row: 22;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(514) {
    -ms-grid-row: 22;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(515) {
    -ms-grid-row: 22;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(516) {
    -ms-grid-row: 22;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(517) {
    -ms-grid-row: 22;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(518) {
    -ms-grid-row: 22;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(519) {
    -ms-grid-row: 22;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(520) {
    -ms-grid-row: 22;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(521) {
    -ms-grid-row: 22;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(522) {
    -ms-grid-row: 22;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(523) {
    -ms-grid-row: 22;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(524) {
    -ms-grid-row: 22;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(525) {
    -ms-grid-row: 22;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(526) {
    -ms-grid-row: 22;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(527) {
    -ms-grid-row: 22;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(528) {
    -ms-grid-row: 22;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(529) {
    -ms-grid-row: 23;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(530) {
    -ms-grid-row: 23;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(531) {
    -ms-grid-row: 23;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(532) {
    -ms-grid-row: 23;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(533) {
    -ms-grid-row: 23;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(534) {
    -ms-grid-row: 23;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(535) {
    -ms-grid-row: 23;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(536) {
    -ms-grid-row: 23;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(537) {
    -ms-grid-row: 23;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(538) {
    -ms-grid-row: 23;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(539) {
    -ms-grid-row: 23;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(540) {
    -ms-grid-row: 23;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(541) {
    -ms-grid-row: 23;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(542) {
    -ms-grid-row: 23;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(543) {
    -ms-grid-row: 23;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(544) {
    -ms-grid-row: 23;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(545) {
    -ms-grid-row: 23;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(546) {
    -ms-grid-row: 23;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(547) {
    -ms-grid-row: 23;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(548) {
    -ms-grid-row: 23;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(549) {
    -ms-grid-row: 23;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(550) {
    -ms-grid-row: 23;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(551) {
    -ms-grid-row: 23;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(552) {
    -ms-grid-row: 23;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(553) {
    -ms-grid-row: 24;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(554) {
    -ms-grid-row: 24;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(555) {
    -ms-grid-row: 24;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(556) {
    -ms-grid-row: 24;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(557) {
    -ms-grid-row: 24;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(558) {
    -ms-grid-row: 24;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(559) {
    -ms-grid-row: 24;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(560) {
    -ms-grid-row: 24;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(561) {
    -ms-grid-row: 24;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(562) {
    -ms-grid-row: 24;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(563) {
    -ms-grid-row: 24;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(564) {
    -ms-grid-row: 24;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(565) {
    -ms-grid-row: 24;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(566) {
    -ms-grid-row: 24;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(567) {
    -ms-grid-row: 24;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(568) {
    -ms-grid-row: 24;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(569) {
    -ms-grid-row: 24;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(570) {
    -ms-grid-row: 24;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(571) {
    -ms-grid-row: 24;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(572) {
    -ms-grid-row: 24;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(573) {
    -ms-grid-row: 24;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(574) {
    -ms-grid-row: 24;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(575) {
    -ms-grid-row: 24;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(576) {
    -ms-grid-row: 24;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(577) {
    -ms-grid-row: 25;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(578) {
    -ms-grid-row: 25;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(579) {
    -ms-grid-row: 25;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(580) {
    -ms-grid-row: 25;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(581) {
    -ms-grid-row: 25;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(582) {
    -ms-grid-row: 25;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(583) {
    -ms-grid-row: 25;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(584) {
    -ms-grid-row: 25;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(585) {
    -ms-grid-row: 25;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(586) {
    -ms-grid-row: 25;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(587) {
    -ms-grid-row: 25;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(588) {
    -ms-grid-row: 25;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(589) {
    -ms-grid-row: 25;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(590) {
    -ms-grid-row: 25;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(591) {
    -ms-grid-row: 25;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(592) {
    -ms-grid-row: 25;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(593) {
    -ms-grid-row: 25;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(594) {
    -ms-grid-row: 25;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(595) {
    -ms-grid-row: 25;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(596) {
    -ms-grid-row: 25;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(597) {
    -ms-grid-row: 25;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(598) {
    -ms-grid-row: 25;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(599) {
    -ms-grid-row: 25;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(600) {
    -ms-grid-row: 25;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(601) {
    -ms-grid-row: 26;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(602) {
    -ms-grid-row: 26;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(603) {
    -ms-grid-row: 26;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(604) {
    -ms-grid-row: 26;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(605) {
    -ms-grid-row: 26;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(606) {
    -ms-grid-row: 26;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(607) {
    -ms-grid-row: 26;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(608) {
    -ms-grid-row: 26;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(609) {
    -ms-grid-row: 26;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(610) {
    -ms-grid-row: 26;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(611) {
    -ms-grid-row: 26;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(612) {
    -ms-grid-row: 26;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(613) {
    -ms-grid-row: 26;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(614) {
    -ms-grid-row: 26;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(615) {
    -ms-grid-row: 26;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(616) {
    -ms-grid-row: 26;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(617) {
    -ms-grid-row: 26;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(618) {
    -ms-grid-row: 26;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(619) {
    -ms-grid-row: 26;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(620) {
    -ms-grid-row: 26;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(621) {
    -ms-grid-row: 26;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(622) {
    -ms-grid-row: 26;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(623) {
    -ms-grid-row: 26;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(624) {
    -ms-grid-row: 26;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(625) {
    -ms-grid-row: 27;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(626) {
    -ms-grid-row: 27;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(627) {
    -ms-grid-row: 27;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(628) {
    -ms-grid-row: 27;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(629) {
    -ms-grid-row: 27;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(630) {
    -ms-grid-row: 27;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(631) {
    -ms-grid-row: 27;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(632) {
    -ms-grid-row: 27;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(633) {
    -ms-grid-row: 27;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(634) {
    -ms-grid-row: 27;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(635) {
    -ms-grid-row: 27;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(636) {
    -ms-grid-row: 27;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(637) {
    -ms-grid-row: 27;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(638) {
    -ms-grid-row: 27;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(639) {
    -ms-grid-row: 27;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(640) {
    -ms-grid-row: 27;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(641) {
    -ms-grid-row: 27;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(642) {
    -ms-grid-row: 27;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(643) {
    -ms-grid-row: 27;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(644) {
    -ms-grid-row: 27;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(645) {
    -ms-grid-row: 27;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(646) {
    -ms-grid-row: 27;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(647) {
    -ms-grid-row: 27;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(648) {
    -ms-grid-row: 27;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(649) {
    -ms-grid-row: 28;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(650) {
    -ms-grid-row: 28;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(651) {
    -ms-grid-row: 28;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(652) {
    -ms-grid-row: 28;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(653) {
    -ms-grid-row: 28;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(654) {
    -ms-grid-row: 28;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(655) {
    -ms-grid-row: 28;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(656) {
    -ms-grid-row: 28;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(657) {
    -ms-grid-row: 28;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(658) {
    -ms-grid-row: 28;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(659) {
    -ms-grid-row: 28;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(660) {
    -ms-grid-row: 28;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(661) {
    -ms-grid-row: 28;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(662) {
    -ms-grid-row: 28;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(663) {
    -ms-grid-row: 28;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(664) {
    -ms-grid-row: 28;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(665) {
    -ms-grid-row: 28;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(666) {
    -ms-grid-row: 28;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(667) {
    -ms-grid-row: 28;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(668) {
    -ms-grid-row: 28;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(669) {
    -ms-grid-row: 28;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(670) {
    -ms-grid-row: 28;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(671) {
    -ms-grid-row: 28;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(672) {
    -ms-grid-row: 28;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(673) {
    -ms-grid-row: 29;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(674) {
    -ms-grid-row: 29;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(675) {
    -ms-grid-row: 29;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(676) {
    -ms-grid-row: 29;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(677) {
    -ms-grid-row: 29;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(678) {
    -ms-grid-row: 29;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(679) {
    -ms-grid-row: 29;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(680) {
    -ms-grid-row: 29;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(681) {
    -ms-grid-row: 29;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(682) {
    -ms-grid-row: 29;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(683) {
    -ms-grid-row: 29;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(684) {
    -ms-grid-row: 29;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(685) {
    -ms-grid-row: 29;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(686) {
    -ms-grid-row: 29;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(687) {
    -ms-grid-row: 29;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(688) {
    -ms-grid-row: 29;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(689) {
    -ms-grid-row: 29;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(690) {
    -ms-grid-row: 29;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(691) {
    -ms-grid-row: 29;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(692) {
    -ms-grid-row: 29;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(693) {
    -ms-grid-row: 29;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(694) {
    -ms-grid-row: 29;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(695) {
    -ms-grid-row: 29;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(696) {
    -ms-grid-row: 29;
    -ms-grid-column: 24;
  }
  .services__container > *:nth-child(697) {
    -ms-grid-row: 30;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(698) {
    -ms-grid-row: 30;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(699) {
    -ms-grid-row: 30;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(700) {
    -ms-grid-row: 30;
    -ms-grid-column: 4;
  }
  .services__container > *:nth-child(701) {
    -ms-grid-row: 30;
    -ms-grid-column: 5;
  }
  .services__container > *:nth-child(702) {
    -ms-grid-row: 30;
    -ms-grid-column: 6;
  }
  .services__container > *:nth-child(703) {
    -ms-grid-row: 30;
    -ms-grid-column: 7;
  }
  .services__container > *:nth-child(704) {
    -ms-grid-row: 30;
    -ms-grid-column: 8;
  }
  .services__container > *:nth-child(705) {
    -ms-grid-row: 30;
    -ms-grid-column: 9;
  }
  .services__container > *:nth-child(706) {
    -ms-grid-row: 30;
    -ms-grid-column: 10;
  }
  .services__container > *:nth-child(707) {
    -ms-grid-row: 30;
    -ms-grid-column: 11;
  }
  .services__container > *:nth-child(708) {
    -ms-grid-row: 30;
    -ms-grid-column: 12;
  }
  .services__container > *:nth-child(709) {
    -ms-grid-row: 30;
    -ms-grid-column: 13;
  }
  .services__container > *:nth-child(710) {
    -ms-grid-row: 30;
    -ms-grid-column: 14;
  }
  .services__container > *:nth-child(711) {
    -ms-grid-row: 30;
    -ms-grid-column: 15;
  }
  .services__container > *:nth-child(712) {
    -ms-grid-row: 30;
    -ms-grid-column: 16;
  }
  .services__container > *:nth-child(713) {
    -ms-grid-row: 30;
    -ms-grid-column: 17;
  }
  .services__container > *:nth-child(714) {
    -ms-grid-row: 30;
    -ms-grid-column: 18;
  }
  .services__container > *:nth-child(715) {
    -ms-grid-row: 30;
    -ms-grid-column: 19;
  }
  .services__container > *:nth-child(716) {
    -ms-grid-row: 30;
    -ms-grid-column: 20;
  }
  .services__container > *:nth-child(717) {
    -ms-grid-row: 30;
    -ms-grid-column: 21;
  }
  .services__container > *:nth-child(718) {
    -ms-grid-row: 30;
    -ms-grid-column: 22;
  }
  .services__container > *:nth-child(719) {
    -ms-grid-row: 30;
    -ms-grid-column: 23;
  }
  .services__container > *:nth-child(720) {
    -ms-grid-row: 30;
    -ms-grid-column: 24;
  }
}
@media (max-width: 767px) {
  .services__container {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    margin-bottom: 16px;
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 8px 1fr 8px 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  .services__container > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .services__container > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
}
.services__item {
  height: 245px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px 32px;
}
.services__item--1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}
.services__item--2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: 1/2/2/4;
}
.services__item--3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 1/4/2/5;
}
.services__item--4 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}
.services__item--5 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
}
.services__item--6 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 2/3/3/4;
}
.services__item--7 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 2/4/3/5;
}
@media (max-width: 1359px) {
  .services__item {
    height: auto;
    padding: 24px;
  }
  .services__item--1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-area: 1/1/11/10;
  }
  .services__item--2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 10;
    -ms-grid-column: 10;
    -ms-grid-column-span: 15;
    grid-area: 1/10/11/25;
  }
  .services__item--3 {
    -ms-grid-row: 11;
    -ms-grid-row-span: 11;
    -ms-grid-column: 17;
    -ms-grid-column-span: 8;
    grid-area: 11/17/22/25;
  }
  .services__item--4 {
    -ms-grid-row: 11;
    -ms-grid-row-span: 11;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
    grid-area: 11/1/22/9;
  }
  .services__item--5 {
    -ms-grid-row: 11;
    -ms-grid-row-span: 11;
    -ms-grid-column: 9;
    -ms-grid-column-span: 8;
    grid-area: 11/9/22/17;
  }
  .services__item--6 {
    -ms-grid-row: 22;
    -ms-grid-row-span: 9;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-area: 22/1/31/13;
  }
  .services__item--7 {
    -ms-grid-row: 22;
    -ms-grid-row-span: 9;
    -ms-grid-column: 13;
    -ms-grid-column-span: 12;
    grid-area: 22/13/31/25;
  }
}
@media (max-width: 767px) {
  .services__item {
    height: auto;
    gap: 20px;
    padding: 16px;
  }
  .services__item--1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .services__item--2 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .services__item--3 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3/2/4/3;
  }
  .services__item--4 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
  .services__item--5 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3/1/4/2;
  }
  .services__item--6 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
  }
  .services__item--7 {
    display: none;
  }
}
.services__label {
  font: 600 18px/120% "Montserrat", sans-serif;
  color: #333333;
}
.services__description {
  color: #777E8C;
  font: 500 14px/150% "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .services__description {
    display: none;
  }
}
.services__get-consultant {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .services__get-consultant {
    width: 100% !important;
  }
}

.swiper-nav-block__swiper-button {
  height: 40px;
  width: 40px;
  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;
  position: absolute;
  border: 1px solid #E8E9EB;
  border-radius: 20px;
  top: 35px;
  z-index: 10;
  cursor: pointer;
}
.swiper-nav-block__swiper-button--prev {
  right: 53px;
}
.swiper-nav-block__swiper-button--next {
  right: 4px;
}
.swiper-nav-block__swiper-button:hover {
  background: #DEEAFA;
}
@media (max-width: 767px) {
  .swiper-nav-block__swiper-button {
    display: none;
  }
}
.swiper-nav-block__prev-icon {
  width: 8px;
  height: 13px;
  background-image: url("../images/dist/arrow-next.svg");
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  background-repeat: no-repeat;
}
.swiper-nav-block__next-icon {
  width: 8px;
  height: 13px;
  background-image: url("../images/dist/arrow-next.svg");
  background-repeat: no-repeat;
}
.swiper-nav-block .swiper-button-disabled .swiper-nav-block__prev-icon {
  background-image: url("../images/dist/arrow-prev-disable.svg");
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.swiper-nav-block .swiper-button-disabled .swiper-nav-block__next-icon {
  background-image: url("../images/dist/arrow-prev-disable.svg");
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.autocomplete-city {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  border: 1px solid #D9DBDE;
  border-radius: 8px;
}
.autocomplete-city__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.autocomplete-city__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.autocomplete-city__input::-webkit-outer-spin-button, .autocomplete-city__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.autocomplete-city--open {
  border: 1px solid #0C54A0;
}
.autocomplete-city input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.autocomplete-city input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.autocomplete-city input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.autocomplete-city input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.autocomplete-city input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.autocomplete-city--open .select-value:after {
  background-image: url("../images/dist/arrow-input-top.svg");
}
.autocomplete-city--open .dropdown {
  display: block;
}
.autocomplete-city__select {
  display: none;
}
.autocomplete-city__value {
  position: relative;
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.autocomplete-city__value div {
  margin-right: 28px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.autocomplete-city__value:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.autocomplete-city__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
}
.autocomplete-city__list {
  overflow-y: scroll;
  max-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 12px;
}
.autocomplete-city__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.autocomplete-city__list::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.autocomplete-city__list::-webkit-scrollbar-thumb {
  background: #EDECEB;
  border-radius: 100px;
}
.autocomplete-city__list > li {
  position: relative;
  padding: 4px 0;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.autocomplete-city__list > li.checked:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.autocomplete-city .select-arrow {
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}

.autocomplete-street {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  border: 1px solid #D9DBDE;
  border-radius: 8px;
}
.autocomplete-street__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.autocomplete-street__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.autocomplete-street__input::-webkit-outer-spin-button, .autocomplete-street__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.autocomplete-street--open {
  border: 1px solid #0C54A0;
}
.autocomplete-street input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.autocomplete-street input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.autocomplete-street input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.autocomplete-street input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.autocomplete-street input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.autocomplete-street--open .select-value:after {
  background-image: url("../images/dist/arrow-input-top.svg");
}
.autocomplete-street--open .dropdown {
  display: block;
}
.autocomplete-street__select {
  display: none;
}
.autocomplete-street__value {
  position: relative;
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.autocomplete-street__value div {
  margin-right: 28px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.autocomplete-street__value:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.autocomplete-street__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
}
.autocomplete-street__list {
  overflow-y: scroll;
  max-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 12px;
}
.autocomplete-street__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.autocomplete-street__list::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.autocomplete-street__list::-webkit-scrollbar-thumb {
  background: #EDECEB;
  border-radius: 100px;
}
.autocomplete-street__list > li {
  position: relative;
  padding: 4px 0;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.autocomplete-street__list > li.checked:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.autocomplete-street .select-arrow {
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 52px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 12px;
  border-radius: 8px;
  font: 600 14px/150% "Montserrat", sans-serif;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button--small {
  height: 40px;
}
.button--grey-light {
  color: #0C54A0;
  background: #F4F6FB;
}
.button--grey-light:hover {
  color: #0C54A0;
  background: #DEEAFA;
}
.button--white {
  color: #0C54A0;
  background: #FFFFFF;
}
.button--white:hover {
  color: #0C54A0;
  background: #DEEAFA;
}
.button--red {
  color: #FFFFFF;
  background: #D32126;
}
.button--red:hover {
  color: #FFFFFF;
  opacity: 0.8;
}
.button--main {
  color: #FFFFFF;
  background: #0C54A0;
}
.button--main:hover {
  color: #FFFFFF;
  opacity: 0.8;
}
.button--grey-primary {
  color: #0C54A0;
  background: #F0F4F7;
}
.button--grey-primary:hover {
  color: #0C54A0;
  background: #DEEAFA;
}
.button--grey {
  color: #777E8C;
  background: #F0F4F7;
}
.button--grey:hover {
  color: #777E8C;
  background: #D9DBDE;
}
.button--fullWidth {
  width: 100%;
}

.checkbox {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
}
.checkbox input[type=checkbox]:checked,
.checkbox input[type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.checkbox input[type=checkbox]:checked + label,
.checkbox input[type=checkbox]:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  line-height: 20px;
  cursor: pointer;
}
.checkbox input[type=checkbox]:checked + label:before,
.checkbox input[type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #D9DBDE;
  border-radius: 4px;
}
.checkbox input[type=checkbox]:checked + label:before,
.checkbox input[type=checkbox]:not(:checked) + label:before {
  border-radius: 2px;
}
.checkbox input[type=checkbox]:checked + label:after,
.checkbox input[type=checkbox]:not(:checked) + label:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.checkbox input[type=checkbox]:checked + label:after,
.checkbox input[type=checkbox]:not(:checked) + label:after {
  left: 4px;
  top: 5px;
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.checkbox input[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
}
.checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.input-phone {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  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;
  padding: 16px 14px;
}
.input-phone__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.input-phone__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.input-phone__input::-webkit-outer-spin-button, .input-phone__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.input-phone--open {
  border: 1px solid #0C54A0;
}
.input-phone input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.input-phone input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.input-phone input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.input-phone input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.input-phone input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}

.input {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
}
.input__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.input__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.input__input::-webkit-outer-spin-button, .input__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.input--open {
  border: 1px solid #0C54A0;
}
.input input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.input input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.input input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.input input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.input input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}

.list-rooms {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
}
.list-rooms__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.list-rooms__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.list-rooms__input::-webkit-outer-spin-button, .list-rooms__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.list-rooms--open {
  border: 1px solid #0C54A0;
}
.list-rooms input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.list-rooms input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.list-rooms input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.list-rooms input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.list-rooms input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.list-rooms__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list-rooms__item {
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.list-rooms__item:first-child .list-rooms__value {
  text-align: start;
  padding-left: 0;
}
.list-rooms__item:last-child .list-rooms__value {
  text-align: end;
  padding-right: 0;
}
.list-rooms__checkbox {
  position: absolute;
  opacity: 0;
}
.list-rooms__checkbox:checked ~ .list-rooms__value {
  color: #0C54A0;
  border-bottom: 2px solid #0C54A0;
}
.list-rooms__value {
  padding: 0 8px 8px;
  cursor: pointer;
  display: block;
  text-align: center;
  min-width: 100%;
}

.range {
  min-width: 280px;
  width: 100%;
  height: 57px;
}
.range__wrapper {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  padding-bottom: 0;
}
.range__wrapper__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.range__wrapper__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.range__wrapper__input::-webkit-outer-spin-button, .range__wrapper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.range__wrapper--open {
  border: 1px solid #0C54A0;
}
.range__wrapper input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.range__wrapper input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.range__wrapper input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.range__wrapper input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.range__wrapper input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.range__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.range__inputs {
  width: 100%;
  height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  margin-bottom: 7px;
}
.range__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.range__field span {
  color: #777E8C;
}
.range__input {
  width: 100%;
  border: none;
  margin-left: 5px;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.range__input::-webkit-outer-spin-button, .range__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.range__separator {
  min-width: 14px;
  height: 1px;
  background-color: #777E8C;
}
.range__slider {
  height: 1px;
  position: relative;
  background: transparent;
  border-radius: 5px;
}
.range__progress {
  height: 100%;
  left: 1px;
  right: 1px;
  position: absolute;
  border-radius: 5px;
  background: #0C54A0;
}
.range__ranges {
  position: relative;
}
.range__range {
  position: absolute;
  width: 100%;
  height: 11px;
  top: -6px;
  cursor: pointer;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range__range::-webkit-slider-thumb {
  height: 11px;
  width: 11px;
  border-radius: 50%;
  background: #0C54A0;
  pointer-events: auto;
  -webkit-appearance: none;
}
.range__range::-moz-range-thumb {
  height: 11px;
  width: 11px;
  border: none;
  border-radius: 50%;
  background: #0C54A0;
  pointer-events: auto;
  -moz-appearance: none;
}

.section__title {
  font: 600 30px/120% "Montserrat", sans-serif;
  color: #141414;
}
@media (max-width: 1359px) {
  .section__title {
    font: 600 26px/120% "Montserrat", sans-serif;
  }
}
@media (max-width: 767px) {
  .section__title {
    font: 600 22px/120% "Montserrat", sans-serif;
  }
}

.select-bathroom {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
}
.select-bathroom__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.select-bathroom__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.select-bathroom__input::-webkit-outer-spin-button, .select-bathroom__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.select-bathroom--open {
  border: 1px solid #0C54A0;
}
.select-bathroom input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-bathroom input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-bathroom input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-bathroom input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-bathroom input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-bathroom--open .select-value:after {
  background-image: url("../images/dist/arrow-input-top.svg");
}
.select-bathroom--open .dropdown {
  display: block;
}
.select-bathroom__select {
  display: none;
}
.select-bathroom__value {
  position: relative;
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-bathroom__value div {
  margin-right: 28px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-bathroom__value:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.select-bathroom__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
}
.select-bathroom__list {
  overflow-y: scroll;
  max-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 12px;
}
.select-bathroom__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.select-bathroom__list::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.select-bathroom__list::-webkit-scrollbar-thumb {
  background: #EDECEB;
  border-radius: 100px;
}
.select-bathroom__list > li {
  position: relative;
  padding: 4px 0;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.select-bathroom__list > li.checked:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.select-bathroom .select-arrow {
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}

.select-address {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
}
.select-address__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.select-address__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.select-address__input::-webkit-outer-spin-button, .select-address__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.select-address--open {
  border: 1px solid #0C54A0;
}
.select-address input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-address input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-address input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-address input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-address input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-address--open .select-value:after {
  background-image: url("../images/dist/arrow-input-top.svg");
}
.select-address--open .dropdown {
  display: block;
}
.select-address__select {
  display: none;
}
.select-address__value {
  position: relative;
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-address__value div {
  margin-right: 28px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-address__value:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.select-address__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
}
.select-address__list {
  overflow-y: scroll;
  max-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 12px;
}
.select-address__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.select-address__list::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.select-address__list::-webkit-scrollbar-thumb {
  background: #EDECEB;
  border-radius: 100px;
}
.select-address__list > li {
  position: relative;
  padding: 4px 0;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.select-address__list > li.checked:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.select-address .select-arrow {
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.select-address__dropdown {
  padding-right: 12px;
}
.select-address__wrapper {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}

.select-balcony {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
}
.select-balcony__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.select-balcony__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.select-balcony__input::-webkit-outer-spin-button, .select-balcony__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.select-balcony--open {
  border: 1px solid #0C54A0;
}
.select-balcony input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-balcony input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-balcony input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-balcony input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-balcony input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-balcony--open .select-value:after {
  background-image: url("../images/dist/arrow-input-top.svg");
}
.select-balcony--open .dropdown {
  display: block;
}
.select-balcony__select {
  display: none;
}
.select-balcony__value {
  position: relative;
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-balcony__value div {
  margin-right: 28px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-balcony__value:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.select-balcony__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
}
.select-balcony__list {
  overflow-y: scroll;
  max-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 12px;
}
.select-balcony__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.select-balcony__list::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.select-balcony__list::-webkit-scrollbar-thumb {
  background: #EDECEB;
  border-radius: 100px;
}
.select-balcony__list > li {
  position: relative;
  padding: 4px 0;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.select-balcony__list > li.checked:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.select-balcony .select-arrow {
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}

.select-deal {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
}
.select-deal__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.select-deal__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.select-deal__input::-webkit-outer-spin-button, .select-deal__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.select-deal--open {
  border: 1px solid #0C54A0;
}
.select-deal input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-deal input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-deal input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-deal input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-deal input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-deal--open .select-value:after {
  background-image: url("../images/dist/arrow-input-top.svg");
}
.select-deal--open .dropdown {
  display: block;
}
.select-deal__select {
  display: none;
}
.select-deal__value {
  position: relative;
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-deal__value div {
  margin-right: 28px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-deal__value:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.select-deal__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
}
.select-deal__list {
  overflow-y: scroll;
  max-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 12px;
}
.select-deal__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.select-deal__list::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.select-deal__list::-webkit-scrollbar-thumb {
  background: #EDECEB;
  border-radius: 100px;
}
.select-deal__list > li {
  position: relative;
  padding: 4px 0;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.select-deal__list > li.checked:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.select-deal .select-arrow {
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}

.select-district {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  border: 1px solid #D9DBDE;
  border-radius: 8px;
}
.select-district__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.select-district__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.select-district__input::-webkit-outer-spin-button, .select-district__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.select-district--open {
  border: 1px solid #0C54A0;
}
.select-district input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-district input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-district input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-district input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-district input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-district--open .select-value:after {
  background-image: url("../images/dist/arrow-input-top.svg");
}
.select-district--open .dropdown {
  display: block;
}
.select-district__select {
  display: none;
}
.select-district__value {
  position: relative;
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-district__value div {
  margin-right: 28px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-district__value:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.select-district__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
}
.select-district__list {
  overflow-y: scroll;
  max-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 12px;
}
.select-district__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.select-district__list::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.select-district__list::-webkit-scrollbar-thumb {
  background: #EDECEB;
  border-radius: 100px;
}
.select-district__list > li {
  position: relative;
  padding: 4px 0;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.select-district__list > li.checked:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.select-district .select-arrow {
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}

.select-flat {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
}
.select-flat__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.select-flat__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.select-flat__input::-webkit-outer-spin-button, .select-flat__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.select-flat--open {
  border: 1px solid #0C54A0;
}
.select-flat input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-flat input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-flat input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-flat input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-flat input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-flat--open .select-value:after {
  background-image: url("../images/dist/arrow-input-top.svg");
}
.select-flat--open .dropdown {
  display: block;
}
.select-flat__select {
  display: none;
}
.select-flat__value {
  position: relative;
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-flat__value div {
  margin-right: 28px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-flat__value:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.select-flat__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
}
.select-flat__list {
  overflow-y: scroll;
  max-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 12px;
}
.select-flat__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.select-flat__list::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.select-flat__list::-webkit-scrollbar-thumb {
  background: #EDECEB;
  border-radius: 100px;
}
.select-flat__list > li {
  position: relative;
  padding: 4px 0;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.select-flat__list > li.checked:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.select-flat .select-arrow {
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}

.select-material {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
}
.select-material__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.select-material__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.select-material__input::-webkit-outer-spin-button, .select-material__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.select-material--open {
  border: 1px solid #0C54A0;
}
.select-material input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-material input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-material input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-material input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-material input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-material--open .select-value:after {
  background-image: url("../images/dist/arrow-input-top.svg");
}
.select-material--open .dropdown {
  display: block;
}
.select-material__select {
  display: none;
}
.select-material__value {
  position: relative;
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-material__value div {
  margin-right: 28px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-material__value:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.select-material__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
}
.select-material__list {
  overflow-y: scroll;
  max-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 12px;
}
.select-material__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.select-material__list::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.select-material__list::-webkit-scrollbar-thumb {
  background: #EDECEB;
  border-radius: 100px;
}
.select-material__list > li {
  position: relative;
  padding: 4px 0;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.select-material__list > li.checked:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.select-material .select-arrow {
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}

.select-new {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
}
.select-new__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.select-new__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.select-new__input::-webkit-outer-spin-button, .select-new__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.select-new--open {
  border: 1px solid #0C54A0;
}
.select-new input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-new input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-new input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-new input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-new input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-new--open .select-value:after {
  background-image: url("../images/dist/arrow-input-top.svg");
}
.select-new--open .dropdown {
  display: block;
}
.select-new__select {
  display: none;
}
.select-new__value {
  position: relative;
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-new__value div {
  margin-right: 28px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-new__value:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.select-new__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
}
.select-new__list {
  overflow-y: scroll;
  max-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 12px;
}
.select-new__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.select-new__list::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.select-new__list::-webkit-scrollbar-thumb {
  background: #EDECEB;
  border-radius: 100px;
}
.select-new__list > li {
  position: relative;
  padding: 4px 0;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.select-new__list > li.checked:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.select-new .select-arrow {
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}

.select-reality {
  position: relative;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  padding: 4px 12px 8px 10px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
}
.select-reality__label {
  font: 500 12px/140% "Montserrat", sans-serif;
  color: #777E8C;
  margin-bottom: 2px;
}
.select-reality__input {
  width: 100%;
  border: none;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  background-color: transparent;
}
.select-reality__input::-webkit-outer-spin-button, .select-reality__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.select-reality--open {
  border: 1px solid #0C54A0;
}
.select-reality input::-webkit-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-reality input::-moz-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-reality input:-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-reality input::-ms-input-placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-reality input::placeholder {
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #AFB6C4;
}
.select-reality--open .select-value:after {
  background-image: url("../images/dist/arrow-input-top.svg");
}
.select-reality--open .dropdown {
  display: block;
}
.select-reality__select {
  display: none;
}
.select-reality__value {
  position: relative;
  width: 100%;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-reality__value div {
  margin-right: 28px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.select-reality__value:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}
.select-reality__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
}
.select-reality__list {
  overflow-y: scroll;
  max-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 12px;
}
.select-reality__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.select-reality__list::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.select-reality__list::-webkit-scrollbar-thumb {
  background: #EDECEB;
  border-radius: 100px;
}
.select-reality__list > li {
  position: relative;
  padding: 4px 0;
  font: 500 14px/150% "Montserrat", sans-serif;
  color: #333333;
  cursor: pointer;
}
.select-reality__list > li.checked:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/dist/checked.svg");
}
.select-reality .select-arrow {
  width: 10px;
  height: 6px;
  background-size: contain;
  background-image: url("../images/dist/arrow-input.svg");
}

.skeleton {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #d9d9d9;
  position: relative;
  overflow: hidden;
  cursor: default !important;
}
.skeleton:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#d9d9d9), color-stop(20%, rgba(0, 0, 0, 0.07)), color-stop(40%, #d9d9d9), to(#d9d9d9));
  background-image: -o-linear-gradient(left, #d9d9d9 0%, rgba(0, 0, 0, 0.07) 20%, #d9d9d9 40%, #d9d9d9 100%);
  background-image: linear-gradient(to right, #d9d9d9 0%, rgba(0, 0, 0, 0.07) 20%, #d9d9d9 40%, #d9d9d9 100%);
  background-repeat: no-repeat;
  background-size: 450px 400px;
  -webkit-animation: shimmer 1s linear infinite;
          animation: shimmer 1s linear infinite;
}
@-webkit-keyframes shimmer {
  0% {
    background-position: -450px 0;
  }
  100% {
    background-position: 450px 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -450px 0;
  }
  100% {
    background-position: 450px 0;
  }
}
/**
 * Modern CSS Reset Tweaks
 * ================================================== */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Box sizing normalization */
*,
::after,
::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

li {
  list-style-type: none;
}

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

/**
 * Input Reset
 */
input:required,
input {
  -webkit-box-shadow: none;
          box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/* Make pictures easier to work with */
picture {
  display: inline-block;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

[disabled] {
  pointer-events: none;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
 * 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;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 75%;
}

/**
 * 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: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * 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;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * 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 all browsers.
 */
summary {
  display: list-item;
}

/*
 * Misc
 * ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
