@font-face {
    font-family: 'Raleway-VariableFont_wght';
    src: url(d8040b0cc740dda7550a621d10ef0790.ttf) format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

*,
:before,
:after {
  box-sizing: border-box;
}

:focus {
  outline: none;
}

html {
  font-family: sans-serif;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  text-decoration-skip: objects;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

html * {
  max-height: 1000000px;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong,
optgroup {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  flex: none;
  /*lazy-load*/
  opacity: 1;
  transition: opacity 0.3s;
}

img[data-src] {
  /*lazy-load*/
  opacity: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  height: 0;
  margin: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
}

input:required,
textarea:required {
  box-shadow: none;
}

button {
  overflow: visible;
  border: none;
  background: none;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  /* 2 */
  cursor: pointer;
  -webkit-appearance: button;
  /* 3 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
}

legend {
  border: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

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

ol,
ul,
li {
  list-style-position: inside;
}

button,
hr,
input,
textarea {
  border: none;
}

label {
  cursor: pointer;
}

::-webkit-file-upload-button {
  cursor: pointer;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clear,
.clearfix:after {
  clear: both;
}

.center {
  text-align: center;
}

.ovh {
  overflow: hidden;
}

.ovv {
  overflow: visible;
}

.hid,
.hidden {
  display: none;
}

.dt {
  display: table;
}

.dtc {
  display: table-cell;
  vertical-align: middle;
}

.getModal {
  cursor: pointer;
}

/*responsive video iframe*/
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

svg {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
  filter: blur(0px);
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset(
      0
          calc(
              ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) *
                  (1 - var(--progress, 0)) * 0.5
          )
          round var(--f-thumb-border-radius, 0)
  );
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none;
}

.header {
  background: var(--bg-v2);
  padding: 32px 0;
  box-shadow: 0px 4px 20px 1px rgba(0, 0, 0, 0.1);
}
.header .wrap {
  display: flex;
  align-items: center;
}
.header .logo {
  display: flex;
  height: 50px;
}
.header .logo img {
  height: 100%;
  width: auto;
}
.header .btn {
  margin: 0 0 0 20px;
}
@media only screen and (max-width: 1024px) {
  .header .btn {
    margin: 0 0 0 10px;
  }
}
@media only screen and (max-width: 768px) {
  .header .btn {
    font-size: 16px;
    margin: 0 0 0 auto;
  }
}
.header .nav {
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .header .nav {
    position: fixed;
    top: 114px;
    left: -100vw;
    width: 100vw;
    bottom: 0;
    background: var(--bg-v2);
    padding: 32px;
    z-index: 3;
    transition: ease-in-out 0.4s;
  }
  .header .nav.opened {
    left: 0;
  }
}
.header .nav ul {
  list-style: none;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .header .nav ul {
    flex-direction: column;
    align-items: center;
  }
}
.header .nav a {
  display: flex;
  color: var(--text-color2);
  font-size: 18px;
  padding: 10px 20px;
}
.header .nav a:hover {
  color: var(--accent-color);
}
.header .nav a.active {
  color: var(--accent-color);
  font-weight: 900;
}
@media only screen and (max-width: 1024px) {
  .header .nav a {
    padding: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .header .nav a {
    font-size: 18px;
  }
}
.header .nav-btn {
  display: none;
  padding: 10px 0 10px 20px;
  margin: 0 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .header .nav-btn {
    display: flex;
  }
}
.header .nav-btn svg {
  stroke: var(--text-color2);
}

.theme-switcher {
  position: absolute;
  top: 190px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  font-size: 12px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .theme-switcher {
    top: 162px;
    right: 20px;
  }
}
.theme-switcher .pdark {
  display: block;
}
.theme-switcher .plight {
  display: none;
}
.theme-switcher.dark .icon:after {
  left: 14px;
}
.theme-switcher.dark .pdark {
  display: none;
}
.theme-switcher.dark .plight {
  display: block;
}
.theme-switcher .icon {
  position: relative;
  width: 34px;
  height: 16px;
  background: #e1e7ef;
  border-radius: 8px;
}
.theme-switcher .icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background: #1d7dee;
  border-radius: 50%;
  transition: 0.4s;
}

.footer {
  padding: 100px 0 40px;
  background: #1f2937;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 50px 0 40px;
  }
}
.footer .wrap {
  display: flex;
  gap: 85px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .footer .wrap {
    gap: 48px;
    flex-direction: column;
  }
}
.footer .logo {
  display: flex;
  height: 50px;
}
.footer .logo img {
  height: 100%;
  width: auto;
}
.footer .nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .footer .nav ul {
    flex-direction: column;
    align-items: center;
  }
}
.footer .nav a {
  display: flex;
  font-size: 18px;
  color: #fff;
  padding: 10px 20px;
}
.footer .nav a:hover {
  color: var(--accent-color);
}
@media only screen and (max-width: 1024px) {
  .footer .nav a {
    padding: 12px;
  }
}
.footer .nav .btn {
  padding: 14px 16px;
  margin: 0 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .footer .nav .btn {
    margin: 12px 0 0 0;
  }
}
.footer .nav .btn:hover {
  color: #fff;
}
.footer .form-box {
  width: 100%;
  margin: 0 0 82px 0;
}
@media only screen and (max-width: 768px) {
  .footer .form-box {
    margin: 0 0 52px;
  }
}
.footer .form-box .title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
}
.footer .form-box form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
}
.footer .form-box form input {
  width: 420px;
  border-radius: 10px;
  background: #f0f5f6;
  color: #242632;
  padding: 16px 24px;
}
@media only screen and (max-width: 768px) {
  .footer .form-box form input {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .footer .form-box form .btn {
    margin: 0 0 0 auto;
  }
}
.footer .copyright {
  font-size: 18px;
  display: inline-flex;
}
@media only screen and (max-width: 768px) {
  .footer .copyright {
    text-align: center;
    order: 2;
  }
}
.footer .socials {
  display: inline-flex;
  gap: 16px;
}
.footer .socials a {
  display: flex;
  border-radius: 8px;
  background: var(--accent-color);
  padding: 6px;
}
.footer .socials a:hover {
  opacity: 0.8;
}
.footer .socials a img {
  width: 24px;
  height: 24px;
}

.hero-section {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 100px 20px;
}
@media only screen and (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
}
.hero-section .img-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.hero-section .box {
  max-width: 1418px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 100px 100px 100px 50px;
  color: #fff;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .hero-section .box {
    gap: 20px;
    padding: 70px 20px;
  }
}
.hero-section .box.short {
  max-width: 965px;
}
.hero-section .box:before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  background: var(--accent-color);
  border-radius: 20px;
  width: 10px;
  height: 1226px;
}
@media only screen and (max-width: 768px) {
  .hero-section .box:before {
    content: none;
  }
}
.hero-section .box:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--accent-color);
  opacity: 0.8;
  border-radius: 0 12px 12px 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .hero-section .box:after {
    width: 100%;
    border-radius: 20px;
  }
}
.hero-section h1 {
  font-weight: 900;
  font-size: 100px;
}
@media only screen and (max-width: 768px) {
  .hero-section h1 {
    font-size: 40px;
  }
}
.hero-section .desc {
  max-width: 1180px;
}
@media only screen and (max-width: 768px) {
  .hero-section .desc {
    font-size: 18px;
  }
}
.hero-section .desc.short {
  max-width: 600px;
}

