@charset "UTF-8";
/* Стили для модального окна */
.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(63, 65, 102, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1050;
  overflow: hidden auto;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

/* Стили для модального диалога */
.custom-modal-dialog {
  position: relative;
  display: flex;
  width: 700px;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* Стили для контента модального окна */
.custom-modal-content {
  padding: 60px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #EBF1F7;
  border-radius: 30px;
  outline: 0;
}

/* Стили для заголовка модального окна */
.custom-modal-header {
  margin: 0 auto 45px;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -2px;
  color: #333F56;
  max-width: 500px;
  text-align: center;
}

/* Стили для тела модального окна */
.custom-modal-body {
  position: relative;
}

.custom-modal-text {
  margin: 0 auto 32px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  max-width: 365px;
  color: #4D7295;
  text-align: center;
}

/* Стили для подвала модального окна */
.custom-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
}

/* Кнопка закрытия */
.close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: 40px;
  color: #333F56;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.3;
}

.close:hover {
  opacity: 1;
}

/* Открытое модальное окно */
.custom-modal.show {
  display: flex;
}

.custom-modal-body .form__notice {
  margin-top: 20px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: #333F56;
  text-align: center;
  opacity: 0.5;
}

.custom-modal-body .form__notice a {
  text-decoration: underline;
  color: #333F56;
}

body.overlay-active {
  overflow: hidden;
}

.successful-modal {
  display: none;
  position: fixed;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: 600px;
  height: 75px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
  background-color: #EBF1F7;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #333F56;
  box-shadow: 0 8px 30px rgba(51, 63, 86, 0.3);
}

.custom-modal .favorite-only {
  display: none;
}
.custom-modal.favorite-login-modal .custom-modal-title {
  display: none;
}
.custom-modal.favorite-login-modal .favorite-only {
  display: block;
}

@media (max-width: 500px) {
  .custom-modal {
    padding: 50px 20px;
  }
  .custom-modal-dialog {
    width: 100%;
  }
  .custom-modal-content {
    padding: 40px 20px 20px;
  }
  .custom-modal-header {
    margin: 0 auto 30px;
    max-width: 280px;
    font-size: 24px;
  }
  .custom-modal-body .form__notice {
    font-size: 10px;
  }
}
form p {
  margin: 0;
  padding: 0;
}
form p br {
  display: none;
}
form .row-group {
  display: flex;
  gap: 10px;
}
form .input-group {
  position: relative;
  margin-bottom: 10px;
}
form .input-group > span {
  width: 100%;
}
form .input-group input, form .input-group textarea {
  width: 100%;
  position: relative;
  padding: 25px 24px;
  border: none;
  border-radius: 16px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  background-color: #FFFFFF;
}
form .input-group input:focus, form .input-group textarea:focus {
  outline: none;
  box-shadow: none;
}
form .input-group input::-moz-placeholder, form .input-group textarea::-moz-placeholder {
  color: #212C40;
  opacity: 0.6;
}
form .input-group input::placeholder, form .input-group textarea::placeholder {
  color: #212C40;
  opacity: 0.6;
}
form .input-group input.wpcf7-not-valid, form .input-group textarea.wpcf7-not-valid {
  color: #DC0000 !important;
}
form .input-group input.wpcf7-not-valid::-moz-placeholder, form .input-group textarea.wpcf7-not-valid::-moz-placeholder {
  color: #DC0000 !important;
}
form .input-group input.wpcf7-not-valid::placeholder, form .input-group textarea.wpcf7-not-valid::placeholder {
  color: #DC0000 !important;
}
form .input-group.left-icon input, form .input-group.left-icon textarea {
  padding-left: 60px;
}
form .input-group.left-icon svg {
  position: absolute;
  top: 25px;
  left: 24px;
  width: 20px;
  height: 20px;
  color: #C8D4E5;
  fill: #C8D4E5;
  transition: all 0.2s ease;
}
form .input-group.left-icon:has(input:not(:-moz-placeholder)) svg {
  color: #909FB6;
  fill: #909FB6;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
form .input-group.left-icon:has(input:focus) svg, form .input-group.left-icon:has(input:not(:placeholder-shown)) svg {
  color: #909FB6;
  fill: #909FB6;
  transition: all 0.2s ease;
}
form .input-group.left-icon:has(input.wpcf7-not-valid) svg {
  color: #EA6666;
  fill: #EA6666;
  transition: all 0.2s ease;
}
form .input-group.right-icon input, form .input-group.right-icon textarea {
  padding-right: 60px;
}
form .input-group.right-icon svg {
  position: absolute;
  top: 25px;
  right: 24px;
  width: 20px;
  height: 20px;
  color: #C8D4E5;
  fill: #C8D4E5;
  transition: all 0.2s ease;
}
form .input-group.right-icon:has(input:not(:-moz-placeholder)) svg {
  color: #909FB6;
  fill: #909FB6;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
form .input-group.right-icon:has(input:focus) svg, form .input-group.right-icon:has(input:not(:placeholder-shown)) svg {
  color: #909FB6;
  fill: #909FB6;
  transition: all 0.2s ease;
}
form .input-group.right-icon:has(input.wpcf7-not-valid) svg {
  color: #EA6666;
  fill: #EA6666;
  transition: all 0.2s ease;
}
form .input-submit {
  position: relative;
}
form .input-submit input, form .input-submit button {
  width: 100%;
  padding: 28px 24px;
  border: none;
  border-radius: 16px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: #333F56;
  background-color: #FFB830;
}
form .input-submit input:hover, form .input-submit input:focus, form .input-submit button:hover, form .input-submit button:focus {
  background-color: #FFD057;
}
form .input-submit input, form .input-submit button {
  cursor: pointer;
}
form .row-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}
form .row-buttons input, form .row-buttons button {
  width: 100%;
  flex-shrink: 1;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  height: 76px;
}

@media (max-width: 500px) {
  form .input-group input,
  form .input-group textarea {
    padding: 20px;
    font-size: 16px;
  }
  form .input-group input::-moz-placeholder, form .input-group textarea::-moz-placeholder {
    font-size: 16px;
  }
  form .input-group input::placeholder,
  form .input-group textarea::placeholder {
    font-size: 16px;
  }
  form .input-group.right-icon svg {
    top: 24px;
    right: 20px;
    width: 16px;
    height: 16px;
    color: #C8D4E5;
    fill: #C8D4E5;
  }
  form .input-group.right-icon:has(input:not(:-moz-placeholder)) svg {
    color: #909FB6;
    fill: #909FB6;
  }
  form .input-group.right-icon:has(input:focus) svg,
  form .input-group.right-icon:has(input:not(:placeholder-shown)) svg {
    color: #909FB6;
    fill: #909FB6;
  }
  form .input-group.right-icon textarea svg {
    top: 20px;
    transform: none;
  }
  form .input-submit input,
  form .input-submit button {
    padding: 20px;
    font-size: 18px;
  }
  form .row-buttons input, form .row-buttons button {
    font-size: 16px;
    height: 60px;
  }
}
.wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-spinner {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  background-color: transparent !important;
  backdrop-filter: blur(2px) !important;
  opacity: 1 !important;
}
.wpcf7-spinner::before {
  top: calc(50% - 14px) !important;
  left: calc(50% - 14px) !important;
  width: 10px !important;
  height: 10px !important;
  transform-origin: 14px 14px !important;
  background-color: #ffffff !important;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 0.2em 1em;
  font-family: "Inter";
  font-size: 14px;
}

form.sent .wpcf7-response-output {
  color: #f9fffa !important;
  background-color: #46b450 !important;
  border-color: #46b450 !important;
}

form.failed .wpcf7-response-output,
form.aborted .wpcf7-response-output,
form.spam .wpcf7-response-output,
form.invalid .wpcf7-response-output,
form.unaccepted .wpcf7-response-output,
form.payment-required .wpcf7-response-output {
  color: #fff6f6 !important;
  background-color: #DC0000 !important;
  border-color: #DC0000 !important;
}

.iti {
  width: 100%;
}
.iti .iti__country-container {
  padding-left: 16px;
}
.iti .iti__tel-input {
  padding-left: 72px !important;
}
.iti .iti__dropdown-content {
  width: 300px !important;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.25);
  border: none;
  overflow: hidden;
}
.iti .iti__search-input {
  padding: 12px 24px;
}

.intl-tel-input {
  width: 100%;
}
.intl-tel-input .flag-container {
  padding-left: 16px !important;
}
.intl-tel-input .wpcf7-intl-tel {
  padding-left: 72px !important;
}
.intl-tel-input .country-list {
  width: 300px !important;
  border-radius: 16px !important;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.25) !important;
  border: none !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 100%;
  padding: 10px !important;
}

.form__or {
  margin: 40px 0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #4D7295;
}

.nsl-container .nsl-container-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nsl-container .nsl-container-buttons a {
  text-decoration: none !important;
}
.nsl-container .nsl-container-buttons .nsl-button {
  width: 100% !important;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #e2eaf2 !important;
  border-radius: 12px !important;
  border: none !important;
  box-shadow: none !important;
}
.nsl-container .nsl-container-buttons .nsl-button .nsl-button-svg-container {
  padding: 0 !important;
  width: 30px !important;
  height: 30px !important;
  flex-shrink: 0 !important;
}
.nsl-container .nsl-container-buttons .nsl-button .nsl-button-svg-container svg {
  width: 30px !important;
  height: 30px !important;
}
.nsl-container .nsl-container-buttons .nsl-button .nsl-button-label-container {
  padding: 0;
  margin: 0;
  flex-grow: 0 !important;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #212C40;
  opacity: 0.6 !important;
  text-decoration: none !important;
}
.nsl-container .nsl-container-buttons .nsl-button .nsl-button-label-container strong, .nsl-container .nsl-container-buttons .nsl-button .nsl-button-label-container b {
  font-weight: 400;
}

