@charset "UTF-8";
/* === imports === */
.fly-popup {
  display: flex;
  position: fixed;
  z-index: 1300;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.fly-popup--bottom-to-top {
  align-items: flex-end;
  padding-top: 60px;
}
.fly-popup--bottom-to-top .fly-popup__window {
  bottom: 0;
  transform: translate3d(0, 100%, 0);
  width: 100%;
  border-radius: 30px 30px 0 0;
  max-height: calc(100% - 70px);
}
.fly-popup--bottom-to-top .fly-popup__thumb {
  bottom: 100%;
  right: 0;
  left: 0;
  margin: auto auto 8px;
  width: 40px;
  height: 3px;
}
.fly-popup--top-to-bottom {
  align-items: flex-start;
  padding-bottom: 60px;
}
.fly-popup--top-to-bottom .fly-popup__window {
  top: 0;
  transform: translate3d(0, -100%, 0);
  width: 100%;
  border-radius: 0 0 30px 30px;
  max-height: calc(100% - 70px);
}
.fly-popup--top-to-bottom .fly-popup__thumb {
  bottom: 100%;
  right: 0;
  left: 0;
  margin: 8px auto auto;
  width: 40px;
  height: 3px;
}
.fly-popup--left-to-right {
  justify-content: flex-start;
}
.fly-popup--left-to-right .fly-popup__window {
  top: 0;
  right: auto;
  height: 100%;
  width: 100%;
  transform: translate3d(-100%, 0, 0);
  border-radius: 0;
}
.fly-popup--left-to-right .fly-popup__thumb {
  top: 50%;
  right: 0;
  width: 24px;
  height: 56px;
  transform: translateY(-50%);
  background-color: transparent;
}
.fly-popup--left-to-right .fly-popup__thumb::before {
  width: 3px;
  height: 40px;
  background-color: #3b82f6;
}
.fly-popup--right-to-left .fly-popup__window {
  position: fixed;
  top: 0;
  left: auto;
  height: 100%;
  width: 100%;
  padding: 0;
  transform: translate3d(100%, 0, 0);
  border-radius: 0;
}
.fly-popup--right-to-left .fly-popup__window > div:first-of-type {
  padding: 20px;
}
.fly-popup--right-to-left .fly-popup__thumb {
  top: 50%;
  left: 0;
  width: 24px;
  height: 56px;
  transform: translateY(-50%);
  background-color: transparent;
}
.fly-popup--right-to-left .fly-popup__thumb::before {
  width: 3px;
  height: 40px;
  background-color: #3b82f6;
}
.fly-popup__background {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 101;
}
.fly-popup__window {
  width: 90%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  z-index: 102;
  border-radius: 8px;
  box-sizing: border-box;
}
.fly-popup__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.fly-popup__close {
  display: flex;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.fly-popup__close svg {
  width: 70%;
  height: 70%;
  fill: #3b82f6;
}
.fly-popup__success-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.fly-popup__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  opacity: 0.3 !important;
  border-radius: 1.5px;
  background-color: #fff;
  touch-action: none;
}
.fly-popup__thumb::before {
  content: "";
  display: block;
  border-radius: 1.5px;
}
.fly-popup__loader {
  width: 100px;
  padding-top: 120px;
  margin: auto;
  text-align: center;
  line-height: 1;
  font-size: 1.6rem;
}
.fly-popup__close-confirm {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 106;
}
.fly-popup__close-confirm-background {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 106;
}
.fly-popup__close-confirm-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(500px, 100vw - 32px);
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  z-index: 107;
  border-radius: 8px;
  box-sizing: border-box;
}
.fly-popup__close-confirm-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}
.fly-popup__confirm-button {
  width: calc(33% - 10px);
}
.fly-popup__confirm {
  text-align: center;
}
.fly-popup__confirm-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.fly-popup__confirm-description {
  font-size: 1.5rem;
}
.fly-popup__confirm-footer {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.fly-popup__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}
.fly-popup__button--blue {
  background: #2563eb;
}
.fly-popup__button--red {
  background: #dc2626;
}
.fly-popup__button--gray {
  background: #64748b;
}

