@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/titillium-web-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/titillium-web-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/titillium-web-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-900: #003b79;
  --blue-800: #004f9f;
  --blue-700: #1b66ad;
  --blue-600: #2f72b2;
  --blue-500: #3f7eb8;
  --sky-100: #edf4fb;
  --gray-100: #f3f5f7;
  --gray-200: #e4e8ee;
  --gray-500: #5d6c7c;
  --ink: #12304f;
  --white: #ffffff;
  --wrap: 1280px;
  --radius-box: 0.25rem;
  --hero-height: 420px;
}

html {
  font-size: 112.5%;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Titillium Web", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--ink);
  background: var(--white);
  line-height: 1.4;
}

a { color: inherit; }

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 999;
}

.menu-state {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.top-header {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.top-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
}

.logos {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.logos img {
  height: 70px;
  width: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #2e5278;
  font-weight: 600;
}

.top-header .top-nav a,
.top-header .top-nav a:visited {
  color: #2e5278 !important;
}

.top-header .top-nav a:hover,
.top-header .top-nav a:focus-visible {
  color: #173a5d;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-select {
  min-width: 84px;
  height: 38px;
  border: 1px solid #9db8d3;
  border-radius: var(--radius-box);
  appearance: none;
  -webkit-appearance: none;
  background-color: #eef4fb;
  background-image:
    linear-gradient(45deg, transparent 50%, #1f527f 50%),
    linear-gradient(135deg, #1f527f 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 16px,
    calc(100% - 10px) 16px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: #173a5d;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 1.65rem 0 0.6rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.lang-select:focus-visible {
  outline: 2px solid #1b66ad;
  outline-offset: 1px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #c9d7e8;
  background: #fff;
  border-radius: var(--radius-box);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #2d4f74;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 32, 63, 0.92);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.mobile-menu-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 1.2rem 1.2rem 2rem;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.mobile-menu-head p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.menu-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-panel li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-panel a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 1rem 0.15rem;
  font-size: 1.12rem;
  font-weight: 600;
}

.mobile-private-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.6rem;
  padding-top: 0.9rem;
}

.mobile-private-link {
  width: fit-content;
  border: 1px solid #ffffff;
  background: #ffffff;
  border-radius: var(--radius-box);
  padding: 0.5rem 0.60rem;
}

.mobile-menu-panel a.mobile-private-link {
  color: #173a5f;
  padding: 0.5rem 0.60rem;
}

#menu-state:checked ~ .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-box);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.btn-small {
  background: var(--blue-700);
  color: #ffffff;
  border-color: var(--blue-700);
  min-width: 156px;
  padding: 0.5rem 1.05rem;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  height: var(--hero-height);
  color: #fff;
  border-top: 1px solid #dce6f3;
  overflow: hidden;
}

.hero-slider {
  height: var(--hero-height);
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.hero-track {
  display: flex;
  width: 100%;
  height: var(--hero-height);
  transition: transform 0.5s ease;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  height: var(--hero-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(94deg, rgba(7, 40, 78, 0.93) 0%, rgba(10, 65, 124, 0.75) 38%, rgba(9, 78, 140, 0.25) 67%, rgba(8, 98, 126, 0.35) 100%),
    var(--hero-bg-image, url("hero-placeholder.svg")) center/cover no-repeat;
  filter: hue-rotate(var(--hero-tone, 0deg));
  transition: filter 0.7s ease, opacity 0.7s ease;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: var(--hero-height);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2.1vw, 2.6rem);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn-light {
  background: #fff;
  color: #24486c;
  padding: 0.55rem 0.9rem;
  border-color: #d4dfeb;
  font-size: 0.74rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(7, 32, 63, 0.45);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow--prev {
  left: 1rem;
}

.hero-arrow--next {
  right: 1rem;
}

.services {
  padding: 2.8rem 0 1.9rem;
}

.services h2,
.assistance h2 {
  color: var(--blue-700);
  text-align: center;
  margin: 0 0 1.1rem;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-col {
  background: #fff;
}

.service-col h3 {
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--blue-700);
  color: #fff;
  font-size: 1.2rem;
  border-radius: var(--radius-box);
}

.service-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-col li {
  margin-top: 0.65rem;
  min-height: 104px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-box);
  padding: 0;
  font-size: 1.125rem;
}

.service-col li a {
  min-height: 104px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  gap: 0.9rem;
  text-decoration: none;
}

.service-copy {
  display: block;
}

.service-item-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #31465f;
  margin-bottom: 0.35rem;
}

.service-item-desc {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  color: #607489;
}

.service-col li .arrow {
  color: #6f8298;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 700;
  margin-top: 0.18rem;
}

.assistance {
  padding: 1.5rem 0 2.4rem;
  text-align: center;
}

.assistance img {
  width: 100%;
  display: block;
  margin: 0 auto 1.15rem;
  border-radius: var(--radius-box);
}

.assistance p {
  margin: -0.25rem 0 0.8rem;
  color: #62768f;
  font-size: 0.77rem;
}

.btn-primary {
  background: var(--blue-700);
  color: #fff;
  padding: 0.42rem 0.82rem;
  font-size: 0.68rem;
}

.more {
  background: var(--blue-500);
  color: #fff;
  padding: 1.95rem 0 2.2rem;
}

.more__inner {
  display: grid;
  grid-template-columns: 1.1fr 2.4fr;
  gap: 1.6rem;
  align-items: start;
}

.more__intro h2 {
  margin: 0 0 0.55rem;
  font-size: 2.25rem;
  line-height: 1.15;
}

.more__intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 30ch;
  opacity: 0.95;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  color: #1f3f63;
  border-radius: var(--radius-box);
  min-height: 170px;
  padding: 0.95rem 1rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.eyebrow {
  margin: 0 0 0.72rem;
  color: #4f6f92;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #183f69;
}

.card-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgb(26, 26, 26);
}

.site-footer {
  background: var(--blue-900);
  color: #d5e5f7;
  font-size: 0.8rem;
}

.footer-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: inherit;
}

.footer-legal {
  border-top: 1px solid rgba(213, 229, 247, 0.2);
  padding: 0.45rem 0 0.65rem;
  font-size: 0.74rem;
  color: #c8def3;
}

.footer-legal p {
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  :root {
    --hero-height: 360px;
  }

  .top-header__inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    text-align: left;
    padding: 0.45rem 0;
    gap: 0.55rem;
  }

  .logos {
    justify-content: flex-start;
  }

  .logos img {
    height: 58px;
  }

  .header-right {
    width: auto;
    justify-content: flex-end;
    gap: 0.45rem;
  }

  .top-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .private-area-btn {
    display: none;
  }

  .lang-switcher {
    display: inline-flex;
    align-items: center;
  }

  .lang-select {
    min-width: 60px;
    height: 34px;
    font-size: 0.86rem;
    padding: 0 0.35rem;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .menu-toggle span {
    width: 17px;
  }

  .hero-arrow {
    display: none;
  }

  .hero__content {
    align-items: center;
    text-align: center;
  }

  .services-grid,
  .more__inner,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .more__intro p {
    max-width: 100%;
  }

  .card {
    min-height: 145px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 0;
  }
}

.top-nav a.is-active {
  color: #173a5d !important;
  background: #dbe8f4;
  text-decoration: none;
  padding: 0.15rem 0.35rem;
  border-radius: var(--radius-box);
}

.content-page {
  padding: 2.5rem 0 3rem;
}

.about-hero {
  margin-bottom: 2rem;
}

.about-hero h1 {
  margin: 0 0 0.5rem;
  color: var(--blue-700);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.about-hero p {
  margin: 0 0 1rem;
  color: #36516b;
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 75ch;
}

.about-hero img {
  width: 100%;
  border-radius: var(--radius-box);
  display: block;
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.3rem;
  align-items: start;
  margin-top: 1.4rem;
}

.about-block__image img {
  width: 100%;
  display: block;
  border-radius: var(--radius-box);
}

.about-block__content h2 {
  margin: 0 0 0.7rem;
  color: var(--blue-700);
  font-size: 1.6rem;
}

.about-block__content p {
  margin: 0 0 0.95rem;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .content-page {
    padding: 1.7rem 0 2.2rem;
  }

  .about-block {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
}

.article-page {
  padding: 2.4rem 0 3rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.article-main h1 {
  margin: 0.25rem 0 0.4rem;
  color: var(--blue-700);
  font-size: clamp(2rem, 2.7vw, 2.8rem);
  line-height: 1.15;
}

.article-kicker {
  margin: 0;
  color: #4d6a84;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-meta {
  margin: 0 0 0.9rem;
  color: #4f6a81;
  font-size: 0.95rem;
}

.article-hero {
  width: 100%;
  border-radius: var(--radius-box);
  display: block;
  margin-bottom: 1rem;
}

.article-main p {
  margin: 0 0 1rem;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.68;
}

.article-main .article-lead {
  font-size: 1.14rem;
  color: #2d4a65;
}

.article-sidebar h2 {
  margin: 0 0 0.8rem;
  color: var(--blue-700);
  font-size: 1.35rem;
}

.article-sidebar__cards {
  display: grid;
  gap: 0.75rem;
}

.sidebar-card {
  background: #f8fafc;
  border: 1px solid #dbe4ef;
  border-radius: var(--radius-box);
  padding: 0.8rem 0.85rem;
}

.sidebar-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.sidebar-card h3 a {
  text-decoration: none;
  color: #ffffff;
}

.sidebar-card p {
  margin: 0;
  color: #1a1a1a;
  font-size: 0.92rem;
  line-height: 1.4;
}

.not-found-page {
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0 2.4rem;
}

.not-found-wrap {
  max-width: 760px;
}

.not-found-code {
  margin: 0;
  color: var(--blue-700);
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.not-found-wrap h1 {
  margin: 0.45rem 0 0.7rem;
  color: #18456f;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.not-found-wrap p {
  margin: 0 auto;
  max-width: 60ch;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.55;
}

.not-found-actions {
  margin-top: 1.2rem;
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.not-found-link {
  color: #173a5f;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}

.contacts-page {
  padding: 2.4rem 0 3rem;
}

.contacts-head h1 {
  margin: 0 0 0.5rem;
  color: var(--blue-700);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.contacts-head p {
  margin: 0 0 1rem;
  color: #2a4b66;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 80ch;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.25rem;
}

.contacts-company img {
  width: 100%;
  display: block;
  border-radius: var(--radius-box);
  margin-bottom: 0.8rem;
}

.contacts-company h2,
.contacts-form-box h2 {
  margin: 0 0 0.65rem;
  color: var(--blue-700);
  font-size: 1.5rem;
}

.contacts-company p {
  margin: 0 0 0.5rem;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.5;
}

.contacts-form-box {
  background: #f7faff;
  border: 1px solid #d6e1ef;
  border-radius: var(--radius-box);
  padding: 0.95rem;
}

.contacts-form {
  display: grid;
  gap: 0.8rem;
}

.contacts-form label,
.contacts-form fieldset {
  display: grid;
  gap: 0.35rem;
}

.contacts-form span,
.contacts-form legend {
  font-size: 0.92rem;
  font-weight: 600;
  color: #274a6a;
}

.contacts-form input,
.contacts-form select,
.contacts-form textarea {
  width: 100%;
  border: 1px solid #c6d6e7;
  border-radius: var(--radius-box);
  padding: 0.54rem 0.62rem;
  font: inherit;
  color: #1a1a1a;
  background: #fff;
}

.contacts-form fieldset {
  border: 1px solid #d7e3ef;
  border-radius: var(--radius-box);
  padding: 0.55rem 0.62rem;
}

.contacts-form .choice {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.contacts-form .choice input {
  width: auto;
}

.faq-page {
  padding: 2.4rem 0 3rem;
}

.faq-head h1 {
  margin: 0 0 0.5rem;
  color: var(--blue-700);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.faq-head p {
  margin: 0 0 1rem;
  color: #2a4b66;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 80ch;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem 1rem;
}

.faq-item {
  border: 1px solid #d7e2ef;
  border-radius: var(--radius-box);
  background: #f8fbff;
  overflow: hidden;
  margin: 0.1rem 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.78rem 0.9rem 0.72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: #204668;
}

.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid #b9ccdf;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #40607c;
}

.faq-icon::before {
  width: 11px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 11px;
}

.faq-item[open] .faq-icon::after {
  display: none;
}

.faq-answer {
  padding: 0 0.9rem 0.85rem;
}

.faq-answer p {
  margin: 0;
  color: #1a1a1a;
  font-size: 0.97rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .contacts-layout {
    grid-template-columns: 1fr;
  }
}

.a11y-fab {
  position: fixed;
  right: 0.85rem;
  bottom: 1rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  border: 2px solid #003b79;
  border-radius: 999px;
  background: #005cab;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 37, 75, 0.35);
  cursor: pointer;
}

.a11y-fab svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.a11y-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(110%, -50%);
  width: min(92vw, 330px);
  max-height: 88vh;
  overflow: auto;
  z-index: 91;
  border: 1px solid #d5e2f0;
  border-right: 0;
  border-radius: 0.5rem 0 0 0.5rem;
  background: #ffffff;
  box-shadow: -14px 20px 36px rgba(18, 48, 79, 0.2);
  padding: 0.9rem 0.85rem;
  transition: transform 0.28s ease;
}

.a11y-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.a11y-panel h2 {
  margin: 0;
  color: var(--blue-700);
  font-size: 1.25rem;
}

.a11y-close {
  border: 0;
  background: transparent;
  color: #355572;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.a11y-panel p {
  margin: 0.35rem 0 0.8rem;
  color: #294964;
  font-size: 0.92rem;
}

.a11y-options {
  display: grid;
  gap: 0.45rem;
}

.a11y-options button,
.a11y-reset {
  width: 100%;
  text-align: left;
  border: 1px solid #d6e2ef;
  border-radius: var(--radius-box);
  background: #f8fbff;
  color: #18476f;
  padding: 0.56rem 0.62rem;
  font: inherit;
  cursor: pointer;
}

.a11y-options button.is-on {
  border-color: #1b66ad;
  background: #eaf3fd;
  color: #ffffff;
}

.a11y-reset {
  margin-top: 0.7rem;
  background: #fff;
}

body.a11y-panel-open .a11y-panel {
  transform: translate(0, -50%);
}

html.a11y-large-text {
  font-size: 125%;
}

body.a11y-readable-text {
  line-height: 1.7;
  letter-spacing: 0.01em;
  word-spacing: 0.03em;
}

body.a11y-underline-links a {
  text-decoration: underline !important;
  text-underline-offset: 0.14em;
}

body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

body.a11y-high-contrast {
  background: #000;
  color: #fff;
}

body.a11y-high-contrast .top-header,
body.a11y-high-contrast .service-col li,
body.a11y-high-contrast .card,
body.a11y-high-contrast .contacts-form-box,
body.a11y-high-contrast .faq-item,
body.a11y-high-contrast .sidebar-card,
body.a11y-high-contrast .a11y-panel,
body.a11y-high-contrast .widget,
body.a11y-high-contrast .content-card {
  background: #111 !important;
  color: #fff !important;
  border-color: #fff !important;
}

body.a11y-high-contrast a,
body.a11y-high-contrast .service-item-desc,
body.a11y-high-contrast .card-text,
body.a11y-high-contrast .article-main p,
body.a11y-high-contrast .contacts-company p,
body.a11y-high-contrast .faq-answer p,
body.a11y-high-contrast .entry-meta {
  color: #fff !important;
}

@media (max-width: 900px) {
  .a11y-panel {
    top: auto;
    bottom: 0.7rem;
    transform: translateX(110%);
    border-right: 1px solid #d5e2f0;
    border-radius: 0.5rem;
  }

  body.a11y-panel-open .a11y-panel {
    transform: translateX(0);
  }
}
