@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.Loading{text-align:center}.Loading--overlay{position:fixed;z-index:998;top:0;left:0;width:100%;height:100%;display:flex;flex:1;height:100%;align-items:center;justify-content:center;background:#000}.Loading__spinner{width:48px;height:48px;border:3px solid #2d2d2d;border-radius:50%;display:inline-block;position:relative;box-sizing:border-box;animation:rotation 1s linear infinite}.Loading__spinner::after{content:"";box-sizing:border-box;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);width:56px;height:56px;border-radius:50%;border:3px solid rgba(0,0,0,0);border-bottom-color:gray}@keyframes rotation{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
    display: none;
}
body {
	line-height: 1;
}
menu, ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: 9999;
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, 9999);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: 320px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right);
}
.Toastify__toast-container--bottom-left {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right);
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: auto;
    left: initial;
  }
}
.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  min-height: 64px;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 6px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  max-height: var(--toastify-toast-max-height);
  font-family: sans-serif;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
  overflow: hidden;
}
.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body, .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}
.Toastify__toast--stacked[data-collapsed=false] {
  overflow: visible;
}
.Toastify__toast--stacked[data-collapsed=true]:not(:last-child) > * {
  opacity: 0;
}
.Toastify__toast--stacked:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}
.Toastify__toast--stacked[data-pos=top] {
  top: 0;
}
.Toastify__toast--stacked[data-pos=bot] {
  bottom: 0;
}
.Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before {
  transform-origin: top;
}
.Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before {
  transform-origin: bottom;
}
.Toastify__toast--stacked:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-right: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: #121212;
  background: var(--toastify-color-dark);
  color: #fff;
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: #fff;
  color: var(--toastify-text-color-info);
  background: #3498db;
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: #fff;
  color: var(--toastify-text-color-success);
  background: #07bc0c;
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: #fff;
  color: var(--toastify-text-color-warning);
  background: #f1c40f;
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: #fff;
  color: var(--toastify-text-color-error);
  background: #e74c3c;
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: #bb86fc;
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: #3498db;
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: #07bc0c;
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: #f1c40f;
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: #e74c3c;
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: rgba(255, 255, 255, 0.7);
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
  z-index: 1;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
  border-bottom-left-radius: 6px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: 0;
  border-bottom-left-radius: initial;
  border-bottom-right-radius: 6px;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: 6px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp[data-hidden=true] {
  opacity: 0;
}
.Toastify__progress-bar--bg {
  opacity: 0.2;
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: #e0e0e0;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: #616161;
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@font-face{font-family:"Montserrat";src:url(/assets/fonts/Montserrat-Thin-442331a67fb6e81fa768.woff2) format("woff2"),url(/assets/fonts/Montserrat-Thin-89c064f2bc2a4d6946c6.woff) format("woff");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:"Montserrat";src:url(/assets/fonts/Montserrat-SemiBold-41c1d91382dbef928048.woff2) format("woff2"),url(/assets/fonts/Montserrat-SemiBold-2b7346ce554f6fc56b8a.woff) format("woff");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Montserrat";src:url(/assets/fonts/Montserrat-Regular-5a3ed2fe29ba929cae8a.woff2) format("woff2"),url(/assets/fonts/Montserrat-Regular-4792d1d463b0efe32229.woff) format("woff");font-weight:normal;font-style:normal;font-display:swap}@font-face{font-family:"Montserrat";src:url(/assets/fonts/Montserrat-Medium-544ab73861d5635d39b0.woff2) format("woff2"),url(/assets/fonts/Montserrat-Medium-1fa969131f7e81667056.woff) format("woff");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Montserrat";src:url(/assets/fonts/Montserrat-ExtraLight-b5b644827f45c48a083e.woff2) format("woff2"),url(/assets/fonts/Montserrat-ExtraLight-83879a9605d7cb26ae75.woff) format("woff");font-weight:200;font-style:normal;font-display:swap}@font-face{font-family:"Montserrat";src:url(/assets/fonts/Montserrat-ExtraBold-b879cb0abe51d0e8e176.woff2) format("woff2"),url(/assets/fonts/Montserrat-ExtraBold-9f3f698bdf56572d03d9.woff) format("woff");font-weight:bold;font-style:normal;font-display:swap}@font-face{font-family:"Montserrat";src:url(/assets/fonts/Montserrat-Light-fd3379eaa39fff03c73f.woff2) format("woff2"),url(/assets/fonts/Montserrat-Light-35d0cd062a6eda56f56b.woff) format("woff");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:"Montserrat";src:url(/assets/fonts/Montserrat-Bold-464752c3dd6a37d54d8a.woff2) format("woff2"),url(/assets/fonts/Montserrat-Bold-e90684184c5477eb79b9.woff) format("woff");font-weight:bold;font-style:normal;font-display:swap}@font-face{font-family:"Montserrat";src:url(/assets/fonts/Montserrat-Black-6873cf9c7780e34d93a9.woff2) format("woff2"),url(/assets/fonts/Montserrat-Black-e5b849813a92055d4326.woff) format("woff");font-weight:900;font-style:normal;font-display:swap}@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}*{outline:none;box-sizing:border-box;leading-trim:both;text-edge:cap;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}html,body,#yield{height:100%}body{background:#000;font-family:"Montserrat",sans-serif;font-size:4vw}@media only screen and (min-width: 576px)and (max-width: 767.98px){body{font-size:2vw}}@media only screen and (min-width: 768px)and (max-width: 991.98px){body{font-size:2vw}}@media only screen and (min-width: 992px){body{font-size:16px;font-size:1rem}}a{-webkit-text-decoration:none;text-decoration:none}li{list-style:none}html body[data-scroll-locked]{overflow:visible !important;margin-right:0 !important}:root{scroll-padding-top:100px}#about,#benefits,#vehicle-specs{scroll-margin-top:100px}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}body{background-color:#fff}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.Button{border-radius:4px;border:1px solid rgba(0,0,0,0);cursor:pointer;font-family:inherit;font-size:14px;font-weight:600;height:48px;line-height:16px;padding:16px 24px;transition:background-color 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55), color 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);overflow:hidden;position:relative}.Button::before{content:"";position:absolute;top:0;left:0;width:0;height:100%;transition:width 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);z-index:0}.Button:hover{transform:skewX(-3deg) scale(1.01)}.Button:hover::before{width:100%}.Button:active{transform:skewX(0deg) scale(0.99);transition-duration:100ms}.Button__text{display:block;position:relative;height:16px;overflow:hidden;perspective:200px;transform-style:preserve-3d;z-index:1}.Button__text-inner{display:block;height:16px;line-height:16px;transition:transform 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);transform-origin:50% 50% -8px;backface-visibility:hidden;will-change:transform}.Button__text-inner:first-child{transform:rotateX(0deg) translateZ(0)}.Button__text-inner:last-child{position:absolute;top:0;left:0;right:0;transform:rotateX(-90deg) translateZ(0)}.Button:hover .Button__text-inner:first-child{transform:rotateX(90deg) translateZ(0)}.Button:hover .Button__text-inner:last-child{transform:rotateX(0deg) translateZ(0)}.Button--variant-primary{background-color:rgba(0,0,0,0);color:#fff;border-color:#fff}.Button--variant-primary::before{background-color:#fff}.Button--variant-primary:hover{color:#000}.Button--variant-secondary{background-color:#fff;color:#000}.Button--variant-secondary::before{background-color:#000}.Button--variant-secondary:hover{border-color:#fff;color:#fff}.Button--loading{cursor:progress;transform:none !important}.Button--loading::before{width:0 !important}.Button__spinner{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;z-index:1}.Button__spinner::before{content:"";width:16px;height:16px;border-radius:50%;border:2px solid currentColor;border-top-color:rgba(0,0,0,0);animation:ButtonSpin .8s linear infinite}@keyframes ButtonSpin{to{transform:rotate(360deg)}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.Container{margin:0 auto;max-width:1280px}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.Typography{font-family:"Montserrat",sans-serif}.Typography--size-10{font-size:10px}.Typography--size-11{font-size:11px}.Typography--size-12{font-size:12px}.Typography--size-14{font-size:14px}.Typography--size-16{font-size:16px}.Typography--size-18{font-size:18px}.Typography--size-20{font-size:20px}.Typography--size-22{font-size:22px}.Typography--size-24{font-size:24px}.Typography--size-26{font-size:26px}.Typography--size-28{font-size:28px}.Typography--size-30{font-size:30px}.Typography--size-32{font-size:32px}.Typography--size-34{font-size:34px}.Typography--size-35{font-size:35px}.Typography--size-40{font-size:40px}.Typography--size-48{font-size:48px}@media only screen and (min-width: 992px){.Typography--desktop-size-10{font-size:10px}}@media only screen and (min-width: 992px){.Typography--desktop-size-11{font-size:11px}}@media only screen and (min-width: 992px){.Typography--desktop-size-12{font-size:12px}}@media only screen and (min-width: 992px){.Typography--desktop-size-14{font-size:14px}}@media only screen and (min-width: 992px){.Typography--desktop-size-16{font-size:16px}}@media only screen and (min-width: 992px){.Typography--desktop-size-18{font-size:18px}}@media only screen and (min-width: 992px){.Typography--desktop-size-20{font-size:20px}}@media only screen and (min-width: 992px){.Typography--desktop-size-22{font-size:22px}}@media only screen and (min-width: 992px){.Typography--desktop-size-24{font-size:24px}}@media only screen and (min-width: 992px){.Typography--desktop-size-26{font-size:26px}}@media only screen and (min-width: 992px){.Typography--desktop-size-28{font-size:28px}}@media only screen and (min-width: 992px){.Typography--desktop-size-30{font-size:30px}}@media only screen and (min-width: 992px){.Typography--desktop-size-32{font-size:32px}}@media only screen and (min-width: 992px){.Typography--desktop-size-34{font-size:34px}}@media only screen and (min-width: 992px){.Typography--desktop-size-35{font-size:35px}}@media only screen and (min-width: 992px){.Typography--desktop-size-40{font-size:40px}}@media only screen and (min-width: 992px){.Typography--desktop-size-48{font-size:48px}}.Typography strong,.Typography b{font-weight:700}.Typography small{font-size:12px;line-height:1.1}.Typography--align-center{text-align:center}.Typography--align-right{text-align:right}.Typography--align-left{text-align:left}.Typography--weight-100{font-weight:100}.Typography--weight-200{font-weight:200}.Typography--weight-300{font-weight:300}.Typography--weight-400{font-weight:400}.Typography--weight-500{font-weight:500}.Typography--weight-600{font-weight:600}.Typography--weight-700{font-weight:700}.Typography--weight-800{font-weight:800}.Typography--weight-900{font-weight:900}.Typography--color-white{color:#fff}.Typography--color-black{color:#000}.Typography--color-black-80{color:rgba(0,0,0,.8)}.Typography--color-gray-350{color:#e1e1e1}.Typography--color-gray-300{color:gray}.Typography--color-gray-400{color:#777}.Typography--color-gray-450{color:#595757}.Typography--color-gray-700{color:#2d2d2d}.Typography--color-gray-750{color:#1b1b1b}.Typography--color-green{color:#46b912}.Typography--color-red{color:#eb0a1e}.Typography--color-primary{color:#ff6a00}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.ConfiguratorResumeBar__container{align-items:center;border-top:1px solid #777;border-bottom:1px solid #777;display:flex;justify-content:space-between;padding-top:18px;padding-bottom:18px;padding-left:18px;padding-right:18px}.ConfiguratorResumeBar__container__model{display:flex;flex-direction:column;gap:4px}.ConfiguratorResumeBar__container__model__name{align-items:center;display:flex;gap:8px}@media only screen and (min-width: 992px){.ConfiguratorResumeBar__container__model__name{gap:24px}}.ConfiguratorResumeBar__container__model__name h3{font-size:16px;font-weight:700}@media only screen and (min-width: 992px){.ConfiguratorResumeBar__container__model__name h3{font-size:32px}}.ConfiguratorResumeBar__container__model__name h4{font-size:12px}@media only screen and (min-width: 992px){.ConfiguratorResumeBar__container__model__name h4{font-size:14px}}.ConfiguratorResumeBar__container__model__price{align-items:center;display:flex;gap:4px}@media only screen and (min-width: 992px){.ConfiguratorResumeBar__container__model__price{display:none}}.ConfiguratorResumeBar__container__model__price p{font-size:24px;font-weight:700}@media only screen and (min-width: 992px){.ConfiguratorResumeBar__container__model__price p{font-size:32px}}.ConfiguratorResumeBar__container__model__price span{font-size:12px}@media only screen and (min-width: 992px){.ConfiguratorResumeBar__container__model__price span{font-size:14px}}.ConfiguratorResumeBar__container__actions{display:flex;align-items:center;gap:24px}.ConfiguratorResumeBar__container__actions__price{align-items:center;display:none;gap:4px}@media only screen and (min-width: 992px){.ConfiguratorResumeBar__container__actions__price{display:flex}}.ConfiguratorResumeBar__container__actions__price p{font-size:32px;font-weight:700}.ConfiguratorResumeBar__container__actions__price span{font-size:14px}.ConfiguratorResumeBar__container__actions>button{min-width:149px}@media only screen and (min-width: 992px){.ConfiguratorResumeBar__container{border-bottom:0}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.ConfiguratorResumeSuccess{background-color:#fff;box-shadow:-4px 0 20px rgba(0,0,0,.1);height:100vh;max-width:445px;overflow-y:auto;position:fixed;right:0;top:0;transform:translateX(100%);transition:transform 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);width:100%;z-index:1000}.ConfiguratorResumeSuccess--open{transform:translateX(0)}.ConfiguratorResumeSuccess__overlay{animation:fadeIn 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);background-color:rgba(0,0,0,.5);bottom:0;left:0;position:fixed;right:0;top:0;z-index:999}.ConfiguratorResumeSuccess__content{align-items:center;display:flex;flex-direction:column;padding:80px 32px 48px;position:relative;text-align:center}.ConfiguratorResumeSuccess__content__inner{display:flex;flex-direction:column;gap:32px}.ConfiguratorResumeSuccess__close{background:none;border:none;color:#000;cursor:pointer;font-size:28px;line-height:1;padding:8px;position:absolute;right:20px;top:20px;transition:transform 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55), color 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);z-index:10}.ConfiguratorResumeSuccess__close:hover{color:#eb0a1e;transform:scale(1.1)}.ConfiguratorResumeSuccess__close:active{transform:scale(0.95);transition-duration:100ms}.ConfiguratorResumeSuccess__icon{opacity:0;transform:scale(0.5)}.ConfiguratorResumeSuccess--open .ConfiguratorResumeSuccess__icon{animation:scaleIn 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 200ms forwards}.ConfiguratorResumeSuccess hr{border:0;width:100%;height:1px;background-color:#595757}.ConfiguratorResumeSuccess__title{opacity:0;transform:translateX(20px)}.ConfiguratorResumeSuccess--open .ConfiguratorResumeSuccess__title{animation:slideInFromRight 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 300ms forwards;font-size:24px;font-weight:700}.ConfiguratorResumeSuccess__title{font-size:24px;font-weight:700}.ConfiguratorResumeSuccess__info{align-items:flex-start;display:flex;flex-direction:column;gap:10px;opacity:0;transform:translateY(10px)}.ConfiguratorResumeSuccess__info p:first-child{font-size:18px;font-weight:700}.ConfiguratorResumeSuccess__info p:last-child{font-size:12px}.ConfiguratorResumeSuccess__info--double{flex-direction:row;justify-content:space-between;text-align:left}.ConfiguratorResumeSuccess__info--double>div p:first-child{margin-bottom:10px}.ConfiguratorResumeSuccess__info--double>div:last-child{text-align:right}.ConfiguratorResumeSuccess__info--total{align-items:center;flex-direction:row;justify-content:space-between}.ConfiguratorResumeSuccess__info--total p:first-child,.ConfiguratorResumeSuccess__info--total p:last-child{font-size:14px}.ConfiguratorResumeSuccess--open .ConfiguratorResumeSuccess__info[data-index="1"]{animation:fadeInUp 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 400ms forwards}.ConfiguratorResumeSuccess--open .ConfiguratorResumeSuccess__info[data-index="2"]{animation:fadeInUp 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 500ms forwards}.ConfiguratorResumeSuccess--open .ConfiguratorResumeSuccess__info[data-index="3"]{animation:fadeInUp 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 600ms forwards}.ConfiguratorResumeSuccess--open .ConfiguratorResumeSuccess__info[data-index="4"]{animation:fadeInUp 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 700ms forwards}.ConfiguratorResumeSuccess hr{border:0;width:100%;height:1px;background-color:#595757;opacity:0}.ConfiguratorResumeSuccess--open hr{animation:fadeIn 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 400ms forwards}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes slideInFromRight{from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)}}@keyframes scaleIn{from{opacity:0;transform:scale(0.5)}to{opacity:1;transform:scale(1)}}@keyframes fadeInUp{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@media only screen and (max-width: 991px){.ConfiguratorResumeSuccess{max-width:100%}.ConfiguratorResumeSuccess__content{padding:32px 24px}.ConfiguratorResumeSuccess__title{font-size:28px}.ConfiguratorResumeSuccess__description{font-size:14px}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.ButtonSmall{width:100%;height:32px;border-radius:4px;display:flex;align-items:center;justify-content:center;cursor:pointer;border:1px solid rgba(0,0,0,0);transition:all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);flex:1}.ButtonSmall--variant-default{background:#fff;border-color:#fff}.ButtonSmall--variant-inactive{background:#000;border-color:#777}.ButtonSmall:not(:disabled):not([aria-disabled=true]):hover{filter:brightness(0.9)}.ButtonSmall:disabled,.ButtonSmall[aria-disabled=true]{cursor:default;pointer-events:none}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.ContactBanner{display:flex;position:relative;justify-content:center;padding:32px 18px}@media only screen and (min-width: 992px){.ContactBanner{padding:64px 48px}}.ContactBanner__content{display:flex;justify-content:space-between;max-width:1920px;gap:48px;flex-direction:column}@media only screen and (min-width: 992px){.ContactBanner__content{flex-direction:row;min-height:500px}}.ContactBanner__content__left{display:flex;flex-direction:column;justify-content:center;gap:32px}@media only screen and (min-width: 992px){.ContactBanner__content__left{width:500px;padding:32px;gap:48px}}.ContactBanner__content__left__button{display:none}@media only screen and (min-width: 992px){.ContactBanner__content__left__button{display:block}}.ContactBanner__content__right{height:300px;width:100%;position:relative}@media only screen and (min-width: 992px){.ContactBanner__content__right{height:500px;max-width:700px}}.ContactBanner__content__right__image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:15% center;object-position:15% center;border-radius:12px}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.Hero{position:relative;height:200px;display:flex;align-items:center;justify-content:center;overflow:hidden}@media only screen and (min-width: 992px){.Hero{height:350px}}.Hero::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);z-index:2}.Hero__image{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center 70%;object-position:center 70%;z-index:1}.Hero__text{position:relative;z-index:3;text-align:center;height:50%}@media only screen and (min-width: 992px){.Hero__text{height:auto}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.ConfiguratorStepper{display:flex;align-items:center;gap:16px}.ConfiguratorStepper__back{cursor:pointer;display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;border:1px solid gray;box-shadow:0 0 0 .5px gray;background:#000;transition:all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);padding:0}.ConfiguratorStepper__back:not(:disabled):not([aria-disabled=true]):hover{filter:brightness(0.85)}.ConfiguratorStepper__back:disabled,.ConfiguratorStepper__back[aria-disabled=true]{cursor:default;pointer-events:none}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.ConfiguratorContainer{padding-top:32px;padding-bottom:32px}@media only screen and (min-width: 992px){.ConfiguratorContainer{padding-left:48px;padding-right:48px;min-height:710px}}.ConfiguratorContainer__wrapper{padding-left:18px;padding-right:18px;display:flex;flex-direction:column;gap:24px}@media only screen and (min-width: 992px){.ConfiguratorContainer__wrapper{padding-left:0;padding-right:0;padding-bottom:32px;display:flex;flex-direction:row;gap:48px}}.ConfiguratorContainer__wrapper__left-col{display:flex;flex-direction:column;gap:24px;width:100%}@media only screen and (min-width: 992px){.ConfiguratorContainer__wrapper__left-col{width:67%}}@media only screen and (min-width: 992px){.ConfiguratorContainer__wrapper__left-col__stepper-mobile{display:none}}.ConfiguratorContainer__wrapper__left-col__title-mobile{display:flex;flex-direction:column;gap:4px}@media only screen and (min-width: 992px){.ConfiguratorContainer__wrapper__left-col__title-mobile{display:none}}.ConfiguratorContainer__wrapper__left-col__image{background:url(/assets/images/vehicle-bg-84e2be2587eedae7cd7b.png) no-repeat;background-position:center center;background-size:cover;border-radius:5px;display:flex;align-items:center;justify-content:center}.ConfiguratorContainer__wrapper__left-col__image>img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;border-radius:5px}@media only screen and (min-width: 992px){.ConfiguratorContainer__wrapper__left-col__image{min-height:500px;border-radius:10px}.ConfiguratorContainer__wrapper__left-col__image>img{border-radius:10px}}.ConfiguratorContainer__wrapper__right-col{width:100%}@media only screen and (min-width: 992px){.ConfiguratorContainer__wrapper__right-col{width:33%;display:flex;flex-direction:column;gap:30px;padding-top:32px}}.ConfiguratorContainer__wrapper__right-col__stepper{display:none}@media only screen and (min-width: 992px){.ConfiguratorContainer__wrapper__right-col__stepper{display:block}}.ConfiguratorContainer__wrapper__right-col__title{display:none}@media only screen and (min-width: 992px){.ConfiguratorContainer__wrapper__right-col__title{display:flex;flex-direction:column;gap:4px}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.ConfiguratorColors{display:grid;grid-gap:12px;gap:12px}@media only screen and (min-width: 992px){.ConfiguratorColors{gap:14px}}.ConfiguratorColors__item{cursor:pointer}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.ConfiguratorColorDisplay{position:relative;height:42px;width:100%;border-radius:4px;border:1px solid #777;transition:border-color 220ms ease, border-width 220ms ease}.ConfiguratorColorDisplay--active{border:3px solid #fff}.ConfiguratorColorDisplay__gradient-layer{pointer-events:none;position:absolute;top:0;right:0;bottom:0;left:0;border-radius:2px;z-index:0;background:linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 12%, rgba(255, 255, 255, 0.02) 38%, rgba(0, 0, 0, 0.06) 82%, rgba(0, 0, 0, 0.1) 100%),radial-gradient(120% 60% at 50% -10%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%)}.ConfiguratorColorDisplay__name{position:absolute;top:calc(100% + 14px);left:-3px;z-index:1;animation:fadeInUp 220ms ease-out both}@media only screen and (min-width: 992px){.ConfiguratorColorDisplay__name{top:calc(100% + 16px)}}@keyframes fadeInUp{from{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.FormSelectField{position:relative;display:flex;flex-direction:column;gap:6px;border:0;padding:0;margin:0;min-width:0;flex:1}.FormSelectField.is-invalid .FormSelect__trigger{border-color:#eb0a1e}.FormSelectField__error{position:absolute;left:0;top:100%;width:100%;pointer-events:none;z-index:1}.FormSelect__trigger{width:100%;height:48px;padding:0 16px;border:1px solid #777;border-radius:4px;background:#000;color:#e1e1e1;font-size:14px;cursor:pointer;display:flex;align-items:center;justify-content:space-between;transition:border-color 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55)}.FormSelect__trigger[data-placeholder]{color:#777}.FormSelect__trigger:hover{border-color:hsla(0,0%,100%,.5)}.FormSelect__trigger:focus-visible{outline:none;box-shadow:0 0 0 2px hsla(0,0%,100%,.15)}.FormSelect__trigger[data-state=open]{border-color:hsla(0,0%,100%,.6)}.FormSelect__trigger[data-disabled=true]{opacity:.6;cursor:not-allowed}.FormSelect__trigger--error{border-color:#eb0a1e}.FormSelect__trigger--error:hover,.FormSelect__trigger--error[data-state=open],.FormSelect__trigger--error:focus-visible{border-color:#eb0a1e;box-shadow:0 0 0 2px rgba(235,10,30,.2)}.FormSelect__chevron{color:#777;display:flex;align-items:center}.FormSelect__content{background:#000;border:1px solid hsla(0,0%,100%,.15);border-radius:4px;box-shadow:0 8px 24px rgba(0,0,0,.6);overflow:hidden;z-index:4;width:var(--radix-select-trigger-width);min-width:var(--radix-select-trigger-width);max-height:min(160px,var(--radix-select-content-available-height));box-sizing:border-box}.FormSelect__viewport{padding:4px;width:100%;overflow-y:auto;max-height:inherit;overscroll-behavior:contain;-webkit-overflow-scrolling:touch}.FormSelect__item{width:100%;height:36px;padding:0 12px;border-radius:4px;color:#e1e1e1;font-size:14px;display:flex;align-items:center;cursor:pointer}.FormSelect__item[data-highlighted]{background:hsla(0,0%,100%,.06);color:#fff}.FormSelect__item[data-state=checked]{background:hsla(0,0%,100%,.1);color:#fff}.FormSelect__item[data-disabled=true]{opacity:.5}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.FormLabel{display:block}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.StepCustomizationContainer{padding-left:18px;padding-right:18px;padding-bottom:148px;display:flex;flex-direction:column;gap:24px}@media only screen and (min-width: 992px){.StepCustomizationContainer{padding:0}}.StepCustomizationContainer__title{display:flex;flex-direction:column;gap:10px}.StepCustomizationContainer__plan{display:flex;align-items:center;gap:16px}.StepCustomizationContainer__colors{display:flex;flex-direction:column;gap:24px}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.Checkbox{cursor:pointer;display:flex;align-items:center;gap:16px}.Checkbox input[type=checkbox]{-moz-appearance:none;appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0);border-radius:2px;border:2px solid #fff;cursor:pointer;width:16px;height:16px;min-width:16px;min-height:16px;margin:0;position:relative;transition:all .3s ease;box-sizing:border-box;flex-shrink:0}.Checkbox input[type=checkbox]:hover{border-color:#fff}.Checkbox input[type=checkbox]:focus{box-shadow:0 0 0 2px rgba(0,72,82,.2);outline:none}.Checkbox input[type=checkbox]:checked{background-color:#fff;border-color:#fff}.Checkbox input[type=checkbox]:checked::after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;width:12px;height:12px;margin:auto;z-index:1;background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2710%27 viewBox=%270 0 12 10%27 fill=%27none%27%3E%3Cpath d=%27M10.59 0.2L4.58 7.91 1 4.7l.74-.82 2.71 2.43L9.83 0l.76.2z%27 fill=%27%23000%27/%3E%3C/svg%3E");background-position:center;background-repeat:no-repeat;background-size:contain;pointer-events:none}.Checkbox label{color:#fff;font-size:12px;line-height:14px;margin:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.Checkbox label a{color:#fff;-webkit-text-decoration:underline;text-decoration:underline}.Checkbox label a:hover{opacity:.8}.Checkbox.is-invalid input[type=checkbox]{border-color:#eb0a1e}.Checkbox.is-invalid input[type=checkbox]:hover{border-color:#eb0a1e}.Checkbox.is-invalid input[type=checkbox]:focus{box-shadow:0 0 0 2px rgba(235,10,30,.2)}.Checkbox.is-invalid input[type=checkbox]:checked{border-color:#eb0a1e}.Checkbox.is-invalid label{color:#eb0a1e}.Checkbox.is-invalid label a{color:#eb0a1e}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.Input{width:100%;position:relative;display:flex;flex-direction:column;gap:6px;flex:1}.Input__wrapper{display:flex;flex-direction:row;width:100%}.Input__wrapper__prefix{border:1px solid #777;display:flex;align-items:center;padding-left:8px;padding-right:8px}.Input__wrapper__field{background:#000;border-radius:4px;border:1px solid #777;color:#fff;font-size:14px;padding:0 16px;width:100%;height:48px}.Input__wrapper__field::-moz-placeholder{color:#777}.Input__wrapper__field::placeholder{color:#777}.Input__wrapper__field--error{border-color:#eb0a1e}.Input__wrapper--is-phone .Input__wrapper__field{border-radius:0px 4px 4px 0px;border-left:none}.Input__wrapper--is-phone .Input__wrapper__prefix{border-radius:4px 0px 0px 4px;padding-top:1px}.Input__wrapper--error .Input__wrapper__prefix{border-color:#eb0a1e}.Input__error{position:absolute;left:0;top:100%;width:100%;pointer-events:none;z-index:1}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.StepPersonalDataContainer{padding-left:18px;padding-right:18px;padding-bottom:112px;display:flex;flex-direction:column;gap:16px}@media only screen and (min-width: 992px){.StepPersonalDataContainer{padding:0}}.StepPersonalDataContainer__form{display:flex;flex-direction:column;gap:19px}.StepPersonalDataContainer__form__name-row,.StepPersonalDataContainer__form__address-row{display:flex;align-items:center;gap:16px}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.HomeAbout{padding:24px 18px}@media only screen and (min-width: 992px){.HomeAbout{padding:64px 48px 32px}}.HomeAbout__container{display:flex;flex-direction:column;gap:32px}.HomeAbout__carousel{overflow:hidden;cursor:grab}.HomeAbout__carousel:active{cursor:grabbing}.HomeAbout__carousel-container{display:flex}.HomeAbout__carousel-slide{display:flex;flex-direction:column;flex:0 0 100%;gap:24px;min-width:0}@media only screen and (min-width: 992px){.HomeAbout__carousel-slide{align-items:center;flex-direction:row;gap:48px}}.HomeAbout__slide-image{border-radius:10px;flex:1;overflow:hidden}.HomeAbout__slide-image img{display:block;height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.HomeAbout__slide-content{flex:1;display:flex;flex-direction:column;gap:16px;padding:0}@media only screen and (min-width: 992px){.HomeAbout__slide-content{gap:48px;padding:0 32px}}.HomeAbout__slide-title{font-size:24px;line-height:1.3}.HomeAbout__slide-title br{display:none}@media only screen and (min-width: 992px){.HomeAbout__slide-title{font-size:40px}.HomeAbout__slide-title br{display:block}}.HomeAbout__slide-description{line-height:1.6}.HomeAbout__slide-description br{display:block}@media only screen and (min-width: 992px){.HomeAbout__slide-description{font-size:18px}}.HomeAbout__controls{display:flex;align-items:center;justify-content:center;gap:16px}@media only screen and (min-width: 992px){.HomeAbout__controls{display:grid;grid-template-columns:48px auto 48px;align-items:center;justify-items:center;grid-column-gap:16px;-moz-column-gap:16px;column-gap:16px}}.HomeAbout__arrow{align-items:center;background:rgba(0,0,0,0);border:none;cursor:pointer;display:none;justify-content:center;padding:0;transition:transform 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55)}@media only screen and (min-width: 992px){.HomeAbout__arrow{display:flex;width:48px;height:48px}}.HomeAbout__arrow svg{display:block;height:48px;pointer-events:none;width:48px}.HomeAbout__arrow:hover{transform:scale(1.1)}.HomeAbout__arrow:active{transform:scale(0.95)}.HomeAbout__arrow.is-hidden{visibility:hidden;pointer-events:none}.HomeAbout__dots{display:flex;gap:16px}@media only screen and (min-width: 992px){.HomeAbout__dots{justify-self:center}}.HomeAbout__dot{background-color:gray;border-radius:50%;border:none;cursor:pointer;height:12px;padding:0;transition:all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);width:12px}.HomeAbout__dot:hover{background-color:#e1e1e1}.HomeAbout__dot--active{background-color:#fff;border-radius:calc(1px*infinity);width:54px}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.HomeBenefits{padding:48px 0;overflow:hidden}@media only screen and (min-width: 992px){.HomeBenefits{padding:64px 48px;overflow:visible}}.HomeBenefits__title{text-align:center;margin-bottom:48px;padding:0 18px}@media only screen and (min-width: 992px){.HomeBenefits__title{padding:0}}.HomeBenefits__title h2{font-size:22px;font-weight:700;line-height:normal;margin-bottom:16px}@media only screen and (min-width: 992px){.HomeBenefits__title h2{font-size:35px;line-height:35px}}.HomeBenefits__title p{font-size:14px;line-height:normal}@media only screen and (min-width: 992px){.HomeBenefits__title p{font-size:18px}}.HomeBenefits__carousel-wrapper{position:relative}.HomeBenefits__carousel-wrapper::before,.HomeBenefits__carousel-wrapper::after{content:"";position:absolute;top:0;bottom:0;width:200px;pointer-events:none;z-index:5;display:none;opacity:0;transition:opacity 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55)}.HomeBenefits__carousel-wrapper::before{left:0;background:linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 85.94%)}.HomeBenefits__carousel-wrapper::after{right:0;background:linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 85.94%)}@media only screen and (min-width: 992px){.HomeBenefits__carousel-wrapper--has-prev::before{display:block;opacity:1}}@media only screen and (min-width: 992px){.HomeBenefits__carousel-wrapper--has-next::after{display:block;opacity:1}}.HomeBenefits__carousel{overflow:visible;cursor:grab;padding:0 18px}@media only screen and (min-width: 992px){.HomeBenefits__carousel{overflow:hidden;padding:0}}.HomeBenefits__carousel:active{cursor:grabbing}.HomeBenefits__carousel-container{display:flex;gap:16px}@media only screen and (min-width: 992px){.HomeBenefits__carousel-container{gap:24px}}.HomeBenefits__carousel-slide{flex:0 0 calc(100% - 40px);min-width:0}@media only screen and (min-width: 992px){.HomeBenefits__carousel-slide{flex:0 0 calc(33.333% - 16px)}}.HomeBenefits__slide-image{position:relative;border-radius:4px;overflow:hidden}.HomeBenefits__slide-image img{border:1px solid #777;border-radius:4px;display:block;height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.HomeBenefits__slide-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(0deg, rgba(0, 0, 0, 0) 40.11%, rgba(0, 0, 0, 0.5) 76.02%);pointer-events:none;z-index:0}.HomeBenefits__slide-content{left:0;padding:24px 35px 24px 32px;position:absolute;top:0;z-index:2}.HomeBenefits__slide-title{font-size:18px;font-weight:700;line-height:1.3;margin-bottom:8px}@media only screen and (min-width: 992px){.HomeBenefits__slide-title{font-size:24px;margin-bottom:12px}}.HomeBenefits__slide-description{font-size:14px;line-height:1.5}@media only screen and (min-width: 992px){.HomeBenefits__slide-description{font-size:16px}}.HomeBenefits__arrow{align-items:center;background:rgba(0,0,0,0);border:none;cursor:pointer;display:flex;justify-content:center;padding:0;position:absolute;top:50%;transform:translateY(-50%);transition:transform 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);z-index:10}.HomeBenefits__arrow svg{display:block;height:48px;pointer-events:none;width:48px}.HomeBenefits__arrow:hover{transform:translateY(-50%) scale(1.1)}.HomeBenefits__arrow:active{transform:translateY(-50%) scale(0.95)}.HomeBenefits__arrow--prev{left:20px}@media only screen and (min-width: 992px){.HomeBenefits__arrow--prev{left:0}}.HomeBenefits__arrow--next{right:20px}@media only screen and (min-width: 992px){.HomeBenefits__arrow--next{right:0}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.HomeComparison{padding:48px 18px}@media only screen and (min-width: 992px){.HomeComparison{padding:32px 48px}}.HomeComparison__content{display:flex;flex-direction:column;gap:48px;align-items:center}@media only screen and (min-width: 992px){.HomeComparison__content{gap:26px}}.HomeComparison__content__title{display:flex;flex-direction:column;gap:24px;align-items:center}@media only screen and (min-width: 992px){.HomeComparison__content__title{gap:20px}}.HomeComparison__content__table{width:100%;max-width:985px}.HomeComparison__content__actions{display:flex;align-items:center;justify-content:center}.ComparisonTable{background:#000;border-radius:10px;overflow:hidden}.ComparisonTable__table{width:100%;border-collapse:separate;border-spacing:0;table-layout:fixed}.ComparisonTable__headCell{padding:24px 16px;text-align:center;width:50%;vertical-align:middle;height:100px;border-bottom:1px solid #000}@media only screen and (min-width: 992px){.ComparisonTable__headCell{padding:18px 16px}}.ComparisonTable__headCell--left{background:#2d2d2d;border-right:1px solid #000}.ComparisonTable__headCell--right{background:#1b1b1b}.ComparisonTable__row+.ComparisonTable__row .ComparisonTable__cell{border-top:1px solid #000}.ComparisonTable__cell{padding:0;vertical-align:middle;width:50%}.ComparisonTable__cell--left{background:#2d2d2d;border-right:1px solid #000}.ComparisonTable__cell--right{background:#1b1b1b}.ComparisonTable__cellContent{display:grid;grid-template-columns:auto 1fr auto;align-items:center;grid-gap:8px;gap:8px;padding:16px;min-width:0;min-height:70px}.ComparisonTable__cellContent p{line-height:1.4}@media only screen and (min-width: 992px){.ComparisonTable__cellContent{padding:18px 24px;gap:22px}}.ComparisonTable__cellContent svg{flex-shrink:0}.ComparisonTable__cellContent>*:nth-child(2){min-width:0}.ComparisonTable__cellContent .Typography{word-wrap:anywhere;word-break:normal;-webkit-hyphens:auto;hyphens:auto}.ComparisonTable__cell--left{color:#fff}.ComparisonTable__cell--right{color:#777}.ComparisonTable__ok{color:#46b912;display:inline-flex;align-items:center}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.HomeHero{align-items:flex-end;background-color:#fff;background-position:center center;background-repeat:no-repeat;background-size:cover;display:flex;justify-content:center;width:100%}@media only screen and (max-width: 991px){.HomeHero{background-image:url(/assets/images/banner-mobile-d137d1fc2ebbd755dc7f.jpg);height:712px;padding-bottom:32px}}@media only screen and (min-width: 768px)and (max-width: 991.98px){.HomeHero{background-image:url(/assets/images/banner-home-116f24a6ffdf39833053.jpg);height:712px;padding-bottom:32px}}@media only screen and (min-width: 992px){.HomeHero{background-image:url(/assets/images/banner-home-116f24a6ffdf39833053.jpg);height:100dvh;padding-bottom:32px}}@media only screen and (min-width: 1601px){.HomeHero{background-image:url(/assets/images/banner-home-1920-2021cfd46eb6c16efbae.jpg);height:100dvh;padding-bottom:132px}}@media only screen and (min-width: 2120px){.HomeHero{background-image:url(/assets/images/banner-home-3840-2491f741c4a5afeb7133.jpg);height:100dvh;padding-bottom:220px}}.HomeHero__actions{display:flex;gap:16px}@media only screen and (max-width: 991px){.HomeHero__actions{max-width:320px}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.HomeStandardFeatures{background-color:#000;background-position:center center;background-repeat:no-repeat;background-size:cover;width:100%;padding:100px 18px 40px}.HomeStandardFeatures>.Container{height:100%}@media only screen and (max-width: 991px){.HomeStandardFeatures{background-image:url(/assets/images/standard-features-mobile-e20b7c2de954eb57750c.jpg);height:900px}}@media only screen and (min-width: 768px)and (max-width: 991.98px){.HomeStandardFeatures{background-image:url(/assets/images/standard-features-0537cbfe56065d200762.jpg);height:710px}}@media only screen and (min-width: 992px){.HomeStandardFeatures{background-image:url(/assets/images/standard-features-0537cbfe56065d200762.jpg);height:812px;padding:74px 24px 40px}}@media only screen and (min-width: 1601px){.HomeStandardFeatures{background-image:url(/assets/images/standard-features-1920-b46e29017d691a959e32.jpg);height:912px}}@media only screen and (min-width: 2120px){.HomeStandardFeatures{background-image:url(/assets/images/standard-features-3840-7907408ba3bc0b7c6800.jpg);height:1440px}}.HomeStandardFeatures__content{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:space-between}.HomeStandardFeatures__content__title{display:flex;flex-direction:column;gap:8px;align-items:center}.HomeStandardFeatures__content__specs{width:100%;display:flex;flex-direction:column;gap:24px;align-items:center}.HomeStandardFeatures__content__specs__list{width:100%;max-width:982px;display:flex;flex-direction:column;gap:15px}@media only screen and (min-width: 992px){.HomeStandardFeatures__content__specs__list{flex-direction:row;flex-wrap:wrap;align-items:center;justify-content:center}}.HomeStandardFeatures__content__specs__list__item{width:100%;padding:12px;border-radius:8px;background:rgba(0,0,0,.4);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);display:flex;flex-direction:column;gap:3px}@media only screen and (min-width: 992px){.HomeStandardFeatures__content__specs__list__item{width:-moz-fit-content;width:fit-content;min-width:186px}}.HomeStandardFeatures__content__specs__actions{display:none}@media only screen and (min-width: 992px){.HomeStandardFeatures__content__specs__actions{display:flex}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.HomeTechnology{background-color:#fff;padding:24px 18px;color:#000}@media only screen and (min-width: 992px){.HomeTechnology{padding:64px 48px 32px;min-height:710px}}.HomeTechnology__container{display:flex;flex-direction:column;gap:32px}.HomeTechnology__carousel{overflow:hidden;cursor:grab}.HomeTechnology__carousel:active{cursor:grabbing}.HomeTechnology__carousel-container{display:flex}.HomeTechnology__carousel-slide{display:flex;flex-direction:column;flex:0 0 100%;gap:24px;min-width:0}@media only screen and (min-width: 992px){.HomeTechnology__carousel-slide{align-items:center;flex-direction:row;gap:48px}}.HomeTechnology__slide-image{border-radius:10px;flex:1;overflow:hidden;order:1}@media only screen and (min-width: 992px){.HomeTechnology__slide-image{order:0;margin-right:1px}}.HomeTechnology__slide-image img{display:block;height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.HomeTechnology__slide-content{flex:1;display:flex;flex-direction:column;gap:16px;padding:0;order:2}@media only screen and (min-width: 992px){.HomeTechnology__slide-content{gap:48px;padding:0 32px;order:0}}.HomeTechnology__slide-content__title{display:flex;flex-direction:column;gap:16px}.HomeTechnology__slide-title{color:#000;font-size:24px;line-height:1.3}.HomeTechnology__slide-title br{display:none}@media only screen and (min-width: 992px){.HomeTechnology__slide-title{font-size:40px}.HomeTechnology__slide-title br{display:block}}.HomeTechnology__slide-description{line-height:1.4;padding-left:26px}@media only screen and (min-width: 992px){.HomeTechnology__slide-description{font-size:18px;padding-left:0}}.HomeTechnology__slide-description ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:12px}@media only screen and (min-width: 992px){.HomeTechnology__slide-description ul{gap:16px}}.HomeTechnology__slide-description li{color:#000;position:relative;list-style:disc}.HomeTechnology__slide-description li strong{font-weight:700}.HomeTechnology__controls{display:flex;align-items:center;justify-content:center;gap:16px}@media only screen and (min-width: 992px){.HomeTechnology__controls{display:grid;grid-template-columns:48px auto 48px;align-items:center;justify-items:center;grid-column-gap:16px;-moz-column-gap:16px;column-gap:16px}}.HomeTechnology__arrow{align-items:center;background:rgba(0,0,0,0);border:none;cursor:pointer;display:none;justify-content:center;padding:0;transition:transform 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55)}@media only screen and (min-width: 992px){.HomeTechnology__arrow{display:flex;width:48px;height:48px}}.HomeTechnology__arrow svg{display:block;height:48px;pointer-events:none;width:48px}.HomeTechnology__arrow:hover{transform:scale(1.1)}.HomeTechnology__arrow:active{transform:scale(0.95)}.HomeTechnology__arrow.is-hidden{visibility:hidden;pointer-events:none}.HomeTechnology__dots{display:flex;gap:16px}@media only screen and (min-width: 992px){.HomeTechnology__dots{justify-self:center}}.HomeTechnology__dot{background-color:gray;border-radius:50%;border:none;cursor:pointer;height:12px;padding:0;transition:all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);width:12px}.HomeTechnology__dot:hover{background-color:#e1e1e1}.HomeTechnology__dot--active{background-color:#000;border-radius:calc(1px*infinity);width:54px}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.QuestionsSection{width:100%;margin-bottom:2rem;scroll-margin-top:80px;display:block;visibility:visible}.QuestionsSection__section{gap:24px}@media only screen and (min-width: 992px){.QuestionsSection__section{margin-bottom:3rem;scroll-margin-top:100px}}.QuestionsSection__section:last-child{margin-bottom:0}.QuestionsSection__section__title{margin-bottom:24px;scroll-margin-top:80px}@media only screen and (min-width: 992px){.QuestionsSection__section__title{scroll-margin-top:100px}}.QuestionsSection__section__questions{display:flex;flex-direction:column;gap:1px}.QuestionsSection__section__question{background-color:rgba(0,0,0,0);border-radius:0;overflow:hidden;transition:all .2s ease;border-bottom:1px solid #777}.QuestionsSection__section__question-trigger{width:100%;background:none;border:none;color:#fff;padding:.875rem 0;display:flex;justify-content:space-between;align-items:center;cursor:pointer;transition:all .2s ease}@media only screen and (min-width: 992px){.QuestionsSection__section__question-trigger{padding:1.25rem 0}}.QuestionsSection__section__question-trigger:hover{color:#ccc}.QuestionsSection__section__question-trigger-text{text-align:left;font-size:.9rem;font-weight:400;line-height:1.4}@media only screen and (min-width: 992px){.QuestionsSection__section__question-trigger-text{font-size:.95rem}}.QuestionsSection__section__question-trigger-icon{transition:transform .3s cubic-bezier(0.4, 0, 0.2, 1);color:#ccc;transform:rotate(90deg);flex-shrink:0}.QuestionsSection__section__question[data-state=open] .QuestionsSection__section__question-trigger .QuestionsSection__section__question-icon{transform:rotate(90deg)}.QuestionsSection__section__answer{overflow:hidden;background-color:rgba(0,0,0,0)}.QuestionsSection__section__answer[data-state=open]{animation:slideDown 200ms ease}.QuestionsSection__section__answer[data-state=closed]{animation:slideUp 200ms ease}.QuestionsSection__section__answer-content{padding:1rem 0 1.5rem 0;border-top:none}.QuestionsSection__section__answer-content p{margin:0 0 1rem 0;line-height:1.6;color:#ccc;font-size:.9rem}.QuestionsSection__section__answer-content p:last-child{margin-bottom:0}.QuestionsSection__section__empty-section{color:#888;font-style:italic;padding:2rem;text-align:center;border-radius:6px}@keyframes slideUp{from{height:var(--radix-accordion-content-height)}to{height:0}}@keyframes slideDown{from{height:0}to{height:var(--radix-accordion-content-height)}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.Sidebar{display:flex;flex-direction:row;width:100%;position:static;background:rgba(0,0,0,0);border-bottom:1px solid #444;border-radius:0;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;scroll-behavior:smooth;scrollbar-width:none;-ms-overflow-style:none}@media only screen and (min-width: 992px){.Sidebar{flex:0 0 200px;background-color:rgba(0,0,0,0);flex-direction:column;padding:0;height:-moz-fit-content;height:fit-content;position:sticky;top:100px;max-height:calc(100vh - 120px);overflow-y:auto}}.Sidebar::-webkit-scrollbar{display:none}.Sidebar__nav-item{flex:0 0 auto;width:auto;min-width:auto;text-align:center;border:none;border-right:1px solid #444;background:rgba(0,0,0,0);color:#999;font-size:.75rem;padding:.875rem 1rem;white-space:nowrap;display:inline-flex;align-items:center;justify-content:center;font-weight:400;cursor:pointer;transition:all .2s ease;margin-bottom:0;border-radius:0;overflow:visible;height:auto;font-family:"Montserrat"}.Sidebar__nav-item:hover{background-color:#555;color:#fff}.Sidebar__nav-item.active{background-color:#666;color:#fff;font-weight:500;border-bottom:3px solid #fff}@media only screen and (min-width: 992px){.Sidebar__nav-item.active{border-bottom:none;border-left:3px solid #fff}}.Sidebar__nav-item:last-child{border-bottom:none}@media only screen and (min-width: 992px){.Sidebar__nav-item{display:block;width:100%;background:#000;border:none;border-bottom:1px solid #777;border-left:3px solid rgba(0,0,0,0);border-right:none;color:#ccc;padding:16px 8px;text-align:left;font-size:.8rem;white-space:normal;height:auto}.Sidebar__nav-item:hover{background-color:#555;color:#fff}.Sidebar__nav-item.active{background-color:#666;color:#fff;font-weight:500;border-left:3px solid #fff}.Sidebar__nav-item:last-child{border-bottom:none}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.FaqView{background-color:#000;min-height:100vh;width:100%;padding-top:70px}@media only screen and (min-width: 992px){.FaqView{padding-top:80px}}.FaqView__container{display:flex;max-width:1400px;flex-direction:column;margin:0 auto;flex-direction:column;justify-content:space-between;align-items:flex-start;align-self:stretch;border-bottom:1px solid #777}@media only screen and (min-width: 992px){.FaqView__container{flex-direction:row;padding:1rem 60px 80px 60px;gap:40px}}.FaqView__content{display:flex;padding:48px 18px;flex-direction:column;justify-content:center;align-items:flex-end;align-self:stretch;box-sizing:border-box;width:100%}@media only screen and (min-width: 992px){.FaqView__content{flex:1;overflow:visible;width:100%;min-height:100%}}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}.PrivacyNotice{color:#fff;padding:104px 18px}.PrivacyNotice h1,.PrivacyNotice h2,.PrivacyNotice h3{line-height:1.6}.PrivacyNotice a{color:gray;-webkit-text-decoration:underline;text-decoration:underline}.PrivacyNotice a:hover{opacity:.85}.PrivacyNotice span{-webkit-text-decoration:underline;text-decoration:underline}@media only screen and (min-width: 992px){.PrivacyNotice{padding:148px 48px}}.PrivacyNotice__header{display:flex;flex-direction:column;gap:24px;margin-bottom:32px}.PrivacyNotice__header__companies{display:flex;flex-direction:column;gap:8px}.PrivacyNotice__header__senior-notes{display:flex;flex-direction:column;gap:8px;padding-left:18px}.PrivacyNotice__header__senior-notes>li{color:#fff;list-style:disc !important}.PrivacyNotice__section{display:flex;flex-direction:column;gap:24px;margin-top:32px}.PrivacyNotice__section__about{display:flex;flex-direction:column;gap:24px}.PrivacyNotice__section__table-block{display:flex;flex-direction:column;gap:6px}.PrivacyNotice__section__table-block__table-wrapper{width:100%;overflow-x:auto;border-radius:8px;border:1px solid #2d2d2d;background:#1b1b1b;scrollbar-width:thin;scrollbar-color:#777 rgba(0,0,0,0)}.PrivacyNotice__section__table-block__table-wrapper::-webkit-scrollbar{height:8px}.PrivacyNotice__section__table-block__table-wrapper::-webkit-scrollbar-track{background:rgba(0,0,0,0)}.PrivacyNotice__section__table-block__table-wrapper::-webkit-scrollbar-thumb{background:#777;border-radius:8px}.PrivacyNotice__section__table-block__table-wrapper__table{width:100%;border-collapse:collapse;min-width:720px;background:rgba(0,0,0,0)}.PrivacyNotice__section__table-block__table-wrapper__table__th,.PrivacyNotice__section__table-block__table-wrapper__table__td{text-align:left;vertical-align:top;padding:12px;line-height:1.5}.PrivacyNotice__section__table-block__table-wrapper__table__th{background:#1b1b1b;border-bottom:1px solid #2d2d2d}.PrivacyNotice__section__table-block__table-wrapper__table__td{border-top:1px solid #2d2d2d;background:#1b1b1b;vertical-align:top}.PrivacyNotice__section__table-block__table-wrapper__table__td ul{display:flex;flex-direction:column;gap:16px;margin:0;justify-content:center;height:100%;flex:1}.PrivacyNotice__section__table-block__table-wrapper__table__tr:nth-child(even) .PrivacyNotice__section__table-block__table-wrapper__table__td{background:#2d2d2d}.PrivacyNotice__section__table-block__table-wrapper__table__td--left{width:40%}.PrivacyNotice__section__table-block__table-wrapper__table__td--right{width:60%}
@media screen and (orientation: landscape){:root{--layoutWidth: 1280;--layoutHeight: 800}}@media screen and (orientation: portrait){:root{--layoutWidth: 800;--layoutHeight: 1280}}
