.rs-container * {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.rs-container {
  font-family: Arial, Helvetica, sans-serif;
  height: 45px;
  position: relative;
}

.rs-container .rs-bg, .rs-container .rs-selected {
  background-color: #eee;
  border: 1px solid #ededed;
  height: 10px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 100%;
  border-radius: 3px;
}

.rs-container .rs-selected {
  background-color: #00b3bc;
  border: 1px solid #00969b;
  transition: all 0.2s linear;
  width: 0;
}

.rs-container.disabled .rs-selected {
  background-color: #ccc;
  border-color: #bbb;
}

.rs-container .rs-pointer {
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 4px;
  cursor: pointer;
  height: 20px;
  left: -10px;
  position: absolute;
  top: 0;
  transition: all 0.2s linear;
  width: 30px;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 6px #ebebeb, 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.rs-container.disabled .rs-pointer {
  border-color: #ccc;
}

.rs-container .rs-pointer::before,
.rs-container .rs-pointer::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 9px;
  background-color: #ddd;
  left: 12px;
  top: 5px;
}

.rs-container .rs-pointer::after {
  left: auto;
  right: 12px;
}

.rs-container.disabled .rs-pointer {
  cursor: default;
}

.rs-container.sliding .rs-selected,
.rs-container.sliding .rs-pointer {
  transition: none;
}

.rs-container .rs-scale {
  left: 0;
  position: absolute;
  top: 5px;
  white-space: nowrap;
}

.rs-container .rs-scale span {
  float: left;
  position: relative;
}

.rs-container .rs-scale span::before {
  background-color: #ededed;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 1px;
}

.rs-container.rs-noscale span::before {
  display: none;
}

.rs-container.rs-noscale span:first-child::before,
.rs-container.rs-noscale span:last-child::before {
  display: block;
}

.rs-container .rs-scale span:last-child {
  margin-left: -1px;
  width: 0px;
}

.rs-container .rs-scale span ins {
  color: #333;
  display: inline-block;
  font-size: 12px;
  margin-top: 20px;
  text-decoration: none;
}

.rs-container.disabled .rs-scale span ins {
  color: #999;
}

.rs-tooltip {
  color: #333;
  width: auto;
  min-width: 60px;
  height: 30px;
  position: relative;
  background: #fff;
  border: 1px solid #00969b;
  border-radius: 3px;
  position: absolute;
  transform: translate(-50%, -35px);
  left: 13px;
  text-align: center;
  font-size: 13px;
  padding: 6px 10px 0;
}

.rs-container.disabled .rs-tooltip {
  border-color: #ccc;
  color: #999;
}

@font-face {
  font-weight: 400;
  font-family: "Gilroy";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff2") format("woff");
}
@font-face {
  font-weight: 500;
  font-family: "Gilroy";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
}
html {
  overflow-x: hidden;
  height: 100%;
}

body {
  min-height: 100%;
  display: grid;
  grid-template-rows: min-content 1fr min-content;
  align-content: start;
  position: relative;
  min-width: 320px;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Gilroy", Arial, sans-serif;
  color: #222C40;
  font-style: normal;
  background-color: #ffffff;
  overflow-x: hidden;
}

body *::-webkit-scrollbar {
  width: 7px !important;
  height: 7px !important;
}
body *::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey !important;
  border-radius: 10px !important;
}
body *::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3) !important;
  border-radius: 10px !important;
}
body *::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.hidden {
  overflow: hidden;
}
@media (min-width: 1140px) {
  .hidden {
    overflow-x: hidden;
    overflow-y: visible;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.visually-hidden:not(:focus):not(:active),
input[type=checkbox].visually-hidden,
input[type=radio].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  width: 100%;
  padding: 0 16px;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
@media (min-width: 1140px) {
  .container {
    padding: 0 16px;
  }
}

.overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(46, 57, 86, 0.5);
  z-index: 3001;
}
.overlay--transparent {
  background-color: transparent;
  z-index: 0;
}
.overlay--city.overlay--show {
  display: none;
  background-color: transparent;
  z-index: 0;
}
@media (min-width: 768px) {
  .overlay--city.overlay--show {
    display: block;
  }
}
.overlay--show {
  display: block;
}
@media (min-width: 576px) {
  .overlay {
    z-index: 3000;
  }
  .overlay--city {
    background-color: transparent;
    z-index: 0;
  }
  .overlay--transparent {
    z-index: 0;
  }
}

.button {
  position: relative;
  display: block;
  padding: 14px;
  width: 100%;
  font: inherit;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  border: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  border-radius: 30px;
  z-index: 1;
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #003363;
  border-radius: 30px;
  z-index: -1;
}
.button::after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease-out;
  width: 30px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #335C82;
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
}
.button:hover::after, .button:focus-within::after {
  width: 100%;
  opacity: 1;
}
.button--transparent {
  transition: background-color 0.5s, border-color 0.5s;
  border: 1px solid #003363;
  color: #222C40;
}
.button--transparent::before {
  display: none;
}
.button--transparent::after {
  background-color: #003363;
}
.button--transparent:hover, .button--transparent:focus-within {
  color: #ffffff;
}
.button--transparent.button--disabled {
  color: #7A808C;
  transition: none;
  border: none;
  cursor: auto;
}
.button--transparent.button--disabled:hover, .button--transparent.button--disabled:focus-within {
  color: #7A808C;
}
.button--transparent.button--disabled::after, .button--transparent.button--disabled::after {
  width: 0;
}
.button--transparent.button--disabled:hover::after, .button--transparent.button--disabled:focus-within::after {
  width: 0;
}
.button--white {
  color: #222C40;
}
.button--white::before {
  background-color: #ffffff;
}
.button--white::after {
  background-color: #ebe7e7;
}

.button input {
  font: inherit;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  border: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  padding: 0;
}

.title {
  font-size: 28px;
  line-height: 32px;
  color: #222C40;
  font-weight: 400;
  margin: 0;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .title {
    margin-bottom: 50px;
    font-size: 46px;
    line-height: 53px;
  }
}

.page-main {
  padding-top: 54px;
}
@media (min-width: 768px) {
  .page-main {
    padding-top: 0;
  }
}

.contact {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .contact {
    padding-right: 62px;
    position: relative;
  }
}

.contact__phone-btn {
  display: none;
}
@media (min-width: 768px) {
  .contact__phone-btn {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: 1px solid #222C40;
    box-sizing: border-box;
    background-image: url("../img/icon-tel.svg");
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity 0.5s;
    outline: none;
  }
  .contact__phone-btn:hover, .contact__phone-btn:focus {
    opacity: 0.5;
  }
}

.contact__phone {
  display: block;
  color: #222C40;
  line-height: 24px;
}

.contact__work-time {
  font-size: 14px;
  line-height: 19px;
  color: #7A808C;
}

.social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.social__item {
  margin-right: 20px;
  margin-bottom: 5px;
}
.social__item:last-child {
  margin-right: 0;
}

.social__link {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #e9eaec;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid transparent;
  transition: border 0.5s;
  outline: none;
}
.social__link--ok {
  background-image: url("../img/ok.svg");
}
.social__link--vk {
  background-image: url("../img/vk.svg");
}
.social__link--inst {
  background-image: url("../img/inst.svg");
}
.social__link--fb {
  background-image: url("../img/fb.svg");
}
.social__link:hover, .social__link:focus {
  border-color: #a0a3a8;
}

.proposal {
  max-width: 1110px;
  background-color: #F3F3F3;
  padding-top: 81px;
  padding-bottom: 72px;
}
@media (min-width: 768px) {
  .proposal {
    width: calc(100% - 48px);
    margin: 0 auto;
    padding-bottom: 98px;
  }
}
@media (min-width: 1140px) {
  .proposal {
    width: auto;
    padding-top: 56px;
    padding-bottom: 62px;
  }
}

.proposal__wrapper {
  padding: 0 16px;
}
@media (min-width: 768px) {
  .proposal__wrapper {
    padding: 0 124px;
  }
}
@media (min-width: 1140px) {
  .proposal__wrapper {
    padding: 0 65px;
    display: flex;
    align-items: center;
  }
}

.proposal__title {
  margin: 0;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 135%;
  text-align: center;
}
.proposal__title span {
  font-weight: 500;
}
@media (min-width: 768px) {
  .proposal__title {
    font-size: 24px;
    line-height: 135%;
  }
}
@media (min-width: 1140px) {
  .proposal__title {
    text-align: left;
    margin-bottom: 0;
    width: 720px;
    margin-right: 49px;
    flex-shrink: 0;
  }
}

.join {
  max-width: 1110px;
  background-color: #F3F3F3;
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .join {
    width: calc(100% - 48px);
    margin: 0 auto;
    padding-top: 74px;
    padding-bottom: 104px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .join {
    padding-top: 82px;
    padding-bottom: 94px;
  }
}

.join__wrapper {
  padding: 0 16px;
}
@media (min-width: 768px) {
  .join__wrapper {
    padding: 0 85px;
  }
}
@media (min-width: 1140px) {
  .join__wrapper {
    padding: 0 65px;
    display: flex;
    align-items: center;
  }
}

.join__title {
  margin: 0;
  margin-bottom: 45px;
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .join__title {
    font-size: 32px;
    line-height: 37px;
  }
}
@media (min-width: 1140px) {
  .join__title {
    width: 270px;
    margin-right: 232px;
    margin-bottom: 0;
  }
}

.join__buttons {
  max-width: 470px;
  margin: 0 auto;
}
@media (min-width: 1140px) {
  .join__buttons {
    display: flex;
    max-width: auto;
    margin: 0;
    flex-grow: 1;
  }
}

.join__button {
  position: relative;
  z-index: 1;
}
.join__button:first-child {
  margin-bottom: 30px;
}
@media (min-width: 1140px) {
  .join__button:first-child {
    margin-bottom: 0;
    margin-right: 50px;
  }
}

.form__wrap {
  margin: 0;
  margin-bottom: 10px;
}
.form__wrap:last-of-type {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  margin: 0;
  margin-bottom: 10px;
  padding-top: 7px;
  margin-left: 28px;
}

.form__input {
  font: inherit;
  display: block;
  width: 100%;
  background-color: #F3F3F3;
  border: 1px solid #BDC0C6;
  border-radius: 30px;
  height: 55px;
  padding: 10px;
  padding-left: 28px;
  outline: none;
  -webkit-appearance: none;
}
.form__input--error {
  border: 1px solid #C3002D;
}

.form__textarea {
  font: inherit;
  display: block;
  width: 100%;
  background-color: #F3F3F3;
  border: 1px solid #BDC0C6;
  border-radius: 30px;
  height: 110px;
  padding: 10px;
  padding-left: 28px;
  outline: none;
  -webkit-appearance: none;
  resize: none;
}
.form__textarea--error {
  border: 1px solid #C3002D;
}

.form__links {
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .form__links {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1140px) {
  .form__links {
    margin-bottom: 37px;
  }
}

.form__checkbox-label {
  position: relative;
  margin: 0;
  padding-top: 2px;
  padding-left: 27px;
  font-size: 14px;
  line-height: 135%;
}
.form__checkbox-label::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  top: 0px;
  left: 0;
  border: 2px solid #BDC0C6;
  border-radius: 3px;
}

.form__checkbox-wrap {
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
}

.form__checkbox:checked + .form__checkbox-label::after {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 5px;
  top: 5px;
  left: 4px;
  background-image: url("../img/checkbox.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.form__link {
  display: block;
  font-size: 14px;
  line-height: 135%;
  text-align: center;
  color: #335C82;
  outline: none;
}
.form__link--registry {
  margin-bottom: 10px;
}
.form__link:hover, .form__link:focus {
  color: #003363;
  text-decoration: underline;
}
.form__link:visited {
  color: #EA5615;
}
@media (min-width: 768px) {
  .form__link--registry {
    margin-bottom: 20px;
  }
}

.form__submit-btn {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .form__submit-btn {
    width: 237px;
    margin-left: auto;
    margin-right: auto;
  }
}

.form__confirm {
  margin: 0;
  font-size: 14px;
  line-height: 135%;
  text-align: center;
  color: #7A808C;
}

.form__error {
  display: block;
  font-size: 10px;
  line-height: 10px;
  color: #C3002D;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .form__error {
    font-size: 18px;
    line-height: 145%;
  }
}

.form__continue {
  display: block;
  font-size: 14px;
  line-height: 135%;
  text-align: center;
  color: #7A808C;
  margin-bottom: 20px;
}

.form__social {
  padding-bottom: 30px;
  margin-bottom: 30px;
  justify-content: center;
  border-bottom: 1px solid #C4C4C4;
}

.form__social .social__link {
  width: 44px;
  height: 44px;
}

.form__social .social__link--vk {
  background-size: 22px 15px;
}

.form-page {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .form-page {
    width: 720px;
    padding-top: 75px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .form-page {
    padding-top: 120px;
    padding-bottom: 127px;
  }
}

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

@media (min-width: 576px) {
  .form-page__form {
    width: 540px;
    margin: 0 auto;
  }
}

.stats__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-row-gap: 30px;
}
@media (min-width: 768px) {
  .stats__list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
  }
}
@media (min-width: 1140px) {
  .stats__list--col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.stats__item {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  padding: 26px 25px 20px 25px;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .stats__item {
    min-height: 233px;
    background-color: #ffffff;
    padding: 31px 20px 20px 20px;
  }
}
@media (min-width: 1140px) {
  .stats__item {
    padding: 35px 30px 30px 30px;
  }
}

.stats__subtitle {
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  margin: 0;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .stats__subtitle {
    font-size: 24px;
    line-height: 135%;
  }
}
@media (min-width: 1140px) {
  .stats__subtitle {
    font-size: 32px;
    line-height: 37px;
  }
}

.stats__text {
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  margin: 0;
  margin-top: auto;
}

.stats--mortgage {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .stats--mortgage {
    margin-bottom: 120px;
  }
}
.stats--mortgage .stats__item {
  min-height: 190px;
  padding: 31px 36px 40px 36px;
  text-align: center;
}
@media (min-width: 768px) {
  .stats--mortgage .stats__item {
    min-height: 233px;
    padding: 50px 27px;
  }
}
@media (min-width: 1140px) {
  .stats--mortgage .stats__item {
    padding-top: 62px;
    padding-bottom: 19px;
  }
}
.stats--mortgage .stats__subtitle {
  font-size: 26px;
  line-height: 26px;
}
.stats--mortgage .stats__subtitle span {
  font-weight: 500;
  font-size: 60px;
  line-height: 71px;
}
@media (min-width: 768px) {
  .stats--mortgage .stats__subtitle {
    margin-bottom: 24px;
  }
}
@media (min-width: 1140px) {
  .stats--mortgage .stats__text {
    margin: 0 auto;
    width: 203px;
  }
}

.stats--company {
  margin-bottom: 80px;
}
@media (min-width: 1140px) {
  .stats--company {
    position: relative;
    z-index: 1;
    margin-bottom: -100px;
  }
}

.stats--cell {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .stats--cell {
    margin-bottom: 120px;
  }
}

.stats__button {
  margin-top: 20px;
  max-width: 156px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .stats__button {
    margin-top: 30px;
  }
}

.page-top {
  position: relative;
  padding-top: 60px;
  padding-bottom: 106px;
  margin-bottom: 49px;
}
.page-top::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(89.97deg, rgba(34, 43, 64, 0.5) 43.14%, rgba(34, 43, 64, 0) 75.96%);
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .page-top {
    padding-top: 100px;
    padding-bottom: 138px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .page-top {
    padding-top: 120px;
    padding-bottom: 152px;
    margin-bottom: 100px;
  }
}

.page-top__img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
}

