@charset "UTF-8";
700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --header-height: 6.3125rem;
  --header-gap: 2.6%;
  --work-meta: 100%;
}
@media (min-width: 1024px) {
  :root {
    --header-gap: 2.6%;
    --work-meta: 18.4375rem;
  }
  :root .home {
    --header-height: 3.4375rem;
  }
}
@media (min-width: 1440px) {
  :root {
    --work-meta: 21.1875rem;
  }
}

:root {
  --c-bg-dark: #141C2D;
  --c-bg-dark-2: #0d1c3c;
  --c-bg-light: #edf4ff;
  --c-bg-light-2: #ffffff;
  --c-text-dark: #ffffff;
  --c-text-light: #1f2a44;
  --c-primary: #1f6fff;
  --c-primary-2: #4f8dff;
  --c-accent: #19d28f;
  --c-border-dark: rgba(255, 255, 255, 0.12);
  --c-border-light: rgba(31, 42, 68, 0.12);
  --header-pill-dark: linear-gradient(180deg, rgba(39, 80, 172, 0.95) 0%, rgba(18, 38, 85, 0.95) 100%);
  --header-pill-light: linear-gradient(180deg, #dceafe 0%, #cfe0ff 100%);
  --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body.theme-dark {
  --bg-main: var(--c-bg-dark);
  --bg-secondary: rgba(10, 24, 53, 0.9);
  --bg-card: rgba(13, 28, 60, 0.95);
  --text-main: var(--c-text-dark);
  --text-muted: rgba(255, 255, 255, 0.68);
  --border-color: var(--c-border-dark);
  --header-pill: var(--header-pill-dark);
  --search-bg: rgba(12, 28, 61, 0.9);
  --toggle-bg: #0c1a38;
}

body.theme-light {
  --bg-main: #f3f8ff;
  --bg-secondary: rgba(255, 255, 255, 0.95);
  --bg-card: #dceafe;
  --text-main: var(--c-text-light);
  --text-muted: rgba(31, 42, 68, 0.62);
  --border-color: var(--c-border-light);
  --header-pill: var(--header-pill-light);
  --search-bg: rgba(255, 255, 255, 0.96);
  --toggle-bg: #ffffff;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}

body.menu-open {
  overflow: hidden;
}

html {
  padding: 0;
  margin: 0;
}
html.has-scroll-smooth {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
}
html.has-scroll-smooth body {
  overflow-x: hidden;
}
html.has-scroll-smooth .c-scrollbar {
  z-index: 10;
}
html.has-scroll-smooth .c-scrollbar_thumb {
  opacity: 1;
}

body {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  vertical-align: bottom;
}

.page-wrap {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: linear-gradient(191.9deg, #0D0D0F 5.04%, #16151D 95.65%);
  margin: 0 auto;
}
.page-wrap section {
  width: 100%;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.col-start, .wysiwyg-styles > ul, .wysiwyg-styles > ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.col-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}

.no-click {
  pointer-events: none;
}

.not-found {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media (max-width: 1059px) {
  .not-found {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.not-found.without-img .not-found__content {
  width: 100%;
}
.not-found.without-img .not-found__content-inner {
  position: relative;
  width: auto;
  text-align: center;
}
.not-found.without-img .not-found__btn-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.not-found.bg-img {
  min-height: 987px;
}
.not-found.bg-img .not-found__content {
  width: 100%;
}
.not-found.bg-img .not-found__content-inner {
  position: relative;
  width: auto;
  text-align: center;
  color: #ffffff;
}
.not-found.bg-img .not-found__btn-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.not-found.title-img {
  margin-top: 400px;
}
.not-found.title-img .not-found__title-404 {
  color: #ffffff;
}
.not-found.title-img .not-found__title-404 span {
  text-align: center;
  position: relative;
}
.not-found.title-img .not-found__content {
  width: 100%;
}
.not-found.title-img .not-found__img {
  min-height: 500px;
  top: -222px;
}
.not-found.title-img .not-found__content-inner {
  position: relative;
  width: auto;
  text-align: center;
}
.not-found.title-img .not-found__btn-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.not-found__img-wrapper {
  min-height: 911px;
  position: relative;
  width: 30%;
}
@media (max-width: 1059px) {
  .not-found__img-wrapper {
    width: 100%;
  }
}
.not-found__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 70%;
}
@media (max-width: 1059px) {
  .not-found__content {
    margin-top: 50px;
    width: 100%;
  }
}
.not-found__title-404 {
  font-family: "Inter", sans-serif;
  font-size: calc(100rem / 16 + 100 * (100vw - 390px) / 1050);
  font-style: normal;
  font-weight: 500;
  line-height: 90%;
  position: relative;
  margin-bottom: 34px;
  width: 100%;
}
@media (min-width: 1440px) {
  .not-found__title-404 {
    font-size: calc(200 / 16 + rem);
  }
}
.not-found__title {
  font-family: "Inter", sans-serif;
  font-size: calc(26rem / 16 + 14 * (100vw - 390px) / 1050);
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 44px */
  position: relative;
  margin-bottom: 16px;
  width: 100%;
}
@media (min-width: 1440px) {
  .not-found__title {
    font-size: calc(40 / 16 + rem);
  }
}
.not-found__text {
  font-family: "Inter", sans-serif;
  font-size: calc(18rem / 16 + 0 * (100vw - 390px) / 1050);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  position: relative;
  width: 100%;
}
@media (min-width: 1440px) {
  .not-found__text {
    font-size: calc(18 / 16 + rem);
  }
}
.not-found__btn-wrapper {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

/* ═══════════════════════════════════════════════
   SEARCH PAGE — dark + light theme, responsive
   ═══════════════════════════════════════════════ */
/* ── Dark theme base (default) ── */
.search-page {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 60vh;
  margin-top: 50px;
}

.search-page__inner {
  padding-top: 150px;
  padding-bottom: 100px;
  width: 100%;
  max-width: 1132px;
}

/* ── Hero ── */
.search-page__hero {
  margin-bottom: 72px;
}

.search-page__title h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.search-page__query {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 32px;
  font-family: "Inter", sans-serif;
}

/* ── Search bar ── */
.search-page__search-bar-container {
  margin-top: 32px;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.search-page__input-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  -webkit-transition: border-color 0.25s ease, background 0.25s ease;
  transition: border-color 0.25s ease, background 0.25s ease;
  width: 100%;
  padding: 20px 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.search-page__input-wrap:focus-within {
  border-color: rgba(100, 140, 255, 0.6);
  background: rgba(255, 255, 255, 0.09);
}

.search-page__search-bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff !important;
  padding: 10px 0 !important;
  border-radius: 0 !important;
  line-height: 1.4;
}
.search-page__search-bar::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.search-page__search-bar::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.search-page__search-bar:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.search-page__search-bar::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.search-page__search-bar::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-page__search-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  background: #10B981;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 26px 39px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
  position: absolute;
  right: 0;
}
.search-page__search-btn:hover {
  background: #0ea070;
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}
@media (max-width: 480px) {
  .search-page__search-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* ── Count ── */
.search-page__action-panel {
  margin-top: 20px;
}

.search-page__action-panel-count-res {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.search-page__count-num {
  color: #10B981;
  font-weight: 700;
}

/* ── Section header ── */
.search-page__section {
  margin-bottom: 64px;
}

.search-page__action-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.search-page__section-label {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.search-page__section-count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 50px;
  background: #10B981;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   GRID
══════════════════════════════════════════ */
.search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .search-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ══════════════════════════════════════════
   CARD
══════════════════════════════════════════ */
.search-card {
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  background: #1F3E64;
  border: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.search-card:hover {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
          box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.search-card:hover .search-card__image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.search-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.search-card__image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.search-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.search-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.03);
}

.search-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(16, 185, 129, 0.9);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.search-card__cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.85);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-card__body {
  padding: 16px 18px 20px;
}

.search-card__rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFED5A;
}

.search-card__title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}

.search-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.search-card__sep {
  opacity: 0.4;
}

/* ── Explore btn ── */
.search-page__explore {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.search-page__explore-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  padding: 0 48px;
  border-radius: 50px;
  border: 2px solid #0052FF;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: background 0.25s ease, color 0.25s ease, -webkit-transform 0.15s ease;
  transition: background 0.25s ease, color 0.25s ease, -webkit-transform 0.15s ease;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.search-page__explore-btn:hover {
  background: #0052FF;
  color: #ffffff;
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}
@media (max-width: 600px) {
  .search-page__explore-btn {
    font-size: 13px;
    padding: 0 32px;
    height: 48px;
  }
}

/* ── Empty state ── */
.search-page__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding: 80px 20px;
  text-align: center;
}

.search-page__empty-icon {
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
}

.search-page__empty h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin: 0;
}

.search-page input#s {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 770px) {
  .search-page input#s {
    position: absolute;
    top: 32% !important;
  }
}

.search-page__empty p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ══════════════════════════════════════════
   LIGHT THEME
══════════════════════════════════════════ */
.theme-light .search-page__title h1 {
  color: #1a1d2e;
}
.theme-light .search-card__date {
  color: #1a1d2e;
}
.theme-light .search-page__query {
  color: rgba(0, 0, 0, 0.45);
}
.theme-light .search-card__read {
  color: rgba(0, 0, 0, 0.45);
}
.theme-light .search-page__input-wrap {
  background: #f0f4ff;
  border-color: #dde4f5;
}
.theme-light .search-page__input-wrap:focus-within {
  border-color: #0052FF;
  background: #eaf0ff;
}
.theme-light .search-card__rating span {
  color: rgba(0, 0, 0, 0.45);
}
.theme-light .search-page__input-icon {
  color: rgba(0, 0, 0, 0.3);
}
.theme-light .search-page__search-bar {
  color: #1a1d2e !important;
}
.theme-light .search-page__search-bar::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.theme-light .search-page__search-bar::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.theme-light .search-page__search-bar:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.theme-light .search-page__search-bar::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.theme-light .search-page__search-bar::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.theme-light .search-page__action-panel-count-res {
  color: rgba(0, 0, 0, 0.45);
}
.theme-light .search-page__action-title {
  border-bottom-color: #e5e7eb;
}
.theme-light .search-page__section-label {
  color: #1a1d2e;
}
.theme-light .search-card {
  background: #ffffff;
  border-color: #e5e7eb;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.theme-light .search-card:hover {
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.theme-light .search-card__title {
  color: #1a1d2e;
}
.theme-light .search-card__meta {
  color: rgba(0, 0, 0, 0.45);
}
.theme-light .search-card__cat {
  background: rgba(255, 255, 255, 0.85);
  color: #1a1d2e;
  border-color: rgba(0, 0, 0, 0.1);
}
.theme-light .search-page__empty h2 {
  color: rgba(0, 0, 0, 0.5);
}
.theme-light .search-page__empty p {
  color: rgba(0, 0, 0, 0.3);
}
.theme-light .search-page__empty-icon {
  color: rgba(0, 0, 0, 0.15);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .search-page__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .search-page__hero {
    margin-bottom: 48px;
  }
  .search-page__search-bar-container {
    max-width: 100%;
  }
  .search-page__search-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  .search-page__section {
    margin-bottom: 48px;
  }
  .search-card__image {
    height: 170px;
  }
  .search-card__title {
    font-size: 13px;
  }
}
.block-programs {
  position: relative;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 0 !important;
  padding-top: 120px;
  /* Full dot */
  /* Half dot using gradient or pseudo-element */
}
@media (max-width: 768px) {
  .block-programs {
    padding-top: 60px;
  }
}
@media (max-width: 414px) {
  .block-programs {
    padding-bottom: 34px;
  }
}
.block-programs__inner {
  max-width: 1172px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: baseline;
      align-content: baseline;
  width: 100%;
}
@media (max-width: 349px) {
  .block-programs__inner {
    padding: 0 20px;
  }
}
.block-programs__items {
  width: 100%;
}
.block-programs__title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0%;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .block-programs__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 55.67px;
    text-align: left;
    padding-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .block-programs__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    padding-bottom: 15px;
  }
}
@media (max-width: 414px) {
  .block-programs__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
  }
}
@media (max-width: 349px) {
  .block-programs__title {
    padding-bottom: 12px;
  }
}
.block-programs__wrapper {
  height: 100%;
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  min-height: 673px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 414px) {
  .block-programs__wrapper {
    padding-top: 37px;
  }
}
.block-programs__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  vertical-align: middle;
  margin-top: 20px;
}
@media (max-width: 1025px) {
  .block-programs__text {
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 22px;
  }
}
@media (max-width: 640px) {
  .block-programs__text {
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}
.block-programs .rating-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
  gap: 6px;
}
@media (max-width: 1024px) {
  .block-programs .rating-dots {
    margin-right: 15px;
  }
}
.block-programs .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #70707D; /* empty dot */
  position: relative;
}
@media (max-width: 1024px) {
  .block-programs .dot {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 859px) {
  .block-programs .dot {
    width: 6px;
    height: 6px;
  }
}
.block-programs .dot--full {
  background-color: #ff9600;
}
.block-programs .dot--half {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ff9600), color-stop(50%, #70707D));
  background: linear-gradient(to right, #ff9600 50%, #70707D 50%);
}
.block-programs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 40px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  background: #1F3E64;
  border-top-right-radius: 30px;
}
.block-programs__item.mobile {
  display: none;
}
@media (max-width: 581px) {
  .block-programs__item.mobile {
    display: block;
  }
}
.block-programs__item.mobile .icon--active {
  background: #e27500;
  border-radius: 2px;
}
.block-programs__item.mobile .block-programs__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.block-programs__item.mobile .block-programs__info {
  width: 100%;
  margin-left: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block-programs__item.mobile .block-programs__explor {
  font-size: 10px;
  min-width: 118px;
  padding: 10px;
  margin-left: unset;
}
.block-programs__item.mobile .block-programs__info-wp {
  max-width: 100%;
  margin-right: 0;
}
.block-programs__item.mobile .block-programs-top-inn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 130px);
  margin-left: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.block-programs__item.mobile .block-programs__explor-wrapp {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.block-programs__item.mobile .block-programs__item-title {
  font-size: 16px;
  padding-bottom: 10px;
}
.block-programs__item.mobile .block-programs__icons svg {
  width: 22px;
  height: 22px;
}
.block-programs__item.mobile .rating-dots {
  margin-top: 9px;
  margin-right: 0;
}
.block-programs__item.mobile .block-programs__description {
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: unset;
  display: none;
}
.block-programs__item.mobile .block-programs__icon-protect svg {
  background: linear-gradient(219.81deg, #7B7A82 3.79%, #636267 96.21%);
  border-radius: 2px;
}
.block-programs__item.mobile .dot {
  width: 8px;
  height: 8px;
}
.block-programs__item.mobile .block-programs__img {
  width: 120px;
  height: 56px;
}
.block-programs__item.mobile .block-programs__img img {
  width: 86px;
}
@media (max-width: 1024px) {
  .block-programs__item {
    padding: 20px 15px;
  }
}
@media (max-width: 581px) {
  .block-programs__item.decstop {
    display: none;
  }
}
.block-programs__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 200px);
}
@media (max-width: 1024px) {
  .block-programs__info {
    margin-left: 25px;
    width: calc(100% - 140px);
  }
}
@media (max-width: 859px) {
  .block-programs__info {
    width: calc(100% - 100px);
    margin-left: 10px;
  }
}
.block-programs__info-wp {
  max-width: 470px;
  margin-right: 20px;
}
.block-programs .block-programs__info-in {
  width: 78%;
}
.block-programs .program-advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block-programs .program-advantages li span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  position: relative;
  margin-top: 15px;
  width: 100%;
  color: #ffffff;
}
.block-programs .program-advantages .cap-6 .w:nth-child(n+7) {
  display: none;
}
.block-programs .advantage-item {
  margin-right: 10px;
}
.block-programs .advantage-item::before {
  content: "✔";
  color: #FFFFFF; /* yellow */
  font-size: 14px;
  line-height: 1.4;
  margin-top: 2px; /* align with text */
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.block-programs .liks_all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.block-programs .wibes {
  margin-top: 15px;
  text-align: center;
  margin-left: 30px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  vertical-align: middle;
  color: #10B981;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.block-programs .wibes:hover {
  color: #fff;
}
.block-programs .block-programs__item-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  vertical-align: middle;
  text-transform: uppercase;
}
.block-programs__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  position: relative;
  margin-top: 15px;
  display: none;
  width: 100%;
}
@media (max-width: 1024px) {
  .block-programs__description {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media (max-width: 859px) {
  .block-programs__description {
    -webkit-line-clamp: 2; /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: none;
  }
}
.block-programs__img {
  width: 160px;
  height: 122px;
  border-radius: 12px;
  background: #1A2339;
  position: relative;
}
@media (max-width: 1024px) {
  .block-programs__img {
    width: 120px;
    height: 80px;
  }
}
@media (max-width: 859px) {
  .block-programs__img {
    width: 100%;
    height: 112px;
  }
}
.block-programs__img img {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 120px;
}
@media (max-width: 1024px) {
  .block-programs__img img {
    width: 94px;
  }
}
@media (max-width: 859px) {
  .block-programs__img img {
    width: 120px;
  }
}
.block-programs__item-title-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.block-programs__item-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  position: relative;
  padding-bottom: 10px;
  display: inline;
  width: auto;
}
@media (max-width: 1024px) {
  .block-programs__item-title {
    font-size: 18px;
  }
}
@media (max-width: 859px) {
  .block-programs__item-title {
    font-size: 14px;
    padding-bottom: 7px;
  }
}
.block-programs__item-title:after {
  content: "";
  background: #3B82F6;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  left: 0;
}
@media (max-width: 1024px) {
  .block-programs__item-title:after {
    width: 120px;
  }
}
@media (max-width: 859px) {
  .block-programs__item-title:after {
    width: 90px;
    height: 2px;
  }
}
.block-programs__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block-programs__icons svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 859px) {
  .block-programs__icons svg {
    width: 20.8px;
    height: 20.8px;
  }
}
.block-programs .icon {
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .block-programs .icon {
    margin-right: 10px;
  }
}
@media (max-width: 859px) {
  .block-programs .icon {
    margin-right: 8px;
  }
}
.block-programs__explor {
  border-radius: 30px;
  margin-left: 30px;
  position: relative;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  min-width: 200px;
  text-align: center;
  background: #0052FF;
  padding: 16px 20px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
@media (max-width: 1024px) {
  .block-programs__explor {
    font-size: 14px;
    min-width: 160px;
    padding: 13px 10px;
    margin-left: 25px;
  }
}
@media (max-width: 859px) {
  .block-programs__explor {
    font-size: 18px;
    padding: 10px 10px;
    min-width: 240px;
    margin-left: 14px;
  }
}
.block-programs__explor:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.92;
}
.block-programs .program-tags-cloud {
  margin: 20px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block-programs .program-tag-item {
  display: inline-block;
  padding: 8px 16px;
  background: #1F3E64;
  border-radius: 20px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.block-programs .program-tag-item:hover {
  background: #10B981;
}
.block-programs .program-tag-item.active {
  background: #10B981;
  border-color: transparent;
  color: white;
  font-weight: 600;
}

.block-accordion-arc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 70px;
}
.block-accordion-arc__inner {
  max-width: 1172px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
}
@media (max-width: 349px) {
  .block-accordion-arc__inner {
    padding: 0;
  }
}
.block-accordion-arc__wrapper {
  position: relative;
  width: 100%;
}
.block-accordion-arc__title {
  width: 100%;
}
.block-accordion-arc__title h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  vertical-align: middle;
  text-transform: uppercase;
  position: relative;
  width: 100%;
}
@media (max-width: 1024px) {
  .block-accordion-arc__title h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
  }
}
@media (max-width: 640px) {
  .block-accordion-arc__title h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
  }
}
@media (max-width: 414px) {
  .block-accordion-arc__title h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
  }
}
@media (max-width: 349px) {
  .block-accordion-arc__title h2 {
    padding-bottom: 12px;
  }
}
.block-accordion-arc__description {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media (max-width: 640px) {
  .block-accordion-arc__description {
    margin-top: 12px;
  }
}
.block-accordion-arc__description p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  vertical-align: middle;
  text-align: left;
  margin: 0;
}
@media (max-width: 1024px) {
  .block-accordion-arc__description p {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .block-accordion-arc__description p {
    font-size: 14px;
  }
}
.block-accordion-arc__content {
  position: relative;
  width: 100%;
}
@media (max-width: 1059px) {
  .block-accordion-arc__content {
    width: 100%;
  }
}
.block-accordion-arc__items {
  position: relative;
  width: 100%;
  margin-top: 25px;
}
@media (max-width: 1059px) {
  .block-accordion-arc__items {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .block-accordion-arc__items {
    margin-top: 20px;
  }
}
.block-accordion-arc__item {
  position: relative;
  border-radius: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 10px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px 40px;
  overflow: hidden;
  background: rgb(31, 62, 100);
  width: 100%;
}
@media (max-width: 1024px) {
  .block-accordion-arc__item {
    padding: 12px 12px;
  }
}
.block-accordion-arc__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  border: none;
  cursor: pointer;
  background: transparent;
}
.block-accordion-arc__item-header h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  text-align: left;
  padding-right: 10px;
}
@media (max-width: 1024px) {
  .block-accordion-arc__item-header h3 {
    font-size: 16px;
  }
}
.block-accordion-arc__item-content {
  max-height: 0; /* Collapsed */
  opacity: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out; /* Smooth transitions */
}
.block-accordion-arc__item.active .block-accordion-arc__item-content {
  max-height: 1000px; /* Arbitrary large value for smooth expansion */
  opacity: 1;
}
.block-accordion-arc__item-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .block-accordion-arc__item-text {
    font-size: 14px;
  }
}
@media (max-width: 644px) {
  .block-accordion-arc__item-text {
    font-size: 12px;
  }
}
@media (max-width: 644px) {
  .block-accordion-arc {
    padding-bottom: 30px;
  }
}
@media (max-width: 644px) {
  .block-accordion-arc .block-accordion-arc__icon svg {
    width: 15px;
  }
}

