:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1024px) {
  :root {
    --container-size: 6.25vw;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(0);
  transition: visibility 0.3s ease, opacity 0.3s ease, backdrop-filter 0.3s ease, transform 0.3s ease;
}
.modal--open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  backdrop-filter: blur(16px);
}
.modal--open .modal__body {
  transform: scale(1);
}
.modal__body {
  position: relative;
  width: 60%;
  height: 80%;
  overflow-y: auto;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
}
.modal__close::before, .modal__close::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #fff;
}
.modal__close::before {
  transform: rotate(45deg);
}
.modal__close::after {
  transform: rotate(-45deg);
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1024px) {
  :root {
    --container-size: 6.25vw;
  }
}

.feedback-modal .modal__body {
  width: 100%;
  height: 100%;
  background-color: #050505;
  border-radius: 0;
}
.feedback-modal .modal__close {
  display: none;
}
.feedback-modal.modal--open .modal__body {
  transform: none;
}
.feedback-modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 88px 20px 40px;
}
@media screen and (width >= 768px) {
  .feedback-modal__inner {
    padding: 100px 40px 40px;
  }
}
@media screen and (width >= 1024px) {
  .feedback-modal__inner {
    padding: 2.0833333333vw 3.125vw;
  }
}
.feedback-modal__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.feedback-modal__decor-sphere {
  position: absolute;
  opacity: 0.55;
}
@media (prefers-reduced-motion: no-preference) {
  .feedback-modal__decor-sphere {
    animation: fm-decor-float 8s ease-in-out infinite;
  }
}
.feedback-modal__decor-sphere--tl {
  top: -30px;
  left: -60px;
  width: 170px;
  height: 170px;
}
@media screen and (width >= 768px) {
  .feedback-modal__decor-sphere--tl {
    width: 220px;
    height: 220px;
  }
}
@media screen and (width >= 1024px) {
  .feedback-modal__decor-sphere--tl {
    top: -2.0833333333vw;
    left: -4.6875vw;
    width: 13.5416666667vw;
    height: 13.5416666667vw;
  }
}
.feedback-modal__decor-sphere--br {
  right: -40px;
  bottom: 80px;
  width: 110px;
  height: 110px;
  opacity: 0.4;
  animation-duration: 10s;
  animation-delay: -4s;
}
@media screen and (width >= 768px) {
  .feedback-modal__decor-sphere--br {
    bottom: 100px;
    width: 150px;
    height: 150px;
  }
}
@media screen and (width >= 1024px) {
  .feedback-modal__decor-sphere--br {
    right: -3.125vw;
    bottom: 6.7708333333vw;
    width: 9.8958333333vw;
    height: 9.8958333333vw;
  }
}
.feedback-modal__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 460px;
}
@media screen and (width >= 768px) {
  .feedback-modal__content {
    max-width: 558px;
  }
}
@media screen and (width >= 1024px) {
  .feedback-modal__content {
    gap: 2.0833333333vw;
    width: 29.0625vw;
    max-width: none;
  }
}
.feedback-modal__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (width >= 1024px) {
  .feedback-modal__head {
    gap: 1.0416666667vw;
  }
}
.feedback-modal__title {
  font-family: "Neue Machina", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .feedback-modal__title {
    font-size: 48px;
  }
}
@media screen and (width >= 1024px) {
  .feedback-modal__title {
    font-size: 2.5vw;
  }
}
.feedback-modal__text {
  max-width: 460px;
  font-family: "Neue Machina", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #b3c5c5;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .feedback-modal__text {
    font-size: 16px;
  }
}
@media screen and (width >= 1024px) {
  .feedback-modal__text {
    font-size: max(0.8333333333vw, 14px);
  }
}
@media screen and (width >= 1024px) {
  .feedback-modal__text {
    max-width: 29.0625vw;
  }
}
.feedback-modal__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (width >= 768px) {
  .feedback-modal__form {
    gap: 40px;
  }
}
@media screen and (width >= 1024px) {
  .feedback-modal__form {
    gap: 2.0833333333vw;
  }
}
.feedback-modal__field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (width >= 1024px) {
  .feedback-modal__field {
    gap: 0.4166666667vw;
  }
}
.feedback-modal__label {
  font-family: "Neue Machina", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.06em;
}
@media screen and (width >= 1024px) {
  .feedback-modal__label {
    font-size: max(0.6770833333vw, 13px);
  }
}
.feedback-modal__input {
  width: 100%;
  padding: 12px 0;
  font-family: "Neue Machina", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.03em;
}
@media screen and (width >= 1024px) {
  .feedback-modal__input {
    font-size: max(0.8333333333vw, 15px);
  }
}
.feedback-modal__input {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease;
}
@media screen and (width >= 1024px) {
  .feedback-modal__input {
    padding: 0.8333333333vw 0;
  }
}
.feedback-modal__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.feedback-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.feedback-modal__input:focus {
  border-bottom-color: #fff;
}
.feedback-modal__field[data-status=field--active] .feedback-modal__input, .feedback-modal__field.selected .feedback-modal__input {
  border-bottom-color: #ed0057;
}
.feedback-modal__field[data-status=field--error] .feedback-modal__input {
  border-bottom-color: #ff5a5f;
}
.feedback-modal__field[data-status=field--error] .feedback-modal__checkbox-box {
  border-color: #ff5a5f;
}
.feedback-modal__error {
  font-family: "Neue Machina", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #ff5a5f;
  letter-spacing: -0.03em;
}
@media screen and (width >= 1024px) {
  .feedback-modal__error {
    font-size: max(0.625vw, 12px);
  }
}
.feedback-modal__error:empty {
  display: none;
}
.feedback-modal__checkbox {
  position: relative;
  display: inline-flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}