.page-top__title {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-top__title {
    font-size: 60px;
    line-height: 71px;
  }
}
@media (min-width: 1140px) {
  .page-top__title {
    width: 900px;
    margin-bottom: 28px;
  }
}

.page-top__text {
  position: relative;
  z-index: 1;
  margin: 0;
  margin-bottom: 40px;
  line-height: 24px;
  color: #E9EAEC;
}
@media (min-width: 768px) {
  .page-top__text {
    font-size: 24px;
    line-height: 135%;
    margin-bottom: 50px;
  }
}
@media (min-width: 1140px) {
  .page-top__text {
    width: 672px;
    margin-bottom: 68px;
  }
}

.page-top__button {
  position: relative;
  z-index: 1;
  width: 66%;
}
@media (min-width: 768px) {
  .page-top__button {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    padding-left: 48px;
    padding-right: 48px;
  }
}

.page-top__bnt-text-tablet {
  display: none;
}
@media (min-width: 768px) {
  .page-top__bnt-text-tablet {
    display: inline;
  }
}

@media (min-width: 768px) {
  .page-top__bnt-text-mob {
    display: none;
  }
}

.catalog-card {
  position: relative;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}
@media (min-width: 576px) {
  .catalog-card {
    display: grid;
    grid-template-areas: "image title" "image address" "image price" "image desc";
    grid-template-columns: 250px 1fr;
    grid-column-gap: 30px;
    padding: 0;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .catalog-card {
    grid-template-columns: 288px 1fr;
    padding-right: 29px;
  }
}
@media (min-width: 1140px) {
  .catalog-card {
    grid-template-columns: 350px 1fr 1fr;
    padding-right: 51px;
    grid-template-areas: "image title modal-link" "image address address" "image price price" "image desc desc";
  }
}

.catalog-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 4px;
  padding: 0 15px;
}
@media (min-width: 576px) {
  .catalog-card__title {
    grid-area: title;
    padding: 0;
    margin-top: 30px;
    align-self: start;
  }
}
@media (min-width: 768px) {
  .catalog-card__title {
    font-size: 24px;
    line-height: 135%;
    margin-bottom: 6px;
  }
}

.catalog-card__title a {
  color: #222C40;
  transition: opacity 0.5s;
  outline: none;
}
.catalog-card__title a:hover, .catalog-card__title a:focus {
  opacity: 0.5;
  text-decoration: underline;
}

