@keyframes underLineAnimation {
  0% {
    bottom: -1px;
    left: 50%;
    width: 1vw;
  }
  50% {
    bottom: 0vh;
    left: 50%;
    width: 1vw;
  }
  100% {
    left: 0;
    width: 100vw;
    bottom: 0;
  }
}
.content-limited {
  width: 95%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.btn__icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.45rem;
  flex: 0 0 1em;
  background: currentColor;
  vertical-align: -0.12em;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.link__underline, .footer__links a {
  position: relative;
  padding-bottom: 5px;
  transition: color 0.25s ease;
}
.link__underline::after, .footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  background: rgba(226, 26, 26, 0.72);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s;
}
.link__underline:hover::after, .footer__links a:hover::after, .link__underline:focus-visible::after, .footer__links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn__primary {
  width: fit-content;
  padding: 10px 20px;
  gap: 0.5vw;
  background-color: #E21A1A;
  border-radius: 8px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.16s ease, box-shadow 0.16s ease, outline-color 0.16s ease;
  outline: 2px solid #E21A1A;
  outline-offset: -2px;
  cursor: pointer;
}
.btn__primary {
  font-size: clamp(14px, 1.2vw, 18px);
  font-family: "Montserrat";
  font-weight: 500;
  color: #fff;
}
.btn__primary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.btn__primary:hover {
  background-color: unset;
  color: #1E1E1E;
}
.btn__primary:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: inset 0 3px 8px rgba(30, 30, 30, 0.22);
}
.btn__primary:focus-visible {
  outline-color: #1E1E1E;
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(226, 26, 26, 0.22), 0 8px 18px rgba(30, 30, 30, 0.12);
}

.faq {
  margin-block: 10vh;
}

.faq__inner {
  gap: 5vh;
}
.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.faq__heading {
  gap: 10px;
  text-align: center;
}
.faq__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.faq__heading h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #1E1E1E;
}
.faq__heading p {
  max-width: 68ch;
  line-height: 1.55;
}
.faq__heading p {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.78);
}

.faq__items {
  width: min(100%, 900px);
  margin-inline: auto;
  gap: 12px;
}
.faq__items {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.faq__item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(127, 149, 178, 0.18);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(127, 149, 178, 0.06), transparent 48%), #fff;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.07);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #E21A1A;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.28s ease;
}
.faq__item.active {
  border-color: rgba(226, 26, 26, 0.34);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.1);
}
.faq__item.active::before {
  transform: scaleY(1);
}

.faq__question {
  width: 100%;
  min-height: 72px;
  padding: 18px 22px 18px 26px;
  border: 0;
  background: transparent;
  text-align: left;
  line-height: 1.35;
  cursor: pointer;
  gap: 20px;
}
.faq__question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.faq__question {
  font-size: clamp(16px, 1.6vw, 19px);
  font-family: "League Spartan";
  font-weight: 700;
  color: #1E1E1E;
}
@media screen and (max-width: 600px) {
  .faq__question {
    min-height: 64px;
    padding: 15px 16px 15px 20px;
    gap: 14px;
  }
}

.faq__chevron {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: 0 0 32px;
  background: rgba(226, 26, 26, 0.08);
  transition: background-color 0.25s ease, transform 0.28s ease;
}
.faq__chevron::before {
  content: "";
  position: absolute;
  inset: 9px;
  background: #E21A1A;
  mask: url("../img/ico/chevron-down-solid-full.svg") center/contain no-repeat;
  -webkit-mask: url("../img/ico/chevron-down-solid-full.svg") center/contain no-repeat;
}

.faq__item.active .faq__chevron {
  background: rgba(226, 26, 26, 0.14);
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.22s ease;
}

.faq__item.active .faq__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq__answer-inner {
  overflow: hidden;
}
.faq__answer-inner p {
  max-width: 76ch;
  padding: 0 72px 22px 26px;
  line-height: 1.65;
}
.faq__answer-inner p {
  font-size: clamp(12px, 0.9vw, 14px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.82);
}
@media screen and (max-width: 600px) {
  .faq__answer-inner p {
    padding: 0 20px 18px;
  }
}

.plans {
  margin-top: 10vh;
}
.plans {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}

.plans__inner {
  gap: 5vh;
}
.plans__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.plans__inner h2 {
  line-height: 1.1;
  text-align: center;
}
.plans__inner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #1E1E1E;
}

.plans__slider__wrapper {
  width: min(78%, 980px);
  overflow: visible;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.plans__slider__wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
@media (pointer: fine) {
  .plans__slider__wrapper.slider--has-drag-cursor {
    cursor: grab;
  }
}
.plans__slider__wrapper.slider--has-drag-cursor.slider--dragging {
  cursor: grabbing;
}
@media screen and (max-width: 1100px) {
  .plans__slider__wrapper {
    width: min(100%, 486px);
    padding: 8px 8px 14px;
    overflow: hidden;
  }
}

.plans__slider__wrapper * {
  -webkit-user-drag: none;
}

.plans__slider__line {
  position: relative;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5vw;
}
@media screen and (max-width: 1100px) {
  .plans__slider__line {
    display: flex;
    gap: 0;
  }
  .plans__slider__line {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
  }
}

.plan__item {
  min-height: 500px;
  padding: 25px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 1px 4px 5px rgba(30, 30, 30, 0.42);
  gap: 18px;
}
.plan__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
@media screen and (max-width: 1100px) {
  .plan__item {
    flex: 0 0 100%;
    min-height: 360px;
    margin-right: 24px;
  }
}

.plan__item__labels__box {
  gap: 8px;
  flex-wrap: wrap;
}
.plan__item__labels__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.plan__item__label {
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  border-radius: 10px;
  line-height: 1;
  isolation: isolate;
  transition: color 0.25s ease, box-shadow 0.25s ease;
}
.plan__item__label {
  font-size: clamp(11px, 0.75vw, 12px);
  font-family: "Montserrat";
  font-weight: 700;
  color: rgba(30, 30, 30, 0.85);
}
.plan__item__label::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(127, 149, 178, 0.24);
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(127, 149, 178, 0.13), rgba(255, 255, 255, 0.1)), linear-gradient(180deg, rgba(226, 26, 26, 0.035), transparent);
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.plan__item__label::after {
  bottom: 4px;
  left: 9px;
  width: calc(100% - 18px);
}
.plan__item__label:hover {
  color: #1E1E1E;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}
.plan__item__label:hover::before {
  border-color: rgba(127, 149, 178, 0.38);
}

.plan__item__head {
  gap: 1.5vh;
}
.plan__item__head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.plan__item__head h3 {
  line-height: 1.1;
}
.plan__item__head h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-family: "League Spartan";
  font-weight: 700;
  color: #1E1E1E;
}
.plan__item__head p {
  max-width: 250px;
  line-height: 1.35;
}
.plan__item__head p {
  font-size: clamp(11px, 0.75vw, 12px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #1E1E1E;
}

.plan__item__price__box {
  position: relative;
  width: fit-content;
  min-width: 145px;
  padding: 12px 16px 12px 46px;
  border: 1px solid rgba(30, 30, 30, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 1px 4px 5px rgba(30, 30, 30, 0.16);
  gap: 3px;
}
.plan__item__price__box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.plan__item__price__box::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 22px;
  height: 22px;
  background: #E21A1A;
  mask-image: url("../img/ico/tag-solid-full.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translateY(-50%) rotate(-10deg);
}
.plan__item__price__box strong {
  line-height: 1;
}
.plan__item__price__box strong {
  font-size: clamp(22px, 2.4vw, 30px);
  font-family: "Montserrat";
  font-weight: 800;
  color: #1E1E1E;
}
.plan__item__price__box span {
  line-height: 1.2;
}
.plan__item__price__box span {
  font-size: clamp(11px, 0.75vw, 12px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #1E1E1E;
}

.plan__item__btn {
  width: 100%;
}

.plan__item__features {
  gap: 1vh;
}
.plan__item__features {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.plan__item__features span {
  line-height: 1.2;
}
.plan__item__features span {
  font-size: clamp(14px, 1.6vw, 17px);
  font-family: "League Spartan";
  font-weight: 500;
  color: #1E1E1E;
}

.features__list {
  gap: 7px;
}
.features__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.features__list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.35;
}
.features__list li {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #1E1E1E;
}
.features__list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E21A1A;
}

.plans__slider__navigation {
  display: none;
}
@media screen and (max-width: 1100px) {
  .plans__slider__navigation {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 3.5vh;
  }
}

.plans__slider__dot {
  min-width: 0;
  padding: 9px 12px;
  border: 1px solid rgba(30, 30, 30, 0.16);
  border-radius: 4px;
  background: #fff;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.plans__slider__dot {
  font-size: clamp(11px, 0.75vw, 12px);
  font-family: "Montserrat";
  font-weight: 600;
  color: #1E1E1E;
}
.plans__slider__dot.active__slider__dot {
  border-color: #E21A1A;
  background: #E21A1A;
  color: #fff;
}

.lead-form {
  margin-top: 10vh;
  padding: 5vh 0;
  background: #1E1E1E;
}
.lead-form {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}
.lead-form--section-breaker {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 560px) {
  .lead-form {
    padding: 48px 0;
  }
}

.lead-form__inner {
  gap: 4vw;
}
.lead-form__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width: 980px) {
  .lead-form__inner {
    flex-direction: column;
    gap: 32px;
  }
}

.lead-form__content,
.lead-form__box {
  width: calc(50% - 2vw);
}
@media screen and (max-width: 980px) {
  .lead-form__content,
  .lead-form__box {
    width: 100%;
  }
}

.lead-form__content {
  padding: 28px 0;
  gap: 24px;
}
.lead-form__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.lead-form__content h2 {
  max-width: 520px;
  line-height: 1.1;
}
.lead-form__content h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #fff;
}
.lead-form__content p {
  max-width: 560px;
  line-height: 1.55;
}
.lead-form__content p {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #A8A8A8;
}
@media screen and (max-width: 980px) {
  .lead-form__content {
    padding: 0;
    text-align: center;
    align-items: center;
  }
}

.lead-form__label {
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  line-height: 1;
  text-transform: uppercase;
}
.lead-form__label {
  font-size: clamp(11px, 0.75vw, 12px);
  font-family: "Montserrat";
  font-weight: 600;
  color: #fff;
}

