@charset "UTF-8";
@keyframes owz-shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.is-shaking {
  animation: owz-shake 2.5s ease-in-out infinite !important;
  will-change: transform;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

section {
  display: inline-block;
  width: 100%;
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

p {
  font-size: var(--p);
}

:root {
  --prefix: "wp";
}

a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
}
a:hover {
  opacity: 1;
  transition: 0.5s ease;
  color: var(--text);
}
a:visited {
  color: inherit;
}

.wp-container {
  max-width: 85%;
  margin: 0 auto;
  padding: 0 6px;
}

.container {
  max-width: 85%;
  margin: 0 auto;
  padding: 0 6px;
}

.wp-header {
  position: sticky;
  top: -64px;
  z-index: 50;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header {
  position: sticky;
  top: -64px;
  z-index: 50;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.wp-logo {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.wp-logo-link {
  text-decoration: none;
  color: var(--text);
}

.logo-link {
  text-decoration: none;
  color: var(--text);
}

.wp-logo-text {
  color: var(--text);
}

.logo-text {
  color: var(--text);
}

.wp-actions {
  display: flex;
  gap: 10px;
}

.actions {
  display: flex;
  gap: 10px;
}

.wp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 0;
  margin: 0;
  background: var(--brand);
  color: var(--btn1);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.wp-btn:hover {
  transform: translateY(-1px);
}
.wp-btn:active {
  transform: translateY(0);
  opacity: 0.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 0;
  margin: 0;
  background: var(--brand);
  color: var(--btn1);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
  opacity: 0.9;
}

.wp-main {
  min-height: 60vh;
}

.main {
  min-height: 60vh;
}

.wp-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  background: #fff;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  background: #fff;
}

.wp-card-title {
  margin: 0 0 8px 0;
  font-weight: 800;
  font-size: 18px;
}

.card-title {
  margin: 0 0 8px 0;
  font-weight: 800;
  font-size: 18px;
}

.wp-card-text {
  margin: 0;
  color: var(--muted);
}

.card-text {
  margin: 0;
  color: var(--muted);
}

.wp-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wp-foot-text {
  font-size: 14px;
  line-height: 1.5;
}

.foot-text {
  font-size: 14px;
  line-height: 1.5;
}

.wp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.8vw, 18px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.8vw, 18px);
}

.wp-col-4 {
  grid-column: span 4;
}

.col-4 {
  grid-column: span 4;
}

.wp-col-6 {
  grid-column: span 6;
}

.col-6 {
  grid-column: span 6;
}

.wp-col-12 {
  grid-column: span 12;
}

.col-12 {
  grid-column: span 12;
}

@media (max-width: 900px) {
  .wp-nav {
    display: none;
  }
  .nav {
    display: none;
  }
  .wp-footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
.wp-lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}
.wp-lang-switcher .wp-lang-btn {
  --ring: color-mix(in srgb, var(--brand), white 60%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  min-width: 0;
  padding: 6px 12px;
  border-radius: calc(var(--radius) - 2px);
  background: var(--bg);
  border: 1px solid var(--muted);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.08s ease, box-shadow 0.2s ease;
  will-change: transform;
  margin: 0;
}
@media (width < 768px) {
  .wp-lang-switcher .wp-lang-btn {
    border: 0;
    padding: 4px 3px;
    grid-area: empty;
  }
}
.wp-lang-switcher .wp-lang-btn:hover {
  border-color: color-mix(in srgb, var(--line), var(--text) 18%);
}
.wp-lang-switcher .wp-lang-btn:active {
  transform: translateY(1px);
}
.wp-lang-switcher .wp-lang-btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}
.wp-lang-switcher .wp-lang-btn .wp-lang-current {
  letter-spacing: 0.04em;
  font-weight: 800;
  min-width: 30px;
  text-align: center;
  max-width: clamp(60px, 20vw, 160px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wp-lang-switcher .wp-lang-btn .wp-lang-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--muted);
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
}
.wp-lang-switcher .wp-lang-btn[aria-expanded=true] .wp-lang-caret {
  transform: rotate(180deg);
}
.wp-lang-switcher .wp-lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 10px;
  width: -moz-max-content;
  width: max-content;
  max-width: min(90vw, 320px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--bg); /* Fixed: Removed color-mix to ensure opacity */
  box-shadow: 0 10px 30px rgba(14, 22, 40, 0.12);
  /* backdrop-filter: blur(6px); Removed blur which can cause issues with z-index contexts */
  z-index: 99999; /* Increased Z-Index */
  display: grid;
  gap: 6px;
  /* Анимация появления */
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform-origin: top right;
}
.wp-lang-switcher .wp-lang-dropdown[data-open=true] {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wp-lang-switcher .wp-lang-item {
  --in-bg: color-mix(in srgb, var(--brand), white 94%);
  --in-ring: color-mix(in srgb, var(--brand), white 70%);
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  gap: 10px;
  padding: 10px 12px;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid transparent;
  color: var(--text);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.08s ease;
}
.wp-lang-switcher .wp-lang-item:hover {
  background: var(--muted);
}
.wp-lang-switcher .wp-lang-item:active {
  transform: translateY(1px);
}
.wp-lang-switcher .wp-lang-item:focus-visible {
  outline: 2px solid var(--in-ring);
  outline-offset: 2px;
}
.wp-lang-switcher .wp-lang-item.wp-lang-item--active {
  border-color: color-mix(in srgb, var(--muted), white 55%);
}
.wp-lang-switcher .wp-lang-item .wp-lang-code {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 28px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 14px;
}
.wp-lang-switcher .wp-lang-item .wp-lang-name {
  font-size: 14px;
  opacity: 0.92;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-left: 1px solid var(--text);
  padding-left: 10px;
}
@media (max-width: 680px) {
  .wp-lang-switcher .wp-lang-dropdown {
    left: 0;
    right: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wp-lang-switcher .wp-lang-dropdown {
    transition: none;
  }
  .wp-lang-switcher .wp-lang-btn .wp-lang-caret {
    transition: none;
  }
  .wp-lang-switcher .wp-lang-item {
    transition: none;
  }
}

#site-header {
  z-index: 1000;
  background: var(--bg);
}
#site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
#site-header .wp-container {
  padding: 15px 6px;
}
#site-header .container {
  padding: 15px 6px;
}

body.menu-open {
  overflow: hidden;
}

.wp-header-hero {
  background: var(--bg);
  color: var(--text);
}
.wp-header-hero .wp-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (width < 1023px) {
  .wp-header-hero .wp-header-row {
    padding: 0 6px;
  }
}
@media (width < 767px) {
  .wp-header-hero .wp-header-row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "logo btn2 btn1" "empty empty nav";
  }
}
@media (width < 450px) {
  .wp-header-hero .wp-header-row {
    flex-direction: column;
    gap: 5px;
  }
  .wp-header-hero .wp-header-row:not(:has(.lg-w)) {
    flex-direction: row;
  }
  .wp-header-hero .wp-header-row:not(:has(.lg-w)) .wp-burger-menu {
    margin-left: auto;
  }
}
.wp-header-hero .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (width < 1023px) {
  .wp-header-hero .header-row {
    padding: 0 6px;
  }
}
@media (width < 767px) {
  .wp-header-hero .header-row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "logo btn2 btn1" "empty empty nav";
  }
}
@media (width < 450px) {
  .wp-header-hero .header-row {
    flex-direction: column;
    gap: 5px;
  }
  .wp-header-hero .header-row:not(:has(.lg-w)) {
    flex-direction: row;
  }
  .wp-header-hero .header-row:not(:has(.lg-w)) .wp-burger-menu {
    margin-left: auto;
  }
}
@media (width < 768px) {
  .wp-header-hero:not(:has(.lg-w)) {
    margin-top: 30px;
  }
}
@media (width < 768px) {
  .wp-header-hero:not(:has(.lg-w)) .wp-actions {
    position: absolute;
    top: -40px;
    right: 0;
    width: 100%;
    width: 100%;
    padding: 0 10px;
  }
  .wp-header-hero:not(:has(.lg-w)) .wp-actions button {
    width: 100%;
  }
}
@media (width < 768px) {
  .wp-header-hero:not(:has(.lg-w)) .actions {
    position: absolute;
    top: -40px;
    right: 0;
    width: 100%;
    width: 100%;
    padding: 0 10px;
  }
  .wp-header-hero:not(:has(.lg-w)) .actions button {
    width: 100%;
  }
}
@media (width < 768px) {
  .wp-header-hero .wp-container {
    max-width: 100%;
  }
}
@media (width < 768px) {
  .wp-header-hero .container {
    max-width: 100%;
  }
}
.wp-header-hero .wp-logo-link img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.wp-header-hero .logo-link img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.wp-header-hero .wp-logo {
  max-width: 190px;
  width: 100%;
}
@media (width < 1023px) {
  .wp-header-hero .wp-logo {
    min-width: 160px;
  }
}
@media (width < 450px) {
  .wp-header-hero .wp-logo {
    min-width: 120px !important;
    max-width: 120px !important;
    margin-right: auto;
  }
}
.wp-header-hero .wp-logo img {
  width: 100%;
}
.wp-header-hero .logo {
  max-width: 190px;
  width: 100%;
}
@media (width < 1023px) {
  .wp-header-hero .logo {
    min-width: 160px;
  }
}
@media (width < 450px) {
  .wp-header-hero .logo {
    min-width: 120px !important;
    max-width: 120px !important;
    margin-right: auto;
  }
}
.wp-header-hero .logo img {
  width: 100%;
}
.wp-header-hero .wp-header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (width < 768px) {
  .wp-header-hero .wp-header-buttons {
    gap: 8px;
    display: contents;
  }
}
@media (width < 450px) {
  .wp-header-hero .wp-header-buttons {
    width: 100%;
    justify-content: space-between;
  }
}
.wp-header-hero .header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (width < 768px) {
  .wp-header-hero .header-buttons {
    gap: 8px;
    display: contents;
  }
}
@media (width < 450px) {
  .wp-header-hero .header-buttons {
    width: 100%;
    justify-content: space-between;
  }
}
.wp-header-hero .wp-nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 450px) {
  .wp-header-hero .wp-nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
.wp-header-hero .wp-nav ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (width < 1023px) {
  .wp-header-hero .wp-nav ul {
    flex-direction: column;
  }
}
.wp-header-hero .wp-nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
}
.wp-header-hero .wp-nav a:hover {
  opacity: 1;
}
.wp-header-hero .nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 450px) {
  .wp-header-hero .nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
.wp-header-hero .nav ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (width < 1023px) {
  .wp-header-hero .nav ul {
    flex-direction: column;
  }
}
.wp-header-hero .nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
}
.wp-header-hero .nav a:hover {
  opacity: 1;
}
.wp-header-hero .menu ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.wp-header-hero .menu ul li + li {
  display: flex;
  align-items: center;
  grid-gap: 15px;
}
.wp-header-hero .menu ul li + li::before {
  content: "|";
}
@media (width < 1023px) {
  .wp-header-hero .menu ul li + li::before {
    display: none;
  }
}
@media (width < 450px) {
  .wp-header-hero .wp-actions {
    display: contents;
  }
}
.wp-header-hero .wp-actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 1023px) {
  .wp-header-hero .wp-actions button:first-child {
    grid-area: btn2;
    margin-left: auto;
  }
}
@media (width < 1023px) {
  .wp-header-hero .wp-actions button:last-child {
    grid-area: btn1;
    margin-left: auto;
  }
}
@media (width < 768px) {
  .wp-header-hero .wp-actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 9px 9px;
    width: 100%;
  }
}
@media (width < 450px) {
  .wp-header-hero .actions {
    display: contents;
  }
}
.wp-header-hero .actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 1023px) {
  .wp-header-hero .actions button:first-child {
    grid-area: btn2;
    margin-left: auto;
  }
}
@media (width < 1023px) {
  .wp-header-hero .actions button:last-child {
    grid-area: btn1;
    margin-left: auto;
  }
}
@media (width < 768px) {
  .wp-header-hero .actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 9px 9px;
    width: 100%;
  }
}