@media screen and (width >= 1024px) {
  .feedback-modal__checkbox {
    gap: 0.625vw;
  }
}
.feedback-modal__checkbox-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}
@media screen and (width >= 1024px) {
  .feedback-modal__checkbox-input {
    width: 1.25vw;
    height: 1.25vw;
  }
}
.feedback-modal__checkbox-box {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #d9d9d9;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (width >= 1024px) {
  .feedback-modal__checkbox-box {
    width: 1.25vw;
    height: 1.25vw;
  }
}
.feedback-modal__checkbox-icon {
  width: 14px;
  height: 11px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}
@media screen and (width >= 1024px) {
  .feedback-modal__checkbox-icon {
    width: 0.7291666667vw;
    height: 0.5729166667vw;
  }
}
.feedback-modal__checkbox-input:checked ~ .feedback-modal__checkbox-box {
  background-color: #ed0057;
  border-color: #ed0057;
}
.feedback-modal__checkbox-input:checked ~ .feedback-modal__checkbox-box .feedback-modal__checkbox-icon {
  opacity: 1;
}
.feedback-modal__checkbox-input:focus-visible ~ .feedback-modal__checkbox-box {
  outline: 2px solid #ed0057;
  outline-offset: 2px;
}
.feedback-modal__checkbox-text {
  max-width: 307px;
  font-family: "Neue Machina", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.03em;
}
@media screen and (width >= 1024px) {
  .feedback-modal__checkbox-text {
    font-size: max(0.625vw, 12px);
  }
}
@media screen and (width >= 1024px) {
  .feedback-modal__checkbox-text {
    max-width: 15.9895833333vw;
  }
}
.feedback-modal__submit {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  padding: 18px 40px;
  margin-top: 8px;
  font-family: "Neue Machina", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
@media screen and (width >= 1024px) {
  .feedback-modal__submit {
    font-size: max(0.8333333333vw, 15px);
  }
}
.feedback-modal__submit {
  background-color: #ed0057;
  border-radius: 100px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media screen and (width >= 1024px) {
  .feedback-modal__submit {
    gap: 0.4166666667vw;
    padding: 1.0416666667vw 2.0833333333vw;
    margin-top: 1.0416666667vw;
    border-radius: 5.2083333333vw;
  }
}
@media (hover: hover) {
  .feedback-modal__submit:hover {
    background-color: #cf004c;
  }
  .feedback-modal__submit:hover .feedback-modal__submit-icon {
    transform: translateX(4px);
  }
}
.feedback-modal__submit:active {
  transform: scale(0.98);
}
.feedback-modal__submit[disabled] {
  pointer-events: none;
  opacity: 0.6;
}
.feedback-modal__field--checkbox + .feedback-modal__submit {
  margin-top: -16px;
}
@media screen and (width >= 1024px) {
  .feedback-modal__field--checkbox + .feedback-modal__submit {
    margin-top: -0.8333333333vw;
  }
}
.feedback-modal__submit-icon {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #fff;
  transition: transform 0.3s ease;
}
@media screen and (width >= 1024px) {
  .feedback-modal__submit-icon {
    width: 1.25vw;
    height: 1.25vw;
  }
}
.feedback-modal__footer {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (width >= 1024px) {
  .feedback-modal__footer {
    right: 2.0833333333vw;
    left: 2.0833333333vw;
  }
}
.feedback-modal__footer-text {
  min-width: 0;
  font-family: "Neue Machina", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .feedback-modal__footer-text {
    font-size: 13px;
  }
}
@media screen and (width >= 1024px) {
  .feedback-modal__footer-text {
    font-size: max(0.6770833333vw, 13px);
  }
}
.feedback-modal__logo {
  z-index: 2;
  flex-shrink: 0;
}
.feedback-modal__logo svg {
  display: block;
  width: 48px;
  height: 51px;
}
@media screen and (width >= 1024px) {
  .feedback-modal__logo svg {
    width: 2.9166666667vw;
    height: 3.125vw;
  }
}
.feedback-modal__close {
  position: absolute;
  top: -68px;
  right: 0;
  z-index: 2;
  width: 48px;
  height: 48px;
  background-color: #ed0057;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media screen and (width >= 1024px) {
  .feedback-modal__close {
    top: -3.3854166667vw;
    right: -6.5104166667vw;
    width: 3.3854166667vw;
    height: 3.3854166667vw;
  }
}
.feedback-modal__close::before, .feedback-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  content: "";
  background-color: #fff;
}
@media screen and (width >= 1024px) {
  .feedback-modal__close::before, .feedback-modal__close::after {
    width: 0.9375vw;
  }
}
.feedback-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.feedback-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (hover: hover) {
  .feedback-modal__close:hover {
    background-color: #cf004c;
    transform: rotate(90deg);
  }
}

@keyframes fm-decor-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1024px) {
  :root {
    --container-size: 6.25vw;
  }
}

.thanks-modal .modal__body {
  width: min(90vw, 400px);
  height: auto;
  padding: 40px;
  background-color: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}
@media screen and (width >= 1024px) {
  .thanks-modal .modal__body {
    width: 23.9583333333vw;
    padding: 2.5vw;
    border-radius: 1.25vw;
  }
}
.thanks-modal .modal__close {
  display: none;
}
.thanks-modal.modal--open {
  background-color: rgba(5, 5, 5, 0.6);
}
.thanks-modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media screen and (width >= 1024px) {
  .thanks-modal__content {
    gap: 0.8333333333vw;
  }
}
.thanks-modal__title {
  font-family: "Neue Machina", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
@media screen and (width >= 1024px) {
  .thanks-modal__title {
    font-size: 1.6666666667vw;
  }
}
.thanks-modal__text {
  font-family: "Neue Machina", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #b3c5c5;
  letter-spacing: -0.03em;
}
@media screen and (width >= 1024px) {
  .thanks-modal__text {
    font-size: 0.8333333333vw;
  }
}
.thanks-modal__button {
  padding: 16px 40px;
  margin-top: 8px;
  font-family: "Neue Machina", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  background-color: #ed0057;
  border-radius: 100px;
  transition: background-color 0.3s ease;
}
@media screen and (width >= 1024px) {
  .thanks-modal__button {
    padding: 0.9375vw 2.0833333333vw;
    margin-top: 0.4166666667vw;
    font-size: 0.8333333333vw;
    border-radius: 5.2083333333vw;
  }
}
@media (hover: hover) {
  .thanks-modal__button:hover {
    background-color: #cf004c;
  }
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1024px) {
  :root {
    --container-size: 6.25vw;
  }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
}

q,
blockquote {
  quotes: none;
}

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

a img {
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

* {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

*::after,
*::before {
  box-sizing: border-box;
  line-height: 1;
  outline: none;
  border: none;
}

body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
}

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

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

.debug {
  z-index: 999999;
  position: fixed;
  width: 100%;
  height: 100vh;
}
.debug > div {
  height: inherit;
  max-width: 1920px;
  margin: 0 auto;
  padding-right: 60px;
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  .debug > div {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.debug > div > div {
  height: inherit;
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}
.debug > div > div > div {
  box-sizing: border-box;
  overflow-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(4.1666666667% - 20px);
  height: inherit;
  outline: 1px solid #ff0;
  background: rgba(0, 0, 0, 0.5);
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  font-size: 14px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden !important;
  font-family: "Neue Machina", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

body input,
body textarea {
  outline: none;
  border: #666 1px solid;
}

/* Track */
/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 20px;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

:placeholder {
  color: #ccc;
}

::input-placeholder {
  color: #ccc;
}

:input-placeholder {
  color: #ccc;
}

::input-placeholder {
  color: #ccc;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  border-color: red;
}

body input:required:valid,
body textarea:required:valid {
  border-color: green;
}

img {
  display: block;
  width: 100%;
}

body *:focus {
  outline: none;
}

body.focus-tab--enable *:focus {
  outline: #4d90fe auto 7px;
  outline-offset: -2px;
}

button {
  padding: 0;
  margin: 0;
  background: none;
  border: navajowhite;
}

button:hover,
a:hover,
select:hover {
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .intl-tel-input.allow-dropdown .flag-container,
  .intl-tel-input.separate-dial-code .flag-container {
    left: 5%;
  }
}

@media screen and (max-width: 1200px) {
  .intl-tel-input.allow-dropdown input,
  .intl-tel-input.allow-dropdown input[type=tel],
  .intl-tel-input.allow-dropdown input[type=text],
  .intl-tel-input.separate-dial-code input,
  .intl-tel-input.separate-dial-code input[type=tel],
  .intl-tel-input.separate-dial-code input[type=text] {
    padding-left: 95px;
  }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

.container--full-screen {
  width: 100%;
  height: 100vh;
  max-height: none;
  padding: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

.thumbs__item {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-white);
  border-radius: 4px;
  opacity: 1;
  transform-origin: center;
  transition: width 0.25s ease-out;
}
.thumbs__item[class*=active] {
  width: 16px;
  background-color: var(--color-blue);
}
.thumbs > :nth-child(n+2) {
  margin-left: 8px;
}

@font-face {
  font-family: "Neue Machina";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/NeueMachina-Ultralight.eot");
  src: url("../fonts/NeueMachina-Ultralight.eot?#iefix") format("embedded-opentype"), url("../fonts/NeueMachina-Ultralight.woff2") format("woff2"), url("../fonts/NeueMachina-Ultralight.woff") format("woff"), url("../fonts/NeueMachina-Ultralight.ttf") format("truetype");
}
@font-face {
  font-family: "Neue Machina";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/NeueMachina-Light.eot");
  src: url("../fonts/NeueMachina-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/NeueMachina-Light.woff2") format("woff2"), url("../fonts/NeueMachina-Light.woff") format("woff"), url("../fonts/NeueMachina-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Neue Machina";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/NeueMachina-Regular.eot");
  src: url("../fonts/NeueMachina-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/NeueMachina-Regular.woff2") format("woff2"), url("../fonts/NeueMachina-Regular.woff") format("woff"), url("../fonts/NeueMachina-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Neue Machina";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NeueMachina-Medium.eot");
  src: url("../fonts/NeueMachina-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/NeueMachina-Medium.woff2") format("woff2"), url("../fonts/NeueMachina-Medium.woff") format("woff"), url("../fonts/NeueMachina-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Neue Machina";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/NeueMachina-Bold.eot");
  src: url("../fonts/NeueMachina-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/NeueMachina-Bold.woff2") format("woff2"), url("../fonts/NeueMachina-Bold.woff") format("woff"), url("../fonts/NeueMachina-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Neue Machina";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/NeueMachina-Ultrabold.eot");
  src: url("../fonts/NeueMachina-Ultrabold.eot?#iefix") format("embedded-opentype"), url("../fonts/NeueMachina-Ultrabold.woff2") format("woff2"), url("../fonts/NeueMachina-Ultrabold.woff") format("woff"), url("../fonts/NeueMachina-Ultrabold.ttf") format("truetype");
}
@font-face {
  font-family: "Neue Machina";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/NeueMachina-Black.eot");
  src: url("../fonts/NeueMachina-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/NeueMachina-Black.woff2") format("woff2"), url("../fonts/NeueMachina-Black.woff") format("woff"), url("../fonts/NeueMachina-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Death Star";
  font-style: normal;
  font-weight: 900;
  src: url("../../shared/fonts/death-star/Death/Star.woff2") format("woff2"), url("../../shared/fonts/death-star/Death/Star.woff") format("woff"), url("../../shared/fonts/death-star/Death/Star.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: normal;
  font-weight: 100;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-THIN.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-THIN.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-THIN.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-THIN.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-THIN.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: italic;
  font-weight: 100;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-THINITALIC.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-THINITALIC.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-THINITALIC.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-THINITALIC.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-THINITALIC.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: normal;
  font-weight: 200;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-EXTRALIGHT.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-EXTRALIGHT.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-EXTRALIGHT.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-EXTRALIGHT.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-EXTRALIGHT.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: italic;
  font-weight: 200;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-EXTRALIGHTITALIC.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-EXTRALIGHTITALIC.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-EXTRALIGHTITALIC.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-EXTRALIGHTITALIC.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-EXTRALIGHTITALIC.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: normal;
  font-weight: 300;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-LIGHT.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-LIGHT.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-LIGHT.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-LIGHT.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-LIGHT.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: italic;
  font-weight: 300;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-LIGHTITALIC.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-LIGHTITALIC.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-LIGHTITALIC.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-LIGHTITALIC.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-LIGHTITALIC.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: normal;
  font-weight: 400;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-REGULAR.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-REGULAR.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-REGULAR.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-REGULAR.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-REGULAR.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: italic;
  font-weight: 400;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-REGULARITALIC.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-REGULARITALIC.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-REGULARITALIC.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-REGULARITALIC.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-REGULARITALIC.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: normal;
  font-weight: 500;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-MEDIUM.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-MEDIUM.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-MEDIUM.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-MEDIUM.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-MEDIUM.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: italic;
  font-weight: 500;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-MEDIUMITALIC.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-MEDIUMITALIC.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-MEDIUMITALIC.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-MEDIUMITALIC.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-MEDIUMITALIC.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: normal;
  font-weight: 600;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-SEMIBOLD.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-SEMIBOLD.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-SEMIBOLD.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-SEMIBOLD.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-SEMIBOLD.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: italic;
  font-weight: 600;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-SEMIBOLDITALIC.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-SEMIBOLDITALIC.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-SEMIBOLDITALIC.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-SEMIBOLDITALIC.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-SEMIBOLDITALIC.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: normal;
  font-weight: 700;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-BOLD.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-BOLD.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-BOLD.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-BOLD.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-BOLD.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: italic;
  font-weight: 700;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-BOLDITALIC.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-BOLDITALIC.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-BOLDITALIC.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-BOLDITALIC.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-BOLDITALIC.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: normal;
  font-weight: 800;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-HEAVY.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-HEAVY.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-HEAVY.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-HEAVY.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-HEAVY.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: italic;
  font-weight: 800;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-HEAVYITALIC.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-HEAVYITALIC.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-HEAVYITALIC.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-HEAVYITALIC.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-HEAVYITALIC.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: normal;
  font-weight: 900;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-BLACK.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-BLACK.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-BLACK.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-BLACK.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-BLACK.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Superlumina;
  font-style: italic;
  font-weight: 900;
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-BLACKITALIC.eot");
  src: url("../../shared/fonts/superlumina/SUPERLUMINA-BLACKITALIC.eot?#iefix") format("embedded-opentype"), url("../../shared/fonts/superlumina/SUPERLUMINA-BLACKITALIC.woff2") format("woff2"), url("../../shared/fonts/superlumina/SUPERLUMINA-BLACKITALIC.woff") format("woff"), url("../../shared/fonts/superlumina/SUPERLUMINA-BLACKITALIC.ttf") format("truetype");
  font-display: swap;
}
html {
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100%;
}

.link-underline {
  position: relative;
}
.link-underline::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background-color: currentcolor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .link-underline:hover::after {
    transform: scaleX(1);
  }
}

.container {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (width >= 768px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (width >= 1024px) {
  .container {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
}
@media screen and (width >= 1920px) {
  .container {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
}

/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

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

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

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

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

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}