.lead-form__benefits {
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.lead-form__benefits {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.lead-form__benefits li {
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}
.lead-form__benefits li {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 500;
  color: #fff;
}
.lead-form__benefits li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #E21A1A;
}

.lead-form__contacts {
  gap: 10px 18px;
  flex-wrap: wrap;
}
.lead-form__contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 560px) {
  .lead-form__contacts {
    justify-content: center;
  }
}

.lead-form__contact {
  gap: 8px;
  line-height: 1.2;
}
.lead-form__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.lead-form__contact:hover .lead-form__contact-link::after, .lead-form__contact:focus-within .lead-form__contact-link::after {
  opacity: 1;
  transform: scaleX(1);
}
.lead-form__contact--phone .lead-form__contact-icon {
  mask-image: url("../img/ico/phone-volume-solid-full.svg");
}
.lead-form__contact--email .lead-form__contact-icon {
  mask-image: url("../img/ico/envelope-solid-full.svg");
}

.lead-form__contact-link {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 500;
  color: #fff;
}
.lead-form__contact-link:hover {
  color: #fff;
}

.lead-form__contact-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: #E21A1A;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.lead-form__box {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 1px 4px 5px rgba(30, 30, 30, 0.42);
  gap: 18px;
}
.lead-form__box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.lead-form__box .form__message {
  width: auto;
  color: #E21A1A;
  background: rgba(226, 26, 26, 0.08);
}
@media screen and (max-width: 560px) {
  .lead-form__box {
    padding: 22px 18px;
  }
}

.form__honeypot {
  position: absolute;
  left: -9999px;
}

.lead-form__row {
  gap: 8px;
}
.lead-form__row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.lead-form__row label {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 700;
  color: #1E1E1E;
}
.lead-form__row input:not([type=checkbox]):not([type=hidden]), .lead-form__row textarea {
  width: 100%;
  border-color: rgba(30, 30, 30, 0.18);
  background: #fff;
  color: #1E1E1E;
  box-shadow: inset 0 1px 2px rgba(30, 30, 30, 0.08);
  backdrop-filter: none;
}
.lead-form__row input:not([type=checkbox]):not([type=hidden]):hover, .lead-form__row textarea:hover {
  background: rgba(30, 30, 30, 0.03);
}
.lead-form__row input:not([type=checkbox]):not([type=hidden]):focus, .lead-form__row textarea:focus {
  background: #fff;
}

.lead-form__privacy .form__privacy-note {
  color: #1E1E1E;
}

.lead-form__submit {
  width: 100%;
  margin-top: 4px;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/league-spartan-v15-latin_latin-ext-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/league-spartan-v15-latin_latin-ext-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/league-spartan-v15-latin_latin-ext-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/league-spartan-v15-latin_latin-ext-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
}

strong {
  font-weight: 600;
}

body {
  max-width: 100vw;
  overflow: hidden;
  overflow-y: auto;
  background-color: #fff;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  width: auto;
  height: auto;
}

table {
  border: none;
  border-collapse: collapse;
}

div {
  display: block;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: "Montserrat";
}