.header-hero {
  background: var(--bg);
  color: var(--text);
}
.header-hero .wp-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (width < 1023px) {
  .header-hero .wp-header-row {
    padding: 0 6px;
  }
}
@media (width < 767px) {
  .header-hero .wp-header-row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "logo btn2 btn1" "empty empty nav";
  }
}
@media (width < 450px) {
  .header-hero .wp-header-row {
    flex-direction: column;
    gap: 5px;
  }
  .header-hero .wp-header-row:not(:has(.lg-w)) {
    flex-direction: row;
  }
  .header-hero .wp-header-row:not(:has(.lg-w)) .wp-burger-menu {
    margin-left: auto;
  }
}
.header-hero .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (width < 1023px) {
  .header-hero .header-row {
    padding: 0 6px;
  }
}
@media (width < 767px) {
  .header-hero .header-row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "logo btn2 btn1" "empty empty nav";
  }
}
@media (width < 450px) {
  .header-hero .header-row {
    flex-direction: column;
    gap: 5px;
  }
  .header-hero .header-row:not(:has(.lg-w)) {
    flex-direction: row;
  }
  .header-hero .header-row:not(:has(.lg-w)) .wp-burger-menu {
    margin-left: auto;
  }
}
@media (width < 768px) {
  .header-hero:not(:has(.lg-w)) {
    margin-top: 30px;
  }
}
@media (width < 768px) {
  .header-hero:not(:has(.lg-w)) .wp-actions {
    position: absolute;
    top: -40px;
    right: 0;
    width: 100%;
    width: 100%;
    padding: 0 10px;
  }
  .header-hero:not(:has(.lg-w)) .wp-actions button {
    width: 100%;
  }
}
@media (width < 768px) {
  .header-hero:not(:has(.lg-w)) .actions {
    position: absolute;
    top: -40px;
    right: 0;
    width: 100%;
    width: 100%;
    padding: 0 10px;
  }
  .header-hero:not(:has(.lg-w)) .actions button {
    width: 100%;
  }
}
@media (width < 768px) {
  .header-hero .wp-container {
    max-width: 100%;
  }
}
@media (width < 768px) {
  .header-hero .container {
    max-width: 100%;
  }
}
.header-hero .wp-logo-link img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.header-hero .logo-link img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.header-hero .wp-logo {
  max-width: 190px;
  width: 100%;
}
@media (width < 1023px) {
  .header-hero .wp-logo {
    min-width: 160px;
  }
}
@media (width < 450px) {
  .header-hero .wp-logo {
    min-width: 120px !important;
    max-width: 120px !important;
    margin-right: auto;
  }
}
.header-hero .wp-logo img {
  width: 100%;
}
.header-hero .logo {
  max-width: 190px;
  width: 100%;
}
@media (width < 1023px) {
  .header-hero .logo {
    min-width: 160px;
  }
}
@media (width < 450px) {
  .header-hero .logo {
    min-width: 120px !important;
    max-width: 120px !important;
    margin-right: auto;
  }
}
.header-hero .logo img {
  width: 100%;
}
.header-hero .wp-header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (width < 768px) {
  .header-hero .wp-header-buttons {
    gap: 8px;
    display: contents;
  }
}
@media (width < 450px) {
  .header-hero .wp-header-buttons {
    width: 100%;
    justify-content: space-between;
  }
}
.header-hero .header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (width < 768px) {
  .header-hero .header-buttons {
    gap: 8px;
    display: contents;
  }
}
@media (width < 450px) {
  .header-hero .header-buttons {
    width: 100%;
    justify-content: space-between;
  }
}
.header-hero .wp-nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 450px) {
  .header-hero .wp-nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
.header-hero .wp-nav ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (width < 1023px) {
  .header-hero .wp-nav ul {
    flex-direction: column;
  }
}
.header-hero .wp-nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
}
.header-hero .wp-nav a:hover {
  opacity: 1;
}
.header-hero .nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 450px) {
  .header-hero .nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
.header-hero .nav ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (width < 1023px) {
  .header-hero .nav ul {
    flex-direction: column;
  }
}
.header-hero .nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
}
.header-hero .nav a:hover {
  opacity: 1;
}
.header-hero .menu ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-hero .menu ul li + li {
  display: flex;
  align-items: center;
  grid-gap: 15px;
}
.header-hero .menu ul li + li::before {
  content: "|";
}
@media (width < 1023px) {
  .header-hero .menu ul li + li::before {
    display: none;
  }
}
@media (width < 450px) {
  .header-hero .wp-actions {
    display: contents;
  }
}
.header-hero .wp-actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 1023px) {
  .header-hero .wp-actions button:first-child {
    grid-area: btn2;
    margin-left: auto;
  }
}
@media (width < 1023px) {
  .header-hero .wp-actions button:last-child {
    grid-area: btn1;
    margin-left: auto;
  }
}
@media (width < 768px) {
  .header-hero .wp-actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 9px 9px;
    width: 100%;
  }
}
@media (width < 450px) {
  .header-hero .actions {
    display: contents;
  }
}
.header-hero .actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 1023px) {
  .header-hero .actions button:first-child {
    grid-area: btn2;
    margin-left: auto;
  }
}
@media (width < 1023px) {
  .header-hero .actions button:last-child {
    grid-area: btn1;
    margin-left: auto;
  }
}
@media (width < 768px) {
  .header-hero .actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 9px 9px;
    width: 100%;
  }
}

.wp-burger-menu {
  display: none;
}
@media (width < 1023px) {
  .wp-burger-menu {
    display: grid;
    background: transparent;
    border: 0;
    cursor: pointer;
    gap: 7px;
    padding: 0 6px;
    grid-area: nav;
    max-width: 40px;
    margin-left: auto;
  }
  .wp-burger-menu span {
    display: table;
    height: 2px;
    width: 30px;
    background: var(--text);
  }
  .wp-burger-menu span:nth-child(2) {
    width: 79%;
    margin-left: auto;
  }
  .wp-burger-menu span:nth-child(3) {
    width: 40%;
    margin-left: auto;
  }
}

.burger-menu {
  display: none;
}
@media (width < 1023px) {
  .burger-menu {
    display: grid;
    background: transparent;
    border: 0;
    cursor: pointer;
    gap: 7px;
    padding: 0 6px;
    grid-area: nav;
    max-width: 40px;
    margin-left: auto;
  }
  .burger-menu span {
    display: table;
    height: 2px;
    width: 30px;
    background: var(--text);
  }
  .burger-menu span:nth-child(2) {
    width: 79%;
    margin-left: auto;
  }
  .burger-menu span:nth-child(3) {
    width: 40%;
    margin-left: auto;
  }
}

.wp-header-centered {
  background: var(--bg);
  color: var(--text);
}
.wp-header-centered .wp-logo {
  max-width: 160px;
  width: 100%;
}
@Media (width < 1023px) {
  .wp-header-centered .wp-logo {
    margin-right: auto;
  }
}
@media (width < 768px) {
  .wp-header-centered .wp-logo {
    order: 2;
    margin: 0 auto;
  }
}
.wp-header-centered .wp-logo a {
  display: table;
  margin: 0 auto;
}
.wp-header-centered .wp-logo img {
  height: 50px;
  width: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.wp-header-centered .logo {
  max-width: 160px;
  width: 100%;
}
@Media (width < 1023px) {
  .wp-header-centered .logo {
    margin-right: auto;
  }
}
@media (width < 768px) {
  .wp-header-centered .logo {
    order: 2;
    margin: 0 auto;
  }
}
.wp-header-centered .logo a {
  display: table;
  margin: 0 auto;
}
.wp-header-centered .logo img {
  height: 50px;
  width: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (width < 768px) {
  .wp-header-centered .wp-lang-switcher {
    order: 1;
    margin-right: auto;
  }
}
@media (width < 768px) {
  .wp-header-centered .lang-switcher {
    order: 1;
    margin-right: auto;
  }
}
.wp-header-centered .wp-nav {
  margin-right: auto;
}
.wp-header-centered .wp-nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 768px) {
  .wp-header-centered .wp-nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
.wp-header-centered .wp-nav ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-right: auto;
}
@media (width < 900px) {
  .wp-header-centered .wp-nav ul {
    flex-direction: column;
  }
}
.wp-header-centered .wp-nav ul li {
  list-style: none;
}
.wp-header-centered .wp-nav ul li a {
  color: var(--text);
}
.wp-header-centered .nav {
  margin-right: auto;
}
.wp-header-centered .nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 768px) {
  .wp-header-centered .nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
.wp-header-centered .nav ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-right: auto;
}
@media (width < 900px) {
  .wp-header-centered .nav ul {
    flex-direction: column;
  }
}
.wp-header-centered .nav ul li {
  list-style: none;
}
.wp-header-centered .nav ul li a {
  color: var(--text);
}
.wp-header-centered .wp-header-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
}
@media (width < 900px) {
  .wp-header-centered .wp-header-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .wp-header-centered .wp-header-row {
    padding-top: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.wp-header-centered .wp-header-row:not(:has(.lang-swith)) {
  grid-template-columns: repeat(2, 1fr);
}
.wp-header-centered .wp-header-row:not(:has(.lang-swith)) .wp-logo {
  margin: 0 auto 0 0;
}
.wp-header-centered .wp-header-row:not(:has(.lang-swith)) .logo {
  margin: 0 auto 0 0;
}
.wp-header-centered .header-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
}
@media (width < 900px) {
  .wp-header-centered .header-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .wp-header-centered .header-row {
    padding-top: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.wp-header-centered .header-row:not(:has(.lang-swith)) {
  grid-template-columns: repeat(2, 1fr);
}
.wp-header-centered .header-row:not(:has(.lang-swith)) .wp-logo {
  margin: 0 auto 0 0;
}
.wp-header-centered .header-row:not(:has(.lang-swith)) .logo {
  margin: 0 auto 0 0;
}
.wp-header-centered .wp-header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  margin-left: auto;
}
@media (width < 768px) {
  .wp-header-centered .wp-header-buttons {
    display: contents;
  }
}
.wp-header-centered .header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  margin-left: auto;
}
@media (width < 768px) {
  .wp-header-centered .header-buttons {
    display: contents;
  }
}
@media (width < 768px) {
  .wp-header-centered .wp-actions {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .wp-header-centered .wp-actions botton {
    width: 100%;
  }
}
.wp-header-centered .wp-actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 768px) {
  .wp-header-centered .wp-actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 13px 9px;
    width: 100%;
    margin: 0 auto !important;
  }
}
@media (width < 768px) {
  .wp-header-centered .actions {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .wp-header-centered .actions botton {
    width: 100%;
  }
}
.wp-header-centered .actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 768px) {
  .wp-header-centered .actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 13px 9px;
    width: 100%;
    margin: 0 auto !important;
  }
}
@media (width > 900px) {
  .wp-header-centered .wp-burger-menu {
    display: none;
  }
}
@media (width < 768px) {
  .wp-header-centered .wp-burger-menu {
    order: 3;
    margin-left: auto;
  }
}
@media (width > 900px) {
  .wp-header-centered .burger-menu {
    display: none;
  }
}
@media (width < 768px) {
  .wp-header-centered .burger-menu {
    order: 3;
    margin-left: auto;
  }
}

.header-centered {
  background: var(--bg);
  color: var(--text);
}
.header-centered .wp-logo {
  max-width: 160px;
  width: 100%;
}
@Media (width < 1023px) {
  .header-centered .wp-logo {
    margin-right: auto;
  }
}
@media (width < 768px) {
  .header-centered .wp-logo {
    order: 2;
    margin: 0 auto;
  }
}
.header-centered .wp-logo a {
  display: table;
  margin: 0 auto;
}
.header-centered .wp-logo img {
  height: 50px;
  width: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.header-centered .logo {
  max-width: 160px;
  width: 100%;
}
@Media (width < 1023px) {
  .header-centered .logo {
    margin-right: auto;
  }
}
@media (width < 768px) {
  .header-centered .logo {
    order: 2;
    margin: 0 auto;
  }
}
.header-centered .logo a {
  display: table;
  margin: 0 auto;
}
.header-centered .logo img {
  height: 50px;
  width: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (width < 768px) {
  .header-centered .wp-lang-switcher {
    order: 1;
    margin-right: auto;
  }
}
@media (width < 768px) {
  .header-centered .lang-switcher {
    order: 1;
    margin-right: auto;
  }
}
.header-centered .wp-nav {
  margin-right: auto;
}
.header-centered .wp-nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 768px) {
  .header-centered .wp-nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
.header-centered .wp-nav ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-right: auto;
}
@media (width < 900px) {
  .header-centered .wp-nav ul {
    flex-direction: column;
  }
}
.header-centered .wp-nav ul li {
  list-style: none;
}
.header-centered .wp-nav ul li a {
  color: var(--text);
}
.header-centered .nav {
  margin-right: auto;
}
.header-centered .nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 768px) {
  .header-centered .nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
.header-centered .nav ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-right: auto;
}
@media (width < 900px) {
  .header-centered .nav ul {
    flex-direction: column;
  }
}
.header-centered .nav ul li {
  list-style: none;
}
.header-centered .nav ul li a {
  color: var(--text);
}
.header-centered .wp-header-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
}
@media (width < 900px) {
  .header-centered .wp-header-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .header-centered .wp-header-row {
    padding-top: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.header-centered .wp-header-row:not(:has(.lang-swith)) {
  grid-template-columns: repeat(2, 1fr);
}
.header-centered .wp-header-row:not(:has(.lang-swith)) .wp-logo {
  margin: 0 auto 0 0;
}
.header-centered .wp-header-row:not(:has(.lang-swith)) .logo {
  margin: 0 auto 0 0;
}
.header-centered .header-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
}
@media (width < 900px) {
  .header-centered .header-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .header-centered .header-row {
    padding-top: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.header-centered .header-row:not(:has(.lang-swith)) {
  grid-template-columns: repeat(2, 1fr);
}
.header-centered .header-row:not(:has(.lang-swith)) .wp-logo {
  margin: 0 auto 0 0;
}
.header-centered .header-row:not(:has(.lang-swith)) .logo {
  margin: 0 auto 0 0;
}
.header-centered .wp-header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  margin-left: auto;
}
@media (width < 768px) {
  .header-centered .wp-header-buttons {
    display: contents;
  }
}
.header-centered .header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  margin-left: auto;
}
@media (width < 768px) {
  .header-centered .header-buttons {
    display: contents;
  }
}
@media (width < 768px) {
  .header-centered .wp-actions {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .header-centered .wp-actions botton {
    width: 100%;
  }
}
.header-centered .wp-actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 768px) {
  .header-centered .wp-actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 13px 9px;
    width: 100%;
    margin: 0 auto !important;
  }
}
@media (width < 768px) {
  .header-centered .actions {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .header-centered .actions botton {
    width: 100%;
  }
}
.header-centered .actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 768px) {
  .header-centered .actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 13px 9px;
    width: 100%;
    margin: 0 auto !important;
  }
}
@media (width > 900px) {
  .header-centered .wp-burger-menu {
    display: none;
  }
}
@media (width < 768px) {
  .header-centered .wp-burger-menu {
    order: 3;
    margin-left: auto;
  }
}
@media (width > 900px) {
  .header-centered .burger-menu {
    display: none;
  }
}
@media (width < 768px) {
  .header-centered .burger-menu {
    order: 3;
    margin-left: auto;
  }
}