.program-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.page-numbers.current {
  color: #fff;
  font-weight: 600;
}

.program-pagination__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-numbers {
  margin: 10px;
}

.program-load-more-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  width: 100%;
}
.program-load-more-wrap button {
  background: linear-gradient(238.22deg, #FA781A 16.76%, #E15B10 80.15%);
  border-radius: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 16px 40px;
  width: auto;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 17.68px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  left: -23px;
  color: #000;
  position: relative;
}

.join-program-btn {
  cursor: pointer;
}

.rating-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 600;
}

.rating-number {
  color: #fff;
}

.rating-star {
  color: #ffb400; /* золотая звезда */
  font-size: 18px;
}

.program-tags-cloud.program-tags-cloud--groups {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.program-tags-group {
  width: 100%;
  margin-top: 50px;
}

.program-tags-group__title {
  margin-bottom: 20px;
  width: 100%;
}

.review-form-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.review-form-wrapper.is-open {
  max-height: 1000px;
  opacity: 1;
  margin-top: 24px;
}

.btn-review {
  margin-top: 30px;
  margin-bottom: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 232px;
  height: 59px;
  border-radius: 30px;
  border: 2px solid #0052FF;
  color: #fff;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: 0 0;
}
@media (max-width: 560px) {
  .btn-review {
    min-width: 280px;
    font-size: 14px;
  }
}

.btn-review:hover {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 255, 100, 0.35);
          box-shadow: 0 10px 25px rgba(0, 255, 100, 0.35);
}

