@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.app-layout {
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
}
.app-layout a {
  text-decoration: none;
}

.app-container {
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 1376px) {
  .app-container {
    padding: 0 16px;
    max-width: 100%;
  }
}

.app-header {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.app-header::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: -34px;
  width: 100vw;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2862745098), transparent);
}
.app-header__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.app-header__links--item {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}
.app-header__links--item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  transition: width 0.3s ease-in-out;
}
.app-header__links--item:hover::after {
  width: 100%;
}

.app-main {
  flex: 1;
  max-width: 100vw;
  overflow-x: hidden;
}

.app-footer {
  background: #11131F;
  display: flex;
  padding: 18px;
}
.app-footer__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.app-footer__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.app-footer__links--item {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
}
.app-footer__links--item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  transition: width 0.3s ease-in-out;
}
.app-footer__links--item:hover::after {
  width: 100%;
}

@media (max-width: 1376px) {
  .app-container {
    padding: 0 16px;
    max-width: 100%;
  }
  .app-header {
    margin-top: 14px;
  }
}
@media (max-width: 768px) {
  .app-header {
    margin-top: 20px;
    gap: 30px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    box-sizing: border-box;
  }
  .app-header:before {
    left: 0;
    width: 100%;
  }
  .app-header__menu {
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    color: #FFFFFF;
  }
  .app-header__logo {
    width: 120px;
  }
  .app-header__links {
    display: none;
  }
  .app-footer {
    padding: 16px;
  }
  .app-footer__inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .app-footer__links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .app-footer__links--item {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .app-header {
    margin-top: 8px;
    gap: 20px;
  }
  .app-header::before {
    top: -16px;
    height: 100px;
  }
  .app-header__links {
    gap: 16px;
  }
  .app-header__links--item {
    font-size: 13px;
    padding: 6px 8px;
  }
  .app-footer {
    padding: 12px;
    padding-bottom: 32px;
  }
  .app-footer__inner {
    gap: 16px;
  }
  .app-footer__links {
    gap: 16px;
  }
  .app-footer__links--item {
    font-size: 13px;
  }
}
.app-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E59819;
  border: 1px solid #E59819;
  padding: 13px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.app-button:hover {
  background: transparent;
  border-color: #E59819;
}
.app-button:hover .app-button--text {
  color: #E59819;
}
.app-button--text {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  transition: color 0.3s ease-in-out;
}

.app-input {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-input .label-text {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  color: #181A20;
}
.app-input input, .app-input textarea {
  padding: 16px 20px;
  border: 1px solid #E9E9E9;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  outline: none;
  color: #181A20;
}
.app-input input::placeholder, .app-input textarea::placeholder {
  color: #6C757D;
}
.app-input input[type=number]::-webkit-outer-spin-button, .app-input input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.app-input input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.app-input textarea {
  height: 148px;
  resize: none;
}
.app-input.has-error input, .app-input.has-error textarea {
  border-color: #dc3545;
}
.app-input.has-error input:focus, .app-input.has-error textarea:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.app-input .error-message {
  display: none;
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
}
.app-input input.error, .app-input textarea.error {
  border-color: #dc3545;
}
.app-input input.error:focus, .app-input textarea.error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

@media (max-width: 768px) {
  .app-desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .app-mobile {
    display: none;
  }
}
.app-fixed {
  overflow: hidden;
}

.hero {
  height: 100dvh;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  width: 100%;
}
.hero__content--title {
  max-width: 700px;
  font-style: normal;
  font-weight: 600;
  font-size: 52px;
  line-height: 52px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}
.hero__content--subtitle {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  margin-top: 12px;
}
.hero__content--form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
}
.hero__content--form .form-head {
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: #FFFFFF;
  border-bottom: 1px solid #E9E9E9;
  width: fit-content;
}
.hero__content--form .form-head button {
  cursor: pointer;
  padding: 14px;
  background: transparent;
  border: none;
  outline: none;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  display: flex;
  align-items: center;
  color: #717171;
  border-bottom: 2px solid transparent;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out;
}
.hero__content--form .form-head button:hover {
  color: #181A20;
}
.hero__content--form .form-head button.active {
  color: #181A20;
  border-bottom: 2px solid #181A20;
}
.hero__content--form .form-body {
  padding: 20px;
  background: #FFFFFF;
  display: flex;
  height: 52px;
  flex-shrink: 0;
  max-width: 1000px;
  width: 100%;
}
.hero__content--form .form-body .app-button {
  margin-left: 10px;
  flex-shrink: 0;
}
.hero__content--form .form-body__select {
  display: flex;
  box-sizing: border-box;
  gap: 4px;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #F7F7F7;
  position: relative;
  cursor: pointer;
  min-width: 150px;
  flex-shrink: 0;
}
.hero__content--form .form-body__select:hover .form-body__select--list, .hero__content--form .form-body__select.active .form-body__select--list {
  opacity: 1;
  pointer-events: all;
}
@media (hover: none) and (pointer: coarse) {
  .hero__content--form .form-body__select:hover .form-body__select--list {
    opacity: 0;
    pointer-events: none;
  }
  .hero__content--form .form-body__select.active .form-body__select--list {
    opacity: 1;
    pointer-events: all;
  }
}
.hero__content--form .form-body__select.active svg {
  transform: rotate(-90deg);
}
.hero__content--form .form-body__select svg {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}
.hero__content--form .form-body__select.ml-7 {
  margin-left: 7px;
}
.hero__content--form .form-body__select--text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  color: #181A20;
  background-color: transparent;
}
.hero__content--form .form-body__select--list {
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: 10;
}
.hero__content--form .form-body__select--list button {
  background: transparent;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  border: none;
  outline: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  align-items: center;
  color: #181A20;
  padding-bottom: 12px;
  padding-top: 12px;
  transition: background-color 0.3s ease-in-out;
}
.hero__content--form .form-body__select--list button:hover {
  background: #E59819;
}
.hero__content--form .form-body__input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #F7F7F7;
}
.hero__content--form .form-body__input.big {
  width: 100%;
}
.hero__content--form .form-body__input.small {
  width: 110px;
  display: flex;
  justify-content: center;
}
.hero__content--form .form-body__input.small input {
  text-align: center;
}
.hero__content--form .form-body__input.ml-7 {
  margin-left: 7px;
}
.hero__content--form .form-body__input input {
  width: 100%;
  outline: none;
  border: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  color: #181A20;
  background-color: transparent;
}
.hero__content--form .form-body__input input::placeholder {
  color: #6C757D;
}