img {
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

span {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

p {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

ul {
  margin-top: 0;
  margin-left: 0;
  list-style: none;
}

ul,
li {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

nav {
  display: flex;
  justify-content: center;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

input:not([type=checkbox]):not([type=hidden]),
textarea {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 500;
  color: #fff;
}
input:not([type=checkbox]):not([type=hidden]),
textarea {
  border: 1px solid rgba(226, 26, 26, 0.35);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 2px rgba(17, 24, 39, 0.25), 0 0 0 rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(4px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

input:not([type=checkbox]):not([type=hidden]):hover,
textarea:hover {
  background: rgba(255, 255, 255, 0.16);
}

input:not([type=checkbox]):not([type=hidden]):focus,
textarea:focus {
  outline: none;
  border-color: #E21A1A;
  box-shadow: 0 0 0 2px rgba(226, 26, 26, 0.35), inset 0 1px 2px rgba(17, 24, 39, 0.2);
  background: rgba(255, 255, 255, 0.22);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form__message {
  width: calc(100% - 2rem);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 77, 79, 0.45);
  border-radius: 12px;
  background: rgba(255, 77, 79, 0.12);
}
.form__message {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 600;
  color: #ffd7d8;
}

.form__field-label {
  gap: 0.2rem;
  width: 100%;
}
.form__field-label {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 600;
  color: #fff;
}
.form__field-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.required-mark {
  color: #ff4d4f;
  font-weight: 700;
  line-height: 1;
  margin-left: 5px;
}

.form__privacy-consent {
  gap: 0.75rem;
  width: 100%;
  margin-top: 0.75rem;
  cursor: pointer;
}
.form__privacy-consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.form__privacy-consent input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: #E21A1A;
  flex: 0 0 18px;
}

.form__privacy-note {
  width: 100%;
  margin: 0;
  line-height: 1.6;
}
.form__privacy-note {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #A8A8A8;
}
.form__privacy-note a {
  color: #E21A1A;
  font-weight: 700;
  text-decoration: underline;
}

.form__privacy-note--light {
  color: #fff;
}
.form__privacy-note--light a {
  color: #fff;
}

footer {
  width: 100%;
  padding: 7vh 0 3vh;
  background: #1E1E1E;
}

.footer__inner {
  gap: 3vw;
}
.footer__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__brand {
  width: 32%;
  gap: 22px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer__brand p {
  max-width: 360px;
  line-height: 1.55;
}
.footer__brand p {
  font-size: clamp(11px, 0.75vw, 12px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #A8A8A8;
}

.footer__logo {
  display: inline-flex;
  width: auto;
}
.footer__logo:hover .footer__logo__mask {
  border-color: rgba(226, 26, 26, 0.32);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.footer__logo__mask {
  box-sizing: content-box;
  width: 150px;
  min-height: 70px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.footer__logo__mask {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.footer__logo__mask img {
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.footer__socials {
  gap: 10px;
  flex-wrap: wrap;
}
.footer__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.footer__socials a {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}
.footer__socials a:hover {
  border-color: rgba(226, 26, 26, 0.72);
  background: rgba(226, 26, 26, 0.12);
  transform: translateY(-2px);
}
.footer__socials a:hover .footer__social__icon {
  background: #fff;
}
.footer__socials a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.footer__social__icon {
  width: 18px;
  height: 18px;
  background: #fff;
  mask-image: var(--footer-social-icon);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: background 0.25s ease;
}

.footer__column {
  min-width: 150px;
  gap: 16px;
}
.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer__column h2 {
  line-height: 1.1;
}
.footer__column h2 {
  font-size: clamp(16px, 1.6vw, 19px);
  font-family: "League Spartan";
  font-weight: 700;
  color: #fff;
}

.footer__links {
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer__links li {
  line-height: 1.35;
}
.footer__links a, .footer__links span {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 500;
  color: #A8A8A8;
}
.footer__links a:hover {
  color: #fff;
}

.footer__contact {
  max-width: 240px;
}

.footer__bottom {
  gap: 18px;
  margin-top: 5vh;
  padding-top: 2.5vh;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}
.footer__bottom a {
  color: #fff;
  transition: color 0.25s ease;
}
.footer__bottom a:hover {
  color: #E21A1A;
}

@media screen and (max-width: 980px) {
  .footer__inner {
    flex-wrap: wrap;
    gap: 40px 6vw;
  }
  .footer__brand {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  footer {
    padding: 48px 0 28px;
  }
  .footer__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
    align-items: start;
  }
  .footer__column,
  .footer__contact {
    width: 100%;
    max-width: none;
  }
  .footer__menu {
    grid-column: 1;
  }
  .footer__quicklinks {
    grid-column: 2;
  }
  .footer__contact {
    grid-column: 1/-1;
    align-items: center;
    text-align: center;
  }
  .footer__contact .footer__links {
    align-items: center;
  }
  .footer__brand {
    grid-column: 1/-1;
    order: 4;
    align-items: center;
    text-align: center;
  }
  .footer__brand p {
    max-width: 420px;
  }
  .footer__socials {
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 991;
}

body.admin-bar header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar header {
    top: 46px;
  }
}

.header__line {
  width: 100%;
  position: relative;
  left: 0;
  margin: auto;
  overflow: visible;
  padding-right: 30px;
}
@media screen and (max-width: 800px) {
  .header__line {
    padding: unset;
  }
}
.header__line .header__line__content {
  position: relative;
  padding: 0;
  z-index: 992;
}
@media screen and (max-width: 800px) {
  .header__line .header__line__content {
    width: 100%;
    padding: 0.5vh 2.5%;
  }
}
.header__line .header__line__bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .header__line .header__line__bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 1.75rem;
  }
}
.header__line .underline {
  position: absolute;
  height: 1px;
  bottom: -1px;
  left: 50%;
  width: 1vw;
  background-color: #1E1E1E;
  opacity: 0;
  transition: 1s;
  z-index: 991;
}
.header__line .underline.underline__active {
  opacity: 1;
  animation: underLineAnimation 0.6s ease-in-out forwards;
}
.header__line .underline.underline__reverse {
  opacity: 1;
  animation: underLineAnimation 0.6s reverse forwards;
}
.header__line .header__line__bckgr {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-100%);
  transition: 0.3s;
  z-index: 990;
}
@media screen and (max-width: 800px) {
  .header__line .header__line__bckgr {
    transition: 0.1s;
  }
}
@media screen and (max-width: 800px) {
  .header__line .header__form__btn {
    margin-left: auto;
  }
}

.header__logo__wrapper {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.header__logo__wrapper {
  width: 80px;
  height: auto;
  overflow: hidden;
  outline: unset;
  outline-offset: -2px;
}
.header__logo__wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .header__logo__wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .header__logo__wrapper {
    grid-column: 1;
    width: 60px;
  }
}

.burger__menu {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .burger__menu {
    margin-right: 2.5vw;
    position: relative;
    display: flex;
    grid-column: 3;
    justify-self: end;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    width: 34px;
    height: 24px;
    padding: 0;
  }
  .burger__menu span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: 0.3s;
    border-radius: 5px;
  }
  .burger__menu span:nth-child(1) {
    top: 0;
  }
  .burger__menu span:nth-child(2) {
    width: 80%;
    top: 50%;
    transform: translateY(-50%);
  }
  .burger__menu span:nth-child(3) {
    bottom: 0;
  }
  .burger__menu.activeCloser span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .burger__menu.activeCloser span:nth-child(2) {
    opacity: 0;
  }
  .burger__menu.activeCloser span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
}

.menu__box {
  flex: 1 1 auto;
  gap: 5vw;
}
.menu__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .menu__box {
    grid-column: 1/-1;
    grid-row: 2;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    background-color: #fff;
    margin-top: 0.75rem;
    padding: 1rem 1.25rem;
    box-sizing: border-box;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    border-radius: 0 0 8px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
  }
}

.menu__item__box {
  list-style: none;
  gap: 0.6vw;
  flex: 0 1 auto;
  width: auto;
  margin: 0;
  padding: 0;
}
.menu__item__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .menu__item__box {
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    width: 100%;
  }
}
.menu__item__box > li {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.46rem;
  border-radius: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  isolation: isolate;
  transition: color 0.25s ease, box-shadow 0.25s ease;
}
.menu__item__box > li {
  font-size: clamp(12px, 0.9vw, 14px);
  font-family: "Montserrat";
  font-weight: 700;
  color: rgba(30, 30, 30, 0.85);
}
.menu__item__box > li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(127, 149, 178, 0);
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(127, 149, 178, 0.13), rgba(255, 255, 255, 0.1)), linear-gradient(180deg, rgba(226, 26, 26, 0.035), transparent);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.menu__item__box > li:hover, .menu__item__box > li:focus-within {
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}
.menu__item__box > li:hover::before, .menu__item__box > li:focus-within::before {
  border-color: rgba(127, 149, 178, 0.24);
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 800px) {
  .menu__item__box > li {
    width: 100%;
    text-align: right;
    padding: 0.2rem 0;
  }
}
.menu__item__box > li > a {
  position: relative;
  display: inline-block;
  padding: 0.42rem 0.55rem;
  transition: color 0.25s ease;
}
.menu__item__box > li > a::after {
  content: "";
  position: absolute;
  bottom: 0.24rem;
  left: 50%;
  width: calc(100% - 1.4rem);
  height: 1px;
  opacity: 0;
  border-radius: 999px;
  background-color: rgba(226, 26, 26, 0.72);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.menu__item__box > li > a:hover, .menu__item__box > li > a.drawn__underline__active {
  color: #1E1E1E;
}
.menu__item__box > li > a:hover::after, .menu__item__box > li > a.drawn__underline__active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}
@media screen and (max-width: 800px) {
  .menu__item__box > li > a {
    display: block;
    padding: 0.45rem 0.75rem;
    justify-self: flex-start;
  }
}
.menu__item__box > .menu-item-has-children {
  padding-right: 0.72rem;
  gap: 0.24rem;
}
@media screen and (max-width: 800px) {
  .menu__item__box > .menu-item-has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    border-radius: 12px;
    column-gap: 0.65rem;
    cursor: pointer;
  }
}
.menu__item__box .submenu-toggle {
  position: relative;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1E1E1E;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}
.menu__item__box .submenu-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.menu__item__box .submenu-toggle .submenu-toggle__icon {
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  pointer-events: none;
}
.menu__item__box .submenu-toggle .theme-icon {
  width: 0.75rem;
  height: 0.75rem;
  font-size: 0.75rem;
  color: inherit;
  line-height: 1;
  pointer-events: none;
}
.menu__item__box .submenu-toggle:hover, .menu__item__box .submenu-toggle:focus-visible {
  color: #7f95b2;
}
.menu__item__box .submenu-toggle:focus-visible {
  outline: 2px solid #7f95b2;
  outline-offset: 4px;
  border-radius: 4px;
}
@media screen and (max-width: 800px) {
  .menu__item__box .submenu-toggle {
    position: static;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0.2rem;
    border: 1px solid rgba(127, 149, 178, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    transform: none;
  }
}
.menu__item__box .menu-item-has-children:hover > .submenu-toggle, .menu__item__box .menu-item-has-children:focus-within > .submenu-toggle, .menu__item__box .menu-item-has-children.submenu-open > .submenu-toggle {
  color: #7f95b2;
}
.menu__item__box .menu-item-has-children:hover > .submenu-toggle, .menu__item__box .menu-item-has-children:focus-within > .submenu-toggle {
  transform: rotate(180deg);
}
@media screen and (max-width: 800px) {
  .menu__item__box .menu-item-has-children:hover > .submenu-toggle, .menu__item__box .menu-item-has-children:focus-within > .submenu-toggle {
    transform: none;
  }
}
@media screen and (max-width: 800px) {
  .menu__item__box .menu-item-has-children.submenu-open > .submenu-toggle {
    transform: rotate(180deg);
  }
}
.menu__item__box .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  min-width: 240px;
  margin: 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  z-index: 1000;
  gap: 0.45rem;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .menu__item__box .sub-menu {
    position: static;
    grid-column: 1/-1;
    justify-self: stretch;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    padding: 0.45rem 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    border-radius: 8px;
    gap: 0.45rem;
  }
}
.menu__item__box .sub-menu li {
  width: 100%;
  text-transform: none;
  white-space: normal;
}
.menu__item__box .sub-menu li {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 500;
  color: #1E1E1E;
}
@media screen and (max-width: 800px) {
  .menu__item__box .sub-menu li {
    text-align: left;
  }
}
.menu__item__box .sub-menu li > a {
  display: block;
  width: 100%;
  padding: 0.45rem 0.6rem;
  box-sizing: border-box;
  border-radius: 5px;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.menu__item__box .sub-menu li > a::after {
  display: none;
}
.menu__item__box .sub-menu li > a:hover, .menu__item__box .sub-menu li > a:focus-visible {
  color: rgba(226, 26, 26, 0.82);
  background: rgba(226, 26, 26, 0.045);
}
@media screen and (max-width: 800px) {
  .menu__item__box .sub-menu li > a {
    padding: 0.45rem 0.75rem;
  }
}
.menu__item__box .sub-menu .menu-item-has-children {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1rem;
  align-items: center;
  column-gap: 0.35rem;
}
.menu__item__box .sub-menu .menu-item-has-children::after {
  content: "";
  position: absolute;
  top: -0.35rem;
  bottom: -0.35rem;
  left: 100%;
  width: 0.28rem;
}
@media screen and (max-width: 800px) {
  .menu__item__box .sub-menu .menu-item-has-children {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    column-gap: 0.65rem;
  }
  .menu__item__box .sub-menu .menu-item-has-children::after {
    display: none;
  }
}
.menu__item__box .sub-menu .menu-item-has-children > a {
  width: auto;
  min-width: 0;
}
.menu__item__box .sub-menu .menu-item-has-children:hover > a, .menu__item__box .sub-menu .menu-item-has-children:focus-within > a {
  color: rgba(226, 26, 26, 0.82);
  background: rgba(226, 26, 26, 0.045);
}
.menu__item__box .sub-menu .menu-item-has-children > .submenu-toggle {
  position: static;
  align-self: center;
  justify-self: center;
  transform: none;
}
@media screen and (max-width: 800px) {
  .menu__item__box .sub-menu .menu-item-has-children > .submenu-toggle {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.menu__item__box .sub-menu .sub-menu {
  top: -0.35rem;
  left: calc(100% + 0.12rem);
  min-width: 240px;
  max-height: min(430px, 100dvh - 12rem);
  padding: 0.6rem;
  border-color: rgba(127, 149, 178, 0.12);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  overflow-x: hidden;
  overflow-y: auto;
  transform: none;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(127, 149, 178, 0.45) rgba(30, 30, 30, 0.08);
}
.menu__item__box .sub-menu .sub-menu::-webkit-scrollbar {
  width: 8px;
}
.menu__item__box .sub-menu .sub-menu::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.08);
}
.menu__item__box .sub-menu .sub-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(127, 149, 178, 0.45);
}
@media screen and (max-width: 800px) {
  .menu__item__box .sub-menu .sub-menu {
    position: static;
    grid-column: 1/-1;
    width: 100%;
    min-width: 0;
    max-height: none;
    padding: 0.35rem 0 0.15rem;
    overflow: visible;
    transform: none;
    scrollbar-width: auto;
  }
}
@media screen and (max-width: 800px) {
  .menu__item__box > li:hover, .menu__item__box > li:focus-within {
    box-shadow: none;
  }
  .menu__item__box > li:hover::before, .menu__item__box > li:focus-within::before {
    border-color: rgba(127, 149, 178, 0);
    opacity: 0;
    transform: scale(0.94);
  }
  .menu__item__box > li > a:hover, .menu__item__box > li > a:focus-visible {
    color: rgba(30, 30, 30, 0.85);
  }
  .menu__item__box > li > a:hover::after, .menu__item__box > li > a:focus-visible::after {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }
  .menu__item__box .submenu-toggle:hover, .menu__item__box .submenu-toggle:focus-visible, .menu__item__box .menu-item-has-children:hover > .submenu-toggle, .menu__item__box .menu-item-has-children:focus-within > .submenu-toggle {
    color: #1E1E1E;
  }
  .menu__item__box > .menu-item-has-children.submenu-open > .submenu-toggle, .menu__item__box .sub-menu .menu-item-has-children.submenu-open > .submenu-toggle {
    color: #7f95b2;
    border-color: rgba(127, 149, 178, 0.48);
    background: rgba(127, 149, 178, 0.08);
  }
  .menu__item__box .sub-menu li > a:hover, .menu__item__box .sub-menu li > a:focus-visible, .menu__item__box .sub-menu .menu-item-has-children:hover > a, .menu__item__box .sub-menu .menu-item-has-children:focus-within > a {
    color: #1E1E1E;
    background: transparent;
  }
  .menu__item__box > .menu-item-has-children.submenu-open > a, .menu__item__box .sub-menu .menu-item-has-children.submenu-open > a {
    color: #1E1E1E;
    background: transparent;
  }
}
.menu__item__box .sub-menu .menu-item-has-children:hover > .submenu-toggle, .menu__item__box .sub-menu .menu-item-has-children:focus-within > .submenu-toggle {
  transform: rotate(-90deg);
}
@media screen and (max-width: 800px) {
  .menu__item__box .sub-menu .menu-item-has-children:hover > .submenu-toggle, .menu__item__box .sub-menu .menu-item-has-children:focus-within > .submenu-toggle {
    transform: none;
  }
}
@media screen and (max-width: 800px) {
  .menu__item__box .sub-menu .menu-item-has-children.submenu-open > .submenu-toggle {
    transform: rotate(180deg);
  }
}
.menu__item__box .menu-item-has-children:hover > .sub-menu, .menu__item__box .menu-item-has-children:focus-within > .sub-menu {
  display: flex;
}
@media screen and (max-width: 800px) {
  .menu__item__box .menu-item-has-children:hover > .sub-menu, .menu__item__box .menu-item-has-children:focus-within > .sub-menu {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .menu__item__box .menu-item-has-children.submenu-open > .sub-menu {
    display: flex;
  }
}
.menu__item__box .menu-item-services > .sub-menu {
  min-width: 310px;
}
.menu__item__box .header-services-menu__group {
  position: relative;
  display: block;
  padding-right: 0;
}
.menu__item__box .header-services-menu__group::after {
  content: "";
  position: absolute;
  top: -0.35rem;
  left: 100%;
  bottom: -0.35rem;
  width: 0.55rem;
}
.menu__item__box .header-services-menu__group > a {
  gap: 0.85rem;
}
.menu__item__box .header-services-menu__group > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.menu__item__box .header-services-menu__group > a .theme-icon {
  width: 0.8rem;
  height: 0.8rem;
  color: #7f95b2;
  transition: transform 0.25s ease;
}
.menu__item__box .header-services-menu__group > .submenu-toggle {
  display: none;
}
.menu__item__box .header-services-menu__group:hover > a, .menu__item__box .header-services-menu__group:focus-within > a {
  color: rgba(226, 26, 26, 0.82);
  background: rgba(226, 26, 26, 0.045);
}
.menu__item__box .header-services-menu__group:hover > a .theme-icon, .menu__item__box .header-services-menu__group:focus-within > a .theme-icon {
  transform: translateX(3px);
}
.menu__item__box .header-services-menu__flyout {
  position: absolute;
  top: -0.35rem;
  left: calc(100% + 0.2rem);
  z-index: 1001;
  box-sizing: border-box;
  width: min(320px, 100vw - 2rem);
  padding: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(127, 149, 178, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media screen and (max-width: 560px) {
  .menu__item__box .header-services-menu__flyout {
    position: static;
    display: none;
    width: 100%;
    padding: 0.2rem 0 0 0.75rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}
.menu__item__box .header-services-menu__viewport {
  display: block;
}
.menu__item__box .header-services-menu__viewport a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.62rem 0.75rem;
  border-radius: 8px;
  line-height: 1.42;
  white-space: normal;
}
.menu__item__box .header-services-menu__viewport a {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 600;
  color: rgba(30, 30, 30, 0.88);
}
.menu__item__box .header-services-menu__viewport a + a {
  margin-top: 0.35rem;
}
.menu__item__box .header-services-menu__viewport a:hover, .menu__item__box .header-services-menu__viewport a:focus-visible {
  color: rgba(226, 26, 26, 0.82);
  background: rgba(226, 26, 26, 0.045);
}
.menu__item__box .header-services-menu__flyout--scroll {
  padding: 3rem 0.75rem;
}
.menu__item__box .header-services-menu__flyout--scroll .header-services-menu__viewport {
  max-height: min(430px, 100dvh - 12rem);
  overflow: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.menu__item__box .header-services-menu__flyout--scroll .header-services-menu__viewport::-webkit-scrollbar {
  display: none;
}
.menu__item__box .header-services-menu__scroll {
  position: absolute;
  left: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(127, 149, 178, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #7f95b2;
  cursor: pointer;
  transform: translateX(-50%);
  transition: opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.menu__item__box .header-services-menu__scroll {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.menu__item__box .header-services-menu__scroll .theme-icon {
  width: 12px;
  height: 12px;
}
.menu__item__box .header-services-menu__scroll .theme-icon--chevron-up:empty {
  mask-image: url("../img/ico/chevron-up-solid-full.svg");
}
.menu__item__box .header-services-menu__scroll .theme-icon--chevron-down:empty {
  mask-image: url("../img/ico/chevron-down-solid-full.svg");
}
.menu__item__box .header-services-menu__scroll:hover {
  border-color: rgba(127, 149, 178, 0.52);
  background: rgba(127, 149, 178, 0.08);
  color: #1E1E1E;
}
.menu__item__box .header-services-menu__scroll:disabled {
  border-color: rgba(127, 149, 178, 0.16);
  background: rgba(30, 30, 30, 0.06);
  color: #7f95b2;
  opacity: 1;
  cursor: not-allowed;
}
@media screen and (max-width: 800px) {
  .menu__item__box .header-services-menu__scroll {
    display: none;
  }
}
.menu__item__box .header-services-menu__scroll--up {
  top: 0.65rem;
}
.menu__item__box .header-services-menu__scroll--down {
  bottom: 0.65rem;
}
.menu__item__box .header-services-menu__group:hover > .header-services-menu__flyout, .menu__item__box .header-services-menu__group:focus-within > .header-services-menu__flyout {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
@media screen and (max-width: 560px) {
  .menu__item__box .header-services-menu__group:hover > .header-services-menu__flyout, .menu__item__box .header-services-menu__group:focus-within > .header-services-menu__flyout {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .menu__item__box .header-services-menu__group.submenu-open > .header-services-menu__flyout {
    display: block;
  }
}

.header__line__bar .btn__primary:hover {
  background-color: #C91515;
  color: #fff;
}
.header__line__bar .btn__primary .btn__icon--phone {
  mask-image: url("../img/ico/phone-volume-solid-full.svg");
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 438px);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  padding-top: 10px;
}
@media screen and (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }
}

.hero__content__button__box {
  margin-top: 4vh;
  gap: 40px;
}
.hero__content__button__box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.hero__content__button__box .btn__icon--phone {
  mask-image: url("../img/ico/phone-volume-solid-full.svg");
}
.hero__content__button__box .btn__icon--pencil {
  mask-image: url("../img/ico/pencil-solid-full.svg");
}

.hero__content__box {
  width: 85%;
  gap: 30px;
}
.hero__content__box {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}
@media screen and (max-width: 980px) {
  .hero__content__box {
    width: 100%;
    text-align: center;
    align-items: center;
  }
}
.hero__content__box h1 {
  line-height: 1.1;
}
.hero__content__box h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-family: "League Spartan";
  font-weight: 500;
  color: #1E1E1E;
}
.hero__content__box h1 strong {
  font-size: clamp(36px, 5.5vw, 64px);
}
.hero__content__box .hero__content__description__box {
  line-height: 1.5;
}
.hero__content__box .hero__content__description__box {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #1E1E1E;
}
.hero__content__box .hero__content__description__box .hero__content__title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-family: "Montserrat";
  font-weight: 700;
  color: #1E1E1E;
}

.hero__wrapper__img {
  position: relative;
  justify-self: end;
  width: min(100%, 438px);
  height: clamp(520px, 61vw, 680px);
  margin-top: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #d9dde2;
}
@media screen and (max-width: 980px) {
  .hero__wrapper__img {
    justify-self: stretch;
    width: 100%;
    height: clamp(420px, 72vw, 560px);
  }
}

.hero__wrapper__img picture,
.hero__wrapper__img img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__wrapper__img img {
  object-fit: cover;
  object-position: center;
}

.hero__metrics {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero__metric {
  min-width: 0;
  padding: 16px 16px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(20, 28, 39, 0.14);
  backdrop-filter: blur(8px);
}

.hero__metric strong,
.hero__metric span {
  display: block;
}

.hero__metric strong {
  line-height: 1;
}
.hero__metric strong {
  font-size: clamp(18px, 1.6vw, 22px);
  font-family: "Montserrat";
  font-weight: 700;
  color: #1E1E1E;
}

.hero__metric span {
  margin-top: 4px;
  line-height: 1.2;
}
.hero__metric span {
  font-size: clamp(11px, 0.95vw, 13px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #1E1E1E;
}

.why__us__block {
  margin-top: 10vh;
}
.why__us__block {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}

.why__us__heading__box {
  gap: 10vw;
}
.why__us__heading__box {
  display: flex;
  flex-direction: row;
  align-items: unset;
  justify-content: unset;
}
@media screen and (max-width: 980px) {
  .why__us__heading__box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.why__us__heading__box h2 {
  line-height: 1.1;
}
.why__us__heading__box h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 500;
  color: #1E1E1E;
}
.why__us__heading__box h2 strong {
  font-size: clamp(36px, 5.5vw, 64px);
}

.why__us__description__box {
  gap: 5vh;
}
.why__us__description__box {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}
.why__us__description__box h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #1E1E1E;
}

.why__us__description__text {
  gap: 2.5vw;
  line-height: 1.5;
}
.why__us__description__text {
  display: flex;
  flex-direction: row;
  align-items: unset;
  justify-content: unset;
}
.why__us__description__text {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #1E1E1E;
}
@media screen and (max-width: 980px) {
  .why__us__description__text {
    flex-direction: column;
    align-items: center;
  }
}
.why__us__description__text p {
  width: 50%;
}
@media screen and (max-width: 980px) {
  .why__us__description__text p {
    width: 100%;
    max-width: 560px;
  }
}

.why__us__card__box {
  flex-wrap: wrap;
  gap: 2.5vw;
  margin-top: 5vh;
}
.why__us__card__box {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: unset;
}
.why__us__card__box .why__us__card {
  padding: 2vh 0.5vw;
  background: #1E1E1E;
  flex: 0 0 calc(50% - 1.25vw);
  gap: 1.5vw;
  border-radius: 8px;
}
.why__us__card__box .why__us__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 980px) {
  .why__us__card__box .why__us__card {
    flex-basis: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3vh;
  }
}
.why__us__card__box .why__us__card .why__us__card__wrapper__img {
  aspect-ratio: 242/107;
  flex: 0 0 clamp(220px, 42%, 300px);
}
.why__us__card__box .why__us__card .why__us__card__wrapper__img {
  width: 100%;
  height: auto;
  overflow: hidden;
  outline: unset;
  outline-offset: -2px;
}
.why__us__card__box .why__us__card .why__us__card__wrapper__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .why__us__card__box .why__us__card .why__us__card__wrapper__img {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 980px) {
  .why__us__card__box .why__us__card .why__us__card__wrapper__img {
    width: 50%;
    flex-basis: auto;
  }
}
@media screen and (max-width: 800px) {
  .why__us__card__box .why__us__card .why__us__card__wrapper__img {
    width: 80%;
  }
}
.why__us__card__box .why__us__card .why__us__card__wrapper__img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.why__us__card__box .why__us__card .why__us__card__wrapper__img img {
  border-radius: 6px;
}
.why__us__card__box .why__us__card .why__us__card__text__box {
  gap: 1.5vh;
}
.why__us__card__box .why__us__card .why__us__card__text__box {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}
.why__us__card__box .why__us__card .why__us__card__text__box h4 {
  font-size: clamp(16px, 1.7vw, 22px);
  font-family: "League Spartan";
  font-weight: 700;
  color: #fff;
}
.why__us__card__box .why__us__card .why__us__card__text__box p {
  line-height: 1.5;
}
.why__us__card__box .why__us__card .why__us__card__text__box p {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #A8A8A8;
}

.about__us__block {
  margin-top: 10vh;
}
.about__us__block {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}

.about__us__inner {
  gap: 5vh;
}
.about__us__inner {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}
@media screen and (max-width: 1100px) {
  .about__us__inner {
    align-items: center;
  }
}
.about__us__inner h2 {
  line-height: 1.1;
}
.about__us__inner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 500;
  color: #1E1E1E;
}

.about__us__box {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}
.about__us__box {
  gap: 2vw;
}
@media screen and (max-width: 1100px) {
  .about__us__box {
    flex-direction: column;
    align-items: center;
  }
}

.about__us__img__wrapper {
  aspect-ratio: 596/586;
}
.about__us__img__wrapper {
  width: 49%;
  height: auto;
  overflow: hidden;
  outline: unset;
  outline-offset: -2px;
}
.about__us__img__wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .about__us__img__wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 1100px) {
  .about__us__img__wrapper {
    width: 100%;
    max-width: 596px;
  }
}
.about__us__img__wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about__us__text__box {
  gap: 1vw;
}
.about__us__text__box {
  width: 48%;
  padding-left: 0%;
  padding-right: 0%;
  margin-top: 0;
  height: auto;
}
@media screen and (max-width: 800px) {
  .about__us__text__box {
    width: 100%;
    padding: 0;
  }
}
.about__us__text__box {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}
@media screen and (max-width: 1100px) {
  .about__us__text__box {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .about__us__text__box {
    flex-direction: column;
    margin-top: 3vh;
    gap: 3vh;
  }
}
.about__us__text__box .about__us__text__item {
  gap: 1vh;
}
.about__us__text__box .about__us__text__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 1100px) {
  .about__us__text__box .about__us__text__item {
    align-items: center;
    text-align: center;
  }
}
.about__us__text__box .about__us__text__item h3 {
  width: 100%;
  margin-bottom: 1.5vh;
  line-height: 1.1;
  text-transform: uppercase;
}
.about__us__text__box .about__us__text__item h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #1E1E1E;
}
.about__us__text__box .about__us__text__item p {
  line-height: 1.5;
}
.about__us__text__box .about__us__text__item p {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #1E1E1E;
}
@media screen and (max-width: 1100px) {
  .about__us__text__box .about__us__text__item p {
    max-width: 560px;
  }
}
.about__us__text__box .about__us__text__item .about__us__text__img__wrapper {
  margin-top: auto;
  aspect-ratio: 187/270;
}
.about__us__text__box .about__us__text__item .about__us__text__img__wrapper {
  width: 187px;
  height: 270px;
  overflow: hidden;
  outline: unset;
  outline-offset: -2px;
}
.about__us__text__box .about__us__text__item .about__us__text__img__wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .about__us__text__box .about__us__text__item .about__us__text__img__wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .about__us__text__box .about__us__text__item .about__us__text__img__wrapper {
    width: 187px;
    height: 270px;
  }
}
.about__us__text__box .about__us__text__item .about__us__text__img__wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}
.about__us__text__box .about__us__text__item.about__intro {
  align-items: flex-end;
}
@media screen and (max-width: 1100px) {
  .about__us__text__box .about__us__text__item.about__intro {
    align-items: center;
  }
}

.partners {
  margin-top: 10vh;
}
.partners {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}

.partners__inner {
  gap: 5vh;
}
.partners__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.partners__inner h2 {
  line-height: 1.1;
}
.partners__inner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 500;
  color: #1E1E1E;
}
@media screen and (max-width: 1100px) {
  .partners__inner h2 {
    text-align: center;
  }
}

.partners__intro {
  width: 980px;
  max-width: 100%;
  gap: 40px;
}
.partners__intro {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .partners__intro {
    text-align: center;
  }
}
.partners__intro p {
  width: 470px;
  line-height: 1.5;
}
.partners__intro p {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #1E1E1E;
}

.partners__slider__wrapper {
  width: 980px;
  max-width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.partners__slider__wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
@media (pointer: fine) {
  .partners__slider__wrapper.slider--has-drag-cursor {
    cursor: grab;
  }
}
.partners__slider__wrapper.slider--has-drag-cursor.slider--dragging {
  cursor: grabbing;
}
@media screen and (max-width: 800px) {
  .partners__slider__wrapper {
    padding: 0;
  }
}

.partners__slider__wrapper * {
  -webkit-user-drag: none;
}

.partners__slider__line {
  position: relative;
  left: 0;
  cursor: grab;
}
.partners__slider__line {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}

.partners__slider__navigation {
  margin-top: 10px;
  gap: 10px;
  min-height: 34px;
}
.partners__slider__navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.partners__slider__dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(127, 149, 178, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease;
}
.partners__slider__dot.active__slider__dot {
  width: 30px;
  border-radius: 999px;
  background: #E21A1A;
}

.partners__card {
  box-sizing: border-box;
  flex: 0 0 470px;
  margin-right: 40px;
  min-height: 160px;
  padding: 18px 24px;
  border-radius: 5px;
  background: #1e1e1e;
  gap: 2vh;
}
.partners__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .partners__card {
    flex-basis: 100%;
    min-height: 0;
    margin-right: 0;
    padding: 18px;
  }
}

.partners__card__header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .partners__card__header {
    flex-direction: column;
    gap: 14px;
  }
}

.partners__card__logo__wrapper {
  box-sizing: content-box;
  padding: 10px 14px;
  border-radius: 4px;
}
.partners__card__logo__wrapper {
  width: 150px;
  height: 70px;
  overflow: hidden;
  outline: unset;
  outline-offset: -2px;
}
.partners__card__logo__wrapper img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .partners__card__logo__wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-grow: -1;
  }
}
@media screen and (max-width: 800px) {
  .partners__card__logo__wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 150/70;
    box-sizing: border-box;
  }
}
.partners__card__logo__wrapper--light {
  background: #fff;
}

