@charset "UTF-8";
:root {
  --color-text: #1d1d1d;
  --color-accent-primary: #c99f5b;
  --color-accent-primary-rgb: 201 159 91;
  --color-accent-primary-hover: #b5873c;
  --color-accent-secondary: #415074;
  --color-accent-secondary-hover: #455a8a;
  --font-family-base: 'Inter', sans-serif;
  --border-light: 1px solid #d8d7dd;
  --input-height: 56px;
  --input-padding: 0 15px;
  --bg-light: #ededed;
  --bg-dark: #56565d;
  --color-accent-primary-gradient:
      linear-gradient(180deg,
          rgba(255, 255, 255, 0.18),
          rgba(255, 255, 255, 0)),
      linear-gradient(180deg,
          color-mix(in srgb, var(--color-accent-primary) 90%, white),
          color-mix(in srgb, var(--color-accent-primary) 82%, black));
  --color-accent-primary-gradient-hover:
      linear-gradient(180deg,
          rgba(255, 255, 255, 0.22),
          rgba(255, 255, 255, 0)),
      linear-gradient(180deg,
          color-mix(in srgb, var(--color-accent-primary) 96%, white),
          color-mix(in srgb, var(--color-accent-primary) 75%, black));
  --color-accent-secondary-gradient:
      linear-gradient(180deg,
          rgba(255, 255, 255, 0.18),
          rgba(255, 255, 255, 0)),
      linear-gradient(180deg,
          color-mix(in srgb, var(--color-accent-secondary) 90%, white),
          color-mix(in srgb, var(--color-accent-secondary) 82%, black));
  --color-accent-secondary-gradient-hover:
      linear-gradient(180deg,
          rgba(255, 255, 255, 0.22),
          rgba(255, 255, 255, 0)),
      linear-gradient(180deg,
          color-mix(in srgb, var(--color-accent-secondary) 96%, white),
          color-mix(in srgb, var(--color-accent-secondary) 75%, black));
}

body {
  font-size: 16px;
  font-family: var(--font-family-base);
  font-weight: 400;
  background-color: #fff;
  color: var(--color-text);
}
@media (width <= 47.99875rem) {
  body {
    font-size: 14px;
  }
}

h1 {
  font-size: clamp(2.125rem, 1.8382352941rem + 1.1764705882vw, 3.25rem);
}

h2 {
  font-size: clamp(1.75rem, 1.6225490196rem + 0.522875817vw, 2.25rem);
}

h3 {
  font-size: clamp(1.375rem, 1.2794117647rem + 0.3921568627vw, 1.75rem);
}

h4 {
  font-size: clamp(1.125rem, 1.0612745098rem + 0.2614379085vw, 1.375rem);
}

h5 {
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-weight: 600;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  background: var(--color-accent-primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

blockquote {
  margin-top: 20px;
  background: #f8f8f9;
  padding: 30px 40px 30px 30px;
  font-style: italic;
  font-size: 16px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}
main > section:first-child {
  padding-top: 170px;
}
@media (width <= 63.99875rem) {
  main > section:first-child {
    padding-top: 100px;
  }
}
main > section {
  padding-block: clamp(2.625rem, 1.5416666667rem + 4.4444444444vw, 6.875rem);
}

/* Media */
img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Typography reset (без магии :where) */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  margin: 0;
}

/* Lists */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
.btn--primary {
  background: var(--color-accent-primary-gradient);
  color: var(--color-text);
}
.btn--primary:hover {
  background: var(--color-accent-primary-gradient-hover);
}

.btn--secondary {
  background: var(--color-accent-secondary-gradient);
  color: #ffffff;
}
.btn--secondary:hover {
  background: var(--color-accent-secondary-gradient-hover);
}

.btn--google {
  background: #4285F4;
  color: #fff;
  gap: 8px;
  transition: all 0.2s ease;
}
.btn--google svg {
  border-radius: 50%;
  background: #fff;
}
.btn--google:hover {
  background: #3367D6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(66, 133, 244, 0.25);
}
.btn--google:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

.btn {
  position: relative;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border: unset;
  outline: none;
  height: 56px;
  padding: 0 15px;
}
.btn:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.btn--pulse {
  position: relative;
  justify-content: center;
  align-items: center;
}
.btn--pulse::before {
  content: "";
  border: 1px solid var(--color-accent-primary);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
  width: auto;
  border-radius: 50px;
  animation-duration: 2s;
  animation-name: pulse_1;
  animation-iteration-count: infinite;
  z-index: 1;
}
.btn--pulse::after {
  content: "";
  border: 1px solid var(--color-accent-primary);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
  width: auto;
  border-radius: 50px;
  animation-duration: 2s;
  animation-name: pulse_2;
  animation-iteration-count: infinite;
  z-index: 1;
}

.btn--arrow {
  padding: 3px 60px 3px 18px !important;
}
.btn--arrow:before {
  content: "";
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  height: 15px;
  width: 16px;
  z-index: 1;
  transition: all 0.2s;
  background: url(/wp-content/themes/thewhitehouse/img/arrow-btn.svg) no-repeat 0 1px/16px auto;
  margin: auto 0;
  transform: rotate(-45deg);
}
.btn--arrow:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  right: 5px;
  top: 5px;
  bottom: 5px;
  margin: auto;
  background: #fff;
  border-radius: 50px;
}
.btn--arrow:hover:before {
  transform: rotate(0);
}