div[data-variant=minimal] {
  position: unset !important;
  box-shadow: 0 0 0 0 !important;
}

.wp-header-minimal {
  padding-top: 10px;
  margin-bottom: 30px;
  background: var(--bg);
  color: var(--text);
}
.wp-header-minimal .wp-container {
  padding: 0 6px !important;
}
.wp-header-minimal .container {
  padding: 0 6px !important;
}
.wp-header-minimal .wp-logo {
  max-width: 160px;
  width: 100%;
}
.wp-header-minimal .wp-logo img {
  width: 100%;
}
.wp-header-minimal .logo {
  max-width: 160px;
  width: 100%;
}
.wp-header-minimal .logo img {
  width: 100%;
}
.wp-header-minimal .wp-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wp-header-minimal .wp-header-row ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-right: auto;
}
@media (width < 900px) {
  .wp-header-minimal .wp-header-row ul {
    flex-direction: column;
  }
}
.wp-header-minimal .wp-header-row ul li {
  list-style: none;
}
.wp-header-minimal .wp-header-row ul li a {
  color: var(--text);
}
.wp-header-minimal .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wp-header-minimal .header-row ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-right: auto;
}
@media (width < 900px) {
  .wp-header-minimal .header-row ul {
    flex-direction: column;
  }
}
.wp-header-minimal .header-row ul li {
  list-style: none;
}
.wp-header-minimal .header-row ul li a {
  color: var(--text);
}
.wp-header-minimal .wp-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.wp-header-minimal .wp-header-top p {
  margin: 0;
}
@media (width < 650px) {
  .wp-header-minimal .wp-header-top p {
    display: none;
  }
}
.wp-header-minimal .wp-header-top button {
  height: 32px;
}
.wp-header-minimal .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.wp-header-minimal .header-top p {
  margin: 0;
}
@media (width < 650px) {
  .wp-header-minimal .header-top p {
    display: none;
  }
}
.wp-header-minimal .header-top button {
  height: 32px;
}
.wp-header-minimal .wp-header-buttons {
  margin-left: auto;
}
@media (width < 650px) {
  .wp-header-minimal .wp-header-buttons {
    order: 3;
  }
}
.wp-header-minimal .header-buttons {
  margin-left: auto;
}
@media (width < 650px) {
  .wp-header-minimal .header-buttons {
    order: 3;
  }
}
.wp-header-minimal .wp-header-actions {
  margin-left: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.wp-header-minimal .wp-header-actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 768px) {
  .wp-header-minimal .wp-header-actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 9px 9px;
  }
}
.wp-header-minimal .header-actions {
  margin-left: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.wp-header-minimal .header-actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 768px) {
  .wp-header-minimal .header-actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 9px 9px;
  }
}
.wp-header-minimal .wp-nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 768px) {
  .wp-header-minimal .wp-nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
.wp-header-minimal .nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 768px) {
  .wp-header-minimal .nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
@media (width > 900px) {
  .wp-header-minimal .wp-burger-menu {
    display: none;
  }
}
@media (width < 768px) {
  .wp-header-minimal .wp-burger-menu {
    order: 3;
    margin-left: auto;
  }
}
@media (width > 900px) {
  .wp-header-minimal .burger-menu {
    display: none;
  }
}
@media (width < 768px) {
  .wp-header-minimal .burger-menu {
    order: 3;
    margin-left: auto;
  }
}

.header-minimal {
  padding-top: 10px;
  margin-bottom: 30px;
  background: var(--bg);
  color: var(--text);
}
.header-minimal .wp-container {
  padding: 0 6px !important;
}
.header-minimal .container {
  padding: 0 6px !important;
}
.header-minimal .wp-logo {
  max-width: 160px;
  width: 100%;
}
.header-minimal .wp-logo img {
  width: 100%;
}
.header-minimal .logo {
  max-width: 160px;
  width: 100%;
}
.header-minimal .logo img {
  width: 100%;
}
.header-minimal .wp-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-minimal .wp-header-row ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-right: auto;
}
@media (width < 900px) {
  .header-minimal .wp-header-row ul {
    flex-direction: column;
  }
}
.header-minimal .wp-header-row ul li {
  list-style: none;
}
.header-minimal .wp-header-row ul li a {
  color: var(--text);
}
.header-minimal .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-minimal .header-row ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-right: auto;
}
@media (width < 900px) {
  .header-minimal .header-row ul {
    flex-direction: column;
  }
}
.header-minimal .header-row ul li {
  list-style: none;
}
.header-minimal .header-row ul li a {
  color: var(--text);
}
.header-minimal .wp-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.header-minimal .wp-header-top p {
  margin: 0;
}
@media (width < 650px) {
  .header-minimal .wp-header-top p {
    display: none;
  }
}
.header-minimal .wp-header-top button {
  height: 32px;
}
.header-minimal .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.header-minimal .header-top p {
  margin: 0;
}
@media (width < 650px) {
  .header-minimal .header-top p {
    display: none;
  }
}
.header-minimal .header-top button {
  height: 32px;
}
.header-minimal .wp-header-buttons {
  margin-left: auto;
}
@media (width < 650px) {
  .header-minimal .wp-header-buttons {
    order: 3;
  }
}
.header-minimal .header-buttons {
  margin-left: auto;
}
@media (width < 650px) {
  .header-minimal .header-buttons {
    order: 3;
  }
}
.header-minimal .wp-header-actions {
  margin-left: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-minimal .wp-header-actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 768px) {
  .header-minimal .wp-header-actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 9px 9px;
  }
}
.header-minimal .header-actions {
  margin-left: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-minimal .header-actions button:first-child {
  background: var(--muted);
  color: var(--btn2);
}
@media (width < 768px) {
  .header-minimal .header-actions button {
    font-size: 14px;
    height: unset;
    font-size: 14px;
    padding: 9px 9px;
  }
}
.header-minimal .wp-nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 768px) {
  .header-minimal .wp-nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
.header-minimal .nav[data-open=true] {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 768px) {
  .header-minimal .nav[data-open=true] {
    top: 121px;
    height: calc(100vh - 121px);
  }
}
@media (width > 900px) {
  .header-minimal .wp-burger-menu {
    display: none;
  }
}
@media (width < 768px) {
  .header-minimal .wp-burger-menu {
    order: 3;
    margin-left: auto;
  }
}
@media (width > 900px) {
  .header-minimal .burger-menu {
    display: none;
  }
}
@media (width < 768px) {
  .header-minimal .burger-menu {
    order: 3;
    margin-left: auto;
  }
}

.g-block {
  margin: 25px 0;
}
.g-block-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (width < 1024px) {
  .g-block-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width < 768px) {
  .g-block-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.g-block-item {
  position: relative;
  aspect-ratio: 7/10;
  border-radius: var(--radius);
  overflow: hidden;
}
.g-block-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.g-block-item:hover .g-block-content button span {
  opacity: 1;
  transition: 0.5s 0.5s ease-in-out;
}
.g-block-item:hover .g-block-description p {
  opacity: 0.8;
  height: 25px;
  transform: translateY(0);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: height 0.5s 0.5s ease-in-out;
  margin: 0;
}
.g-block[data-shape=square] .g-block-item {
  aspect-ratio: 1/1;
}
.g-block-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-block-content .budget {
  position: absolute;
  top: 10px;
  right: 10px;
  /* фон/цвет приходят через inline style из render.php и редактора */
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  border: 0;
}
.g-block-content button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.g-block-content button span {
  font-size: 16px;
  font-weight: 700;
  background: var(--brand);
  color: var(--btn1);
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
}
.g-block-description {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.g-block-description .title {
  font-weight: 700;
  height: 37px;
}
.g-block-description p {
  font-size: 11px;
  opacity: 0;
  height: 0;
  margin: 0;
}
.g-block-after {
  margin-top: 24px;
  display: grid;
  place-items: center;
}
.g-block-after button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: var(--brand, #ff124c);
  color: var(--btn1);
  border-radius: var(--radius, 8px);
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: var(--shadow, 0 10px 30px rgba(14, 22, 40, 0.08));
}

.owz-games h2 {
  font-size: var(--h2, 25px);
  margin: 0 0 16px;
}

/* wrapper */
.owz-banner-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.owz-banner-cta-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}

.owz-banner-cta.pos-left .container, .banner-cta.pos-left .container {
  align-items: start;
  text-align: left;
}

.owz-banner-cta.pos-right .container, .banner-cta.pos-right .container {
  align-items: end;
  text-align: right;
}

.owz-banner-cta.pos-center .container, .banner-cta.pos-center .container {
  align-items: center;
  text-align: center;
}

/* images */
.owz-banner-cta__images, .banner-cta__images {
  position: absolute;
  inset: 0;
}
.owz-banner-cta__images::after, .banner-cta__images::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--banner-overlay, transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.owz-banner-cta[data-overlay=on] .owz-banner-cta__images::after,
.banner-cta[data-overlay=on] .banner-cta__images::after {
  opacity: 1;
}

.owz-banner-cta__images img, .banner-cta__images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}

.owz-banner-cta__images .img--mobile, .banner-cta__images .img--mobile {
  display: block;
}

@media (min-width: 641px) {
  .owz-banner-cta__images .img--mobile, .banner-cta__images .img--mobile {
    display: none;
  }
  .owz-banner-cta__images .img--tablet, .banner-cta__images .img--tablet {
    display: block;
  }
}
@media (min-width: 1025px) {
  .owz-banner-cta__images .img--tablet, .banner-cta__images .img--tablet {
    display: none;
  }
  .owz-banner-cta__images .img--desktop, .banner-cta__images .img--desktop {
    display: block;
  }
}
/* text */
.owz-banner-cta__text, .banner-cta__text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 36px);
  line-height: 1.2;
  padding: 16px;
  max-width: 1000px;
}