.partners__card__label {
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  line-height: 1;
  text-transform: uppercase;
}
.partners__card__label {
  font-size: clamp(10px, 0.8vw, 12px);
  font-family: "Montserrat";
  font-weight: 500;
  color: #fff;
}

.partners__card__name {
  line-height: 1.1;
}
.partners__card__name {
  font-size: clamp(16px, 1.7vw, 22px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #fff;
}

.partners__card__description {
  max-width: 280px;
  line-height: 1.4;
}
.partners__card__description {
  font-size: clamp(13px, 1vw, 15px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .partners__card__description {
    max-width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .partners__intro {
    width: min(100%, 470px);
    flex-direction: column;
    gap: 24px;
  }
  .partners__intro p {
    width: 100%;
  }
  .partners__slider__wrapper {
    width: min(100%, 470px);
  }
}
@media screen and (max-width: 800px) {
  .partners__cta {
    width: 60%;
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  .partners__cta {
    width: 90%;
  }
}
.partners__cta .btn__icon--phone {
  mask-image: url("../img/ico/phone-volume-solid-full.svg");
}

.offers {
  margin-top: 10vh;
}
.offers {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}

.offers__inner {
  gap: 5vh;
}
.offers__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.offers__inner h2 {
  line-height: 1.1;
  text-align: center;
}
.offers__inner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 500;
  color: #1E1E1E;
}

.offers__card__box {
  width: min(78%, 980px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8vh 2.5vw;
}
@media screen and (max-width: 800px) {
  .offers__card__box {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.offers__card {
  min-height: 135px;
  padding: 16px 14px 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 1px 4px 5px rgba(30, 30, 30, 0.42);
  gap: 1.5vh;
}
.offers__card {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}

.offers__card__number {
  line-height: 1;
}
.offers__card__number {
  font-size: clamp(30px, 5vw, 50px);
  font-family: "Montserrat";
  font-weight: 700;
  color: #E21A1A;
}

@media screen and (max-width: 800px) {
  .offers__card__number--reverse {
    align-self: flex-end;
  }
}

.offers__card__text__box {
  gap: 1vh;
}
.offers__card__text__box {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}
@media screen and (max-width: 800px) {
  .offers__card__text__box {
    text-align: center;
  }
}
.offers__card__text__box h3 {
  line-height: 1.1;
}
.offers__card__text__box h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-family: "League Spartan";
  font-weight: 500;
  color: #1E1E1E;
}
.offers__card__text__box p {
  line-height: 1.35;
}
.offers__card__text__box p {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #1E1E1E;
}

.map {
  margin: 10vh 0;
}
.map {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}

.map__inner {
  gap: 2.5vw;
}
.map__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}

.map__frame {
  flex: 0 0 calc(70% - 1.25vw);
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 1px 4px 5px rgba(30, 30, 30, 0.42);
}
.map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map__office__img {
  flex: 0 0 calc(30% - 1.25vw);
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 1px 4px 5px rgba(30, 30, 30, 0.42);
}
.map__office__img {
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: unset;
}
.map__office__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  .map__inner {
    flex-direction: column;
    gap: 24px;
  }
  .map__frame,
  .map__office__img {
    flex: 0 0 auto;
    width: 100%;
    height: 360px;
  }
}
@media screen and (max-width: 640px) {
  .map__frame,
  .map__office__img {
    height: 300px;
  }
}
.service__hero {
  gap: clamp(48px, 7vw, 96px);
  padding-top: 100px;
}
.service__hero .service__hero__inner {
  gap: clamp(32px, 4vw, 72px);
}
.service__hero .service__hero__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 980px) {
  .service__hero .service__hero__inner {
    flex-direction: column;
    align-items: stretch;
  }
}

.service__hero__content__box {
  flex: 1 1 48%;
  max-width: 555px;
  gap: 18px;
}
.service__hero__content__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 980px) {
  .service__hero__content__box {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
}
.service__hero__content__box h1 {
  line-height: 1.1;
}
.service__hero__content__box h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-family: "League Spartan";
  font-weight: 500;
  color: #1E1E1E;
}
.service__hero__content__box h1 strong {
  font-size: clamp(36px, 5.5vw, 64px);
}
.service__hero__content__box .service__hero__lead {
  max-width: 30ch;
}
.service__hero__content__box .service__hero__lead {
  font-size: clamp(20px, 2.5vw, 24px);
  font-family: "Montserrat";
  font-weight: 700;
  color: #1E1E1E;
}
.service__hero__content__box .service__hero__description {
  max-width: 52ch;
  line-height: 1.5;
}
.service__hero__content__box .service__hero__description {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.86);
}