.btn--glow {
  position: relative;
  min-width: 200px !important;
  border-radius: 50px !important;
  animation: pulseGlow 2s 0.5s ease-out infinite;
}

@keyframes pulse_1 {
  from {
    opacity: 1;
    transform: scale(1, 1);
  }
  to {
    opacity: 0;
    transform: scale(1.15, 1.52);
  }
}
@keyframes pulse_2 {
  from {
    opacity: 1;
    transform: scale(1, 1);
  }
  to {
    opacity: 0;
    transform: scale(1.07, 1.25);
  }
}
@keyframes pulseGlow {
  10% {
    box-shadow: 0 0 8px 6px rgba(217, 181, 110, 0.6), 0 0 12px 10px rgba(217, 181, 110, 0.5), 0 1px rgba(255, 235, 180, 0.6) inset, 0 0 10px 12px rgba(217, 181, 110, 0.3);
  }
  100% {
    box-shadow: 0 0 8px 6px rgba(217, 181, 110, 0), 0 0 0 30px rgba(217, 181, 110, 0), 0 1px rgba(255, 235, 180, 0.4) inset, 0 0 0 30px rgba(217, 181, 110, 0);
  }
}
@keyframes moveRight {
  50% {
    transform: translate(5px, 0);
  }
}
.polt-off {
  display: none;
  position: fixed;
  right: 0;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  overflow-y: scroll;
  background: #fff;
  z-index: 9999;
  transition: visibility 0.4s, transform 0.4s;
  top: 60px;
}
@media (width <= 63.99875rem) {
  .polt-off {
    display: block;
  }
}
.polt-off__state_close {
  max-height: 100%;
  overflow: hidden;
  visibility: hidden;
  transition: none !important;
}
.polt-off__left {
  height: 100%;
  width: 100%;
  transform: translate3d(-100%, 0, 0);
  left: 0;
  padding-left: 0;
}
.polt-off__right {
  height: 100%;
  width: 100%;
  transform: translate3d(100%, 0, 0);
  right: 0;
  padding-left: 0;
}
.polt-off__state_open {
  z-index: 999 !important;
  transform: translate3d(0, 0, 0);
  visibility: visible;
}

.mob-menu__logo-link {
  display: flex;
  width: 50px;
}
.mob-menu__state_close {
  visibility: hidden;
  transform: translateX(-100%);
}
.mob-menu__state_open {
  visibility: visible;
  transform: translateX(0);
}
.mob-menu__close-menu {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  color: #111;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
}
.mob-menu__logo-close {
  padding: 15px;
  position: relative;
}
.mob-menu__close-menu:hover {
  color: #333;
  text-decoration: none;
}

.admin-bar .mob-menu {
  top: 46px;
}

.ovhi {
  overflow: hidden;
}

.slicknav_collapsed > a > .slicknav_arrow:before,
.slicknav_open > a > .slicknav_arrow:before {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slicknav_collapsed > a > .slicknav_arrow:before {
  content: "+";
}

.slicknav_open > a > .slicknav_arrow:before {
  content: "-";
}

.slicknav_nav {
  margin: 0;
  padding: 0;
}
.slicknav_nav ul {
  margin: 0 0 -1px 0;
  padding: 0;
}
.slicknav_nav li {
  display: block;
  list-style: none;
}
.slicknav_nav li a {
  display: block;
  position: relative;
  color: #333;
  text-decoration: none;
}

.slicknav_menu {
  padding-top: 20px;
  width: 100%;
}

.slick_off {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
}

.mobile-menu {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-accent-primary);
  border-radius: 10px;
  background: var(--color-accent-primary-gradient);
  padding: 6px 8px;
}
@media (width <= 63.99875rem) {
  .mobile-menu {
    display: block;
  }
}
.mobile-menu__box {
  width: 25px;
  height: 25px;
  display: inline-block;
  position: relative;
}
.mobile-menu .current-menu-item {
  margin: 0 20px !important;
}
.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 500;
}
.mobile-menu__contacts-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mobile-menu__contacts-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent-primary);
}
.mobile-menu__socials {
  display: flex;
}
.mobile-menu__items-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .slicknav_nav {
    display: block !important;
  }
}
.mobile-menu__lang-item {
  padding: 4px;
  border-radius: 4px;
}

