@charset "UTF-8";
:root {
  --backgrond: #0a1d2a;
  --text: #f9f9f9;
  --subtext: #c2c7d4;
  --accent: #be3455;
  --transition: 0.5s;
  --font-family: "Source Code Pro", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "SF Pro Text", sans-serif;
  --font3: "Sora", sans-serif;
  --font4: "Helvetica Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow-x: hidden;
}

.wrapper.overflow-none {
  overflow-x: visible;
  -ms-overflow-style: none; /* для IE и Edge */
  scrollbar-width: none; /* для Firefox */
}

.wrapper.overflow-none::-webkit-scrollbar {
  display: none; /* для Chrome, Safari, Opera */
  width: 0;
}

main {
  flex-grow: 1;
}

body {
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  background: var(--backgrond);
  color: var(--text);
}

.container {
  max-width: 1520px;
  padding: 0 40px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

object {
  pointer-events: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    height: 0;
  }
}
.red-btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  border-radius: 128px;
  padding: 16px 24px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.04);
  background: var(--accent);
  line-height: 150%;
  color: #fff;
  cursor: pointer;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #f9f9f9;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--subtext);
  border-radius: 128px;
  padding: 16px 24px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.04);
  background: transparent;
  cursor: pointer;
  transition-duration: var(--transition);
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.btn:hover {
  border-color: var(--accent);
}

.header {
  padding-top: 24px;
  transition-duration: var(--transition);
}

.header-row {
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.header-menu > .menu-item:not(:last-child) {
  margin: 0 16px 0 0;
}

.header-menu > .menu-item a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 131%;
  color: var(--text);
  text-decoration: none;
  text-wrap-mode: nowrap;
  transition-duration: var(--transition);
}

.header-menu > .menu-item a:hover {
  color: var(--accent);
}

.header-menu > li.current-menu-item > a {
  color: var(--accent);
}

.header-search {
  position: relative;
  width: 100%;
}

.swiper-button-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--text);
  border-radius: 1000px;
  background: transparent;
  cursor: pointer;
  transition-duration: var(--transition);
}

.swiper-button-custom path {
  transition-duration: var(--transition);
}

.swiper-button-custom:hover {
  border-color: var(--backgrond);
  background: #a0a7ba;
}

.swiper-button-custom:hover path {
  stroke: #0a1d2a;
}

.header-search input {
  width: 100%;
  border: 1px solid #2b3b46;
  border-radius: 48px;
  padding: 12px 20px 12px 54px;
  background: #02253d;
  height: 48px;
  min-width: 288px;
  color: var(--text);
  line-height: 150%;
  transition-duration: 0.7s;
}

.header-search input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #666;
}

.header-search input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #666;
}

.header-search button {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translate(0%, -50%);
  background: transparent;
  transition-duration: var(--transition);
}

.header-search button svg path {
  transition-duration: var(--transition);
}

.header-search button:hover svg path {
  fill: var(--accent);
}

.language-use {
  display: flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
}

.language-use span {
  font-size: 18px;
  line-height: 160%;
  color: var(--text);
  transition-duration: var(--transition);
}

.language-use span:hover {
  color: var(--accent);
}

.language-menu {
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-duration: var(--transition);
  position: absolute;
  top: 100%;
  left: 0;
}

.language-menu.showw {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  z-index: 3;
}

.language-menu span {
  font-size: 18px;
  line-height: 160%;
  color: var(--text);
  transition-duration: var(--transition);
  cursor: pointer;
}

.language-menu span:hover {
  color: var(--accent);
}

.language {
  position: relative;
}

.burger {
  transition-duration: var(--transition);
}

.burger:hover {
  fill: var(--accent);
}

.header-bigMenu {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition-duration: var(--transition);
  transform: translateY(-100%);
  border-top: 1px solid rgba(151, 154, 160, 0.5);
  position: relative;
  height: 0;
}