/* button */
.owz-banner-cta__btn {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 32px;
  text-transform: capitalize;
  border-radius: var(--radius);
  border: 0;
  font-weight: 700;
  cursor: pointer;
  background: var(--brand, #ff3400);
  color: var(--btn1);
  line-height: 1;
  text-align: center;
  transition: transform 0.06s ease, filter 0.2s ease;
  position: relative;
  z-index: 22;
}

.wp-btn {
  display: table !important;
  margin-top: 12px;
  padding: 14px 32px;
  text-transform: capitalize;
  border-radius: var(--radius);
  border: 0;
  font-weight: 700;
  cursor: pointer;
  background: var(--brand, #ff3400);
  color: var(--btn1);
  line-height: 1;
  text-align: center;
  transition: transform 0.06s ease, filter 0.2s ease;
  position: relative;
  z-index: 22;
  margin: 20px auto !important;
}

.btn {
  display: table !important;
  margin-top: 12px;
  padding: 14px 32px;
  text-transform: capitalize;
  border-radius: var(--radius);
  border: 0;
  font-weight: 700;
  cursor: pointer;
  background: var(--brand, #ff3400);
  color: var(--btn1);
  line-height: 1;
  text-align: center;
  transition: transform 0.06s ease, filter 0.2s ease;
  position: relative;
  z-index: 22;
  margin: 20px auto !important;
}

.owz-banner-cta__btn:hover, .btn:hover {
  filter: brightness(1.05);
}

.owz-banner-cta__btn:active, .btn:active {
  transform: translateY(1px);
}

.owz-banner-cta__hint, .banner-cta__hint {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 8px;
  display: none;
}

.wp-content-wrap {
  margin: 25px auto;
  display: table;
}
.wp-content-wrap body {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}
.wp-content-wrap h1, .wp-content-wrap h2, .wp-content-wrap h3, .wp-content-wrap h4, .wp-content-wrap h5, .wp-content-wrap h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin: 20px 0 15px;
  line-height: 1.3;
}
.wp-content-wrap h1 {
  font-size: 29px;
}
.wp-content-wrap h2 {
  font-size: 25px;
}
.wp-content-wrap h3 {
  font-size: 21px;
}
.wp-content-wrap h4 {
  font-size: 19px;
}
.wp-content-wrap h5 {
  font-size: 17px;
}
.wp-content-wrap h6 {
  font-size: 15px;
}
.wp-content-wrap p {
  margin: 0 0 15px;
}
.wp-content-wrap ul, .wp-content-wrap ol {
  margin: 0 0 20px 25px;
  padding: 0;
  line-height: 1.6;
}
.wp-content-wrap li {
  margin-bottom: 8px;
}
.wp-content-wrap a {
  color: #0073e6;
  text-decoration: none;
}
.wp-content-wrap a:hover {
  text-decoration: underline;
}
.wp-content-wrap blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  border-left: 4px solid #0073e6;
  background: #f9f9f9;
  font-style: italic;
  color: #555;
}
.wp-content-wrap code, .wp-content-wrap pre {
  font-family: monospace;
  background: #f4f4f4;
  padding: 2px 5px;
  border-radius: 3px;
}
.wp-content-wrap pre {
  padding: 15px;
  overflow-x: auto;
}

.content-wrap {
  margin: 25px auto;
  display: table;
}
.content-wrap body {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}
.content-wrap h1, .content-wrap h2, .content-wrap h3, .content-wrap h4, .content-wrap h5, .content-wrap h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin: 20px 0 15px;
  line-height: 1.3;
}
.content-wrap h1 {
  font-size: 29px;
}
.content-wrap h2 {
  font-size: 25px;
}
.content-wrap h3 {
  font-size: 21px;
}
.content-wrap h4 {
  font-size: 19px;
}
.content-wrap h5 {
  font-size: 17px;
}
.content-wrap h6 {
  font-size: 15px;
}
.content-wrap p {
  margin: 0 0 15px;
}
.content-wrap ul, .content-wrap ol {
  margin: 0 0 20px 25px;
  padding: 0;
  line-height: 1.6;
}
.content-wrap li {
  margin-bottom: 8px;
}
.content-wrap a {
  color: #0073e6;
  text-decoration: none;
}
.content-wrap a:hover {
  text-decoration: underline;
}
.content-wrap blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  border-left: 4px solid #0073e6;
  background: #f9f9f9;
  font-style: italic;
  color: #555;
}
.content-wrap code, .content-wrap pre {
  font-family: monospace;
  background: #f4f4f4;
  padding: 2px 5px;
  border-radius: 3px;
}
.content-wrap pre {
  padding: 15px;
  overflow-x: auto;
}

.table-block-standart {
  margin: 25px 0;
  border-radius: var(--radius);
  /* Мобильная адаптация */
  /* Анимации */
}
.table-block-standart .wp-table-container {
  overflow-x: auto;
  padding: 0;
}
.table-block-standart .table-container {
  overflow-x: auto;
  padding: 0;
}
.table-block-standart table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
}
.table-block-standart thead {
  box-shadow: inset 2px 7px 80px 7px rgba(0, 0, 0, 0.1);
}
.table-block-standart th, .table-block-standart td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e1e8ed;
  vertical-align: top;
}
.table-block-standart th {
  font-weight: 700;
  font-size: 1.1rem;
  position: sticky;
  left: 0;
  z-index: 10;
}
.table-block-standart td:first-child {
  font-weight: 600;
  box-shadow: inset 2px 7px 80px 7px rgba(0, 0, 0, 0.1);
  position: sticky;
  left: 0;
  z-index: 5;
}
.table-block-standart td {
  font-size: 1rem;
  line-height: 1.6;
}
.table-block-standart tr:hover {
  background: rgba(52, 152, 219, 0.05);
  transition: all 0.3s ease;
}
.table-block-standart .payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.table-block-standart .payment-tag {
  background: #031838;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.table-block-standart .crypto-tag {
  background: linear-gradient(0deg, #e73d00, #ffbf00);
}
.table-block-standart .currency-list {
  line-height: 1.8;
}
.table-block-standart .highlight {
  background: linear-gradient(135deg, #e8f5e8, #d4edda);
  border-left: 4px solid #27ae60;
  padding: 15px;
  border-radius: 8px;
}
.table-block-standart .limit-info {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-left: 4px solid #f39c12;
  padding: 15px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .table-block-standart {
    /* Стек-стиль для очень маленьких экранов */
  }
  .table-block-standart body {
    padding: 10px;
  }
  .table-block-standart .header {
    padding: 20px;
  }
  .table-block-standart .header h1 {
    font-size: 1.5rem;
  }
  .table-block-standart .header p {
    font-size: 1rem;
  }
  .table-block-standart th, .table-block-standart td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
  .table-block-standart .payment-methods {
    gap: 5px;
  }
  .table-block-standart .payment-tag {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .table-block-standart table, .table-block-standart thead, .table-block-standart tbody, .table-block-standart th, .table-block-standart td, .table-block-standart tr {
    display: block;
  }
  .table-block-standart thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table-block-standart tr {
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .table-block-standart td {
    border: none;
    position: relative;
    padding: 15px 15px 15px 0;
    text-align: center;
  }
  .table-block-standart td:before {
    content: none;
    display: none;
    position: absolute;
    left: 15px;
    width: 30%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
  }
  .table-block-standart td:first-child {
    font-weight: bold;
    text-align: center;
    padding: 15px;
    border-radius: 10px 10px 0 0;
  }
  .table-block-standart td:first-child:before {
    display: none;
  }
}
.table-block-standart .container {
  animation: slideIn 0.8s ease-out;
}

.faq-block-standart {
  margin: 25px 0;
}
.faq-block-standart h2 {
  color: var(--text);
  margin-bottom: 30px;
}
.faq-block-standart-grid {
  display: grid;
  gap: 10px;
}
.faq-block-standart .accordion {
  background: var(--brand);
  padding: 25px;
  border-radius: 5px;
}
.faq-block-standart .accordion + .accordion {
  margin-top: 25px;
}
.faq-block-standart details {
  color: var(--btn1);
}
.faq-block-standart details[open] .accordion__summary:after {
  content: "×";
}
.faq-block-standart .accordion__summary {
  position: relative;
  padding-right: 40px;
}
.faq-block-standart .accordion__summary::marker {
  font-size: 0;
  display: none;
}
.faq-block-standart .accordion__summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 21px;
}
.faq-block-standart .accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.3s;
  color: var(--btn1);
}
.faq-block-standart .accordion__content-body {
  overflow: hidden;
}
.faq-block-standart .accordion__content-body p {
  margin: 0;
}
.faq-block-standart .accordion__details[open] + .accordion__content {
  grid-template-rows: 1fr;
  padding-top: 30px;
}

.default-block-faq {
  margin: 25px 0;
  color: #FFF;
}
.default-block-faq h2 {
  margin-bottom: 30px;
}
.default-block-faq-grid {
  display: grid;
}
.default-block-faq-item {
  position: relative;
  padding-left: 30px;
  padding-bottom: 20px;
  padding-top: 20px;
}
.default-block-faq-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFF;
  opacity: 0.5;
}
.default-block-faq-item::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
  left: 8px;
  top: 0;
  opacity: 0.5;
}
.default-block-faq-item .title {
  font-size: 21px;
  margin-bottom: 20px;
  position: relative;
}
.default-block-faq-item .content {
  line-height: 1.6;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.faq-with-number {
  margin: 25px 0;
  color: var(--text);
}
.faq-with-number h2 {
  margin-bottom: 30px;
}
.faq-with-number-grid {
  display: grid;
  gap: 20px;
}
.faq-with-number-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 20px;
}
@media (width < 768px) {
  .faq-with-number-item {
    padding-left: 0;
    padding-top: 80px !important;
  }
}
.faq-with-number-item + .faq-with-number-item {
  border-top: 1px solid #FFF;
  padding-top: 20px;
}
.faq-with-number-item + .faq-with-number-item:after {
  top: 20px;
}
.faq-with-number-item::after {
  content: attr(data-number);
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--btn1);
  font-size: 21px;
  font-weight: 700;
  left: 0px;
  top: 0px;
}
@media (width < 768px) {
  .faq-with-number-item::after {
    top: 20px;
  }
}
.faq-with-number-item .faq-title {
  font-size: 27px;
  margin-bottom: 20px;
  display: table;
}
.faq-with-number-item .faq-content {
  line-height: 1.6;
}

.g-list-box {
  margin: 25px 0;
}
.g-list-box-slider {
  padding: 20px 0;
}
.g-list-box-item {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 7/10;
}
.g-list-box-item img {
  width: 100%;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.g-list-box-item .content {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.g-list-box-item .content button {
  border: 0;
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-list-box-item .content button span {
  background: var(--brand);
  color: var(--btn1);
  padding: 5px 10px;
  border-radius: var(--radius);
  width: 80%;
  display: table;
  opacity: 0;
}
.g-list-box-item .content button:hover span {
  opacity: 1;
  transition: 0.5s ease-in-out;
}
.g-list-box-item .content .budge {
  position: absolute;
  right: 10px;
  top: 10px;
  background: red;
  padding: 3px 5px;
  border-radius: 5px;
}
.g-list-box-item .content .description {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.g-list-box-item .content .description .title {
  font-weight: 700;
}
.g-list-box-item .content .description p {
  margin: 0;
  opacity: 0.6;
}
.g-list-box[data-shape=square] .g-list-box-item {
  aspect-ratio: 1/1;
}

.payment-method button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 0;
  margin: 0;
  background: var(--brand);
  color: var(--btn1);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.payment-method-slider .swiper-slide {
  align-items: center;
}
.payment-method-slider img {
  width: 55%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  box-shadow: inset 0 0 370px 20px rgba(255, 255, 255, 0.168627451);
  padding: 10px;
}
@media (width < 768px) {
  .payment-method-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.payment-method-grid .items {
  background: #242424;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
}
.payment-method-grid .items img {
  max-width: 80%;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (width < 768px) {
  .payment-method-grid .items:last-child {
    grid-column: 1/-1;
    aspect-ratio: unset;
    padding: 10px 0;
  }
}
.payment-method-grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--color-primary-light);
}
.payment-method-grid-7 img {
  width: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.payment-method-grid-7 .items {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.payment-method-grid-7 .items:nth-child(even) {
  background: var(--color-primary-dark);
}

.providers {
  margin: 25px 0;
}
.providers__slider {
  margin: 50px 0;
}
.providers__slider img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
}
.providers__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 50px;
  justify-items: center;
}
.providers__grid img {
  width: 100%;
}
@media (width < 768px) {
  .providers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.providers__pallet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.providers__pallet-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background: #0f1320;
}
.providers__with_text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #FFF;
  gap: 2px;
}
.providers__with_text div {
  background: #0f1320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.providers__with_text button {
  background: var(--brand);
  color: var(--btn1);
  font-weight: 700;
}

.box-image {
  margin: 25px 0;
}
.box-image-wrapper {
  background: linear-gradient(85deg, #834bfb 0%, #2D34C4 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 40px;
  border-radius: var(--radius);
  min-height: 400px;
}
@media (width < 768px) {
  .box-image-wrapper {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .box-image-wrapper .item p {
    font-size: 32px !important;
  }
}
.box-image-wrapper img {
  max-width: 450px;
  width: 100%;
}
.box-image-wrapper .item {
  display: grid;
  justify-items: center;
}
.box-image-wrapper .item .title {
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.box-image-wrapper .item p {
  font-size: 37px;
  color: #fff;
  font-weight: 700;
  margin: 20px 0;
  text-align: center;
}
.box-image-wrapper .item button {
  border: 0;
  padding: 20px 40px;
  font-size: 21px;
  font-weight: 700;
  display: inline-flex !important;
}

.three-picture-box {
  margin: 25px 0;
}
.three-picture-box__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 85%;
  margin: 0 auto;
  padding: 0 6px;
}
@media (width < 1023px) {
  .three-picture-box__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 767px) {
  .three-picture-box__grid {
    grid-template-columns: 1fr;
  }
}
.three-picture-box--cols-2 .three-picture-box__grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (width < 767px) {
  .three-picture-box--cols-2 .three-picture-box__grid {
    grid-template-columns: 1fr;
  }
}
.three-picture-box .three-picture-item {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 20px;
  min-height: 170px;
  border-radius: var(--radius);
  box-sizing: border-box;
  overflow: hidden;
  color: #fff;
}
.three-picture-box .three-picture-item__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  justify-items: start;
}
.three-picture-box .three-picture-item__content button {
  margin: 0 auto 0 0 !important;
}
.three-picture-box .three-picture-item__title {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  display: inline-block;
}
.three-picture-box .three-picture-item__button,
.three-picture-box .three-picture-item .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: 0;
  background: var(--brand);
  color: var(--btn1);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
  margin: 0 auto 0 0 !important;
}
.three-picture-box .three-picture-item__button:hover,
.three-picture-box .three-picture-item .btn:hover {
  transform: translateY(-1px);
}
.three-picture-box .three-picture-item__media {
  position: relative;
  z-index: 0;
}
.three-picture-box .three-picture-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.three-picture-box .three-picture-item__media--placeholder {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.15);
}
.three-picture-box .three-picture-item--layout-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.45fr);
  align-items: center;
}
.three-picture-box .three-picture-item--layout-split .three-picture-item__content {
  max-width: 340px;
}
.three-picture-box .three-picture-item--layout-split .three-picture-item__media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.three-picture-box .three-picture-item--layout-split .three-picture-item__media img {
  max-height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(-8px 4px 56px rgba(255, 255, 255, 0.7));
}
.three-picture-box .three-picture-item--layout-split .three-picture-item__media--placeholder {
  display: block;
  height: 100%;
}
.three-picture-box .three-picture-item--layout-cover {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 32px;
}
.three-picture-box .three-picture-item--layout-cover .three-picture-item__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.three-picture-box .three-picture-item--layout-cover .three-picture-item__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2));
}
.three-picture-box .three-picture-item--layout-cover .three-picture-item__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.three-picture-box .three-picture-item--layout-cover .three-picture-item__content {
  z-index: 1;
}
.three-picture-box .three-picture-item--layout-cover .three-picture-item__content {
  max-width: min(420px, 85%);
}