.mobile-menu__lang {
  display: flex;
  align-items: center;
  background: rgba(214, 214, 214, 0.3803921569);
  border-radius: 10px;
  margin: 0 10px;
  gap: 0.5rem;
  align-self: end;
  padding: 0.5rem;
}
.mobile-menu__lang svg {
  width: 22px;
  height: 22px;
}

.mobile-menu__lang-item.is-active {
  color: #ffffff;
  background-color: var(--color-accent-primary-hover);
}

.slicknav_menu {
  font-weight: 500;
}

.slicknav_nav li > a,
.slicknav_nav li > span {
  display: block;
  position: relative;
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
}

.slicknav_arrow {
  position: absolute;
  width: 40px;
  height: 100%;
  right: 0;
  top: 0;
  text-align: center;
}

.slicknav_nav .slicknav_open:last-child > a {
  border-bottom: var(--border-light);
}

.slicknav_nav li .slicknav_parent > a {
  padding: 0;
}

.slicknav_nav li .slicknav_parent > a > a,
.slicknav_nav li .slicknav_parent > a > span {
  padding: 10px;
  display: block;
}

.header {
  color: #ffffff;
  min-height: 74px;
  transition: all 0.4s ease;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(16px);
  z-index: 99;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(17, 17, 17, 0.0666666667);
}
.header.dark {
  background: rgba(0, 0, 0, 0.5);
}
@media (width <= 63.99875rem) {
  .header {
    min-height: 60px;
  }
}
.header__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 40px;
}
@media (width <= 63.99875rem) {
  .header__container {
    padding: 0 26px;
  }
}
@media (width <= 47.99875rem) {
  .header__container {
    padding: 0 10px;
  }
}
.header__logo {
  justify-self: start;
  height: 46px;
}
@media (width <= 63.99875rem) {
  .header__logo {
    height: 38px;
  }
}
.header__logo svg {
  width: 100%;
  height: 100%;
  color: var(--color-accent-primary);
}
.header__logo img {
  height: 100%;
}
.header__menu {
  color: #ffffff;
  display: flex;
  justify-self: center;
  gap: 1rem;
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-weight: 700;
}
@media (width <= 63.99875rem) {
  .header__menu {
    display: none;
  }
}
.header__contacts {
  justify-self: end;
}

.menu-item {
  padding: 4px 12px;
  border-radius: 20px;
}

.header__menu-item.menu-item-has-children > .header__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header__menu-item.menu-item-has-children > .header__menu-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
}

.header__menu-item.menu-item-has-children:hover > .header__menu-link::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.header__menu .sub-menu .current-menu-item {
  color: var(--color-accent-primary);
}

.header__menu > .current-menu-item,
.slicknav_menu .current-menu-item {
  background: var(--color-accent-primary-gradient);
  color: var(--color-text);
}

.menu-item:not(.current-menu-ancestor) .header__menu-link {
  cursor: pointer;
  transition: all 0.4s ease;
}
.menu-item:not(.current-menu-ancestor) .header__menu-link:hover {
  color: var(--color-accent-primary);
}