.header-bigMenu.show {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
  transform: translateY(0%);
  height: auto;
  padding-top: 10px;
  margin-top: 10px;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.burger {
  display: none;
  cursor: pointer;
  position: relative;
  width: 26px;
  height: 26px;
}

.burger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/header/burger-open-hover.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  opacity: 0;
  transition-duration: var(--transition);
}

.burger path {
  transition-duration: var(--transition);
}

.burger:hover::after {
  opacity: 1;
}

.burger.show:hover::after {
  display: none;
}

.burger.show:hover path {
  fill: var(--accent);
}

.burger.none {
  display: none;
}

.header-logo {
  display: block;
  width: 100%;
  max-width: 138px;
  height: 78px;
}

.header-logo.none {
  display: none;
}

.language-arrow {
  width: 24px;
  height: 24px;
  transition-duration: var(--transition);
}

.language-arrow.show {
  transform: rotate(180deg);
}

.burger-close {
  display: none;
  opacity: 0;
  transition-duration: var(--transition);
}

.burger-open {
  animation: fadeIn 1s forwards;
}

.burger.show .burger-close {
  display: block;
  opacity: 1;
  animation: fadeIn 1s forwards;
}

.burger.show .burger-open {
  display: none;
  opacity: 0;
}

.header-bigMenu .menu-item a {
  padding: 24px 16px;
  line-height: 131%;
  color: var(--text);
  display: block;
  transition-duration: var(--transition);
}

.header-bigMenu .menu-item a:hover {
  color: var(--accent);
}

.language-bigMenu {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 24px 16px;
}

.language-row {
  display: flex;
  gap: 24px;
}

.lang {
  line-height: 160%;
  color: var(--text);
  transition-duration: var(--transition);
}

.lang:hover {
  color: var(--accent);
}

.lang.active {
  color: var(--accent);
}

.bg-bigMenu {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 25%;
}

.bg-bigMenu img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
}

.bg-circle-bigMenu {
  position: fixed;
  left: -10%;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition-duration: var(--transition);
  background: #a3a3a3;
  filter: blur(190px);
  border-radius: 100%;
  width: 400px;
  height: 400px;
  z-index: 1;
}

.bg-circle-bigMenu.show {
  opacity: 1;
}

.header-bigMenu .sub-menu .menu-item a {
  display: flex;
  gap: 8px;
  max-width: 305px;
  padding: 0;
}

.menu-info-title {
  font-weight: 600;
  line-height: 125%;
  color: #fff;
  margin-bottom: 4px;
  transition-duration: var(--transition);
}

.menu-info-text {
  font-size: 14px;
  line-height: 125%;
  color: var(--subtext);
}

.header-bigMenu .sub-menu {
  display: flex;
  gap: 54px;
  flex-wrap: wrap;
  margin-left: 16px;
}

.header-bigMenu .menu-item .menu-item-children-link {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 24px 16px;
  cursor: pointer;
  transition-duration: var(--transition);
}

.menu-item-children-link:hover {
  color: var(--accent);
}

.arrow-menu {
  display: flex;
  transition-duration: var(--transition);
  width: 14px;
}

.arrow-menu.show {
  transform: rotate(180deg);
}

.header-bigMenu .sub-menu {
  animation: fadeOut 0.5s forwards;
  opacity: 0;
  pointer-events: none;
}

.header-bigMenu .sub-menu.show {
  display: flex;
  opacity: 1;
  animation: fadeIn 1s forwards;
  pointer-events: visible;
}

.header-bigMenu .sub-menu .menu-item a:hover {
  opacity: 0.7;
}

.menu-icons {
  flex-shrink: 0;
}

.menu-item-submenu a {
  display: flex;
  gap: 4px;
  align-items: center;
  cursor: pointer;
}

.header-bigMenu-services h3 {
  line-height: 131%;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 48px;
  max-width: 1520px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 22px;
}

.header-bigMenu-services {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition-duration: var(--transition);
  transform: translateY(-100%);
  border-top: 1px solid rgba(151, 154, 160, 0.5);
  position: relative;
  height: 0;
}