@media (min-width: 768px) {
  .fly-popup__window {
    width: 600px;
  }
  .fly-popup--left-to-right .fly-popup__window {
    width: 70%;
    border-radius: 0 30px 30px 0;
  }
  .fly-popup--right-to-left .fly-popup__window {
    width: 80%;
    border-radius: 30px 0 0 30px;
  }
}
@media (min-width: 1024px) {
  .fly-popup--left-to-right .fly-popup__window {
    width: 50%;
  }
  .fly-popup__thumb {
    display: none;
  }
}
@media (min-width: 1280px) {
  .fly-popup--left-to-right .fly-popup__window {
    width: 40%;
  }
}
@media (max-width: 767.98px) {
  .fly-popup__close {
    width: 40px;
    height: 40px;
  }
}
.notifier-container {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2000;
}

.notification {
  position: relative;
  background-color: var(--greenAccent);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
  transition: bottom 0.5s, opacity 0.5s;
  display: none;
  margin-bottom: 5px;
  overflow: hidden;
  font-size: 2rem;
}

.notification.show {
  display: block;
}

.notification-timer {
  background-color: #fff;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 5s linear;
}

.ui__btn {
  display: block;
  outline: none;
  border: none;
  font-size: 1.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 6px;
  white-space: nowrap;
  padding: 0.8em 1em;
  line-height: 1;
  text-transform: uppercase;
}
.ui__btn_primary_fill {
  color: #000;
  background-size: 200% auto;
  background-image: linear-gradient(to right, rgb(201, 150, 7) 0%, rgb(255, 209, 117) 50%, rgb(201, 150, 7) 100%);
  transition: 0.5s;
  border-radius: 12px;
  padding: 0.9em 1.5em;
}
.ui__btn_primary_fill:hover {
  color: #000;
  background-image: linear-gradient(to right, rgb(201, 150, 7) 0%, rgb(255, 209, 117) 50%, rgb(201, 150, 7) 100%) !important;
  background-position: right center;
}
.ui__btn_primary_outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--gold-600);
}
.ui__btn_primary_outline:hover {
  background-image: linear-gradient(to right, rgb(201, 150, 7) 0%, rgb(255, 209, 117) 50%, rgb(201, 150, 7) 100%) !important;
  color: var(--text-primary);
}
.ui__btn_primary_line {
  color: #000;
  background-color: rgba(248, 165, 0, 0.03);
  font-weight: 500;
  border: 1px solid var(--gold-600);
  transition: all 0.2s ease-out;
}
.ui__btn_primary_line:hover {
  background-image: linear-gradient(to right, rgb(201, 150, 7) 0%, rgb(255, 209, 117) 50%, rgb(201, 150, 7) 100%) !important;
  color: #fff;
}
.ui__btn .gold-btn-line {
  color: #000;
  background-color: rgba(248, 165, 0, 0.03);
  font-weight: 500;
  border: 1px solid var(--gold1);
  transition: all 0.2s ease-out;
}
.ui__btn .gold-btn-line:hover {
  background-color: var(--gold3);
  color: #fff;
}
.ui__btn_secondary_fill {
  background-color: var(--colorSecondPrimary);
  color: var(--textLight);
  border: 1px solid var(--colorSecondPrimary);
}
.ui__btn_secondary_outline {
  background-color: transparent;
  color: var(--colorSecondPrimary);
  border: 1px solid var(--colorSecondPrimary);
}
.ui__btn_warning_fill {
  background-color: var(--colorWarningPrimary);
  color: var(--textLight);
  border: 1px solid var(--colorWarningPrimary);
}
.ui__btn_warning_outline {
  background-color: transparent;
  color: var(--colorWarningPrimary);
  border: 1px solid var(--colorWarningPrimary);
}
.ui__btn_cancelling {
  color: var(--gray700);
}
.ui__button-with-toggle {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  position: relative;
  background-color: var(--colorSecondPrimary);
  color: var(--textLight);
  border: 1px solid var(--colorSecondPrimary);
  border-radius: 6px;
  z-index: 10;
}
.ui__button-with-toggle__main-btn {
  background: transparent;
  color: #fff;
  outline: none;
  border: none;
  font-size: 1.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  padding: 0.8em 1em;
  line-height: 1;
}
.ui__button-with-toggle__main-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}
.ui__button-with-toggle__toggle {
  position: relative;
  width: 40px;
  cursor: pointer;
}
.ui__button-with-toggle__toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}
.ui__button-with-toggle__toggle:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 5px solid #fff;
  border-radius: 2px;
}
.ui__button-with-toggle__toggle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #fff;
  height: 65%;
  margin: auto 0;
  opacity: 0.5;
}
.ui__button-with-toggle__toggle-list {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  right: 0;
  background: #fff;
  padding: 4px 6px;
  border-radius: 8px;
  box-shadow: var(--boxShadowPrimary);
}
.ui__button-with-toggle__toggle-list:after {
  content: "";
  position: absolute;
  top: -7px;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  border-radius: 2px;
}
.ui__button-with-toggle__toggle-list button {
  background: transparent;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 4px;
}
.ui__button-with-toggle__toggle-list button:hover {
  background: var(--gray200);
}
.ui__tooltip {
  position: absolute;
  width: 400px;
  z-index: 200;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
}
.ui__tooltip__content {
  max-height: 380px;
  overflow-y: auto;
  border-radius: 8px;
  font-size: 1.4rem !important;
  word-wrap: break-word !important;
}
.ui__tooltip:before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 18px;
}
.ui__tooltip.bottom:before {
  content: "";
  position: absolute;
  top: -18px;
  width: 100%;
  height: 18px;
}