.header__lang {
  width: 60px;
  height: 40px;
  display: flex;
  justify-content: center;
  position: relative;
  border: 1px solid var(--color-accent-primary);
  border-radius: 50px;
}
@media (width <= 63.99875rem) {
  .header__lang {
    display: none;
  }
}
.header__lang::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 9px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 3px 0;
  border-color: #fff transparent transparent;
  pointer-events: none;
}
.header__lang-select {
  width: 60px;
  padding-left: 7px;
  padding-right: 25px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  text-align: right;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.header__lang-select:focus {
  outline: 2px solid var(--color-accent-primary);
  outline-offset: 2px;
}

.header__contacts {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header__phones-block {
  display: flex;
  flex-direction: column;
}

.header__phone {
  font-size: 18px;
  font-weight: 600;
}

.header__contacts-btn {
  height: 48px;
  padding: 0 20px;
}

.header__contacts-img {
  height: 18px;
  width: auto;
  display: none;
}

.header__btn-mobile_block {
  position: relative;
  display: none;
}

.header__btn-mobile {
  background: var(--color-accent-primary-gradient);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: inline-flex;
}

.header__btn-dropdown {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  background: #fff;
  color: #000;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
  border-radius: 4px;
  text-align: center;
  width: 200px;
  top: 37px;
  right: -7px;
  opacity: 0;
  display: none;
  transition: all 1s ease;
}

.header__btn-mobile_block:hover > .header__btn-dropdown {
  display: block;
  z-index: 9;
  opacity: 1;
}

.header__btn-dropdown::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -6px;
  right: 7px;
  z-index: 100;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 12px;
  border-color: transparent transparent #fff transparent;
  line-height: 0;
  filter: drop-shadow(0 10px 50px rgba(21, 12, 33, 0.1));
}

.header__btn-dropdown_list {
  padding: 8px 12px;
  text-decoration: underline;
}

.header__btn-dropdown_btn {
  display: block;
  font-size: 14px;
  padding: 10px 0;
  border-radius: 0 0 4px 4px;
  text-transform: uppercase;
  background: var(--color-accent-primary);
  cursor: pointer;
  color: #000;
}

.header__btn-dropdown_btn:hover,
.header__btn-mobile_block:hover > .header__btn-mobile {
  background: #c79b4e;
}

.header__btn-dropdown_list li:not(:first-child) {
  margin-top: 8px;
}

@media (max-width: 1350px) {
  .header__phone {
    font-size: 16px;
  }
}
@media (max-width: 1450px) {
  .header__contacts-phone {
    font-size: 16px;
  }
  .header__contacts-btn {
    height: 40px;
    padding: 0 16px;
  }
}
@media (max-width: 1199px) {
  .header__contacts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 50%;
  }
  .header__contacts-btn span {
    display: none;
  }
  .header__contacts-img {
    display: flex;
  }
}
@media (max-width: 991px) {
  .header__contacts-btn {
    display: none !important;
  }
  .header__btn-mobile_block {
    display: flex;
  }
  .header__phones-block {
    display: none;
  }
  .header__contacts-phone {
    display: none;
  }
  .header__contacts-btn {
    margin-left: unset;
  }
}
.form {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding-block: 1.25rem;
}

form input:not([type=radio]):not([type=submit]),
form textarea,
form select {
  color: var(--color-text);
  width: 100%;
  border-radius: 30px;
  line-height: 1.2;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 1px solid rgba(205, 205, 205, 0.8039215686);
}

form input:not([type=radio]):not([type=submit]) {
  background: #ffffff;
}

form textarea {
  padding: 1rem;
}

form input:not([type=radio]):not([type=submit]),
form select {
  height: var(--input-height);
  padding: var(--input-padding);
}

form select {
  cursor: pointer;
}

form .input-group {
  display: flex;
  gap: 14px;
}
@media (width <= 47.99875rem) {
  form .input-group {
    flex-direction: column;
  }
}

::-moz-placeholder {
  color: #a3a3a3;
}

::placeholder {
  color: #a3a3a3;
}

@media (max-width: 767px) {
  ::-moz-placeholder {
    font-size: 16px !important;
  }
  ::placeholder {
    font-size: 16px !important;
  }
  .forma_vopros .submit {
    height: 50px !important;
  }
  .forma_vopros input[type=text],
  .forma_vopros input[type=tel],
  .forma_vopros input[type=email] {
    padding: 24px 20px !important;
  }
}
.pagehero {
  position: relative;
  padding-block: clamp(2.5rem, 1.2254901961rem + 5.2287581699vw, 7.5rem);
  color: #fff;
  overflow: hidden;
}
.pagehero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.pagehero .container {
  position: relative;
  z-index: 2;
}
.pagehero__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1300px) {
  .container {
    max-width: 1320px;
  }
}
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

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

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  position: relative;
  list-style: none;
  margin-left: 0;
  counter-reset: list;
}

ul:not([class]) li,
ol:not([class]) li {
  position: relative;
  padding-left: 20px;
  margin-top: 18px;
}

ul:not([class]) li:before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--color-accent-primary-gradient);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}

ul:not([class]) li:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 12px;
  width: 7px;
  height: 6px;
  background: url(/wp-content/themes/thewhitehouse/img/check.svg) center/contain no-repeat;
}