.comment-list {
  display: grid;
  gap: 20px;
}

.program-reviews {
  margin-top: 30px;
}

.comment {
  background: -webkit-gradient(linear, left top, left bottom, from(#0e0e0e), to(#121212));
  background: linear-gradient(180deg, #0e0e0e, #121212);
  border: 1px solid rgba(0, 255, 120, 0.15);
  border-radius: 14px;
  padding: 20px 22px;
  position: relative;
}

/* email / author */
.comment-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.comment-author .fn {
  font-weight: 600;
  color: #3cff9a;
}

/* date */
.comment-meta {
  font-size: 12px;
  opacity: 0.6;
}

/* text */
.comment-content {
  color: #e6e6e6;
  line-height: 1.6;
  margin-top: 10px;
}

/* approved badge */
.comment::after {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 11px;
  background: rgba(0, 255, 100, 0.15);
  color: #3cff9a;
  padding: 4px 8px;
  border-radius: 6px;
}

.review-pending {
  background: rgba(255, 193, 7, 0.12);
  color: #ffc107;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.program-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

/* CARD */
.review-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #1a2339;
  border: 1px solid rgba(0, 255, 120, 0.18);
  border-radius: 14px;
  padding: 18px 20px;
  position: relative;
}

/* AVATAR */
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ff99, #00b36b);
  color: #000;
  font-weight: 700;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-transform: uppercase;
}

/* CONTENT */
.review-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.review-author {
  display: block;
  color: #3cff9a;
  font-weight: 600;
  margin-bottom: 6px;
}

.review-text {
  color: #e6e6e6;
  line-height: 1.6;
  margin: 0;
}

input {
  color: #fff !important;
}

textarea {
  color: #fff !important;
  min-height: 156px;
}

button.sub-rew {
  border-radius: 6px;
  position: relative;
  width: auto;
  background: linear-gradient(219.13deg, #7CEF22 7.64%, #1C9B38 99.96%);
  padding: 16px 30px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22.73px;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
  color: #202020;
  margin-top: 19px;
  border: none;
}

/* APPROVED BADGE */
.review-item::after {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 11px;
  background: rgba(0, 255, 120, 0.15);
  color: #3cff9a;
  padding: 4px 8px;
  border-radius: 6px;
}

.review-form-wrapper {
  display: none;
  margin-top: 20px;
}

.review-form-wrapper.is-open {
  display: block;
}

.form-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
}

.form-message.success {
  background: rgba(0, 255, 120, 0.15);
  color: #00ff99;
}

.form-message.error {
  background: rgba(255, 60, 60, 0.15);
  color: #ff5a5a;
}

.program-filter-group__title {
  margin-top: 44px;
}

.program-filters {
  width: 100%;
  margin-top: 50px;
}

.program-group.program-group--top {
  margin-top: 50px;
}
.program-group.program-group--top .block-programs__item {
  border: solid 1px rgb(16, 185, 129);
}
.program-group.program-group--top .program-group-title {
  margin-bottom: 20px;
}
.program-group.program-group--top .abs {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  bottom: 0;
}
.program-group.program-group--top .program-badge {
  position: absolute;
  font-family: "Inter", sans-serif;
  top: 14px;
  left: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #10B981;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  z-index: 5;
  text-transform: uppercase;
}
.program-group.program-group--top .program-badge__icon {
  font-size: 15px;
  line-height: 1;
}
.program-group.program-group--top .program-badge__text {
  white-space: nowrap;
  color: #FFFfff;
}

.abs {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  bottom: 0;
}

.block-programs__item {
  position: relative;
}

/* === FILTER CONTAINER === */
.program-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-bottom: 20px;
  z-index: 10;
}

.program-filter-btn {
  cursor: pointer;
}

/* === ACCORDION WRAPPER === */
.program-filter-accordion {
  position: relative;
}

/* === DROPDOWN PANEL === */
.program-filter-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  max-height: 320px;
  overflow-y: auto;
  background: #1F3E64;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  opacity: 0;
  -webkit-transform: translateY(8px) scale(0.98);
      -ms-transform: translateY(8px) scale(0.98);
          transform: translateY(8px) scale(0.98);
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  z-index: 100;
}