.header-bigMenu-services.show {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
  transform: translateY(0%);
  height: auto;
  margin-top: 10px;
  padding-top: 10px;
}

.header-bigMenu-services .sub-menu {
  display: flex;
  gap: 54px;
  flex-wrap: wrap;
  max-width: 1520px;
  padding-left: 40px;
  padding-right: 240px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}

.header-bigMenu-services .sub-menu .menu-item a {
  display: flex;
  gap: 8px;
  max-width: 305px;
  padding: 0;
  transition-duration: var(--transition);
}

.header-bigMenu-services .sub-menu .menu-item a:hover {
  opacity: 0.7;
}

.header:has(.show) {
  background: var(--backgrond);
}

.header-bigMenu-search {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition-duration: var(--transition);
  transform: translateY(-100%);
  border-top: 1px solid rgba(151, 154, 160, 0.5);
  position: relative;
  height: 0;
  position: absolute;
  top: 100px;
  z-index: 10;
  background: var(--backgrond);
}

.header-bigMenu-search.blur .search-block {
  filter: blur(10px);
}

.header-bigMenu-search.show {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
  transform: translateY(0%);
  height: auto;
  padding-top: 10px;
  margin-top: 5px;
  padding-bottom: 72px;
  width: 100%;
}

.header-search-title {
  line-height: 131%;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 48px;
  max-width: 1520px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 22px;
}

.header-bigMenu-search .sub-menu {
  display: flex;
  gap: 54px;
  flex-wrap: wrap;
  padding-left: 40px;
}

.header-bigMenu-search .sub-menu .menu-item a {
  display: flex;
  gap: 8px;
  max-width: 305px;
  padding: 0;
  transition-duration: var(--transition);
}

.header-bigMenu-search .sub-menu .menu-item a:hover {
  opacity: 0.7;
}

.header-bigMenu-search .search-block {
  max-width: 1520px;
  padding-left: 40px;
  padding-right: 240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
}

.search-wrapper {
  padding-left: 40px;
  display: flex;
  gap: 54px;
  flex-wrap: wrap;
}

.serch-item {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #fff;
  max-width: 305px;
}

.header-search.show input {
  opacity: 1;
}

.header-search.show button {
  right: 15px;
}

.footer {
  padding-top: 152px;
  padding-bottom: 176px;
  background: #101328;
}

.footer-wrap {
  display: flex;
  gap: 84px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
}

.footer-left input {
  border: 1px solid #2b3b46;
  border-radius: 48px;
  padding: 12px 20px;
  background: #02253d;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 12px;
  width: 100%;
}

