@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
:root {
  --up-window-def: 1920;
  --up-window-width: 100vw;
  --cw: calc(var(--up-window-width) / var(--up-window-def));
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  font-family: "DM Sans";
  line-height: 150%;
  font-size: 14px;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  border: 0;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1600px) and (max-width: 1919px) {
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1600px) / (1920 - 1600));
  }
}
@media (min-width: 1920px) {
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    font-size: 12px;
  }
}

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

:focus {
  outline: 0;
}

/*
  1. Default font size.
  2. Correct the line height in all browsers.
  3. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
  font-size: 62.5%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 
  1. Remove the margin in all browsers.
  2. Default line-height.
  3.auto: Browser makes predictions about when you can adjust speed, readability, and geometric accuracy while drawing text. Different browsers respond with different values.
    optimizeSpeed: Browser prioritizes more the rendering speed compared to legibility and geometric precision while drawing text. It disables kerning and ligatures.
    optimizeLegibility: Browser prioritizes more legibility compared to rendering speed and geometric precision while drawing text.  It enables kerning and optional ligatures.
    geometricPrecision: The browser prioritizes more geometric precision compared to rendering speed and legibility while drawing text. Certain aspects of fonts like kerning, don’t scale linearly hence it can make text using those fonts look even better.
*/
body {
  margin: 0;
  line-height: 1;
  text-rendering: auto; /* auto, optimizeSpeed, optimizeLegibility, geometricPrecision */
}

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

/* Add the correct display in Edge, IE 10+, and Firefox. */
details {
  display: block;
}

/* Add the correct display in all browsers. */
summary {
  display: list-item;
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: "DM Sans";
  line-height: 150%;
  font-size: 14px;
  font-size: inherit;
  font-weight: inherit;
}
@media (min-width: 1600px) and (max-width: 1919px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1600px) / (1920 - 1600));
  }
}
@media (min-width: 1920px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 12px;
  }
}

ol, ul {
  padding: 0;
}

li {
  color: #000000;
  font-weight: normal;
}

p {
  color: #000000;
  font-weight: normal;
}

a {
  text-decoration: none;
  font-weight: normal;
  cursor: pointer;
}

a:active, a:hover, a:link {
  outline: 0;
  text-decoration: none;
}

/* Remove the gray background on active links in IE 10. */
a {
  background-color: transparent;
}

b, strong {
  font-weight: bolder;
}

blockquote, q {
  quotes: none;
}

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

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

/* Prevent `sub` and `sup` elements from affecting the line height in all browsers. */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Removes the default spacing and border for appropriate elements. */
blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

/* Table Styles */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
  text-align: left;
}

/* Input, Button, Optgroup, Select, Textarea  Styles */
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

/* Remove the default vertical scrollbar in IE 10+ */
textarea {
  overflow: auto;
  resize: vertical;
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
button {
  -webkit-appearance: none;
  cursor: pointer;
}

button, input {
  overflow: visible;
  cursor: pointer;
}

button,
[role=button] {
  cursor: pointer;
}

/* Correct the inability to style clickable types in iOS and Safari. */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* Remove the inner border and padding in Firefox. */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  cursor: pointer;
}

/*
  1. Add the correct box sizing in IE 10. 
  2. Remove the padding in IE 10. 
*/
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  cursor: pointer;
}

/* Correct the cursor style of increment and decrement buttons in Chrome. */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  cursor: pointer;
}

/*
 1. Correct the odd appearance in Chrome and Safari.
 2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
  cursor: pointer;
}

/*
  Remove the inner padding in Chrome and Safari on macOS.
*/
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  cursor: pointer;
}

/*
  1. Correct the inability to style clickable types in iOS and Safari.
  2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
  cursor: pointer;
}

/* Media Styles */
img {
  border-style: none;
}

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

iframe {
  border: 0;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

@-webkit-keyframes pulse-ring {
  0% {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
    display: block;
  }
  80%, 100% {
    opacity: 0;
  }
}
@keyframes pulse-ring {
  0% {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
    opacity: 1;
  }
  80%, 100% {
    opacity: 0;
    display: block;
  }
}
@keyframes bend {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(-2.5deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 100px;
  }
  100% {
    background-position: 100px;
  }
}
@keyframes Sshine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 60px;
  }
  100% {
    background-position: 60px;
  }
}
/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

.swiper-pointer-events {
  touch-action: pan-y;
}

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

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

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

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

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

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

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

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

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

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

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

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100vh;
}

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

* html body {
  margin-top: 0 !important;
}

@media screen and (max-width: 782px) {
  html {
    margin-top: 0 !important;
  }
  * html body {
    margin-top: 0 !important;
  }
}
html, body, div, span, applet, object, iframe,
p, blockquote, pre,
a, abbr, br, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, textarea, select, input,
button, sub, sup, script, map, bdo {
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 1600px) and (max-width: 1919px) {
  html, body, div, span, applet, object, iframe,
  p, blockquote, pre,
  a, abbr, br, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video, textarea, select, input,
  button, sub, sup, script, map, bdo {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1600px) / (1920 - 1600));
  }
}
@media (min-width: 1920px) {
  html, body, div, span, applet, object, iframe,
  p, blockquote, pre,
  a, abbr, br, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video, textarea, select, input,
  button, sub, sup, script, map, bdo {
    font-size: 18px;
  }
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
h1 span, h1 a, h2 span, h2 a, h3 span, h3 a, h4 span, h4 a, h5 span, h5 a, h6 span, h6 a {
  letter-spacing: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

ul, ol {
  display: inline-block;
  list-style: none;
}

li {
  font-size: 14px;
}
@media (min-width: 1600px) and (max-width: 1919px) {
  li {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1600px) / (1920 - 1600));
  }
}
@media (min-width: 1920px) {
  li {
    font-size: 18px;
  }
}

span {
  font-size: 14px;
}
@media (min-width: 1600px) and (max-width: 1919px) {
  span {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1600px) / (1920 - 1600));
  }
}
@media (min-width: 1920px) {
  span {
    font-size: 18px;
  }
}

a {
  font-size: 14px;
}
@media (min-width: 1600px) and (max-width: 1919px) {
  a {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1600px) / (1920 - 1600));
  }
}
@media (min-width: 1920px) {
  a {
    font-size: 18px;
  }
}

body {
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll;
}

body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

* {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-drag: none;
}

#page__wrapper {
  position: relative;
}
#page__wrapper.active {
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  #page__wrapper {
    width: 100vw;
  }
}

* u {
  font-size: 14px;
  text-decoration: underline;
  font-family: "Open Sans";
  line-height: 180%;
}
@media (min-width: 1240px) and (max-width: 1439px) {
  * u {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1240px) / (1440 - 1240));
  }
}
@media (min-width: 1440px) {
  * u {
    font-size: 18px;
  }
}