.reviews {
  padding: 50px 0 100px;
}
@media only screen and (max-width: 768px) {
  .reviews {
    padding: 20px 0;
  }
}
.reviews .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0 0 0;
}
.reviews .card {
  width: calc(33.3333333333% - 14px);
  background: var(--card-bg);
  border-radius: 20px;
  background: var(--bg-v2);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
}
@media only screen and (max-width: 1024px) {
  .reviews .card {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .reviews .card {
    padding: 20px;
  }
}
.reviews .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 40px;
}
.reviews .author .img-box {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  overflow: hidden;
}
.reviews .author .author-info {
  max-width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
}
.reviews .author .author-info .name {
  font-weight: 700;
  font-size: 28px;
  color: var(--text-color2);
}

.contact-us-v1 {
  position: relative;
  padding: 36px 0;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .contact-us-v1 {
    padding: 40px 20px;
  }
}
.contact-us-v1 img {
  z-index: -1;
}
.contact-us-v1 .wrap {
  max-width: 1350px;
  display: flex;
  flex-direction: column;
  background: rgba(18, 19, 26, 0.6);
  border-radius: 16px;
  padding: 60px;
  border-radius: 20px;
  background: rgba(18, 19, 26, 0.4);
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
}
@media only screen and (max-width: 768px) {
  .contact-us-v1 .wrap {
    max-width: 100%;
    padding: 40px 20px;
  }
}
.contact-us-v1 .h2 {
  color: #fff;
}
.contact-us-v1 .subtitle {
  color: #fff;
}
.contact-us-v1 .form {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .contact-us-v1 .form {
    gap: 20px;
  }
}
.contact-us-v1 .form .wpcf7-spinner,
.contact-us-v1 .form br {
  display: none;
}
.contact-us-v1 .form .form-group {
  width: calc(25% - 15px);
}
@media only screen and (max-width: 1024px) {
  .contact-us-v1 .form .form-group {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 768px) {
  .contact-us-v1 .form .form-group {
    width: 100%;
  }
}
.contact-us-v1 .form .form-group:last-of-type {
  width: 100%;
}
.contact-us-v1 .form .btn {
  margin: 20px 0 0 auto;
}

.numbers-cards {
  position: relative;
  padding: 60px 0 0 0;
  margin: 50px 0;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .numbers-cards {
    padding: 60px 20px 0;
    margin: 30px 0;
  }
}
.numbers-cards:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 60px;
  left: 0;
  background: var(--bg-v3);
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .numbers-cards:after {
    right: 20px;
    bottom: initial;
    left: 20px;
    height: 282px;
    border-radius: 20px;
  }
}
.numbers-cards .wrap {
  position: relative;
}
.numbers-cards .wrap:before {
  content: "";
  position: absolute;
  top: -110px;
  right: -20px;
  bottom: -50px;
  background: var(--accent-color);
  border-radius: 0 0 20px 20px;
  width: 10px;
}
@media only screen and (max-width: 1024px) {
  .numbers-cards .wrap:before {
    content: none;
  }
}
.numbers-cards .h2 {
  color: #fff;
}
.numbers-cards .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 60px 0 0 0;
}
.numbers-cards .list .card {
  width: calc(33.3333333333% - 14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  background-color: var(--bg-v2);
  border-radius: 20px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 16px;
}
@media only screen and (max-width: 768px) {
  .numbers-cards .list .card {
    padding: 32px 16px;
    width: 100%;
  }
}
.numbers-cards .list .card img {
  width: auto;
  height: 60px;
}
.numbers-cards .list .card .title {
  font-weight: 900;
  font-size: 60px;
  color: var(--accent-color);
}

.faq {
  padding: 50px 0 100px;
}
@media only screen and (max-width: 768px) {
  .faq {
    padding: 40px 0 60px;
  }
}
.faq .list {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 20px;
}
.faq .list .accordion {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  background-color: var(--bg-v2);
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.2s;
}
.faq .list .accordion.opened {
  color: #fff;
  background: var(--accent-color);
}
.faq .list .accordion.opened .accordion-btn {
  color: #fff;
}
.faq .list .accordion.opened .accordion-btn svg {
  transform: scale(1, -1);
  fill: #fff;
}
@media only screen and (max-width: 1024px) {
  .faq .list .accordion {
    width: 100%;
    padding: 50px 20px;
  }
}
.faq .list .accordion .accordion-btn {
  position: relative;
  display: flex;
  font-size: 28px;
  font-weight: 900;
  text-align: left;
  color: var(--text-color2);
}
.faq .list .accordion .accordion-btn svg {
  position: absolute;
  top: 0;
  right: -30px;
  width: 24px;
  height: 24px;
  fill: var(--text-color2);
}
@media only screen and (max-width: 768px) {
  .faq .list .accordion .accordion-btn svg {
    top: -30px;
    right: 0;
  }
}
.faq .list .accordion .accordion-body {
  display: none;
  margin: 20px 0 0 0;
}

html {
  min-width: 320px;
  background: #fff;
}

body {
  min-width: 1560px;
  height: 100%;
  color: var(--text-color);
  background-color: var(--bg-v1);
  font-family: "Raleway-VariableFont_wght", arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  overflow-x: hidden;
}
@media only screen and (max-width: 1560px) {
  body {
    min-width: 320px;
  }
}
body.fixed {
  overflow: hidden;
  height: 100%;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 30px #fff inset;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: 0.2s;
}

.global-wrap {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .global-wrap {
    height: 100%;
  }
}
.global-wrap .main {
  flex: 1 0 auto; /* NOT flex: 1; */
}

.wrap {
  position: relative;
  max-width: 100%;
  width: 1560px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 1560px) {
  .wrap {
    width: 1024px;
  }
}
@media only screen and (max-width: 1024px) {
  .wrap {
    width: 768px;
  }
}
@media only screen and (max-width: 768px) {
  .wrap {
    width: 480px;
  }
}
@media only screen and (max-width: 480px) {
  .wrap {
    width: 100%;
  }
}

.h2 {
  font-size: 60px;
  font-weight: 900;
  color: var(--text-color2);
}
@media only screen and (max-width: 768px) {
  .h2 {
    font-size: 40px;
  }
}
.h2 span {
  color: var(--accent-color);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 40px;
}

.object-cover {
  object-fit: cover;
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  padding: 16px;
  border-radius: 20px;
  background-color: var(--accent-color);
  transition: 0.2s;
}
.btn:hover, .btn:focus {
  background-color: var(--accent-color-hover);
}
.btn.white {
  color: var(--accent-color);
  background: #fff;
}
.btn.white:hover, .btn.white:focus {
  background-color: var(--accent-color);
  color: #fff;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-group label {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .form-group label {
    font-size: 18px;
  }
}
.form-group input,
.form-group textarea {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  transition: 0.2s;
}
.form-group input:hover,
.form-group textarea:hover {
  box-shadow: 0 0 0 2px var(--accent-color);
}
.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px var(--accent-color-hover);
}
.form-group textarea {
  height: 180px;
}