.ui__input {
  display: block;
  font-size: 1.4rem;
  vertical-align: middle;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  font-family: inherit;
}
.ui__input_default {
  border: 1px solid var(--borderPrimary);
  border-radius: 6px;
  padding: 12px 12px 12px 16px;
  background: #fff;
  font-size: 1.6rem;
}
.ui__input_default::placeholder {
  color: var(--placeholderPrimary);
}
.ui__input_default:not([readonly]):focus {
  border: 1px solid var(--blue-500);
}
.ui__input_line {
  border: none;
  border-bottom: 1px solid var(--borderPrimary);
  padding: 4px 6px;
  font-size: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20.614' viewBox='0 0 20 20.614'%3E%3Cpath d='M21.082,13.456a7.913,7.913,0,1,0-1.076.979l5.96,5.96a.716.716,0,0,0,.508.218.7.7,0,0,0,.508-.218.737.737,0,0,0,0-1.028ZM8.641,8.016a6.565,6.565,0,1,1,6.565,6.565A6.571,6.571,0,0,1,8.641,8.016Z' transform='translate(-7.19)' fill='%23838a9d'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: right 4px bottom 5px;
}
.ui__input_line::placeholder {
  color: var(--placeholderPrimary);
}
.ui__input_line:focus {
  border-bottom: 1px solid var(--blue-500);
}
.ui__input_edited {
  font-size: 1.4rem !important;
  border: 1px solid var(--gray200) !important;
  padding: 0.3em 0.8em;
}
.ui__input:disabled {
  color: var(--gray500) !important;
  background: var(--gray200) !important;
  cursor: default;
}
.ui__input:read-only {
  background: var(--gray0);
  cursor: default;
}
.ui__flex-input {
  position: relative;
  margin-bottom: 10px;
}
.ui__flex-input label {
  display: flex;
  align-items: center;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  font-size: 1.6rem;
  color: var(--gray600);
  transform: translateY(0);
  transition: transform 0.3s ease, font-size 0.3s ease, color 0.3s ease;
  pointer-events: none;
  user-select: none;
}
.ui__flex-input input {
  height: auto;
  width: 100%;
  vertical-align: middle;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-radius: 6px;
  border: 1px solid var(--borderPrimary);
  padding: 20px 20px 8px 20px;
  background: #fff;
  font-size: 1.6rem;
}
.ui__flex-input input:focus + label, .ui__flex-input input:not(:placeholder-shown) + label {
  transform: translateY(-13px);
  font-size: 1.2rem;
}
.ui__flex-textarea {
  position: relative;
  border-radius: 6px;
  border: 1px solid var(--borderPrimary);
  background: #fff;
  padding: 20px 20px 8px 20px;
}
.ui__flex-textarea label {
  display: flex;
  align-items: center;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  font-size: 1.6rem;
  color: var(--gray600);
  transform: translateY(0);
  transition: transform 0.3s ease, font-size 0.3s ease, color 0.3s ease;
  pointer-events: none;
  user-select: none;
}
.ui__flex-textarea textarea {
  height: auto;
  resize: none;
  width: 100%;
  vertical-align: middle;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  max-height: 90px;
  height: 1em;
}
.ui__flex-textarea textarea:focus + label, .ui__flex-textarea textarea:not(:placeholder-shown) + label {
  transform: translateY(-20px);
  font-size: 1.2rem;
}