#addFavoriteModal .favorite_list {
  display: flex;
  flex-direction: column;
}
#addFavoriteModal .favorite_list input[type=radio] {
  display: none;
}
#addFavoriteModal .favorite_list label {
  width: 100%;
  height: 60px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #e2ebf5;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  color: #212C40;
  cursor: pointer;
}
#addFavoriteModal .favorite_list label:hover, #addFavoriteModal .favorite_list label:focus {
  background-color: #D6EAFF;
}
#addFavoriteModal .favorite_list input[type=radio]:checked + label {
  background-color: #D6EAFF;
  color: #3575B1;
}
#addFavoriteModal .add-new-favorite {
  width: 100%;
  height: 60px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  border-radius: 12px;
  border: 1px solid #3575B1;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  color: #3575B1;
  cursor: pointer;
}
#addFavoriteModal .add-new-favorite:hover, #addFavoriteModal .add-new-favorite:focus {
  background-color: #D6EAFF;
}
#addFavoriteModal .input-submit {
  margin-top: 32px;
}

#createNewFavoriteModal .wpcf7-form .wpcf7-response-output {
  display: none;
}
#createNewFavoriteModal .wpcf7-form.invalid .wpcf7-response-output {
  display: block;
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top],
.dropdown-menu[x-placement^=right],
.dropdown-menu[x-placement^=bottom],
.dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.dropdown-hover {
  position: relative;
}
.dropdown-hover ul {
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 102%;
  border: none;
  border-radius: 10px;
  list-style: none;
  overflow: hidden;
  z-index: 10;
}
.dropdown-hover ul li {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #dce8f4;
  background-color: #f6f9fa;
  height: 48px;
}
.dropdown-hover ul li:hover {
  background-color: #dce8f4;
}
.dropdown-hover ul li:last-child {
  border-bottom: none;
}
.dropdown-hover ul li a {
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: nowrap;
  gap: 8px;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  text-wrap: nowrap;
  color: #3d4b64;
}
.dropdown-hover ul li a .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.dropdown-hover ul li .button {
  justify-content: start;
  height: 100%;
  width: 100%;
  border-radius: 0;
  background-color: transparent;
}
.dropdown-hover:hover ul {
  display: flex;
}

/* Стилизация общего контейнера скроллбара */
::-webkit-scrollbar {
  width: 10px;
  /* ширина вертикального скролла */
  height: 10px;
  /* высота горизонтального скролла */
}

/* Цвет фона трека скроллбара */
::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  /* цвет фона */
  border-radius: 10px;
  /* скругление углов */
}

/* Цвет и стиль ползунка */
::-webkit-scrollbar-thumb {
  background-color: #888;
  /* цвет ползунка */
  border-radius: 10px;
  /* скругление углов */
  border: 2px solid #f0f0f0;
  /* пространство между треком и ползунком */
}

/* Цвет ползунка при наведении */
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* более темный цвет при наведении */
}

html {
  box-sizing: border-box;
}

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

*:hover {
  transition: all 0.3s ease;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #333F56;
  background-color: #373B44;
}

a {
  color: #2977C1;
}
a:hover {
  color: #1C568D;
}
a .active {
  color: #6497C6;
}

ul {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Geologica", sans-serif;
  font-size: 100px;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 500px) {
  h1 {
    font-size: 45px;
  }
}
.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.section {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section .section__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: auto;
}
.section .section__inner {
  position: relative;
  width: 100%;
}
.section .section__title {
  font-family: "Geologica", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #333F56;
}
.section .section__title span {
  color: #3575B1;
}
.section .section__content {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
.section .section__content p {
  margin-bottom: 20px;
}
.section .section__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 500px) {
  .container {
    padding: 0;
    margin: 0 auto;
    max-width: 320px;
  }
  .section .section__inner {
    padding: 80px 0;
  }
  .section .section__inner .section__title {
    font-size: 38px;
  }
  .section .section__inner .section__content {
    font-size: 18px;
  }
  .section .section__inner .section__img {
    margin: 0 -20px;
  }
  .section .section__inner .section__img img {
    width: 100%;
    height: auto;
  }
}
:root {
  --button-color-black: #333f56;
  --button-color-white: #ffffff;
  --button-color-blue: #4d7295;
  --button-color-blue2: #3575b1;
  --button-color-orange: #ffb830;
  --button-color-red: #e67987;
  --button-color-red2: #e78f9b;
  --button-color-dark-red: #D63F69;
  --button-color-dark-red-hover: #b03155;
  --button-color-gray: #ebf1f7;
}

button {
  cursor: pointer;
}

.button {
  padding: 10px 15px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 4px;
  border: none;
  border-radius: 10px;
  background-color: #FFB830;
  color: #333F56;
  cursor: pointer;
}
.button:hover, .button:focus {
  background-color: #FFD057;
}
.button.active {
  background-color: #FFAA47;
}
.button.button--lg {
  padding: 25px 45px;
  font-size: 18px;
}
.button--secondary {
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--button-color-blue);
}
.button--secondary:hover, .button--secondary:focus {
  background-color: rgba(255, 255, 255, 0.8);
}
.button--secondary-icon {
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--button-color-blue);
}
.button--secondary-icon:hover, .button--secondary-icon:focus {
  background-color: rgba(255, 255, 255, 0.8);
}
.button--error {
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--button-color-red);
}
.button--error:hover, .button--error:focus {
  background-color: rgba(255, 255, 255, 0.8);
}
.button--transparent {
  background-color: transparent;
}
.button--transparent:hover, .button--transparent:focus {
  background-color: rgba(255, 255, 255, 0.5);
}
.button--outline {
  border: 1px solid var(--button-color-blue);
  background-color: transparent;
  color: var(--button-color-blue);
}
.button--outline:hover, .button--outline:focus {
  background-color: rgba(255, 255, 255, 0.5);
}
.button--red {
  background-color: var(--button-color-dark-red);
  color: var(--button-color-white);
}
.button--red:hover, .button--red:focus {
  background-color: var(--button-color-dark-red-hover);
}

.button__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #333F56;
  cursor: pointer;
}
.button__icon:hover, .button__icon:focus {
  background-color: rgba(255, 255, 255, 0.7);
}
.button__icon.active {
  background-color: rgb(255, 255, 255);
}