.contact-form {
  position: relative;
  padding: clamp(36px, 6vw, 72px);
  border-radius: var(--radius);
  color: var(--text);
  overflow: hidden;
}
.contact-form__outer {
  position: relative;
  z-index: 1;
  max-width: 85%;
  margin: 0 auto;
  width: 100%;
}
.contact-form__layout {
  display: grid;
  gap: 20px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}
.contact-form__info {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 28px);
  color: var(--text);
  max-width: 560px;
}
.contact-form__eyebrow {
  align-self: flex-start;
  padding: 6px 16px;
  border-radius: 9var --radius;
  background: var(--muted);
  color: var(--btn2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.contact-form__title {
  margin: 0;
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--text);
}
.contact-form__description {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.8;
}
.contact-form__description p {
  margin: 0 0 14px;
}
.contact-form__description p:last-child {
  margin-bottom: 0;
}
.contact-form__card {
  background: var(--brand);
  color: var(--btn1);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(15, 26, 74, 0.28);
  padding: clamp(26px, 4.6vw, 44px);
}
.contact-form__card.is-loading {
  opacity: 0.6;
  pointer-events: none;
}
.contact-form__card.is-loading .contact-form__submit {
  cursor: wait;
}
.contact-form__card-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
}
.contact-form__status {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.5;
  border: 1px solid transparent;
  background: rgba(46, 51, 90, 0.08);
  color: #1f2440;
}
.contact-form__status[hidden] {
  display: none;
}
.contact-form__status-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: var(--radius);
  border: 2px solid currentColor;
  margin-top: 2px;
  position: relative;
}
.contact-form__status-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: var(--radius);
  background: currentColor;
  opacity: 0.18;
}
.contact-form__status-text {
  flex: 1 1 auto;
}
.contact-form__status--success {
  border-color: var(--text);
  color: var(--text);
}
.contact-form__status--error {
  border-color: rgba(230, 80, 105, 0.38);
  background: rgba(230, 80, 105, 0.12);
  color: var(--brand);
}
.contact-form__grid {
  display: grid;
  gap: clamp(18px, 3.5vw, 26px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form__field--wide {
  grid-column: 1/-1;
}
.contact-form__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--btn1);
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  border: 1px solid rgba(117, 128, 179, 0.28);
  border-radius: var(--radius);
  padding: 15px 18px !important;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  color: #242424;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: rgba(71, 79, 113, 0.55);
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: rgba(71, 79, 113, 0.55);
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: rgba(70, 112, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(70, 112, 255, 0.15);
  background: #fdfdff;
}
.contact-form__textarea {
  min-height: clamp(150px, 28vw, 210px);
  resize: vertical;
}
.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #525b7c;
}
.contact-form__consent input {
  margin-top: 4px;
  accent-color: #466fff;
}
.contact-form__consent span {
  display: inline-block;
  color: var(--btn1);
}
.contact-form__actions {
  display: flex;
  justify-content: flex-start;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 9var --radius;
  border: 0;
  background: var(--muted);
  color: var(--btn2);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(255, 94, 126, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(255, 94, 126, 0.4);
}
.contact-form__submit:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(255, 94, 126, 0.32);
  filter: saturate(1.1);
}
@media (max-width: 1024px) {
  .contact-form__layout {
    grid-template-columns: 1fr;
  }
  .contact-form__info {
    max-width: 100%;
  }
}
@media (max-width: 720px) {
  .contact-form {
    padding: clamp(28px, 8vw, 44px);
    border-radius: var(--radius);
  }
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
  .contact-form__card {
    padding: clamp(22px, 7vw, 32px);
    border-radius: var(--radius);
  }
  .contact-form__actions {
    justify-content: stretch;
  }
  .contact-form__submit {
    width: 100%;
  }
}

.betting-categories-wrapper,
.wp-betting-categories-wrapper {
  --bg-dark: #0f172a;
  --card-bg: #1c1f26;
  --text-white: #ffffff;
  --primary-blue: #3b82f6;
  --hover-overlay: rgba(0, 0, 0, 0.2);
  --gap-size: 16px;
  --border-radius: 12px;
  --bg: #0f1218;
  margin: 25px 0;
  width: 100%;
  /* max-width: 1200px; - Let the theme handle max-width or block alignment */
  padding: 0;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text-white);
  /* Container */
  /* Header Section */
  /* Categories Container */
  /* Card Styling */
  /* Controls visibility */
}
.betting-categories-wrapper *,
.wp-betting-categories-wrapper * {
  box-sizing: border-box;
}
.betting-categories-wrapper .betting-header,
.betting-categories-wrapper .wp-betting-header,
.wp-betting-categories-wrapper .betting-header,
.wp-betting-categories-wrapper .wp-betting-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.betting-categories-wrapper .betting-header .section-title,
.betting-categories-wrapper .betting-header .wp-section-title,
.betting-categories-wrapper .wp-betting-header .section-title,
.betting-categories-wrapper .wp-betting-header .wp-section-title,
.wp-betting-categories-wrapper .betting-header .section-title,
.wp-betting-categories-wrapper .betting-header .wp-section-title,
.wp-betting-categories-wrapper .wp-betting-header .section-title,
.wp-betting-categories-wrapper .wp-betting-header .wp-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.betting-categories-wrapper .betting-header .section-title .icon,
.betting-categories-wrapper .betting-header .wp-section-title .icon,
.betting-categories-wrapper .wp-betting-header .section-title .icon,
.betting-categories-wrapper .wp-betting-header .wp-section-title .icon,
.wp-betting-categories-wrapper .betting-header .section-title .icon,
.wp-betting-categories-wrapper .betting-header .wp-section-title .icon,
.wp-betting-categories-wrapper .wp-betting-header .section-title .icon,
.wp-betting-categories-wrapper .wp-betting-header .wp-section-title .icon {
  font-size: 24px;
}
.betting-categories-wrapper .betting-header .slider-controls,
.betting-categories-wrapper .wp-betting-header .slider-controls,
.wp-betting-categories-wrapper .betting-header .slider-controls,
.wp-betting-categories-wrapper .wp-betting-header .slider-controls {
  display: flex;
  gap: 8px;
}
.betting-categories-wrapper .betting-header .slider-controls .nav-btn,
.betting-categories-wrapper .wp-betting-header .slider-controls .nav-btn,
.wp-betting-categories-wrapper .betting-header .slider-controls .nav-btn,
.wp-betting-categories-wrapper .wp-betting-header .slider-controls .nav-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0; /* Reset */
}
.betting-categories-wrapper .betting-header .slider-controls .nav-btn:hover,
.betting-categories-wrapper .wp-betting-header .slider-controls .nav-btn:hover,
.wp-betting-categories-wrapper .betting-header .slider-controls .nav-btn:hover,
.wp-betting-categories-wrapper .wp-betting-header .slider-controls .nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.betting-categories-wrapper .betting-header .slider-controls .nav-btn:active,
.betting-categories-wrapper .wp-betting-header .slider-controls .nav-btn:active,
.wp-betting-categories-wrapper .betting-header .slider-controls .nav-btn:active,
.wp-betting-categories-wrapper .wp-betting-header .slider-controls .nav-btn:active {
  transform: translateY(0);
}
.betting-categories-wrapper .betting-header .slider-controls .nav-btn svg,
.betting-categories-wrapper .wp-betting-header .slider-controls .nav-btn svg,
.wp-betting-categories-wrapper .betting-header .slider-controls .nav-btn svg,
.wp-betting-categories-wrapper .wp-betting-header .slider-controls .nav-btn svg {
  width: 20px;
  height: 20px;
}
.betting-categories-wrapper .categories-container,
.betting-categories-wrapper .wp-cards,
.wp-betting-categories-wrapper .categories-container,
.wp-betting-categories-wrapper .wp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--gap-size);
  /* Mobile / Tablet (< 1024px) - Slider */
  /* Desktop (> 1025px) - Grid */
}
@media (max-width: 1024px) {
  .betting-categories-wrapper .categories-container,
  .betting-categories-wrapper .wp-cards,
  .wp-betting-categories-wrapper .categories-container,
  .wp-betting-categories-wrapper .wp-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .betting-categories-wrapper .categories-container::-webkit-scrollbar,
  .betting-categories-wrapper .wp-cards::-webkit-scrollbar,
  .wp-betting-categories-wrapper .categories-container::-webkit-scrollbar,
  .wp-betting-categories-wrapper .wp-cards::-webkit-scrollbar {
    display: none;
  }
  .betting-categories-wrapper .categories-container .category-card,
  .betting-categories-wrapper .categories-container .wp-card,
  .betting-categories-wrapper .wp-cards .category-card,
  .betting-categories-wrapper .wp-cards .wp-card,
  .wp-betting-categories-wrapper .categories-container .category-card,
  .wp-betting-categories-wrapper .categories-container .wp-card,
  .wp-betting-categories-wrapper .wp-cards .category-card,
  .wp-betting-categories-wrapper .wp-cards .wp-card {
    flex: 0 0 140px;
    scroll-snap-align: start;
  }
}
@media (min-width: 1025px) {
  .betting-categories-wrapper .categories-container,
  .betting-categories-wrapper .wp-cards,
  .wp-betting-categories-wrapper .categories-container,
  .wp-betting-categories-wrapper .wp-cards {
    grid-template-columns: repeat(6, 1fr);
  }
}
.betting-categories-wrapper .category-card,
.betting-categories-wrapper .wp-card,
.wp-betting-categories-wrapper .category-card,
.wp-betting-categories-wrapper .wp-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  border-radius: var(--border-radius);
  overflow: hidden;
  text-decoration: none;
  background-color: var(--card-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px; /* Fallback */
  cursor: pointer;
}
.betting-categories-wrapper .category-card:hover,
.betting-categories-wrapper .wp-card:hover,
.wp-betting-categories-wrapper .category-card:hover,
.wp-betting-categories-wrapper .wp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.betting-categories-wrapper .category-card:hover .card-bg,
.betting-categories-wrapper .wp-card:hover .card-bg,
.wp-betting-categories-wrapper .category-card:hover .card-bg,
.wp-betting-categories-wrapper .wp-card:hover .card-bg {
  transform: scale(1.1);
}
.betting-categories-wrapper .category-card .card-bg,
.betting-categories-wrapper .wp-card .card-bg,
.wp-betting-categories-wrapper .category-card .card-bg,
.wp-betting-categories-wrapper .wp-card .card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.betting-categories-wrapper .category-card::after,
.betting-categories-wrapper .wp-card::after,
.wp-betting-categories-wrapper .category-card::after,
.wp-betting-categories-wrapper .wp-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.betting-categories-wrapper .category-card .card-content,
.betting-categories-wrapper .wp-card .card-content,
.wp-betting-categories-wrapper .category-card .card-content,
.wp-betting-categories-wrapper .wp-card .card-content {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  padding: 0 8px;
}
.betting-categories-wrapper .category-card .card-content .category-name,
.betting-categories-wrapper .wp-card .card-content .category-name,
.wp-betting-categories-wrapper .category-card .card-content .category-name,
.wp-betting-categories-wrapper .wp-card .card-content .category-name {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
  line-height: 1.2;
}
@media (min-width: 1025px) {
  .betting-categories-wrapper .slider-controls,
  .wp-betting-categories-wrapper .slider-controls {
    display: none;
  }
}
@media (max-width: 480px) {
  .betting-categories-wrapper .category-card,
  .betting-categories-wrapper .wp-card,
  .wp-betting-categories-wrapper .category-card,
  .wp-betting-categories-wrapper .wp-card {
    flex: 0 0 120px;
  }
}