/* === OPEN STATE === */
.program-filter-accordion.open .program-filter-panel {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
      -ms-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* === TAGS === */
.program-filter-tag {
  display: block;
  padding: 8px 12px;
  margin-bottom: 4px;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* Hover */
.program-filter-tag:hover {
  background: rgba(16, 185, 129, 0.4);
  color: #ffffff;
}

/* Active term page */
.program-filter-tag.active {
  background: rgba(16, 185, 129, 0.4);
  color: #ffffff;
  font-weight: 600;
}

/* === ARROW ANIMATION === */
.program-filter-accordion .arrow {
  margin-left: 6px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.program-filter-accordion.open .arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* === SCROLLBAR (premium) === */
.program-filter-panel::-webkit-scrollbar {
  width: 6px;
}

.program-filter-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.infinite-loader {
  height: 1px; /* sentinel height */
  opacity: 0; /* hidden by default */
  pointer-events: none;
}

.infinite-loader.is-loading {
  height: auto;
  opacity: 1;
  pointer-events: auto;
  padding: 16px 0;
  text-align: center;
  color: #fff;
}

.block-programs__item.mobi {
  display: none;
}

@media (max-width: 1024px) {
  .program-group.program-group--top .program-badge {
    left: unset;
    right: 14px;
  }
  .block-programs__item.desktop {
    display: none;
  }
  .block-programs__item.mobi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 12px;
  }
  .block-programs__item.mobi .join-program-btn {
    margin-left: 0;
  }
  .block-programs__item.mobi .wibes {
    margin-left: 0;
  }
  .block-programs__item.mobi .block-programs__info {
    margin-left: unset;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .block-programs__item.mobi .block-programs__info-in {
    width: 100%;
  }
  .block-programs__item.mobi .block-programs__item-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 12px;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .block-programs__item.mobi .block-programs__item-title::after {
    width: 100%;
  }
  .block-programs__item.mobi .liks_all {
    margin-top: 10px;
  }
}
@media (max-width: 759px) {
  .block-programs__item.mobi .program-advantages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-programs__item.mobi .advantage-item {
    width: 100%;
  }
}
.block-top-table {
  position: relative;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  /* Base table */
  /* Cells */
  /* Remove last border */
  /* First column */
  /* Second column */
  /* Hover */
  /* Mobile */
}
.block-top-table__inner {
  max-width: 1172px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  width: 100%;
}
.block-top-table h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px !important;
  line-height: 1.2;
  letter-spacing: 0;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  width: 100%;
}
@media (max-width: 1024px) {
  .block-top-table h2 {
    font-size: 24px !important;
    font-weight: 700;
    line-height: 55.67px;
    text-align: left;
    padding-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .block-top-table h2 {
    font-size: 24px !important;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    padding-bottom: 15px;
  }
}
@media (max-width: 414px) {
  .block-top-table h2 {
    font-size: 24px !important;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
  }
}
@media (max-width: 349px) {
  .block-top-table h2 {
    padding-bottom: 12px;
  }
}
.block-top-table p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px !important;
  line-height: 1.4 !important;
  letter-spacing: 0%;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .block-top-table p {
    line-height: 24px;
    font-size: 18px !important;
  }
}
@media (max-width: 640px) {
  .block-top-table p {
    line-height: 18px;
    font-size: 14px !important;
  }
}
.block-top-table ol li {
  font-size: 18px !important;
}
.block-top-table ul li {
  font-size: 18px !important;
}
@media (max-width: 1024px) {
  .block-top-table ul li {
    line-height: 24px;
    font-size: 16px !important;
  }
}
@media (max-width: 640px) {
  .block-top-table ul li {
    font-size: 14px !important;
  }
}
.block-top-table .wysiwyg-styles > ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  content: counter(li) ".";
}
.block-top-table .wysiwyg-styles > ul li::before {
  position: absolute;
  content: "";
  top: 0.5em;
  left: 0;
  width: 0.35em;
  height: 0.35em;
  background-color: #ffffff !important;
  border-radius: 50%;
}
.block-top-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 0 1px rgb(172, 177, 198);
          box-shadow: 0 0 0 1px rgb(172, 177, 198);
}
.block-top-table table td {
  padding: 16px 20px;
  vertical-align: top;
  border-bottom: 1px solid rgb(172, 177, 198);
  line-height: 1.6;
}
.block-top-table table tr td {
  background: rgb(31, 62, 100);
}
.block-top-table table tr > td:first-child {
  background: rgb(59, 130, 246);
}
.block-top-table table tr:last-child td {
  border-bottom: none;
}
.block-top-table table td:first-child {
  font-weight: 600;
  color: #ffffff;
  width: 240px !important; /* override inline styles */
  max-width: 240px !important;
}
@media (max-width: 768px) {
  .block-top-table table td:first-child {
    width: 94px !important; /* override inline styles */
    max-width: 94px !important;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
  }
}
.block-top-table table td:last-child {
  color: rgba(255, 255, 255, 0.85);
}
.block-top-table table tr:hover {
  background: rgba(255, 255, 255, 0.045);
}
@media (max-width: 768px) {
  .block-top-table table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .block-top-table table td {
    padding: 10px 10px;
    white-space: normal;
    font-size: 12px;
  }
}

.page_archi {
  position: relative;
  width: 100%;
}

.page_archi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/pp.png) no-repeat center top;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

.theme-light.archive footer {
  background: #edf1f4;
}

.theme-light.archive footer:before {
  background: transparent;
}

.theme-light.archive footer .footer__inner {
  background: #ffffff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.theme-light .block-programs__title {
  color: rgb(63, 64, 67);
}
.theme-light .block-programs__text {
  color: rgb(63, 64, 67);
}
.theme-light .page_archi {
  background: #edf1f4;
}
.theme-light .page_archi::before {
  background: url(../images/ppl.png) no-repeat center top;
}
.theme-light .block-programs__item {
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.theme-light .wibes:hover {
  color: rgb(63, 64, 67);
}
.theme-light .block-programs__item-title {
  color: rgb(63, 64, 67);
}
.theme-light .rating-number {
  color: rgb(63, 64, 67);
}
.theme-light .program-advantages li span {
  color: rgb(63, 64, 67);
}
.theme-light .advantage-item::before {
  color: rgb(63, 64, 67);
}
.theme-light .block-top-table h2 {
  color: rgb(63, 64, 67);
}
.theme-light .block-top-table p {
  color: rgb(63, 64, 67);
}
.theme-light .block-top-table ul li {
  color: rgb(63, 64, 67);
}
.theme-light .block-top-table ol li {
  color: rgb(63, 64, 67);
}
.theme-light .wysiwyg-styles > ul li::before {
  background-color: rgb(63, 64, 67) !important;
  border-radius: 50%;
}
.theme-light .program-tag-item {
  background: rgb(214, 221, 226);
  color: rgb(63, 64, 67);
}
.theme-light .program-filter-accordion .arrow {
  color: rgb(63, 64, 67);
}
.theme-light .program-filter-panel {
  background: rgb(214, 221, 226);
}
.theme-light .program-filter-panel a {
  color: rgb(63, 64, 67);
}
.theme-light .block-top-table table tr > td:first-child {
  background: rgb(156, 209, 253);
}
.theme-light .block-top-table table tr td {
  background: #FFFFFF;
}
.theme-light .block-top-table table td {
  color: rgb(63, 64, 67);
}
.theme-light .block-accordion-arc__title h2 {
  color: rgb(63, 64, 67);
}
.theme-light .block-accordion-arc__description p {
  color: rgb(63, 64, 67);
}
.theme-light .block-top-table .wysiwyg-styles > ol li::before {
  color: rgb(63, 64, 67);
}
.theme-light .block-accordion-arc__item {
  background: #FFFFFF;
}
.theme-light .block-accordion-arc__item-title {
  color: rgb(63, 64, 67);
}
.theme-light .block-accordion-arc__item-text {
  color: rgb(63, 64, 67);
}
.theme-light .block-accordion-arc__icon svg path {
  stroke: rgb(63, 64, 67) !important;
}

.header {
  position: fixed;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 0;
  width: 100%;
}
.header .container {
  position: relative;
  max-width: 1172px;
  padding: 0 20px;
  width: 100%;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  min-height: 56px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 82, 255, 0.2); /* same as #0052FF33 */
  /* Safari support */
  -webkit-backdrop-filter: blur(4px);
  /* Modern browsers */
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: var(--shadow-main);
          box-shadow: var(--shadow-main);
}
.header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
  margin-right: 40px;
}
.header__logo-img {
  display: block;
  max-width: 120px;
  height: auto;
}
.header__logo-img--light {
  display: none;
}
.header__desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__menus {
  margin-right: auto;
}
.header__main-nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__main-nav-menu li {
  margin: 0;
  padding: 0;
}
.header__main-nav-menu a {
  position: relative;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-main);
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease, color 0.25s ease;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.header__main-nav-menu a:hover {
  opacity: 0.8;
}
.header__main-nav-menu .current-menu-item a,
.header__main-nav-menu .current_page_item a {
  color: var(--text-main);
}
.header__main-nav-menu .current-menu-item a::after,
.header__main-nav-menu .current_page_item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: var(--c-primary);
}
.header__search {
  position: relative;
  width: 250px !important;
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 250px !important;
          flex: 0 0 250px !important;
  min-width: auto !important;
}
.header__search-input {
  width: 100%;
  height: 40px;
  background: #141C2D !important;
  /* border: transparent !important; */
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.1019607843) !important;
  color: var(--text-main);
  padding: 0 44px 0 16px;
  outline: none;
  font-size: 13px;
  margin-top: 0 !important;
  border: none;
  -webkit-transition: border-color 0.25s ease, background 0.25s ease;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.header__search-input::-webkit-input-placeholder {
  color: var(--text-muted);
}
.header__search-input::-moz-placeholder {
  color: var(--text-muted);
}
.header__search-input:-ms-input-placeholder {
  color: var(--text-muted);
}
.header__search-input::-ms-input-placeholder {
  color: var(--text-muted);
}
.header__search-input::placeholder {
  color: var(--text-muted);
}
.header__search-input:focus {
  border-color: var(--c-primary);
}
.header__search-btn {
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--c-primary);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.header__mobile-bar {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-left: auto;
}