.header {
  position: fixed;
  width: 100%;
  max-width: 1920px;
  border-bottom: #ebecf7 1px solid;
  background-color: #fff;
  z-index: 500;
}
.header__inner {
  padding: 3px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner .header__left {
  display: flex;
  align-items: center;
}
.header__inner .header__right {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__inner .header__logo {
  margin-right: 60px;
}
.header__inner .header__logo img {
  width: 72px;
  height: auto;
}
.header__inner .header__menu-btn {
  display: none;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  color: #333f56;
  cursor: pointer;
}
.header__inner .header__menu {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.header__inner .menu__list {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
}
.header__inner .menu__list .menu__item {
  margin-right: 16px;
}
.header__inner .menu__list .menu__item:hover > .menu__link {
  color: #4289CC;
  fill: #4289CC;
}
.header__inner .menu__list .menu__item.has-children > .menu__link:after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 4'%3E%3Cpath d='M2.74327 3.43587C2.62353 3.60179 2.37648 3.60179 2.25673 3.43587L0.678144 1.24851C0.534954 1.0501 0.676727 0.772949 0.921409 0.772949L4.07859 0.772949C4.32327 0.772949 4.46505 1.0501 4.32186 1.24851L2.74327 3.43587Z' fill='%233D4B64'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 4px;
}
.header__inner .menu__list .menu__item:hover.has-children > .menu__link:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 4'%3E%3Cpath d='M2.74327 3.43587C2.62353 3.60179 2.37648 3.60179 2.25673 3.43587L0.678144 1.24851C0.534954 1.0501 0.676727 0.772949 0.921409 0.772949L4.07859 0.772949C4.32327 0.772949 4.46505 1.0501 4.32186 1.24851L2.74327 3.43587Z' fill='%234289CC'/%3E%3C/svg%3E");
}
.header__inner .menu__list .menu__item:last-child {
  margin-right: 0;
}
.header__inner .menu__list .menu__item:last-child.has-children > .menu__link:after {
  width: 14px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z' fill='%233D4B64'/%3E%3C/svg%3E");
  margin-left: 4px;
}
.header__inner .menu__list .menu__item:last-child:hover.has-children > .menu__link:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z' fill='%234289CC'/%3E%3C/svg%3E");
}
.header__inner .has-children {
  position: relative;
}
.header__inner .has-children > .submenu__list {
  margin: 0;
  min-width: 200px;
  padding: 2px;
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background-color: transparent;
  border: none;
  list-style: none;
}
.header__inner .has-children > .submenu__list > .submenu__item {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dce8f4;
  background-color: #ebf1f7;
}
.header__inner .has-children > .submenu__list > .submenu__item:first-child {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.header__inner .has-children > .submenu__list > .submenu__item:last-child {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom: none;
}
.header__inner .has-children > .submenu__list > .submenu__item:hover {
  background-color: #deebf8;
}
.header__inner .has-children > .submenu__list > .submenu__item .submenu__link {
  flex-grow: 1;
  padding: 10px 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  color: #3D4B64;
}
.header__inner .has-children > .submenu__list > .submenu__item:last-child {
  border-bottom: none;
}
.header__inner .has-children:hover > .submenu__list {
  display: block;
}
.header__inner .has-children .has-children::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #3D4B64;
  border-bottom: 2px solid #3D4B64;
  transform: rotate(-45deg);
  margin-right: 16px;
}
.header__inner .has-children .has-children > .submenu__list {
  top: 0%;
  left: 100%;
  margin-left: 2px;
}
.header__inner .menu__link {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 45px;
  text-wrap: nowrap;
  color: #3D4B64;
}
.header__inner .menu__item:last-child > .submenu__list {
  width: 885px;
  top: 100%;
  left: -440px;
  padding: 50px 70px;
  display: none;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  background-color: #ebf1f7;
  border: none;
  border-radius: 20px;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item {
  display: none;
  border: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1), .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) {
  width: 40%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  gap: 26px;
  left: 0;
  border: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1)::after, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2)::after {
  display: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1):hover, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2):hover {
  background-color: #ebf1f7;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__link, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__link {
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  left: 0;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item {
  border: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item:hover, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item:hover {
  background-color: #ebf1f7;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item > .submenu__link, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item > .submenu__link {
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  left: 0;
  border: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3)::after {
  display: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3):hover {
  background-color: #ebf1f7;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__link {
  display: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  left: 0;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item {
  border: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item:hover {
  background-color: #ebf1f7;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link {
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link span,
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link sup {
  margin-left: 4px;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  background-color: #ffb830;
  color: #3D4B64;
  vertical-align: text-bottom;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
}
.header__inner .menu__item:last-child > .submenu__list .submenu__link:hover {
  color: #4b8dcc;
}
.header__inner .menu__item:last-child:hover > .submenu__list {
  display: flex;
}
.header__inner .header__icon {
  display: flex;
  align-items: center;
}
.header__inner .header__login-logout .icon__link--login {
  display: inline-block;
}
.header__inner .header__login-logout .icon__link--logout {
  display: none;
}
.header__inner .header__login-logout.auth .icon__link--login {
  display: none;
}
.header__inner .header__login-logout.auth .icon__link--logout {
  display: inline-block;
}
.header__inner .icon__link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__inner .icon__link--heart {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.header__inner .icon__link--heart svg {
  color: #95b9db;
}
.header__inner .icon__link--heart svg.heart-outline {
  fill: #95b9db;
}
.header__inner .icon__link--heart svg.heart-full {
  display: none;
  fill: #ffb830;
}
.header__inner .icon__link--heart .number {
  display: none;
}
.header__inner .icon__link--heart.active svg {
  fill: #ffb830;
  color: #ffb830;
}
.header__inner .icon__link--heart.active svg.heart-outline {
  display: none;
}
.header__inner .icon__link--heart.active svg.heart-full {
  display: inline-flex;
}
.header__inner .icon__link--heart.active .number {
  width: 34px;
  height: 34px;
  margin-left: -34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3D4B64;
  font-weight: 500;
  font-size: 10px;
  line-height: 34px;
}
.header__inner .icon__link--login, .header__inner .icon__link--logout {
  padding: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: none;
  background-color: transparent;
}
.header__inner .icon__link .icon__name {
  display: none;
}
.header__inner .header__phones {
  position: relative;
  display: flex;
  align-items: center;
}
.header__inner .header__phones .header__phone > .phone__link {
  font-family: "Geologica", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  line-height: 14px;
  text-wrap: nowrap;
  color: #3D4B64;
}
.header__inner .header__phones .header__phone > .phone__link:after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 4'%3E%3Cpath d='M2.74327 3.43587C2.62353 3.60179 2.37648 3.60179 2.25673 3.43587L0.678144 1.24851C0.534954 1.0501 0.676727 0.772949 0.921409 0.772949L4.07859 0.772949C4.32327 0.772949 4.46505 1.0501 4.32186 1.24851L2.74327 3.43587Z' fill='%233D4B64'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 4px;
}
.header__inner .header__phones .header__phone > .phones__list {
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: -30px;
  border: none;
  list-style: none;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #dce8f4;
  background-color: #ebf1f7;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item:first-child {
  border-radius: 20px 20px 0 0;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item:last-child {
  border-radius: 0 0 20px 20px;
  border-bottom: none;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item:hover {
  background-color: #deebf8;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item .phone__link {
  padding: 16px 30px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  text-wrap: nowrap;
  color: #3D4B64;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item .phone__link img {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item:last-child {
  border-bottom: none;
}
.header__inner .header__phones .header__phone:hover > .phones__list {
  display: flex;
}
.header__inner .header__lang {
  display: flex;
  align-items: center;
}
.header__inner .lang__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 7px;
}
.header__inner .lang__link {
  font-weight: 500;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  text-decoration: none;
  text-transform: capitalize;
  color: #3D4B64;
}
.header__inner .lang__link:hover, .header__inner .lang__link:focus, .header__inner .lang__link.active {
  color: #4289CC;
}
.header__inner .header__button {
  display: flex;
  align-items: center;
}
.header__inner .header__ribbons {
  margin-top: -5px;
  margin-right: -20px;
  position: relative;
  width: 0;
  height: 60px;
}
.header__inner .header__ribbons .ribbons__inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
}
.header__inner .header__ribbons .ribbons__inner img {
  width: 50px;
  height: auto;
}

@media (max-width: 500px) {
  .header .header__ribbons {
    display: none;
  }
  .header .header__inner {
    height: 70px;
  }
  .header .header__left {
    width: 100%;
    justify-content: space-between;
  }
  .header .header__left .header__logo {
    height: 50px;
    display: flex;
    margin-right: 0;
  }
  .header .header__left .header__logo img {
    height: 50px;
    width: auto;
  }
  .header .header__menu-btn {
    display: block;
  }
  .header .header__right {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #ebf1f7;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 70px 0 100px;
    transition: all 0.3s ease;
  }
  .header .header__right .header__menu-btn--close {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .header .header__right .header__menu {
    margin: 0;
  }
  .header .header__right .header__menu .menu__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .header .header__right .header__menu .menu__list .menu__item {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    background-color: #ebf1f7;
    border-bottom: 1px solid #dce8f4;
  }
  .header .header__right .header__menu .menu__list .menu__item:first-child {
    border-top: 1px solid #dce8f4;
  }
  .header .header__right .header__menu .menu__list .menu__item .menu__link {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item .menu__link:hover {
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item .menu__link svg {
    display: none;
  }
  .header .header__right .header__menu .menu__list .menu__item.has-children > .menu__link::after {
    position: absolute;
    top: 16px;
    right: 4px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #3D4B64;
    border-bottom: 2px solid #3D4B64;
    transform: rotate(-45deg);
    margin-right: 16px;
    transition: all 0.2s ease;
    opacity: 0.3;
    background: none;
  }
  .header .header__right .header__menu .menu__list .menu__item.has-children.open > .menu__link {
    background-color: #deebf8;
  }
  .header .header__right .header__menu .menu__list .menu__item.has-children.open > .menu__link::after {
    transform: rotate(45deg);
    transition: all 0.2s ease;
  }
  .header .header__right .header__menu .menu__list .menu__item.has-children.open .has-children.open > .submenu__link {
    background-color: #ebf1f7 !important;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list {
    position: relative;
    left: auto;
    top: auto;
    padding: 0;
    margin: 0;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #dce8f4;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item:first-child {
    border-top: 1px solid #dce8f4;
    border-radius: 0;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item:last-child {
    border-bottom: none;
    border-radius: 0;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item > .submenu__link {
    display: block;
    padding: 10px 24px 10px 36px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item > .submenu__link:hover {
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item > .submenu__link::before {
    position: absolute;
    top: 10px;
    left: 20px;
    content: "•";
    display: block;
    color: #3d4b64;
    opacity: 0.7;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children > .submenu__link::after {
    position: absolute;
    top: 16px;
    right: 4px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #3d4b64;
    border-bottom: 2px solid #3d4b64;
    transform: rotate(-45deg);
    margin-right: 16px;
    transition: all 0.2s ease;
    opacity: 0.3;
    background-image: none;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children.open > .submenu__link {
    background-color: #deebf8;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children.open > .submenu__link::after {
    transform: rotate(45deg);
    transition: all 0.2s ease;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item > .submenu__link {
    padding-left: 48px;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item > .submenu__link::before {
    content: "••";
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item > .submenu__link {
    padding-left: 60px;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item > .submenu__link::before {
    content: "•••";
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    background-color: #ebf1f7;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .menu__link {
    display: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    padding: 0;
    display: block !important;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item {
    background-color: transparent;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item > .submenu__link {
    padding-left: 24px;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item > .submenu__link::before {
    display: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list, .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list {
    display: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item, .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item {
    border-bottom: 1px solid #dce8f4;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item > .submenu__link, .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item > .submenu__link {
    display: block;
    padding: 10px 24px 10px 36px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item > .submenu__link:before, .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item > .submenu__link:before {
    content: "•";
    left: 20px;
    opacity: 0.7;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__link {
    display: none;
    border: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list {
    display: block;
    position: relative;
    left: auto;
    top: auto;
    padding: 0;
    margin: 0;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border-bottom: 1px solid #dce8f4;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item:first-child {
    border-top: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item:last-child {
    border-bottom: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link {
    display: block;
    padding: 10px 24px 10px 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link sup {
    position: absolute;
    right: 16px;
    margin-left: 4px;
    display: inline-block;
    padding: 1px 7px 0;
    border-radius: 10px;
    background-color: #ffb830;
    color: #3d4b64;
    vertical-align: text-bottom;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link:hover {
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link::before {
    position: absolute;
    top: 10px;
    left: 24px;
    content: "•";
    display: none;
    color: #3d4b64;
    opacity: 0.3;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link span {
    position: absolute;
    top: 8px;
    right: 16px;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item.has-children > .submenu__link::after {
    position: absolute;
    top: 16px;
    right: 4px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #3d4b64;
    border-bottom: 2px solid #3d4b64;
    transform: rotate(45deg);
    margin-right: 16px;
    transition: all 0.2s ease;
    opacity: 0.3;
    background-image: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item.has-children.open > .submenu__link {
    background-color: #deebf8;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item.has-children.open > .submenu__link::after {
    transform: rotate(-135deg);
    transition: all 0.2s ease;
  }
  .header .header__right .header__menu .has-children::after {
    display: none !important;
  }
  .header .header__right .header__menu .has-children:not(.open):hover > .submenu__list {
    display: none;
  }
  .header .header__right .header__icon {
    position: relative;
    display: block;
    padding: 10px 24px;
    border-bottom: 1px solid #dce8f4;
    text-decoration: none;
  }
  .header .header__right .header__icon .icon__link--heart svg.heart-outline {
    display: inline-block;
    width: 18px;
    height: 16px;
  }
  .header .header__right .header__icon .icon__link--telegram svg {
    display: inline-block;
    width: 18px;
    height: 16px;
  }
  .header .header__right .header__icon .icon__link--heart.active svg.heart-full {
    display: none;
  }
  .header .header__right .header__icon .number {
    display: none;
  }
  .header .header__right .header__icon .icon__name {
    display: inline-block;
    margin-left: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
  }
  .header .header__right .header__icon .icon__link--heart.active .number {
    position: absolute;
    width: auto;
    height: auto;
    margin: 0;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    background-color: #ffb830;
    color: #3d4b64;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    line-height: 20px;
    font-weight: 500;
    top: 8px;
    right: 16px;
  }
  .header .header__right .header__phones {
    width: 100%;
  }
  .header .header__right .header__phones .header__phone {
    width: 100%;
  }
  .header .header__right .header__phones .header__phone .phone__link {
    position: relative;
    display: block;
    padding: 10px 24px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
    border-bottom: 1px solid #dce8f4;
    text-decoration: none;
  }
  .header .header__right .header__phones .header__phone .phone__link svg {
    display: none;
  }
  .header .header__right .header__phones .header__phone > .phone__link::after {
    position: absolute;
    top: 16px;
    right: 4px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #3D4B64;
    border-bottom: 2px solid #3D4B64;
    transform: rotate(-45deg);
    margin-right: 16px;
    transition: all 0.2s ease;
    opacity: 0.3;
    background: none;
  }
  .header .header__right .header__phones .header__phone.open > .phone__link {
    background-color: #deebf8;
  }
  .header .header__right .header__phones .header__phone.open > .phone__link::after {
    transform: rotate(45deg);
    transition: all 0.2s ease;
  }
  .header .header__right .header__phones .header__phone .phones__list {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
  }
  .header .header__right .header__phones .header__phone .phones__list .phone__item {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #dce8f4;
    border-radius: 0;
  }
  .header .header__right .header__phones .header__phone .phones__list .phone__item .phone__link {
    padding: 10px 24px;
    text-decoration: none;
  }
  .header .header__right .header__lang {
    width: 100%;
  }
  .header .header__right .header__lang .lang__list {
    width: 100%;
    position: relative;
    padding: 10px 24px;
    gap: 20px;
  }
  .header .header__right .header__button {
    width: 100%;
    padding: 10px 24px;
  }
  .header .header__right .header__button .button {
    width: 100%;
  }
  body.menu__open {
    overflow: hidden;
  }
  body.menu__open .header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(63, 65, 102, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.5s ease;
  }
  body.menu__open .header .header__inner .header__right {
    right: 0;
    transition: all 0.5s ease;
  }
}
.page-breadcrumbs > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #333F56;
  margin-bottom: 32px;
}
.page-breadcrumbs > span a {
  color: #3575B1;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.page-breadcrumbs > span a:hover {
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}
.page-breadcrumbs > span .breadcrumb_last {
  opacity: 0.7;
}

@media (max-width: 500px) {
  .page-breadcrumbs > span {
    margin-bottom: 14px;
  }
  .page-breadcrumbs > span .breadcrumb_last {
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.section__cta {
  min-height: 696px;
  background-image: url("../images/section-cta-bg.jpg");
}
.section__cta .section__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.section__cta .section__inner .section__title {
  max-width: 550px;
  font-size: 54px;
  line-height: 54px;
  color: #ffffff;
  margin-bottom: 40px;
}
.section__cta .section__inner .section__title span {
  color: #FFB830;
}
.section__cta .section__inner .section__title {
  z-index: 1;
}
.section__cta .section__inner .section__text {
  position: relative;
  max-width: 475px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 50px;
  z-index: 1;
}
.section__cta .section__inner .cta__catalog {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(175px, -50%);
  z-index: auto;
}
.section__cta .section__inner .cta__catalog img.desktop {
  max-width: 1013px;
  height: auto;
}
.section__cta .section__inner .cta__catalog img.mobile {
  display: none;
}
.section__cta .section__inner .cta__catalog .cta__ribbon_yellow,
.section__cta .section__inner .cta__catalog .cta__ribbon_white {
  width: 136px;
  height: 136px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Geologica", sans-serif;
  top: 43px;
  left: 553px;
  color: #333F56;
  text-align: center;
  gap: 5px;
}
.section__cta .section__inner .cta__catalog .cta__ribbon_yellow span,
.section__cta .section__inner .cta__catalog .cta__ribbon_white span {
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  line-height: 100%;
}
.section__cta .section__inner .cta__catalog .cta__ribbon_yellow span:nth-child(2),
.section__cta .section__inner .cta__catalog .cta__ribbon_white span:nth-child(2) {
  font-size: 24px;
}
.section__cta .section__inner .cta__catalog .cta__ribbon_yellow span:nth-child(3),
.section__cta .section__inner .cta__catalog .cta__ribbon_white span:nth-child(3) {
  font-size: 13px;
  font-weight: 900;
}
.section__cta .section__inner .cta__catalog .cta__ribbon_white {
  top: 43px;
  left: 697px;
}
.section__cta .section__inner .cta__catalog .cta__month {
  width: 160px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-65px, 207px) rotate(-9deg);
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.section__cta .section__inner .cta__catalog .cta__price {
  width: 245px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(100px, 177px) skew(12deg, -7deg);
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #333F56;
}
.section__cta .section__inner .cta__form {
  position: relative;
  max-width: 585px;
  margin-bottom: 30px;
  z-index: 1;
}
.section__cta .section__inner .cta__form .form__inner {
  padding: 2px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #EBF1F7;
}
.section__cta .section__inner .cta__form .form__inner .input-group {
  margin-bottom: 0;
}
.section__cta .section__inner .cta__form .form__inner .input-group input {
  border-radius: 0;
  padding: 6px 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #212C40;
  background-color: transparent;
}
.section__cta .section__inner .cta__form .form__inner .input-group:nth-child(1) {
  width: 40%;
  border-right: 1px solid #C8D4E5;
}
.section__cta .section__inner .cta__form .form__inner .input-group:nth-child(2) {
  width: 60%;
}
.section__cta .section__inner .cta__form .form__inner .input-submit input {
  width: 100%;
  padding: 21px 25px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  transition: all 0.3s ease;
}
.section__cta .section__inner .cta__form-notice {
  max-width: 475px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.section__cta .section__inner .cta__form-notice a {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 500px) {
  .section__cta {
    min-height: auto;
    background-image: url("../images/section-cta-mob-bg.jpg");
  }
  .section__cta .section__inner {
    padding: 80px 0;
  }
  .section__cta .section__inner .section__title {
    font-size: 30px;
    line-height: 110%;
  }
  .section__cta .section__inner .section__content .section__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.02em;
    margin-bottom: 0;
  }
  .section__cta .section__inner .section__content .cta__catalog {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 0 calc((100% - 100vw) / 2);
    display: block;
  }
  .section__cta .section__inner .section__content .cta__catalog img.desktop {
    display: none;
  }
  .section__cta .section__inner .section__content .cta__catalog img.mobile {
    display: block;
    width: 100%;
    height: auto;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__month {
    top: auto;
    left: 0;
    bottom: 0;
    width: 24%;
    height: 7%;
    transform: translate(149%, -192%) rotate(-9deg);
    font-size: 11px;
    line-height: 13px;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_yellow,
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_white {
    width: 20.5%;
    height: 18.5%;
    top: 7%;
    left: 53%;
    gap: 2px;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_yellow span,
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_white span {
    font-size: 9px;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_yellow span:nth-child(2),
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_white span:nth-child(2) {
    font-size: 14px;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_yellow span:nth-child(3),
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_white span:nth-child(3) {
    font-size: 7px;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_white {
    top: 7%;
    left: 75.5%;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__price {
    top: auto;
    left: 0;
    bottom: 0;
    width: 39%;
    height: 7%;
    transform: translate(156%, -257%) skew(12deg, -7deg);
    font-size: 11px;
  }
  .section__cta .section__inner .section__content .cta__form .form__inner {
    flex-direction: column;
    background-color: transparent;
    gap: 10px;
  }
  .section__cta .section__inner .section__content .cta__form .form__inner .input-group {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: #EBF1F7;
    border-radius: 16px;
  }
  .section__cta .section__inner .section__content .cta__form .form__inner .input-submit {
    width: 100%;
  }
}
.section__about {
  min-height: 1024px;
  background-image: url("../images/section-about-bg.jpg");
}
.section__about .section__inner {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 90px;
}
.section__about .about__ribbons {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}
.section__about .about__ribbons .ribbons__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
}
.section__about .about__ribbons .ribbons__inner img {
  width: 47px;
  height: auto;
}
.section__about .section__img {
  display: none;
}
.section__about .section__content {
  max-width: 800px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #333F56;
}
.section__about .section__content .lead {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 30px;
}
.section__about .section__content ul {
  list-style: none;
  padding-left: 50px;
  margin-bottom: 30px;
}
.section__about .section__content ul li {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 130%;
  margin-bottom: 20px;
}
.section__about .section__content ul li::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background-color: #333F56;
  top: 12px;
  left: -50px;
}
.section__about .about__profits {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section__about .about__profits .profit {
  position: relative;
  width: 219px;
  height: 188px;
  padding: 30px 20px;
  border: 4px solid #333F56;
  border-radius: 31px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section__about .about__profits .profit:nth-child(1) {
  width: 220px;
}
.section__about .about__profits .profit:nth-child(2) {
  width: 160px;
}
.section__about .about__profits .profit:nth-child(3) {
  width: 210px;
}
.section__about .about__profits .profit:nth-child(4) {
  width: 180px;
}
.section__about .about__profits .profit:nth-child(5) {
  width: 170px;
}
.section__about .about__profits .profit__number {
  font-family: "Geologica", sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #333F56;
}
.section__about .about__profits .profit__text {
  font-family: "Geologica", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #333F56;
  text-align: right;
}
.section__about .about__profits .profit.more {
  width: 170px;
  border: none;
  background-color: #FFC14B;
  color: #333F56;
  text-decoration: none;
}
.section__about .about__profits .profit.more:hover {
  background-color: #FFD057;
}
.section__about .about__profits .profit.more .profit__text {
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}
.section__about .about__profits .profit.more .more__icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid #333F56;
  border-radius: 50%;
  color: #333F56;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 500px) {
  .section__about {
    min-width: none;
    background-color: #ffffff;
    background-image: url(/wp-content/themes/tp_hayat/images/section-about-mob-bg.png);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .section__about .section__inner {
    gap: 10px;
  }
  .section__about .section__inner .about__ribbons {
    display: block;
  }
  .section__about .section__inner .section__title {
    margin-bottom: 0;
    width: 50%;
    margin-bottom: 425px;
  }
  .section__about .section__inner .section__img {
    display: flex;
  }
  .section__about .section__inner .section__content {
    max-width: none;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 40px;
  }
  .section__about .section__inner .section__content .lead {
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 30px;
  }
  .section__about .section__inner .section__content ul {
    list-style: none;
    padding-left: 50px;
    margin-bottom: 30px;
  }
  .section__about .section__inner .section__content ul li {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .section__about .section__inner .about__profits {
    display: grid;
    grid-template-columns: 126px 25px 25px 126px;
    grid-template-rows: repeat(3, 126px);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    margin: 0 auto;
  }
  .section__about .section__inner .about__profits .profit {
    padding: 20px;
    width: 100%;
    height: 100%;
    border-width: 2px;
    border-radius: 20px;
  }
  .section__about .section__inner .about__profits .profit .profit__number {
    font-size: 30px;
    line-height: 30px;
  }
  .section__about .section__inner .about__profits .profit .profit__text {
    font-size: 14px;
    line-height: 14px;
  }
  .section__about .section__inner .about__profits .profit .more__icon {
    width: 30px;
    height: 30px;
    right: 10px;
    bottom: 10px;
  }
  .section__about .section__inner .about__profits .profit .more__icon svg {
    width: 16px;
    height: 16px;
  }
  .section__about .section__inner .about__profits .profit:last-child .profit__text {
    font-size: 18px;
    line-height: 18px;
  }
  .section__about .section__inner .about__profits .profit:nth-child(1) {
    grid-area: 1/1/2/4;
  }
  .section__about .section__inner .about__profits .profit:nth-child(2) {
    grid-area: 1/4/2/5;
  }
  .section__about .section__inner .about__profits .profit:nth-child(3) {
    grid-area: 2/1/3/2;
  }
  .section__about .section__inner .about__profits .profit:nth-child(4) {
    grid-area: 2/2/3/5;
  }
  .section__about .section__inner .about__profits .profit:nth-child(5) {
    grid-area: 3/1/4/3;
  }
  .section__about .section__inner .about__profits .profit:nth-child(6) {
    grid-area: 3/3/4/5;
  }
}
@media screen and (max-width: 400px) {
  .section__about .section__inner .section__title {
    margin-bottom: 350px;
  }
}
@media screen and (max-width: 350px) {
  .section__about .section__inner .section__title {
    margin-bottom: 275px;
  }
  .section__about .section__inner .about__profits {
    grid-template-columns: 116px 10px 10px 116px;
    grid-template-rows: repeat(3, 126px);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }
}
.section__faq {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #EBF1F7;
  display: flex;
  align-items: center;
}
.section__faq .section__inner {
  padding: 120px 0 120px;
  position: relative;
  width: 970px;
  margin: 0 auto;
  z-index: auto;
}
.section__faq .section__title {
  text-align: center;
  margin-bottom: 70px;
}
.section__faq .faq__accordion {
  width: 100%;
}
.section__faq .accordion__item {
  position: relative;
  width: 100%;
  padding: 30px 0;
}
.section__faq .accordion__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px; /* Толщина линии */
  background-image: radial-gradient(circle, rgba(51, 63, 86, 0.2) 1px, transparent 1px);
  background-size: 6px 2px; /* Интервалы между точками */
  background-repeat: repeat-x;
}
.section__faq .accordion__item:first-child {
  padding-top: 0;
}
.section__faq .accordion__item:last-child::after {
  display: none;
}
.section__faq .accordion__item .accordion__title {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  font-family: "Geologica", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
  background-color: transparent;
  color: #333F56;
  cursor: pointer;
}
.section__faq .accordion__item .accordion__title .accordion__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #333F56;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333F56;
  transition: 300ms transform;
}
.section__faq .accordion__item .accordion__title:hover {
  color: #1C568D;
}
.section__faq .accordion__item .accordion__title:hover .accordion__arrow {
  color: #1C568D;
  border: 1px solid #1C568D;
}
.section__faq .accordion__item .accordion__content {
  width: 900px;
  max-height: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #333F56;
  transition: max-height 0.2s ease-in-out;
  overflow: hidden;
}
.section__faq .accordion__item .accordion__content p {
  margin-bottom: 20px;
}
.section__faq .accordion__item .accordion__content p:first-child {
  padding-top: 20px;
}
.section__faq .accordion__item .accordion__content p:last-child {
  margin-bottom: 0;
}
.section__faq .accordion__item.active .accordion__title {
  color: #3575B1;
}
.section__faq .accordion__item.active .accordion__title .accordion__arrow {
  color: #3575B1;
  border: 1px solid #3575B1;
  transform: rotate(180deg);
  transition: 300ms transform;
}
.section__faq .accordion__item.active .accordion__content {
  max-height: 1000px;
  transition: max-height 0.2s ease-in-out;
}

@media (max-width: 500px) {
  .section__faq {
    min-height: auto;
  }
  .section__faq .section__inner {
    width: auto;
  }
  .section__faq .section__title {
    text-align: left;
    margin-bottom: 60px;
  }
  .section__faq .faq__accordion .accordion__item .accordion__title {
    font-size: 20px;
    line-height: 100%;
    gap: 10px;
    text-align: left;
  }
  .section__faq .faq__accordion .accordion__item .accordion__title .accordion__arrow {
    flex-shrink: 0;
  }
  .section__faq .faq__accordion .accordion__item .accordion__content {
    width: 100%;
    font-size: 14px;
    line-height: 150%;
  }
  .section__faq .faq__accordion .accordion__item .accordion__content img {
    width: 100%;
  }
}
.section__seo {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
}
.section__seo .section__inner {
  padding: 120px 0 120px;
  position: relative;
  width: 970px;
  margin: 0 auto;
  z-index: auto;
}
.section__seo .section__title {
  text-align: center;
  margin-bottom: 70px;
}
.section__seo .section__content {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #333F56;
}
.section__seo .section__content ul, .section__seo .section__content ol, .section__seo .section__content p {
  margin-bottom: 20px;
}
.section__seo .section__content ul:last-child, .section__seo .section__content ol:last-child, .section__seo .section__content p:last-child {
  margin-bottom: 0;
}
.section__seo .section__content li {
  margin-bottom: 10px;
}
.section__seo .section__content li:last-child {
  margin-bottom: 0;
}
.section__seo .section__content img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.section__seo .section__content {
  position: relative;
  max-height: 300px; /* Задайте высоту, после которой текст скрывается */
  overflow: hidden;
  transition: max-height 0.5s ease; /* Плавная анимация раскрытия */
}
.section__seo .section__content.fade::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px; /* Высота градиента */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
}
.section__seo .line-container {
  position: absolute;
  bottom: 100px;
  left: -115px;
  right: -115px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  height: 2px;
  z-index: 99px;
}
.section__seo .line-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px; /* Толщина линии */
  background-image: radial-gradient(circle, rgba(51, 63, 86, 0.2) 1px, transparent 1px);
  background-size: 6px 2px; /* Интервалы между точками */
  background-repeat: repeat-x;
}
.section__seo .show-more-button {
  position: absolute;
  top: -21px; /* Центрируем кнопку на линии */
  left: 50%;
  transform: translateX(-50%);
  padding: 0px 16px;
  background: white;
  z-index: 100;
}
.section__seo .show-more-button button {
  all: unset;
  display: inline-block;
  padding: 0 16px;
  background: white;
  border: 1px solid #333F56;
  border-radius: 50px;
  color: #333F56;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.03em;
  cursor: pointer;
}
.section__seo .expanded {
  max-height: 10000px; /* Задайте значение, достаточное для полного отображения текста */
}
.section__seo .expanded.fade::after {
  display: none;
}
.section__seo .line-hidden {
  display: none;
}

@media (max-width: 500px) {
  .section__seo {
    min-height: auto;
  }
  .section__seo .section__inner {
    width: auto;
  }
  .section__seo .section__inner .section__content {
    font-size: 14px;
  }
}
.footer {
  position: relative;
  padding: 25px 0;
  width: 100%;
  background-image: url("../images/footer-bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .footer__inner {
  position: relative;
  width: 100%;
}
.footer .footer__menu {
  padding: 45px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
.footer .footer__menu .footer__logo img {
  width: 120px;
  height: auto;
}
.footer .footer__menu .menu__list {
  grid-column: 2/-1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.footer .footer__menu .menu__list > .menu__item > .menu__link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FFC876;
  text-decoration: none;
}
.footer .footer__menu .menu__list > .menu__item > .menu__link:hover {
  text-decoration: underline;
}
.footer .footer__menu .menu__list > .menu__item.has-children > .submenu__list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.footer .footer__menu .menu__list > .menu__item.has-children > .submenu__list > .submenu__item {
  margin-bottom: 10px;
}
.footer .footer__menu .menu__list > .menu__item.has-children > .submenu__list > .submenu__item:last-child {
  margin-bottom: 0;
}
.footer .footer__menu .menu__list > .menu__item.has-children > .submenu__list > .submenu__item > .submenu__link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
}
.footer .footer__menu .menu__list > .menu__item.has-children > .submenu__list > .submenu__item > .submenu__link:hover {
  text-decoration: underline;
}
.footer .footer__menu .menu__list > .menu__item:last-child > .menu__link {
  display: none;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list {
  margin-top: 0;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item {
  margin-bottom: 20px;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item:last-child {
  margin-bottom: 0;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FFC876;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__link sup {
  margin-left: 4px;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  background-color: #FFB830;
  color: #3D4B64;
  vertical-align: text-bottom;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__list > .submenu__item {
  margin-bottom: 10px;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__list > .submenu__item:last-child {
  margin-bottom: 30px;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__list > .submenu__item > .submenu__link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__list > .submenu__item > .submenu__link:hover {
  text-decoration: underline;
}
.footer .footer__address {
  padding: 45px 0;
  display: flex;
  gap: 20px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
.footer .footer__address .address {
  width: 100%;
}
.footer .footer__address .address .address__title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #ffffff;
}
.footer .footer__address .address .address__location {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #ffffff;
  opacity: 0.7;
}
.footer .footer__address .address .address__phones {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer__address .address .address__phones .address__phone a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.7;
}
.footer .footer__address .address .address__email {
  margin-top: 20px;
}
.footer .footer__address .address .address__email a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.7;
}
.footer .footer__address .address .address__socials {
  margin-top: 20px;
  display: flex;
  gap: 5px;
}
.footer .footer__seo-block {
  padding: 45px 0;
  display: flex;
  gap: 20px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
.footer .footer__seo-block .shield__footers_module_block__wrapper {
  padding: 0;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__card-body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__card-body .shield__footers_module_block__wrapper__top {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__card-body .shield__footers_module_block__wrapper__bottom {
  width: 80%;
}
.footer .footer__seo-block button {
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FFC876;
  text-decoration: none;
}
.footer .footer__seo-block button:hover {
  text-decoration: underline;
}
.footer .footer__seo-block button {
  border: none;
  background-color: transparent;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.7);
  gap: 20px;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__row > div {
  width: 100%;
  line-height: 200%;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__row a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__row a:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__row li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
.footer .footer__forms {
  padding: 45px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer .footer__forms .footer__form .form__title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.footer .footer__forms .footer__form form .form__inner {
  position: relative;
}
.footer .footer__forms .footer__form form .input-group {
  width: 100%;
  position: relative;
  background-color: transparent;
}
.footer .footer__forms .footer__form form .input-group input {
  height: 70px;
  padding: 10px 90px 10px 20px;
  border-radius: 20px !important;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  background-color: rgba(235, 241, 247, 0.7);
  color: #333F56;
}
.footer .footer__forms .footer__form form .input-group input::-moz-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  color: #212C40;
  opacity: 0.7;
}
.footer .footer__forms .footer__form form .input-group input::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  color: #212C40;
  opacity: 0.7;
}
.footer .footer__forms .footer__form form .input-group input:not(:-moz-placeholder) {
  background-color: rgb(235, 241, 247);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer .footer__forms .footer__form form .input-group input:hover, .footer .footer__forms .footer__form form .input-group input:focus, .footer .footer__forms .footer__form form .input-group input:active, .footer .footer__forms .footer__form form .input-group input:not(:placeholder-shown) {
  background-color: rgb(235, 241, 247);
  transition: all 0.3s ease;
}
.footer .footer__forms .footer__form form .input-group:hover input {
  background-color: rgb(235, 241, 247);
  transition: all 0.3s ease;
}
.footer .footer__forms .footer__form form .input-submit {
  position: absolute;
  top: 0;
  right: 0;
}
.footer .footer__forms .footer__form form .input-submit input, .footer .footer__forms .footer__form form .input-submit button {
  padding: 0;
  position: absolute;
  top: 2px;
  right: 2px;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  border-radius: 18px !important;
  background-color: #679ACB;
  color: #333F56;
  cursor: pointer;
}
.footer .footer__forms .footer__form form .input-submit input:hover input, .footer .footer__forms .footer__form form .input-submit input:hover button, .footer .footer__forms .footer__form form .input-submit button:hover input, .footer .footer__forms .footer__form form .input-submit button:hover button {
  background-color: #84BBEF;
}
.footer .footer__forms .footer__form form .input-submit input, .footer .footer__forms .footer__form form .input-submit button {
  transition: all 0.3s ease;
}
.footer .footer__forms .footer__form.footer__form--subscribe form .input-group input {
  padding-right: 150px;
}
.footer .footer__forms .footer__form.footer__form--subscribe form .input-submit input, .footer .footer__forms .footer__form.footer__form--subscribe form .input-submit button {
  padding: 10px 20px;
  width: auto;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: #333F56;
  background-color: #FFB830;
  transition: all 0.3s ease;
}
.footer .footer__socials {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 45px;
}
.footer .footer__socials::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 400px;
  height: 1px;
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
}
.footer .footer__socials::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 400px;
  height: 1px;
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
}
.footer .footer__socials .footer__social {
  color: #ffffff;
  fill: #ffffff;
}
.footer .footer__socials .footer__social:hover.footer__social--facebook {
  color: #1877F2;
}
.footer .footer__socials .footer__social:hover.footer__social--tiktok {
  color: #FF004F;
}
.footer .footer__socials .footer__social:hover.footer__social--youtube {
  color: #FF0302;
}
.footer .footer__socials .footer__social:hover.footer__social--instagram {
  color: #E1306C;
}
.footer .footer__socials .footer__social:hover.footer__social--telegram {
  fill: #229ED9;
}
.footer .footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.footer .footer__copyright a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer__copyright a:hover {
  text-decoration: underline;
  color: rgb(255, 255, 255);
}

@media (max-width: 500px) {
  .footer {
    min-height: auto;
    background-image: url("../images/footer-mob-bg.jpg");
  }
  .footer .footer__menu {
    display: block;
  }
  .footer .footer__menu .footer__logo {
    margin-bottom: 30px;
  }
  .footer .footer__menu .footer__logo img {
    width: 80px;
  }
  .footer .footer__menu .menu__list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 40px 20px;
  }
  .footer .footer__menu .menu__list .menu__item {
    margin-bottom: 0;
  }
  .footer .footer__menu .menu__list .menu__item .menu__link {
    font-size: 14px;
  }
  .footer .footer__menu .menu__list .menu__item:nth-child(1) {
    grid-area: 1/1/3/2;
  }
  .footer .footer__menu .menu__list .menu__item:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .footer .footer__menu .menu__list .menu__item:nth-child(3) {
    grid-area: 3/1/5/2;
  }
  .footer .footer__menu .menu__list .menu__item:nth-child(4) {
    grid-area: 2/2/4/3;
  }
  .footer .footer__menu .menu__list .menu__item:nth-child(5) {
    grid-area: 4/2/5/3;
  }
  .footer .footer__menu .menu__list .menu__item.has-children .submenu__list .submenu__item {
    margin-bottom: 8px;
  }
  .footer .footer__menu .menu__list .menu__item.has-children .submenu__list .submenu__item .submenu__link {
    font-size: 12px;
  }
  .footer .footer__menu .menu__list .menu__item:last-child.has-children .submenu__list .submenu__item {
    margin-bottom: 8px;
  }
  .footer .footer__menu .menu__list .menu__item:last-child.has-children .submenu__list .submenu__item .submenu__link {
    font-size: 14px;
  }
  .footer .footer__address {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .footer .footer__address .address {
    margin-bottom: 0;
  }
  .footer .footer__address .address .address__title {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .footer .footer__address .address .address__location,
  .footer .footer__address .address .address__phones .address__phone a,
  .footer .footer__address .address .address__email a {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 10px;
  }
  .footer .footer__address .address .address__email {
    margin-top: 10px;
  }
  .footer .footer__forms {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer .footer__forms .footer__form form .input-group input {
    height: 60px;
  }
  .footer .footer__forms .footer__form form .input-group input::-moz-placeholder {
    font-size: 14px;
  }
  .footer .footer__forms .footer__form form .input-group input::placeholder {
    font-size: 14px;
  }
  .footer .footer__forms .footer__form form .input-submit input, .footer .footer__forms .footer__form form .input-submit button {
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
  }
  .footer .footer__forms .footer__form.footer__form--subscribe form .input-submit button {
    font-size: 14px;
    transition: all 0.3s ease;
  }
  .footer .footer__socials {
    margin-bottom: 50px;
  }
  .footer .footer__socials::before, .footer .footer__socials::after {
    display: none;
  }
  .footer .footer__copyright {
    flex-direction: column;
    gap: 15px;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__card-body .shield__footers_module_block__wrapper__top {
    width: 30%;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__card-body .shield__footers_module_block__wrapper__bottom {
    width: 70%;
  }
  .footer .footer__seo-block button {
    font-size: 14px;
    text-align: left;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__row > div {
    width: 100%;
    line-height: 200%;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__row a {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__row a:hover {
    color: rgb(255, 255, 255);
    text-decoration: underline;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__row li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
  }
}
.searchwp-live-search-results {
  opacity: 0;
  background-color: #fff;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  height: 0;
  overflow: hidden;
  z-index: 9999995;
  /* Exceed SearchWP Modal Search Form overlay. */
  position: absolute;
  display: none;
}

.searchwp-live-search-results-showing {
  display: block;
  opacity: 1;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

.searchwp-live-search-no-results {
  padding: 3em 2em 0;
  text-align: center;
}

.searchwp-live-search-no-min-chars:after {
  display: block;
  text-align: center;
  padding: 2em 2em 0;
}

.searchwp-live-search-results {
  border-radius: 20px;
  padding: 10px;
  width: 100%;
  max-width: 375px;
  min-height: 120px;
  max-height: 200px;
}
.searchwp-live-search-results p {
  padding: 5px 10px;
}

.searchwp-live-search-result {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.searchwp-live-search-result .searchwp-live-search-result--img {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
}
.searchwp-live-search-result .searchwp-live-search-result--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.searchwp-live-search-result .searchwp-live-search-result--info a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: #333F56;
}

.fancybox__container {
  padding: 10px;
}

.fancybox__backdrop {
  background: rgba(29, 30, 40, 0.9);
  opacity: 1;
  backdrop-filter: blur(2px);
}

.fancybox__content {
  border-radius: 0;
}
.fancybox__content .fancybox-image {
  display: flex;
  border-radius: 30px;
}

.has-html5video .fancybox__content {
  border: none;
  border-radius: 0;
  background: transparent;
  outline: none;
}

.fancybox__html5video {
  border: none;
  border-radius: 30px;
  outline: none;
}

.f-button {
  --f-button-border: none;
  --f-button-bg: transparent;
  outline: none;
}

hr.hr__dotted {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  height: 2px;
}
hr.hr__dotted::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  /* Толщина линии */
  background-image: radial-gradient(circle, rgba(174, 192, 227, 0.6) 1px, transparent 1px);
  background-size: 6px 2px;
  /* Интервалы между точками */
  background-repeat: repeat-x;
}
hr.hr__dotted.mobile {
  display: none;
}

.section--header {
  min-height: 780px;
  background-color: #EBF1F7;
  background-image: url("../images/section-citizenship-hero-bg.png");
  background-position-y: bottom;
  align-items: flex-start;
}
.section--header .section__inner {
  max-width: 778px;
  padding: 120px 0 80px;
}
.section--header .page-breadcrumbs {
  margin-bottom: 40px;
}
.section--header .section__title {
  font-size: 80px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: -0.03em;
  margin: 0 0 60px;
  color: #333F56;
}
.section--header .section__content {
  max-width: 481px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
  color: #333F56;
}
.section--header .section__actions button {
  padding: 29px 35px;
  height: 70px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  color: #333F56;
}

.section--questions {
  min-height: 1000px;
  background-color: #FFFFFF;
  background-image: url("../images/section-citizenship-questions-bg.png");
  background-position-y: bottom;
  align-items: flex-start;
}
.section--questions .section__inner {
  padding: 110px 0;
}
.section--questions .section__title {
  font-size: 56px;
  line-height: 94%;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  text-align: center;
}
.section--questions .section__subtitle {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0;
  margin-bottom: 72px;
  text-align: center;
}
.section--questions .questions__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.section--questions .questions__item {
  padding: 40px;
  border-radius: 31px;
  background-color: rgba(224, 229, 239, 0.4);
  backdrop-filter: blur(8px);
}
.section--questions .questions__item:nth-child(odd) {
  grid-column-start: 2;
}
.section--questions .questions__title {
  font-family: "Geologica", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 96%;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: #333F56;
}
.section--questions .questions__title span {
  color: #3575B1;
}
.section--questions .questions__text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
  color: #333F56;
}

.section--solutions {
  background-color: #EBF1F7;
}
.section--solutions .section__inner {
  padding: 80px 0;
}
.section--solutions .section__title {
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  margin-bottom: 120px;
  text-align: center;
}
.section--solutions .solutions__list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.section--solutions .solutions__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 80px;
}
.section--solutions .solutions__cover {
  position: relative;
  width: 424px;
  height: 424px;
  border-radius: 32px;
  overflow: hidden;
  flex-shrink: 0;
}
.section--solutions .solutions__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--solutions .solutions__benefits {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section--solutions .solutions__benefit {
  position: relative;
  padding: 12px 14px;
  width: 234px;
  height: 90px;
  background-color: rgba(57, 142, 222, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 16px;
}
.section--solutions .solutions__benefit--light {
  background-color: rgba(255, 255, 255, 0.6);
}
.section--solutions .solutions__benefit-number {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: "Geologica", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #FFC75C;
}
.section--solutions .solutions__benefit-number span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  vertical-align: top;
}
.section--solutions .solutions__benefit-text {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: #FFFFFF;
}
.section--solutions .solutions__benefit--light .solutions__benefit-number {
  font-weight: 500;
  letter-spacing: -0.06em;
  color: #333F56;
}
.section--solutions .solutions__benefit--light .solutions__benefit-number span {
  font-weight: 400;
  color: #333F56;
}
.section--solutions .solutions__benefit--light .solutions__benefit-text {
  font-weight: 400;
  color: #333F56;
}
.section--solutions .solutions__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 32px;
}
.section--solutions .solutions__title {
  font-family: "Geologica", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #333F56;
}
.section--solutions .solution__list ul {
  padding-left: 20px;
}
.section--solutions .solution__list ul li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #333F56;
  margin-bottom: 8px;
}
.section--solutions .solution__list ul li:last-child {
  margin-bottom: 0;
}
.section--solutions button {
  padding: 0 35px;
  height: 60px;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  border-radius: 16px;
  color: #333F56;
  border-color: #333F56;
}
.section--solutions button:hover {
  opacity: 0.8;
}
.section--solutions .hr {
  margin: 32px 0;
}

.section--cases .section__inner {
  padding: 110px 0;
}
.section--cases .section__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: left;
  margin-bottom: 80px;
}
.section--cases .cases {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.section--cases .cases__item {
  position: relative;
}
.section--cases .case {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.section--cases .case__title {
  font-family: "Geologica", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.03em;
}
.section--cases .case__content {
  display: flex;
  flex-direction: row;
  gap: 96px;
}
.section--cases .case__cover {
  width: 350px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}
.section--cases .case__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--cases .case__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 40px;
}
.section--cases .case__info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section--cases .case__info-item {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 24px;
}
.section--cases .case__info-icon {
  width: 24px;
  height: 24px;
}
.section--cases .case__info-text {
  flex-grow: 1;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
}
.section--cases .case__info-text strong {
  font-weight: 600;
}
.section--cases .case__info-item:first-child .case__info-text {
  font-size: 22px;
  font-weight: 600;
}
.section--cases .case__person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.section--cases .case__person-avatar {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.section--cases .case__person-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--cases .case__person-profile {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
  flex-grow: 1;
}
.section--cases .case__person-name {
  font-family: "Geologica", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 126%;
  letter-spacing: 0;
  color: #3C3941;
}
.section--cases .case__person-info {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
  color: #988CAA;
}
.section--cases .cases__navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.section--cases .swiper-pagination {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 8px;
  top: 0;
}
.section--cases .swiper-pagination-bullet {
  margin: 0;
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #F1EFF5;
  color: #333F56;
  overflow: hidden;
  font-family: "Geologica", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  opacity: 1;
  transition: all 0.2s ease;
}
.section--cases .swiper-pagination-bullet:hover {
  opacity: 0.8;
}
.section--cases .swiper-pagination-bullet-active {
  background-color: #3575B1;
  color: #fff;
}
.section--cases .cases-prev-next-button {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 8px;
}
.section--cases .cases-button-prev,
.section--cases .cases-button-next {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #3C3941;
  border-radius: 50%;
  background-color: transparent;
  color: #322F38;
  overflow: hidden;
  cursor: pointer;
}
.section--cases .cases-button-prev:hover,
.section--cases .cases-button-next:hover {
  opacity: 0.8;
}
.section--cases .cases-button-prev,
.section--cases .cases-button-next {
  transition: all 0.2s ease;
}

.section--stages {
  min-height: 1335px;
  background-color: #EBF1F7;
  background-image: url("../images/section-citizenship-stages-bg.png");
  background-position-y: top;
  align-items: flex-start;
}
.section--stages .section__inner {
  padding: 120px 0 120px;
}
.section--stages .stages {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section--stages .stages__content {
  width: 393px;
}
.section--stages .stages__accordion {
  position: relative;
  width: 671px;
  padding: 16px 88px 16px 98px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 40px;
}
.section--stages .stages .accordion__item {
  position: relative;
  width: 100%;
}
.section--stages .stages .accordion__item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -58px;
  width: 1px;
  content: "";
  background-color: #AEC3D9;
}
.section--stages .stages .accordion__item:first-child::before {
  top: 40px;
}
.section--stages .stages .accordion__item:last-child::before {
  bottom: 40px;
}
.section--stages .stages .accordion__item.active .accordion__title::after {
  display: none;
  background: linear-gradient(#333333, #333333) center/100% 2px no-repeat;
  transform: rotate(180deg);
}
.section--stages .stages .accordion__item.active .accordion__content {
  max-height: 1000px;
  transition: max-height 0.2s ease-in-out;
}
.section--stages .stages .accordion__title {
  position: relative;
  width: 100%;
  min-height: 80px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  font-family: Inter;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: left;
  color: #3C3941;
  background-color: transparent;
  cursor: pointer;
}
.section--stages .stages .accordion__title::before {
  position: absolute;
  left: -65px;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #AEC3D9;
}
.section--stages .stages .accordion__title::after {
  content: "";
  position: absolute;
  right: -56px;
  width: 24px;
  height: 24px;
  background: linear-gradient(#333333, #333333) center/100% 2px no-repeat, linear-gradient(#333333, #333333) center/2px 100% no-repeat;
  transition: transform 0.3s ease;
}
.section--stages .stages .accordion__number {
  font-weight: 700;
  margin-right: 10px;
}
.section--stages .stages .accordion__content {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
  font-size: 16px;
  line-height: 130%;
  color: #3C3941;
}
.section--stages .stages .accordion__content p, .section--stages .stages .accordion__content ul, .section--stages .stages .accordion__content ol {
  margin-bottom: 24px;
}
.section--stages .stages .accordion__content li {
  margin-bottom: 8px;
}
.section--stages .stages .accordion__content .lead {
  font-family: "Geologica", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 24px;
}
.section--stages .stages .accordion__content p:last-child {
  margin-bottom: 0;
}
.section--stages .section__title {
  font-size: 56px;
  line-height: 110%;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}
.section--stages .section__content {
  font-size: 16px;
  line-height: 140%;
}

.section__cta .cta__ribbon_yellow, .section__cta .cta__ribbon_white {
  font-size: 16px;
  font-weight: 800;
  line-height: 21px;
}
.section__cta .cta__ribbon_yellow span, .section__cta .cta__ribbon_white span {
  display: inline !important;
  font-size: 24px !important;
  line-height: 29px !important;
}

.section__about {
  background-color: #FFFFFF;
  background-image: url("../images/section-about-light-bg.png");
  background-size: 100% auto;
}
.section__about .section__inner {
  max-width: 100%;
  padding: 120px 0 96px;
  gap: 96px;
}
.section__about .about__ribbons {
  display: block;
  top: -4px;
}
.section__about .about__ribbons .ribbons__inner img {
  width: 80px;
  height: auto;
}
.section__about .section__title {
  max-width: 619px;
  font-size: 56px;
  letter-spacing: -0.03em;
}
.section__about .section__content {
  max-width: 619px;
}
.section__about .section__content p {
  margin-bottom: 0;
}
.section__about .section__content p.lead {
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.section__about .section__content ul {
  padding: 0;
  margin-left: 16px;
  margin-bottom: 60px;
}
.section__about .section__content ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 24px;
}
.section__about .section__content ul li:last-child {
  margin-bottom: 0;
}
.section__about .section__content ul li::before {
  left: -16px;
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #333F56;
  border-radius: 50%;
}

.section__faq {
  background-color: #EBF1F7;
}
.section__faq .section__title {
  font-size: 56px;
  letter-spacing: -0.03em;
}

.section__seo {
  background-color: #FFFFFF;
}
.section__seo .section__inner {
  padding-bottom: 80px;
}
.section__seo .section__content.fade::after {
  background: linear-gradient(to bottom, transparent 0%, #FFFFFF 70%);
}
.section__seo .show-more-button {
  background: #FFFFFF;
}
.section__seo .show-more-button button {
  opacity: 0.8;
  background: #FFFFFF;
}
.section__seo .show-more-button button:hover {
  opacity: 1;
}

@media (max-width: 500px) {
  .container {
    max-width: 350px;
  }
  .section--header {
    min-height: 844px;
    background-image: url("../images/section-citizenship-hero-mob-bg.png");
    background-size: 100%;
  }
  .section--header .section__inner {
    max-width: 350px;
    padding-top: 120px;
  }
  .section--header .page-breadcrumbs {
    margin-bottom: 16px;
  }
  .section--header .section__inner .section__title {
    font-size: 50px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
  }
  .section--header .section__inner .section__content {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
  }
  .section--header .section__actions {
    width: 100%;
  }
  .section--header .section__actions .button {
    padding: 0;
    width: 100%;
    height: 60px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
  }
  .section--questions {
    min-height: 2000px;
    background-image: url("../images/section-citizenship-questions-mob-bg.png");
    background-size: 100%;
  }
  .section--questions .section__inner {
    padding: 80px 0 650px;
  }
  .section--questions .section__title {
    font-size: 540px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    text-align: left;
  }
  .section--questions .section__subtitle {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    margin-bottom: 48px;
    text-align: left;
  }
  .section--questions .section__subtitle br {
    display: none;
  }
  .section--questions .questions__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .section--questions .questions__item {
    padding: 28px;
    border-radius: 24px;
  }
  .section--questions .questions__title {
    font-size: 32px;
    line-height: 96%;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
  }
  .section--solutions .section__inner {
    padding: 80px 0;
  }
  .section--solutions .section__title {
    font-size: 40px;
    line-height: 110%;
    letter-spacing: -0.04em;
    margin-bottom: 56px;
  }
  .section--solutions .solutions__list {
    gap: 40px;
  }
  .section--solutions .solutions__item {
    flex-direction: column;
    gap: 40px;
  }
  .section--solutions .solutions__cover {
    width: 100%;
    height: 350px;
  }
  .section--solutions .solutions__title {
    font-size: 32px;
  }
  .section--solutions button {
    width: 100%;
  }
  .section--cases .section__inner {
    padding: 80px 0;
  }
  .section--cases .section__title {
    font-size: 40px;
    line-height: 110%;
    letter-spacing: -0.03em;
    margin-bottom: 80px;
  }
  .section--cases .case {
    gap: 48px;
  }
  .section--cases .case__title {
    font-size: 32px;
  }
  .section--cases .case__content {
    flex-direction: column;
    gap: 40px;
  }
  .section--cases .case__cover {
    width: 100%;
    height: 260px;
  }
  .section--cases .case__info {
    gap: 24px;
  }
  .section--cases .case__info-list {
    gap: 24px;
  }
  .section--cases .case__info-item {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 24px;
  }
  .section--cases .case__info-icon {
    width: 24px;
    height: 24px;
  }
  .section--cases .case__info-text {
    font-size: 16px;
  }
  .section--cases .case__info-item:first-child .case__info-text {
    font-size: 16px;
    font-weight: 400;
  }
  .section--cases .case__person {
    gap: 24px;
  }
  .section--cases .case__person-name {
    font-size: 24px;
  }
  .section--cases .case__person-info {
    line-height: 120%;
  }
  .section--cases .swiper-pagination {
    display: none;
  }
  .section--cases .cases-prev-next-button {
    width: 100%;
  }
  .section--cases .cases-button-prev,
  .section--cases .cases-button-next {
    position: relative;
    width: 100%;
    height: 60px;
    border-radius: 30px;
  }
  .section--stages {
    background-color: #EBF1F7;
    background-image: none;
  }
  .section--stages .section__inner {
    padding: 80px 0 0;
  }
  .section--stages .container {
    max-width: 100%;
  }
  .section--stages .stages {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 40px;
  }
  .section--stages .stages__content {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .section--stages .stages__accordion {
    width: 100%;
    padding: 16px 0 80px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: none;
    border-radius: 0;
  }
  .section--stages .stages .accordion__item {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 0 0 0 43px;
  }
  .section--stages .stages .accordion__item::before {
    left: 8px;
  }
  .section--stages .stages .accordion__item:first-child::before {
    top: 40px;
  }
  .section--stages .stages .accordion__item:last-child::before {
    bottom: 40px;
  }
  .section--stages .stages .accordion__item.active .accordion__title::after {
    background: linear-gradient(#333333, #333333) center/100% 2px no-repeat;
    transform: rotate(180deg);
  }
  .section--stages .stages .accordion__item.active .accordion__content {
    max-height: 1000px;
    transition: max-height 0.2s ease-in-out;
  }
  .section--stages .stages .accordion__title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.03em;
    text-align: left;
    padding-right: 40px;
  }
  .section--stages .stages .accordion__title::before {
    left: -43px;
  }
  .section--stages .stages .accordion__title::after {
    right: 0;
  }
  .section--stages .stages .accordion__number {
    display: inline-block;
    flex-shrink: 0;
    width: 27px;
  }
  .section--stages .stages .accordion__content {
    width: 100%;
    letter-spacing: -0.03em;
  }
  .section--stages .stages .accordion__content p, .section--stages .stages .accordion__content ul, .section--stages .stages .accordion__content ol {
    margin-bottom: 16px;
  }
  .section--stages .stages .accordion__content li {
    margin-bottom: 8px;
  }
  .section--stages .stages .accordion__content .lead {
    font-size: 20px;
  }
  .section--stages .stages .accordion__content p:last-child {
    margin-bottom: 0;
  }
  .section--stages .section__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.03em;
    margin-bottom: 56px;
    color: #333F56;
  }
  .section--stages .section__content {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.03em;
    color: #3C3941;
  }
  .section__about {
    background-image: url("../images/section-about-light-mob-bg.png");
  }
  .section__about .section__inner {
    padding: 80px 0;
    gap: 0;
  }
  .section__about .about__ribbons {
    top: 0;
  }
  .section__about .about__ribbons .ribbons__inner img {
    width: 45px;
    height: auto;
  }
  .section__about .section__inner .section__title {
    max-width: 200px;
    font-size: 40px;
    letter-spacing: -0.03em;
    margin-bottom: 330px;
  }
  .section__about .section__inner .section__content {
    max-width: 350px;
    margin-bottom: 56px;
    letter-spacing: -0.03em;
  }
  .section__about .section__inner .section__content p {
    margin-bottom: 0;
  }
  .section__about .section__inner .section__content p.lead {
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
  }
  .section__about .section__inner .section__content ul {
    padding: 0;
    margin-left: 16px;
    margin-bottom: 40px;
  }
  .section__about .section__inner .section__content ul li {
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 20px;
  }
  .section__about .section__inner .section__content ul li:last-child {
    margin-bottom: 0;
  }
  .section__about .section__inner .section__content ul li::before {
    left: -16px;
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #333F56;
    border-radius: 50%;
  }
  .section__about .section__inner .about__profits {
    padding: 0;
    margin-bottom: 0;
  }
  .section__about .section__inner .about__profits {
    grid-template-columns: 130px 33px 33px 130px;
    grid-template-rows: repeat(3, 130px);
  }
  .section__about .section__inner .about__profits .profit {
    padding: 24px;
  }
  .section__faq .section__inner {
    padding: 80px 0;
  }
  .section__faq .section__title {
    font-size: 40px;
    margin-bottom: 56px;
    letter-spacing: -0.03em;
  }
  .section__seo .section__inner {
    padding: 80px 0;
  }
}/*# sourceMappingURL=page-citizenship.css.map */