@media (max-width: 1024px) {
  .hero__content--title {
    max-width: 600px;
    font-size: 46px;
    line-height: 48px;
    padding: 0 20px;
  }
  .hero__content--form .form-body {
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
  }
  .hero__content--form .form-body__select {
    min-width: 120px;
    padding: 12px;
  }
  .hero__content--form .form-body__select--text {
    font-size: 13px;
  }
  .hero__content--form .form-body__select--list button {
    padding: 10px 12px;
    font-size: 13px;
  }
  .hero__content--form .form-body__input.big {
    width: 400px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 100vh;
  }
  .hero__content {
    padding: 0 20px;
  }
  .hero__content--title {
    max-width: 500px;
    font-size: 38px;
    line-height: 42px;
  }
  .hero__content--subtitle {
    font-size: 14px;
    line-height: 24px;
    max-width: 400px;
  }
  .hero__content--form {
    margin-top: 24px;
    width: 100%;
    max-width: 500px;
  }
  .hero__content--form .form-head {
    padding: 0 16px;
    width: 100%;
    justify-content: center;
  }
  .hero__content--form .form-head button {
    padding: 12px 16px;
    font-size: 13px;
  }
  .hero__content--form .form-body {
    padding: 16px;
    flex-direction: column;
    height: auto;
    gap: 12px;
  }
  .hero__content--form .form-body .app-button {
    margin-left: 0;
    width: 100%;
  }
  .hero__content--form .form-body__select {
    width: 100%;
    min-width: unset;
    padding: 12px;
  }
  .hero__content--form .form-body__select.ml-7 {
    margin-left: 0;
  }
  .hero__content--form .form-body__select--text {
    font-size: 13px;
  }
  .hero__content--form .form-body__select--list button {
    padding: 10px 12px;
    font-size: 13px;
  }
  .hero__content--form .form-body__input {
    width: 100%;
    padding: 12px;
  }
  .hero__content--form .form-body__input.big {
    width: 100%;
  }
  .hero__content--form .form-body__input.small {
    width: 100%;
    justify-content: flex-start;
  }
  .hero__content--form .form-body__input.small input {
    text-align: left;
  }
  .hero__content--form .form-body__input.ml-7 {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .hero__content--form .app-button, .hero__content--form .form-body__input {
    box-sizing: border-box;
  }
  .hero__content--form .form-head {
    box-sizing: border-box;
  }
  .hero__content--title {
    max-width: 350px;
    font-size: 32px;
    line-height: 36px;
  }
  .hero__content--subtitle {
    font-size: 13px;
    line-height: 22px;
    max-width: 320px;
  }
  .hero__content--form {
    margin-top: 20px;
    max-width: 100%;
  }
  .hero__content--form .form-head {
    padding: 0 12px;
  }
  .hero__content--form .form-head button {
    padding: 10px 12px;
    font-size: 12px;
  }
  .hero__content--form .form-body {
    padding: 12px;
  }
  .hero__content--form .form-body__select {
    padding: 10px;
  }
  .hero__content--form .form-body__select--text {
    font-size: 12px;
  }
  .hero__content--form .form-body__select--list button {
    padding: 8px 10px;
    font-size: 12px;
  }
  .hero__content--form .form-body__input {
    padding: 10px;
    gap: 8px;
  }
  .hero__content--form .form-body__input input {
    font-size: 13px;
  }
}
.apartments {
  margin-top: 108px;
  margin-bottom: 88px;
  display: flex;
  flex-direction: column;
}
.apartments--title {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: #070707;
}
.apartments--subtitle {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #B8B8C1;
  margin-top: 10px;
}
.apartments__cities {
  display: flex;
  flex-direction: column;
  margin-top: 38px;
}
.apartments__cities--row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.7fr;
  gap: 21px;
}
.apartments__cities--row.full {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.apartments__cities--row.full .apartments__cities--item {
  width: 100%;
}
.apartments__cities--row:not(.apartments__cities--row:first-child) {
  margin-top: 32px;
}
.apartments__cities--row:nth-child(odd) {
  grid-template-columns: 1.7fr 1fr 1fr;
}
.apartments__cities--item {
  height: 316px;
  display: flex;
  position: relative;
}
.apartments__cities--item::before {
  content: "";
  position: absolute;
  height: 270px;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, #1A1C21 0%, rgba(0, 0, 0, 0) 100%);
}
.apartments__cities--item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apartments__cities--title {
  position: absolute;
  top: 30px;
  left: 30px;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 18px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .apartments {
    margin-top: 80px;
    margin-bottom: 60px;
  }
  .apartments--title {
    font-size: 28px;
  }
  .apartments__cities {
    margin-top: 32px;
  }
  .apartments__cities--row {
    gap: 16px;
  }
  .apartments__cities--row:not(.apartments__cities--row:first-child) {
    margin-top: 24px;
  }
  .apartments__cities--item {
    height: 280px;
  }
  .apartments__cities--title {
    top: 24px;
    left: 24px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .apartments {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .apartments--title {
    font-size: 24px;
    text-align: center;
  }
  .apartments--subtitle {
    font-size: 14px;
    text-align: center;
  }
  .apartments__cities {
    margin-top: 24px;
  }
  .apartments__cities--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .apartments__cities--row:not(.apartments__cities--row:first-child) {
    margin-top: 16px;
  }
  .apartments__cities--row:nth-child(odd) {
    grid-template-columns: 1fr 1fr;
  }
  .apartments__cities--item {
    height: 240px;
  }
  .apartments__cities--title {
    top: 20px;
    left: 20px;
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 480px) {
  .apartments {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .apartments--title {
    font-size: 22px;
  }
  .apartments--subtitle {
    font-size: 13px;
  }
  .apartments__cities {
    margin-top: 20px;
  }
  .apartments__cities--row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .apartments__cities--row:not(.apartments__cities--row:first-child) {
    margin-top: 12px;
  }
  .apartments__cities--row:nth-child(odd) {
    flex-direction: column;
  }
  .apartments__cities--item {
    height: 200px;
    width: 100%;
  }
  .apartments__cities--item::before {
    height: 100%;
  }
  .apartments__cities--title {
    top: 16px;
    left: 16px;
    font-size: 14px;
    line-height: 14px;
  }
}
.map {
  display: flex;
  padding-top: 98px;
  padding-bottom: 99px;
  background: #F7F7F7;
}
.map--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
}
.map__content {
  max-width: 560px;
}
.map__content .title {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: #070707;
}
.map__content .description {
  margin-top: 25px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #B8B8C1;
}
.map__content .app-button {
  margin-top: 25px;
  width: 220px;
}

@media (max-width: 1024px) {
  .map {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .map--inner {
    gap: 40px;
  }
  .map__content {
    max-width: 400px;
  }
  .map__content .title {
    font-size: 28px;
  }
  .map__content .description {
    font-size: 15px;
    margin-top: 20px;
  }
  .map__content .app-button {
    margin-top: 20px;
    width: 200px;
  }
}
@media (max-width: 768px) {
  .map {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .map--inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .map__content {
    max-width: 100%;
  }
  .map__content .title {
    font-size: 24px;
  }
  .map__content .description {
    font-size: 14px;
    margin-top: 16px;
  }
  .map__content .app-button {
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .map {
    padding-top: 40px;
    padding-bottom: 40px;
    box-sizing: border-box;
  }
  .map * {
    box-sizing: border-box;
  }
  .map img {
    max-width: 100%;
  }
  .map--inner {
    gap: 24px;
  }
  .map__content .title {
    font-size: 22px;
  }
  .map__content .description {
    font-size: 13px;
    margin-top: 14px;
  }
  .map__content .app-button {
    margin-top: 16px;
    width: 100%;
    max-width: 100%;
  }
}
.choose-us {
  background: #f7f7f7;
  padding: 111px 0 110px;
}
.choose-us--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 118px;
}
.choose-us__content {
  max-width: 430px;
  display: flex;
  flex-direction: column;
}
.choose-us__content--title {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: #070707;
}
.choose-us__content--description {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #b8b8c1;
  margin-top: 10px;
}
.choose-us__content--list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.choose-us__content--list .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
.choose-us__content--list .item svg {
  flex-shrink: 0;
}
.choose-us__content--list .item__info {
  display: flex;
  flex-direction: column;
  max-width: 350px;
}
.choose-us__content--list .item__info--title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #040613;
}
.choose-us__content--list .item__info--description {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #b8b8c1;
}
.choose-us__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
  max-width: 736px;
}
.choose-us__gallery img {
  width: 100%;
  height: 276px;
  object-fit: cover;
}
.choose-us__gallery img:nth-child(3) {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .choose-us {
    padding: 80px 0;
  }
  .choose-us--inner {
    gap: 80px;
  }
  .choose-us__content {
    max-width: 400px;
  }
  .choose-us__content--title {
    font-size: 28px;
  }
  .choose-us__content--description {
    font-size: 15px;
  }
  .choose-us__content--list {
    gap: 20px;
    margin-top: 28px;
  }
  .choose-us__content--list .item {
    gap: 16px;
  }
  .choose-us__content--list .item__info {
    max-width: 240px;
  }
  .choose-us__content--list .item__info--title {
    font-size: 18px;
  }
  .choose-us__content--list .item__info--description {
    font-size: 13px;
  }
  .choose-us__gallery {
    gap: 14px 16px;
  }
}
@media (max-width: 768px) {
  .choose-us {
    padding: 60px 0;
  }
  .choose-us--inner {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }
  .choose-us__content {
    max-width: 100%;
    align-items: center;
  }
  .choose-us__content--title {
    font-size: 24px;
  }
  .choose-us__content--description {
    font-size: 14px;
  }
  .choose-us__content--list {
    gap: 24px;
    margin-top: 32px;
    align-items: center;
  }
  .choose-us__content--list .item {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .choose-us__content--list .item__info {
    max-width: 100%;
    align-items: center;
  }
  .choose-us__content--list .item__info--title {
    font-size: 18px;
  }
  .choose-us__content--list .item__info--description {
    font-size: 14px;
  }
  .choose-us__gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin: 0 auto;
  }
  .choose-us__gallery img:nth-child(3) {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .choose-us {
    padding: 40px 0;
  }
  .choose-us--inner {
    gap: 32px;
  }
  .choose-us__content--title {
    font-size: 22px;
  }
  .choose-us__content--description {
    font-size: 13px;
  }
  .choose-us__content--list {
    gap: 20px;
    margin-top: 24px;
  }
  .choose-us__content--list .item {
    gap: 10px;
  }
  .choose-us__content--list .item__info--title {
    font-size: 16px;
  }
  .choose-us__content--list .item__info--description {
    font-size: 12px;
  }
  .choose-us__gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .choose-us__gallery img {
    height: 200px;
    object-fit: cover;
  }
  .choose-us__gallery img:nth-child(3) {
    grid-column: span 1;
  }
}
.slider {
  margin-top: 94px;
  margin-bottom: 94px;
  display: flex;
  flex-direction: column;
}
.slider--title {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: #070707;
}
.slider--subtitle {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #b8b8c1;
  margin-top: 10px;
  max-width: 868px;
}
.slider__wrapper {
  margin-top: 52px;
  width: 100%;
}
.slider__wrapper-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.slider__wrapper-item--image {
  width: 100%;
  height: 175px;
  object-fit: cover;
}
.slider__wrapper-item--content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #e9e9e9;
  border-top: none;
  margin-top: -4px;
}
.slider__wrapper-item--content .price {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #070707;
}
.slider__wrapper-item--content .title {
  margin-top: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color: #070707;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.slider__wrapper-item--content .address {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #b8b8c1;
  margin-top: 14px;
}
.slider__wrapper-item--content .specs-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.slider__wrapper-item--content .specs-list--item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.slider__wrapper-item--content .specs-list--item span {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  color: #1b1b1b;
}

@media (max-width: 1024px) {
  .slider {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .slider--title {
    font-size: 28px;
  }
  .slider--subtitle {
    font-size: 15px;
  }
  .slider__wrapper {
    margin-top: 40px;
  }
  .slider__wrapper-item--image {
    height: 160px;
  }
  .slider__wrapper-item--content {
    padding: 16px;
  }
  .slider__wrapper-item--content .price {
    font-size: 15px;
  }
  .slider__wrapper-item--content .title {
    font-size: 15px;
  }
  .slider__wrapper-item--content .address {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .slider {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .slider--title {
    font-size: 24px;
    text-align: center;
  }
  .slider--subtitle {
    font-size: 14px;
    text-align: center;
  }
  .slider__wrapper {
    margin-top: 32px;
  }
  .slider__wrapper-item--image {
    height: 150px;
  }
  .slider__wrapper-item--content {
    padding: 14px;
  }
  .slider__wrapper-item--content .price {
    font-size: 14px;
  }
  .slider__wrapper-item--content .title {
    font-size: 14px;
  }
  .slider__wrapper-item--content .address {
    font-size: 12px;
    margin-top: 12px;
  }
  .slider__wrapper-item--content .specs-list {
    margin-top: 12px;
    gap: 8px;
  }
  .slider__wrapper-item--content .specs-list--item {
    gap: 4px;
  }
  .slider__wrapper-item--content .specs-list--item span {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .slider {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .slider--title {
    font-size: 22px;
  }
  .slider--subtitle {
    font-size: 13px;
  }
  .slider__wrapper {
    margin-top: 24px;
  }
  .slider__wrapper-item--image {
    height: 140px;
  }
  .slider__wrapper-item--content {
    padding: 12px;
  }
  .slider__wrapper-item--content .price {
    font-size: 13px;
  }
  .slider__wrapper-item--content .title {
    font-size: 13px;
  }
  .slider__wrapper-item--content .address {
    font-size: 11px;
    margin-top: 10px;
  }
  .slider__wrapper-item--content .specs-list {
    margin-top: 10px;
    gap: 6px;
  }
  .slider__wrapper-item--content .specs-list--item {
    gap: 3px;
  }
  .slider__wrapper-item--content .specs-list--item span {
    font-size: 10px;
  }
}
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.thank-you-modal.open {
  opacity: 1;
  pointer-events: all;
}
.thank-you-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.73);
}
.thank-you-modal__content {
  padding: 24px 32px;
  background: #FFFFFF;
  position: relative;
  z-index: 10;
}
.thank-you-modal__content--text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  color: #070707;
}
.thank-you-modal__content--close {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0;
  background: #000;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thank-you-modal__content--close svg {
  scale: 1.3;
  transition: transform 0.3s ease-in-out;
}
.thank-you-modal__content--close:hover svg {
  transform: rotate(90deg);
}

.request-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.request-modal.open {
  opacity: 1;
  pointer-events: all;
}
.request-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.73);
}
.request-modal__content {
  max-width: 1125px;
  width: 100%;
  display: flex;
  z-index: 10;
  height: 747px;
  position: relative;
}
.request-modal__content--close {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0;
}
.request-modal__content--close svg {
  transition: transform 0.3s ease-in-out;
}
.request-modal__content--close:hover svg {
  transform: rotate(90deg);
}
.request-modal__content--success {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
  max-height: 747px;
  overflow: auto;
  background: #FFFFFF;
  padding: 40px;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: all;
}
.request-modal__content--success.hide {
  opacity: 0;
  pointer-events: none;
}
.request-modal__content--success span {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  color: #070707;
}
.request-modal__content--form {
  width: 100%;
  max-height: 747px;
  overflow: auto;
  background: #FFFFFF;
  padding: 40px;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  box-sizing: border-box;
}
.request-modal__content--form::-webkit-scrollbar {
  width: 4px;
}
.request-modal__content--form::-webkit-scrollbar-track {
  background: transparent;
}
.request-modal__content--form::-webkit-scrollbar-thumb {
  background: #E59819;
}
.request-modal__content--form .title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
  display: flex;
  align-items: center;
  color: #070707;
}
.request-modal__content--form .description {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  display: flex;
  align-items: center;
  color: #B8B8C1;
  margin-top: 15px;
}
.request-modal__content--form .row {
  display: flex;
  gap: 16px;
  margin-top: 15px;
  width: 100%;
}
.request-modal__content--form .row .app-input {
  margin-top: 0;
  flex: 1;
  min-width: 0;
}
.request-modal__content--form .row .app-input input {
  width: 100%;
  box-sizing: border-box;
}
.request-modal__content--form .app-button {
  margin-top: 21px;
}
.request-modal__content--form .app-input {
  margin-top: 6px;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  background: #FFFFFF;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.menu.open {
  opacity: 1;
  pointer-events: all;
}
.menu__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 64px 20px 0;
}
.menu__inner .app-header__links--item {
  color: #11131F;
  font-size: 20px;
  text-align: center;
}
.menu__inner--close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0;
}
.menu__inner--close svg {
  transition: transform 0.3s ease-in-out;
}
.menu__inner--close:hover svg {
  transform: rotate(90deg);
}

@media (max-width: 1024px) {
  .request-modal__content {
    max-width: 900px;
    height: auto;
    max-height: 90vh;
    margin: 20px;
  }
  .request-modal__content--form {
    padding: 32px;
    max-width: 480px;
  }
  .request-modal__content--form .title {
    font-size: 28px;
    line-height: 32px;
  }
  .request-modal__content--form .description {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .request-modal {
    padding: 20px;
  }
  .request-modal__content {
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    flex-direction: column;
  }
  .request-modal__content--close {
    top: 15px;
    right: 15px;
    z-index: 20;
  }
  .request-modal__content--form {
    padding: 24px;
    max-width: 100%;
    width: 100%;
    max-height: none;
  }
  .request-modal__content--form .title {
    font-size: 24px;
    line-height: 28px;
    text-align: center;
  }
  .request-modal__content--form .description {
    font-size: 14px;
    text-align: center;
  }
  .request-modal__content--form .row {
    flex-direction: column;
    gap: 12px;
  }
  .request-modal__content--form .row .app-input {
    width: 100%;
  }
  .request-modal__content--image,
  .request-modal__content img {
    display: none;
  }
}
@media (max-width: 480px) {
  .request-modal__content--success {
    height: 100dvh;
    max-height: 100dvh;
  }
  .request-modal__content--success span {
    text-align: center;
  }
  .request-modal {
    margin: 0;
    padding: 0;
    z-index: 200;
  }
  .request-modal .request-modal__content--close {
    z-index: 10;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #11131F;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .request-modal .request-modal__content--close svg {
    scale: 1.3;
  }
  .request-modal__content {
    margin: 0 !important;
    width: 100vw;
    height: 100dvh;
    max-height: 100lvh;
  }
  .request-modal__content--close {
    top: 10px;
    right: 10px;
  }
  .request-modal__content--form {
    padding: 20px;
    height: 100dvh;
    padding-top: 64px;
    padding-bottom: 100px;
  }
  .request-modal__content--form .title {
    font-size: 22px;
    line-height: 26px;
  }
  .request-modal__content--form .description {
    font-size: 13px;
    margin-top: 12px;
  }
  .request-modal__content--form .row {
    margin-top: 12px;
    gap: 10px;
  }
  .request-modal__content--form .app-button {
    margin-top: 16px;
  }
  .request-modal__content--form .app-input {
    margin-top: 4px;
  }
}

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