:root {
  --section-gutter: 80px;
}

@font-face {
  font-family: "Museo Sans";
  src: url("../fonts/MuseoSansCyrl-500.eot");
  src:
    local("MuseoSansCyrl-500"),
    url("../fonts/MuseoSansCyrl-500.eot?#iefix") format("embedded-opentype"),
    url("../fonts/MuseoSansCyrl-500.woff") format("woff"),
    url("../fonts/MuseoSansCyrl-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Museo Sans";
  src: url("../fonts/MuseoSansCyrl-700.eot");
  src:
    local("MuseoSansCyrl-700"),
    url("../fonts/MuseoSansCyrl-700.eot?#iefix") format("embedded-opentype"),
    url("../fonts/MuseoSansCyrl-700.woff") format("woff"),
    url("../fonts/MuseoSansCyrl-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Museo Sans";
  src: url("../fonts/MuseoSansCyrl-300.eot");
  src:
    local("MuseoSansCyrl-300"),
    url("../fonts/MuseoSansCyrl-300.eot?#iefix") format("embedded-opentype"),
    url("../fonts/MuseoSansCyrl-300.woff") format("woff"),
    url("../fonts/MuseoSansCyrl-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Museo Sans", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #34404c;
}

html.lock {
  overflow: hidden;
}

html.lock body {
  overflow: hidden;
  position: fixed;
}

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

body.hide-overflow {
  position: fixed;
  width: 100%;
}

body .footer {
  margin-top: auto;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

textarea,
input,
select,
button,
label {
  font: inherit;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

button[disabled] {
  cursor: initial;
}

input,
button,
textarea,
select,
textarea:focus,
textarea:active,
input:active,
input:focus,
button:active,
button:focus,
select:active,
select:focus {
  outline: 0;
}

a {
  color: #34404c;
}

section {
  margin-bottom: var(--section-gutter);
}

.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: none;
  -webkit-transition:
    color 0.2s linear,
    background-color 0.2s linear,
    opacity 0.2s linear;
  transition:
    color 0.2s linear,
    background-color 0.2s linear,
    opacity 0.2s linear;
  font-size: max(1.3vmax, 16px);
  height: 42px;
  padding: 0 1.6rem;
}

.btn.disabled,
.btn[disabled] {
  opacity: 0.3;
}

.btn-green {
  color: #ffffff;
  background-color: #18a763;
}

.btn-blue {
  color: #ffffff;
  background-color: #48c5df;
}

.btn-green:not(.disabled):not([disabled]):hover {
  background-color: #11854e;
}

.btn-blue:not(.disabled):not([disabled]):hover {
  background-color: #47b4cb;
}

input:not([type="checkbox"]):not([type="radio"]):not(ymaps input) {
  padding: 0 12px;
  height: 42px;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #34404c;
  border: 1px solid #34404c;
}

input:not([type="checkbox"]):not([type="radio"]):not(ymaps input)::-webkit-input-placeholder {
  color: rgba(52, 64, 76, 0.5);
}

input:not([type="checkbox"]):not([type="radio"]):not(ymaps input)::-moz-placeholder {
  color: rgba(52, 64, 76, 0.5);
}

input:not([type="checkbox"]):not([type="radio"]):not(ymaps input):-ms-input-placeholder {
  color: rgba(52, 64, 76, 0.5);
}

input:not([type="checkbox"]):not([type="radio"]):not(ymaps input)::-ms-input-placeholder {
  color: rgba(52, 64, 76, 0.5);
}

input:not([type="checkbox"]):not([type="radio"]):not(ymaps input)::placeholder {
  color: rgba(52, 64, 76, 0.5);
}

textarea {
  padding: 12px;
  min-height: 95px;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #34404c;
  border: 1px solid #34404c;
  resize: none;
  border-radius: 8px;
}

textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea::-ms-input-placeholder,
textarea:-ms-input-placeholder,
textarea::placeholder {
  color: rgba(52, 64, 76, 0.5);
}

input:not([type="checkbox"]):not([type="radio"])[disabled],
textarea[disabled] {
  opacity: 0.4;
}

.input-error {
  border: 1px solid #df2020 !important;
}

.input-error-message {
  margin-top: 4px;
  color: #df2020;
  font-size: 1.4rem;
  line-height: 2rem;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox .input-title {
  position: relative;
  cursor: pointer;
}

.custom-checkbox .input-title::before,
.custom-checkbox .input-title::after {
  position: absolute;
  display: block;
  content: "";
}

.custom-checkbox input:checked+.input-title::before {
  border-color: #18a763;
  background-color: #18a763;
}

.custom-checkbox input.input-error+.input-title::before {
  border-color: #df2020 !important;
}

.custom-checkbox input:checked+.input-title::after {
  opacity: 1;
}

.custom-checkbox .input-title {
  padding-left: 2em;
  display: inline-block;
}

.custom-checkbox .input-title::before,
.custom-checkbox .input-title::after {
  top: 11px;
  left: 0;
  width: 1.33em;
  height: 1.33em;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.custom-checkbox .input-title::before {
  border: 1px solid #34404c;
  -webkit-transition:
    background-color 0.2s linear,
    border-color 0.2s linear;
  transition:
    background-color 0.2s linear,
    border-color 0.2s linear;
}

.custom-checkbox .input-title::after {
  background: url(../icons/checkmark-white.svg) no-repeat center / 1.1em;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.footer {
  padding-top: 40px;
  background-color: #34404c;
}

h1 {
  margin-top: 20px;
  margin-bottom: 48px;
}

.projects-map {
  width: 100%;
  height: 600px;
  margin-bottom: 20px;
}

.projects-map .projects-map-item-title {
  font-size: 1.8rem;
}

.projects-map .projects-map-item-link {
  padding: 0.5em 1.5em;
  font-size: 1.6rem;
  line-height: 2rem;
}

.projects-map .projects-map-item-info {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.project-map {
  width: 100%;
  height: 400px;
}

.apply-form {
  max-width: 720px;
  position: relative;
}

.apply-form .info-list {
  margin-bottom: 0;
}

.apply-form .form-block {
  margin-bottom: 40px;
}

.apply-form .form-block .form-block-title {
  margin-bottom: 8px;
}

.apply-form .form-block {
  margin-bottom: 40px;
}

.apply-form .input-block+.input-block {
  margin-top: 16px;
}

.apply-form .checkbox-block label {
  display: flex;
  align-items: center;
}

.apply-form .checkbox-block+.checkbox-block {
  margin-top: 16px;
}

.apply-form .form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 60px;
}

.apply-form .form-footer.right {
  justify-content: flex-end;
}

.apply-form .form-footer .form-footer-block {
  width: 100%;
  margin-top: 16px;
}

.wd-50 {
  width: 50%;
}

input:not([type="checkbox"]):not([type="radio"]):not(ymaps input),
textarea {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #34404c;
  border: 1px solid rgba(52, 64, 76, 0.6);
  color: #34404c;
}

.form-message {
  text-align: center;
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 2rem;
}

.form-message.success {
  color: #18a763;
}

.form-message.fail {
  color: #df2020;
}

.warn-message-block {
  margin-top: 60px;
  border: 2px solid #18a763;
  padding: 30px;
}

.warn-message-block p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

input:not([type="checkbox"]):not([type="radio"]):not(ymaps input),
textarea {
  border-radius: 0;
}

.input-error {
  border-color: crimson !important;
}

.form-error-message {
  display: none;
  margin-top: 4px;
  color: #df2020;
  font-size: 1.4rem;
  line-height: 2rem;
}

.form-error-message.v {
  display: block;
}

h1 {
  font-size: 4.8rem;
  line-height: 6rem;
}

h2 {
  font-size: 4.4rem;
  line-height: 5.6rem;
}

h3 {
  font-size: 3rem;
  line-height: 3.6rem;
}

.regular-text,
p {
  font-size: 1.8rem;
  line-height: 2.4rem;
}

ul,
ol {
  font-size: 1.8rem;
  line-height: 2.4rem;
}

p {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

h2 {
  margin-bottom: 30px;
}

.apply-form .info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.apply-form .form-block {
  margin-bottom: 0 !important;
}

.fio-row {
  margin-bottom: 0;
}

.wd-50 {
  margin-bottom: 0;
}

.fio-row {
  display: flex;
  gap: 10px;
}

.fio-row .form-block {
  flex: 1;
  margin-bottom: 0;
}

.fio-row .form-block .form-block-title {
  line-height: 2.4rem;
  margin-bottom: 8px;
}

.fio-row .form-block .input-block input {
  height: 42px;
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding: 0 12px;
  border: 1px solid #34404c;
}

.city-map-inputs {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.city-select {
  flex: 1;
}

.map-button {
  height: 42px;
  padding: 0 20px;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

select {
  padding: 0 12px;
  height: 42px;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #34404c;
  border: 1px solid rgba(52, 64, 76, 0.6);
  background-color: #fff;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%2334404c" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border-radius: 0;
}

select:focus {
  outline: none;
  border-color: #18a763;
}

select option {
  padding: 8px 12px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #34404c;
  background-color: #fff;
}

select:disabled {
  opacity: 0.4;
  cursor: default;
}

.form-block-error {
  display: inline-block;
  visibility: hidden;
  margin-top: 6px;
  color: #d82335;
  font-weight: 500;
}

.form-block:has(textarea:not(:placeholder-shown):invalid) .form-block-error,
.form-block:has(input:not(:placeholder-shown):invalid) .form-block-error,
.form-block:has(select:user-invalid) .form-block-error {
  visibility: visible;
}

.form-block-required {
  color: #18a763;
  margin-left: 3px;
}

.form-contacts {
  display: flex;
  gap: 2rem;
}

.drag-drop-area {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
}

.drag-drop-area.dragover {
  border-color: #18a763;
  background-color: #f0f8f4;
}

.drag-drop-content p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.file-input-trigger {
  color: #18a763;
  cursor: pointer;
  text-decoration: underline;
}

.file-input-trigger:hover {
  color: #0d7a4a;
}

.file-list {
  margin-top: 15px;
  text-align: left;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 14px;
}

.file-item:last-child {
  margin-bottom: 0;
}

.file-name {
  flex: 1;
  margin-right: 10px;
  word-break: break-all;
}

.file-remove {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-remove:hover {
  color: #c82333;
}

.custom-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  background-color: #dc3545;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 400px;
  min-width: 300px;
}

.custom-alert.success {
  background-color: #18a763;
  box-shadow: 0 4px 12px rgba(24, 167, 99, 0.3);
}

.custom-alert.show {
  transform: translateX(0);
  opacity: 1;
}

.alert-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 12px;
}

.alert-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.alert-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.alert-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.alert-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.map-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-popup.show {
  display: flex;
  opacity: 1;
}

.map-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.map-popup-content {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  max-height: 90%;
  width: 1000px;
  height: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.map-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #e0e0e0;
  background-color: #f8f9fa;
}

.map-popup-header h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #34404c;
}

.map-popup-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.map-popup-close:hover {
  background-color: #e0e0e0;
  color: #333;
}

.map-popup-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.yandex-map {
  flex: 1;
  min-height: 400px;
  border: none;
}

.map-selection-info {
  padding: 20px 30px;
  background-color: #f8f9fa;
  border-top: 1px solid #e0e0e0;
}

.selected-city,
.selected-project {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #34404c;
}

.selected-city:last-child,
.selected-project:last-child {
  margin-bottom: 0;
}

.selected-city strong,
.selected-project strong {
  color: #18a763;
  font-weight: 600;
}

.map-popup-footer {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  padding: 20px 30px;
  border-top: 1px solid #e0e0e0;
  background-color: #ffffff;
}

.instruction-list {
  margin-top: 40px;
  max-width: 680px;
}

.instruction-item-description {
  display: flex;
  align-items: center;
  gap: 20px;
}

.instruction-item {
  margin-bottom: 35px;
}

.instruction-item:last-child {
  margin-bottom: 0;
}

.instruction-item-number {
  color: #18a763;
}

.decorative-text {
  font-size: 7.2rem;
  line-height: 1;
}

.decorative-text-small {
  font-size: 6.4rem;
  line-height: 7.6rem;
}

.medium-text {
  font-size: 2.2rem;
  line-height: 2.8rem;
}

@media screen and (max-width: 1279px) {
  .container {
    max-width: 980px;
  }

  .decorative-text {
    font-size: 6.5rem;
    line-height: 6.5rem;
  }

  .decorative-text-small {
    font-size: 5.6rem;
    line-height: 6.9rem;
  }

  h1,
  .primary-text {
    font-size: 4.4rem;
    line-height: 5.4rem;
  }

  h2 {
    font-size: 3.9rem;
    line-height: 5.4rem;
  }

  h3 {
    font-size: 2.6rem;
    line-height: 3.3rem;
  }

  h4 {
    font-size: 2.1rem;
    line-height: 2.7rem;
  }
}

@media screen and (max-width: 1023px) {
  .container {
    max-width: 720px;
  }

  .decorative-text {
    font-size: 5.8rem;
    line-height: 5.8rem;
  }

  .decorative-text-small {
    font-size: 4.8rem;
    line-height: 6rem;
  }

  h1,
  .primary-text {
    font-size: 4rem;
    line-height: 5rem;
  }

  h2 {
    font-size: 3.4rem;
    line-height: 4.8rem;
  }

  h4,
  .medium-text {
    font-size: 2rem;
    line-height: 2.6rem;
  }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .apply-form {
    max-width: 700px;
  }

  .btn {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .apply-form {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }

  .form-block {
    margin-bottom: 25px;
  }

  .form-block-title {
    margin-bottom: 8px;
  }

  .btn {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 280px;
  }

  .btn span,
  .btn::before,
  .btn::after {
    text-align: center;
  }

  select {
    width: 100%;
  }

  .checkbox-block label {
    justify-content: center;
  }

  .drag-drop-area {
    text-align: center;
  }

  .drag-drop-content {
    text-align: center;
  }

  .form-footer {
    text-align: center;
    justify-content: center;
  }

  .submit-apply {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .wd-50 {
    width: 100%;
  }

  .file-list,
  .file-item,
  .file-name {
    text-align: left;
  }

  .proposals h2 {
    text-align: center;
  }

  .instruction h1,
  .instruction h2 {
    text-align: center;
  }

  .instruction-item-description {
    text-align: center;
  }

  .instruction-item-text {
    text-align: left;
  }

  .map-popup-content {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
  }

  .map-popup-header {
    padding: 15px 20px;
  }

  .map-popup-header h3 {
    font-size: 1.6rem;
  }

  .map-popup-close {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .map-selection-info {
    padding: 15px 20px;
  }

  .selected-city,
  .selected-project {
    font-size: 1.3rem;
  }

  .map-popup-footer {
    padding: 15px 20px;
    flex-direction: column;
  }

  .map-popup-footer .btn {
    width: 100%;
    margin: 0;
  }

  .yandex-map {
    min-height: 300px;
  }

  .fio-row {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .fio-row .form-block {
    margin-bottom: 0;
  }

  .city-map-block {
    width: 100%;
  }

  .city-map-inputs {
    gap: 15px;
  }

  .city-select {
    width: 100%;
  }

  #selectOnMap {
    width: 180px;
    padding: initial;
  }

  .apply-form .info-list {
    gap: 30px;
  }

  .proposals h2 {
    margin-bottom: 30px;
  }

  .custom-alert {
    top: 30px;
    right: 10px;
    left: 10px;
    max-width: none;
    min-width: auto;
    transform: translateY(-100px);
  }

  .custom-alert.show {
    transform: translateY(0);
  }

  .decorative-text {
    font-size: 5.1rem;
    line-height: 5.1rem;
  }

  .decorative-text-small {
    font-size: 4rem;
    line-height: 4.7rem;
  }

  h1,
  .primary-text {
    font-size: 3.4rem;
    line-height: 4.4rem;
  }

  h2 {
    font-size: 2.9rem;
    line-height: 4.2rem;
  }

  h3,
  .big-text {
    font-size: 2.3rem;
    line-height: 3.6rem;
  }

  h4,
  .medium-text {
    font-size: 1.9rem;
    line-height: 2.5rem;
  }

  h5,
  .regular-text,
  p {
    font-size: 1.7rem;
    line-height: 2.3rem;
  }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
  .proposals {
    padding: 20px 0;
  }

  .proposals h2 {
    margin-bottom: 20px;
  }

  .form-block {
    margin-bottom: 15px;
  }

  .apply-form {
    padding: 0 15px;
  }
}

@media screen and (max-width: 575px) {
  :root {
    --section-gutter: 70px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    width: 100%;
  }

  .projects-map {
    height: 300px;
  }

  .project-map {
    height: 300px;
  }

  .decorative-text {
    font-size: 4.4rem;
    line-height: 4.4rem;
  }

  .decorative-text-small {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }

  h1,
  .primary-text {
    font-size: 3rem;
    line-height: 4rem;
  }

  h2 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }

  h3,
  .big-text {
    font-size: 2rem;
    line-height: 3rem;
  }

  h4,
  .medium-text {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }

  h5,
  .regular-text,
  p {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --section-gutter: 60px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .apply-form {
    padding: 0 5px;
  }

  .btn {
    font-size: 1.4rem;
    padding: 12px 20px;
    max-width: 100%;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    font-size: 1.6rem;
    padding: 8px 12px;
  }

  select {
    font-size: 1.6rem;
    padding: 8px 12px;
  }

  .form-block-title {
    font-size: 1.6rem;
  }

  .submit-apply {
    width: 100%;
    max-width: 100%;
  }

  .map-popup-header {
    padding: 12px 15px;
  }

  .map-popup-header h3 {
    font-size: 1.4rem;
  }

  .map-selection-info {
    padding: 12px 15px;
  }

  .selected-city,
  .selected-project {
    font-size: 1.2rem;
  }

  .map-popup-footer {
    padding: 12px 15px;
  }

  .yandex-map {
    min-height: 250px;
  }
}

@media screen and (max-width: 425px) {
  .fio-row {
    flex-direction: column;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    gap: 16px;
  }

  .fio-row .form-block {
    margin-bottom: 0;
  }

  .city-map-block {
    width: 100%;
  }

  .city-map-inputs {
    flex-direction: column;
    gap: 15px;
  }

  .city-select {
    width: 100%;
  }

  #selectOnMap {
    width: 100%;
    padding: initial;
  }

  .apply-form .info-list {
    gap: 16px;
  }

  .proposals h2 {
    margin-bottom: 30px;
  }

  .form-contacts {
    flex-direction: column;
  }

  .decorative-text {
    font-size: 4.2rem;
    line-height: 4.2rem;
  }

  .decorative-text-small {
    font-size: 3rem;
    line-height: 3.6rem;
  }

  h1,
  .primary-text {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  h2 {
    font-size: 2.2rem;
    line-height: 3.4rem;
  }

  h3,
  .big-text {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }

  h4,
  .medium-text {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  h5,
  .regular-text,
  p {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}