/* Коробка и обнуление отступов по умолчанию */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  font-size: var(--font-size-root, 10px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  font: var(--font-size-base, 1.4rem)/1.5 var(--font-family);
  font-optical-sizing: auto;
  font-synthesis: none;
  color: var(--text-primary);
  background-color: #141210;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Типографика */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75em;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.4rem;
}

p,
ul,
ol,
dl,
blockquote,
pre,
table,
figure {
  margin: 0 0 1rem;
}

small {
  font-size: 85%;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

mark {
  background: #fff59d;
  color: inherit;
}

sup,
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.4em;
}

sub {
  bottom: -0.2em;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 1em;
}

pre {
  overflow: auto;
  background: rgba(0, 0, 0, 0.03);
  padding: 0.75rem;
  border-radius: 0.5rem;
}

/* Списки */
ul,
ol {
  padding-left: 1.6rem;
}

li {
  margin: 0.25rem 0;
}

/* Ссылки */
a {
  color: var(--gold-600);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--gold-100);
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--gold-100);
  outline-offset: 2px;
  border-radius: 0.2rem;
}

/* Изображения и медиа */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

svg {
  fill: currentColor;
}

/* Таблицы */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-300);
}

thead th {
  background: var(--bg-muted);
}

/* Формы — базовый, нейтральный вид */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.25rem;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=password],
input[type=number],
input[type=url],
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  background: var(--bg-surface);
  outline: none;
  transition: border-color 0.15s ease;
}

textarea {
  resize: vertical;
  min-height: 8rem;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.8;
}

/* используем outline вместо box-shadow, чтобы не плодить лишние токены */
:focus-visible:is(input, textarea, select) {
  border-color: var(--link);
  outline: 2px solid var(--link);
  outline-offset: 2px;
}

:disabled:is(input, textarea, select, button) {
  opacity: 0.6;
  cursor: not-allowed;
}