.footer-right {
  width: 50%;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-right-title {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: #fff;
  display: block;
}

.footer-right dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.procherk {
  font-weight: 400;
  line-height: 160%;
  color: #fff;
  text-decoration: none;
  display: block;
}

.footer-info-row dt a {
  font-weight: 400;
  line-height: 160%;
  color: #fff;
  text-decoration: none;
  transition-duration: var(--transition);
}

.footer-info-row dt a:hover {
  color: var(--accent);
}

.footer-info-row dd {
  font-weight: 400;
  line-height: 160%;
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 24px;
  margin-top: 42px;
  margin-bottom: 42px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.footer-socials a path {
  transition-duration: var(--transition);
}

.footer-socials a:hover path {
  fill: var(--accent);
}

.footer-right-blocks {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.footer-adress {
  max-width: 240px;
  color: #fff;
}

.footer-adress span {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 16px;
}

.footer-adress p {
  font-weight: 400;
  line-height: 160%;
}

.footer-language span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: right;
  color: #fff;
  margin-bottom: 16px;
}

.footer-language-link {
  display: flex;
  gap: 24px;
}

.footer-language-link a {
  font-weight: 400;
  line-height: 160%;
  color: var(--text);
  text-decoration: none;
  transition-duration: var(--transition);
}

.footer-language-link a:hover {
  color: var(--accent);
}

.footer-language-link a.active {
  color: var(--accent);
}

.footer-left .btn {
  white-space: nowrap;
}

.form-custom {
  padding: 60px;
  border: 1px solid #5e6d83;
  border-radius: 20px;
  max-width: 1183px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  z-index: 3;
  width: 33.33%;
}
@media(max-width: 767px) { 
  .form-block {
    width: 100%;
  }
}

.form-block:has(.wpcf7-form-control-wrap .choices) {
  z-index: 5;
  position: relative;
}

.sevorb-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  line-height: 1.55;
  color: #eaf1f8;
  margin-top: 15px;
}

.sevorb-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sevorb-checkbox__box {
  min-width: 22px;
  height: 22px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  transition: all 0.25s ease;
  position: relative;
  margin-top: 2px;
  display: block;
}

/* checked — брендовый красный */
.sevorb-checkbox input:checked + .sevorb-checkbox__box {
  border-color: #c73a55;
  background: linear-gradient(180deg, #c73a55, #a92f46);
  box-shadow: 0 0 0 3px rgba(199, 58, 85, 0.35);
}

/* галка */
.sevorb-checkbox input:checked + .sevorb-checkbox__box::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* текст */
.sevorb-checkbox__text {
  opacity: 0.95;
}

.sevorb-checkbox__text a {
  color: #c73a55;
  text-decoration: underline;
}

.sevorb-checkbox__text a:hover {
  text-decoration: none;
}

/* hover */
.sevorb-checkbox:hover .sevorb-checkbox__box {
  border-color: #c73a55;
}

/* CF7 error state */
.wpcf7-not-valid .sevorb-checkbox__box {
  border-color: #c73a55;
  box-shadow: 0 0 0 3px rgba(199, 58, 85, 0.35);
}

.footer-left .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}

.sevorb-btnPolicyText {
  font-size: 14px;
  line-height: 1;
  margin: 20px 14px;
}

body.scroll-off {
  overflow: hidden;
}

.form-custom label {
  line-height: 150%;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

body:has(.popup-form.show) {
  overflow: hidden;
}

.form-custom input {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--subtext);
  padding: 16px 20px;
  border: 1px solid #5e6d83;
  border-radius: 100px;
  width: 100%;
  background: transparent;
}

.form-custom input,
.form-custom .choices {
  margin-bottom: 10px !important;
}

.form-custom textarea {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--subtext);
  padding: 16px 20px;
  border: 1px solid #5e6d83;
  border-radius: 14px;
  background: transparent;
  width: 100%;
  min-height: 120px;
}

.form-textarea {
  margin-bottom: 36px;
}

.form-custom .btn {
  margin-left: auto;
  margin-right: auto;
}

.form-custom .choices__inner {
  background: transparent;
  border: 1px solid #5e6d83;
  border-radius: 100px;
  padding: 16px 20px;
  min-height: 64px;
  transition: all 0.3s;
  transition-delay: 0.6s;
  display: flex;
}

#form-company {
  min-height: 64px;
}

.form-custom .choices[data-type*="select-one"] .choices__inner {
  padding-bottom: 16px;
}

.form-custom .choices[data-type*="select-one"]::after {
  content: "";
  height: 20px;
  width: 20px;
  border: none;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
  pointer-events: none;
  background-image: url("../images/header/arrow-down.svg");
  background-repeat: no-repeat;
  transition-duration: var(--transition);
  background-position: center;
}

.form-custom .choices[data-type*="select-one"].is-open::after {
  transform: rotate(180deg);
}

.form-custom .choices__list--dropdown,
.choices__list[aria-expanded] {
  background: var(--backgrond);
  border: 1px solid #5e6d83;
  border-top: none;
  border-radius: 0 0 29px 29px;
  transition-duration: var(--transition);
}

.form-custom .choices.is-open .choices__inner {
  border-radius: 29px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  margin-top: 0px;
  background: var(--backgrond);
  z-index: 10;
  position: relative;
  transition-delay: 0s;
  transition-duration: 0.6s;
}