body.theme-light .header__logo-img--dark,
body.theme-light .mobile-menu__logo-img--dark {
  display: none;
}
body.theme-light .header__logo-img--light,
body.theme-light .mobile-menu__logo-img--light {
  display: block;
}
body.theme-light .theme-toggle__track {
  background: #141C2D;
}
body.theme-light .header__search-input {
  background: #FFFFFF !important;
}
body.theme-light .header__search-input {
  color: #3F4043 !important;
}

.theme-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.theme-toggle__track {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 68px;
  height: 34px;
  border-radius: 999px;
  background: #3B82F6;
  border: 1px solid var(--border-color);
  overflow: hidden;
}
.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  z-index: 22;
}
.theme-toggle__icon {
  position: relative;
  z-index: 2;
  width: 50%;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body.theme-light .theme-toggle__thumb {
  -webkit-transform: translateX(34px);
      -ms-transform: translateX(34px);
          transform: translateX(34px);
}

.burger {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--text-main);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(3, 10, 22, 0.52);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu__inner {
  position: relative;
  width: min(370px, 100% - 32px);
  min-height: calc(100vh - 32px);
  margin: 16px;
  padding: 88px 28px 32px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: var(--shadow-main);
          box-shadow: var(--shadow-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.mobile-menu__close span {
  position: absolute;
  top: 17px;
  left: 7px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-main);
}
.mobile-menu__close span:first-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobile-menu__close span:last-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mobile-menu__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 auto 48px;
}
.mobile-menu__logo-img {
  max-width: 170px;
  height: auto;
}
.mobile-menu__logo-img--light {
  display: none;
}
.mobile-menu__nav {
  margin-bottom: 48px;
}
.mobile-menu__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
}
.mobile-menu__nav-list li {
  margin: 0;
}
.mobile-menu__nav-list a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text-main);
  text-decoration: none;
}
.mobile-menu__search {
  position: relative;
  margin-top: auto;
}
.mobile-menu__search-input {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--search-bg);
  color: var(--text-main);
  padding: 0 54px 0 18px;
  outline: none;
  font-size: 16px;
}
.mobile-menu__search-input::-webkit-input-placeholder {
  color: var(--text-muted);
}
.mobile-menu__search-input::-moz-placeholder {
  color: var(--text-muted);
}
.mobile-menu__search-input:-ms-input-placeholder {
  color: var(--text-muted);
}
.mobile-menu__search-input::-ms-input-placeholder {
  color: var(--text-muted);
}
.mobile-menu__search-input::placeholder {
  color: var(--text-muted);
}
.mobile-menu__search-btn {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--c-primary);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 991px) {
  .header {
    padding: 12px 0;
  }
  .header__inner {
    min-height: 48px;
    padding: 6px 12px;
  }
  .header__logo-img {
    max-width: 98px;
  }
  .header__desktop {
    display: none;
  }
  .header__mobile-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}
.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 320px;
  background: var(--color-bg-card, #1e2130);
  border: 1px solid var(--color-border, rgba(255, 255, 255, 0.1));
  border-radius: 12px;
  -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
          box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  z-index: 999;
}
.search-dropdown.is-open {
  display: block;
  -webkit-animation: dropdownFadeIn 0.15s ease;
          animation: dropdownFadeIn 0.15s ease;
}
.search-dropdown__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  -webkit-transition: background 0.15s ease;
  transition: background 0.15s ease;
}
.search-dropdown__item:hover, .search-dropdown__item:focus-visible {
  background: var(--color-hover, rgba(59, 130, 246, 0.1));
  outline: none;
}
.search-dropdown__item + .search-dropdown__item {
  border-top: 1px solid var(--color-border, rgba(255, 255, 255, 0.07));
}
.search-dropdown__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.search-dropdown__img--placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-placeholder, rgba(255, 255, 255, 0.06));
  color: var(--color-text-muted, #8892a4);
}
.search-dropdown__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  overflow: hidden;
}
.search-dropdown__type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted, #8892a4);
}
.search-dropdown__type--program {
  color: #f59e0b;
}
.search-dropdown__type--post {
  color: #3b82f6;
}
.search-dropdown__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text, #fff);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-dropdown__title mark {
  background: none;
  color: #3b82f6;
  font-weight: 700;
}
.search-dropdown__loading, .search-dropdown__empty {
  padding: 16px 14px;
  font-size: 13px;
  color: var(--color-text-muted, #8892a4);
  text-align: center;
}
.search-dropdown__loading::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-top-color: #3b82f6;
  border-radius: 50%;
  -webkit-animation: spin 0.6s linear infinite;
          animation: spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}
.search-dropdown__view-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  border-top: 1px solid var(--color-border, rgba(255, 255, 255, 0.1));
  -webkit-transition: background 0.15s ease, gap 0.15s ease;
  transition: background 0.15s ease, gap 0.15s ease;
}
.search-dropdown__view-all:hover {
  background: rgba(59, 130, 246, 0.08);
  gap: 10px;
}

@-webkit-keyframes dropdownFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (max-width: 680px) {
  .theme-toggle__track {
    width: 56px;
    height: 24px;
  }
  .theme-toggle__thumb {
    top: 1.5px;
    left: 3px;
    width: 20px;
    height: 20px;
  }
  .theme-toggle__icon {
    line-height: 0;
  }
  body.theme-light .theme-toggle__thumb {
    -webkit-transform: translateX(28px);
        -ms-transform: translateX(28px);
            transform: translateX(28px);
  }
}
.footer {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
}
.footer__inner {
  max-width: 1172px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
  background: #1F3E64;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  width: 100%;
}
@media (max-width: 767px) {
  .footer__inner {
    -ms-flex-wrap: unset;
        flex-wrap: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 20px;
  }
}
@media (max-width: 449px) {
  .footer__inner {
    -ms-flex-wrap: unset;
        flex-wrap: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 20px;
  }
}
.footer__logo {
  z-index: 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  margin-right: 15px;
}
@media (max-width: 449px) {
  .footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.footer__logo-inn {
  width: 130px;
  display: block;
  z-index: 7;
}
.footer__logo-inn img {
  display: block;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1025px) {
  .footer__logo-inn {
    width: 131px;
  }
}
@media (max-width: 649px) {
  .footer__logo-inn {
    width: 99px;
  }
}
.footer .desc {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1025px) {
  .footer .desc {
    width: 308px;
    bottom: -29px;
  }
}
@media (max-width: 649px) {
  .footer .desc {
    width: 196px;
    bottom: -55px;
  }
}
@media (max-width: 449px) {
  .footer .desc {
    width: 290px;
    bottom: -14px;
  }
}
.footer__about {
  position: relative;
  width: auto;
}
@media (max-width: 449px) {
  .footer__about {
    width: 100%;
    margin-bottom: 25px;
  }
}
.footer__soc-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 7;
}
@media (max-width: 1025px) {
  .footer__soc-items svg {
    width: 40px;
  }
}
@media (max-width: 649px) {
  .footer__soc-items svg {
    width: 34px;
  }
}
.footer__soc-item {
  margin-left: 20px;
}
@media (max-width: 649px) {
  .footer__soc-item {
    margin-left: 12px;
  }
  .footer__soc-item:first-child {
    margin-left: unset;
  }
}

.footer__top-ins {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 100px 0;
  top: -42px;
}