button {
  cursor: pointer;
  border: 1px solid var(--gray-300);
  background: var(--bg-surface);
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

button:hover {
  background: var(--bg-muted);
}

/* Блоки */
hr {
  height: 1px;
  border: 0;
  background: var(--gray-300);
  margin: 1.5rem 0;
}

blockquote {
  border-left: 3px solid var(--gray-300);
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 0.25rem;
}

/* Встраиваемое */
iframe {
  border: none;
}

/* Контейнер (минимум, чтобы не мешать) */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Поддержка сниженной анимации — без вмешательства в дизайн */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.block-title {
  margin-bottom: 20px;
}
.block-title h2 {
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.block-title__lead {
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--gray-600);
}

@font-face {
  font-family: "Futura PT";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Bold.eot");
  src: local("Futura PT Bold"), local("FuturaPT-Bold"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Bold.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Bold.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Bold.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Futura PT";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Heavy.eot");
  src: local("Futura PT Heavy"), local("FuturaPT-Heavy"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Heavy.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Heavy.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Heavy.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Futura PT Demi";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-DemiObl.eot");
  src: local("Futura PT Demi Oblique"), local("FuturaPT-DemiObl"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-DemiObl.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-DemiObl.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-DemiObl.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-DemiObl.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Futura PT Cond Extra";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-ExtraBoldObl.eot");
  src: local("Futura PT Cond Extra Bold Oblique"), local("FuturaPTCond-ExtraBoldObl"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-ExtraBoldObl.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-ExtraBoldObl.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-ExtraBoldObl.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-ExtraBoldObl.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Futura PT Cond Book";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Book.eot");
  src: local("Futura PT Cond Book"), local("FuturaPTCond-Book"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Book.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Book.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Book.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Futura PT";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-LightObl.eot");
  src: local("Futura PT Light Oblique"), local("FuturaPT-LightObl"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-LightObl.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-LightObl.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-LightObl.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-LightObl.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Futura PT Book";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-BookObl.eot");
  src: local("Futura PT Book Oblique"), local("FuturaPT-BookObl"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-BookObl.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-BookObl.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-BookObl.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-BookObl.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Futura PT";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-HeavyObl.eot");
  src: local("Futura PT Heavy Oblique"), local("FuturaPT-HeavyObl"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-HeavyObl.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-HeavyObl.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-HeavyObl.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-HeavyObl.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Futura PT Cond";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-BoldObl.eot");
  src: local("Futura PT Cond Bold Oblique"), local("FuturaPTCond-BoldObl"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-BoldObl.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-BoldObl.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-BoldObl.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-BoldObl.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Futura PT Demi";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Demi.eot");
  src: local("Futura PT Demi"), local("FuturaPT-Demi"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Demi.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Demi.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Demi.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Demi.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Futura PT Cond Book";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-BookObl.eot");
  src: local("Futura PT Cond Book Oblique"), local("FuturaPTCond-BookObl"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-BookObl.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-BookObl.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-BookObl.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-BookObl.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Futura PT Extra";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-ExtraBold.eot");
  src: local("Futura PT Extra Bold"), local("FuturaPT-ExtraBold"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-ExtraBold.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-ExtraBold.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Futura PT Cond";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Medium.eot");
  src: local("Futura PT Cond Medium"), local("FuturaPTCond-Medium"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Medium.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Medium.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Medium.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Futura PT";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Medium.eot");
  src: local("Futura PT Medium"), local("FuturaPT-Medium"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Medium.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Medium.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Medium.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Futura PT Cond Extra";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-ExtraBold.eot");
  src: local("Futura PT Cond Extra Bold"), local("FuturaPTCond-ExtraBold"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-ExtraBold.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-ExtraBold.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Futura PT";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-MediumObl.eot");
  src: local("Futura PT Medium Oblique"), local("FuturaPT-MediumObl"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-MediumObl.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-MediumObl.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-MediumObl.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-MediumObl.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Futura PT Cond";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Bold.eot");
  src: local("Futura PT Cond Bold"), local("FuturaPTCond-Bold"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Bold.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Bold.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Bold.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Futura PT";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-BoldObl.eot");
  src: local("Futura PT Bold Oblique"), local("FuturaPT-BoldObl"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-BoldObl.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-BoldObl.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-BoldObl.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-BoldObl.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Futura PT";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Book.eot");
  src: local("Futura PT Book"), local("FuturaPT-Book"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Book.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Book.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Book.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Futura PT";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Light.eot");
  src: local("Futura PT Light"), local("FuturaPT-Light"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Light.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Light.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Light.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Futura PT Cond";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-MediumObl.eot");
  src: local("Futura PT Cond Medium Oblique"), local("FuturaPTCond-MediumObl"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-MediumObl.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-MediumObl.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-MediumObl.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPTCond-MediumObl.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Futura PT Extra";
  src: url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-ExtraBoldObl.eot");
  src: local("Futura PT Extra Bold Oblique"), local("FuturaPT-ExtraBoldObl"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-ExtraBoldObl.eot?#iefix") format("embedded-opentype"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-ExtraBoldObl.woff2") format("woff2"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-ExtraBoldObl.woff") format("woff"), url("../../../Firefly/core/fonts/FuturaPT/FuturaPT-ExtraBoldObl.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../../../Firefly/core/fonts/Poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../../../Firefly/core/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../../../Firefly/core/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../../../Firefly/core/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../../../Firefly/core/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../../../Firefly/core/fonts/Poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../../../Firefly/core/fonts/Poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/* =========================================================
   BanyaGo Design Tokens
   ========================================================= */
:root {
  /* =========================
     COLORS: NEUTRAL
     ========================= */
  --white: #ffffff;
  --black: #000000;
  --gray-0: #fcfcfb;
  --gray-50: #f8f8f6;
  --gray-100: #f2f2ef;
  --gray-200: #e7e6e1;
  --gray-300: #d8d6cf;
  --gray-400: #aaa79e;
  --gray-500: #817e76;
  --gray-600: #66635d;
  --gray-700: #4a4843;
  --gray-800: #302f2c;
  --gray-900: #1c1c1a;
  /* =========================
     COLORS: BRAND
     ========================= */
  --orange-50: #fff1e4;
  --orange-100: #feead8;
  --orange-200: #fbd1ad;
  --orange-300: #f5ae76;
  --orange-400: #eb893d;
  --orange-500: #d96f18;
  --orange-600: #c15d10;
  --orange-700: #9f470d;
  --orange-800: #7f390f;
  --orange-900: #672f10;
  /* gold */
  --gold-100: #ffc552;
  --gold-500: #ffd200;
  --gold-600: #f8a500;
  /* =========================
     COLORS: SUCCESS
     ========================= */
  --green-50: #f0f8f3;
  --green-100: #dcefe2;
  --green-200: #b9dfc5;
  --green-300: #8bc99f;
  --green-400: #61ad7b;
  --green-500: #3f8a5b;
  --green-600: #32734a;
  --green-700: #295d3d;
  --green-800: #234b34;
  --green-900: #1e3e2c;
  /* =========================
     COLORS: DANGER
     ========================= */
  --red-50: #fff4f3;
  --red-100: #ffe3df;
  --red-200: #ffc9c2;
  --red-300: #fca39a;
  --red-400: #eb7569;
  --red-500: #d65245;
  --red-600: #bd4035;
  --red-700: #9b342c;
  --red-800: #7f2d27;
  --red-900: #692923;
  /* =========================
     COLORS: WARNING
     ========================= */
  --yellow-50: #fff9eb;
  --yellow-100: #fef0c7;
  --yellow-200: #fddd8a;
  --yellow-300: #fac44d;
  --yellow-400: #efa923;
  --yellow-500: #d99216;
  --yellow-600: #b9710f;
  --yellow-700: #94540f;
  --yellow-800: #793f12;
  --yellow-900: #653513;
  /* =========================
     COLORS: INFO
     ========================= */
  --blue-50: #f2f7fb;
  --blue-100: #dcebf5;
  --blue-200: #b9d7e9;
  --blue-300: #8bbbd5;
  --blue-400: #649bbb;
  --blue-500: #477d9f;
  --blue-600: #396884;
  --blue-700: #31566d;
  --blue-800: #2d495b;
  --blue-900: #293e4c;
  /* =========================
     TYPOGRAPHY
     ========================= */
  --font-family:
    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol';
  --font-size-root: 10px;
  --font-size-base: 1.4rem;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  /* =========================
     RADII
     ========================= */
  --radius-sm: 1rem;
  --radius-md: 1.6rem;
  --radius-lg: 2.4rem;
  --radius-pill: 999rem;
  /* =========================
     SHADOWS
     ========================= */
  --shadow-sm: 0 12px 40px rgba(31, 35, 40, 0.08);
  --shadow-md: 0 12px 32px rgba(28, 28, 26, 0.1);
  --shadow-lg: 0 20px 50px rgba(28, 28, 26, 0.14);
  /* =========================
     BASE SEMANTIC
     ========================= */
  --bg-page: var(--gray-50);
  --bg-surface: var(--white);
  --text-primary: #D8D4CF;
  --text-secondary: #A9A39C;
  --text-muted: var(--gray-500);
  --text-inverse: var(--white);
  --border-color: var(--gray-200);
}

.header {
  position: relative;
  z-index: 10;
  padding: 14px 0;
  background: #080b16;
}
@media (min-width: 1200px) {
  .header {
    padding: 22px 0;
  }
}
.header--home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
}
.header__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  grid-template-areas: "H_logo H_contacts H_humb";
  align-items: center;
  gap: 14px;
}
@media (min-width: 1200px) {
  .header__grid {
    grid-template-columns: 180px minmax(0, 1fr) auto auto;
    grid-template-areas: "H_logo H_menu H_contacts H_cta";
    gap: 28px;
  }
}
.header__logo {
  grid-area: H_logo;
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  background: url("/Firefly/templates/default/assets/images/logo-mini-white.svg") no-repeat left center/contain;
}
@media (min-width: 1200px) {
  .header__logo {
    width: 18rem;
    height: 5.6rem;
    background-image: url("/Firefly/templates/default/assets/images/logo_horizontal.svg");
  }
}
.header__contacts {
  grid-area: H_contacts;
  text-align: right;
}
.header__phone {
  white-space: nowrap;
}
.header__phone a {
  display: block;
  color: var(--gold-100);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  width: auto;
  height: auto;
  padding-left: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.201 18.235'%3E%3Cpath d='M18.639,20.735c-.067,0-.134,0-.2-.009h-.009a17.7,17.7,0,0,1-7.682-2.733,17.473,17.473,0,0,1-5.339-5.34,17.7,17.7,0,0,1-2.73-7.714V4.93A2.23,2.23,0,0,1,4.9,2.5H7.508A2.24,2.24,0,0,1,9.715,4.418a10.632,10.632,0,0,0,.579,2.325,2.236,2.236,0,0,1-.5,2.351l-.827.827A13.346,13.346,0,0,0,13.447,14.4l.825-.825a2.229,2.229,0,0,1,2.354-.5,10.618,10.618,0,0,0,2.32.578,2.231,2.231,0,0,1,1.922,2.257V18.5a2.23,2.23,0,0,1-2.23,2.237Z' transform='translate(-2.668 -2.5)' fill='%23ffc552'/%3E%3C/svg%3E") no-repeat center/2rem;
  background-position: left center;
  background-size: 1.5rem;
}
@media (min-width: 1200px) {
  .header__phone a {
    width: auto;
    height: auto;
    padding-left: 26px;
    color: var(--white);
    font-size: 2rem;
    background-size: 1.6rem;
  }
}
.header__city {
  display: none;
}
@media (min-width: 1200px) {
  .header__city {
    display: inline-block;
    margin-top: 4px;
    color: var(--gold-100);
    font-size: 1.4rem;
  }
}
.header__cta {
  display: none;
  grid-area: H_cta;
  white-space: nowrap;
  font-size: 1.4rem;
}
@media (min-width: 1200px) {
  .header__cta {
    display: inline-block;
  }
}
.header__humb-container {
  grid-area: H_humb;
  position: relative;
  display: grid;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-100);
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  outline: none;
}
@media (min-width: 1200px) {
  .header__humb-container {
    display: none;
  }
}
.header__humb {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  background: var(--gold-100);
  border-radius: 8px;
}
.header__humb div {
  width: 100%;
  height: 100%;
}
.header__humb:before, .header__humb:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: var(--gold-100);
}
.header__humb:before {
  top: -8px;
}
.header__humb:after {
  top: 8px;
}