.service__hero__button__box {
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.service__hero__button__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 640px) {
  .service__hero__button__box {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}

.service__hero__img__box {
  flex: 1 1 56%;
  width: 100%;
  max-width: 690px;
}
.service__hero__img__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 980px) {
  .service__hero__img__box {
    display: none;
  }
}
.service__hero__img__box img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service__advantages {
  margin-top: 6vh;
}

.service__advantages__inner {
  padding: 20px 25px;
  background-color: rgba(127, 149, 178, 0.05);
  outline: 1px solid rgba(127, 149, 178, 0.3);
  outline-offset: -1px;
  box-shadow: 0 30px 30px rgba(17, 24, 39, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.service__advantages__track {
  width: 100%;
}
.service__advantages__track {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.service__advantages__group {
  width: 100%;
  gap: 25px;
  flex: 0 0 100%;
}
.service__advantages__group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.service__advantages__group:last-child {
  display: none;
}

.service__advantages__item {
  gap: 10px;
  white-space: nowrap;
}
.service__advantages__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.service__advantages__icon__box {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(226, 26, 26, 0.45);
  border-radius: 50%;
  flex: 0 0 28px;
}
.service__advantages__icon__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.service__advantages__icon {
  width: 18px;
  height: 18px;
  background-color: #E21A1A;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.service__advantages__icon--tag {
  mask-image: url("../img/ico/tag-solid-full.svg");
  -webkit-mask-image: url("../img/ico/tag-solid-full.svg");
}
.service__advantages__icon--phone {
  mask-image: url("../img/ico/phone-volume-solid-full.svg");
  -webkit-mask-image: url("../img/ico/phone-volume-solid-full.svg");
}
.service__advantages__icon--pencil {
  mask-image: url("../img/ico/pencil-solid-full.svg");
  -webkit-mask-image: url("../img/ico/pencil-solid-full.svg");
}
.service__advantages__icon--envelope {
  mask-image: url("../img/ico/envelope-solid-full.svg");
  -webkit-mask-image: url("../img/ico/envelope-solid-full.svg");
}
.service__advantages__icon--bullseye {
  mask-image: url("../img/ico/bullseye.svg");
  -webkit-mask-image: url("../img/ico/bullseye.svg");
}
.service__advantages__icon--magnifying-glass {
  mask-image: url("../img/ico/magnifying-glass.svg");
  -webkit-mask-image: url("../img/ico/magnifying-glass.svg");
}
.service__advantages__icon--chart-bars {
  mask-image: url("../img/ico/chart-bars.svg");
  -webkit-mask-image: url("../img/ico/chart-bars.svg");
}

.service__advantages__label {
  line-height: 1.35;
}
.service__advantages__label {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 500;
  color: #1E1E1E;
}

@media screen and (max-width: 1280px) {
  .service__advantages__inner {
    padding: 20px 0;
  }
  .service__advantages__track {
    width: max-content;
    animation: service-advantages-ticker 24s linear infinite;
  }
  .service__advantages__group {
    width: max-content;
    padding-right: 40px;
    gap: 40px;
    flex-basis: auto;
  }
  .service__advantages__group:last-child {
    display: flex;
  }
  .service__advantages__item {
    flex: 0 0 auto;
  }
  .service__advantages__inner:hover .service__advantages__track,
  .service__advantages__inner:focus-within .service__advantages__track {
    animation-play-state: paused;
  }
}
@media (prefers-reduced-motion: reduce) and (max-width: 1280px) {
  .service__advantages__inner {
    overflow-x: auto;
  }
  .service__advantages__track {
    animation: none;
  }
}
@keyframes service-advantages-ticker {
  to {
    transform: translateX(-50%);
  }
}
.service__landing-intro {
  margin-top: 10vh;
}

.service__landing-intro__inner {
  gap: 18px;
  text-align: center;
}
.service__landing-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service__landing-intro__inner h2 {
  max-width: 780px;
  line-height: 1.15;
}
.service__landing-intro__inner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #1E1E1E;
}
.service__landing-intro__inner p {
  max-width: 88ch;
  line-height: 1.65;
}
.service__landing-intro__inner p {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.82);
}

.service__specializations {
  margin-top: 10vh;
}

.service__specializations__inner {
  gap: 5vh;
}
.service__specializations__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.service__specializations__heading__box {
  gap: 10px;
  text-align: center;
}
.service__specializations__heading__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.service__specializations__heading__box h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #1E1E1E;
}
.service__specializations__heading__box p {
  max-width: 72ch;
  line-height: 1.55;
}
.service__specializations__heading__box p {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.78);
}