.footer {
  position: relative;
  /*
   * GURU BOX
   */
  /*
   * NEWSLETTER
   */
  /*
   * mobile
   */
}
.footer__top-insight {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 3;
}
.footer__guru-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__guru-avatar {
  width: 268px;
  min-width: 268px;
  height: 268px;
  border-radius: 50%;
  overflow: hidden;
  background: #214a7a;
  -webkit-animation: guruFloat 4s ease-in-out infinite;
          animation: guruFloat 4s ease-in-out infinite;
  will-change: transform;
}
.footer__guru-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@-webkit-keyframes guruFloat {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-14px);
            transform: translateY(-14px);
  }
  75% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes guruFloat {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-14px);
            transform: translateY(-14px);
  }
  75% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.footer__guru-speech {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  width: 100%;
  max-width: 844px;
  min-height: 268px;
  padding: 58px 0px 0 162px;
  background: #1F3E64;
  /*
   * exact Figma speech bubble shape
   */
  -webkit-mask-image: url(../images/speech-shape.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-image: url(../images/speech-shape.svg);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-position: center;
  /*
   * remove old fake bubble corner
   */
  border-radius: 0;
}
.footer__guru-speech::before {
  display: none;
}
.footer__guru-speech h3 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__guru-speech p {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  max-width: 520px;
  margin: 0;
}
@media (max-width: 767px) {
  .footer__guru-speech {
    min-height: auto;
    padding: 24px;
    -webkit-mask: none;
    mask: none;
    border-radius: 24px;
  }
  .footer__guru-speech h3 {
    font-size: 18px;
  }
  .footer__guru-speech p {
    font-size: 14px;
  }
}
.footer__newsletter {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}
.footer__newsletter h4 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer__newsletter p {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 16px;
  text-transform: uppercase;
}
.footer__newsletter span {
  display: block;
  margin-top: 12px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}
.footer__subscribe-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 843px;
  height: 58px;
  border: 2px solid #0052FF;
  border-radius: 999px;
  overflow: visible;
  background: transparent;
  position: relative;
}
.footer__subscribe-form input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 24px !important;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px !important;
  font-weight: 500 !important;
  outline: none;
  border: none !important;
  margin: 0;
  margin-top: 0 !important;
}
.footer__subscribe-form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}
.footer__subscribe-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}
.footer__subscribe-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}
.footer__subscribe-form input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}
.footer__subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}
.footer__subscribe-form button {
  width: 294px;
  min-width: 280px;
  height: 63px;
  margin-right: 3px;
  border: 0;
  border-radius: 999px;
  background: #0052FF;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  left: -52px;
  position: relative;
}
.footer__subscribe-form button:hover {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media (max-width: 768px) {
  .footer .footer__subscribe-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    border: 0;
    gap: 12px;
    border-radius: 0;
  }
  .footer .footer__subscribe-form input {
    width: 100%;
    height: 54px;
    border: 2px solid #0052FF;
    border-radius: 999px;
    background: #000;
  }
  .footer .footer__subscribe-form button {
    width: 100%;
    height: 54px;
    margin-right: 0;
    bottom: -52px !important;
    left: unset !important;
  }
}

/*
 * LIGHT MODE
 */
.theme-light .footer {
  background: #9CD1FD;
}
.theme-light .footer:before {
  content: "";
  position: absolute;
  top: -59px;
  background: #9CD1FD;
  width: 100%;
  height: 80px;
}
.theme-light .footer__inner {
  background: #ffffff;
}
.theme-light .footer__top-ins {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background: #9CD1FD;
  padding: 60px 0 0;
  top: -42px;
  position: relative;
  z-index: 0;
}
.theme-light .footer__guru-avatar {
  background: #FFFFFF;
}
.theme-light .footer__guru-speech {
  background: #ffffff;
}
.theme-light .footer__guru-speech::before {
  background: #ffffff;
}
.theme-light .footer__guru-speech h3,
.theme-light .footer__guru-speech p {
  color: #3F4043;
}
.theme-light .footer__newsletter h4,
.theme-light .footer__newsletter p,
.theme-light .footer__newsletter span {
  color: #3F4043;
}
.theme-light .footer__subscribe-form {
  background: #fff;
}
.theme-light .footer__subscribe-form input {
  color: #3F4043;
}
.theme-light .footer__subscribe-form input::-webkit-input-placeholder {
  color: rgba(63, 64, 67, 0.6);
}
.theme-light .footer__subscribe-form input::-moz-placeholder {
  color: rgba(63, 64, 67, 0.6);
}
.theme-light .footer__subscribe-form input:-ms-input-placeholder {
  color: rgba(63, 64, 67, 0.6);
}
.theme-light .footer__subscribe-form input::-ms-input-placeholder {
  color: rgba(63, 64, 67, 0.6);
}
.theme-light .footer__subscribe-form input::placeholder {
  color: rgba(63, 64, 67, 0.6);
}

/*
 * MOBILE
 */