.wp-button-grid-after {
  cursor: pointer;
  background: var(--brand);
  border: none;
  border-radius: var(--radius);
  padding: 12px 24px;
  color: var(--btn1);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: table;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  margin: 20px auto;
  position: relative;
}
.wp-button-grid-after:hover, .wp-button-grid-after:active, .wp-button-grid-after:focus {
  opacity: 0.8;
  transition: 0.5s ease;
  outline: none;
}
.button-grid-after {
  cursor: pointer;
  background: var(--brand);
  border: none;
  border-radius: var(--radius);
  padding: 12px 24px;
  color: var(--btn1);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: table;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  margin: 20px auto;
  position: relative;
}
.button-grid-after:hover, .button-grid-after:active, .button-grid-after:focus {
  opacity: 0.8;
  transition: 0.5s ease;
  outline: none;
}
.wp-text-content-with-img {
  margin: 25px 0;
  display: table;
  max-width: 100%;
}
.wp-text-content-with-img-box {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 25px;
  align-items: center;
}
@media (width < 768px) {
  .wp-text-content-with-img-box {
    display: flex;
    flex-direction: column-reverse;
    justify-items: center;
  }
}
.wp-text-content-with-img div[style="display: table; margin: 0 auto;"] {
  margin: 0 !important;
  margin-right: auto !important;
}
.wp-text-content-with-img-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
  display: table;
  filter: drop-shadow(0 0 215px var(--muted));
}

.text-content-with-img {
  margin: 25px 0;
  display: table;
  max-width: 100%;
}
.text-content-with-img-box {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 25px;
  align-items: center;
}
@media (width < 768px) {
  .text-content-with-img-box {
    display: flex;
    flex-direction: column-reverse;
    justify-items: center;
  }
}
.text-content-with-img div[style="display: table; margin: 0 auto;"] {
  margin: 0 !important;
  margin-right: auto !important;
}
.text-content-with-img-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
  display: table;
  filter: drop-shadow(0 0 215px var(--muted));
}