ol li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  font-size: 18px;
  top: -1px;
  left: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700 !important;
}

ul[class],
ol[class] {
  list-style: none;
}

ul[class] li::before,
ol[class] li::before {
  display: none;
}

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

.work,
.cases {
  overflow: hidden;
}

.title {
  font-weight: 600;
}

.section__undertitle {
  text-transform: uppercase;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 16px;
  padding: 4px 16px;
  border: 1px solid rgb(214, 214, 214);
  border-radius: 30px;
}
.section__title {
  margin-top: 16px;
  max-width: 62%;
}

.header__menu-item.menu-item-has-children {
  position: relative;
}
.header__menu-item.menu-item-has-children.current-menu-ancestor, .header__menu-item.menu-item-has-children.current-menu-parent {
  background: var(--color-accent-primary-gradient);
  color: var(--color-text);
}
.header__menu-item.menu-item-has-children > .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.header__menu-item.menu-item-has-children > .sub-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 30px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
}
.header__menu-item.menu-item-has-children > .sub-menu .header__menu-link {
  color: var(--color-text);
}
.header__menu-item.menu-item-has-children > .sub-menu .header__menu-link:hover {
  color: #000;
}
.header__menu-item.menu-item-has-children > .sub-menu .menu-item:hover {
  background: var(--color-accent-primary);
  color: var(--color-text) !important;
}
.header__menu-item.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu__inner,
.mobile-menu__box::before,
.mobile-menu__box::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #333333;
  border-radius: 1px;
  position: absolute;
  top: 13px;
  transition: all 0.15s ease-out 0s;
}

.mobile-menu__box::before {
  top: 6px;
  width: 15px;
}

.mobile-menu__box::after {
  bottom: 3px;
  top: unset;
}

.mobile-menu.active .mobile-menu__inner {
  transform: rotate(45deg);
  top: 13px;
  left: 0;
  background-color: #333333;
}

.mobile-menu.active .mobile-menu__box::before {
  top: -3px;
  opacity: 0;
  background: #333333;
}

.mobile-menu.active .mobile-menu__box::after {
  transform: rotate(-45deg);
  bottom: 10px;
  left: 0;
  background: #333333;
}

.running-line {
  width: 100%;
  max-width: 470px;
  height: 50px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
}

.running-track {
  display: block;
  transition: transform 0.5s ease-in-out;
}

.running-item {
  height: 50px;
  line-height: 1.2;
  font-size: 14px;
  text-align: center;
  white-space: normal;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.running-item strong {
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .info .section__container {
    padding-top: 20px;
  }
}
#calculator {
  padding-top: 72px;
}
#calculator__inner {
  max-width: 940px;
  margin: 0 auto;
}

.calculator-form__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calculator-form__input-group {
  display: flex;
  gap: 14px;
}

.calculator-form__input-group > * {
  flex: 1;
}

@media (max-width: 787px) {
  .calculator-form__input-group {
    flex-direction: column;
    gap: 14px;
  }
  .calculator-form__input-group > * {
    flex: unset;
  }
}
.form-block {
  background: var(--color-accent-primary);
  padding: 30px 50px;
  position: relative;
}
@media (width <= 63.99875rem) {
  .form-block {
    padding: 30px 30px;
  }
}
.form-block h2 {
  margin-top: 0;
  max-width: 600px;
  text-align: center;
  margin: auto;
}
.form-block .tabs {
  z-index: 3;
  position: relative;
}
.form-block .btn {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 380px;
}

ul.tabs__list {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  gap: 10px;
}

.tabs__link {
  color: #fff;
  background: rgba(87, 87, 87, 0.8);
  border-radius: 50px;
  padding: 10px;
  min-width: 130px;
  width: 100%;
  display: inline-block;
  text-align: center;
}
@media (width <= 63.99875rem) {
  .tabs__link {
    min-width: 100px;
  }
}
.tabs__link.active {
  background: #415074;
}

.form-block .col-12 {
  padding: 0 5px;
}

.form-block .row {
  margin-left: -5px;
  margin-right: -5px;
  gap: 10px 0;
}

.form-block .select-arrow {
  position: relative;
}

.form-block .select-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 6px 0;
  border-color: #000 transparent transparent transparent !important;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.teler-wd_hidden {
  display: none !important;
}

.bg-overlay {
  position: relative;
}
.bg-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
.bg-overlay > *:not(img):not(picture) {
  position: relative;
  z-index: 1;
}/*# sourceMappingURL=header.css.map */