.service__specializations__items__box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  padding-top: 34px;
}
@media screen and (max-width: 840px) {
  .service__specializations__items__box {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

.service__specializations__item {
  position: relative;
  min-height: 220px;
  padding: 25px 20px;
  border: 2px solid rgba(226, 26, 26, 0.62);
  border-top-width: 7px;
  border-radius: 0 16px 16px 16px;
  background: linear-gradient(145deg, rgba(226, 26, 26, 0.07), transparent 48%), #fff;
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.09);
  gap: 20px;
}
.service__specializations__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.service__specializations__item::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: -2px;
  width: min(58%, 190px);
  height: 30px;
  border-radius: 11px 0 0 0;
  background: #E21A1A;
  clip-path: polygon(0 0, 76% 0, 100% 100%, 0 100%);
}
.service__specializations__item::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 12px;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 149, 178, 0.28));
}
@media screen and (max-width: 840px) {
  .service__specializations__item {
    min-height: 0;
  }
}

.service__specializations__item__heading {
  gap: 2vw;
}
.service__specializations__item__heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.service__specializations__item__heading h3 {
  line-height: 1.3;
}
.service__specializations__item__heading h3 {
  font-size: clamp(16px, 1.6vw, 19px);
  font-family: "Montserrat";
  font-weight: 700;
  color: #1E1E1E;
}

.service__specializations__item p {
  line-height: 1.65;
}
.service__specializations__item p {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.82);
}

.service__specializations__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background-color: #E21A1A;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.service__specializations__icon--landing-ad {
  mask-image: url("../img/ico/landing-ad.svg");
  -webkit-mask-image: url("../img/ico/landing-ad.svg");
}
.service__specializations__icon--one-page {
  mask-image: url("../img/ico/one-page.svg");
  -webkit-mask-image: url("../img/ico/one-page.svg");
}
.service__specializations__icon--multi-page {
  mask-image: url("../img/ico/multi-page.svg");
  -webkit-mask-image: url("../img/ico/multi-page.svg");
}

.service__problem-solution {
  margin-top: 10vh;
}

.service__problem-solution__inner {
  gap: 5vh;
}
.service__problem-solution__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.service__problem-solution__heading {
  gap: 10px;
  text-align: center;
}
.service__problem-solution__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.service__problem-solution__heading h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #1E1E1E;
}
.service__problem-solution__heading p {
  max-width: 68ch;
  line-height: 1.55;
}
.service__problem-solution__heading p {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.78);
}

.service__problem-solution__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 480px));
  justify-content: center;
  gap: clamp(52px, 8vw, 110px);
  padding-left: 15px;
}
@media screen and (max-width: 820px) {
  .service__problem-solution__items {
    grid-template-columns: minmax(0, 520px);
    gap: 48px;
  }
}
@media screen and (max-width: 540px) {
  .service__problem-solution__items {
    padding-inline: 14px 0;
  }
}

.service__problem-solution__item {
  --label-color: #d94132;
  --label-fold-color: #9f2c22;
  position: relative;
  min-height: 410px;
  padding: 110px clamp(28px, 4vw, 48px) 48px;
  filter: drop-shadow(0 18px 18px rgba(17, 24, 39, 0.12));
  isolation: isolate;
}
.service__problem-solution__item--solution {
  --label-color: #5c9e45;
  --label-fold-color: #3e7130;
}
.service__problem-solution__item ul {
  margin-top: 35px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  padding: 0;
  list-style: none;
}
.service__problem-solution__item li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}
.service__problem-solution__item li {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.86);
}
.service__problem-solution__item li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--label-color);
  border-top: 2px solid var(--label-color);
  transform: rotate(45deg);
}
.service__problem-solution__item .service__problem-solution__item-title {
  display: block;
  font-weight: 700;
  color: #1E1E1E;
}
.service__problem-solution__item .service__problem-solution__item-description {
  display: block;
  margin-top: 4px;
}
@media screen and (max-width: 540px) {
  .service__problem-solution__item {
    min-height: 0;
    padding: 100px 24px 38px;
  }
}

.service__problem-solution__paper {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(127, 149, 178, 0.24);
  border-radius: 34px 0 34px 6px;
  background: linear-gradient(145deg, rgba(127, 149, 178, 0.08), transparent 42%), #fff;
  clip-path: polygon(0 0, calc(100% - 64px) 0, 100% 64px, 100% 100%, 0 100%);
}
.service__problem-solution__paper::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 31px;
  right: -13px;
  width: 90px;
  height: 1px;
  background: rgba(127, 149, 178, 0.32);
  transform: rotate(45deg);
}
.service__problem-solution__paper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  border-left: 1px solid rgba(127, 149, 178, 0.24);
  border-bottom: 1px solid rgba(127, 149, 178, 0.24);
  background: linear-gradient(225deg, #fff 48%, rgba(127, 149, 178, 0.17) 50%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.service__problem-solution__label {
  position: absolute;
  z-index: 2;
  top: 45px;
  left: -15px;
  width: min(80%, 330px);
  min-height: 58px;
  padding: 12px 22px 12px 28px;
  border-radius: 2px 30px 30px 2px;
  background: var(--label-color);
  box-shadow: 0 7px 13px rgba(17, 24, 39, 0.2);
}
.service__problem-solution__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 540px) {
  .service__problem-solution__label {
    top: 38px;
    left: -14px;
    width: calc(100% - 100px);
  }
}
.service__problem-solution__label::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  border-top: 10px solid var(--label-fold-color);
  border-left: 10px solid transparent;
}
.service__problem-solution__label h3 {
  font-size: clamp(16px, 1.6vw, 19px);
  font-family: "League Spartan";
  font-weight: 700;
  color: #fff;
}

