*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 16px;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -4px;
}

sup {
  top: -8px;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

:-moz-focusring {
  outline: auto;
}

progress {
  vertical-align: baseline;
}

summary {
  display: list-item;
}

ol,
ul,
menu {
  list-style: none;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

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

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
  opacity: 1;
}

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

::file-selector-button {
  margin-inline-end: 4px;
}

::placeholder {
  opacity: 1;
}

@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
  ::placeholder {
    color: color-mix(in oklab, currentcolor 50%, transparent);
  }
}

textarea {
  resize: vertical;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-date-and-time-value {
  min-height: 1lh;
  text-align: inherit;
}

::-webkit-datetime-edit {
  display: inline-flex;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

:-moz-ui-invalid {
  box-shadow: none;
}

button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
  appearance: button;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
  appearance: none;
}

[hidden]:where(:not([hidden='until-found'])) {
  display: none !important;
}

@media only screen and (max-width: 1200px) {
  input[type=number]::-webkit-inner-spin-button {
    opacity: 1;
  }
}

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #F9FAFB;
  color: #0B1C33;
  overflow-x: hidden;
}

body.is-popup-active {
  overflow-y: hidden;
}

.h1,
.h2 {
  font-size: 24px;
  line-height: calc(2 / 1.5);
  font-weight: 700;
}

@media (min-width: 768px) {

  .h1,
  .h2 {
    font-size: 36px;
    line-height: calc(2.5 / 2.25);
  }
}

p+* {
  margin-top: 8px;
}

a {
  text-decoration: underline;
  color: #2561E6;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

ol {
  counter-reset: list-counter;
  padding-left: 20px;
}

ol.pl-duble {
  padding-left: 40px;
  ]
}

li {
  list-style: number;
}

.list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-left: 20px;
  list-style: disc;
}

.list__item {
  font-size: 16px;
  line-height: 1;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s ease-in-out;
  outline: none;
  cursor: pointer;
}

.btn-primary {
  background: #2561E6;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #1D4ED8;
}

.btn-spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: relative;
}

.btn-spinner::after {
  content: "";
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: spinner-rotate 0.8s linear infinite;
}

@keyframes spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}

.input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  color: #111827;
  background-color: #FFFFFF;
  transition: border-color .2s ease-in-out, box-shadow .2s ease-in-out;
  outline: none;
}
.input:focus {
  border-color: #3B82F6;
}

.checkbox {
  display: block;
  position: relative;
  padding: 0 0 0 30px;
  font-size: 14px;
  line-height: 20px;
  user-select: none;
  cursor: pointer;
}

.checkbox__input {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  cursor: pointer !important;
}

.checkbox__mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.checkbox__mark:after {
  content: '';
  position: absolute;
  left: 6px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid #2561E6;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox__input:not(:checked)~.checkbox__mark:after {
  display: none;
}