.footer {
  background: #0E0A08;
  padding: 60px 0;
}
@media (max-width: 767.98px) {
  .footer {
    padding: 40px 0;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .footer__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer__logo {
  display: block;
  background-image: url("/Firefly/templates/default/assets/images/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 30px;
  height: 12rem;
}
@media (min-width: 768px) {
  .footer__logo {
    background-position: left center;
    margin-top: 0;
    height: 12rem;
  }
}
.footer__adress ul {
  list-style: none;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .footer__adress ul {
    text-align: center;
  }
}
.footer__adress ul li {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  color: #fff;
  padding: 3px 0;
}
@media (max-width: 767.98px) {
  .footer__adress ul li {
    justify-content: center;
  }
}
.footer__adress ul li svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}
.footer__adress ul li a {
  line-height: 2;
  padding-bottom: 3px;
  border-bottom: 1px dotted var(--gold-100);
  color: var(--gold-100);
}
.footer__title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--white);
}
@media (max-width: 767.98px) {
  .footer__title {
    text-align: center;
    font-size: 1.6rem;
  }
}
.footer__phone {
  display: block;
  color: var(--gold-100);
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .footer__phone {
    text-align: center;
  }
}
.footer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767.98px) {
  .footer__actions {
    align-items: center;
    gap: 16px;
  }
}
.footer__actions .ui__btn {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.8rem;
  background-color: transparent;
  color: var(--text-inverse);
  border: 1px solid var(--white);
  margin-bottom: 30px;
}
.footer__actions .ui__btn:hover {
  background-color: var(--white);
  color: var(--text-primary);
}
@media (max-width: 767.98px) {
  .footer__actions .ui__btn {
    margin-bottom: 0;
    font-size: 1.6rem;
    padding: 0.9em 1.6em;
  }
}
.footer__social {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
@media (max-width: 767.98px) {
  .footer__social {
    justify-content: center;
  }
}
.footer__social svg {
  width: 50px;
  height: 50px;
}
@media (max-width: 767.98px) {
  .footer__social svg {
    width: 44px;
    height: 44px;
  }
}
.footer__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .footer__stats {
    justify-content: center;
  }
}
.footer__feed-ico {
  margin-top: 10px;
  display: block;
  width: 60%;
  height: 70px;
  background-image: url("/Firefly/templates/default/assets/images/ya.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  opacity: 0.9;
}
@media (max-width: 767.98px) {
  .footer__feed-ico {
    width: 50%;
  }
}
.footer__stats-item {
  width: 20%;
}
@media (max-width: 767.98px) {
  .footer__stats-item {
    width: 40%;
  }
}
.footer__stats-item img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  -o-object-fit: contain;
}