.service__problem-solution__label-icon {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  line-height: 1;
}
.service__problem-solution__label-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.service__problem-solution__label-icon {
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 800;
  color: #fff;
}

.service__packages-breaker {
  width: 100%;
  margin-top: 10vh;
  padding: 35px 0;
  background: #1E1E1E;
}

.service__packages-breaker__inner {
  gap: 10px;
}
.service__packages-breaker__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: unset;
}
.service__packages-breaker__inner h2 {
  line-height: 1.15;
}
.service__packages-breaker__inner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #fff;
}
.service__packages-breaker__inner .btn__primary {
  flex: 0 0 auto;
}
.service__packages-breaker__inner .btn__primary:hover {
  color: #fff;
}
.service__packages-breaker__inner .btn__primary:focus-visible {
  outline-color: #fff;
}

.service__process {
  margin-top: 10vh;
}

.service__process__inner {
  gap: 5vh;
}
.service__process__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.service__process__heading {
  gap: 10px;
  text-align: center;
}
.service__process__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.service__process__heading h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #1E1E1E;
}
.service__process__heading p {
  line-height: 1.55;
}
.service__process__heading p {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.78);
}

.service__process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
  margin: 0;
  padding: 74px 0 0;
  list-style: none;
}
@media screen and (max-width: 760px) {
  .service__process__steps {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 0 0 72px;
  }
}
.service__process__steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 22px;
  right: 10%;
  left: 10%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 26, 26, 0.3), #E21A1A 12%, #E21A1A 88%, rgba(226, 26, 26, 0.3));
  box-shadow: 0 5px 12px rgba(226, 26, 26, 0.14);
}
@media screen and (max-width: 760px) {
  .service__process__steps::before {
    top: 40px;
    right: auto;
    bottom: 50px;
    left: 24px;
    width: 4px;
    height: auto;
  }
}

.service__process__step {
  position: relative;
  z-index: 1;
  gap: 12px;
  min-height: 188px;
  text-align: center;
  padding: 30px clamp(16px, 1.6vw, 24px) 26px;
  border: 1px solid rgba(127, 149, 178, 0.2);
  border-radius: 15px;
  background: rgba(127, 149, 178, 0.05);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.07), 0 3px 8px rgba(17, 24, 39, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.service__process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.service__process__step::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 38px;
  height: 25px;
  background: #f9fafb;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 -3px 3px rgba(17, 24, 39, 0.06));
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .service__process__step {
    min-height: 0;
    padding: 24px;
  }
  .service__process__step::before {
    top: 50%;
    right: 100%;
    bottom: auto;
    left: auto;
    width: 24px;
    height: 34px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    filter: drop-shadow(-3px 0 3px rgba(17, 24, 39, 0.06));
    transform: translateY(-50%);
  }
}
.service__process__step h3 {
  line-height: 1.25;
  text-align: center;
}
.service__process__step h3 {
  font-size: clamp(16px, 1.6vw, 19px);
  font-family: "League Spartan";
  font-weight: 700;
  color: #1E1E1E;
}
.service__process__step p {
  line-height: 1.55;
}
.service__process__step p {
  font-size: clamp(12px, 0.9vw, 14px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.8);
}

.service__process__number {
  position: absolute;
  z-index: 3;
  top: -75px;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(226, 26, 26, 0.48);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.94), 0 0 0 10px rgba(226, 26, 26, 0.08), 0 9px 18px rgba(17, 24, 39, 0.12);
  line-height: 1;
  letter-spacing: -0.03em;
  transform: translateX(-50%);
}
.service__process__number {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.service__process__number {
  font-size: 16px;
  font-family: "League Spartan";
  font-weight: 700;
  color: #E21A1A;
}
@media screen and (max-width: 760px) {
  .service__process__number {
    top: 50%;
    left: -68px;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
  }
}

.service__standard {
  margin-top: 10vh;
}

.service__standard__inner {
  gap: 8vh;
}
.service__standard__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.service__standard__heading {
  gap: 10px;
  text-align: center;
}
.service__standard__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.service__standard__heading h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #1E1E1E;
}
.service__standard__heading p {
  max-width: 70ch;
  line-height: 1.55;
}
.service__standard__heading p {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.78);
}

.service__standard__items {
  display: grid;
  grid-template-columns: repeat(3, 405px);
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 60px clamp(18px, 2vw, 26px);
}
@media screen and (max-width: 1549px) {
  .service__standard__items {
    grid-template-columns: repeat(2, 405px);
  }
}
@media screen and (max-width: 879px) {
  .service__standard__items {
    grid-template-columns: minmax(0, 405px);
    justify-content: center;
    gap: 40px;
  }
}

.service__standard__item {
  position: relative;
  height: 170px;
  min-height: 170px;
  padding: 0 10px;
  gap: 20px;
  filter: drop-shadow(0 14px 16px rgba(17, 24, 39, 0.13));
  isolation: isolate;
}
.service__standard__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.service__standard__item::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -9px;
  left: 60px;
  width: 78px;
  height: 34px;
  border-radius: 30px 30px 0 0;
  background: #1E1E1E;
  box-shadow: inset 0 -8px 10px rgba(17, 24, 39, 0.12);
  transform: translateX(-50%) rotate(-50deg);
}
@media screen and (max-width: 760px) {
  .service__standard__item {
    height: auto;
    min-height: 0;
    padding: 0 7px 7px 0;
    gap: 12px;
    align-items: flex-start;
    filter: drop-shadow(0 8px 10px rgba(17, 24, 39, 0.12));
    cursor: pointer;
  }
  .service__standard__item::before {
    top: -7px;
    left: 52px;
    width: 64px;
    height: 28px;
    display: block;
    transform: translateX(-50%) rotate(-50deg);
  }
}

.service__standard__paper {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(145deg, rgba(127, 149, 178, 0.08), transparent 48%), #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(127, 149, 178, 0.14);
  pointer-events: none;
}

.service__standard__body {
  position: relative;
  top: -30px;
  left: 0px;
  z-index: 2;
  width: 330px;
  height: 152px;
  min-height: 152px;
  flex: 0 0 330px;
  padding: 0 24px 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%), #1E1E1E;
  box-shadow: 0 9px 16px rgba(17, 24, 39, 0.14);
}
.service__standard__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .service__standard__body {
    top: -15px;
    width: auto;
    height: auto;
    min-height: 0;
    flex: 1 1 auto;
    padding: 0;
    border-radius: 14px;
  }
}

.service__standard__trigger {
  position: relative;
  width: 100%;
  min-height: 84px;
  padding: 24px 0 10px;
  border: 0;
  background: transparent;
  text-align: center;
  line-height: 1.25;
  cursor: default;
  gap: 12px;
}
.service__standard__trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service__standard__trigger {
  font-size: clamp(16px, 1.6vw, 19px);
  font-family: "League Spartan";
  font-weight: 700;
  color: #fff;
}
.service__standard__trigger:disabled {
  opacity: 1;
}
@media screen and (max-width: 760px) {
  .service__standard__trigger {
    min-height: 68px;
    padding: 12px 16px;
    gap: 12px;
    text-align: left;
    cursor: pointer;
  }
  .service__standard__trigger {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}

.service__standard__icon-box {
  position: relative;
  z-index: 2;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
}
.service__standard__icon-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .service__standard__icon-box {
    position: static;
    width: 40px;
    height: 40px;
    margin-top: 14px;
    flex: 0 0 40px;
    transform: none;
  }
}

.service__standard__icon {
  width: 30px;
  height: 30px;
  background-color: #E21A1A;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.service__standard__icon--address-book {
  mask-image: url("../img/ico/address-book-regular-full.svg");
  -webkit-mask-image: url("../img/ico/address-book-regular-full.svg");
}
.service__standard__icon--desktop {
  mask-image: url("../img/ico/desktop-solid-full.svg");
  -webkit-mask-image: url("../img/ico/desktop-solid-full.svg");
}
.service__standard__icon--wpforms {
  mask-image: url("../img/ico/wpforms-brands-solid-full.svg");
  -webkit-mask-image: url("../img/ico/wpforms-brands-solid-full.svg");
}
.service__standard__icon--searchengin {
  mask-image: url("../img/ico/searchengin-brands-solid-full.svg");
  -webkit-mask-image: url("../img/ico/searchengin-brands-solid-full.svg");
}
.service__standard__icon--rocket {
  mask-image: url("../img/ico/rocket-solid-full.svg");
  -webkit-mask-image: url("../img/ico/rocket-solid-full.svg");
}
.service__standard__icon--wordpress {
  mask-image: url("../img/ico/wordpress-brands-solid-full.svg");
  -webkit-mask-image: url("../img/ico/wordpress-brands-solid-full.svg");
}

.service__standard__chevron {
  display: none;
}
@media screen and (max-width: 760px) {
  .service__standard__chevron {
    display: block;
    width: 14px;
    height: 14px;
    margin-left: auto;
    flex: 0 0 14px;
    background-color: #fff;
    mask: url("../img/ico/chevron-down-solid-full.svg") center/contain no-repeat;
    -webkit-mask: url("../img/ico/chevron-down-solid-full.svg") center/contain no-repeat;
    transition: transform 0.25s ease;
  }
}

.service__standard__panel {
  width: 100%;
}
@media screen and (max-width: 760px) {
  .service__standard__panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.28s ease, opacity 0.2s ease;
  }
}

@media screen and (max-width: 760px) {
  .service__standard__item.active .service__standard__panel {
    grid-template-rows: 1fr;
    opacity: 1;
  }
}

@media screen and (max-width: 760px) {
  .service__standard__item.active .service__standard__chevron {
    transform: rotate(180deg);
  }
}