.fancybox__backdrop {
  background-color: #111827;
}

.card-list {
  padding: 100px 0 50px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .card-list {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .card-list.mobile-reverse .list .row {
    flex-direction: column-reverse;
  }
}
.card-list .section-header .h2 {
  max-width: 798px;
}
.card-list .list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media only screen and (max-width: 768px) {
  .card-list .list {
    gap: 50px;
  }
}
.card-list .list:before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 10px;
  background: var(--accent-color);
  border-radius: 20px;
  width: 10px;
  height: 1226px;
}
@media only screen and (max-width: 768px) {
  .card-list .list:before {
    content: none;
  }
}
.card-list .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .card-list .row {
    gap: 20px;
  }
}
.card-list .row:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.card-list .row:nth-of-type(2n) .box {
  padding: 0 0 0 150px;
}
@media only screen and (max-width: 1560px) {
  .card-list .row:nth-of-type(2n) .box {
    padding: 0 0 0 60px;
  }
}
@media only screen and (max-width: 768px) {
  .card-list .row:nth-of-type(2n) .box {
    padding: 0;
  }
}
.card-list .box {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  padding: 0 150px 0 0;
}
@media only screen and (max-width: 1560px) {
  .card-list .box {
    padding: 0 60px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .card-list .box {
    width: 100%;
    padding: 0;
  }
}
.card-list .box .btn {
  margin: 20px 0 0 0;
}
.card-list .img-box {
  width: 50%;
  padding: 0 0 46%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .card-list .img-box {
    width: 100%;
    padding: 0 0 76%;
  }
}

.financing-options {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .financing-options {
    padding: 50px 20px 20px;
  }
}
.financing-options .wrap {
  position: relative;
  padding: 280px 100px 0;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .financing-options .wrap {
    padding: 60px 20px 0;
  }
}
.financing-options .img-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 35%;
  left: 0;
  border-radius: 20px;
  overflow: hidden;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .financing-options .img-box {
    bottom: 24%;
  }
}
.financing-options .box {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  background: #fff;
  color: #6b7280;
  padding: 60px;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .financing-options .box {
    padding: 60px 20px;
  }
}
.financing-options .box .h2 {
  max-width: 796px;
  color: #374151;
}
.financing-options .box .btn {
  margin: 20px 0 0 0;
}