.map {
  margin-top: 80px;
  position: relative;
}
.map__box {
  position: relative;
  min-height: 400px;
  padding: 30px 0;
}
.map__box .map__contacts {
  position: relative;
  z-index: 3;
  background: #231c1c;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px;
  text-align: center;
  max-width: 500px;
}
.map__box .map__contacts .map__logo {
  display: block;
  height: 10rem;
  width: 100%;
  background: url("/Firefly/templates/default/assets/images/logo.svg") no-repeat center;
  background-size: contain;
}
.map__box .map__contacts .map__contacts-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  padding-top: 30px;
  padding-bottom: 5px;
}
.map__box .map__contacts p {
  padding: 5px;
  margin: 0;
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.78);
}
.map__box .map__contacts .vd__btn {
  margin-top: 30px;
}
.map__ya {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  margin-top: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .map__ya {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    margin-top: 0;
  }
}
.map__ya iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .map__ya {
    min-height: 400px;
  }
  .map__ya iframe {
    min-height: 400px;
  }
}
.map .ui__btn {
  display: inline-block;
  margin-top: 20px;
}

.block-title {
  position: relative;
  margin-top: 80px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.block-title:after {
  content: "";
  height: 2px;
  width: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: var(--gold3);
}
.block-title h2 {
  font-size: 2.4rem;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 900;
}
@media (min-width: 768px) {
  .block-title h2 {
    font-size: 3rem;
  }
}
.block-title h2 span {
  color: var(--gold3);
}
.block-title a {
  display: inline-block;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--blue1);
}
.block-title a:hover {
  border-bottom: 1px solid var(--blue2);
}
.block-title p {
  font-size: 1.5rem;
  color: var(--gray600);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .block-title p {
    height: 0;
  }
}

.page-title h1 {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--text-primary);
}
@media (min-width: 992px) {
  .page-title h1 {
    margin: 0 0 30px;
  }
}

.block-title {
  position: relative;
  margin-top: 80px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.block-title:after {
  content: "";
  height: 2px;
  width: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: var(--gold-600);
}
.block-title h2,
.block-title .h2 {
  font-size: 2.4rem;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 900;
}
@media (min-width: 768px) {
  .block-title h2,
  .block-title .h2 {
    font-size: 3rem;
  }
}
.block-title h2 span,
.block-title .h2 span {
  color: var(--gold-600);
}
.block-title h2.white,
.block-title .h2.white {
  color: var(--white);
}
.block-title a {
  display: inline-block;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--blue-500);
}
.block-title a:hover {
  border-bottom: 1px solid var(--blue-600);
}
.block-title p {
  font-size: 1.5rem;
  color: var(--gray600);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .block-title p {
    height: 0;
  }
}

.fly-popup__close svg {
  fill: var(--white) !important;
}

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