.up-section {
  width: 100%;
}
.up-section.up-page {
  padding-top: 100px;
  padding-bottom: 100px;
}

.up-container {
  width: 100%;
  max-width: 1855px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
}
@media screen and (max-width: 1640px) {
  .up-container {
    max-width: 1400px;
  }
}

.up-row {
  margin: 0 auto;
}

p {
  font-family: "Montserrat";
  line-height: 100%;
  color: #484848;
  font-weight: 400px;
  font-size: 14px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  p {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  p {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  p {
    font-size: 12px;
  }
}
p > *, p > * > *, p > * > * > * {
  font-family: "Montserrat";
  line-height: 100%;
  color: #484848;
  font-size: 14px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  p > *, p > * > *, p > * > * > * {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  p > *, p > * > *, p > * > * > * {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  p > *, p > * > *, p > * > * > * {
    font-size: 12px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Anton";
  line-height: 100%;
}

span {
  font-family: "Montserrat";
}

h1,
.l_h1 {
  font-size: 52px;
  font-family: "Anton";
  font-weight: 400;
  color: #fff;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  h1,
  .l_h1 {
    font-size: 61px;
    font-size: calc(52px + (70 - 52) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  h1,
  .l_h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 991px) {
  h1,
  .l_h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 761px) {
  h1,
  .l_h1 {
    font-size: 32px;
  }
}
h1 a,
h1 span,
h1 mark,
.l_h1 a,
.l_h1 span,
.l_h1 mark {
  font-family: "Anton";
  font-size: 52px;
  padding: 0 15px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  h1 a,
  h1 span,
  h1 mark,
  .l_h1 a,
  .l_h1 span,
  .l_h1 mark {
    font-size: 61px;
    font-size: calc(52px + (70 - 52) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  h1 a,
  h1 span,
  h1 mark,
  .l_h1 a,
  .l_h1 span,
  .l_h1 mark {
    font-size: 70px;
  }
}
@media screen and (max-width: 991px) {
  h1 a,
  h1 span,
  h1 mark,
  .l_h1 a,
  .l_h1 span,
  .l_h1 mark {
    font-size: 45px;
  }
}
@media screen and (max-width: 761px) {
  h1 a,
  h1 span,
  h1 mark,
  .l_h1 a,
  .l_h1 span,
  .l_h1 mark {
    font-size: 32px;
  }
}
h1 strong,
.l_h1 strong {
  font-size: 52px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  h1 strong,
  .l_h1 strong {
    font-size: 61px;
    font-size: calc(52px + (70 - 52) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  h1 strong,
  .l_h1 strong {
    font-size: 70px;
  }
}
@media screen and (max-width: 991px) {
  h1 strong,
  .l_h1 strong {
    font-size: 45px;
  }
}
@media screen and (max-width: 761px) {
  h1 strong,
  .l_h1 strong {
    font-size: 32px;
  }
}

h2 {
  font-size: 22px;
  letter-spacing: 0px;
  line-height: 165%;
  font-family: "Anton";
  font-weight: 400;
  color: #fff;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  h2 {
    font-size: 26px;
    font-size: calc(22px + (30 - 22) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 761px) {
  h2 {
    font-size: 18px;
  }
}
h2 a,
h2 span,
h2 mark {
  font-size: 22px;
  font-family: "Anton";
  font-weight: 400;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  h2 a,
  h2 span,
  h2 mark {
    font-size: 26px;
    font-size: calc(22px + (30 - 22) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  h2 a,
  h2 span,
  h2 mark {
    font-size: 30px;
  }
}
@media screen and (max-width: 761px) {
  h2 a,
  h2 span,
  h2 mark {
    font-size: 18px;
  }
}
h2 strong {
  font-size: 22px;
  font-family: "Anton";
}
@media (min-width: 1440px) and (max-width: 1919px) {
  h2 strong {
    font-size: 26px;
    font-size: calc(22px + (30 - 22) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  h2 strong {
    font-size: 30px;
  }
}
@media screen and (max-width: 761px) {
  h2 strong {
    font-size: 18px;
  }
}

h3 {
  font-size: 16px;
  line-height: 165%;
}
@media (min-width: 1240px) and (max-width: 1439px) {
  h3 {
    font-size: 18px;
    font-size: calc(16px + (20 - 16) * (100vw - 1240px) / (1440 - 1240));
  }
}
@media (min-width: 1440px) {
  h3 {
    font-size: 20px;
  }
}
h3 a,
h3 span,
h3 mark,
h3 strong {
  font-size: 16px;
}
@media (min-width: 1240px) and (max-width: 1439px) {
  h3 a,
  h3 span,
  h3 mark,
  h3 strong {
    font-size: 18px;
    font-size: calc(16px + (20 - 16) * (100vw - 1240px) / (1440 - 1240));
  }
}
@media (min-width: 1440px) {
  h3 a,
  h3 span,
  h3 mark,
  h3 strong {
    font-size: 20px;
  }
}

h4 {
  font-size: 14px;
  line-height: 165%;
}
@media (min-width: 1240px) and (max-width: 1439px) {
  h4 {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1240px) / (1440 - 1240));
  }
}
@media (min-width: 1440px) {
  h4 {
    font-size: 18px;
  }
}
h4 a,
h4 span,
h4 mark,
h4 strong {
  font-size: 14px;
  line-height: 165%;
}
@media (min-width: 1240px) and (max-width: 1439px) {
  h4 a,
  h4 span,
  h4 mark,
  h4 strong {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1240px) / (1440 - 1240));
  }
}
@media (min-width: 1440px) {
  h4 a,
  h4 span,
  h4 mark,
  h4 strong {
    font-size: 18px;
  }
}

h5 {
  font-size: 12px;
  line-height: 165%;
}
@media (min-width: 1240px) and (max-width: 1439px) {
  h5 {
    font-size: 14px;
    font-size: calc(12px + (16 - 12) * (100vw - 1240px) / (1440 - 1240));
  }
}
@media (min-width: 1440px) {
  h5 {
    font-size: 16px;
  }
}
h5 a,
h5 span,
h5 mark,
h5 strong {
  font-size: 12px;
  line-height: 165%;
}
@media (min-width: 1240px) and (max-width: 1439px) {
  h5 a,
  h5 span,
  h5 mark,
  h5 strong {
    font-size: 14px;
    font-size: calc(12px + (16 - 12) * (100vw - 1240px) / (1440 - 1240));
  }
}
@media (min-width: 1440px) {
  h5 a,
  h5 span,
  h5 mark,
  h5 strong {
    font-size: 16px;
  }
}

h6 {
  font-size: 10px;
  line-height: 165%;
}
@media (min-width: 1240px) and (max-width: 1439px) {
  h6 {
    font-size: 12px;
    font-size: calc(10px + (14 - 10) * (100vw - 1240px) / (1440 - 1240));
  }
}
@media (min-width: 1440px) {
  h6 {
    font-size: 14px;
  }
}
h6 a,
h6 span,
h6 mark,
h6 strong {
  font-size: 10px;
  line-height: 165%;
}
@media (min-width: 1240px) and (max-width: 1439px) {
  h6 a,
  h6 span,
  h6 mark,
  h6 strong {
    font-size: 12px;
    font-size: calc(10px + (14 - 10) * (100vw - 1240px) / (1440 - 1240));
  }
}
@media (min-width: 1440px) {
  h6 a,
  h6 span,
  h6 mark,
  h6 strong {
    font-size: 14px;
  }
}

.up-main_button {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  text-align: center;
  color: #0038ff;
  background: #00ffa3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  padding: 10px 5px;
  transition: 1.75s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}
@media (min-width: 1240px) and (max-width: 1439px) {
  .up-main_button {
    font-size: 13px;
    font-size: calc(12px + (14 - 12) * (100vw - 1240px) / (1440 - 1240));
  }
}
@media (min-width: 1440px) {
  .up-main_button {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .up-main_button {
    width: 33.3333333333vw;
  }
}
.up-main_button span {
  z-index: 1;
}
.up-main_button:before, .up-main_button:after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #0038ff;
  transform: translateX(-100%);
  transition: 1.75s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.up-main_button::after {
  transition-delay: 0.25s;
}
.up-main_button:before {
  background-color: #000000;
  opacity: 0.4;
  transform: translateX(-100%);
  transition: 1.9s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.up-main_button.blue {
  transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-transform: unset;
}
.up-main_button.blue:before, .up-main_button.blue:after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #00ffa3;
  transform: translateX(-100%);
  transition: 1.75s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.up-main_button.blue::after {
  transition-delay: 0.25s;
}
.up-main_button.blue:before {
  background-color: #ffffff;
  opacity: 0.4;
  transform: translateX(-100%);
  transition: 1.9s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.up-main_button.blue:hover {
  transform: rotateY(5deg);
}
.up-main_button.blue:hover:before {
  transform: translateX(100%);
}
.up-main_button.blue:hover:after {
  transform: translateX(100%);
}

.words_in_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: fit-content;
}
.words_in_col .flip {
  overflow: hidden;
  margin: 5px 0;
}
.words_in_col .flip > span {
  transform: translateY(-110%);
  transition: 0.3s ease;
  display: inline-block;
}
.words_in_col .flip.f_1 > * {
  animation: show 1s linear;
}
.words_in_col .flip.f_2 > * {
  animation: show 1s linear;
  animation-delay: 1s;
  transition-delay: 0.3s;
}
.words_in_col .flip.f_3 > * {
  animation: show 1s linear;
  animation-delay: 2s;
  transition-delay: 0.6s;
}
.words_in_col .flip.f_4 > * {
  animation: show 1s linear;
  animation-delay: 3s;
  transition-delay: 0.9s;
}
.words_in_col .flip.f_5 > * {
  animation: show 1s linear;
  animation-delay: 4s;
  transition-delay: 1.2s;
}
.words_in_col.aos-animate .flip > span {
  transform: translateY(0%);
}

.words_in_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.title-font {
  font-size: 22px;
  color: #fff;
  padding-bottom: 30px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .title-font {
    font-size: 26px;
    font-size: calc(22px + (30 - 22) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .title-font {
    font-size: 30px;
  }
}
.title-font .flip {
  margin: 2px 0;
}
.title-font span {
  font-size: 22px;
  color: #fff;
  padding: 0 10px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .title-font span {
    font-size: 26px;
    font-size: calc(22px + (30 - 22) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .title-font span {
    font-size: 30px;
  }
}
@media screen and (max-width: 761px) {
  .title-font span {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .title-font {
    padding-bottom: 20px;
  }
}

.midle-font {
  font-size: 45px;
  color: #fff;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -moz-align-items: end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .midle-font {
    font-size: 52.5px;
    font-size: calc(45px + (60 - 45) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .midle-font {
    font-size: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .midle-font {
    font-size: 35px;
  }
}
.midle-font .flip {
  margin: 2px 0;
}
.midle-font span,
.midle-font a {
  font-size: 45px;
  color: #fff;
  padding: 0 10px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .midle-font span,
  .midle-font a {
    font-size: 52.5px;
    font-size: calc(45px + (60 - 45) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .midle-font span,
  .midle-font a {
    font-size: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .midle-font span,
  .midle-font a {
    font-size: 35px;
  }
}

.tbch-grey {
  background-color: #484848;
}

.tbch-green {
  background-color: #8bbe2a;
}

.tbch-white {
  background-color: #fff;
  color: #8bbe2a !important;
}

.bck {
  background-repeat: no-repeat;
  background-size: cover;
}

.up_slider-arrow {
  width: 60px;
  height: 60px;
  background-color: #8bbe2a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
  margin: 5px;
}
.up_slider-arrow svg {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.up_slider-arrow svg path {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  fill: white;
}
.up_slider-arrow:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #8bbe2a;
  border-radius: 100%;
  z-index: -1;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
.up_slider-arrow:hover {
  background-color: #8bbe2a;
}
.up_slider-arrow:hover:before {
  width: 120%;
  height: 120%;
}
.up_slider-arrow:hover svg path {
  fill: white;
}
@media screen and (max-width: 1600px) {
  .up_slider-arrow {
    width: 45px;
    height: 45px;
  }
  .up_slider-arrow svg {
    width: 17px;
    height: 12px;
  }
}
@media screen and (max-width: 991px) {
  .up_slider-arrow {
    display: none;
  }
}

.up-grey_button {
  font-family: "Anton";
  font-size: 22px;
  color: #fff;
  padding: 0 10px;
  background-color: #484848;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-grey_button {
    font-size: 26px;
    font-size: calc(22px + (30 - 22) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-grey_button {
    font-size: 30px;
  }
}
@media screen and (max-width: 761px) {
  .up-grey_button {
    font-size: 18px;
  }
}

.up-green_button {
  color: #fff;
}

.tbch-green_s {
  background-color: #8bbe2a;
  color: #fff;
  padding: 0 10px;
  font-size: 22px;
  font-family: "Anton";
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .tbch-green_s {
    font-size: 26px;
    font-size: calc(22px + (30 - 22) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .tbch-green_s {
    font-size: 30px;
  }
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.hover-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  width: calc(50% - 20px);
  color: #ffffff;
  font-size: 16px;
  background-color: #000000;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  cursor: pointer;
  min-height: 550px;
}
@media screen and (max-width: 1640px) {
  .hover-box {
    margin-bottom: 30px;
    min-height: 400px;
    max-height: 400px;
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 991px) {
  .hover-box {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .hover-box {
    width: 100%;
  }
}
.hover-box:nth-of-type(2n) {
  top: 150px;
  margin-left: 40px;
}
@media screen and (max-width: 1640px) {
  .hover-box:nth-of-type(2n) {
    margin-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .hover-box:nth-of-type(2n) {
    margin-left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .hover-box:nth-of-type(2n) {
    margin-left: 0;
    top: 0;
  }
}
.hover-box .tbch-green_s {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hover-box *,
.hover-box *:before,
.hover-box *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-box img {
  width: 100%;
  max-width: 100%;
  backface-visibility: hidden;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}
.hover-box figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hover-box figcaption:after {
  opacity: 0;
  -webkit-transform: scale(0.05);
  transform: scale(0.05);
  height: 100%;
  width: 100%;
  position: absolute;
  content: "";
  background-color: #8bbe2a;
  bottom: 0;
  right: 0;
}
.hover-box .dsc {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index: 1;
  opacity: 0;
  width: 100%;
  padding: 40px 60px;
}
@media screen and (max-width: 1640px) {
  .hover-box .dsc {
    width: 100%;
    padding: 30px;
  }
}
@media screen and (max-width: 991px) {
  .hover-box .dsc {
    padding: 20px;
  }
}
.hover-box .dsc .title {
  color: #fff;
  text-align: center;
  font-family: "Anton";
  font-size: 32px;
  margin-bottom: 40px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .hover-box .dsc .title {
    font-size: 36px;
    font-size: calc(32px + (40 - 32) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .hover-box .dsc .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1640px) {
  .hover-box .dsc .title {
    margin-bottom: 20px;
  }
}
.hover-box .dsc .text {
  color: #000;
}
.hover-box .dsc .text li {
  list-style: disc;
  margin-left: 15px;
  font-weight: 400;
  color: #484848;
}
.hover-box .dsc .text li, .hover-box .dsc .text li > *, .hover-box .dsc .text li > * > * {
  font-size: 14px;
  line-height: 135%;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .hover-box .dsc .text li, .hover-box .dsc .text li > *, .hover-box .dsc .text li > * > * {
    font-size: 17px;
    font-size: calc(14px + (20 - 14) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .hover-box .dsc .text li, .hover-box .dsc .text li > *, .hover-box .dsc .text li > * > * {
    font-size: 20px;
  }
}
.hover-box .dsc .text, .hover-box .dsc .text > *, .hover-box .dsc .text > * > * {
  font-size: 14px;
  line-height: 135%;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .hover-box .dsc .text, .hover-box .dsc .text > *, .hover-box .dsc .text > * > * {
    font-size: 17px;
    font-size: calc(14px + (20 - 14) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .hover-box .dsc .text, .hover-box .dsc .text > *, .hover-box .dsc .text > * > * {
    font-size: 20px;
  }
}
.hover-box:hover img, .hover-box.hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  opacity: 0.5;
}
.hover-box:hover .dsc, .hover-box.hover .dsc {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.hover-box:hover figcaption:after, .hover-box.hover figcaption:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.shadow {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: black;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.shadow.show {
  display: block;
  opacity: 0.5;
}

#lightbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
}
#lightbox.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}
#lightbox .modal-content {
  position: relative;
  max-width: 88%;
}
#lightbox .modal-body {
  width: 100%;
  height: 100%;
}
#lightbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#lightbox .up-cross_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100%;
  border: 2px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  cursor: pointer;
}
#lightbox .up_cross {
  position: relative;
  width: 20px;
  height: 20px;
  opacity: 1;
  right: 1px;
  top: -1px;
}
#lightbox .up_cross:before, #lightbox .up_cross:after {
  position: absolute;
  left: 50%;
  content: " ";
  height: 20px;
  width: 2px;
  background-color: black;
  border-radius: 200px;
}
#lightbox .up_cross:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#lightbox .up_cross:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.up-social_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  position: absolute;
  bottom: 0;
  z-index: 10;
}
@media screen and (max-width: 1600px) {
  .up-social_list {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  .up-social_list {
    padding-top: 20px;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: row;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
.up-social_list .up-social_list-icon {
  max-width: 80px;
  width: 100%;
  margin-right: 45px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  cursor: pointer;
}
@media screen and (max-width: 1700px) {
  .up-social_list .up-social_list-icon {
    max-width: 60px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 1600px) {
  .up-social_list .up-social_list-icon {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .up-social_list .up-social_list-icon {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}
.up-social_list svg {
  width: 100%;
  height: auto;
  fill: #8bbe2a;
}

.map_link {
  cursor: zoom-in;
  z-index: 100;
}
.map_link .img-wrp {
  cursor: zoom-in;
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -moz-align-items: end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
@media screen and (max-width: 991px) {
  .flex-box {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.up-link {
  padding-bottom: 30px;
  font-size: 14px;
  font-family: "Montserrat";
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  color: #8bbe2a;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-link {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-link {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .up-link {
    padding-bottom: 20px;
  }
}
.up-link:hover {
  color: #484848;
}

.dwnld_btn {
  display: flex !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.dwnld_btn svg {
  max-width: 40px;
  height: auto;
  margin-right: 5px;
}
.dwnld_btn svg g {
  fill: white;
}

.up-page {
  padding-top: 150px;
  padding-bottom: 150px;
}
.up-page .up-container {
  max-width: 1300px;
}
.up-page h1,
.up-page h2,
.up-page h3,
.up-page h4,
.up-page h5,
.up-page h6,
.up-page p {
  color: #000;
  line-height: 120%;
  margin-bottom: 10px;
}
.up-page h2 {
  font-weight: 400;
}
.up-page h3 {
  font-weight: 400;
}
.up-page h4 {
  font-weight: 400;
}
.up-page h5 {
  font-weight: 400;
}
.up-page h6 {
  font-weight: 400;
}
.up-page li {
  margin-left: 20px;
}
.up-page li, .up-page li > *, .up-page li > * > *, .up-page li > * > * > *, .up-page li > * > * > * > *, .up-page li > * > * > * > * > * {
  font-family: "Montserrat";
  line-height: 120%;
  margin-bottom: 10px;
  color: #484848;
  font-size: 14px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-page li, .up-page li > *, .up-page li > * > *, .up-page li > * > * > *, .up-page li > * > * > * > *, .up-page li > * > * > * > * > * {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-page li, .up-page li > *, .up-page li > * > *, .up-page li > * > * > *, .up-page li > * > * > * > *, .up-page li > * > * > * > * > * {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .up-page li, .up-page li > *, .up-page li > * > *, .up-page li > * > * > *, .up-page li > * > * > * > *, .up-page li > * > * > * > * > * {
    font-size: 12px;
  }
}
.up-page ul {
  margin-bottom: 10px;
  list-style: square;
}
.up-page ul ul {
  margin-bottom: 0;
  list-style: circle;
}

.hover__form {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.hover__form-shell {
  display: flex;
  flex-direction: column;
  max-width: 350px;
}
.hover__form .np-footer-newsletter {
  width: 100%;
}
.hover__form.hide {
  display: none;
}
.hover__form.active {
  display: flex;
}

.up__cross {
  position: relative;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-left: auto;
  margin-top: 0;
  transform: translateX(40px);
}
.up__cross:before {
  position: absolute;
  right: 50%;
  top: 50%;
  content: " ";
  height: 3px;
  width: 100%;
  max-width: 25px;
  background-color: #fff;
  transform: rotate(-45deg) translate(50%, -50%);
  transform-origin: 100% 0%;
}
.up__cross::after {
  position: absolute;
  right: 50%;
  top: 50%;
  content: " ";
  height: 3px;
  width: 100%;
  max-width: 25px;
  background-color: #fff;
  transform: rotate(45deg) translate(50%, -50%);
  transform-origin: 100% 0%;
}
@media screen and (max-width: 991px) {
  .up__cross {
    position: absolute;
  }
}

.up-header {
  z-index: 99;
  width: 100%;
  position: fixed;
  padding: 10px 20px;
}
@media screen and (max-width: 991px) {
  .up-header {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}
.up-header:before {
  content: "";
  position: absolute;
  background: black;
  opacity: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 991px) {
  .up-header:before {
    opacity: 0.2;
  }
}
.up-header .slide_line {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0%;
  background: #8bbe2a;
  transition: 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .up-header .slide_line {
    display: none;
  }
}
.up-header--top {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.up-header--top .slide_line {
  height: 100%;
}
.up-header--top:before {
  transition: 0.6s ease;
  opacity: 0.2;
}
.up-header--top .up_header-menu {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .up-header {
    position: fixed;
  }
}
.up-header .up-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.up-header .up-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1855px;
}
@media screen and (max-width: 991px) {
  .up-header .up-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.up-header .custom-logo {
  width: 100px;
  max-width: 100px;
}
@media screen and (max-width: 991px) {
  .up-header .custom-logo {
    max-width: 70px;
  }
}
.up-header .burger {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 5px;
}
@media screen and (max-width: 991px) {
  .up-header .burger {
    display: inline-block;
  }
}
.up-header .burger span {
  -webkit-transition: 0.2s ease 0s;
  transition: 0.2s ease 0s;
  margin: 0 auto;
  position: relative;
  top: 12px;
}
.up-header .burger span, .up-header .burger span:before, .up-header .burger span:after {
  width: 30px;
  height: 6px;
  background-color: #fff;
  display: block;
}
.up-header .burger span:before, .up-header .burger span:after {
  -webkit-transition-property: margin, opacity;
  transition-property: margin, opacity;
  -webkit-transition-duration: 0.2s, 0s;
  transition-duration: 0.2s, 0s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  position: absolute;
  content: "";
}
.up-header .burger span:before {
  margin-top: -12px;
}
.up-header .burger span:after {
  margin-top: 12px;
}
.up-header .burger.active span {
  width: 16px;
  height: 16px;
  margin-top: -5px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.up-header .burger.active span:before, .up-header .burger.active span:after {
  margin-top: 0px;
  opacity: 0;
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

.up_header-menu {
  opacity: 0;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media screen and (max-width: 991px) {
  .up_header-menu {
    display: none;
    opacity: 1;
  }
}
.up_header-menu li {
  padding: 0px 28px;
  transition: 0.2s ease;
}
@media screen and (max-width: 1240px) {
  .up_header-menu li {
    padding: 0px 15px;
  }
}
@media screen and (max-width: 911px) {
  .up_header-menu li {
    padding: 10px 0px;
  }
}
.up_header-menu li a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up_header-menu li a {
    font-size: 18px;
    font-size: calc(14px + (22 - 14) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up_header-menu li a {
    font-size: 22px;
  }
}
@media screen and (max-width: 1240px) {
  .up_header-menu li a {
    font-size: 16px;
  }
}
.up_header-menu li a:hover:hover {
  color: #484848;
}

.mobile {
  position: fixed;
  display: none;
  width: 100%;
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  top: 65px;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
}
.mobile.active {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}
@media screen and (max-width: 991px) {
  .mobile {
    display: block;
  }
  .mobile .up_header-menu {
    display: block;
    padding: 20px;
  }
  .mobile .up_header-menu li {
    padding: 10px 10px;
  }
  .mobile .up_header-menu li a {
    font-family: "Anton";
    font-size: 20px;
  }
  .mobile .up_header-menu li.active {
    background-color: #8bbe2a;
  }
}

#menu-header-menu {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media screen and (max-width: 991px) {
  #menu-header-menu {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.up-footer {
  background-color: #484848;
}
.up-footer .up-container {
  position: relative;
}
.up-footer .up-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: space-between;
  -ms-flex-align: space-between;
  -moz-align-items: space-between;
  -webkit-box-align: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  max-width: 1500px;
}
@media screen and (max-width: 991px) {
  .up-footer .up-row {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
.up-footer_title {
  min-width: fit-content;
  padding-top: 60px;
  position: relative;
  left: 90px;
  z-index: 1;
}
@media screen and (max-width: 1240px) {
  .up-footer_title {
    left: 10px;
  }
}
.up-footer_form {
  background-color: #8bbe2a;
  width: 100%;
}
.up-footer .up-info {
  background-color: #484848;
  padding: 20px 10px;
}
.up-footer .up-info.mob {
  display: none;
}
@media screen and (max-width: 991px) {
  .up-footer .up-info {
    display: none;
  }
  .up-footer .up-info.mob {
    display: block;
  }
}
.up-footer .up-info > *, .up-footer .up-info > * > *, .up-footer .up-info > * > * > * {
  color: #fff;
  font-size: 16px;
  font-family: "Anton";
  min-height: 10px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-footer .up-info > *, .up-footer .up-info > * > *, .up-footer .up-info > * > * > * {
    font-size: 19px;
    font-size: calc(16px + (22 - 16) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-footer .up-info > *, .up-footer .up-info > * > *, .up-footer .up-info > * > * > * {
    font-size: 22px;
  }
}

@font-face {
  font-family: "Downlink";
  src: url("fonts/Downlink.woff");
  font-weight: 400;
  font-display: swap;
}
.up-home_hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: auto;
}
.up-home_hero .swiper-pagination {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  left: 0;
  bottom: 5px;
  position: absolute;
}
@media screen and (max-width: 1400px) {
  .up-home_hero .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 20px;
  }
}
.up-home_hero .swiper-pagination-bullet {
  width: 70px;
  height: 5px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background: #fff;
  opacity: 1;
}
@media screen and (max-width: 1240px) {
  .up-home_hero .swiper-pagination-bullet {
    width: 40px;
  }
}
.up-home_hero .swiper-pagination-bullet::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.up-home_hero .swiper {
  height: 100vh;
}
.up-home_hero .swiper-pagination-bullet-active {
  background: #fff;
}
.up-home_hero .swiper-pagination-bullet-active::before {
  background-color: #8bbe2a;
  animation: slide-progress 5s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}
.swiper-paused .up-home_hero .swiper-pagination-bullet-active::before {
  animation-play-state: paused;
}
.up-home_hero .words_in_col {
  margin-right: 0;
  margin-left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  z-index: 1;
  margin-bottom: -20px;
  padding: 20px 0;
}
@media screen and (max-width: 640px) {
  .up-home_hero .words_in_col {
    margin-bottom: 0px;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    margin-left: 0;
  }
}
@keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.up-home_bullets {
  padding-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .up-home_bullets {
    padding-top: 40px;
  }
}
.up-home_bullets .up-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .up-home_bullets .up-row {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
.up-home_bullets .col {
  width: 100%;
}
.up-home_bullets .col:last-child {
  max-width: 43.5%;
  padding-left: 140px;
}
@media screen and (max-width: 1640px) {
  .up-home_bullets .col:last-child {
    padding-left: 100px;
  }
}
@media screen and (max-width: 991px) {
  .up-home_bullets .col:last-child {
    max-width: 100%;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 20px;
  }
}
.up-home_bullets .col img {
  width: 100%;
}
.up-home_bullets .img-wrp {
  position: relative;
}
.up-home_bullets .img-wrp .dsc {
  position: absolute;
  font-family: "Anton";
  font-size: 20px;
  color: #fff;
  background-color: #484848;
  padding: 6px;
  bottom: 10px;
  left: 10px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-home_bullets .img-wrp .dsc {
    font-size: 23px;
    font-size: calc(20px + (26 - 20) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-home_bullets .img-wrp .dsc {
    font-size: 26px;
  }
}
.up-home_bullets .disk {
  font-size: 14px;
  position: relative;
  padding-left: 65px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-home_bullets .disk {
    font-size: 16px;
    font-size: calc(14px + (18 - 14) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-home_bullets .disk {
    font-size: 18px;
  }
}
@media screen and (max-width: 1640px) {
  .up-home_bullets .disk {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-left: 45px;
  }
}
@media screen and (max-width: 991px) {
  .up-home_bullets .disk {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 640px) {
  .up-home_bullets .disk {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.up-home_bullets .disk:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #8bbe2a;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 1640px) {
  .up-home_bullets .disk:before {
    width: 30px;
    height: 30px;
  }
}
.up-home_map {
  padding-bottom: 135px;
}
@media screen and (max-width: 1640px) {
  .up-home_map {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 640px) {
  .up-home_map {
    padding-bottom: 60px;
  }
}
.up-home_map .up-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .up-home_map .up-row {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column-reverse;
  }
}
.up-home_map .col {
  width: 100%;
}
.up-home_map .col:last-child {
  max-width: 42%;
  margin-left: 30px;
}
@media screen and (max-width: 991px) {
  .up-home_map .col:last-child {
    max-width: 100%;
    margin-left: 0;
    padding-bottom: 20px;
  }
}
.up-home_map .col img {
  width: 100%;
}
.up-home_map .map_link img {
  cursor: zoom-in;
}
.up-home_map .img-wrp {
  position: relative;
}
.up-home_map .img-wrp .dsc {
  position: absolute;
  font-family: "Anton";
  font-size: 20px;
  color: #fff;
  background-color: #484848;
  padding: 6px;
  bottom: 10px;
  left: 10px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-home_map .img-wrp .dsc {
    font-size: 23px;
    font-size: calc(20px + (26 - 20) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-home_map .img-wrp .dsc {
    font-size: 26px;
  }
}
.up-home_map .green-box {
  background-color: #8bbe2a;
  padding: 40px 60px;
  margin-bottom: 30px;
  padding-right: 10px;
}
@media screen and (max-width: 640px) {
  .up-home_map .green-box {
    padding: 20px;
  }
}
.up-home_map .disk {
  font-size: 36px;
  font-family: "Anton";
  position: relative;
  padding-left: 60px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-home_map .disk {
    font-size: 42px;
    font-size: calc(36px + (48 - 36) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-home_map .disk {
    font-size: 48px;
  }
}
@media screen and (max-width: 640px) {
  .up-home_map .disk {
    font-size: 20px;
  }
}
.up-home_map .disk:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #484848;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.up-home_map .up-grey_button {
  font-size: 42px;
  float: right;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-home_map .up-grey_button {
    font-size: 48.5px;
    font-size: calc(42px + (55 - 42) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-home_map .up-grey_button {
    font-size: 55px;
  }
}
.up-home_banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 800px;
  background-size: cover;
  background-position: center;
  background-blend-mode: screen;
}
@supports (-webkit-touch-callout: none) {
  .up-home_banner {
    background-attachment: scroll;
  }
}
@supports not (-webkit-touch-callout: none) {
  .up-home_banner {
    background-attachment: fixed;
  }
}
@media screen and (max-width: 1640px) {
  .up-home_banner {
    min-height: 600px;
  }
}
@media screen and (max-width: 761px) {
  .up-home_banner {
    min-height: 400px;
  }
}
.up-home_horizontal-slider {
  position: relative;
  padding-top: 155px;
  padding-bottom: 230px;
  overflow: hidden;
}
@media screen and (max-width: 1640px) {
  .up-home_horizontal-slider {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 640px) {
  .up-home_horizontal-slider {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.up-home_horizontal-slider .sld-cont {
  margin-right: 0;
  padding-right: 0;
  margin-left: 10vw;
  max-width: 100%;
  margin-left: 200px;
}
@media screen and (max-width: 991px) {
  .up-home_horizontal-slider .sld-cont {
    margin-left: 0;
  }
}
.up-home_horizontal-slider .swiper-container {
  width: calc(50% + 50vw);
  height: 200px;
}
.up-home_horizontal-slider .swiper-slide {
  width: 25%;
  margin-right: 40px;
  display: flex;
  min-height: 650px;
}
.up-home_horizontal-slider .swiper-slide img {
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 1640px) {
  .up-home_horizontal-slider .swiper-slide {
    min-height: 450px;
    max-height: 450px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 991px) {
  .up-home_horizontal-slider .swiper-slide {
    margin-right: 20px;
    min-height: 300px;
    max-height: 300px;
  }
}
@media screen and (max-width: 640px) {
  .up-home_horizontal-slider .swiper-slide {
    width: 80%;
  }
}
.up-home_horizontal-slider .swiper_2 {
  position: relative;
  overflow: hidden;
}
.up-home_horizontal-slider .up_control {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  left: 79%;
}
@media screen and (max-width: 1330px) {
  .up-home_horizontal-slider .up_control {
    display: none;
  }
}
.up-home_horizontal-slider .hover-box {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .up-home_horizontal-slider .hover-box {
    min-height: auto;
  }
}
.up-home_horizontal-slider .dsc {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 10px;
}
@media screen and (max-width: 1240px) {
  .up-home_horizontal-slider .dsc {
    padding: 20px;
  }
}
.up-home_sliders {
  padding-bottom: 85px;
}
@media screen and (max-width: 1640px) {
  .up-home_sliders {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 640px) {
  .up-home_sliders {
    padding-bottom: 60px;
  }
}
.up-home_sliders .slider-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 90%;
  max-height: 450px;
  margin-left: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .up-home_sliders .slider-box {
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .up-home_sliders .slider-box {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
.up-home_sliders .swiper_wrp {
  width: 40%;
}
@media screen and (max-width: 640px) {
  .up-home_sliders .swiper_wrp {
    width: 100%;
  }
}
.up-home_sliders .swiper_3 {
  position: relative;
}
@media screen and (max-width: 991px) {
  .up-home_sliders .swiper-wrapper {
    min-height: 250px;
  }
}
.up-home_sliders .up_slider-arrow {
  background-color: #484848;
}
.up-home_sliders .up_slider-arrow:before {
  background-color: #484848;
}
.up-home_sliders .swiper-slide {
  height: auto;
}
.up-home_sliders .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: auto;
}
.up-home_sliders .text {
  font-weight: 500;
  padding-bottom: 60px;
}
.up-home_sliders .text > * {
  line-height: 110%;
}
.up-home_sliders .text h1,
.up-home_sliders .text h2,
.up-home_sliders .text h3,
.up-home_sliders .text h4,
.up-home_sliders .text h5,
.up-home_sliders .text h6 {
  font-weight: 500;
  font-family: "Montserrat";
  line-height: 100%;
  color: #484848;
}
.up-home_sliders .text a {
  text-decoration: underline;
}
@media screen and (max-width: 991px) {
  .up-home_sliders .text {
    padding-bottom: 20px;
  }
}
.up-home_sliders .info {
  max-width: 56%;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .up-home_sliders .info {
    max-width: 100%;
    padding-bottom: 20px;
  }
}
.up-home_sliders .up_control {
  position: absolute;
  top: 50%;
  right: 0%;
  z-index: 1;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.up-home_gallery {
  padding-bottom: 170px;
}
@media screen and (max-width: 1640px) {
  .up-home_gallery {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 640px) {
  .up-home_gallery {
    padding-bottom: 60px;
  }
}
.up-home_gallery .up-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media screen and (max-width: 1200px) {
  .up-home_gallery .up-row {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column-reverse;
  }
}
.up-home_gallery .col:first-child {
  width: calc(33.3333333333% + 20px);
}
@media screen and (max-width: 1200px) {
  .up-home_gallery .col:first-child {
    width: 100%;
  }
}
.up-home_gallery .col:last-child {
  width: calc(66.6666666667% - 20px);
}
@media screen and (max-width: 1200px) {
  .up-home_gallery .col:last-child {
    width: 100%;
  }
}
.up-home_gallery .gallery-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -moz-align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.up-home_gallery .title-font {
  padding-bottom: 20px;
  width: calc(66.6666666667% - 20px);
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .up-home_gallery .title-font {
    width: 100%;
  }
}
.up-home_gallery .midle-font {
  margin-right: 20px;
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .up-home_gallery .midle-font {
    margin-right: 0;
  }
}
.up-home_gallery .text h1,
.up-home_gallery .text h2,
.up-home_gallery .text h3,
.up-home_gallery .text h4,
.up-home_gallery .text h5,
.up-home_gallery .text h6 {
  font-weight: 500;
  font-family: "Montserrat";
  line-height: 100%;
  color: #484848;
}
.up-home_gallery .text a {
  text-decoration: underline;
}

.up-404 {
  z-index: 2;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .up-404 {
    background-size: 25% 25%;
  }
}
.up-404 h1 {
  font-size: 20vw;
  text-align: center;
  color: black;
}
.up-404 .up-dcs {
  padding-bottom: 60px;
  text-align: center;
  text-transform: uppercase;
}
.up-404 .up-add_search {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
  max-width: 640px;
  margin: 0 auto;
}

.up_404_bcg .no_result {
  min-height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.up_404_bcg .no_result h2 {
  max-width: 800px;
}
.up_404_bcg .no_result .up-add_search {
  max-width: 600px;
  margin-top: 40px;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.up_search-result .up-add_search {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  margin-top: 10px;
  padding: 5px 5px;
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
  margin-bottom: 30px;
  color: white;
}
@media screen and (max-width: 991px) {
  .wpcf7 form .wpcf7-response-output {
    width: 90%;
  }
}
.wpcf7 form.init .wpcf7-response-output {
  display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: green; /* Green */
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  border-color: red; /* Red */
}
.wpcf7 form.spam .wpcf7-response-output {
  border-color: orange; /* Orange */
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: yellow; /* Yellow */
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: red;
  font-size: 16px;
  font-weight: normal;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  top: 20%;
  left: 20%;
  z-index: 100;
  border: 1px solid red;
  background: white;
  padding: 0.2em 0.8em;
}

span.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
  margin-left: 0;
}

span.wpcf7-list-item-label::before,
span.wpcf7-list-item-label::after {
  content: " ";
}

div.wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background-image: url("../img/black-loader.svg");
  width: 16px;
  height: 16px;
  border: 0;
  padding: 0;
  margin: 0 0 0 4px;
  vertical-align: middle;
}
div.wpcf7 .ajax-loader.is-active {
  visibility: visible;
}
div.wpcf7 div.ajax-error {
  display: none;
}
div.wpcf7 .placeheld {
  color: grey;
}
div.wpcf7 input[type=file] {
  cursor: pointer;
}
div.wpcf7 input[type=file]:disabled {
  cursor: default;
}
div.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.up-cf-form {
  padding: 40px 20px;
  padding-bottom: 30px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: none;
  background-color: #8bbe2a;
}
@media screen and (max-width: 1330px) {
  .up-cf-form {
    max-width: 750px;
  }
}
@media screen and (max-width: 768px) {
  .up-cf-form {
    padding: 20px 10px;
  }
}
.up-cf-form .ajax-loader,
.up-cf-form br,
.up-cf-form .wpcf7-not-valid-tip {
  display: none !important;
}
.up-cf-form label {
  font-size: 12px;
  font-family: "Montserrat";
  color: #000000;
  position: absolute;
  top: 10px;
  left: 5spx;
  transition: 0.3s ease;
  z-index: 1;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-cf-form label {
    font-size: 14px;
    font-size: calc(12px + (16 - 12) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-cf-form label {
    font-size: 16px;
  }
}
.up-cf-form label:focus {
  top: 4px;
  left: 16px;
  font-size: 16px;
  background-color: red;
}
.up-cf-form .up-rad .wpcf7-not-valid label input[type=radio] + span:before {
  border: 1px solid #e10b0b;
}
.up-cf-form .up-rad a {
  font-size: 12px;
  font-family: "Montserrat";
  color: #000000;
  text-decoration: underline;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-cf-form .up-rad a {
    font-size: 14px;
    font-size: calc(12px + (16 - 12) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-cf-form .up-rad a {
    font-size: 16px;
  }
}
.up-cf-form .up-rad label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
  left: 0;
}
.up-cf-form .up-rad label span {
  font-size: 12px;
  font-family: "Montserrat";
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-cf-form .up-rad label span {
    font-size: 14px;
    font-size: calc(12px + (16 - 12) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-cf-form .up-rad label span {
    font-size: 16px;
  }
}
.up-cf-form .up-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -moz-align-items: flex-end;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  padding-top: 40px;
}
.up-cf-form .up-radio .wpcf7-not-valid label input[type=radio] + span:before {
  border: 1px solid #e10b0b;
}
.up-cf-form input[type=tel],
.up-cf-form input[type=text],
.up-cf-form input[type=textarea],
.up-cf-form input[type=email] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 12px;
  font-family: "Montserrat";
  background: none;
  padding: 5px 10px;
  border: none;
  border-bottom: 1px solid #000000;
  outline: none;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  max-height: 170px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-cf-form input[type=tel],
  .up-cf-form input[type=text],
  .up-cf-form input[type=textarea],
  .up-cf-form input[type=email] {
    font-size: 14px;
    font-size: calc(12px + (16 - 12) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-cf-form input[type=tel],
  .up-cf-form input[type=text],
  .up-cf-form input[type=textarea],
  .up-cf-form input[type=email] {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .up-cf-form input[type=tel],
  .up-cf-form input[type=text],
  .up-cf-form input[type=textarea],
  .up-cf-form input[type=email] {
    padding: 10px 10px;
  }
}
.up-cf-form input[type=tel]:focus,
.up-cf-form input[type=text]:focus,
.up-cf-form input[type=textarea]:focus,
.up-cf-form input[type=email]:focus {
  border-bottom: 1px solid #ffffff;
}
.up-cf-form input[type=tel].wpcf7-not-valid,
.up-cf-form input[type=text].wpcf7-not-valid,
.up-cf-form input[type=textarea].wpcf7-not-valid,
.up-cf-form input[type=email].wpcf7-not-valid {
  border-color: red;
}
.up-cf-form input[type=tel]::placeholder,
.up-cf-form input[type=text]::placeholder,
.up-cf-form input[type=textarea]::placeholder,
.up-cf-form input[type=email]::placeholder {
  color: #000000;
}
.up-cf-form textarea {
  font-size: 12px;
  font-family: "Montserrat";
  border-radius: 0px;
  background: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #000000;
  outline: none;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  max-height: 150px;
  padding: 5px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .up-cf-form textarea {
    font-size: 14px;
    font-size: calc(12px + (16 - 12) * (100vw - 1440px) / (1920 - 1440));
  }
}
@media (min-width: 1920px) {
  .up-cf-form textarea {
    font-size: 16px;
  }
}
.up-cf-form textarea::placeholder {
  color: #000000;
}
.up-cf-form input[type=radio],
.up-cf-form input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 16px;
  height: 16px;
  min-width: 15px;
  min-height: 15px;
  box-shadow: 0px 0px 0px 1px black;
  border-radius: 100%;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  display: -ms-grid;
  display: grid;
  place-content: center;
  cursor: pointer;
  margin-right: 8px;
}
.up-cf-form input[type=radio]::before,
.up-cf-form input[type=checkbox]::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  -webkit-transform: translate(0%, 0%) scale(0);
  transform: translate(0%, 0%) scale(0);
  -webkit-transition: 120ms -webkit-transform ease-in-out;
  transition: 120ms -webkit-transform ease-in-out;
  transition: 120ms transform ease-in-out;
  transition: 120ms transform ease-in-out, 120ms -webkit-transform ease-in-out;
  background-color: #000;
  border: 1px solid transparent;
}
.up-cf-form input[type=radio]:checked::before,
.up-cf-form input[type=checkbox]:checked::before {
  -webkit-transform: translate(0%, 0%) scale(1);
  transform: translate(0%, 0%) scale(1);
}
.up-cf-form input[type=radio]:checked:hover:before,
.up-cf-form input[type=checkbox]:checked:hover:before {
  -webkit-transform: translate(0%, 0%) scale(1);
  transform: translate(0%, 0%) scale(1);
}
.up-cf-form input[type=radio]:disabled,
.up-cf-form input[type=checkbox]:disabled {
  color: red;
  cursor: not-allowed;
}
.up-cf-form input[type=radio]:hover:before,
.up-cf-form input[type=checkbox]:hover:before {
  -webkit-transform: translate(0%, 0%) scale(1.3);
  transform: translate(0%, 0%) scale(1.3);
}
.up-cf-form .wpcf7-checkbox.wpcf7-not-valid input[type=radio] {
  border: 1.5px solid red;
}
.up-cf-form .wpcf7-radio > span {
  margin-left: 0;
  margin-right: 30px;
  color: #b4b4b4;
}
@media screen and (max-width: 640px) {
  .up-cf-form .wpcf7-radio > span {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .up-cf-form .up-rad {
    padding-bottom: 10px;
  }
}
.up-cf-form .up-rad .wpcf7-radio > span {
  margin-right: 10px;
  width: 10%;
  min-width: fit-content;
}
@media screen and (max-width: 640px) {
  .up-cf-form .up-rad .wpcf7-radio > span {
    width: 30%;
    padding-bottom: 0;
    margin-right: 0;
  }
}
.up-cf-form .wpcf7-radio wpcf7-list-item {
  margin-right: 30px;
}
.up-cf-form .up-radio .wpcf7-list-item-label {
  color: #b4b4b4;
}
.up-cf-form button {
  outline: none;
  border: none;
}
.up-cf-form .up-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -moz-justify-content: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -moz-align-items: end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.up-cf-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 100%;
  position: relative;
  padding-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .up-cf-row {
    padding-bottom: 0px;
    -ms-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .up-cf-row.pb-20 {
    padding-bottom: 0px !important;
  }
}
.up-cf-col {
  width: 100%;
  padding: 0 10px;
  position: relative;
}

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