.wp-footer-classic {
  padding: 40px 0;
  background: var(--footer);
  margin-top: 50px;
}
.wp-footer-classic .wp-footer-content {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
}
@media (width < 768px) {
  .wp-footer-classic .wp-footer-content {
    text-align: center;
  }
}
.wp-footer-classic .wp-footer-content p {
  margin: 0;
}
.wp-footer-classic .footer-content {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
}
@media (width < 768px) {
  .wp-footer-classic .footer-content {
    text-align: center;
  }
}
.wp-footer-classic .footer-content p {
  margin: 0;
}
.wp-footer-classic .wp-footer-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (width < 768px) {
  .wp-footer-classic .wp-footer-navigation {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.wp-footer-classic .wp-footer-navigation .wp-logo {
  max-width: 160px;
  width: 100%;
}
.wp-footer-classic .wp-footer-navigation .wp-logo img {
  width: 100%;
}
.wp-footer-classic .wp-footer-navigation .logo {
  max-width: 160px;
  width: 100%;
}
.wp-footer-classic .wp-footer-navigation .logo img {
  width: 100%;
}
.wp-footer-classic .wp-footer-navigation ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (width < 768px) {
  .wp-footer-classic .wp-footer-navigation ul {
    flex-direction: column;
    gap: 10px;
  }
}
.wp-footer-classic .wp-footer-navigation ul li {
  list-style: none;
}
.wp-footer-classic .footer-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (width < 768px) {
  .wp-footer-classic .footer-navigation {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.wp-footer-classic .footer-navigation .wp-logo {
  max-width: 160px;
  width: 100%;
}
.wp-footer-classic .footer-navigation .wp-logo img {
  width: 100%;
}
.wp-footer-classic .footer-navigation .logo {
  max-width: 160px;
  width: 100%;
}
.wp-footer-classic .footer-navigation .logo img {
  width: 100%;
}
.wp-footer-classic .footer-navigation ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (width < 768px) {
  .wp-footer-classic .footer-navigation ul {
    flex-direction: column;
    gap: 10px;
  }
}
.wp-footer-classic .footer-navigation ul li {
  list-style: none;
}
.wp-footer-classic .wp-copyright {
  padding-top: 20px;
  border-top: 1px solid var(--text);
  opacity: 0.7;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
}
@media (width < 768px) {
  .wp-footer-classic .wp-copyright {
    text-align: center;
    grid-template-columns: 1fr;
  }
}
.wp-footer-classic .copyright {
  padding-top: 20px;
  border-top: 1px solid var(--text);
  opacity: 0.7;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
}
@media (width < 768px) {
  .wp-footer-classic .copyright {
    text-align: center;
    grid-template-columns: 1fr;
  }
}

.footer-classic {
  padding: 40px 0;
  background: var(--footer);
  margin-top: 50px;
}
.footer-classic .wp-footer-content {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
}
@media (width < 768px) {
  .footer-classic .wp-footer-content {
    text-align: center;
  }
}
.footer-classic .wp-footer-content p {
  margin: 0;
}
.footer-classic .footer-content {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
}
@media (width < 768px) {
  .footer-classic .footer-content {
    text-align: center;
  }
}
.footer-classic .footer-content p {
  margin: 0;
}
.footer-classic .wp-footer-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (width < 768px) {
  .footer-classic .wp-footer-navigation {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.footer-classic .wp-footer-navigation .wp-logo {
  max-width: 160px;
  width: 100%;
}
.footer-classic .wp-footer-navigation .wp-logo img {
  width: 100%;
}
.footer-classic .wp-footer-navigation .logo {
  max-width: 160px;
  width: 100%;
}
.footer-classic .wp-footer-navigation .logo img {
  width: 100%;
}
.footer-classic .wp-footer-navigation ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (width < 768px) {
  .footer-classic .wp-footer-navigation ul {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-classic .wp-footer-navigation ul li {
  list-style: none;
}
.footer-classic .footer-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (width < 768px) {
  .footer-classic .footer-navigation {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.footer-classic .footer-navigation .wp-logo {
  max-width: 160px;
  width: 100%;
}
.footer-classic .footer-navigation .wp-logo img {
  width: 100%;
}
.footer-classic .footer-navigation .logo {
  max-width: 160px;
  width: 100%;
}
.footer-classic .footer-navigation .logo img {
  width: 100%;
}
.footer-classic .footer-navigation ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (width < 768px) {
  .footer-classic .footer-navigation ul {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-classic .footer-navigation ul li {
  list-style: none;
}
.footer-classic .wp-copyright {
  padding-top: 20px;
  border-top: 1px solid var(--text);
  opacity: 0.7;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
}
@media (width < 768px) {
  .footer-classic .wp-copyright {
    text-align: center;
    grid-template-columns: 1fr;
  }
}
.footer-classic .copyright {
  padding-top: 20px;
  border-top: 1px solid var(--text);
  opacity: 0.7;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
}
@media (width < 768px) {
  .footer-classic .copyright {
    text-align: center;
    grid-template-columns: 1fr;
  }
}

.wp-footer-centered {
  padding: 40px 0;
  background: var(--footer);
  margin-top: 50px;
}
.wp-footer-centered .wp-footer-content {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
  max-width: 30%;
}
@media (width < 768px) {
  .wp-footer-centered .wp-footer-content {
    text-align: center;
    max-width: 100%;
  }
}
.wp-footer-centered .wp-footer-content p {
  margin: 0;
  font-size: 12px;
  opacity: 0.7;
}
.wp-footer-centered .wp-footer-content .wp-logo {
  max-width: 160px;
  width: 100%;
}
@media (width < 768px) {
  .wp-footer-centered .wp-footer-content .wp-logo {
    margin: 0 auto;
  }
}
.wp-footer-centered .wp-footer-content .wp-logo img {
  width: 100%;
}
.wp-footer-centered .wp-footer-content .logo {
  max-width: 160px;
  width: 100%;
}
@media (width < 768px) {
  .wp-footer-centered .wp-footer-content .logo {
    margin: 0 auto;
  }
}
.wp-footer-centered .wp-footer-content .logo img {
  width: 100%;
}
.wp-footer-centered .footer-content {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
  max-width: 30%;
}
@media (width < 768px) {
  .wp-footer-centered .footer-content {
    text-align: center;
    max-width: 100%;
  }
}
.wp-footer-centered .footer-content p {
  margin: 0;
  font-size: 12px;
  opacity: 0.7;
}
.wp-footer-centered .footer-content .wp-logo {
  max-width: 160px;
  width: 100%;
}
@media (width < 768px) {
  .wp-footer-centered .footer-content .wp-logo {
    margin: 0 auto;
  }
}
.wp-footer-centered .footer-content .wp-logo img {
  width: 100%;
}
.wp-footer-centered .footer-content .logo {
  max-width: 160px;
  width: 100%;
}
@media (width < 768px) {
  .wp-footer-centered .footer-content .logo {
    margin: 0 auto;
  }
}
.wp-footer-centered .footer-content .logo img {
  width: 100%;
}
.wp-footer-centered .wp-footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 768px) {
  .wp-footer-centered .wp-footer-wrapper {
    flex-direction: column;
  }
}
.wp-footer-centered .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 768px) {
  .wp-footer-centered .footer-wrapper {
    flex-direction: column;
  }
}
.wp-footer-centered .wp-footer-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (width < 768px) {
  .wp-footer-centered .wp-footer-navigation {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.wp-footer-centered .wp-footer-navigation .wp-logo {
  max-width: 160px;
  width: 100%;
}
.wp-footer-centered .wp-footer-navigation .wp-logo img {
  width: 100%;
}
.wp-footer-centered .wp-footer-navigation .logo {
  max-width: 160px;
  width: 100%;
}
.wp-footer-centered .wp-footer-navigation .logo img {
  width: 100%;
}
.wp-footer-centered .wp-footer-navigation ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 15px;
}
@media screen and (width < 768px) {
  .wp-footer-centered .wp-footer-navigation ul {
    flex-direction: column;
    gap: 10px;
  }
}
.wp-footer-centered .wp-footer-navigation ul li {
  list-style: none;
}
.wp-footer-centered .footer-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (width < 768px) {
  .wp-footer-centered .footer-navigation {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.wp-footer-centered .footer-navigation .wp-logo {
  max-width: 160px;
  width: 100%;
}
.wp-footer-centered .footer-navigation .wp-logo img {
  width: 100%;
}
.wp-footer-centered .footer-navigation .logo {
  max-width: 160px;
  width: 100%;
}
.wp-footer-centered .footer-navigation .logo img {
  width: 100%;
}
.wp-footer-centered .footer-navigation ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 15px;
}
@media screen and (width < 768px) {
  .wp-footer-centered .footer-navigation ul {
    flex-direction: column;
    gap: 10px;
  }
}
.wp-footer-centered .footer-navigation ul li {
  list-style: none;
}
.wp-footer-centered .wp-copyright {
  padding-top: 20px;
  border-top: 1px solid var(--text);
  opacity: 0.7;
  text-align: center;
}
@media (width < 768px) {
  .wp-footer-centered .wp-copyright {
    text-align: center;
  }
}
.wp-footer-centered .copyright {
  padding-top: 20px;
  border-top: 1px solid var(--text);
  opacity: 0.7;
  text-align: center;
}
@media (width < 768px) {
  .wp-footer-centered .copyright {
    text-align: center;
  }
}

.footer-centered {
  padding: 40px 0;
  background: var(--footer);
  margin-top: 50px;
}
.footer-centered .wp-footer-content {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
  max-width: 30%;
}
@media (width < 768px) {
  .footer-centered .wp-footer-content {
    text-align: center;
    max-width: 100%;
  }
}
.footer-centered .wp-footer-content p {
  margin: 0;
  font-size: 12px;
  opacity: 0.7;
}
.footer-centered .wp-footer-content .wp-logo {
  max-width: 160px;
  width: 100%;
}
@media (width < 768px) {
  .footer-centered .wp-footer-content .wp-logo {
    margin: 0 auto;
  }
}
.footer-centered .wp-footer-content .wp-logo img {
  width: 100%;
}
.footer-centered .wp-footer-content .logo {
  max-width: 160px;
  width: 100%;
}
@media (width < 768px) {
  .footer-centered .wp-footer-content .logo {
    margin: 0 auto;
  }
}
.footer-centered .wp-footer-content .logo img {
  width: 100%;
}
.footer-centered .footer-content {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
  max-width: 30%;
}
@media (width < 768px) {
  .footer-centered .footer-content {
    text-align: center;
    max-width: 100%;
  }
}
.footer-centered .footer-content p {
  margin: 0;
  font-size: 12px;
  opacity: 0.7;
}
.footer-centered .footer-content .wp-logo {
  max-width: 160px;
  width: 100%;
}
@media (width < 768px) {
  .footer-centered .footer-content .wp-logo {
    margin: 0 auto;
  }
}
.footer-centered .footer-content .wp-logo img {
  width: 100%;
}
.footer-centered .footer-content .logo {
  max-width: 160px;
  width: 100%;
}
@media (width < 768px) {
  .footer-centered .footer-content .logo {
    margin: 0 auto;
  }
}
.footer-centered .footer-content .logo img {
  width: 100%;
}
.footer-centered .wp-footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 768px) {
  .footer-centered .wp-footer-wrapper {
    flex-direction: column;
  }
}
.footer-centered .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 768px) {
  .footer-centered .footer-wrapper {
    flex-direction: column;
  }
}
.footer-centered .wp-footer-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (width < 768px) {
  .footer-centered .wp-footer-navigation {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.footer-centered .wp-footer-navigation .wp-logo {
  max-width: 160px;
  width: 100%;
}
.footer-centered .wp-footer-navigation .wp-logo img {
  width: 100%;
}
.footer-centered .wp-footer-navigation .logo {
  max-width: 160px;
  width: 100%;
}
.footer-centered .wp-footer-navigation .logo img {
  width: 100%;
}
.footer-centered .wp-footer-navigation ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 15px;
}
@media screen and (width < 768px) {
  .footer-centered .wp-footer-navigation ul {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-centered .wp-footer-navigation ul li {
  list-style: none;
}
.footer-centered .footer-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (width < 768px) {
  .footer-centered .footer-navigation {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.footer-centered .footer-navigation .wp-logo {
  max-width: 160px;
  width: 100%;
}
.footer-centered .footer-navigation .wp-logo img {
  width: 100%;
}
.footer-centered .footer-navigation .logo {
  max-width: 160px;
  width: 100%;
}
.footer-centered .footer-navigation .logo img {
  width: 100%;
}
.footer-centered .footer-navigation ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 15px;
}
@media screen and (width < 768px) {
  .footer-centered .footer-navigation ul {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-centered .footer-navigation ul li {
  list-style: none;
}
.footer-centered .wp-copyright {
  padding-top: 20px;
  border-top: 1px solid var(--text);
  opacity: 0.7;
  text-align: center;
}
@media (width < 768px) {
  .footer-centered .wp-copyright {
    text-align: center;
  }
}
.footer-centered .copyright {
  padding-top: 20px;
  border-top: 1px solid var(--text);
  opacity: 0.7;
  text-align: center;
}
@media (width < 768px) {
  .footer-centered .copyright {
    text-align: center;
  }
}

.wp-footer-minimal {
  padding: 40px 0;
  background: var(--footer);
  margin-top: 50px;
}
.wp-footer-minimal .wp-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
}
@media (width < 768px) {
  .wp-footer-minimal .wp-box {
    flex-direction: column-reverse;
  }
}
.wp-footer-minimal .wp-box ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (width < 768px) {
  .wp-footer-minimal .wp-box ul {
    flex-direction: column;
    gap: 10px;
  }
}
.wp-footer-minimal .wp-box ul li {
  list-style: none;
}
.wp-footer-minimal .wp-box ul li a {
  color: rgba(255, 255, 255, 0.5);
}
.wp-footer-minimal .wp-box ul li a:hover {
  color: rgb(255, 255, 255);
}
.wp-footer-minimal .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
}
@media (width < 768px) {
  .wp-footer-minimal .box {
    flex-direction: column-reverse;
  }
}
.wp-footer-minimal .box ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (width < 768px) {
  .wp-footer-minimal .box ul {
    flex-direction: column;
    gap: 10px;
  }
}
.wp-footer-minimal .box ul li {
  list-style: none;
}
.wp-footer-minimal .box ul li a {
  color: rgba(255, 255, 255, 0.5);
}
.wp-footer-minimal .box ul li a:hover {
  color: rgb(255, 255, 255);
}

.footer-minimal {
  padding: 40px 0;
  background: var(--footer);
  margin-top: 50px;
}
.footer-minimal .wp-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
}
@media (width < 768px) {
  .footer-minimal .wp-box {
    flex-direction: column-reverse;
  }
}
.footer-minimal .wp-box ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (width < 768px) {
  .footer-minimal .wp-box ul {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-minimal .wp-box ul li {
  list-style: none;
}
.footer-minimal .wp-box ul li a {
  color: rgba(255, 255, 255, 0.5);
}
.footer-minimal .wp-box ul li a:hover {
  color: rgb(255, 255, 255);
}
.footer-minimal .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
}
@media (width < 768px) {
  .footer-minimal .box {
    flex-direction: column-reverse;
  }
}
.footer-minimal .box ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (width < 768px) {
  .footer-minimal .box ul {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-minimal .box ul li {
  list-style: none;
}
.footer-minimal .box ul li a {
  color: rgba(255, 255, 255, 0.5);
}
.footer-minimal .box ul li a:hover {
  color: rgb(255, 255, 255);
}

.wp-footer-with-menu {
  margin-top: 50px;
  padding: 48px 0 40px;
  background: var(--footer);
  color: var(--text);
}
.wp-footer-with-menu .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wp-footer-with-menu .wp-footer-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
@media (width < 768px) {
  .wp-footer-with-menu .wp-footer-navigation {
    flex-direction: column;
    align-items: flex-start;
  }
}
.wp-footer-with-menu .wp-footer-navigation .wp-logo {
  max-width: 180px;
  width: 100%;
}
.wp-footer-with-menu .wp-footer-navigation .wp-logo img {
  width: 100%;
}
@media (width < 768px) {
  .wp-footer-with-menu .wp-footer-navigation .wp-logo {
    margin: 0 auto;
  }
}
.wp-footer-with-menu .wp-footer-navigation .logo {
  max-width: 180px;
  width: 100%;
}
.wp-footer-with-menu .wp-footer-navigation .logo img {
  width: 100%;
}
@media (width < 768px) {
  .wp-footer-with-menu .wp-footer-navigation .logo {
    margin: 0 auto;
  }
}
.wp-footer-with-menu .footer-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
@media (width < 768px) {
  .wp-footer-with-menu .footer-navigation {
    flex-direction: column;
    align-items: flex-start;
  }
}
.wp-footer-with-menu .footer-navigation .wp-logo {
  max-width: 180px;
  width: 100%;
}
.wp-footer-with-menu .footer-navigation .wp-logo img {
  width: 100%;
}
@media (width < 768px) {
  .wp-footer-with-menu .footer-navigation .wp-logo {
    margin: 0 auto;
  }
}
.wp-footer-with-menu .footer-navigation .logo {
  max-width: 180px;
  width: 100%;
}
.wp-footer-with-menu .footer-navigation .logo img {
  width: 100%;
}
@media (width < 768px) {
  .wp-footer-with-menu .footer-navigation .logo {
    margin: 0 auto;
  }
}
.wp-footer-with-menu .footer-nav__menu {
  flex: 1;
  justify-content: end;
  display: flex;
}
@media (width < 768px) {
  .wp-footer-with-menu .footer-nav__menu {
    margin: 0 auto;
  }
}
.wp-footer-with-menu .footer-nav__menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
@media (width < 768px) {
  .wp-footer-with-menu .footer-nav__menu-list {
    flex-direction: column;
    align-items: center;
  }
}
.wp-footer-with-menu .footer-nav__menu-list li {
  list-style: none;
}
.wp-footer-with-menu .footer-nav__menu-list a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}
@media (width < 768px) {
  .wp-footer-with-menu .footer-nav__menu-list a {
    display: table;
    margin: 0 auto;
  }
}
.wp-footer-with-menu .footer-nav__menu-list a:hover {
  color: #fff;
  text-decoration: underline;
}
.wp-footer-with-menu .footer-badges {
  display: grid;
  gap: 18px;
  margin: 12px 0 8px;
}
.wp-footer-with-menu .footer-badges__section {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.wp-footer-with-menu .footer-badges__title {
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.02em;
}
.wp-footer-with-menu .footer-badges__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.wp-footer-with-menu .footer-badges__card {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 82px;
  align-content: center;
  transition: transform 0.15s ease, border-color 0.15s ease;
  color: #f7f8fb;
}
.wp-footer-with-menu .footer-badges__card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}
.wp-footer-with-menu .footer-badges__card img {
  max-height: 90px;
  max-width: 220px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}
@media (width < 768px) {
  .wp-footer-with-menu .footer-badges__card img {
    max-height: 60px;
    max-width: 100%;
  }
}
.wp-footer-with-menu .footer-badges__label {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
}
.wp-footer-with-menu .footer-badges__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}
.wp-footer-with-menu .footer-nav__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
@media (width >= 1280px) {
  .wp-footer-with-menu .footer-nav__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.wp-footer-with-menu .footer-nav__group {
  border-radius: 12px;
  transition: border-color 0.2s ease;
}
.wp-footer-with-menu .footer-nav__group:hover {
  border-color: rgba(255, 255, 255, 0.16);
}
.wp-footer-with-menu .footer-accordion__btn {
  width: 100%;
  background: none;
  border: 0;
  color: inherit;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
}
.wp-footer-with-menu .footer-accordion__chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.wp-footer-with-menu .footer-accordion__panel {
  margin-top: 8px;
  display: none;
}
.wp-footer-with-menu .footer-accordion.is-open .footer-accordion__chevron {
  transform: rotate(-135deg);
}
.wp-footer-with-menu .footer-accordion.is-open .footer-accordion__panel {
  display: block;
}
.wp-footer-with-menu .footer-nav__title {
  display: inline-flex;
  gap: 8px;
  color: #FFF;
  align-items: center;
  text-transform: uppercase;
}
.wp-footer-with-menu .footer-nav__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.wp-footer-with-menu .footer-nav__item {
  list-style: none;
}
.wp-footer-with-menu .footer-nav__link {
  color: #FFF;
  font-size: 14px;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  border: 0;
  gap: 6px;
  background: none;
  text-align: left;
  padding: 0;
  opacity: 0.7;
}
.wp-footer-with-menu .footer-nav__link:hover {
  color: #fff;
  text-decoration: underline;
}
.wp-footer-with-menu .wp-footer-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  margin-top: 12px;
}
@media (width < 768px) {
  .wp-footer-with-menu .wp-footer-meta {
    flex-direction: column;
  }
}
.wp-footer-with-menu .wp-footer-meta .wp-footer-content {
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.8);
}
.wp-footer-with-menu .wp-footer-meta .footer-content {
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.8);
}
.wp-footer-with-menu .wp-footer-meta .wp-copyright {
  opacity: 0.7;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}
@media (width < 768px) {
  .wp-footer-with-menu .wp-footer-meta .wp-copyright {
    text-align: left;
  }
}
.wp-footer-with-menu .wp-footer-meta .copyright {
  opacity: 0.7;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}
@media (width < 768px) {
  .wp-footer-with-menu .wp-footer-meta .copyright {
    text-align: left;
  }
}
.wp-footer-with-menu .footer-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  margin-top: 12px;
}
@media (width < 768px) {
  .wp-footer-with-menu .footer-meta {
    flex-direction: column;
  }
}
.wp-footer-with-menu .footer-meta .wp-footer-content {
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.8);
}
.wp-footer-with-menu .footer-meta .footer-content {
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.8);
}
.wp-footer-with-menu .footer-meta .wp-copyright {
  opacity: 0.7;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}
@media (width < 768px) {
  .wp-footer-with-menu .footer-meta .wp-copyright {
    text-align: left;
  }
}
.wp-footer-with-menu .footer-meta .copyright {
  opacity: 0.7;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}
@media (width < 768px) {
  .wp-footer-with-menu .footer-meta .copyright {
    text-align: left;
  }
}
@media (width > 1023px) {
  .wp-footer-with-menu .footer-accordion__btn {
    cursor: default;
  }
  .wp-footer-with-menu .footer-accordion__chevron {
    display: none;
  }
  .wp-footer-with-menu .footer-accordion__panel {
    display: block;
  }
  .wp-footer-with-menu .footer-accordion.is-open .footer-accordion__panel {
    display: block;
  }
}
@media (width <= 1023px) {
  .wp-footer-with-menu .footer-nav__grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .wp-footer-with-menu .footer-nav__group {
    border-radius: 10px;
  }
}

.footer-with-menu {
  margin-top: 50px;
  padding: 48px 0 40px;
  background: var(--footer);
  color: var(--text);
}
.footer-with-menu .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-with-menu .wp-footer-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
@media (width < 768px) {
  .footer-with-menu .wp-footer-navigation {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-with-menu .wp-footer-navigation .wp-logo {
  max-width: 180px;
  width: 100%;
}
.footer-with-menu .wp-footer-navigation .wp-logo img {
  width: 100%;
}
@media (width < 768px) {
  .footer-with-menu .wp-footer-navigation .wp-logo {
    margin: 0 auto;
  }
}
.footer-with-menu .wp-footer-navigation .logo {
  max-width: 180px;
  width: 100%;
}
.footer-with-menu .wp-footer-navigation .logo img {
  width: 100%;
}
@media (width < 768px) {
  .footer-with-menu .wp-footer-navigation .logo {
    margin: 0 auto;
  }
}
.footer-with-menu .footer-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
@media (width < 768px) {
  .footer-with-menu .footer-navigation {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-with-menu .footer-navigation .wp-logo {
  max-width: 180px;
  width: 100%;
}
.footer-with-menu .footer-navigation .wp-logo img {
  width: 100%;
}
@media (width < 768px) {
  .footer-with-menu .footer-navigation .wp-logo {
    margin: 0 auto;
  }
}
.footer-with-menu .footer-navigation .logo {
  max-width: 180px;
  width: 100%;
}
.footer-with-menu .footer-navigation .logo img {
  width: 100%;
}
@media (width < 768px) {
  .footer-with-menu .footer-navigation .logo {
    margin: 0 auto;
  }
}
.footer-with-menu .footer-nav__menu {
  flex: 1;
  justify-content: end;
  display: flex;
}
@media (width < 768px) {
  .footer-with-menu .footer-nav__menu {
    margin: 0 auto;
  }
}
.footer-with-menu .footer-nav__menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
@media (width < 768px) {
  .footer-with-menu .footer-nav__menu-list {
    flex-direction: column;
    align-items: center;
  }
}
.footer-with-menu .footer-nav__menu-list li {
  list-style: none;
}
.footer-with-menu .footer-nav__menu-list a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}
@media (width < 768px) {
  .footer-with-menu .footer-nav__menu-list a {
    display: table;
    margin: 0 auto;
  }
}
.footer-with-menu .footer-nav__menu-list a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-with-menu .footer-badges {
  display: grid;
  gap: 18px;
  margin: 12px 0 8px;
}
.footer-with-menu .footer-badges__section {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.footer-with-menu .footer-badges__title {
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-with-menu .footer-badges__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.footer-with-menu .footer-badges__card {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 82px;
  align-content: center;
  transition: transform 0.15s ease, border-color 0.15s ease;
  color: #f7f8fb;
}
.footer-with-menu .footer-badges__card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}
.footer-with-menu .footer-badges__card img {
  max-height: 90px;
  max-width: 220px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}
@media (width < 768px) {
  .footer-with-menu .footer-badges__card img {
    max-height: 60px;
    max-width: 100%;
  }
}
.footer-with-menu .footer-badges__label {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
}
.footer-with-menu .footer-badges__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}
.footer-with-menu .footer-nav__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
@media (width >= 1280px) {
  .footer-with-menu .footer-nav__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.footer-with-menu .footer-nav__group {
  border-radius: 12px;
  transition: border-color 0.2s ease;
}
.footer-with-menu .footer-nav__group:hover {
  border-color: rgba(255, 255, 255, 0.16);
}
.footer-with-menu .footer-accordion__btn {
  width: 100%;
  background: none;
  border: 0;
  color: inherit;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
}
.footer-with-menu .footer-accordion__chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.footer-with-menu .footer-accordion__panel {
  margin-top: 8px;
  display: none;
}
.footer-with-menu .footer-accordion.is-open .footer-accordion__chevron {
  transform: rotate(-135deg);
}
.footer-with-menu .footer-accordion.is-open .footer-accordion__panel {
  display: block;
}
.footer-with-menu .footer-nav__title {
  display: inline-flex;
  gap: 8px;
  color: #FFF;
  align-items: center;
  text-transform: uppercase;
}
.footer-with-menu .footer-nav__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.footer-with-menu .footer-nav__item {
  list-style: none;
}
.footer-with-menu .footer-nav__link {
  color: #FFF;
  font-size: 14px;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  border: 0;
  gap: 6px;
  background: none;
  text-align: left;
  padding: 0;
  opacity: 0.7;
}
.footer-with-menu .footer-nav__link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-with-menu .wp-footer-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  margin-top: 12px;
}
@media (width < 768px) {
  .footer-with-menu .wp-footer-meta {
    flex-direction: column;
  }
}
.footer-with-menu .wp-footer-meta .wp-footer-content {
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.8);
}
.footer-with-menu .wp-footer-meta .footer-content {
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.8);
}
.footer-with-menu .wp-footer-meta .wp-copyright {
  opacity: 0.7;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}
@media (width < 768px) {
  .footer-with-menu .wp-footer-meta .wp-copyright {
    text-align: left;
  }
}
.footer-with-menu .wp-footer-meta .copyright {
  opacity: 0.7;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}
@media (width < 768px) {
  .footer-with-menu .wp-footer-meta .copyright {
    text-align: left;
  }
}
.footer-with-menu .footer-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  margin-top: 12px;
}
@media (width < 768px) {
  .footer-with-menu .footer-meta {
    flex-direction: column;
  }
}
.footer-with-menu .footer-meta .wp-footer-content {
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.8);
}
.footer-with-menu .footer-meta .footer-content {
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.8);
}
.footer-with-menu .footer-meta .wp-copyright {
  opacity: 0.7;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}
@media (width < 768px) {
  .footer-with-menu .footer-meta .wp-copyright {
    text-align: left;
  }
}
.footer-with-menu .footer-meta .copyright {
  opacity: 0.7;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}
@media (width < 768px) {
  .footer-with-menu .footer-meta .copyright {
    text-align: left;
  }
}
@media (width > 1023px) {
  .footer-with-menu .footer-accordion__btn {
    cursor: default;
  }
  .footer-with-menu .footer-accordion__chevron {
    display: none;
  }
  .footer-with-menu .footer-accordion__panel {
    display: block;
  }
  .footer-with-menu .footer-accordion.is-open .footer-accordion__panel {
    display: block;
  }
}
@media (width <= 1023px) {
  .footer-with-menu .footer-nav__grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .footer-with-menu .footer-nav__group {
    border-radius: 10px;
  }
}

.page-404--clean {
  --bg: #0e1116;
  --grad-a: #101623;
  --grad-b: #0f1a2a;
  --text: #e7ecf2;
  --muted: #a6b0be;
  --accent: #85b6ff; /* мягкий акцент */
  --accent-2: #9ef0d6; /* второй акцент */
  --glass: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.12);
  --ring: color-mix(in oklab, var(--accent) 35%, transparent);
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  min-height: 80vh;
  position: relative;
  isolation: isolate;
  padding: clamp(28px, 3vw, 44px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: radial-gradient(120% 100% at 10% -10%, var(--grad-a), transparent 70%), radial-gradient(100% 100% at 100% 10%, var(--grad-b), transparent 70%), linear-gradient(180deg, #0a0d12, #0c111a);
  color: var(--text);
}
.page-404--clean .e404__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.page-404--clean .e404__blob {
  position: absolute;
  filter: blur(24px);
}
.page-404--clean .e404__blob--a {
  width: 520px;
  left: -60px;
  top: -60px;
  animation: floatA 14s ease-in-out infinite;
}
.page-404--clean .e404__blob--b {
  width: 520px;
  right: -80px;
  bottom: -80px;
  animation: floatB 16s ease-in-out infinite;
}
.page-404--clean .e404__head {
  text-align: center;
}
.page-404--clean .e404__badge {
  display: inline-block;
  font-size: clamp(64px, 11vw, 136px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: radial-gradient(circle at 50% 50%, #ffffff, #ddecff 45%, #c7f5e6 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  filter: drop-shadow(0 10px 30px rgba(133, 182, 255, 0.25));
  margin-bottom: 6px;
  animation: softPulse 6s ease-in-out infinite;
}
.page-404--clean .e404__title {
  margin: 8px 0 6px;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-404--clean .e404__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 2.2vw, 17px);
}
.page-404--clean .e404__actions {
  margin: 26px auto 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-404--clean .e404__actions .e404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.page-404--clean .e404__actions .e404__btn--primary {
  background: linear-gradient(180deg, var(--accent), color-mix(in oklab, var(--accent) 65%, #3b5c9e));
  color: #0d1117;
  box-shadow: 0 10px 24px color-mix(in oklab, var(--accent) 40%, transparent);
}
.page-404--clean .e404__actions .e404__btn--primary:hover {
  transform: translateY(-1px);
}
.page-404--clean .e404__actions .e404__btn--primary:active {
  transform: translateY(0);
}
.page-404--clean .e404__actions .e404__btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.page-404--clean .e404__actions .e404__btn--ghost:hover {
  background: var(--glass);
}
.page-404--clean .e404__search {
  margin: 28px auto 0;
  width: min(680px, 100%);
}
.page-404--clean .e404__search .e404__label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}
.page-404--clean .e404__search .e404__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
@media (max-width: 560px) {
  .page-404--clean .e404__search .e404__form {
    grid-template-columns: 1fr;
  }
}
.page-404--clean .e404__search .e404__input {
  width: 100%;
  border-radius: 12px;
  padding: 14px 14px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.page-404--clean .e404__search .e404__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--ring);
}
.page-404--clean .e404__search .e404__submit {
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 800;
  background: linear-gradient(180deg, var(--accent-2), color-mix(in oklab, var(--accent-2) 70%, #2a6c5f));
  color: #081410;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}
.page-404--clean .e404__search .e404__submit:hover {
  transform: translateY(-1px);
}
.page-404--clean .e404__search .e404__submit:active {
  transform: translateY(0);
}
.page-404--clean .e404__links {
  margin: 30px auto 0;
  width: min(720px, 100%);
}
.page-404--clean .e404__links .e404__links-title {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.page-404--clean .e404__links .e404__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-404--clean .e404__links .e404__list a {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.page-404--clean .e404__links .e404__list a:hover {
  background: color-mix(in oklab, #fff 10%, transparent);
  border-color: color-mix(in oklab, #fff 24%, transparent);
  transform: translateY(-1px);
}
.page-404--clean .e404__recent {
  margin: 34px auto 6px;
  width: min(980px, 100%);
}
.page-404--clean .e404__recent .e404__recent-title {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.page-404--clean .e404__recent .e404__cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 920px) {
  .page-404--clean .e404__recent .e404__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 540px) {
  .page-404--clean .e404__recent .e404__cards {
    grid-template-columns: 1fr;
  }
}
.page-404--clean .e404__recent .e404__card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.page-404--clean .e404__recent .e404__card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, #fff 22%, transparent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.page-404--clean .e404__recent .e404__card-link {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--text);
}
.page-404--clean .e404__recent .e404__card-title {
  display: block;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}
.page-404--clean .e404__recent .e404__card-date {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* Анимации */
@keyframes floatA {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -8px);
  }
}
@keyframes floatB {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-12px, 10px);
  }
}
@keyframes softPulse {
  0%, 100% {
    filter: drop-shadow(0 10px 30px rgba(133, 182, 255, 0.25));
  }
  50% {
    filter: drop-shadow(0 12px 36px rgba(133, 182, 255, 0.45));
  }
}/*# sourceMappingURL=main.css.map */