.projects-info {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .projects-info {
    padding: 20px 0;
  }
}
.projects-info .wrap {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media only screen and (max-width: 768px) {
  .projects-info .wrap {
    gap: 50px;
  }
}
.projects-info .row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 50px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .projects-info .row {
    background: transparent;
    padding: 0;
    gap: 0;
  }
}
.projects-info .row:nth-of-type(2n) {
  flex-direction: row-reverse;
  background: #1f2937;
}
@media only screen and (max-width: 768px) {
  .projects-info .row:nth-of-type(2n) {
    background: transparent;
  }
}
.projects-info .row:nth-of-type(2n) .box {
  padding: 0 0 0 134px;
}
@media only screen and (max-width: 1560px) {
  .projects-info .row:nth-of-type(2n) .box {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .projects-info .row:nth-of-type(2n) .box {
    padding: 60px 20px;
    background: #1f2937;
  }
}
.projects-info .row:nth-of-type(2n) .img-box {
  margin: -100px 0 -20px;
}
@media only screen and (max-width: 768px) {
  .projects-info .row:nth-of-type(2n) .img-box {
    width: calc(100% - 40px);
    padding: 0 0 60%;
    margin: -30px auto 0;
  }
}
.projects-info .box {
  width: calc(50% - 20px);
  padding: 0 134px 0 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
@media only screen and (max-width: 1560px) {
  .projects-info .box {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .projects-info .box {
    width: 100%;
    background: var(--accent-color);
    padding: 60px 20px;
    border-radius: 20px;
  }
}
.projects-info .box .h2 {
  color: #fff;
}
.projects-info .box .btn {
  margin: 20px 0 0 0;
}
.projects-info .img-box {
  width: calc(50% - 20px);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: -20px 0 -100px;
}
@media only screen and (max-width: 768px) {
  .projects-info .img-box {
    width: calc(100% - 40px);
    padding: 0 0 60%;
    margin: -30px auto 0;
  }
}

.our-customers {
  background: #fff;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .our-customers {
    background: transparent;
    padding: 20px 20px 60px;
  }
}
.our-customers .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .our-customers .wrap {
    padding: 60px 20px 100px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  }
}
.our-customers .box {
  width: calc(60% - 20px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .our-customers .box {
    width: 100%;
    gap: 20px;
  }
}
.our-customers .box .h2 {
  color: #374151;
}
.our-customers .box .desc {
  max-width: 580px;
  color: #6b7280;
}
.our-customers .list {
  width: calc(40% - 20px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px 40px;
}
@media only screen and (max-width: 768px) {
  .our-customers .list {
    width: 100%;
    gap: 28px 20px;
  }
}
.our-customers .list img {
  display: flex;
  width: auto;
  height: 65px;
}

.pricing-plans {
  padding: 100px 0 50px;
}
@media only screen and (max-width: 768px) {
  .pricing-plans {
    padding: 100px 0 30px;
  }
}
.pricing-plans .list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pricing-plans .list:before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  bottom: -50px;
  background: var(--accent-color);
  border-radius: 20px 20px 0 0;
  width: 10px;
}
@media only screen and (max-width: 1024px) {
  .pricing-plans .list:before {
    content: none;
  }
}
.pricing-plans .list .card {
  width: calc(33.3333333333% - 14px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-v2);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
}
@media only screen and (max-width: 1024px) {
  .pricing-plans .list .card {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .pricing-plans .list .card {
    padding: 40px 20px;
  }
}
.pricing-plans .list .card .title {
  font-weight: 900;
  font-size: 40px;
  color: var(--text-color2);
}
.pricing-plans .list .card .btn {
  margin: auto 0 0 0;
}

.video-section {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .video-section {
    padding: 30px 0;
  }
}
.video-section .iframe-box {
  border-radius: 16px;
  padding: 20px;
  background: #141313;
}
.video-section iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  height: auto;
}

.our-projects {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .our-projects {
    padding: 30px 0;
  }
}
.our-projects .list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.our-projects .card {
  border-radius: 20px;
  background: var(--bg-v2);
  padding: 50px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  .our-projects .card {
    padding: 40px 20px 20px;
  }
}
.our-projects .card .top-box {
  display: grid;
  align-items: center;
  grid-template: "title btn" "desc desc";
  gap: 40px;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  .our-projects .card .top-box {
    grid-template: "title" "desc" "btn";
    gap: 20px;
  }
}
.our-projects .card .top-box .title {
  grid-area: title;
  font-size: 40px;
  font-weight: 900;
  color: var(--text-color2);
}
.our-projects .card .top-box .desc {
  grid-area: desc;
  font-size: 28px;
  font-weight: 900;
  color: var(--text-color2);
}
.our-projects .card .top-box .btn {
  grid-area: btn;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .our-projects .card .top-box .btn {
    margin: 20px auto 0 0;
  }
}
.our-projects .card .img-list {
  display: flex;
  gap: 20px;
}
.our-projects .card .img-list .img-box {
  position: relative;
  width: calc(33.3333333333% - 14px);
  padding: 0 0 20%;
  border-radius: 10px;
  overflow: hidden;
}
.our-projects .card .img-list .img-box:nth-child(n+4) {
  display: none;
}
@media only screen and (max-width: 768px) {
  .our-projects .card .img-list .img-box {
    display: none;
    padding: 0 0 calc(100% + 40px);
    width: calc(100% + 40px);
    margin: 0 -20px -20px;
  }
  .our-projects .card .img-list .img-box:first-of-type {
    display: flex;
  }
}

.not-found {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}
.not-found .box {
  max-width: 750px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  padding: 20px 50px 20px 0;
  color: #fff;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .not-found .box {
    padding: 60px 20px;
  }
}
.not-found .box:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--accent-color);
  opacity: 0.8;
  border-radius: 0 12px 12px 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .not-found .box:after {
    width: 100%;
    border-radius: 20px;
  }
}
.not-found .box .h2 {
  color: #fff;
}