.service__standard__panel-inner p {
  max-width: 34ch;
  margin-inline: auto;
  text-align: center;
  line-height: 1.5;
}
.service__standard__panel-inner p {
  font-size: clamp(12px, 0.9vw, 14px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 760px) {
  .service__standard__panel-inner {
    overflow: hidden;
    border-left: 0;
  }
  .service__standard__panel-inner p {
    max-width: none;
    margin: 0;
    padding: 0 18px 17px 68px;
    text-align: left;
    line-height: 1.55;
  }
}

.service__ready {
  margin-top: 10vh;
}

.service__ready__inner {
  gap: clamp(42px, 5vw, 58px);
}
.service__ready__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.service__ready__heading {
  text-align: center;
}
.service__ready__heading h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #1E1E1E;
}

.service__ready__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}
@media screen and (max-width: 800px) {
  .service__ready__items {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.service__ready__item {
  position: relative;
  min-height: 210px;
  padding: 82px clamp(24px, 3vw, 34px) 30px;
  border-radius: 14px;
  background: rgba(127, 149, 178, 0.05);
  box-shadow: 0 30px 30px rgba(17, 24, 39, 0.2);
  gap: 12px;
}
.service__ready__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.service__ready__item h3 {
  line-height: 1.3;
}
.service__ready__item h3 {
  font-size: clamp(16px, 1.6vw, 19px);
  font-family: "League Spartan";
  font-weight: 700;
  color: #1E1E1E;
}
.service__ready__item p {
  max-width: 44ch;
  line-height: 1.55;
}
.service__ready__item p {
  font-size: clamp(12px, 0.9vw, 14px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.8);
}
.service__ready__item--left .service__ready__icon {
  left: 10px;
}
.service__ready__item--center {
  align-items: center;
  text-align: center;
}
.service__ready__item--center .service__ready__icon {
  left: 50%;
  transform: translateX(-50%);
}
.service__ready__item--right {
  align-items: flex-end;
  text-align: right;
}
.service__ready__item--right .service__ready__icon {
  right: 10px;
}
@media screen and (max-width: 800px) {
  .service__ready__item {
    min-height: 0;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 20px rgba(17, 24, 39, 0.2);
  }
  .service__ready__item--left .service__ready__icon, .service__ready__item--center .service__ready__icon, .service__ready__item--right .service__ready__icon {
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.service__ready__icon {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(127, 149, 178, 0.3);
  border-radius: 50%;
  background: #f9fafb;
  box-shadow: 0 0 0 13px #fff, inset 0 3px 7px rgba(17, 24, 39, 0.1), 0 10px 13px rgba(17, 24, 39, 0.09);
}
.service__ready__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.service__ready__glyph {
  width: 27px;
  height: 27px;
  background: #E21A1A;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.service__ready__glyph--bullhorn {
  mask-image: url("../img/ico/bullhorn-solid-full.svg");
  -webkit-mask-image: url("../img/ico/bullhorn-solid-full.svg");
}
.service__ready__glyph--gauge-simple-high {
  mask-image: url("../img/ico/gauge-simple-high-solid-full.svg");
  -webkit-mask-image: url("../img/ico/gauge-simple-high-solid-full.svg");
}
.service__ready__glyph--crosshairs {
  mask-image: url("../img/ico/crosshairs-solid-full.svg");
  -webkit-mask-image: url("../img/ico/crosshairs-solid-full.svg");
}

.service__reviews {
  margin-top: 10vh;
}

.service__reviews__inner {
  gap: 5vh;
}
.service__reviews__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.service__reviews__heading {
  gap: 10px;
  text-align: center;
}
.service__reviews__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.service__reviews__heading h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: "League Spartan";
  font-weight: 600;
  color: #1E1E1E;
}
.service__reviews__heading p {
  max-width: 68ch;
  line-height: 1.55;
}
.service__reviews__heading p {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(30, 30, 30, 0.78);
}

.reviews__slider {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.reviews__slider {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
@media (pointer: fine) {
  .reviews__slider.slider--has-drag-cursor {
    cursor: grab;
  }
}
.reviews__slider.slider--has-drag-cursor.slider--dragging {
  cursor: grabbing;
}
@media screen and (max-width: 1100px) {
  .reviews__slider {
    width: min(100%, 520px);
    margin-inline: auto;
  }
}

.reviews__slider * {
  -webkit-user-drag: none;
}

.reviews__slider__line {
  position: relative;
  left: 0;
  width: 100%;
}
.reviews__slider__line {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}

.reviews__slide {
  width: 33.3333333333%;
  padding: 8px 12px 18px;
  flex: 0 0 33.3333333333%;
}
.reviews__slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
@media screen and (max-width: 1100px) {
  .reviews__slide {
    width: 100%;
    padding-inline: 8px;
    flex-basis: 100%;
  }
}

.review {
  width: 100%;
  min-height: 310px;
  flex: 1 1 auto;
  padding: 22px;
  border: 1px solid #dadce0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.09);
  gap: 16px;
}
.review {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
@media screen and (max-width: 1100px) {
  .review {
    min-height: 300px;
  }
}
@media screen and (max-width: 520px) {
  .review {
    min-height: 0;
    padding: 18px;
  }
}

.review__head {
  min-width: 0;
  gap: 11px;
}
.review__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: 0 0 42px;
}
.review__avatar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.review__avatar {
  font-size: 18px;
  font-family: "Montserrat";
  font-weight: 500;
  color: #fff;
}
.review__avatar--purple {
  background: #7b1fa2;
}
.review__avatar--rose {
  background: #c2185b;
}
.review__avatar--gold {
  background: #b58a18;
}
.review__avatar--green {
  background: #168a68;
}
.review__avatar--charcoal {
  background: #323232;
}
.review__avatar--blue {
  background: #1967d2;
}

.review__author {
  min-width: 0;
  gap: 2px;
}
.review__author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.review__author h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review__author h3 {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "League Spartan";
  font-weight: 700;
  color: #202124;
}

.review__google {
  margin-left: auto;
  white-space: nowrap;
  letter-spacing: -1px;
}
.review__google {
  font-size: 14px;
  font-family: "Montserrat";
  font-weight: 700;
  color: #4285f4;
}
.review__google span:nth-child(2), .review__google span:nth-child(6) {
  color: #ea4335;
}
.review__google span:nth-child(3) {
  color: #fbbc05;
}
.review__google span:nth-child(4) {
  color: #4285f4;
}
.review__google span:nth-child(5) {
  color: #34a853;
}

.review__rating {
  gap: 9px;
}
.review__rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.review__rating > span:last-child {
  font-size: clamp(11px, 0.75vw, 12px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #5f6368;
}

.review__stars {
  letter-spacing: 1px;
  line-height: 1;
}
.review__stars {
  font-size: 17px;
  font-family: "Montserrat";
  font-weight: 700;
  color: #fbbc04;
}

.review__text {
  line-height: 1.55;
}
.review__text {
  font-size: clamp(12px, 0.9vw, 14px);
  font-family: "Montserrat";
  font-weight: 400;
  color: #4d5156;
}

.reviews__slider__navigation {
  margin-top: 10px;
  gap: 10px;
}
.reviews__slider__navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.reviews__slider__dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(127, 149, 178, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease;
}
.reviews__slider__dot.active__slider__dot {
  width: 30px;
  border-radius: 999px;
  background: #E21A1A;
}

.privacy-policy-page {
  background: #f8fafc;
}

.legal-page-hero {
  padding: 14vh 5% 6vh;
  text-align: center;
  background: linear-gradient(rgba(17, 24, 39, 0.9), rgba(30, 30, 30, 0.88)), radial-gradient(circle at top, rgba(226, 26, 26, 0.18), transparent 48%);
}
.legal-page-hero {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 0;
  height: auto;
}
@media screen and (max-width: 800px) {
  .legal-page-hero {
    width: 100%;
    padding: 0;
  }
}
.legal-page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.legal-page-hero__inner {
  gap: 1rem;
  max-width: 900px;
}
.legal-page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.legal-policy {
  padding: 5vh 5% 7vh;
}
.legal-policy {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 0;
  height: auto;
}
@media screen and (max-width: 800px) {
  .legal-policy {
    width: 100%;
    padding: 0;
  }
}

.legal-policy__container {
  gap: 1.5rem;
}
.legal-policy__container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  height: auto;
}
@media screen and (max-width: 800px) {
  .legal-policy__container {
    width: 100%;
    padding: 0;
  }
}
.legal-policy__container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.legal-policy__intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .legal-policy__intro {
    grid-template-columns: 1fr;
  }
}

.legal-policy__card,
.legal-policy__section,
.legal-policy__highlight {
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.legal-policy__label {
  display: inline-block;
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal-policy__label {
  font-size: clamp(12px, 0.9vw, 13px);
  font-family: "Montserrat";
  font-weight: 700;
  color: #E21A1A;
}

.legal-policy__card strong {
  display: block;
  margin-bottom: 0.45rem;
}
.legal-policy__card strong {
  font-size: clamp(16px, 1.6vw, 19px);
  font-family: "Montserrat";
  font-weight: 700;
  color: #1E1E1E;
}
.legal-policy__card p, .legal-policy__card a {
  font-size: clamp(14px, 1.1vw, 15px);
  font-family: "Montserrat";
  font-weight: 500;
  color: #1E1E1E;
}
.legal-policy__card a {
  color: #E21A1A;
}

.legal-policy__content {
  gap: 1rem;
}
.legal-policy__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.legal-policy__highlight {
  border-left: 4px solid #E21A1A;
}
.legal-policy__highlight {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 500;
  color: #1E1E1E;
}

.legal-policy__section h2 {
  margin-bottom: 0.85rem;
}
.legal-policy__section h2 {
  font-size: clamp(16px, 1.7vw, 22px);
  font-family: "Montserrat";
  font-weight: 700;
  color: #1E1E1E;
}
.legal-policy__section p, .legal-policy__section li {
  line-height: 1.7;
}
.legal-policy__section p, .legal-policy__section li {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: "Montserrat";
  font-weight: 500;
  color: #1E1E1E;
}
.legal-policy__section ul {
  margin: 0;
  padding-left: 1.2rem;
}
.legal-policy__section p + p, .legal-policy__section p + ul, .legal-policy__section ul + p, .legal-policy__section ul + ul {
  margin-top: 0.8rem;
}
.legal-policy__section a {
  color: #E21A1A;
  font-weight: 700;
}

/*# sourceMappingURL=main.css.map */