@media (max-width: 768px) {
  .footer .footer__subscribe-form button {
    left: 0;
    position: relative;
    bottom: -64px;
  }
  .footer .footer__top-ins {
    padding: 0px 0 0;
  }
  .footer__top-insight {
    margin-bottom: 50px;
  }
  .footer__guru-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer__guru-avatar {
    width: 193px;
    min-width: 193px;
    height: 193px;
  }
  .footer__guru-speech {
    border-radius: 24px;
    padding: 24px 20px;
  }
  .footer__guru-speech::before {
    display: none;
  }
  .footer__guru-speech h3 {
    font-size: 18px;
  }
  .footer__guru-speech p {
    font-size: 14px;
  }
  .footer__guru-speech p {
    position: relative;
    min-height: 120px;
  }
  .footer__guru-speech p::after {
    content: "|";
    display: inline-block;
    margin-left: 2px;
    -webkit-animation: blinkCursor 0.8s infinite;
            animation: blinkCursor 0.8s infinite;
    color: #ffffff;
    font-weight: 700;
  }
  @-webkit-keyframes blinkCursor {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes blinkCursor {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .footer__newsletter {
    text-align: center;
  }
  .footer__newsletter h4 {
    font-size: 18px;
  }
  .footer__newsletter span {
    margin-top: 80px;
  }
  .footer__subscribe-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: transparent;
    border: solid 2px rgb(0, 82, 255);
    gap: 12px;
  }
  .footer__subscribe-form input {
    width: 100%;
    border: 2px solid #0052ff;
    border-radius: 999px;
    background: #000;
  }
  .footer__subscribe-form button {
    width: 100%;
    min-width: unset;
    bottom: -40px;
    left: unset;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .footer button {
    left: 0;
    position: relative;
    padding: 20px;
    bottom: -40px;
  }
  .footer__newsletter h4 {
    font-size: 20px;
    text-align: left;
  }
  .footer__newsletter p {
    text-align: left;
  }
  .footer__top-ins {
    padding: 0px 0 0;
  }
  input {
    position: relative;
    top: 18px !important;
  }
}
.single.theme-light footer {
  background: #edf1f4;
}

.single.theme-light .footer::before {
  content: "";
  position: absolute;
  top: -59px;
  background: #edf1f4;
  width: 100%;
  height: 80px;
}

/**
* Swiper 11.1.4
* Most modern mobile touch slider and framework with hardware accelerated transitions
* https://swiperjs.com
*
* Copyright 2014-2024 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: May 30, 2024
*/
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::-moz-selection {
  color: #FFF;
  background-color: #FF8717;
}
*::selection {
  color: #FFF;
  background-color: #FF8717;
}

html {
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  html {
    font-size: 14px;
  }
}
@media (min-width: 1860px) {
  html {
    font-size: 0.85vw;
  }
}
html * {
  font-weight: 400;
  line-height: 90%;
  color: #FFFFFF;
}

ul {
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong,
b,
em,
li {
  cursor: default;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a span,
button span {
  cursor: pointer;
}

hr {
  width: 100%;
  height: 1px;
  background-color: #FF8717;
  border: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

mark {
  background-color: transparent;
}

.block-title, .wysiwyg-styles > h1 {
  font-size: calc(70rem / 16 + 130 * (100vw - 390px) / 1130);
  color: #FFFFFF;
}
@media (min-width: 1520) {
  .block-title, .wysiwyg-styles > h1 {
    font-size: calc(200 / 16 + rem);
  }
}
@media (max-width: 1279px) {
  .block-title, .wysiwyg-styles > h1 {
    word-break: break-all;
  }
}
.block-title__line {
  display: block;
  overflow: hidden;
}
.block-title__line-inner {
  display: block;
}

.block-title-s, .wysiwyg-styles > h2 {
  font-size: calc(35rem / 16 + 10 * (100vw - 390px) / 1050);
}
@media (min-width: 1440px) {
  .block-title-s, .wysiwyg-styles > h2 {
    font-size: calc(45 / 16 + rem);
  }
}

.block-title-m {
  font-size: calc(46rem / 16 + 10 * (100vw - 390px) / 1050);
}
@media (min-width: 1440px) {
  .block-title-m {
    font-size: calc(56 / 16 + rem);
  }
}
.block-title-m mark {
  color: #FF8717;
}

.block-subtitle, .wysiwyg-styles > h3 {
  font-size: calc(26rem / 16 + 10 * (100vw - 390px) / 1050);
}
@media (min-width: 1440px) {
  .block-subtitle, .wysiwyg-styles > h3 {
    font-size: calc(36 / 16 + rem);
  }
}

.body-font, .wysiwyg-styles > h6, .block-description, .body-font-inv {
  font-size: calc(14rem / 16 + 0 * (100vw - 390px) / 1050);
  font-weight: normal;
}
@media (min-width: 1440px) {
  .body-font, .wysiwyg-styles > h6, .block-description, .body-font-inv {
    font-size: calc(14 / 16 + rem);
  }
}

.body-font-m, .wysiwyg-styles > h5, .wysiwyg-styles > h4 {
  font-size: calc(16rem / 16 + 0 * (100vw - 390px) / 1050);
}
@media (min-width: 1440px) {
  .body-font-m, .wysiwyg-styles > h5, .wysiwyg-styles > h4 {
    font-size: calc(16 / 16 + rem);
  }
}

.body-font-l {
  font-size: calc(16rem / 16 + 9 * (100vw - 390px) / 1050);
}
@media (min-width: 1440px) {
  .body-font-l {
    font-size: calc(25 / 16 + rem);
  }
}
.body-font-l mark {
  color: #FF8717;
}

.body-font-inv {
  color: #ffffff;
}

.block-description {
  text-align: center;
  width: 37.857em;
  margin-bottom: 2.5em;
}
@media (max-width: 767px) {
  .block-description {
    width: 22.857em;
  }
}
@media (max-width: 1023px) {
  .block-description {
    margin: 1.571em auto 1.643em;
  }
}

.wysiwyg-styles > h1, .wysiwyg-styles > h2, .wysiwyg-styles > h3, .wysiwyg-styles > h4, .wysiwyg-styles > h5, .wysiwyg-styles > h6 {
  margin-bottom: 0.8em;
}
.wysiwyg-styles > p,
.wysiwyg-styles li {
  font-size: calc(12rem / 16 + 6 * (100vw - 390px) / 1050);
  line-height: 140%;
  font-weight: 400;
}
@media (min-width: 1440px) {
  .wysiwyg-styles > p,
  .wysiwyg-styles li {
    font-size: calc(18 / 16 + rem);
  }
}
.wysiwyg-styles > p a,
.wysiwyg-styles li a {
  color: #FF8717;
  -webkit-text-decoration: underline 1px solid;
          text-decoration: underline 1px solid;
  text-decoration-color: rgba(255, 135, 23, 0);
  text-underline-offset: 2px;
  -webkit-transition: text-decoration-color 0.5s ease;
  transition: text-decoration-color 0.5s ease;
}
@media (hover: hover) {
  .wysiwyg-styles > p a:hover,
  .wysiwyg-styles li a:hover {
    text-decoration-color: #ff8717;
  }
}
.wysiwyg-styles > p b,
.wysiwyg-styles > p strong,
.wysiwyg-styles li b,
.wysiwyg-styles li strong {
  font-weight: 700;
}
.wysiwyg-styles > p em,
.wysiwyg-styles li em {
  font-style: italic;
}
.wysiwyg-styles > p img,
.wysiwyg-styles li img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}
.wysiwyg-styles > p img.alignnone, .wysiwyg-styles > p img.alignleft,
.wysiwyg-styles li img.alignnone,
.wysiwyg-styles li img.alignleft {
  margin: 2rem auto 2rem 0;
}
.wysiwyg-styles > p img.alignright,
.wysiwyg-styles li img.alignright {
  margin: 2rem 0 2rem auto;
}
.wysiwyg-styles > p, .wysiwyg-styles > ul, .wysiwyg-styles > ol {
  font-weight: 400;
  font-size: calc(12rem / 16 + 6 * (100vw - 390px) / 1050);
}
@media (min-width: 1440px) {
  .wysiwyg-styles > p, .wysiwyg-styles > ul, .wysiwyg-styles > ol {
    font-size: calc(18 / 16 + rem);
  }
}
.wysiwyg-styles > p:not(:last-child), .wysiwyg-styles > ul:not(:last-child), .wysiwyg-styles > ol:not(:last-child) {
  margin-bottom: 1.2em;
}
.wysiwyg-styles > ul li {
  position: relative;
  padding-left: 1em;
}
.wysiwyg-styles > ul li:before {
  position: absolute;
  content: "";
  top: 0.5em;
  left: 0;
  width: 0.35em;
  height: 0.35em;
  background-color: #ffffff;
  border-radius: 50%;
}
.wysiwyg-styles > ul li:not(:last-child) {
  margin-bottom: 1em;
}
.wysiwyg-styles > ol li {
  position: relative;
  counter-increment: li;
  padding-left: 1.6em;
}
.wysiwyg-styles > ol li:before {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  content: counter(li) ".";
}
.wysiwyg-styles > ol li:not(:last-child) {
  margin-bottom: 0.8em;
}
.wysiwyg-styles p strong {
  color: #ffffff;
}

.btn-clear, .wpcf7-submit, .btn-border, .btn-primary {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.btn-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(20rem / 16 + 0 * (100vw - 390px) / 1050);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #ffffff;
  min-width: 7.917em;
  min-height: 2.25em;
  background-color: #FF8717;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 16px 32px;
  -webkit-transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}
@media (min-width: 1440px) {
  .btn-primary {
    font-size: calc(20 / 16 + rem);
  }
}
@media (max-width: 1023px) {
  .btn-primary {
    min-height: 2.417em;
  }
}
@media (hover: hover) {
  .btn-primary:hover {
    background: linear-gradient(191.9deg, #0D0D0F 5.04%, #16151D 95.65%);
    color: #FF6A00;
    border: 2px solid #FF6A00;
  }
}

.btn-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(20rem / 16 + 0 * (100vw - 390px) / 1050);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #FF6A00;
  min-width: 7.917em;
  min-height: 2.25em;
  background-color: transparent;
  border: 2px solid #FF6A00;
  border-radius: 4px;
  padding: 16px 32px;
  -webkit-transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}
@media (min-width: 1440px) {
  .btn-border {
    font-size: calc(20 / 16 + rem);
  }
}
@media (hover: hover) {
  .btn-border:hover {
    background: #FF6A00;
    color: #ffffff;
    border: 2px solid transparent;
  }
}

.btn-link {
  font-size: calc(20rem / 16 + 0 * (100vw - 390px) / 1050);
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 22px */
  text-decoration-line: underline;
  color: #FF8717;
}
@media (min-width: 1440px) {
  .btn-link {
    font-size: calc(20 / 16 + rem);
  }
}

form {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
form label.hidden {
  position: absolute;
  width: 0;
  height: 0;
  font-size: 0;
  opacity: 0;
  pointer-events: none;
}

select,
textarea,
input[type=text],
input[type=url],
input[type=number],
input[type=password],
input[type=date],
input[type=email],
input[type=tel] {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: calc(14rem / 16 + 0 * (100vw - 390px) / 1050);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #000;
  text-transform: none;
  background-color: transparent;
  border: 1px solid #dfe7fe;
  border-width: 1px 1px 1px 1px;
  border-radius: 4px;
  margin-top: 20px;
  -webkit-transition: border-color 0.5s ease;
  transition: border-color 0.5s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
}
@media (min-width: 1440px) {
  select,
  textarea,
  input[type=text],
  input[type=url],
  input[type=number],
  input[type=password],
  input[type=date],
  input[type=email],
  input[type=tel] {
    font-size: calc(14 / 16 + rem);
  }
}
select:active, select:focus, select:focus-visible,
textarea:active,
textarea:focus,
textarea:focus-visible,
input[type=text]:active,
input[type=text]:focus,
input[type=text]:focus-visible,
input[type=url]:active,
input[type=url]:focus,
input[type=url]:focus-visible,
input[type=number]:active,
input[type=number]:focus,
input[type=number]:focus-visible,
input[type=password]:active,
input[type=password]:focus,
input[type=password]:focus-visible,
input[type=date]:active,
input[type=date]:focus,
input[type=date]:focus-visible,
input[type=email]:active,
input[type=email]:focus,
input[type=email]:focus-visible,
input[type=tel]:active,
input[type=tel]:focus,
input[type=tel]:focus-visible {
  border-bottom: 1px solid #FF8717;
  -webkit-transition: border-color 0.5s ease;
  transition: border-color 0.5s ease;
}
select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder {
  font-size: inherit;
  color: grey;
  opacity: 1;
}
select::-moz-placeholder, textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder {
  font-size: inherit;
  color: grey;
  opacity: 1;
}
select:-ms-input-placeholder, textarea:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder {
  font-size: inherit;
  color: grey;
  opacity: 1;
}
select::-ms-input-placeholder, textarea::-ms-input-placeholder, input[type=text]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder {
  font-size: inherit;
  color: grey;
  opacity: 1;
}
select::placeholder,
textarea::placeholder,
input[type=text]::placeholder,
input[type=url]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  font-size: inherit;
  color: grey;
  opacity: 1;
}
select::-webkit-contacts-auto-fill-button,
textarea::-webkit-contacts-auto-fill-button,
input[type=text]::-webkit-contacts-auto-fill-button,
input[type=url]::-webkit-contacts-auto-fill-button,
input[type=number]::-webkit-contacts-auto-fill-button,
input[type=password]::-webkit-contacts-auto-fill-button,
input[type=date]::-webkit-contacts-auto-fill-button,
input[type=email]::-webkit-contacts-auto-fill-button,
input[type=tel]::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

input[type=text]:-webkit-autofill, input[type=text]:-webkit-autofill:hover, input[type=text]:-webkit-autofill:focus,
input[type=email]:-webkit-autofill,
input[type=email]:-webkit-autofill:hover,
input[type=email]:-webkit-autofill:focus,
input[type=tel]:-webkit-autofill,
input[type=tel]:-webkit-autofill:hover,
input[type=tel]:-webkit-autofill:focus {
  -webkit-text-fill-color: #FFFFFF;
  -webkit-box-shadow: 0 0 0 1000px linear-gradient(191.9deg, #0D0D0F 5.04%, #16151D 95.65%) inset;
  border: none;
  outline: 1px solid linear-gradient(191.9deg, #0D0D0F 5.04%, #16151D 95.65%);
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

textarea {
  resize: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
}
input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  appearance: none;
}
input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: transparent;
}
input[type=range]::-moz-range-track {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
input[type=range]::-ms-track {
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.wpcf7 br {
  display: none;
}
.wpcf7 form .wpcf7-not-valid-tip {
  position: absolute;
  font-size: calc(12rem / 16 + 0 * (100vw - 390px) / 1050);
  color: #FF8717;
  padding-top: 0.5em;
}
@media (min-width: 1440px) {
  .wpcf7 form .wpcf7-not-valid-tip {
    font-size: calc(12 / 16 + rem);
  }
}
.wpcf7 form .wpcf7-spinner {
  display: none;
}
.wpcf7 form .wpcf7-form-control-wrap {
  width: 100%;
}
.wpcf7 form .wpcf7-response-output {
  font-size: calc(12rem / 16 + 2 * (100vw - 390px) / 1050);
  color: #FF8717;
  text-align: center;
  border: 0;
  padding: 0;
  margin: 5rem auto 0;
}
@media (min-width: 1440px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: calc(14 / 16 + rem);
  }
}
.wpcf7 .form__group-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wpcf7 .form__group-inner > p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wpcf7 .form__group-inner input[type=submit] {
  font-size: calc(25rem / 16 + 0 * (100vw - 390px) / 1050);
  text-transform: uppercase;
  z-index: 1;
  -webkit-transition: color 0.55s ease;
  transition: color 0.55s ease;
}
@media (min-width: 1440px) {
  .wpcf7 .form__group-inner input[type=submit] {
    font-size: calc(25 / 16 + rem);
  }
}
.wpcf7 .form__group-inner input[type=submit]:hover, .wpcf7 .form__group-inner input[type=submit]:active {
  color: #FF8717;
}
.wpcf7 .form__group-inner input[type=submit]:hover ~ .form__group-icon, .wpcf7 .form__group-inner input[type=submit]:active ~ .form__group-icon {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.wpcf7 .form__group-icon {
  position: absolute;
  font-size: calc(25rem / 16 + 0 * (100vw - 390px) / 1050);
  width: calc(100% + 0.4em);
  height: calc(100% + 1.8em);
  stroke: #FF8717;
  pointer-events: none;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media (min-width: 1440px) {
  .wpcf7 .form__group-icon {
    font-size: calc(25 / 16 + rem);
  }
}
.wpcf7 .form__group-icon.top {
  -webkit-transform: rotate(16deg);
      -ms-transform: rotate(16deg);
          transform: rotate(16deg);
}
.wpcf7 .form__group-icon.bottom {
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.mc4wp-form .mc4wp-response {
  position: relative;
}
.mc4wp-form .mc4wp-response .mc4wp-error p,
.mc4wp-form .mc4wp-response .mc4wp-success p {
  position: absolute;
  font-size: calc(12rem / 16 + 0 * (100vw - 390px) / 1050);
  padding-top: 0.75em;
}
@media (min-width: 1440px) {
  .mc4wp-form .mc4wp-response .mc4wp-error p,
  .mc4wp-form .mc4wp-response .mc4wp-success p {
    font-size: calc(12 / 16 + rem);
  }
}
.mc4wp-form .mc4wp-response .mc4wp-error p {
  color: #FF8717;
}
.mc4wp-form .mc4wp-response .mc4wp-success p {
  color: #43B100;
}

.nice-select {
  position: relative;
  font-size: calc(25rem / 16 + 0 * (100vw - 390px) / 1050);
  border: solid #FFFFFF;
  border-width: 0 0 1px 0;
  cursor: pointer;
  padding: 0 0 1.28em;
}
@media (min-width: 1440px) {
  .nice-select {
    font-size: calc(25 / 16 + rem);
  }
}
.nice-select.open .current:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.nice-select.open .nice-select-dropdown {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.nice-select .current {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: calc(25rem / 16 + 0 * (100vw - 390px) / 1050);
  line-height: 90%;
  color: rgba(var(--c-font-primary-rgb), 0.35);
  pointer-events: none;
}
@media (min-width: 1440px) {
  .nice-select .current {
    font-size: calc(25 / 16 + rem);
  }
}
.nice-select .current:after {
  position: absolute;
  content: "";
  top: 3px;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  -webkit-mask-image: url(./../images/svg/select-drop.svg);
          mask-image: url(./../images/svg/select-drop.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.nice-select .nice-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, -3px, 0);
          transform: translate3d(0, -3px, 0);
  z-index: 1;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.5s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.nice-select .nice-select-dropdown > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 3.08em;
  font-size: calc(25rem / 16 + 0 * (100vw - 390px) / 1050);
  color: #ffffff;
  cursor: pointer;
  padding: 0.4em 0.6em 0.4em 1.36em;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
@media (min-width: 1440px) {
  .nice-select .nice-select-dropdown > ul > li {
    font-size: calc(25 / 16 + rem);
  }
}
@media (hover: hover) {
  .nice-select .nice-select-dropdown > ul > li:hover {
    background-color: rgba(255, 255, 255, 0.26);
  }
}

.banner-hero__form .wpcf7-form[data-status=sent] .wpcf7-response-output,
.footer__form .wpcf7-form[data-status=sent] .wpcf7-response-output {
  -webkit-animation: hideOutput 0.1s linear 60s forwards;
          animation: hideOutput 0.1s linear 60s forwards;
}
@-webkit-keyframes hideOutput {
  0%, 99% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes hideOutput {
  0%, 99% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.banner-hero__form .wpcf7-form .wpcf7-not-valid-tip,
.footer__form .wpcf7-form .wpcf7-not-valid-tip {
  opacity: 0;
  pointer-events: none;
}
.banner-hero__form .wpcf7-form .wpcf7-response-output,
.footer__form .wpcf7-form .wpcf7-response-output {
  position: absolute;
  bottom: -2.6em;
  left: 0;
  text-align: left;
  font-size: calc(10rem / 16 + 0 * (100vw - 390px) / 1050);
  line-height: 1.1;
  pointer-events: none;
}
@media (min-width: 1440px) {
  .banner-hero__form .wpcf7-form .wpcf7-response-output,
  .footer__form .wpcf7-form .wpcf7-response-output {
    font-size: calc(10 / 16 + rem);
  }
}

.wpcf7-submit {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(20rem / 16 + 0 * (100vw - 390px) / 1050);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #ffffff;
  min-width: 7.917em;
  min-height: 2.25em;
  background-color: #FF8717;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 16px 32px;
  -webkit-transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}
@media (min-width: 1440px) {
  .wpcf7-submit {
    font-size: calc(20 / 16 + rem);
  }
}
@media (max-width: 1023px) {
  .wpcf7-submit {
    min-height: 2.417em;
  }
}
@media (hover: hover) {
  .wpcf7-submit:hover {
    background: linear-gradient(191.9deg, #0D0D0F 5.04%, #16151D 95.65%);
    color: #FF6A00;
    border: 2px solid #FF6A00;
  }
}

.social-media__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-media__item:not(:last-child) {
  margin-right: 1.214em;
}
.social-media__item.facebook {
  margin-right: 0.857em;
}
.social-media__item-link {
  display: block;
}
@media (hover: hover) {
  .social-media__item-link:hover .social-media__item-icon {
    fill: #FF8717;
  }
}
.social-media__item-icon {
  fill: #FFFFFF;
  pointer-events: none;
  width: 1.786em;
  height: 1.786em;
  -webkit-transition: fill 0.5s ease;
  transition: fill 0.5s ease;
}
.social-media__item-icon.behance {
  width: 1.857em;
  height: 1.857em;
}
.social-media__item-icon.facebook {
  width: 1.143em;
  height: 1.643em;
}
.social-media__item-icon.linkedin {
  width: 1.5em;
  height: 1.5em;
}