.simple-page {
  padding: 80px 0 200px;
  font-size: 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .simple-page {
    padding: 60px 0;
  }
}
.simple-page h2 {
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 20px;
}
.simple-page ul,
.simple-page li {
  list-style-position: outside;
}
.simple-page li {
  margin: 0 0 0 16px;
}
.simple-page p,
.simple-page ul,
.simple-page ol {
  margin: 0 0 16px;
  min-height: 16px;
}
.simple-page h1,
.simple-page h2,
.simple-page h3,
.simple-page h4,
.simple-page h5,
.simple-page h6 {
  margin-bottom: 20px;
}
.simple-page h3 {
  font-size: 24px;
  font-weight: 600;
}
.simple-page h4 {
  font-size: 22px;
}
.simple-page h5,
.simple-page h6 {
  font-size: 20px;
}
.simple-page .wp-element-button {
  cursor: pointer;
}
.simple-page .has-regular-font-size {
  font-size: 1em;
}
.simple-page .has-larger-font-size {
  font-size: 2.625em;
}
.simple-page .has-normal-font-size {
  font-size: var(--wp--preset--font-size--normal);
}
.simple-page .has-huge-font-size {
  font-size: var(--wp--preset--font-size--huge);
}
.simple-page .has-text-align-center {
  text-align: center;
}
.simple-page .has-text-align-left {
  text-align: left;
}
.simple-page .has-text-align-right {
  text-align: right;
}
.simple-page #end-resizable-editor-section {
  display: none;
}
.simple-page .aligncenter {
  clear: both;
}
.simple-page .items-justified-left {
  justify-content: flex-start;
}
.simple-page .items-justified-center {
  justify-content: center;
}
.simple-page .items-justified-right {
  justify-content: flex-end;
}
.simple-page .items-justified-space-between {
  justify-content: space-between;
}