.form-custom .choices__list--dropdown {
  max-height: 0;
  display: flex;
  transition: all 0.6s;
  background: transparent;
  border-top: none;
  border-bottom: none;
  transition: all 0.6s;
  transition-delay: 0.3s;
  opacity: 0;
}

.form-custom .is-open .choices__list--dropdown .choices__list {
  max-height: 150px;
}

.choices {
  overflow: visible;
}

.form-custom .is-open .choices__list--dropdown {
  border-color: #5e6d83;
  margin-top: -2px;
  display: flex;
  max-height: 150px;
  z-index: 10;
  padding-bottom: 10px;
  border: 1px solid #5e6d83;
  border-top: none;
  height: auto;
  background: var(--backgrond);
  opacity: 1;
}

.form-custom .choices__item--choice:nth-child(1) {
  display: none;
}

.form-custom .choices__item.choices__item--choice {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--subtext);
  padding: 12px;
}

.form-custom .choices__item.choices__item--choice:hover {
  background: transparent;
}

.form-custom .choices__list {
  padding-left: 5px;
  padding-right: 15px;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--subtext);
  margin-top: 0;
  overflow: auto;
}

.form-custom .choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: transparent;
  opacity: 0.7;
}

/* Продвинутая кастомизация для WebKit браузеров */
.form-custom .choices__list::-webkit-scrollbar {
  width: 3px;
}

.form-custom .choices__list::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0;
}

.form-custom .choices__list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 100px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: 3px;
  height: 69px;
}

.form-custom .choices__list::-webkit-scrollbar-thumb:hover {
  background-color: var(--text);
}