.catalog-card__address {
  display: block;
  position: relative;
  padding: 0 15px;
  padding-left: 33px;
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  margin-bottom: 20px;
}
.catalog-card__address::before {
  content: "";
  position: absolute;
  display: block;
  width: 11px;
  height: 14px;
  top: 0;
  left: 15px;
  background-image: url("../img/icon-geo.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.6;
}
@media (min-width: 576px) {
  .catalog-card__address {
    grid-area: address;
    padding: 0;
    padding-left: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #BDC0C6;
    align-self: start;
  }
  .catalog-card__address::before {
    left: 0;
  }
}
@media (min-width: 1140px) {
  .catalog-card__address {
    padding-bottom: 25px;
  }
}

.catalog-card__slider {
  width: calc(100vw - 32px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .catalog-card__slider {
    grid-area: image;
    width: 250px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .catalog-card__slider {
    width: 288px;
  }
}
@media (min-width: 1140px) {
  .catalog-card__slider {
    width: 350px;
  }
}

.catalog-card__slider .swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 1 !important;
}

.catalog-card__img {
  display: block;
  width: 100%;
  height: 250px;
}
@media (min-width: 576px) {
  .catalog-card__img {
    height: 100%;
  }
}

.catalog-card__price {
  line-height: 24px;
  margin: 0;
  margin-bottom: 13px;
  padding: 0 15px;
}
@media (min-width: 576px) {
  .catalog-card__price {
    grid-area: price;
    padding: 0;
    align-self: start;
  }
}
@media (min-width: 768px) {
  .catalog-card__price {
    font-size: 24px;
    line-height: 135%;
    margin-bottom: 24px;
  }
}
@media (min-width: 1140px) {
  .catalog-card__price {
    margin-bottom: 30px;
  }
}

.catalog-card__info {
  padding: 0 15px;
}
@media (min-width: 576px) {
  .catalog-card__info {
    grid-area: desc;
    padding: 0;
    margin-bottom: 10px;
    align-self: start;
  }
}
@media (min-width: 1140px) {
  .catalog-card__info {
    display: flex;
    margin-bottom: 58px;
  }
}

.catalog-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 135%;
}
@media (min-width: 1140px) {
  .catalog-card__desc {
    margin-right: 53px;
  }
}

.catalog-card__button {
  display: none;
}
@media (min-width: 1140px) {
  .catalog-card__button {
    display: block;
    width: 181px;
    flex-shrink: 0;
  }
}

.catalog-card__block {
  position: absolute;
  width: 100%;
  top: 5px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 2;
}
@media (min-width: 576px) {
  .catalog-card__block {
    width: calc(100% - 280px);
    padding: 0;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .catalog-card__block {
    width: calc(100% - 320px);
    padding: 0;
    padding-right: 30px;
  }
}
@media (min-width: 1140px) {
  .catalog-card__block {
    grid-area: modal-link;
    margin-top: 30px;
    margin-left: auto;
    width: 100%;
    padding: 0;
  }
}

.catalog-card__similar {
  display: none;
}
@media (min-width: 1140px) {
  .catalog-card__similar {
    position: relative;
    display: block;
    grid-area: modal-link;
    font-size: 14px;
    line-height: 135%;
    text-align: right;
    color: #7A808C;
    align-self: start;
    padding-left: 20px;
    width: 240px;
    margin-left: auto;
  }
  .catalog-card__similar::before {
    content: "";
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 0;
    left: 0;
    background-image: url("../img/similar-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.catalog-card__status {
  font-size: 12px;
  line-height: 135%;
}
.catalog-card__status--moderate {
  color: #EA5615;
}
.catalog-card__status--active {
  color: #519640;
}
@media (min-width: 768px) {
  .catalog-card__status {
    font-size: 14px;
  }
}

.catalog-card__edit-block {
  position: relative;
  margin-left: 20px;
}

.catalog-card__edit-btn {
  background-color: transparent;
  text-shadow: none;
  border: none;
  display: block;
  width: 21px;
  height: 10px;
  padding: 0;
  background-image: url("../img/dots.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  transition: opacity 0.5s;
}
.catalog-card__edit-btn:hover, .catalog-card__edit-btn:focus {
  opacity: 0.5;
}

.catalog-card__edit-btns {
  display: none;
  position: absolute;
  padding: 20px;
  grid-auto-rows: min-content;
  grid-row-gap: 10px;
  top: calc(100% + 10px);
  right: 0;
  width: 180px;
  background-color: #FFFFFF;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
}
.catalog-card__edit-btns--show {
  display: grid;
}

.catalog-card__edit-btns a {
  background-color: transparent;
  text-shadow: none;
  border: none;
  display: block;
  font: inherit;
  font-size: 14px;
  line-height: 135%;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.5s;
  color: #222C40;
}
.catalog-card__edit-btns a:hover, .catalog-card__edit-btns a:focus {
  opacity: 0.5;
}

.city button {
  display: block;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 1140px) {
  .city button {
    color: #ffffff;
  }
}

.city {
  position: relative;
  font-size: 14px;
  line-height: 19px;
}

.city__open-btn {
  font: inherit;
  position: relative;
  width: 100%;
  text-align: left;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  transition: opacity 0.5s;
  outline: none;
}
.city__open-btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 21px;
  height: 25px;
  top: 50%;
  margin-top: -15px;
  left: 0;
  background-image: url("../img/icon-geo.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.city__open-btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 7px;
  top: 50%;
  margin-top: -3px;
  right: 0;
  background-image: url("../img/icon-dropdown.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s;
}
.city__open-btn:hover, .city__open-btn:focus {
  opacity: 0.5;
}
@media (min-width: 1140px) {
  .city__open-btn::before {
    background-image: url("../img/icon-geo-white.svg");
  }
  .city__open-btn::after {
    background-image: url("../img/icon-dropdown-white.svg");
  }
}

.city__open-btn.city__open-btn--active {
  z-index: 2;
  background-color: #ffffff;
}
.city__open-btn.city__open-btn--active::after {
  transform: scaleY(-1);
}
@media (min-width: 1140px) {
  .city__open-btn.city__open-btn--active {
    background-color: transparent;
  }
}

.city__dropdown {
  display: none;
  position: absolute;
  padding: 10px;
  padding-left: 30px;
  width: 100%;
  max-height: 90px;
  left: 0;
  top: 100%;
  perspective: 1000px;
  background-color: #ffffff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0px 5px 8px 0px #A9A9A9;
  overflow-y: auto;
  z-index: 3;
}
.city__dropdown--show {
  display: block;
  animation: growDown 500ms ease-in-out forwards;
  transform-origin: top center;
}
@media (min-width: 768px) {
  .city__dropdown {
    max-height: 140px;
  }
}
@media (min-width: 1140px) {
  .city__dropdown {
    background-color: #003363;
    box-shadow: none;
  }
  .city__dropdown::-webkit-scrollbar-thumb {
    background-color: #002b53 !important;
  }
  .city__dropdown::-webkit-scrollbar-thumb:hover {
    background-color: #002344 !important;
  }
}

.city__btn {
  padding: 0;
  margin-bottom: 7px;
  font: inherit;
  text-align: left;
}

@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 16px;
  box-shadow: 1px 1px 15px #0000000d;
  background-color: #ffffff;
  z-index: 3000;
}
@media (min-width: 768px) {
  .page-header {
    padding: 18px 24px;
    position: static;
    background-color: transparent;
  }
}
@media (min-width: 1140px) {
  .page-header {
    padding: 0;
  }
}

.page-header--open .page-header__toggle {
  position: relative;
  z-index: 2;
  background-image: url("../img/close.svg");
  background-size: 18px;
}

.page-header__top {
  display: none;
}
@media (min-width: 1140px) {
  .page-header__top {
    display: block;
    background-color: #003363;
    padding-top: 12px;
    padding-bottom: 10px;
  }
}

@media (min-width: 1140px) {
  .page-header__top-wrapper {
    display: flex;
    align-items: center;
  }
}

.page-header__bottom {
  display: flex;
  align-items: center;
}
@media (min-width: 1140px) {
  .page-header__bottom {
    padding: 14px 16px;
    padding-bottom: 22px;
    width: 1140px;
    margin: 0 auto;
  }
}

.page-header__city-tablet {
  display: none;
}
@media (min-width: 768px) {
  .page-header__city-tablet {
    display: block;
    width: 134px;
    margin-right: 4%;
  }
}
@media (min-width: 1140px) {
  .page-header__city-tablet {
    display: none;
  }
}

.page-header__city-mobile-wrap {
  padding-top: 30px;
  border-top: 1px solid #BDC0C6;
  margin-top: auto;
}
@media (min-width: 768px) {
  .page-header__city-mobile-wrap {
    display: none;
  }
}

.page-header__city-mobile {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-header__city-mobile {
    display: none;
  }
}

.page-header__contact {
  display: none;
}
@media (min-width: 768px) {
  .page-header__contact {
    display: block;
    margin-right: 10px;
  }
}
@media (min-width: 1140px) {
  .page-header__contact {
    order: 3;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .page-header__contact-mobile {
    display: none;
  }
}

.page-header__user-link {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  outline: none;
}
.page-header__user-link::before {
  content: "";
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  top: 0;
  left: 0;
  background-image: url("../img/icon-profile.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.page-header__user-link--mobile {
  margin-left: auto;
  margin-right: 30px;
}
@media (min-width: 768px) {
  .page-header__user-link {
    width: 20px;
    height: 25px;
  }
  .page-header__user-link::before {
    width: 20px;
    height: 25px;
  }
}
@media (min-width: 1140px) {
  .page-header__user-link {
    width: auto;
    height: auto;
    padding-left: 27px;
    font-size: 14px;
    line-height: 19px;
    color: #ffffff;
    margin-left: auto;
    transition: opacity 0.5s;
  }
  .page-header__user-link::before {
    width: 13px;
    height: 17px;
    background-image: url("../img/icon-profile-white.svg");
  }
  .page-header__user-link--mobile {
    display: none;
  }
  .page-header__user-link:hover, .page-header__user-link:focus {
    opacity: 0.7;
  }
}

.page-header__toggle {
  display: block;
  cursor: pointer;
  width: 30px;
  height: 18px;
  background-color: transparent;
  border: none;
  padding: 0;
  text-shadow: none;
  background-image: url("../img/burger.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.2s, opacity 0.5s;
}
.page-header__toggle:hover, .page-header__toggle:focus {
  opacity: 0.7;
}
@media (min-width: 1140px) {
  .page-header__toggle {
    display: none;
  }
}

.page-header__mobile-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 54px;
  left: 0;
  width: 100%;
  height: calc(100vh - 54px);
  height: calc(var(--vh, 1vh) * 100 - 54px);
  background-color: #ffffff;
  z-index: 2;
  padding: 30px 16px;
  padding-right: 25px;
  transition: all 0.5s ease;
  transform: translateX(100%);
  box-shadow: inset 1px 4px 9px -10px;
  opacity: 0;
}
.page-header__mobile-menu--show {
  transform: translateX(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .page-header__mobile-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    top: 78px;
    min-height: calc(100vh - 78px);
    height: auto;
    padding-left: 24px;
    padding-right: 24px;
    transition: transform 0.5s ease;
  }
}
@media (min-width: 1140px) {
  .page-header__mobile-menu {
    display: block;
    position: static;
    background-color: transparent;
    width: auto;
    min-height: auto;
    padding: 0;
    transition: none;
    transform: translateX(0);
    opacity: 1;
    box-shadow: none;
    order: 2;
    margin-right: 91px;
    padding-top: 10px;
  }
}

.page-header__links-wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1140px) {
  .page-header__links-wrap {
    display: none;
  }
}

.page-header__logo {
  display: block;
  width: 131px;
  height: 26px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .page-header__logo {
    width: 120px;
    height: 54px;
    margin-right: 7%;
  }
}
@media (min-width: 1140px) {
  .page-header__logo {
    flex-shrink: 0;
    margin-right: 72px;
    order: 1;
  }
}

@media (min-width: 768px) {
  .page-header__logo-image {
    width: 120px;
    height: 54px;
  }
}

.page-header__nav {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1140px) {
  .page-header__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.page-header__nav-link,
.page-header__links-wrap a {
  color: #222C40;
  line-height: 24px;
  margin-bottom: 15px;
  outline: none;
}

@media (min-width: 1140px) {
  .page-header__city {
    margin-right: 60px;
    width: 130px;
  }
}

@media (min-width: 1140px) {
  .page-header__link {
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 19px;
    margin-right: 40px;
    transition: opacity 0.5s;
    outline: none;
  }
  .page-header__link:hover, .page-header__link:focus {
    opacity: 0.7;
  }
  .page-header__link--last {
    margin-right: 10px;
  }
}

@media (min-width: 1140px) {
  .page-header__nav-link {
    margin-bottom: 5px;
    margin-right: 34px;
    position: relative;
    display: inline-block;
    transition: transform 0.3s;
    overflow: hidden;
    outline: none;
  }
  .page-header__nav-link:last-child {
    margin-right: 0;
  }
  .page-header__nav-link:nth-child(5n) {
    margin-right: 0;
  }
  .page-header__nav-link span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s;
  }
  .page-header__nav-link span::before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
    transform: translate3d(0, 0, 0);
  }
  .page-header__nav-link:hover span, .page-header__nav-link:focus span {
    transform: translateY(-100%);
  }
}

.page-header__links-more {
  position: relative;
  padding-bottom: 10px;
  cursor: pointer;
  outline: none;
}
.page-header__links-more::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 7px;
  top: 10px;
  left: 50px;
  background-image: url("../img/icon-dropdown.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s;
}
.page-header__links-more:hover::after, .page-header__links-more:focus::after {
  transform: rotate(-90deg);
}
@media (min-width: 768px) {
  .page-header__links-more {
    padding: 0;
  }
  .page-header__links-more::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .page-header__links-more span {
    display: none;
  }
}

.page-header__links-dropdown {
  display: none;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  flex-direction: column;
  font-size: 14px;
  line-height: 18px;
  z-index: 1;
}
@media (min-width: 768px) {
  .page-header__links-dropdown {
    display: flex;
    position: static;
  }
}

.page-header__links-dropdown a {
  color: #7A808C;
  margin-bottom: 10px;
}
.page-header__links-dropdown a:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .page-header__links-dropdown a {
    color: #222c40;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}

.page-header__links-more:hover .page-header__links-dropdown,
.page-header__links-more:focus .page-header__links-dropdown {
  display: flex;
}

.page-footer {
  background-color: #F3F3F3;
  padding-top: 60px;
  padding-bottom: 54px;
}
@media (min-width: 768px) {
  .page-footer {
    padding-bottom: 81px;
  }
}
@media (min-width: 1140px) {
  .page-footer {
    padding-top: 55px;
  }
}

@media (min-width: 768px) {
  .page-footer__wrapper {
    display: grid;
    grid-template-areas: "logo nav" "info info" "bottom bottom";
    grid-template-columns: 173px 1fr;
    grid-column-gap: 77px;
  }
}
@media (min-width: 1140px) {
  .page-footer__wrapper {
    grid-template-areas: "logo info nav" "bottom bottom bottom";
    grid-template-columns: 190px 201px 1fr;
    grid-column-gap: 84px;
  }
}

.page-footer__logo-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 52px;
}
@media (min-width: 768px) {
  .page-footer__logo-wrapper {
    grid-area: logo;
    flex-direction: column;
    align-items: start;
    margin-bottom: 0;
  }
}
@media (min-width: 1140px) {
  .page-footer__logo-wrapper {
    margin-right: 28px;
  }
}

.page-footer__logo {
  display: block;
  width: 119px;
  height: 54px;
  flex-shrink: 0;
  margin-right: 33px;
}
@media (min-width: 768px) {
  .page-footer__logo {
    margin-right: 0;
    margin-bottom: 24px;
  }
}

.page-footer__logo-image {
  display: block;
}

.page-footer__info-text {
  margin: 0;
  font-size: 14px;
  line-height: 135%;
  color: #222C40;
}

.page-footer__navigation {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-footer__navigation {
    grid-area: nav;
  }
}
@media (min-width: 1140px) {
  .page-footer__navigation {
    width: 425px;
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.page-footer__navigation-text {
  width: 100%;
  margin: 0;
  margin-bottom: 26px;
  font-size: 24px;
  line-height: 135%;
}
@media (min-width: 1140px) {
  .page-footer__navigation-text {
    margin-bottom: 20px;
  }
}

.page-footer__navigation-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-footer__navigation-wrap {
    width: auto;
  }
}

.page-footer__navigation-link {
  font-size: 14px;
  line-height: 135%;
  color: #222C40;
  opacity: 0.8;
  margin-bottom: 17px;
  transition: opacity 0.5s;
  outline: none;
}
.page-footer__navigation-link:last-child {
  margin-bottom: 0;
}
.page-footer__navigation-link:hover, .page-footer__navigation-link:focus {
  opacity: 0.5;
}

.page-footer__contact {
  padding-right: 0;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-footer__contact {
    margin-right: 54px;
    margin-bottom: 0;
  }
}
@media (min-width: 1140px) {
  .page-footer__contact {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.page-footer__contact .contact__phone {
  font-size: 24px;
  line-height: 32px;
}

.page-footer__cooperation-text {
  margin: 0;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
}
.page-footer__cooperation-text a {
  color: #222C40;
}
@media (min-width: 768px) {
  .page-footer__cooperation-text {
    width: 201px;
  }
}

.page-footer__information {
  padding-bottom: 53px;
  border-bottom: 1px solid #BDC0C6;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-footer__information {
    grid-area: info;
    display: flex;
    margin-bottom: 50px;
  }
}
@media (min-width: 1140px) {
  .page-footer__information {
    margin-top: 24px;
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.page-footer__politics {
  display: block;
  font-size: 14px;
  line-height: 135%;
  color: #335C82;
  transition: opacity 0.5s;
  outline: none;
}
.page-footer__politics:hover, .page-footer__politics:focus {
  opacity: 0.5;
}

.page-footer__designed {
  margin: 0;
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
}
.page-footer__designed a {
  color: #335C82;
  transition: opacity 0.5s;
  outline: none;
}
.page-footer__designed a:hover, .page-footer__designed a:focus {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .page-footer__bottom {
    grid-area: bottom;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1140px) {
  .page-footer__bottom {
    padding-top: 30px;
    border-top: 1px solid #BDC0C6;
    margin-top: 75px;
  }
}

@media (min-width: 768px) {
  .page-footer__navigation-wrap--1 {
    width: 350px;
    height: 90px;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .page-footer__navigation-wrap--1 .page-footer__navigation-link {
    margin-right: 10px;
  }
  .page-footer__navigation-wrap--1 .page-footer__navigation-link:nth-of-type(3n) {
    margin-bottom: 0;
  }
}

.filter {
  max-width: 1100px;
  padding-top: 40px;
  padding-bottom: 47px;
  background-color: #ffffff;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .filter {
    padding-top: 30px;
    padding-bottom: 55px;
  }
}
@media (min-width: 1140px) {
  .filter {
    position: relative;
    margin-top: -290px;
    padding-left: 35px;
    padding-right: 35px;
  }
}

.filter__dropdown {
  position: relative;
  margin-bottom: 50px;
}

.filter__dropdown-label {
  margin: 0;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 19px;
  color: #7A808C;
}
@media (min-width: 768px) {
  .filter__dropdown-label {
    display: none;
  }
}

.filter__dropdown-btn {
  position: relative;
  font: inherit;
  display: block;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 0;
  padding-right: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #222C40;
}
@media (min-width: 768px) {
  .filter__dropdown-btn {
    display: none;
  }
}
.filter__dropdown-btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 7px;
  top: 50%;
  margin-top: -3px;
  right: 0;
  background-image: url("../img/icon-dropdown.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s;
}

.filter__button {
  color: #222C40;
  display: block;
  transition: opacity 0.5s;
  outline: none;
  margin-bottom: 15px;
}
.filter__button:hover, .filter__button:focus {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .filter__button {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0;
    margin-right: 50px;
    color: #7A808C;
  }
  .filter__button--active {
    position: relative;
    color: #222C40;
  }
  .filter__button--active::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #222C40;
    z-index: 1;
    left: 0;
    bottom: -18px;
  }
  .filter__button:last-of-type {
    margin-right: 0;
  }
}

.filter__buttons {
  opacity: 0;
  display: block;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: -5;
  background-color: #ffffff;
  padding: 22px 11px;
  box-shadow: 0 5px 8px 0 #a9a9a9;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media (min-width: 768px) {
  .filter__buttons {
    z-index: 1;
    opacity: 1;
    position: static;
    display: flex;
    box-shadow: none;
    padding: 0;
    padding-bottom: 17px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid #BDC0C6;
    margin-bottom: 50px;
  }
}

/* .filter__dropdown-btn:hover ~ .filter__buttons, */
.filter__dropdown-btn:focus ~ .filter__buttons {
  opacity: 1;
  z-index: 1;
}

/* .filter__dropdown-btn:hover::after, */
.filter__dropdown-btn:focus::after {
  transform: scaleY(-1);
}

.filter__select-wrap {
  position: relative;
  display: block;
  margin: 0;
  margin-bottom: 50px;
  align-self: start;
  border: none;
  padding: 0;
}
.filter__select-wrap--dropdown {
  position: relative;
}
@media (min-width: 768px) {
  .filter__select-wrap {
    margin-bottom: 0;
  }
}

.filter__label {
  display: block;
  margin: 0;
  padding: 0;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 19px;
  color: #7A808C;
}

.filter__select {
  display: block;
  width: 100%;
  border: none;
  font: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../img/icon-dropdown.svg");
  background-size: 12px;
  background-position: calc(100% - 5px) 50%;
  background-repeat: no-repeat;
  background-color: transparent;
  padding-bottom: 10px;
  border-bottom: 1px solid #222C40;
  outline: none;
  transition: border-color 0.5s;
  cursor: pointer;
}
.filter__select:hover, .filter__select:focus {
  border-color: #BDC0C6;
}

@media (min-width: 768px) {
  .filter__group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1140px) {
  .filter__group {
    margin-bottom: 40px;
    grid-template-columns: 180px 190px 183px 291px;
    grid-column-gap: 63px;
  }
}

.filter__fieldset {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .filter__fieldset {
    margin-bottom: 0;
  }
}

.filter__fieldset-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.filter__fieldset-item {
  margin-right: 10px;
}
.filter__fieldset-item:last-of-type {
  margin-right: 0;
}

.filter__radio-label {
  display: block;
  margin: 0;
  padding: 2px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: 1px solid #222C40;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.5s;
}
.filter__radio-label:hover, .filter__radio-label:focus {
  opacity: 0.5;
}

.filter__radio-input:checked ~ .filter__radio-label {
  background-color: #003363;
  color: #ffffff;
  border-color: #003363;
}
.filter__radio-input:checked ~ .filter__radio-label:hover, .filter__radio-input:checked ~ .filter__radio-label:focus {
  opacity: 1;
}

.filter__radio-input:focus ~ .filter__radio-label {
  opacity: 0.5;
}

.filter__radio-input:checked:focus ~ .filter__radio-label {
  opacity: 1;
}

.filter__price-wrap {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .filter__price-wrap {
    margin-bottom: 0;
  }
}

.filter__form-buttons-wrap {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .filter__form-buttons-wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1140px) {
  .filter__form-buttons-wrap {
    padding-right: 45px;
  }
}

.filter__form-btns {
  display: grid;
  grid-row-gap: 20px;
  grid-auto-rows: min-content;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .filter__form-btns {
    display: flex;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .filter__show-btn {
    width: 242px;
    margin-right: 20px;
  }
}

@media (min-width: 768px) {
  .filter__submit-btn {
    width: 179px;
  }
}

.filter__reset-btn {
  padding: 0;
  display: block;
  font: inherit;
  font-size: 18px;
  line-height: 145%;
  color: #7A808C;
  text-shadow: none;
  border: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  z-index: 1;
  transition: color 0.3s;
}
.filter__reset-btn:hover, .filter__reset-btn:focus {
  color: #222C40;
}
@media (min-width: 768px) {
  .filter__reset-btn {
    text-align: left;
  }
}

.filter__price-wrap .rs-container {
  height: 20px;
  margin: 0 auto;
}
.filter__price-wrap .rs-container .rs-pointer, .filter__price-wrap .rs-container .rs-selected {
  border: 0;
  background-color: #222C40;
  height: 1px;
}
.filter__price-wrap .rs-container .rs-pointer {
  width: 15px;
  height: 15px;
  background-color: #222C40;
  box-shadow: none;
  border-radius: 50%;
}
.filter__price-wrap .rs-container .rs-pointer::before, .filter__price-wrap .rs-container .rs-pointer::after {
  display: none;
}
.filter__price-wrap .rs-container .rs-pointer[data-dir=left] .rs-tooltip {
  padding-left: 20px;
}
.filter__price-wrap .rs-container .rs-pointer[data-dir=right] .rs-tooltip {
  padding-right: 50px;
}
.filter__price-wrap .rs-container .rs-scale {
  display: none;
}
.filter__price-wrap .rs-container .rs-bg {
  border: 0;
  background-color: #222C40;
  height: 1px;
}
.filter__price-wrap .rs-container .rs-tooltip {
  height: auto;
  border: 0;
  font-size: 18px;
  line-height: 145%;
  color: #222C40;
  font-weight: 400;
  padding: 0;
  min-width: 50px;
  opacity: 0;
}

.filter__price-values {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  line-height: 145%;
  color: #7A808C;
}

.filter__current-values {
  display: flex;
  justify-content: space-between;
}

.filter__select-dropdown {
  display: none;
  position: absolute;
  padding: 22px 11px;
  width: 100%;
  max-height: 190px;
  left: 0;
  top: 100%;
  perspective: 1000px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
  z-index: 2;
  background-color: #ffffff;
}
.filter__select-dropdown--show {
  display: block;
  animation: growDown 500ms ease-in-out forwards;
  transform-origin: top center;
}

.filter__select-dropdown-wrap {
  margin: 0;
  margin-bottom: 15px;
}
.filter__select-dropdown-wrap:last-child {
  margin-bottom: 0;
}
.filter__select-dropdown-wrap:first-of-type {
  padding-bottom: 14px;
  border-bottom: 1px solid #BDC0C6;
}
.filter__select-dropdown-wrap:last-of-type {
  padding-top: 14px;
  border-top: 1px solid #BDC0C6;
}

.filter__select-dropdown-btn {
  position: relative;
  background-color: #ffffff;
  border: none;
  display: block;
  padding: 0;
  padding-right: 30px;
  font: inherit;
  align-self: start;
  padding-bottom: 11px;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #222C40;
  outline: none;
  cursor: pointer;
  transition: border 0.5s;
  height: 37px;
  white-space: nowrap;
  overflow: hidden;
  width: calc(100vw - 32px);
}
.filter__select-dropdown-btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 37px;
  top: 0;
  right: 0;
  background-color: #ffffff;
  background-image: url("../img/icon-dropdown.svg");
  background-size: 12px;
  background-position: 18px 10px;
  background-repeat: no-repeat;
}
.filter__select-dropdown-btn:hover, .filter__select-dropdown-btn:focus {
  border-bottom: 1px solid #b6b8bd;
}
.filter__select-dropdown-btn--active {
  z-index: 2;
  border-bottom: 0;
}
.filter__select-dropdown-btn--active:hover, .filter__select-dropdown-btn--active:focus {
  border-bottom: 0;
}
@media (min-width: 768px) {
  .filter__select-dropdown-btn {
    width: calc((100vw - 48px 30px)/2);
  }
}
@media (min-width: 1140px) {
  .filter__select-dropdown-btn {
    width: 180px;
  }
}

.filter__select-dropdown-label {
  font-size: 14px;
  line-height: 135%;
  position: relative;
  margin: 0;
  padding-left: 25px;
  padding-top: 2px;
}
.filter__select-dropdown-label::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  top: 0px;
  left: 0;
  border: 2px solid #BDC0C6;
  border-radius: 3px;
  cursor: pointer;
}

.filter__select-dropdown-input:checked + .filter__select-dropdown-label::after {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 5px;
  top: 5px;
  left: 4px;
  background-image: url("../img/checkbox.svg");
  background-repeat: no-repeat;
  background-position: center;
}

@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
.page-head {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .page-head {
    margin-bottom: 120px;
  }
}

.page-head__title {
  margin-top: 0;
  margin-bottom: 0;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .page-head__title {
    font-size: 60px;
    line-height: 71px;
  }
}
@media (min-width: 1140px) {
  .page-head__title {
    margin-bottom: 24px;
  }
}

.page-head__text {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .page-head__text {
    font-size: 24px;
    line-height: 32px;
    max-width: 69%;
    padding: 0;
  }
}
@media (min-width: 1140px) {
  .page-head__text {
    max-width: 730px;
  }
}

.page-head__text-wrapper {
  padding-bottom: 50px;
  padding-top: 60px;
  position: relative;
}
.page-head__text-wrapper::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(131.82deg, rgba(34, 43, 64, 0.5) 45.6%, rgba(34, 43, 64, 0) 74.56%);
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .page-head__text-wrapper {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media (min-width: 1140px) {
  .page-head__text-wrapper {
    min-height: 660px;
    padding-top: 120px;
    padding-bottom: 300px;
  }
}

.page-head__img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
}

.offer {
  position: relative;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.offer > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.offer__img {
  display: block;
  width: 100%;
  height: 250px;
}
@media (min-width: 768px) {
  .offer__img {
    height: 268px;
  }
}
@media (min-width: 1140px) {
  .offer__img {
    height: 280px;
  }
}

.offer__wrapper {
  padding: 20px 15px 25px 15px;
  background-color: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .offer__wrapper {
    padding: 15px 20px 25px 20px;
  }
}
@media (min-width: 1140px) {
  .offer__wrapper {
    padding-top: 20px;
  }
}

.offer__wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.offer__wrap:last-of-type {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 19px;
  color: #7A808C;
  margin-top: auto;
}

.offer__title {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  width: 54%;
}
@media (min-width: 768px) {
  .offer__title {
    font-size: 18px;
    line-height: 26px;
  }
}

.offer__title a {
  color: #222C40;
  transition: opacity 0.5s;
  outline: none;
}
.offer__title a:hover, .offer__title a:focus {
  opacity: 0.5;
  text-decoration: underline;
}

.offer__price {
  margin: 0;
  margin-left: 5px;
  text-align: right;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .offer__price {
    font-size: 18px;
    line-height: 26px;
  }
}

.offer__address {
  margin: 0;
  margin-left: 10px;
  width: 61%;
  text-align: right;
}

.offer__address span {
  position: relative;
  padding-left: 18px;
}
.offer__address span::before {
  content: "";
  position: absolute;
  display: block;
  width: 11px;
  height: 14px;
  top: 0;
  left: 0;
  background-image: url("../img/icon-geo.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.6;
}

.offer__box {
  position: absolute;
  margin: 0;
  padding: 8px 13px;
  top: 20px;
  left: 15px;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
}
.offer__box--sale {
  background-color: #222C40;
}
.offer__box--rent {
  background-color: #BB8B41;
}

.best-offers {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .best-offers {
    margin-bottom: 170px;
  }
}
@media (min-width: 1140px) {
  .best-offers {
    margin-bottom: 120px;
  }
}

.best-offers__wrapper {
  display: grid;
  grid-row-gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .best-offers__wrapper {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 768px) {
  .best-offers__wrapper {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
  }
}
@media (min-width: 1140px) {
  .best-offers__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.best-offers__show-btn {
  width: 203px;
  margin: 0 auto;
}

.get-results {
  display: none;
  position: fixed;
  margin: 0;
  width: calc(100% - 32px);
  padding: 16px;
  max-width: 1260px;
  background-color: #F3F3F3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 1px 1px 15px 5px rgba(0, 0, 0, 0.1);
}
.get-results--show {
  display: grid;
}
@media (min-width: 768px) {
  .get-results {
    padding: 24px;
    width: calc(100% - 48px);
    grid-template-columns: 300px 412px;
    grid-column-gap: 50px;
    justify-content: center;
  }
}
@media (min-width: 1140px) {
  .get-results {
    padding: 40px 100px;
    min-height: 607px;
    grid-template-columns: 350px 412px;
  }
}
@media (min-width: 1900px) {
  .get-results {
    padding: 87px 224px 113px 224px;
    width: 1260px;
    min-height: 700px;
  }
}

.get-results__title {
  font-size: 24px;
  line-height: 135%;
  font-weight: 400;
  margin: 0;
  margin-bottom: 41px;
  text-align: center;
}
@media (min-width: 768px) {
  .get-results__title {
    text-align: left;
  }
}

.get-results__img-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .get-results__img-wrapper {
    display: block;
  }
}

.get-results__form-wrapper {
  max-width: 412px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .get-results__form-wrapper {
    margin: 0;
    padding-top: 50px;
  }
}
@media (min-width: 1140px) {
  .get-results__form-wrapper {
    padding-top: 80px;
  }
}

.form__submit-btn {
  width: 100%;
}

.get-results__img-wrapper img {
  display: block;
  margin-bottom: 24px;
  object-fit: cover;
}
@media (min-width: 1140px) {
  .get-results__img-wrapper img {
    width: 350px;
    height: 420px;
  }
}

.get-results__director-name,
.get-results__director-info {
  margin: 0;
}

.get-results__director-name {
  font-size: 24px;
  line-height: 135%;
  margin-bottom: 5px;
}

.get-results__director-info {
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
}

.get-results__close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  border: none;
  cursor: pointer;
  padding: 0;
  text-shadow: none;
  width: 10px;
  height: 10px;
  background-color: transparent;
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.get-results__close-btn:hover, .get-results__close-btn:focus {
  opacity: 1;
}
@media (min-width: 768px) {
  .get-results__close-btn {
    top: 24px;
    right: 24px;
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 1900px) {
  .get-results__close-btn {
    top: 40px;
    right: 75px;
  }
}

.personal-selection-wrapper {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .personal-selection-wrapper {
    margin-bottom: 120px;
  }
}

.personal-selection__question {
  position: relative;
}

.personal-selection__wrapper {
  background-color: #F3F3F3;
  padding-top: 40px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .personal-selection__wrapper {
    padding-top: 98px;
    padding-bottom: 91px;
  }
}

@media (min-width: 1140px) {
  .personal-selection__title {
    width: 550px;
  }
}

.personal-selection__question-number {
  margin: 0;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  position: relative;
  z-index: 1;
}

.personal-selection__question-text {
  margin: 0;
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 26px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .personal-selection__question-text {
    font-size: 32px;
    line-height: 37px;
    margin-bottom: 55px;
  }
}

.personal-selection__question-btn {
  position: relative;
  width: 100%;
  display: block;
  font: inherit;
  text-shadow: none;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 27px 55px 24px 25px;
  margin-bottom: 20px;
  text-align: left;
  transition: box-shadow 0.5s;
  outline: none;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
}
.personal-selection__question-btn:last-of-type {
  margin-bottom: 0;
}
.personal-selection__question-btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../img/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 15px;
  border: 1px solid #BDC0C6;
  border-radius: 50%;
  transition: all 0.5s;
}
.personal-selection__question-btn:hover, .personal-selection__question-btn:focus {
  box-shadow: 1px 1px 15px 5px rgba(0, 0, 0, 0.1);
}
.personal-selection__question-btn:hover::after, .personal-selection__question-btn:focus::after {
  border-color: #222C40;
  background-image: url("../img/arrow-right-dark.svg");
}
.personal-selection__question-btn--error {
  border: 1px solid #C3002D;
}
@media (min-width: 768px) {
  .personal-selection__question-btn {
    display: flex;
    align-items: top;
    font-size: 24px;
    line-height: 28px;
    height: 180px;
    padding: 27px 25px;
    margin-bottom: 0;
  }
  .personal-selection__question-btn::after {
    top: auto;
    bottom: 20px;
    right: 25px;
    transform: translateY(0);
  }
}

.personal-selection__question-links {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .personal-selection__question-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 10px;
  }
  .personal-selection__question-links--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.personal-selection__number {
  position: absolute;
  font-weight: 500;
  font-size: 200px;
  line-height: 135%;
  text-align: right;
  color: #E9EAEC;
  z-index: 0;
  right: 0;
  top: 40px;
}
@media (min-width: 768px) {
  .personal-selection__number {
    top: 10px;
  }
}
@media (min-width: 1140px) {
  .personal-selection__number {
    right: 36px;
    top: -50px;
    font-size: 280px;
  }
}

.personal-selection--modal {
  display: none;
  position: fixed;
  margin: 0;
  width: calc(100% - 32px);
  padding: 16px;
  max-width: 1260px;
  background-color: #F3F3F3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 1px 1px 15px 5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .personal-selection--modal {
    padding: 24px;
    width: calc(100% - 48px);
  }
}
@media (min-width: 1140px) {
  .personal-selection--modal {
    padding: 40px 30px;
    min-height: 607px;
  }
}
@media (min-width: 1900px) {
  .personal-selection--modal {
    padding: 60px 75px 87px 75px;
    width: 1260px;
    min-height: 700px;
  }
}

.personal-selection--show {
  display: block;
}

.personal-selection--modal .personal-selection__title {
  position: relative;
  z-index: 1;
  width: auto;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .personal-selection--modal .personal-selection__title {
    font-size: 28px;
    line-height: 32px;
  }
}

.personal-selection--modal .personal-selection__text {
  position: relative;
  z-index: 1;
  margin: 0;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .personal-selection--modal .personal-selection__text {
    font-size: 24px;
    line-height: 135%;
    margin-bottom: 43px;
  }
}

.personal-selection--modal .personal-selection__number {
  top: 0;
  right: 36px;
}
@media (min-width: 768px) {
  .personal-selection--modal .personal-selection__number {
    right: 50px;
  }
}
@media (min-width: 1140px) {
  .personal-selection--modal .personal-selection__number {
    top: 118px;
    right: 110px;
  }
}

.personal-selection--modal .personal-selection__question-text {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .personal-selection--modal .personal-selection__question-text {
    margin-bottom: 40px;
    font-size: 22px;
    line-height: 26px;
  }
}

.personal-selection--modal .personal-selection__question-btn {
  padding-top: 13px;
  padding-bottom: 13px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .personal-selection--modal .personal-selection__question-btn {
    padding-top: 27px;
    padding-bottom: 24px;
    margin-bottom: 20px;
  }
}

.personal-selection__close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  border: none;
  cursor: pointer;
  padding: 0;
  text-shadow: none;
  width: 10px;
  height: 10px;
  background-color: transparent;
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.personal-selection__close-btn:hover, .personal-selection__close-btn:focus {
  opacity: 1;
}
@media (min-width: 768px) {
  .personal-selection__close-btn {
    top: 24px;
    right: 24px;
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 1900px) {
  .personal-selection__close-btn {
    top: 50px;
    right: 75px;
  }
}

.personal-selection__btn-prev {
  display: block;
  border: none;
  cursor: pointer;
  text-shadow: none;
  font: inherit;
  background-color: transparent;
  font-size: 18px;
  line-height: 145%;
  color: #7A808C;
  margin-bottom: 10px;
  transition: color 0.5s;
}
.personal-selection__btn-prev:hover, .personal-selection__btn-prev:focus {
  color: #222C40;
}
@media (min-width: 768px) {
  .personal-selection__btn-prev {
    margin-bottom: 0;
  }
}

.personal-selection__buttons {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .personal-selection__buttons {
    margin-top: 50px;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .personal-selection__btn-next {
    width: 262px;
  }
}

.experience {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .experience {
    margin-bottom: 140px;
  }
}
@media (min-width: 1140px) {
  .experience {
    margin-bottom: 120px;
  }
}

.experience__wrapper {
  display: grid;
  margin-bottom: 80px;
}
@media (min-width: 576px) {
  .experience__wrapper {
    grid-template-areas: "title title" "text text" "image quote";
    grid-template-columns: 290px 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 768px) {
  .experience__wrapper {
    grid-template-areas: "title title" "text text" "image quote" "image link";
    margin-bottom: 140px;
    grid-template-columns: 345px 1fr;
    grid-column-gap: 46px;
  }
}
@media (min-width: 1140px) {
  .experience__wrapper {
    margin-bottom: 120px;
    grid-template-areas: "title image" "quote image" "text image" "link image";
    grid-template-columns: 1fr 350px;
    grid-column-gap: 190px;
  }
}

@media (min-width: 576px) {
  .experience__title {
    grid-area: title;
  }
}
@media (min-width: 768px) {
  .experience__title {
    width: 78%;
  }
}
@media (min-width: 1140px) {
  .experience__title {
    width: 100%;
  }
}

.experience__quote-text {
  order: 1;
  position: relative;
  font-style: italic;
  font-size: 16px;
  line-height: 23px;
  margin: 0;
  margin-bottom: 30px;
  padding-top: 60px;
}
.experience__quote-text::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 36px;
  height: 33px;
  background-image: url("../img/quote.png");
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 576px) {
  .experience__quote-text {
    grid-area: quote;
    margin-bottom: 10px;
    align-self: start;
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .experience__quote-text {
    font-size: 18px;
    line-height: 26px;
    align-self: center;
    margin-top: 0;
  }
}
@media (min-width: 1140px) {
  .experience__quote-text {
    padding-top: 0;
    padding-left: 80px;
    margin-bottom: 30px;
  }
  .experience__quote-text::before {
    top: 5px;
    left: 10px;
  }
}

.experience__img-wrapper {
  order: 2;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .experience__img-wrapper {
    grid-area: image;
  }
}
@media (min-width: 768px) {
  .experience__img-wrapper {
    margin-bottom: 0;
  }
}

.experience__img-wrapper img {
  display: block;
  object-fit: cover;
  margin: 0 auto;
  margin-bottom: 19px;
}
@media (min-width: 768px) {
  .experience__img-wrapper img {
    width: 345px;
    height: 397px;
  }
}
@media (min-width: 1140px) {
  .experience__img-wrapper img {
    width: 350px;
    height: 500px;
  }
}

.experience__text {
  order: 3;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
}
@media (min-width: 576px) {
  .experience__text {
    grid-area: text;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .experience__text {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 51px;
  }
}
@media (min-width: 1140px) {
  .experience__text {
    margin-bottom: 71px;
  }
}

.experience__link {
  display: none;
  order: 4;
  color: #222C40;
  transition: opacity 0.5s;
  padding: 2px 0;
  outline: none;
}
.experience__link:hover, .experience__link:focus {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .experience__link {
    display: block;
    grid-area: link;
    align-self: start;
    font-size: 24px;
    line-height: 28px;
  }
}

.experience__link span {
  position: relative;
  padding-right: 60px;
}
.experience__link span::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  width: 30px;
  height: 30px;
  right: 0;
  background-image: url("../img/arrow-right-dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #222C40;
  border-radius: 50%;
}
@media (min-width: 1140px) {
  .experience__link span::after {
    top: -2px;
  }
}

.experience__director-name {
  margin: 0;
  margin-bottom: 5px;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1140px) {
  .experience__director-name {
    font-size: 14px;
    line-height: 19px;
  }
}

.experience__director-info {
  margin: 0;
  font-size: 14px;
  line-height: 19px;
  color: #7A808C;
}

.certificate {
  background-color: #F3F3F3;
  padding-top: 50px;
  padding-bottom: 60px;
  max-width: 1140px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .certificate {
    padding-left: 24px;
    padding-right: 24px;
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .certificate {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.certificate__wrapper {
  padding: 0 16px;
  position: relative;
  min-height: 340px;
}
@media (min-width: 768px) {
  .certificate__wrapper {
    background-color: #F3F3F3;
    padding-top: 80px;
    padding-bottom: 100px;
    min-height: 410px;
  }
}
@media (min-width: 1140px) {
  .certificate__wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    grid-column-gap: 73px;
    padding: 0 65px;
    padding-top: 81px;
    padding-bottom: 94px;
    min-height: 250px;
  }
}

.certificate__title {
  margin: 0;
  margin-bottom: 35px;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
}
@media (min-width: 768px) {
  .certificate__title {
    font-size: 32px;
    line-height: 37px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1140px) {
  .certificate__title {
    width: 380px;
    margin-bottom: 0;
    text-align: left;
  }
}

.certificate__label {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
}

.certificate__input {
  width: 100%;
  padding: 5px;
  display: block;
  font: inherit;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #222C40;
  outline: none;
  border-radius: 0;
}
.certificate__input--error {
  border-bottom: 1px solid #C3002D;
}

.certificate__input:focus + .certificate__label {
  opacity: 0;
}

.certificate__input-wrap {
  display: flex;
  flex-direction: column-reverse;
  margin: 0;
  margin-bottom: 40px;
}
@media (min-width: 1140px) {
  .certificate__input-wrap {
    margin-bottom: 0;
    margin-right: 49px;
    width: 205px;
    flex-shrink: 0;
  }
}

.certificate__form {
  max-width: 470px;
  margin: 0 auto;
}
@media (min-width: 1140px) {
  .certificate__form {
    display: flex;
    align-items: center;
    margin: 0;
    max-width: 100%;
  }
}

@media (min-width: 1140px) {
  .certificate__button {
    width: 273px;
  }
}

.certificate__success-text {
  margin: 0;
  text-align: center;
  width: calc(100% - 32px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1140px) {
  .certificate__success-text {
    font-size: 24px;
    line-height: 135%;
  }
}

.contacts {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .contacts {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .contacts {
    padding-top: 120px;
  }
}

@media (min-width: 768px) {
  .contacts__title {
    margin-bottom: 60px;
  }
}
@media (min-width: 1140px) {
  .contacts__title {
    margin-bottom: 80px;
  }
}

.contacts__content-item--social {
  display: none;
}
@media (min-width: 1140px) {
  .contacts__content-item--social {
    display: block;
  }
}

.contacts__btn-wrapper {
  position: relative;
  display: flex;
  border-bottom: 1px solid #BDC0C6;
  margin-bottom: 41px;
}

.contacts__button {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 15px;
  display: block;
  font: inherit;
  text-align: left;
  text-shadow: none;
  border: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  color: #7A808C;
  line-height: 24px;
  margin-right: 30px;
  transition: color 0.5s;
}
.contacts__button:last-child {
  margin-right: 0;
}
.contacts__button:hover, .contacts__button:focus {
  color: #222C40;
}
.contacts__button--active {
  color: #222C40;
}
.contacts__button--active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #222C40;
  z-index: 1;
}
@media (min-width: 768px) {
  .contacts__button {
    font-size: 24px;
    line-height: 135%;
    margin-right: 45px;
  }
}

.contacts__content-list {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 40px;
  border-bottom: 1px solid #BDC0C6;
  margin-bottom: 80px;
}
.contacts__content-list.hide {
  display: none;
}
@media (min-width: 768px) {
  .contacts__content-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 62px;
    padding-bottom: 50px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .contacts__content-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 69px;
    padding-bottom: 44px;
    margin-bottom: 70px;
  }
}

.contacts__content-item {
  margin-bottom: 30px;
}
.contacts__content-item:nth-child(2) {
  margin-bottom: 0;
}
.contacts__content-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .contacts__content-item {
    margin-bottom: 0;
  }
}

.contacts__label {
  margin: 0;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 145%;
  color: #7A808C;
}

.contacts__content-link {
  font-size: 22px;
  color: #222C40;
}
@media (min-width: 768px) {
  .contacts__content-link {
    font-size: 32px;
    line-height: 37px;
  }
}

.contacts__proposal {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .contacts__proposal {
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .contacts__proposal {
    margin-bottom: 70px;
  }
}

.contacts__office-wrap {
  display: grid;
  padding: 0 16px;
  padding-top: 34px;
  padding-bottom: 57px;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .contacts__office-wrap {
    padding-left: 30px;
    padding-right: 50px;
    padding-bottom: 57px;
    width: calc(100% - 48px);
    margin: 0 auto;
  }
}
@media (min-width: 1140px) {
  .contacts__office-wrap {
    width: 380px;
    padding: 34px 30px;
    margin: 0;
  }
}

.contacts__office.hide {
  display: none;
}
@media (min-width: 1140px) {
  .contacts__office {
    max-width: 1140px;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
    display: flex;
  }
}

.contacts__office-title {
  font-size: 28px;
  line-height: 32px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .contacts__office-title {
    font-size: 32px;
    line-height: 37px;
    margin-bottom: 50px;
  }
}

.contacts__office-button {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  padding: 0;
  padding-bottom: 21px;
  padding-right: 25px;
  border: none;
  border-bottom: 1px solid #BDC0C6;
  display: block;
  font: inherit;
  text-align: left;
  text-shadow: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  font-size: 24px;
  line-height: 135%;
  transition: border 0.5s;
}
.contacts__office-button:hover, .contacts__office-button:focus {
  border-color: #222C40;
}
.contacts__office-button::after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: 0;
  right: 0;
  background-image: url("../img/dropdown-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px 16px;
}
.contacts__office-button:last-of-type {
  margin-bottom: 0;
}
.contacts__office-button--active {
  border-color: #222C40;
}

.contacts__map {
  width: 100% !important;
  height: 250px;
  filter: grayscale(1);
}
@media (min-width: 768px) {
  .contacts__map {
    min-height: 619px;
    height: 100%;
  }
}

.contacts__map {
  width: 100% !important;
}

@media (min-width: 768px) {
  .contacts__office-maps {
    padding: 0 24px;
  }
}
@media (min-width: 1140px) {
  .contacts__office-maps {
    padding: 0;
    width: 730px;
  }
}

.contacts__social .social__link {
  width: 25px;
  height: 25px;
}

.contacts__slide {
  display: none;
  background-color: #ffffff;
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 1;
}
.contacts__slide--active {
  display: block;
}

.contacts__slide-wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 375px) {
  .contacts__slide-wrap {
    align-items: center;
  }
}
@media (min-width: 576px) {
  .contacts__slide-wrap {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-column-gap: 5%;
    grid-template-areas: "image address" "image contact";
  }
}
@media (min-width: 1140px) {
  .contacts__slide-wrap {
    display: block;
  }
}

.contacts__slide-img-wrap {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .contacts__slide-img-wrap {
    grid-area: image;
    padding: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1140px) {
  .contacts__slide-img-wrap {
    margin-bottom: 30px;
  }
}

@media (min-width: 576px) {
  .contacts__slide-contact-wrap {
    grid-area: contact;
    padding: 0;
    align-self: start;
  }
}

.contacts__buttons {
  grid-column: 1/-1;
  grid-row: 1/-1;
}

.contacts__slide-btn {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 35px;
  padding-bottom: 15px;
  border: none;
  font: inherit;
  font-size: 24px;
  line-height: 135%;
  text-shadow: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  transition: border 0.5s;
  margin-bottom: 40px;
}
.contacts__slide-btn::before {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% + 32px);
  height: 1px;
  left: -16px;
  bottom: 0;
  background-color: #BDC0C6;
}
.contacts__slide-btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: 5px;
  left: -7px;
  background-image: url("../img/dropdown-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px 16px;
  transform: scaleX(-1);
}
.contacts__slide-btn:hover::before, .contacts__slide-btn:focus::before {
  background-color: #222C40;
}
@media (min-width: 768px) {
  .contacts__slide-btn::before {
    width: calc(100% + 80px);
    left: -30px;
  }
}
@media (min-width: 1140px) {
  .contacts__slide-btn::before {
    width: calc(100% + 60px);
  }
}

.contacts__slide-text {
  margin: 0;
  font-size: 24px;
  line-height: 135%;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .contacts__slide-text {
    grid-area: address;
    padding: 0;
    align-self: start;
  }
}

.contacts__slide-img {
  display: block;
  margin-bottom: 10px;
}

.contacts__slide-name {
  font-size: 14px;
  line-height: 135%;
  margin: 0;
}

.contacts__slide-info {
  font-size: 10px;
  line-height: 145%;
  color: #7A808C;
  display: block;
}

.contacts__slide-contact {
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  margin: 0;
  margin-bottom: 8px;
}

.contacts__slide-link {
  color: #222C40;
  display: block;
  margin-bottom: 8px;
}
.contacts__slide-link:last-of-type {
  margin-bottom: 0;
}

.work {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .work {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .work {
    padding-top: 120px;
  }
}

@media (min-width: 768px) {
  .work__title {
    margin-bottom: 60px;
  }
}
@media (min-width: 1140px) {
  .work__title {
    margin-bottom: 80px;
  }
}

.work__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .work__list {
    margin-bottom: 120px;
  }
}

.work__item {
  padding: 30px 0;
  border-top: 1px solid #BDC0C6;
}
.work__item:last-child {
  border-bottom: 1px solid #BDC0C6;
}
@media (min-width: 768px) {
  .work__item {
    padding: 50px 0;
  }
}

.work__button {
  position: relative;
  display: block;
  width: 100%;
  font: inherit;
  padding: 0;
  padding-right: 30px;
  font-weight: 400;
  text-align: center;
  text-shadow: none;
  border: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  font-size: 22px;
  line-height: 26px;
  text-align: left;
  transition: opacity 0.5s;
}
.work__button::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("../img/plus.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.work__button:hover, .work__button:focus {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .work__button {
    font-size: 32px;
    line-height: 37px;
    padding-right: 40px;
  }
}

.work__item-content {
  display: none;
}

.work__item--active .work__button {
  margin-bottom: 20px;
}
.work__item--active .work__button::after {
  background-image: url("../img/minus.svg");
}
@media (min-width: 768px) {
  .work__item--active .work__button {
    margin-bottom: 50px;
  }
}

.work__item--active .work__item-content {
  display: block;
}

.work__item-content p {
  margin: 0;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 135%;
}
@media (min-width: 768px) {
  .work__item-content p {
    margin-bottom: 30px;
  }
}
.work__item-content ul {
  margin: 0;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}
.work__item-content ul:last-of-type {
  margin-bottom: 50px;
}
.work__item-content li {
  position: relative;
  padding-left: 28px;
}
.work__item-content li::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 3px;
  height: 3px;
  background-color: #222C40;
  border-radius: 50%;
}

@media (min-width: 576px) {
  .work__item-button {
    width: 210px;
  }
}

.member__image {
  display: block;
  margin-bottom: 19px;
}
@media (min-width: 768px) {
  .member__image {
    width: 100%;
    height: 395px;
    object-fit: cover;
  }
}
@media (min-width: 1140px) {
  .member__image {
    height: 400px;
  }
}

.member__name {
  font-size: 24px;
  line-height: 135%;
  font-weight: 400;
  margin: 0;
  margin-bottom: 5px;
}

.member__desc {
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  margin: 0;
}

.team__members {
  display: grid;
  grid-row-gap: 30px;
  margin-bottom: 80px;
  justify-content: center;
}
@media (min-width: 768px) {
  .team__members {
    grid-template-columns: 345px 345px;
    grid-column-gap: 30px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .team__members {
    grid-template-columns: 350px 350px 350px;
  }
}

.about {
  padding-top: 60px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .about {
    padding-top: 100px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .about {
    padding-top: 120px;
    margin-bottom: 68px;
    display: flex;
  }
}

.about__title-wrap {
  margin-bottom: 40px;
}
@media (min-width: 1140px) {
  .about__title-wrap {
    margin-right: 171px;
    margin-bottom: 50px;
  }
}

.about__title {
  margin-bottom: 20px;
}
@media (min-width: 1140px) {
  .about__title {
    width: 400px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

.about__small-text {
  font-size: 14px;
  line-height: 135%;
}

.about__text {
  margin: 0;
  margin-bottom: 25px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .about__text {
    font-size: 24px;
    line-height: 135%;
    margin-bottom: 30px;
  }
}
@media (min-width: 1140px) {
  .about__text {
    margin-bottom: 50px;
  }
}

.about__desc {
  margin: 0;
  margin-bottom: 20px;
  line-height: 24px;
}
.about__desc:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .about__desc {
    line-height: 26px;
  }
}
@media (min-width: 1140px) {
  .about__desc {
    letter-spacing: 0.5px;
  }
}

@media (min-width: 1140px) {
  .about__wrapper {
    margin-top: 10px;
  }
}

.image {
  display: block;
  width: 100%;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .image {
    height: 500px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .image {
    height: 800px;
  }
}

.get-offer {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .get-offer {
    margin-bottom: 120px;
  }
}

@media (min-width: 768px) {
  .get-offer__title {
    width: 504px;
  }
}

.get-offer__form {
  background-color: #F3F3F3;
  padding-top: 56px;
  padding-bottom: 92px;
}
@media (min-width: 768px) {
  .get-offer__form {
    width: calc(100% - 48px);
    padding-bottom: 74px;
    margin: 0 auto;
  }
}
@media (min-width: 1140px) {
  .get-offer__form {
    width: 1110px;
  }
}

.get-offer__item-wrap {
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .get-offer__item-wrap {
    margin-bottom: 0;
  }
}

.get-offer__label {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 145%;
  color: #7A808C;
}

.get-offer__values {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  line-height: 145%;
  color: #7A808C;
}

.get-offer__range {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
  background-color: transparent;
  height: 1px;
  background-color: #BDC0C6;
  background-image: linear-gradient(to right, #222C40 0%, #BDC0C6 0%);
}

.get-offer__range::-webkit-slider-thumb {
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #2497E3;
  height: 15px;
  width: 15px;
  border-radius: 25px;
  background: #222C40;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: 0px;
}

.get-offer__range::-moz-range-thumb {
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #2497E3;
  height: 15px;
  width: 15px;
  border-radius: 25px;
  background: #222C40;
  cursor: pointer;
}

.get-offer__range::-ms-thumb {
  position: relative;
  z-index: 1;
  margin-top: 1px;
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #2497E3;
  height: 15px;
  width: 15px;
  border-radius: 25px;
  background: #222C40;
  cursor: pointer;
}

@media (min-width: 768px) {
  .get-offer__form-wrap {
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 22px;
  }
}
@media (min-width: 1140px) {
  .get-offer__form-wrap {
    padding: 0 48px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 60px;
  }
}

@media (min-width: 768px) {
  .get-offer__button {
    align-self: center;
  }
}

@media (min-width: 1140px) {
  .get-offer__current-value {
    display: block;
    margin-bottom: 0px;
  }
}

.partners__slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 0;
  width: calc(100vw - 32px);
  width: calc(var(--vw, 1vw) * 100 - 32px);
  padding-bottom: 60px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .partners__slider {
    margin-bottom: 120px;
    width: calc(100vw - 48px);
    width: calc(var(--vw, 1vw) * 100 - 48px);
  }
}
@media (min-width: 1140px) {
  .partners__slider {
    width: 1112px;
    margin-bottom: 144px;
    padding-bottom: 0;
  }
}

@media (min-width: 1140px) {
  .partners__slider-wrapper {
    margin-bottom: 50px;
  }
}

.partners__slide {
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
  padding: 41px 39px 57px 36px;
}
.partners__slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 46px;
  top: 36px;
  left: 0;
}
.partners__slide--blue::after {
  background-color: #123D70;
}
.partners__slide--red::after {
  background-color: #E31C17;
}
.partners__slide--dark-red::after {
  background-color: #C3002D;
}
.partners__slide--orange::after {
  background-color: #EA5615;
}
.partners__slide--green::after {
  background-color: #7DFF00;
}

.partners__img-wrap {
  height: 37px;
  margin-bottom: 40px;
}

.partners__img {
  display: block;
}

.partners__list {
  margin: 0;
}

.partners__item {
  margin-bottom: 15px;
}
.partners__item:last-of-type {
  margin-bottom: 0;
}

.partners__definition {
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  margin-bottom: 2px;
}

.partners__desc {
  margin: 0;
}
.partners__desc span {
  font-size: 20px;
}

.partners__slider .swiper-pagination {
  bottom: 0 !important;
}
@media (min-width: 1140px) {
  .partners__slider .swiper-pagination {
    display: none !important;
  }
}
.partners__slider .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background-color: #222C40 !important;
  opacity: 0.5 !important;
}
.partners__slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.partners__slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  opacity: 1 !important;
}
@media (min-width: 1140px) {
  .partners__slider .swiper-button-prev,
.partners__slider .swiper-button-next {
    display: block !important;
    position: static !important;
    margin-top: 0 !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px 16px;
  }
  .partners__slider .swiper-button-prev::after,
.partners__slider .swiper-button-next::after {
    display: none;
  }
}
@media (min-width: 1140px) {
  .partners__slider .swiper-button-prev {
    background-image: url("../img/button-prev.svg");
  }
}
@media (min-width: 1140px) {
  .partners__slider .swiper-button-next {
    background-image: url("../img/button-next.svg");
  }
}

.partners__arrows {
  display: none;
}
@media (min-width: 1140px) {
  .partners__arrows {
    width: 130px;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
  }
}

.expert {
  width: calc(100% - 32px);
  margin: 0 auto;
  margin-bottom: 80px;
  padding-top: 33px;
  padding-bottom: 60px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .expert {
    width: calc(100% - 48px);
    margin-bottom: 120px;
    padding: 0;
    padding-right: 41px;
    display: grid;
    grid-template-areas: "image name" "image info" "image quote" "image bottom";
    grid-template-columns: 230px 1fr;
    grid-column-gap: 30px;
  }
}
@media (min-width: 1140px) {
  .expert {
    width: 1110px;
    grid-template-columns: 350px 1fr 186px;
    grid-template-areas: "image name bottom" "image info bottom" "image quote bottom";
  }
}

.expert__name {
  font-size: 24px;
  line-height: 135%;
  font-weight: 400;
  margin: 0;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .expert__name {
    grid-area: name;
    font-size: 18px;
    line-height: 145%;
    margin-top: 40px;
  }
}
@media (min-width: 1140px) {
  .expert__name {
    font-size: 24px;
    line-height: 135%;
    align-self: flex-start;
  }
}

.expert__info {
  display: block;
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .expert__info {
    grid-area: info;
    margin-bottom: 35px;
  }
}
@media (min-width: 1140px) {
  .expert__info {
    align-self: flex-start;
  }
}

.expert__image {
  display: block;
  width: 100%;
  height: 350px;
  margin-bottom: 20px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .expert__image {
    grid-area: image;
    height: 100%;
    max-height: 380px;
    margin-bottom: 0;
  }
}
@media (min-width: 1140px) {
  .expert__image {
    max-height: 300px;
  }
}

.expert__quote {
  position: relative;
  margin: 0;
  padding-top: 28px;
  font-style: italic;
  margin-bottom: 40px;
}
.expert__quote::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 20px;
  height: 15px;
  background-image: url("../img/quote.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .expert__quote {
    grid-area: quote;
    padding-top: 0;
    padding-left: 49px;
    margin-bottom: 50px;
  }
  .expert__quote::before {
    width: 25px;
    height: 22px;
  }
}
@media (min-width: 1140px) {
  .expert__quote {
    width: 385px;
    margin-bottom: 54px;
  }
}

.expert__button-text-desktop {
  display: none;
}
@media (min-width: 1140px) {
  .expert__button-text-desktop {
    display: inline;
  }
}

@media (min-width: 1140px) {
  .expert__button-text-mob {
    display: none;
  }
}

.expert__call {
  display: none;
}
@media (min-width: 768px) {
  .expert__call {
    display: block;
    margin: 0;
  }
  .expert__call span {
    display: block;
    font-size: 14px;
    line-height: 135%;
    color: #7A808C;
    margin-bottom: 5px;
  }
  .expert__call a {
    font-size: 24px;
    line-height: 135%;
    color: #222C40;
  }
}
@media (min-width: 1140px) {
  .expert__call span {
    text-align: right;
  }
}

@media (min-width: 768px) {
  .expert__bottom-wrap {
    grid-area: bottom;
    display: grid;
    grid-template-columns: 185px 1fr;
    grid-column-gap: 59px;
    padding-bottom: 48px;
  }
}
@media (min-width: 1140px) {
  .expert__bottom-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 48px;
    padding-bottom: 61px;
  }
}

.expert__button {
  align-self: center;
}

.expert-2 {
  position: relative;
  padding-top: 33px;
  padding-bottom: 60px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  max-width: 1110px;
}
@media (min-width: 768px) {
  .expert-2 {
    padding: 0;
    padding-right: 30px;
    display: grid;
    grid-template-areas: "image name" "image info" "image quote" "image form" "image bottom";
    grid-template-columns: 288px 1fr;
    grid-column-gap: 30px;
  }
}
@media (min-width: 1140px) {
  .expert-2 {
    padding-right: 50px;
    grid-template-columns: 350px 1fr 186px;
    grid-template-areas: "image name bottom" "image info bottom" "image quote bottom" "image form form";
  }
}

.expert-2__form {
  display: none;
}
@media (min-width: 768px) {
  .expert-2__form {
    grid-area: form;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 48px;
    margin-bottom: 23px;
    align-self: start;
  }
}
@media (min-width: 1140px) {
  .expert-2__form {
    grid-template-columns: 1fr 1fr 208px;
    grid-column-gap: 30px;
    margin-bottom: 39px;
  }
}

@media (min-width: 768px) {
  .expert-2__form-wrap {
    display: flex;
    flex-direction: column-reverse;
    align-self: end;
  }
}

@media (min-width: 768px) {
  .expert-2__form-label {
    font-size: 14px;
    line-height: 135%;
    color: #7A808C;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .expert-2__form-input {
    font: inherit;
    border: 0;
    border-bottom: 1px solid #222C40;
    font-size: 14px;
    line-height: 135%;
    outline: none;
    border-radius: 0;
  }
  .expert-2__form-input--error {
    border-bottom: 1px solid #C3002D;
  }
}

.expert-2__form-input:focus + .expert-2__form-label {
  opacity: 0;
}

.expert-2__name {
  font-size: 24px;
  line-height: 135%;
  font-weight: 400;
  margin: 0;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .expert-2__name {
    grid-area: name;
    font-size: 18px;
    line-height: 145%;
    margin-top: 40px;
  }
}
@media (min-width: 1140px) {
  .expert-2__name {
    font-size: 24px;
    line-height: 135%;
    align-self: flex-start;
    max-width: 440px;
  }
}

.expert-2__info {
  display: block;
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .expert-2__info {
    grid-area: info;
    margin-bottom: 35px;
  }
}
@media (min-width: 1140px) {
  .expert-2__info {
    align-self: flex-start;
    max-width: 440px;
  }
}

.expert-2__image {
  display: block;
  width: 100%;
  height: 350px;
  margin-bottom: 20px;
  object-fit: cover;
  object-position: top;
}
@media (min-width: 768px) {
  .expert-2__image {
    grid-area: image;
    height: 450px;
    margin-bottom: 0;
    align-self: center;
  }
}
@media (min-width: 1140px) {
  .expert-2__image {
    height: 310px;
  }
}

.expert-2__quote {
  position: relative;
  margin: 0;
  padding-top: 28px;
  font-style: italic;
  margin-bottom: 40px;
}
.expert-2__quote::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 20px;
  height: 15px;
  background-image: url("../img/quote.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .expert-2__quote {
    grid-area: quote;
    padding-top: 0;
    padding-left: 49px;
    margin-bottom: 30px;
  }
  .expert-2__quote::before {
    width: 25px;
    height: 22px;
  }
}
@media (min-width: 1140px) {
  .expert-2__quote {
    width: 440px;
    margin-bottom: 20px;
  }
}

.expert-2__call {
  display: none;
}
@media (min-width: 768px) {
  .expert-2__call {
    display: block;
    margin: 0;
  }
  .expert-2__call span {
    display: block;
    font-size: 14px;
    line-height: 135%;
    color: #7A808C;
    margin-bottom: 5px;
  }
  .expert-2__call a {
    font-size: 24px;
    line-height: 135%;
    color: #222C40;
    white-space: nowrap;
  }
}
@media (min-width: 1140px) {
  .expert-2__call span {
    text-align: right;
  }
}

@media (min-width: 768px) {
  .expert-2__bottom-wrap {
    grid-area: bottom;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    padding-bottom: 64px;
  }
}
@media (min-width: 1140px) {
  .expert-2__bottom-wrap {
    padding-top: 48px;
    padding-bottom: 39px;
  }
}

.expert-2__button {
  align-self: center;
}
@media (min-width: 768px) {
  .expert-2__button {
    display: none;
  }
}

.expert-2__success-text {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 135%;
}
@media (min-width: 768px) {
  .expert-2__success-text {
    grid-area: form;
    align-self: start;
    min-height: 39px;
  }
}
@media (min-width: 768px) {
  .expert-2__success-text {
    min-height: 54px;
  }
}

.expert-2__form-submit {
  display: none;
}
@media (min-width: 768px) {
  .expert-2__form-submit {
    display: block;
    position: absolute;
    bottom: 64px;
    right: 30px;
    width: 178px;
  }
}
@media (min-width: 1140px) {
  .expert-2__form-submit {
    position: relative;
    bottom: auto;
    right: auto;
    margin-left: auto;
  }
}

.objects-map__expert {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .objects-map__expert {
    margin-bottom: 120px;
  }
}

.expert-3 {
  width: 100%;
  margin: 0 auto;
  padding-top: 33px;
  padding-bottom: 60px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .expert-3 {
    width: 100%;
    max-width: 730px;
    padding: 0;
    padding-right: 41px;
    display: grid;
    grid-template-areas: "image name" "image info" "image quote" "image bottom";
    grid-template-columns: 230px 1fr;
    grid-column-gap: 30px;
  }
}

.expert-3__name {
  font-size: 24px;
  line-height: 135%;
  font-weight: 400;
  margin: 0;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .expert-3__name {
    grid-area: name;
    font-size: 18px;
    line-height: 145%;
    margin-top: 40px;
  }
}

.expert-3__info {
  display: block;
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .expert-3__info {
    grid-area: info;
    margin-bottom: 35px;
  }
}

.expert-3__image {
  display: block;
  width: 100%;
  height: 350px;
  margin-bottom: 20px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .expert-3__image {
    grid-area: image;
    height: 100%;
    max-height: 380px;
    margin-bottom: 0;
  }
}

.expert-3__quote {
  position: relative;
  margin: 0;
  padding-top: 28px;
  font-style: italic;
  margin-bottom: 40px;
}
.expert-3__quote::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 20px;
  height: 15px;
  background-image: url("../img/quote.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .expert-3__quote {
    grid-area: quote;
    padding-top: 0;
    padding-left: 49px;
    margin-bottom: 50px;
  }
  .expert-3__quote::before {
    width: 25px;
    height: 22px;
  }
}

.expert-3__button-text-desktop {
  display: none;
}

.expert-3__call {
  display: none;
}
@media (min-width: 768px) {
  .expert-3__call {
    display: block;
    margin: 0;
  }
  .expert-3__call span {
    display: block;
    font-size: 14px;
    line-height: 135%;
    color: #7A808C;
    margin-bottom: 5px;
  }
  .expert-3__call a {
    color: #222C40;
  }
}

@media (min-width: 768px) {
  .expert-3__bottom-wrap {
    grid-area: bottom;
    display: grid;
    grid-template-columns: 185px 1fr;
    grid-column-gap: 59px;
    padding-bottom: 48px;
  }
}

.expert-3__button {
  align-self: center;
}
@media (min-width: 768px) {
  .expert-3__button {
    font-size: 14px;
    line-height: 135%;
  }
}

.benefits {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .benefits {
    margin-bottom: 80px;
  }
}
@media (min-width: 1140px) {
  .benefits {
    display: flex;
  }
}

@media (min-width: 768px) {
  .benefits__title {
    width: 90%;
  }
}
@media (min-width: 1140px) {
  .benefits__title {
    width: 447px;
    margin-right: 125px;
    margin-bottom: 0;
  }
}

.benefits__title span {
  color: #7A808C;
}

.benefits__text {
  margin: 0;
  margin-bottom: 60px;
  font-size: 16px;
  line-height: 22px;
}
.benefits__text:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .benefits__text {
    margin-bottom: 20px;
    width: 68%;
    font-size: 18px;
    line-height: 145%;
  }
}
@media (min-width: 1140px) {
  .benefits__text {
    width: 445px;
  }
}

.maintenance {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .maintenance {
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .maintenance {
    display: flex;
  }
}

@media (min-width: 768px) {
  .maintenance__title {
    width: 90%;
  }
}
@media (min-width: 1140px) {
  .maintenance__title {
    width: 460px;
    margin-right: 110px;
    margin-bottom: 0;
  }
}

@media (min-width: 1140px) {
  .maintenance__wrapper {
    width: 540px;
  }
}

.maintenance__text {
  margin: 0;
  margin-bottom: 20px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .maintenance__text {
    font-size: 24px;
    line-height: 135%;
    margin-bottom: 30px;
  }
}

.maintenance__list {
  margin: 0;
  margin-bottom: 50px;
  padding-left: 20px;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .maintenance__list {
    font-size: 18px;
    line-height: 145%;
    margin-bottom: 50px;
  }
}

.maintenance__button {
  width: 215px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .maintenance__button {
    width: 301px;
    margin: 0;
  }
}

.stages-wrapper {
  margin-bottom: -60px;
}
@media (min-width: 768px) {
  .stages-wrapper {
    margin-bottom: -90px;
  }
}
@media (min-width: 1140px) {
  .stages-wrapper {
    margin-bottom: -163px;
  }
}

.stages {
  padding-top: 50px;
  padding-bottom: 137px;
  background-color: #003363;
  color: #ffffff;
}
@media (min-width: 768px) {
  .stages {
    padding-top: 90px;
    padding-bottom: 208px;
  }
}
@media (min-width: 1140px) {
  .stages {
    padding-bottom: 280px;
  }
}

.stages__title-wrapper {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .stages__title-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 39px;
  }
}
@media (min-width: 1140x) {
  .stages__title-wrapper {
    margin-bottom: 28px;
  }
}

.stages__title {
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .stages__title {
    margin-right: 10px;
  }
}

.stages__text {
  margin: 0;
  margin-bottom: 53px;
  font-size: 16px;
  line-height: 22px;
  color: #E9EAEC;
}
@media (min-width: 768px) {
  .stages__text {
    font-size: 18px;
    line-height: 145%;
    margin-bottom: 80px;
    width: 77%;
  }
}
@media (min-width: 1140px) {
  .stages__text {
    width: 555px;
  }
}

.stages__list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  overflow-x: scroll;
  padding-bottom: 70px;
}
.stages__list--active {
  display: flex;
}
.stages__list::-webkit-scrollbar {
  height: 2px !important;
}
.stages__list::-webkit-scrollbar-track {
  box-shadow: none !important;
  border-radius: 0 !important;
  background-color: #7A808C !important;
}
.stages__list::-webkit-scrollbar-thumb {
  background-color: none !important;
  border-radius: 0 !important;
  background-color: #ffffff !important;
}
.stages__list::-webkit-scrollbar-thumb:hover {
  background-color: #ffffff !important;
}
@media (min-width: 1140px) {
  .stages__list {
    overflow-x: hidden;
    padding-bottom: 0;
  }
}

.stages__item {
  width: 250px;
  flex-shrink: 0;
}
@media (min-width: 1140px) {
  .stages__item {
    width: 224px;
  }
}

.stages__item-number {
  position: relative;
  display: block;
  font-size: 32px;
  line-height: 37px;
  margin-bottom: 36px;
  padding-bottom: 46px;
  padding-left: 5px;
}
.stages__item-number::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 4px;
  left: 0;
  background-color: #ffffff;
}
.stages__item-number::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: #ffffff;
}

.stages__item-text {
  font-size: 14px;
  line-height: 135%;
  margin: 0;
  width: 175px;
  padding-left: 5px;
}

.stages__list-wrapper {
  position: relative;
  width: calc(100vw - 32px);
  width: calc(var(--vw, 1vw) * 100 - 32px);
}
@media (min-width: 768px) {
  .stages__list-wrapper {
    width: calc(100vw - 48px);
    width: calc(var(--vw, 1vw) * 100 - 48px);
  }
}
@media (min-width: 1140px) {
  .stages__list-wrapper {
    width: auto;
  }
}

.stages__switch-block {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .stages__switch-block {
    flex-shrink: 0;
    margin-bottom: 0px;
  }
}

.stages__switch-desc {
  font-size: 14px;
  line-height: 100%;
  color: #BDC0C6;
}
.stages__switch-desc--active {
  color: #ffffff;
}

.stages__switch-btn {
  background-color: #ffffff;
  border: none;
  position: relative;
  display: block;
  width: 45px;
  height: 20px;
  border-radius: 19px;
  cursor: pointer;
  margin: 0 20px;
  outline: none;
  transition: box-shadow 0.3s;
}
.stages__switch-btn::after {
  position: absolute;
  content: "";
  background-color: #003363;
  width: 18px;
  height: 18px;
  top: 1px;
  left: 1px;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}
.stages__switch-btn--active::after {
  transform: translateX(25px);
}
.stages__switch-btn:hover, .stages__switch-btn:focus {
  box-shadow: 1px 1px 15px rgba(255, 255, 255, 0.4);
}

.catalog {
  display: grid;
  grid-row-gap: 30px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .catalog {
    margin-bottom: 120px;
  }
}

.catalog__button {
  width: 203px;
  margin: 0 auto;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .catalog__button {
    margin-top: 20px;
  }
}

.no-results {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .no-results {
    padding-bottom: 100px;
  }
}
@media (min-width: 1140px) {
  .no-results {
    padding-top: 120px;
    padding-bottom: 350px;
  }
}

.no-results__title {
  margin: 0 auto;
  max-width: 742px;
  text-align: center;
}

.item-content {
  padding-top: 80px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .item-content {
    padding-top: 100px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .item-content {
    padding-top: 120px;
    margin-bottom: 80px;
  }
}

.item-content__title {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .item-content__title {
    margin-bottom: 20px;
  }
}

@media (min-width: 1140px) {
  .item-content__wrapper {
    display: grid;
    grid-template-areas: "gallery meta" "thumbs .";
    grid-template-columns: 730px 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 20px;
  }
}

.item-content__info {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  color: #7A808C;
}
@media (min-width: 768px) {
  .item-content__info {
    justify-content: flex-start;
    margin-bottom: 50px;
  }
}

@media (min-width: 768px) {
  .item-content__title-mob {
    display: none;
  }
}

.item-content__title-tablet {
  display: none;
}
@media (min-width: 768px) {
  .item-content__title-tablet {
    display: inline;
  }
}
@media (min-width: 1140px) {
  .item-content__title-tablet {
    align-self: start;
  }
}

.item-content__address-city {
  display: none;
}
@media (min-width: 768px) {
  .item-content__address-city {
    display: inline;
  }
}

.item-content__id {
  margin-right: 10px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .item-content__id {
    margin-right: 30px;
  }
}

.item-content__address {
  position: relative;
  padding-left: 18px;
}
.item-content__address::before {
  content: "";
  position: absolute;
  display: block;
  width: 11px;
  height: 14px;
  top: 5px;
  left: 0;
  background-image: url("../img/icon-geo.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.6;
}

.item-content__gallery-slide img {
  display: block;
  object-fit: fill;
  width: 100%;
  height: 300px;
}
@media (min-width: 768px) {
  .item-content__gallery-slide img {
    height: 450px;
  }
}

.item-content__gallery {
  width: calc(100vw - 32px);
  width: calc(var(--vw, 1vw) * 100 - 32px);
  margin-bottom: 30px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .item-content__gallery {
    width: calc(100vw - 48px);
    width: calc(var(--vw, 1vw) * 100 - 48px);
    margin-bottom: 20px;
  }
}
@media (min-width: 1140px) {
  .item-content__gallery {
    width: 730px;
    grid-area: gallery;
    margin-bottom: 0;
  }
}

.item-content__gallery-arrows {
  display: none;
}
@media (min-width: 768px) {
  .item-content__gallery-arrows {
    display: flex;
    width: 80px;
    justify-content: space-between;
    position: absolute;
    bottom: 33px;
    right: 30px;
    z-index: 1;
  }
}

.item-content__meta {
  display: grid;
}
@media (min-width: 768px) {
  .item-content__meta {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 107px;
    grid-template-areas: "price deposit" "table table" "buttons buttons";
  }
}
@media (min-width: 1140px) {
  .item-content__meta {
    grid-area: meta;
    grid-template-columns: 1fr;
    grid-template-areas: "price" "table" "deposit" "buttons";
  }
}

.item-content__price-wrap {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .item-content__price-wrap {
    grid-area: price;
  }
}
@media (min-width: 1140px) {
  .item-content__price-wrap {
    margin-bottom: 30px;
    align-self: start;
  }
}

.item-content__deposit-wrapper {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .item-content__deposit-wrapper {
    grid-area: deposit;
  }
}
@media (min-width: 1140px) {
  .item-content__deposit-wrapper {
    margin-bottom: 30px;
    align-self: start;
  }
}

.item-content__deposit {
  margin: 0;
  margin-bottom: 25px;
}
.item-content__deposit:last-of-type {
  margin-bottom: 0;
}

.item-content__table {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid #BDC0C6;
  border-bottom: 1px solid #BDC0C6;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .item-content__table {
    margin-bottom: 50px;
    grid-area: table;
  }
}
@media (min-width: 768px) {
  .item-content__table {
    margin-bottom: 20px;
  }
}

.item-content__table-cell-head {
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  font-weight: 400;
  text-align: left;
  padding-bottom: 3px;
}

.item-content__price {
  font-size: 22px;
  line-height: 26px;
  margin: 0;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .item-content__price {
    font-size: 32px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 10px;
  }
}

.item-content__price-text {
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  margin: 0;
}

.item-content__button:first-of-type {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .item-content__button:first-of-type {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .item-content__buttons {
    grid-area: buttons;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
  }
}
@media (min-width: 1140px) {
  .item-content__buttons {
    align-self: start;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
  }
}

.item-content__thumbs {
  display: none;
  overflow: hidden;
}
@media (min-width: 768px) {
  .item-content__thumbs {
    display: block;
    width: 526px;
    margin: 0 !important;
    margin-bottom: 120px !important;
  }
}
@media (min-width: 1140px) {
  .item-content__thumbs {
    grid-area: thumbs;
    margin-bottom: 0 !important;
  }
}

@media (min-width: 768px) {
  .item-content__thumbs-slide img {
    display: block;
    object-fit: fill;
    height: 90px;
  }
}

@media (min-width: 768px) {
  .item-content__gallery .swiper-pagination {
    display: none;
  }
}
.item-content__gallery .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background-color: #ffffff !important;
  opacity: 0.5 !important;
}
.item-content__gallery .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.item-content__gallery .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  opacity: 1 !important;
}
@media (min-width: 768px) {
  .item-content__gallery .swiper-button-prev,
.item-content__gallery .swiper-button-next {
    display: block !important;
    position: static !important;
    margin-top: 0 !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6px 11px;
    background-color: #ffffff;
  }
  .item-content__gallery .swiper-button-prev::after,
.item-content__gallery .swiper-button-next::after {
    display: none;
  }
}
@media (min-width: 768px) {
  .item-content__gallery .swiper-button-prev {
    background-image: url("../img/button-prev.svg");
  }
}
@media (min-width: 768px) {
  .item-content__gallery .swiper-button-next {
    background-image: url("../img/button-next.svg");
  }
}

.item__content-owner-text {
  display: none;
  font-size: 14px;
  line-height: 135%;
  text-align: center;
  color: #7A808C;
  outline: none;
}
.item__content-owner-text.show {
  display: block;
}
.item__content-owner-text a {
  color: #5a5f69;
  text-decoration: underline;
}
.item__content-owner-text a:hover, .item__content-owner-text a:focus {
  text-decoration: none;
}

.item__content-owner-tel {
  display: none;
  padding: 5px 0;
  font-size: 18px;
  line-height: 145%;
  text-align: center;
  color: #222C40;
}
.item__content-owner-tel.show {
  display: block;
}

.item-information {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .item-information {
    padding: 0 24px;
    max-width: 1140px;
    margin: 0 auto;
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .item-information {
    padding: 0 16px;
  }
}

.item-information__title {
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  margin: 0;
  margin-bottom: 18px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .item-information__title {
    font-size: 32px;
    margin-bottom: 28px;
    padding: 0;
  }
}

.item-information__btns-wrap {
  position: relative;
  margin-bottom: 40px;
  width: 100vw;
  width: calc(var(--vw, 1vw) * 100);
  padding: 0 16px;
}
.item-information__btns-wrap::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 16px;
  height: 1px;
  width: calc(100% - 32px);
  background-color: #BDC0C6;
  z-index: -1;
}
@media (min-width: 768px) {
  .item-information__btns-wrap {
    padding: 0;
    width: 100%;
    max-width: 730px;
  }
}

.item-information__btns-wrapper {
  display: flex;
  overflow-x: auto;
  overflow-y: visible;
}
.item-information__btns-wrapper::-webkit-scrollbar {
  display: none !important;
}

.item-information__slides {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 39px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .item-information__slides {
    margin-bottom: 80px;
    max-width: 730px;
    padding: 0;
  }
}
@media (min-width: 1140px) {
  .item-information__slides {
    margin-bottom: 56px;
  }
}

.item-information__slide-text {
  margin: 0;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 22px;
}
.item-information__slide-text:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .item-information__slide-text {
    font-size: 18px;
    line-height: 145%;
    padding: 0;
  }
}

.item-information__btn {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  padding-top: 21px;
  padding-bottom: 17px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  margin-right: 30px;
  outline: none;
  color: #7A808C;
  font: inherit;
  font-size: 16px;
  line-height: 22px;
  border-bottom: 1px solid transparent;
}
.item-information__btn:last-of-type {
  margin-right: 0;
}
.item-information__btn:hover, .item-information__btn:focus {
  color: #222c40;
  border-bottom: 1px solid #222c40;
}
.item-information__btn--active {
  color: #222c40;
  border-bottom: 1px solid #222c40;
}
@media (min-width: 768px) {
  .item-information__btn {
    font-size: 24px;
    line-height: 135%;
    margin-right: 50px;
  }
  .item-information__btn:last-of-type {
    margin-right: 0;
  }
}

.item-information__slide {
  display: none;
}
.item-information__slide--active {
  display: block;
}

.item-information__iframe {
  display: block;
  height: 250px;
  border: none;
  width: 100%;
  margin-bottom: 80px;
  filter: grayscale(1);
}
@media (min-width: 768px) {
  .item-information__iframe {
    height: 400px;
    margin-bottom: 120px;
    max-width: 730px;
  }
}
@media (min-width: 1140px) {
  .item-information__iframe {
    margin-bottom: 50px;
  }
}

.item-information__expert-wrap {
  padding: 0 16px;
}
@media (min-width: 768px) {
  .item-information__expert-wrap {
    padding: 0;
  }
}

.item-information__expert-wrap .expert-3 {
  margin: 0;
}

.item-information__slide-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .item-information__slide-table-row {
    margin-bottom: 20px;
  }
}
.item-information__slide-table-row:last-of-type {
  margin-bottom: 0;
}

.item-information__slide-table-head,
.item-information__slide-table-cell {
  font-size: 14px;
  line-height: 145%;
}
@media (min-width: 768px) {
  .item-information__slide-table-head,
.item-information__slide-table-cell {
    font-size: 18px;
  }
}

.item-information__slide-table-head {
  color: #7A808C;
  font-weight: 400;
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: calc(100% - 54px);
  top: 54px;
  left: 0;
  background-color: #ffffff;
  z-index: 3002;
  padding-top: 9vh;
  padding-bottom: 9vh;
  padding-right: 16px;
  padding-left: 16px;
  overflow-y: auto;
}
.modal--resume {
  justify-content: center;
  align-items: center;
}
.modal--resume.modal--show {
  display: flex;
  animation: show 0.7s ease;
}
.modal--show {
  display: block;
  animation: show 0.7s ease;
}
@media (min-width: 576px) {
  .modal {
    width: 528px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    padding-right: 60px;
    padding-left: 60px;
    padding-top: 66px;
    padding-bottom: 69px;
    min-height: 350px;
    max-height: 100%;
    z-index: 3002;
  }
}
@media (min-width: 1140px) {
  .modal {
    width: 540px;
    padding-top: 76px;
    padding-right: 64px;
    padding-left: 64px;
  }
}

.modal__title {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  font-weight: 400;
  margin: 0;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .modal__title {
    font-size: 24px;
    line-height: 135%;
  }
}

.modal__text {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #7A808C;
  margin: 0;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .modal__text {
    font-size: 18px;
    line-height: 145%;
  }
}

.modal__close-btn {
  position: absolute;
  top: 30px;
  right: 16px;
  display: block;
  border: none;
  cursor: pointer;
  padding: 0;
  text-shadow: none;
  width: 18px;
  height: 18px;
  background-color: transparent;
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.modal__close-btn:hover, .modal__close-btn:focus {
  opacity: 1;
}
@media (min-width: 576px) {
  .modal__close-btn {
    top: 20px;
    right: 23px;
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 1140px) {
  .modal__close-btn {
    top: 20px;
    right: 30px;
  }
}

.modal .form__confirm {
  padding: 0 7px;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal--login .form__links {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .modal--login .form__links {
    margin-bottom: 30px;
  }
}

.modal--login .form__continue {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .modal--login .form__continue {
    margin-bottom: 30px;
  }
}

.modal__flex-wrapper {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .modal__flex-wrapper {
    padding: 60px 0;
  }
}

.user {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .user {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .user {
    padding-bottom: 198px;
  }
}

.user__proposal {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .user__proposal {
    margin-bottom: 120px;
  }
}

.user__proposal .proposal__title {
  font-weight: 400;
}
.user__proposal .proposal__title span {
  font-weight: 400;
  color: #519640;
}

.user__objects {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .user__objects {
    padding: 0 24px;
    max-width: 1140px;
    margin: 0 auto;
    margin-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .user__objects {
    padding: 0 16px;
  }
}

.user__title-wrap {
  display: grid;
  grid-auto-rows: min-content;
  grid-row-gap: 15px;
  margin-bottom: 18px;
  justify-items: center;
  padding: 0 16px;
}
@media (min-width: 576px) {
  .user__title-wrap {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .user__title-wrap {
    padding: 0;
    margin-bottom: 28px;
  }
}

.user__title {
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  margin: 0;
}
@media (min-width: 768px) {
  .user__title {
    font-size: 32px;
  }
}

.user__button {
  max-width: 300px;
}

.user__btns-wrap {
  position: relative;
  margin-bottom: 40px;
  width: 100vw;
  width: calc(var(--vw, 1vw) * 100);
  padding: 0 16px;
}
.user__btns-wrap::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 16px;
  height: 1px;
  width: calc(100% - 32px);
  background-color: #BDC0C6;
  z-index: -1;
}
@media (min-width: 768px) {
  .user__btns-wrap {
    padding: 0;
    width: 100%;
    max-width: 730px;
  }
}

.user__btns-wrapper {
  display: flex;
  overflow-x: auto;
  overflow-y: visible;
}
.user__btns-wrapper::-webkit-scrollbar {
  display: none !important;
}

.user__slides {
  margin: 0;
  padding: 0 16px;
  list-style: none;
}
@media (min-width: 768px) {
  .user__slides {
    padding: 0;
  }
}

.user__slide-wrapper {
  display: grid;
  grid-auto-rows: min-content;
  grid-row-gap: 16px;
}
@media (min-width: 768px) {
  .user__slide-wrapper {
    grid-row-gap: 30px;
  }
}

.user__slide-text {
  margin: 0;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 22px;
}
.user__slide-text:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .user__slide-text {
    font-size: 18px;
    line-height: 145%;
    padding: 0;
  }
}

.user__btn {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  padding-top: 21px;
  padding-bottom: 17px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  margin-right: 30px;
  outline: none;
  color: #7A808C;
  font: inherit;
  font-size: 16px;
  line-height: 22px;
  border-bottom: 1px solid transparent;
}
.user__btn:last-of-type {
  margin-right: 0;
}
.user__btn:hover, .user__btn:focus {
  color: #222c40;
  border-bottom: 1px solid #222c40;
}
.user__btn--active {
  color: #222c40;
  border-bottom: 1px solid #222c40;
}
@media (min-width: 768px) {
  .user__btn {
    font-size: 24px;
    line-height: 135%;
    margin-right: 50px;
  }
  .user__btn:last-of-type {
    margin-right: 0;
  }
}

.user__slide {
  display: none;
}
.user__slide--active {
  display: block;
}

.tariffs__stats .stats__title {
  max-width: 548px;
}

.object-form {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .object-form {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .object-form {
    padding-bottom: 150px;
  }
}

.object-form__screen-wrapper--hide {
  display: none;
}

.object-form__form {
  max-width: 730px;
}
@media (min-width: 768px) {
  .object-form__form {
    padding-top: 40px;
  }
}

.object-form__wrapper {
  margin: 0;
  padding: 0;
  border: none;
  margin-bottom: 40px;
}
.object-form__wrapper--border-bottom {
  margin-bottom: 0;
  padding-bottom: 60px;
  margin-bottom: 80px;
  border-bottom: 1px solid #BDC0C6;
}
.object-form__wrapper--border-top {
  padding-top: 20px;
  border-top: 1px solid #BDC0C6;
}
.object-form__wrapper--no-margin {
  margin-bottom: 0;
}
.object-form__wrapper--street {
  grid-column: 1/-1;
  position: relative;
}
@media (min-width: 768px) {
  .object-form__wrapper {
    margin-bottom: 80px;
  }
  .object-form__wrapper--street {
    grid-column: 1/2;
  }
}

.object-form__fieldset {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  margin-bottom: 30px;
}

.object-form__wrap--city {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .object-form__wrap {
    display: grid;
    grid-template-columns: 245px 1fr;
    grid-column-gap: 35px;
    align-items: center;
  }
}

.object-form__subtitle {
  display: block;
  font-size: 28px;
  line-height: 32px;
  margin: 0;
  margin-bottom: 30px;
  font-weight: 400;
}
.object-form__subtitle--no-margin {
  margin: 0;
}
@media (min-width: 768px) {
  .object-form__subtitle {
    font-size: 32px;
    line-height: 37px;
    margin-bottom: 40px;
  }
  .object-form__subtitle--no-margin {
    margin: 0;
  }
}

.object-form__legend {
  display: block;
  font-size: 24px;
  line-height: 135%;
  color: #7A808C;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .object-form__legend {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .object-form__options-fieldset .object-form__legend {
    margin-bottom: 20px;
  }
}

.object-form__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  max-width: 400px;
}
@media (min-width: 768px) {
  .object-form__items {
    max-width: auto;
  }
}

.object-form__item label {
  display: block;
  padding: 14px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid #003363;
  cursor: pointer;
  transition: background-color 0.5s;
}

.object-form__item input:checked ~ label {
  background-color: #003363;
  color: #ffffff;
}

.object-form__item input:hover ~ label,
.object-form__item input:focus ~ label {
  background-color: #003363;
  color: #ffffff;
}

.object-form__radio-item {
  margin-bottom: 10px;
}
.object-form__radio-item:last-of-type {
  margin-bottom: 0;
}

.object-form__radio-item label {
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 30px;
}
.object-form__radio-item label::before {
  content: "";
  position: absolute;
  display: block;
  width: 17px;
  height: 17px;
  top: 3px;
  left: 0;
  border: 1px solid #BDC0C6;
  border-radius: 50%;
  transition: border 0.5s;
  cursor: pointer;
}

.object-form__radio-item input:checked ~ label::before {
  border-color: #003363;
}
.object-form__radio-item input:checked ~ label::after {
  content: "";
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  top: 7px;
  left: 4px;
  background-color: #003363;
  border-radius: 50%;
}

.object-form__radio-item input:hover ~ label::before,
.object-form__radio-item input:focus ~ label::before {
  border-color: #003363;
}

.object-form__example {
  display: block;
  font-size: 14px;
  line-height: 135%;
  color: #7A808C;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .object-form__example {
    padding-left: 28px;
  }
}

.object-form__text-input {
  font: inherit;
  display: block;
  width: 100%;
  background-color: #F3F3F3;
  border: 1px solid #BDC0C6;
  border-radius: 30px;
  height: 55px;
  padding: 10px;
  padding-left: 28px;
  outline: none;
  -webkit-appearance: none;
  transition: border 0.5s;
  -moz-appearance: textfield;
}
.object-form__text-input::-webkit-outer-spin-button, .object-form__text-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.object-form__text-input--error {
  border: 1px solid #C3002D;
}
.object-form__text-input--address {
  margin-bottom: 30px;
}
.object-form__text-input--text-center {
  text-align: center;
  padding-left: 10px;
}
.object-form__text-input:hover, .object-form__text-input:focus {
  border-color: #a0a2a7;
}

@media (min-width: 768px) {
  .object-form__phone {
    display: grid;
    grid-template-columns: 245px 1fr;
    grid-column-gap: 35px;
    align-items: baseline;
  }
}

.object-form__buttons {
  display: grid;
  grid-auto-rows: min-content;
  grid-row-gap: 15px;
}
@media (min-width: 576px) {
  .object-form__buttons {
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .object-form__buttons {
    grid-column-gap: 50px;
    grid-template-columns: 245px 1fr;
  }
}

.object-form__input-wrapper {
  display: grid;
  grid-auto-rows: min-content;
  grid-row-gap: 15px;
  max-width: 445px;
  margin-bottom: 30px;
}
.object-form__input-wrapper:last-of-type {
  margin-bottom: 0;
}
.object-form__input-wrapper--long {
  max-width: 540px;
}
.object-form__input-wrapper--margin-bottom {
  margin-bottom: 30px !important;
}
@media (min-width: 576px) {
  .object-form__input-wrapper {
    grid-template-columns: 230px 1fr;
    grid-column-gap: 55px;
  }
  .object-form__input-wrapper--margin-bottom {
    margin-bottom: 40px !important;
  }
}

.object-form__text-label {
  display: block;
  font-size: 24px;
  line-height: 135%;
  color: #7a808c;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

.object-form__textarea {
  font: inherit;
  display: block;
  width: 100%;
  background-color: #F3F3F3;
  border: 1px solid #BDC0C6;
  border-radius: 30px;
  height: 110px;
  padding: 10px;
  padding-left: 28px;
  outline: none;
  -webkit-appearance: none;
  resize: none;
  transition: border 0.5s;
}
.object-form__textarea--error {
  border: 1px solid #C3002D;
}
.object-form__textarea:hover, .object-form__textarea:focus {
  border-color: #a0a2a7;
}
@media (min-width: 768px) {
  .object-form__textarea {
    height: 200px;
  }
}

.object-form__button-back {
  background-color: transparent;
  border: none;
  display: block;
  cursor: pointer;
  font: inherit;
  text-shadow: 0;
  font-size: 18px;
  line-height: 145%;
  color: #7A808C;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .object-form__checkbox-wrap {
    margin-bottom: 5px;
  }
}

.object-form__checkbox-wrap label {
  font-size: 14px;
  line-height: 135%;
  position: relative;
  margin: 0;
  padding-left: 25px;
  padding-top: 2px;
}
.object-form__checkbox-wrap label::before {
  content: "";
  position: absolute;
  display: block;
  width: 17px;
  height: 17px;
  top: 0px;
  left: 0;
  border: 2px solid #BDC0C6;
  border-radius: 3px;
  cursor: pointer;
}

.object-form__checkbox-wrap input:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 10px;
  top: 3px;
  left: 3px;
  background-image: url("../img/checkbox.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 10px;
}

.object-form__options-fieldset {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .object-form__options-fieldset {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .object-form__columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
}

@media (min-width: 768px) {
  .object-form__column .object-form__options-fieldset:first-of-type {
    margin-bottom: 40px;
  }
}

.object-form__file-ipload {
  position: relative;
  min-height: 110px;
}
@media (min-width: 768px) {
  .object-form__file-ipload {
    min-height: 200px;
  }
}

.object-form__file-input {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.object-form__file-label {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 50px);
  grid-auto-rows: min-content;
  grid-column-gap: 20px;
  grid-row-gap: 15px;
  padding: 20px;
  width: 100%;
  height: 100%;
  background-color: #F3F3F3;
  border: 1px solid #BDC0C6;
  border-radius: 30px;
  min-height: 110px;
  font-size: 14px;
  line-height: 135%;
  text-align: center;
  color: #7A808C;
  transition: border 0.5s;
}
.object-form__file-label:hover, .object-form__file-label:focus {
  border-color: #a0a2a7;
}
@media (min-width: 375px) {
  .object-form__file-label {
    grid-template-columns: repeat(4, 50px);
  }
}
@media (min-width: 400px) {
  .object-form__file-label {
    grid-template-columns: repeat(5, 50px);
  }
}
@media (min-width: 450px) {
  .object-form__file-label {
    grid-template-columns: repeat(6, 50px);
  }
}
@media (min-width: 550px) {
  .object-form__file-label {
    grid-template-columns: repeat(7, 50px);
  }
}
@media (min-width: 600px) {
  .object-form__file-label {
    grid-template-columns: repeat(8, 50px);
  }
}
@media (min-width: 700px) {
  .object-form__file-label {
    grid-template-columns: repeat(9, 50px);
  }
}
@media (min-width: 768px) {
  .object-form__file-label {
    min-height: 200px;
    grid-template-columns: repeat(10, 50px);
  }
}

.object-form__file-label span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.object-form__file-label img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.object-form__error {
  display: block;
  font-size: 14px;
  line-height: 135%;
  color: #C3002D;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .object-form__error {
    padding-left: 28px;
  }
}

.object-form__file-wrap {
  position: relative;
  z-index: 1;
}

.object-form__file-btn {
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  right: -5px;
  top: -5px;
  background-color: #003363;
  border: none;
  border-radius: 50%;
  z-index: 1;
  background-image: url("../img/close-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px;
  cursor: pointer;
  transition: opacity 0.5s;
  outline: none;
}
.object-form__file-btn:hover, .object-form__file-btn:focus {
  opacity: 0.8;
}

.object-form__grid-wrapper {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
}
@media (min-width: 768px) {
  .object-form__grid-wrapper {
    gap: 15px;
    grid-template-columns: 1fr 150px 150px;
  }
}

.object-form__select {
  display: block;
  font: inherit;
  width: 100%;
  padding: 10px 40px 10px 28px;
  appearance: none;
  background-color: #f3f3f3;
  border: 1px solid #bdc0c6;
  border-radius: 30px;
  height: 55px;
  outline: none;
  background-image: url("../img/icon-dropdown.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}
.object-form__select:hover, .object-form__select:focus {
  border-color: #a0a2a7;
}

#street_results {
  position: absolute;
  width: calc(100% - 30px);
  left: 15px;
  background: #F3F3F3;
  margin: 0;
  padding: 0;
  z-index: 2;
  border: 1px solid #BDC0C6;
}
#street_results li {
  list-style: none;
  padding-left: 10px;
}

.objects-map {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .objects-map {
    margin-bottom: 120px;
  }
}

.objects-map__switch-block {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .objects-map__switch-block {
    flex-shrink: 0;
  }
}

.objects-map__switch-desc {
  font-size: 14px;
  line-height: 100%;
  color: #7A808C;
}
.objects-map__switch-desc--active {
  color: #222C40;
}

.objects-map__switch-btn {
  background-color: #003363;
  border: none;
  position: relative;
  display: block;
  width: 45px;
  height: 20px;
  border-radius: 19px;
  cursor: pointer;
  margin: 0 20px;
  outline: none;
  transition: box-shadow 0.3s;
}
.objects-map__switch-btn::after {
  position: absolute;
  content: "";
  background-color: #ffffff;
  width: 18px;
  height: 18px;
  top: 1px;
  left: 1px;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}
.objects-map__switch-btn--active::after {
  transform: translateX(25px);
}
.objects-map__switch-btn:hover, .objects-map__switch-btn:focus {
  box-shadow: 1px 1px 15px rgba(255, 255, 255, 0.4);
}

.objects-map__wrap {
  display: grid;
  grid-row-gap: 15px;
  grid-auto-rows: min-content;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .objects-map__wrap {
    display: flex;
  }
}

.objects-map__found {
  margin: 0;
  font-size: 18px;
  line-height: 145%;
}
@media (min-width: 576px) {
  .objects-map__found {
    margin-right: 50px;
  }
}

.objects-map__leaflet {
  height: 600px;
  width: 100%;
}
.objects-map__leaflet .marker-cluster,
.objects-map__leaflet .marker-cluster div {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.leaflet-marker-icon {
  opacity: 0.8 !important;
}
.leaflet-marker-icon:hover, .leaflet-marker-icon:focus, .leaflet-marker-icon:active {
  opacity: 1 !important;
}

.objects-map__leaflet-wrapper {
  display: grid;
  grid-template-columns: 16px 1fr 16px;
}
@media (min-width: 768px) {
  .objects-map__leaflet-wrapper {
    grid-template-columns: 24px 1fr 24px;
  }
}
@media (min-width: 1140px) {
  .objects-map__leaflet-wrapper {
    grid-template-columns: 1fr 1110px 1fr;
  }
}

.objects-map__leaflet {
  grid-column: 1/-1;
  grid-row: 1/2;
  filter: grayscale(100%);
}

.objects-map__leaflet-popup {
  display: none;
  max-width: 320px;
  z-index: 2000;
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: start;
}
.objects-map__leaflet-popup.show {
  display: block;
}
@media (min-width: 1140px) {
  .objects-map__leaflet-popup {
    max-width: 350px;
  }
}

.policy {
  padding-top: 110px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .policy {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1140px) {
  .policy {
    padding-top: 120px;
  }
}
.policy h1 {
  font-size: 28px;
  line-height: 32px;
  color: #222C40;
  font-weight: 400;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .policy h1 {
    margin-bottom: 50px;
    font-size: 46px;
    line-height: 53px;
  }
}
.policy ul {
  margin: 0;
  list-style: none;
  padding: 0;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .policy ul {
    font-size: 18px;
    line-height: 26px;
  }
}
.policy li {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .policy li {
    margin-bottom: 20px;
  }
}
.policy ul ul > li:first-of-type {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .policy ul ul > li:first-of-type {
    margin-top: 20px;
  }
}

.payment-result-container {
  margin-top: 40px;
  margin-bottom: 40px;
}

/*# sourceMappingURL=main.css.map */