.checkbox__input:checked~.checkbox__mark {
  border-color: #2561E6;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.row>[class*="w-col-"],
.row>.col {
  padding-left: 15px;
  padding-right: 15px;
}

.col {
  flex: 1 1 0%;
  min-width: 0;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  .col-sm-4 {
    width: 33.3333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.6666667%;
  }
}

@media (min-width: 992px) {
  .col-md-12 {
    width: 100%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-4 {
    width: 33.3333333%;
  }

  .col-md-3 {
    width: 25%;
  }
}

@media (max-width: 767px) {
  .row {
    flex-direction: column;
  }

  .row>[class*="w-col-"],
  .row>.col {
    padding-left: 0;
    padding-right: 0;
  }

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

.full {
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 100;
  background-color: #FFFFFF;
}

body.scrolled .header.header--fixed {
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgb(225 227 230 / 0.5);
}

.header__container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
}

@media (min-width: 1160px) {
  .header__container {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.header-logo__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo__image {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.header-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-logo__site {
  font-weight: 700;
  font-size: 16px;
}

.header-logo__tagline {
  font-size: 14px;
  color: rgba(11, 28, 51, 0.7);
}

.header-menu {
  display: flex;
  align-items: center;
  margin-left: 32px;
  margin-right: auto;
}

.header-menu__items {
  display: flex;
  align-items: center;
  column-gap: 32px;
}

.header-menu__link {
  text-decoration: none;
  color: #363636;
}

.header-menu__link:hover {
  color: #2561E6;
}

@media (max-width: 1023px) {
  .header-menu:not(.header-menu--active) {
    display: none;
  }
}

.header-btn--desktop {
  margin-left: 32px;
}

@media (max-width: 1279px) {
  .header-btn--desktop {
    display: none;
  }
}

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

.header-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-info--desktop {
  flex-direction: row;
  align-items: center;
  column-gap: 32px;
  margin-left: auto;
  line-height: calc(1.75 / 1.125);
}

.header-info__item {
  text-decoration: none;
  color: #363636;
}

.header-info__item:hover {
  color: #2561E6;
}

@media (max-width: 1023px) {
  .header-info--desktop {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-info--mobile {
    display: none;
  }
}

.header-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.header-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #363636;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-burger.header-burger--active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.header-burger.header-burger--active span:nth-child(2) {
  opacity: 0;
}

.header-burger.header-burger--active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .header-burger {
    display: flex;
  }

  .header-menu {
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 100;
  }

  .header-menu.header-burger--active {
    right: 0;
  }

  .header-menu__items {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 24px;
    margin-bottom: 32px;
  }

  .header-menu__link {
    font-size: 16px;
    font-weight: 500;
  }

  .header-btn--mobile {
    width: 100%;
    margin-top: auto;
    margin-bottom: 24px;
  }

  .header-info--mobile {
    flex-direction: row;
    column-gap: 12px;
    width: 100%;
  }
}

.header-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header-menu-overlay.header-menu-overlay--active {
  display: block;
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

.footer {
  display: flex;
  align-items: center;
  background-color: #111827;
  color: #FFFFFF;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 16px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section__title {
  font-weight: 700;
}

.footer-section__content a {
  text-decoration: none;
  color: #007bff;
}

.footer a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__col:first-child .footer-section__content {
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 8px;
  }
}

.section {
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
}

.section-title {
  margin-bottom: 32px;
  text-align: center;
}

.section-description {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: calc(1.75 / 1.125);
}

.section.section--hero {
  padding-top: calc(82px + 160px);
  padding-bottom: 160px;
}

.section.section--hero .section-title {
  text-align: left;
}

@media (min-width: 768px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.section--hero:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    max-height: 760px;
    width: 100%;
    height: 100%;
    background-color: #F9FAFB;
    background-image: url('../img/bg-hero.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
    box-shadow: -1000px 0 #F9FAFB;
  }
}

.section.section--tgs {
  background-color: #FFFFFF;
}

.section.section--wer .section-title {
  margin-bottom: 0;
}

.section.section--hjk {
  background-color: #F9FAFB;
}

.section.section--messenger {
  background: linear-gradient(135deg, #3B82F6 0%, #6366F1 50%, #8B5CF6 100%);
  color: #FFFFFF;
}
.section.section--messenger .section-description {
  text-align: center;
}

.section.section--tgs2 {
  background-color: #FFFFFF;
}

.section.section--callback {
  padding-top: 0;
  background-color: #FFFFFF;
}

.section.section--messenger {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
  min-height: 400px;
  overflow: hidden;
}

.section.section--messenger .container {
  z-index: 2;
}

@media (min-width: 768px) {
  .section.section--messenger {
    padding-top: 128px;
    padding-bottom: 128px;
  }
}

.section.section--obrsvs {
  background-color: #FFFFFF;
}
.section.section--obrsvs .section-title {
  text-align: left;
}
.section.section--map {
  padding-top: 0;
  padding-bottom: 0;
}

.hero {
  width: 100%;
}

.hero-list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 32px;
}

.hero-list__item {
  position: relative;
  line-height: 1;
  list-style: none;
}

.hero-list__item:before {
  content: '';
  position: absolute;
  top: 6px;
  left: -20px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: calc(infinity * 1px);
  background-color: #2561E6;
}

.hero-form {
  display: flex;
  flex-direction: column;
}

.hero-form__input-group {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .hero-form__input-group {
    flex-direction: row;
    align-items: center;
    column-gap: 32px;
  }
}

@media (min-width: 768px) {
  .hero {
    max-width: 600px;
  }

  .hero-list__item {
    font-size: 16px;
  }
}

.tgs {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.tgs-item {
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
  background: #F9FAFB;
  color: #4B5563;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  transform-origin: center;
}
.tgs-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(11, 28, 51, 0.10);
}
.tgs-item__heading {
  color: #2561E6;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
.tgs-item__desc {
  margin-top: 6px;
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  color: #4B5563;
}

@media (min-width: 768px) {
  .tgs {
    flex-direction: row;
    column-gap: 32px;
  }
  .tgs-item {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 250px;
    padding: 24px;
  }
}

.wers {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.wer {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding: 16px;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0 20px 50px #E1E3E6;
  position: relative;
}

.wer__sections {
  display: flex;
  flex-direction: column;
}

.wer__section {
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
}

.wer__section+.wer__section {
  padding-top: 24px;
  border-top: 1px solid rgba(11, 28, 51, 0.06);
}

.wer__title {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: calc(1.75 / 1.25);
  font-weight: 700;
}

@media (min-width: 768px) {
  .wers {
    row-gap: 64px;
  }

  .wer {
    padding: 64px 128px;
    row-gap: 16px;
  }
}

.hjk {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

@media (min-width: 768px) {
  .hjk {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.hjk-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #FFFFFF);
  box-shadow: 0 8px 24px rgba(11, 28, 51, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  overflow: hidden;
}

.hjk-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 28, 51, 0.12);
}

.hjk-item__icon {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  background: #DBEAFE;
  box-shadow: 0 6px 20px rgba(244, 162, 97, 0.18);
}
.hjk-item:nth-child(1) .hjk-item__icon { background: #DBEAFE; }
.hjk-item:nth-child(2) .hjk-item__icon { background: #FCE7F3; }
.hjk-item:nth-child(3) .hjk-item__icon { background: #DCFCE7; }
.hjk-item:nth-child(4) .hjk-item__icon { background: #FEE2E2; }

.hjk-item__title {
  font-size: 20px;
  font-weight: 700;
  color: #0B1C33;
  line-height: 1.2;
}

.hjk-item__description {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.4;
  word-break: break-word;
  max-width: 320px;
}

@media (min-width: 768px) {
  .hjk {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hjk-item {
    padding: 24px;
  }

  .hjk-item__icon {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    font-size: 30px;
  }

  .hjk-item__title {
    font-size: 20px;
  }

  .hjk-item__description {
    font-size: 16px;
    max-width: none;
  }
}

.send-form {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 16px;
  background-color: #F9FAFB;
}

.send-form__cell>* {
  width: 100%;
}

@media (min-width: 768px) {
  .send-form {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 32px;
    padding: 32px;
  }

  .send-form__cell {
    flex: 0 0 calc((100% - 64px) / 3);
    max-width: calc((100% - 64px) / 3);
  }

  .send-form .form-message {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.messenger {
  display: flex;
  flex-direction: column;
  align-items: space-between;
}

.messenger-description {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: calc(1.75 / 1.125);
}

.messenger-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 16px;
  column-gap: 24px;
}

.messenger-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  margin: 0 6px;
  text-decoration: none;
  background: #FFFFFF;
  color: #2561E6;
  box-shadow: 0 6px 18px rgba(11, 28, 51, 0.06);
  border-radius: 8px;
  transition: transform .18s ease, box-shadow .18s ease;
  border: 1px solid rgba(37, 97, 230, 0.08);
}

.messenger-item__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  display: inline-block;
}

.messenger-item__title {
  display: none;
}

.more {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.spoiler {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #FFFFFF);
  color: #363636;
  box-shadow: 0 8px 24px rgba(11, 28, 51, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  overflow: hidden;
}

.spoiler:hover {
  box-shadow: 0 18px 40px rgba(11, 28, 51, 0.12);
}

.spoiler__title {
  padding: 16px;
  font-size: 16px;
  line-height: calc(1.75 / 1.125);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding-right: 28px;
  outline: none;
}

.spoiler__title::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: normal;
  color: #363636;
  transition: transform .2s ease;
}

.spoiler__description {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, opacity .2s ease, padding .2s ease;
  opacity: 0;
}

.spoiler--open .spoiler__title::after {
  content: '−';
}

.spoiler--open .spoiler__description {
  opacity: 1;
  padding: 0 16px 16px;
}

@media (min-width: 768px) {
  .spoiler__title {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .spoiler--open .spoiler__description {
    padding-bottom: 24px;
  }
}

.obrsvs {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

@media (min-width: 768px) {
  .obrsvs.obrsvs--two-col {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .obrsvs__left {
    flex: 1 1 0%;
  }

  .obrsvs__form {
    flex: 0 0 450px;
  }
}

.obrsvs__form {
  background-color: #F9FAFB;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(11, 28, 51, 0.06);
}

.obrsvs__form .input {
  margin-bottom: 12px;
}

.obrsvs__form .btn {
  width: 100%;
}

.obrsvs__item-row {
  display: flex;
  align-items: flex-start;
  column-gap: 12px;
  margin-bottom: 12px;
}

.obrsv-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(infinity * 1px);
  background-color: #DBEAFE;
}

.obrsv-icon svg {
  width: 20px;
  height: 20px;
  fill: #2563EB;
}

.obrsv-body {
  min-width: 0;
}

.obrsv-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  color: #0B1C33;
}

.obrsv-text,
.obrsv-text a {
  font-size: 16px;
  color: #363636;
  text-decoration: none;
  word-break: break-word;
}

.obrsv-text a:hover {
  color: #2561E6;
}

@media (max-width: 767px) {
  .obrsvs__item-row {
    align-items: center;
  }

  .obrsv-body .obrsv-title {
    font-size: 13px;
  }
}

.fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
.fade.fade--visible {
  opacity: 1;
  visibility: visible;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease;
}
.popup.popup--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popup-window {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;;
  background-color: #FFFFFF;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  transform: translateY(-40px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.popup.popup--active .popup-window {
  transform: translateY(0);
  opacity: 1;
}
.popup-policy .popup-window {
  max-width: 1200px;
}
.popup.popup--active {
  display: block !important;
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.popup-headline {
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 36px;
  font-weight:700;
}
.popup-title  {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: calc(1.75 / 1.25);
  font-weight: 700;
}
.popup-send .popup-window {
  max-width: 400px;
}
.popup-send .popup-headline {
  text-align: center;
}
.popup-send-form {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.popup-send-form__field {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .popup {
    padding: 32px;
  }
  .popup-window {
    padding: 32px;
  }
  .popup-headline {
    margin-bottom: 16px;
  }
}

.form-message {
  margin-top: 12px;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid transparent;
  color: #111827;
  background: #F3F4F6;
}
.form-message--success {
  background: #EDF7EC;
  color: #166534;
  border-color: #D1FAE5;
}
.form-message--error {
  background: #FEF2F2;
  color: #991B1B;
  border-color: #FECACA;
}
.form-message--info {
  background: #F3F4F6;
  color: #111827;
  border-color: #E5E7EB;
}