.form-custom .choices__list.choices__list--single {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-custom .choices__list.choices__list--single .choices__item::-webkit-scrollbar {
  display: none;              /* Chrome / Safari */
}
.form-custom .choices__list.choices__list--single .choices__item{
  white-space: nowrap;
   overflow: auto;
   scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE / старый Edge */
}


.popup-form {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition-duration: var(--transition);
  width: 100%;
  height: 100%;
  z-index: 100;
  overflow: auto;
}

.shadow {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition-duration: var(--transition);
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
  position: fixed;
  width: 100%;
  height: 100%;
}

.popup-form.show .shadow {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.popup-wrapper {
  padding: 48px;
  border: 3px solid var(--text);
  border-radius: 48px;
  background: var(--backgrond);
  transform: translateY(-200%);
  transition-duration: var(--transition);
  z-index: 20;
  max-width: 85vw;
  width: 100%;
  z-index: 20;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin: 10px auto;
}

.popup-close {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  background: transparent;
}

.popup-wrapper b {
  font-weight: 600;
  font-size: 28px;
  line-height: 125%;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.popup-wrapper p {
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  color: var(--subtext);
  margin-bottom: 35px;
}

.popup-form.show .popup-wrapper {
  transform: translateY(0%);
}

.popup-form.show {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
}

.search-circle-white {
  position: absolute;
  top: -30%;
  left: -20%;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  background: #a3a3a3;
  filter: blur(190px);
  z-index: -2;
}

/* -----------------404------------------------- */

.error-404-main {
  position: relative;
  margin-top: 70px;
  margin-bottom: 215px;
  font-family: "Paytone One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.error-404-main::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 0%;
  width: 400px;
  height: 400px;
  background: #a3a3a3;
  filter: blur(190px);
  z-index: -2;
}

.error-404-main::before {
  content: "";
  position: absolute;
  top: -10%;
  right: 0%;
  width: 440px;
  height: 440px;
  border-radius: 100%;
  background: var(--accent);
  filter: blur(190px);
  z-index: -2;
}

.error-404-title-block {
  position: relative;
  margin-bottom: 40px;
}

.error-404-title-text-1 {
  font-size: 300px;
  line-height: 100%;
  text-transform: capitalize;
  text-align: center;
  color: var(--accent);
  z-index: 2;
  position: relative;
  letter-spacing: 5px;
}

.error-404-title-text-2 {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100%;
  max-width: 100%;
  font-size: 300px;
  line-height: 100%;
  text-transform: capitalize;
  text-align: center;
  color: #f8a0cb;
  z-index: 1;
  letter-spacing: 5px;
}

.error-404-text {
  font-family: var(--font-family);
  font-size: 24px;
  line-height: 142%;
  text-transform: lowercase;
  text-align: center;
  color: var(--accent);
  margin-bottom: 116px;
}

.error-404-link {
  border-radius: 128px;
  padding: 16px 24px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.04);
  background: var(--accent);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: fit-content;
}

.error-404-bg-icon {
  position: absolute;
  z-index: -1;
}

.error-404-bg-icon-1 {
  top: 95%;
  left: 38%;
}

.error-404-bg-icon-2 {
  top: 65%;
  left: 25%;
}

.error-404-bg-icon-3 {
  top: 0%;
  left: 30%;
}

.error-404-bg-icon-4 {
  top: 0%;
  right: 40%;
}

.error-404-bg-icon-5 {
  top: 20%;
  right: 25%;
}

.error-404-bg-icon-6 {
  top: 35%;
  right: 23%;
}

.error-404-bg-icon-7 {
  top: 55%;
  right: 29%;
}

.error-404-bg-icon-8 {
  top: 90%;
  right: 35%;
}

/* -----------------404------------------------- */

section.overflow-h {
  overflow: hidden;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.form-button-sent {
  color: #0a1d2a;
  background-color: #f9f9f9;
  font-size: 18px;
  font-weight: 600;
}

.visit-card-form-row button.btn.form-button-sent {
  font-size: 12px !important;
  padding: 10px 15px !important;
}

@media (max-width: 1280px) {
  .burger {
    display: block;
  }
  .header-nav {
    display: none;
  }
  .footer-left {
    width: 40%;
  }
  .footer-right {
    width: 60%;
  }
  .footer-wrap {
    margin-left: 70px;
    margin-right: 70px;
  }
  .header-bigMenu .header-navigation {
    padding-left: 40px;
  }
  .popup-form .form-custom {
    padding: 30px;
  }
  .error-404-bg-icon-5 {
    right: 13%;
  }
  .error-404-bg-icon-6 {
    right: 10%;
  }
  .error-404-bg-icon-7 {
    right: 20%;
  }
  .error-404-bg-icon-8 {
    right: 30%;
  }
}
@media (max-width: 992px) {
  .footer-right {
    padding-left: 0;
  }
  .footer-wrap {
    margin-left: 0px;
    margin-right: 0px;
  }
  .popup-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
  .popup-form .form-custom {
    padding: 0;
    border: none;
  }

  .error-404-title-text-1,
  .error-404-title-text-2 {
    font-size: 140px;
  }
  .error-404-bg-icon-3 {
    top: -5%;
    left: -3%;
  }
  .error-404-bg-icon-1 {
    left: 20%;
  }
  .error-404-bg-icon-2 {
    left: 5%;
    top: 45%;
  }
  .error-404-bg-icon-4 {
    top: -10%;
    right: 58%;
  }
  .error-404-bg-icon-5 {
    top: -5%;
    right: 10%;
  }
  .error-404-bg-icon-6 {
    top: 30%;
    right: 5%;
  }
  .error-404-bg-icon-7 {
    top: 60%;
    right: 10%;
  }
  .error-404-bg-icon-8 {
    top: 85%;
    right: 20%;
  }
  .error-404-text {
    font-size: 16px;
  }
  .error-404-main::before {
    top: 10%;
    right: -20%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .header-row {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-bigMenu .header-navigation {
    padding-left: 16px;
  }
  .footer {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-right: 42px;
  }
  .footer-wrap {
    flex-direction: column;
    gap: 48px;
  }
  .footer-left {
    width: 100%;
    gap: 24px;
  }
  .footer-left form {
    order: 1;
  }
  .footer-left .btn {
    max-width: none;
    width: 100%;
    justify-content: center;
  }
  .footer-right {
    width: 100%;
  }
  .footer-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .procherk {
    display: none;
  }
  .footer-info-row dt {
    order: 1;
  }
  .footer-info-row dd {
    color: var(--subtext);
  }
  .footer-right-blocks {
    flex-direction: column;
    gap: 58px;
  }
  .footer-language span {
    text-align: left;
    margin-bottom: 24px;
  }
  .header-search input {
    min-width: auto;
    opacity: 0;
    padding-left: 18px;
  }
  .header-search button {
    left: auto;
    right: 4px;
  }
  .burger {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 5px;
  }
  .burger svg {
    width: 20px;
    height: 20px;
  }
  .popup-wrapper b {
    font-size: 24px;
  }
  .popup-wrapper {
    max-width: 90vw;
  }
  .popup-close {
    padding: 4px;
    width: 30px;
    height: 30px;
    margin-top: -4px;
    margin-right: -4px;
  }
  .popup-close svg {
    width: 22px;
    height: 22px;
  }
  .popup-form .form-custom {
    padding-left: 12px;
    padding-right: 12px;
  }
  .bg-bigMenu {
    display: none;
  }
  .bg-circle-bigMenu {
    display: none;
  }
  .header-bigMenu .menu-item a {
    padding: 12px 16px;
  }
  .header-bigMenu .menu-item .menu-item-children-link {
    padding: 12px 16px;
  }
  .header-bigMenu .sub-menu.show {
    margin-top: 10px;
  }
  .header-bigMenu .sub-menu {
    gap: 48px;
  }
  .burger::after {
    width: 20px;
    height: 20px;
  }
  .header {
    padding-top: 15px;
  }
  .header-bigMenu-search .search-block {
    padding-right: 16px;
    padding-left: 16px;
  }
  .header:has(.show) {
    padding-bottom: 40px;
  }
  .header-search-title {
    padding-left: 0;
    padding-right: 0;
  }
  .header-bigMenu-search .sub-menu {
    padding-left: 0;
  }
  .search-wrapper {
    padding-left: 0;
  }
  .error-404-main::after {
    display: none;
  }
}

/* WP EDITOR */
.wp-editor h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 700;
}

.wp-editor h2 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  margin: 32px 0 16px;
  font-weight: 600;
}

.wp-editor h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.3;
  margin: 28px 0 14px;
  font-weight: 600;
}

.wp-editor h4 {
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.35;
  margin: 24px 0 12px;
  font-weight: 600;
}

.wp-editor h5 {
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.4;
  margin: 20px 0 10px;
  font-weight: 500;
}

.wp-editor h6 {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.45;
  margin: 16px 0 8px;
  font-weight: 500;
}

.wp-editor blockquote {
  padding-left: 20px;
  border-left: 3px solid;
}

.wp-editor p {
  margin: 0 0 18px;
}

.wp-editor blockquote p {
  margin: 0;
}

.wp-editor ul,
.wp-editor ol {
  margin: 0 0 20px 20px;
  padding: 0;
}

.wp-editor li {
  margin: 0 0 10px;
  padding-left: 6px;
}

.wp-editor ul li {
  list-style: disc;
}

.wp-editor ol li {
  list-style: decimal;
}

.wp-editor hr{
      height: 1px;
    background: white;
    border-radius: 10px;
}

.wp-editor table {
  border-collapse: collapse;
}

.wp-editor table th,
.wp-editor table td {
  border: 1px solid #ffffff !important;
  text-align: center;
  padding: 10px;
}

@media (max-width: 768px) {
  .wp-editor {
    font-size: 15px;
  }

  .wp-editor h1 {
    margin-bottom: 16px;
  }

  .wp-editor h2 {
    margin-top: 24px;
  }
}
/* /WP EDITOR */
/*# sourceMappingURL=style.css.map */
@media (min-width: 767px) {
  .popup-form {
    margin-left: 15px;
  }
}

.popup-form {  transition:
    opacity 0.5s,
    visibility 0.5s;}