/* Document
 * ========================================================================== */

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
  content: "\200B";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

:where([type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */

:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */

:where(iframe, img, input, video, select, textarea) {
  height: auto;
  max-width: 100%;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */

:where(button, input, select, textarea) {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(select) {
  appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center / 1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */

:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */

:where([type="color" i], [type="range" i]) {
  border-width: 0;
  padding: 0;
}

/*
 * 1. Remove animations when motion is reduced (opinionated).
 * 2. Remove fixed background attachments when motion is reduced (opinionated).
 * 3. Remove timed scrolling behaviors when motion is reduced (opinionated).
 * 4. Remove transitions when motion is reduced (opinionated).
 */

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important; /* 1 */
    animation-duration: 1ms !important; /* 1 */
    animation-iteration-count: 1 !important; /* 1 */
    background-attachment: initial !important; /* 2 */
    scroll-behavior: auto !important; /* 3 */
    transition-delay: 0s !important; /* 4 */
    transition-duration: 0s !important; /* 4 */
  }
}

/**
 * Add the correct system-ui font-family in Firefox.
 */

@font-face {
  font-family: system-ui;
  src: local(".AppleSystemUIFont"), local("Segoe UI"), local("Ubuntu"), local("Roboto-Regular"), local("HelveticaNeue");
}

@font-face {
  font-family: system-ui;
  font-style: italic;
  src: local(".AppleSystemUIFont"), local("Segoe UI Italic"), local("Ubuntu-Italic"), local("Roboto-Italic"), local("HelveticaNeue-Italic");
}

@font-face {
  font-family: system-ui;
  font-weight: bold;
  src: local(".AppleSystemUIFont"), local("Segoe UI Bold"), local("Ubuntu-Bold"), local("Roboto-Bold"), local("HelveticaNeue-Bold");
}

@font-face {
  font-family: system-ui;
  font-style: italic;
  font-weight: bold;
  src: local(".AppleSystemUIFont"), local("Segoe UI Bold Italic"), local("Ubuntu-BoldItalic"), local("Roboto-BoldItalic"), local("HelveticaNeue-BoldItalic");
}

/**
 * Use the default user interface font in all browsers (opinionated).
 */

html {
  font-family:
    system-ui,
    /* macOS 10.11-10.12 */ -apple-system,
    /* Windows 6+ */ "Segoe UI",
    /* Android 4+ */ "Roboto",
    /* Ubuntu 10.10+ */ "Ubuntu",
    /* Gnome 3+ */ "Cantarell",
    /* KDE Plasma 5+ */ "Noto Sans",
    /* fallback */ sans-serif,
    /* macOS emoji */ "Apple Color Emoji",
    /* Windows emoji */ "Segoe UI Emoji",
    /* Windows emoji */ "Segoe UI Symbol",
    /* Linux emoji */ "Noto Color Emoji";
}

/**
 * Use the default monospace user interface font in all browsers (opinionated).
 */

code,
kbd,
samp,
pre {
  font-family:
    ui-monospace,
    /* macOS 10.10+ */ "Menlo",
    /* Windows 6+ */ "Consolas",
    /* Android 4+ */ "Roboto Mono",
    /* Ubuntu 10.10+ */ "Ubuntu Monospace",
    /* KDE Plasma 5+ */ "Noto Mono",
    /* KDE Plasma 4+ */ "Oxygen Mono",
    /* Linux/OpenOffice fallback */ "Liberation Mono",
    /* fallback */ monospace,
    /* macOS emoji */ "Apple Color Emoji",
    /* Windows emoji */ "Segoe UI Emoji",
    /* Windows emoji */ "Segoe UI Symbol",
    /* Linux emoji */ "Noto Color Emoji";
}

/**
 * Add the correct system-ui font-family in Chrome, Edge, and Firefox.
 */

@font-face {
  font-family: ui-monospace;
  src: local(".AppleSystemUIFontMonospaced-Regular"), local("Segoe UI Mono"), local("UbuntuMono"), local("Roboto-Mono"), local("Menlo");
}

@font-face {
  font-family: ui-monospace;
  font-style: italic;
  src: local(".AppleSystemUIFontMonospaced-RegularItalic"), local("Segoe UI Mono Italic"), local("UbuntuMono-Italic"), local("Roboto-Mono-Italic"), local("Menlo-Italic");
}

@font-face {
  font-family: ui-monospace;
  font-weight: bold;
  src: local(".AppleSystemUIFontMonospaced-Bold"), local("Segoe UI Mono Bold"), local("UbuntuMono-Bold"), local("Roboto-Mono-Bold"), local("Menlo-Bold");
}

@font-face {
  font-family: ui-monospace;
  font-style: italic;
  font-weight: bold;
  src: local(".AppleSystemUIFontMonospaced-BoldItalic"), local("Segoe UI Mono Bold Italic"), local("UbuntuMono-BoldItalic"), local("Roboto-Mono-BoldItalic"), local("Menlo-BoldItalic");
}

@charset "UTF-8";
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

/*!
	By André Rinas, www.andrerinas.de
	Documentation, www.simplelightbox.de
	Available for use under the MIT License
	Version 2.10.3
*/
body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  display: none;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
}

.sl-wrapper * {
  box-sizing: border-box;
}

.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}

.sl-wrapper button:hover {
  opacity: 0.7;
}

.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: Arial, Baskerville, monospace;
  color: #000;
  font-size: 3rem;
}

.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1060;
  color: #000;
  font-size: 1rem;
}

.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}

.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 22px;
  line-height: 44px;
  text-align: center;
  display: block;
  z-index: 10060;
  font-family: Arial, Baskerville, monospace;
  color: #000;
}

.sl-wrapper .sl-navigation button.sl-next {
  right: 5px;
  font-size: 2rem;
}

.sl-wrapper .sl-navigation button.sl-prev {
  left: 5px;
  font-size: 2rem;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }

  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem;
  }

  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }

  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 3rem;
  }

  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 3rem;
  }
}
.sl-wrapper.sl-dir-rtl .sl-navigation {
  direction: ltr;
}

.sl-wrapper .sl-image {
  position: fixed;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 10000;
}

.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}

.sl-wrapper .sl-image .sl-download {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #000;
  z-index: 1060;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  -moz-animation: pulsate 1s ease-out infinite;
  -ms-animation: pulsate 1s ease-out infinite;
  -o-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: -moz-transform ease 200ms;
  transition: -ms-transform ease 200ms;
  transition: -o-transform ease 200ms;
  transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms;
}

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-o-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-ms-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
/* montserrat-regular - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-regular.7402b73e.eot");
  /* IE9 Compat Modes */
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-regular.7402b73e.eot?#iefix") format("embedded-opentype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-regular.60ce2c35.woff2") format("woff2"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-regular.9461d375.woff") format("woff"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-regular.e52783d5.ttf") format("truetype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-regular.504752e4.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-italic - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-italic.5d60c034.eot");
  /* IE9 Compat Modes */
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-italic.5d60c034.eot?#iefix") format("embedded-opentype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-italic.12acb8f4.woff2") format("woff2"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-italic.9b4175c0.woff") format("woff"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-italic.7cc9dc91.ttf") format("truetype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-italic.a4b5d6de.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-600 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600.dcf03978.eot");
  /* IE9 Compat Modes */
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600.dcf03978.eot?#iefix") format("embedded-opentype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600.ba3f6c07.woff2") format("woff2"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600.15ba61ec.woff") format("woff"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600.14deaa74.ttf") format("truetype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600.767980ba.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-600italic - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600italic.d0dbeba5.eot");
  /* IE9 Compat Modes */
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600italic.d0dbeba5.eot?#iefix") format("embedded-opentype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600italic.b7ea38c4.woff2") format("woff2"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600italic.75a759e9.woff") format("woff"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600italic.cf5afd92.ttf") format("truetype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-600italic.8123abad.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-700 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700.77bd84f8.eot");
  /* IE9 Compat Modes */
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700.77bd84f8.eot?#iefix") format("embedded-opentype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700.6895a854.woff2") format("woff2"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700.29e52d81.woff") format("woff"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700.8a33c164.ttf") format("truetype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700.b92ca53a.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-700italic - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700italic.2b31de2a.eot");
  /* IE9 Compat Modes */
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700italic.2b31de2a.eot?#iefix") format("embedded-opentype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700italic.6e16005b.woff2") format("woff2"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700italic.a33576a0.woff") format("woff"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700italic.7125c85e.ttf") format("truetype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-700italic.838fac33.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-800 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800.59fd9b18.eot");
  /* IE9 Compat Modes */
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800.59fd9b18.eot?#iefix") format("embedded-opentype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800.a85f5cbb.woff2") format("woff2"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800.bce459b5.woff") format("woff"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800.5c5049bf.ttf") format("truetype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800.fba350d1.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-800italic - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 800;
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800italic.0a8a93c5.eot");
  /* IE9 Compat Modes */
  src: url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800italic.0a8a93c5.eot?#iefix") format("embedded-opentype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800italic.d4c4888b.woff2") format("woff2"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800italic.54f1b31b.woff") format("woff"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800italic.134c3437.ttf") format("truetype"), url("/user/themes/project/static/dist/montserrat-v25-latin_latin-ext-800italic.49225e68.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* MIXINS */
/* TYPO
* Základní velikost písma v dokumentu: %
* Rozměry vycházející z velikosti písma dokumentu: rem
* Rozměry vycházející z velikosti písma rodiče: em
* Media Queries: em
* Výška řádku: číslem bez jednotky
* Rámečky, dekorace: px
* Typografie podle velikosti okna: vw
*/
/* BUTTONS */
.btn, .btn__white, .page_route__kariera .buttons button {
  display: inline-block;
  padding: 7px 30px 7px 30px;
  border: none;
  border-radius: 9px;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: rgb(255, 255, 255);
  background-color: #e9530d;
  text-align: center;
  width: auto;
  box-shadow: 0px 21px 101px 0px rgba(159, 140, 98, 0.1);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.btn:hover, .btn__white:hover, .page_route__kariera .buttons button:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 7px 40px 7px 40px;
}

.btn__white, .page_route__kariera .buttons button {
  cursor: pointer;
  color: rgb(233, 83, 13);
  background-color: white;
}

.btn__redInv {
  display: inline-block;
  padding: 7px 15px 7px 15px;
  border: 3px solid rgb(255, 255, 255);
  border-radius: 20px;
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0);
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  width: auto;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn__redInv:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: rgb(235, 43, 129);
  background-color: white;
}

.scrollToTop {
  opacity: 0.3;
  display: block;
  width: 38px;
  height: 38px;
  bottom: 20px;
  right: 20px;
  position: fixed;
  z-index: 20;
  border: none;
  background-color: transparent;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 38px 38px;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.scrollToTop:hover {
  transition: opacity 0.5s ease;
  opacity: 0.6;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  position: relative;
  padding-top: 0px;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 0px;
  }
}
@media screen and (max-width: 650px) {
  body {
    padding-top: 105px;
  }
}

.hidden {
  display: none !important;
}

.page_route__home {
  padding-top: 0px;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

strong {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-weight: 800;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: normal;
  font-family: "Montserrat", helvetica, arial, sans-serif;
}

/* KONTAIERY */
.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 640px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media only screen and (min-width: 990px) {
  .container {
    padding-right: 36px;
    padding-left: 36px;
  }
}
@media only screen and (min-width: 1060px) {
  .container {
    max-width: 1160px;
    padding-right: 36px;
    padding-left: 36px;
  }
}

.container__noPadd {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1366px) {
  .container__noPadd {
    max-width: 1366px;
    padding-right: 48px;
    padding-left: 48px;
  }
}

.container__basicPad {
  padding-top: 30px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .container__basicPad {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 640px) {
  .container__basicPad {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* CLEARFIX */
.cf:before,
.cf:after {
  content: ".";
  display: block;
  height: 0;
  overflow: hidden;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mt-6 {
  margin-top: 60px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.ta-center {
  text-align: center;
}

/* MODAL */
.modal {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 3000;
}

.modal__body {
  width: 100%;
  max-width: 921px;
  margin: 30px auto 30px auto;
  background-color: rgb(233, 83, 13);
  padding: 36px 30px 30px 30px;
  border-radius: 9px;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.16);
  position: relative;
  background-image: url("/user/themes/project/static/dist/modal_back.888b5ff1.svg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 110px;
}
@media screen and (max-width: 560px) {
  .modal__body {
    padding: 12px 10px 10px 10px;
  }
}

.modal__content {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.modal__close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 30px;
  height: 30px;
  background-image: url("/user/themes/project/static/dist/modal_close.eb25fb03.svg");
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  border: none;
  outline: none;
  transform: rotate(0Deg);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.modal__close:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: rotate(180Deg);
}
@media screen and (max-width: 560px) {
  .modal__close {
    right: 10px;
    top: 10px;
  }
}

.modal__form {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  width: 100%;
}

.modal__hidden {
  display: none;
}

.modal__content h3 {
  padding-right: 40px;
  margin-bottom: 20px;
}

.modal__form input[type=text],
.modal__form input[type=email],
.modal__form input[type=tel] {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 9px;
  height: 56px;
  padding: 0px 14px;
  box-sizing: border-box;
  width: 100%;
  color: rgb(38, 65, 96);
}

.modal__textarea {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 9px;
  height: 120px;
  padding: 14px 14px;
  box-sizing: border-box;
  width: 100%;
  color: rgb(38, 65, 96);
}

.modal__form__group {
  padding-top: 20px;
  width: 100%;
}

.modal__form__upload {
  border: none;
  padding-right: 30px;
  background-image: url("/user/themes/project/static/dist/icon_upload.9d05fa7a.svg");
  background-repeat: no-repeat;
  background-position: right top;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.4);
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.4);
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.4);
}

.topTop {
  position: absolute;
  width: 0px;
  height: 0px;
  left: 0px;
  top: 0px;
}

.sl-overlay {
  background-color: rgb(36, 35, 31);
}

.notices {
  padding: 20px;
  border-radius: 4px;
}

.notices.success.green {
  background-color: #01c795;
}

#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  padding: 0;
  background: rgb(233, 83, 13);
  border: none;
  border-radius: 50%;
  background-image: url("/user/themes/project/static/dist/to-top.b502d717.svg");
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  display: none;
  /* Skryté na začátku */
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000000000;
  box-shadow: 0px 1px 27px 0px rgba(232, 83, 14, 0.4);
}
@media screen and (max-width: 650px) {
  #scrollToTop {
    width: 35px;
    height: 35px;
    bottom: 20px;
    right: 20px;
  }
}

#scrollToTop.show {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: block;
  opacity: 1;
}

.fakeScroll {
  position: absolute;
  z-index: -1;
  width: 0px;
  height: 0px;
  left: 0px;
  top: -50px;
}
@media screen and (max-width: 650px) {
  .fakeScroll {
    top: -60px;
  }
}

/* header and titles */
h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

h1 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3.125rem;
  line-height: 3.5625rem;
}
@media screen and (max-width: 650px) {
  h1 {
    font-size: 2rem;
    line-height: 2.4375rem;
  }
}

/* PARALAX */
.paraX {
  opacity: 0;
}

@keyframes para {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes paraD {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes paraL {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes paraR {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
.paraAnim {
  animation: para 1s ease-in-out 0s 1 forwards;
}

.paraAnimD {
  animation: paraD 1s ease-in-out 0s 1 forwards;
}

.paraAnimL {
  animation: paraL 1s ease-in-out 0s 1 forwards;
}

.paraAnimR {
  animation: paraR 1s ease-in-out 0s 1 forwards;
}

.paraAnim-03 {
  opacity: 0;
  animation: para 1s ease-in-out 0.3s 1 forwards;
}

.paraAnim-03D {
  opacity: 0;
  animation: paraD 1s ease-in-out 0.3s 1 forwards;
}

.paraAnim-03L {
  opacity: 0;
  animation: paraL 1s ease-in-out 0.3s 1 forwards;
}

.paraAnim-03R {
  opacity: 0;
  animation: paraR 1s ease-in-out 0.3s 1 forwards;
}

.paraAnim-05 {
  opacity: 0;
  animation: para 1s ease-in-out 0.5s 1 forwards;
}

.paraAnim-05D {
  opacity: 0;
  animation: paraD 1s ease-in-out 0.5s 1 forwards;
}

.paraAnim-05L {
  opacity: 0;
  animation: paraL 1s ease-in-out 0.5s 1 forwards;
}

.paraAnim-05R {
  opacity: 0;
  animation: paraR 1s ease-in-out 0.5s 1 forwards;
}

@keyframes paraOpaOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.paraOpacity10 {
  animation: paraOpaOut 1s ease-in-out 0s 1 forwards;
}

@keyframes paraOpaIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.paraOpacity01 {
  animation: paraOpaOut 1s ease-in-out 0s 1 forwards;
}

@keyframes floating {
  0% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
  20% {
    transform: translate(5px, 5px);
    opacity: 0.95;
  }
  40% {
    transform: translate(5px, -5px);
    opacity: 1;
  }
  60% {
    transform: translate(-5px, -5px);
    opacity: 1;
  }
  80% {
    transform: translate(-5px, 5px);
    opacity: 0.95;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
/* PARALAX STOP */
/* FORMS */
label {
  display: none;
}

input[type=text], input[type=email] {
  width: 100%;
  padding: 18px;
  background-color: rgb(254, 207, 185);
  color: rgb(29, 29, 27);
  margin-bottom: 20px;
  border-radius: 8px;
  outline: none;
  border: none;
}

input:focus, input:hover, textarea:focus, intextareaput:hover {
  outline: none;
}

textarea {
  width: 100%;
  padding: 18px;
  min-height: 120px;
  background-color: rgb(254, 207, 185);
  color: rgb(29, 29, 27);
  margin-bottom: 20px;
  border-radius: 8px;
  outline: none;
  border: none;
}

button[type=submit] {
  width: 100%;
  padding: 18px;
  background-color: rgb(255, 255, 255);
  color: rgb(233, 83, 13);
  margin-bottom: 20px;
  border-radius: 8px;
  outline: none;
  border: none;
  cursor: pointer;
  border: 1px solid rgb(255, 255, 255);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
button[type=submit]:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: rgb(255, 255, 255);
  background-color: rgb(233, 83, 13);
}

.form-input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.form-input-wrapper input[type=checkbox] {
  width: 25px;
  height: 25px;
  position: relative;
  top: 6px;
  left: 0px;
  margin-right: 5px;
}

.form-input-wrapper a {
  text-decoration: underline;
  color: #FFFFFF;
  font-weight: 700;
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.topMenu {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 4px 74px 0px rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.topMenu__wrap {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 50000px) {
  .topMenu__wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.topMenu__scrolled {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #24231F;
  box-shadow: 0px 4px 74px 0px rgb(0, 0, 0);
}

.topMenu__scrolled .topMenu__wrap {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.topMenu__logo {
  width: 328px;
  height: 80px;
  display: block;
  margin-right: 20px;
  position: relative;
  z-index: 5000;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 50000px) {
  .topMenu__logo {
    width: 250px;
    height: 63px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 650px) {
  .topMenu__logo {
    width: 150px;
    height: 37px;
    margin-left: 0px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.topMenu__logo img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 50000px) {
  .topMenu__logo img {
    width: 100%;
    height: 100%;
  }
}

.topMenu__scrolled .topMenu__logo {
  width: 150px;
  height: 37px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.topMenu__scrolled .topMenu__logo img {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 150px;
  height: 37px;
}

.topMenu__collapse {
  flex: 1;
  text-align: right;
}
@media only screen and (max-width: 50000px) {
  .topMenu__collapse {
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    flex: none;
    position: absolute;
    left: 0px;
    top: -100vh;
    width: 100%;
    background-color: #24231F;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
    text-align: center;
    padding-top: 105px;
    padding-bottom: 25px;
  }
}

.topMenu__collapse__open {
  z-index: 100;
  top: 0vh;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.topMenu__main, .topMenu__lang {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
@media only screen and (max-width: 50000px) {
  .topMenu__main, .topMenu__lang {
    display: block;
  }
}

.topMenu__main li {
  display: block;
  float: left;
  margin-left: 45px;
}
.topMenu__main li:first-child {
  margin-left: 0px;
}
@media only screen and (max-width: 1170px) {
  .topMenu__main li {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 1070px) {
  .topMenu__main li {
    margin-left: 15px;
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 50000px) {
  .topMenu__main li {
    margin-left: 0px;
    float: none;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 650px) {
  .topMenu__main li {
    padding: 0px 15px;
    margin-bottom: 25px;
  }
}

.topMenu__main a {
  display: block;
  color: rgb(255, 255, 255);
  position: relative;
  font-weight: normal;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.topMenu__main a::before {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  width: 0px;
  height: 4px;
  background-color: #e9530d;
  left: 0px;
  bottom: -8px;
}
.topMenu__main a:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.topMenu__main a:hover::before {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: calc(100% - 4px);
}
@media only screen and (max-width: 50000px) {
  .topMenu__main a {
    font-family: "Montserrat", helvetica, arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 1.555rem;
    line-height: 1.8888rem;
  }
}
@media only screen and (max-width: 450px) {
  .topMenu__main a {
    font-size: 1.125rem;
    line-height: 1.2rem;
  }
}

.topMenu__main li.active a::before {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: 4px;
  background-color: #e9530d;
  left: 0px;
  bottom: -8px;
}
@media only screen and (max-width: 50000px) {
  .topMenu__main li.active a {
    color: rgb(233, 83, 13);
  }
}

.topMenu__lang {
  position: absolute;
  right: 35px;
  width: 39px;
  height: 33px;
  top: 47px;
}
@media only screen and (max-width: 650px) {
  .topMenu__lang {
    right: 86px;
    top: 34px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.topMenu__lang a {
  display: block;
  background-color: rgba(255, 255, 255, 0);
  width: 39px;
  height: 33px;
  background-image: 39px 33px;
  background-repeat: no-repeat;
  background-position: center center;
}

.topMenu__langEn {
  background-image: url("/user/themes/project/static/dist/lang_en.e07dcd96.svg");
}

.topMenu__langCs {
  background-image: url("/user/themes/project/static/dist/lang_cs.bd7b671a.svg");
}

.topMenu__close {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: none;
  background-color: transparent;
  position: absolute;
  right: 20px;
  top: 28px;
  display: none;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 50000px) {
  .topMenu__close {
    display: flex;
  }
}

.topMenu__closeAnimation {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  position: relative;
}
.topMenu__closeAnimation::after {
  content: "";
  background-color: rgb(255, 255, 255);
  position: absolute;
  width: 20px;
  height: 3px;
  left: 0px;
  top: 8px;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
}
.topMenu__closeAnimation::before {
  content: "";
  background-color: rgb(255, 255, 255);
  position: absolute;
  width: 20px;
  height: 3px;
  left: 0px;
  top: 8px;
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
}

.topMenu__closeAnimationRunTo::after {
  opacity: 0;
  animation: closeCrossToA 0.5s ease-in-out 0.5s 1 forwards;
}
.topMenu__closeAnimationRunTo::before {
  opacity: 0;
  animation: closeCrossToB 0.5s ease-in-out 0.5s 1 forwards;
}

@keyframes closeCrossToA {
  from {
    transform: rotate(0deg);
    opacity: 0;
  }
  to {
    transform: rotate(45deg);
    opacity: 1;
  }
}
@keyframes closeCrossToB {
  from {
    transform: rotate(0deg);
    opacity: 0;
  }
  to {
    transform: rotate(-45deg);
    opacity: 1;
  }
}
.topMenu__open {
  display: none;
}
@media only screen and (max-width: 50000px) {
  .topMenu__open {
    display: block;
    position: absolute;
    right: 95px;
    top: 34px;
    width: 58px;
    height: 58px;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
@media only screen and (max-width: 650px) {
  .topMenu__open {
    width: 48px;
    height: 48px;
    right: 16px;
    top: 24px;
  }
}

.topMenu__open img {
  width: 100%;
  height: 100%;
}

.topMenu__scrolled .topMenu__open {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 48px;
  height: 48px;
  right: 103px;
  top: 10px;
}
@media only screen and (max-width: 650px) {
  .topMenu__scrolled .topMenu__open {
    right: 16px;
    top: 10px;
  }
}

.topMenu__scrolled .topMenu__open img {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 48px;
  height: 48px;
}

.topMenu__scrolled .topMenu__lang {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  right: 35px;
  top: 19px;
}
@media only screen and (max-width: 650px) {
  .topMenu__scrolled .topMenu__lang {
    right: 84px;
    top: 19px;
  }
}

.topMenu__scrolled .topMenu__close {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 10px;
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.hp__topBox {
  width: 100%;
  background-image: url("/user/themes/project/static/dist/hp_top_image.dde035c6.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 640px) {
  .hp__topBox {
    padding-right: 16px;
    padding-left: 16px;
    min-height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .hp__topBox {
    padding-right: 24px;
    padding-left: 24px;
    min-height: 80vh;
  }
}
@media only screen and (min-width: 990px) {
  .hp__topBox {
    padding-right: 36px;
    padding-left: 36px;
  }
}
@media only screen and (min-width: 1060px) {
  .hp__topBox {
    padding-right: 36px;
    padding-left: 36px;
  }
}

.hp__topBox__in {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding-top: 115px;
  padding-bottom: 30px;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 640px) {
  .hp__topBox__in {
    padding-top: 115px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .hp__topBox__in {
    padding-top: 115px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 990px) {
  .hp__topBox__in {
    padding-top: 170px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 1060px) {
  .hp__topBox__in {
    padding-top: 370px;
    padding-bottom: 90px;
  }
}

.hp__topBox__in h1 {
  margin-bottom: 16px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 650px) {
  .hp__topBox__in h1 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}

.hp__topBox__in p {
  font-size: 1.375rem;
  line-height: normal;
  margin-bottom: 16px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 650px) {
  .hp__topBox__in p {
    font-size: 1.125rem;
  }
}

.hp__topBox__in a {
  z-index: 1;
  position: relative;
}

.hp__topBox__btnTop {
  margin-bottom: 20px;
}

.hp__topBox__btn {
  opacity: 0.8;
  font-size: 0.7rem;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 2px 7px;
}
.hp__topBox__btn:hover {
  padding: 2px 7px;
  opacity: 1;
}

.hp__nett {
  position: absolute;
  bottom: -50px;
  left: 15%;
  z-index: 0;
  opacity: 0.4;
  animation: hp__nett 20s ease-in-out 0s infinite forwards;
}

@keyframes hp__nett {
  0% {
    opacity: 0.1;
    transform: translate(0%, 0%);
  }
  33% {
    opacity: 0.6;
    transform: translate(2%, 2%);
  }
  66% {
    opacity: 0.4;
    transform: translate(-2%, -2%);
  }
  100% {
    opacity: 0.1;
    transform: translate(0%, 0%);
  }
}
.hp__services {
  position: relative;
  background-color: rgb(0, 0, 0);
  padding-top: 43px;
  padding-bottom: 43px;
}
@media screen and (max-width: 650px) {
  .hp__services {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.hp__servicesTop {
  position: relative;
  background-color: rgb(0, 0, 0) !important;
  padding-top: 43px !important;
  padding-bottom: 43px !important;
}
@media screen and (max-width: 650px) {
  .hp__servicesTop {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

.hp__servicesTopArticle {
  position: relative;
  z-index: 10;
}

.hp__Servicesnett {
  position: absolute;
  bottom: -270px;
  left: 9%;
  max-width: 100%;
}
@media screen and (max-width: 650px) {
  .hp__Servicesnett {
    bottom: -130px;
  }
}

.hp__services h2 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  font-weight: 700;
  color: rgb(233, 83, 13);
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .hp__services h2 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.hp__servicesTxt {
  text-align: center;
  margin: 0px auto 64px auto;
  max-width: 905px;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.4;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .hp__servicesTxt {
    font-size: 1.125rem;
    line-height: 1.3;
  }
}

.hp__servicesWrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: 15px;
}
@media screen and (max-width: 750px) {
  .hp__servicesWrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 450px) {
  .hp__servicesWrap {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.hp__service {
  display: flex;
  background-color: rgb(0, 0, 0);
  border-radius: 9px;
  border: 1px solid rgb(233, 83, 13);
  padding: 30px 30px 30px 30px;
  position: relative;
  flex-direction: column;
  color: rgb(255, 255, 255);
  text-decoration: none;
  z-index: 1;
  justify-content: center;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hp__service:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: scale(1.1);
  background-color: rgb(233, 83, 13);
  color: rgb(255, 255, 255);
  z-index: 3;
}
.hp__service:hover svg {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  stroke: rgb(255, 255, 255);
}
@media screen and (max-width: 450px) {
  .hp__service {
    padding: 15px;
  }
}

.hp__service h3 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3333rem;
  line-height: 1.666rem;
  font-weight: 700;
  text-align: center;
  display: block;
  max-width: 290px;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 650px) {
  .hp__service h3 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
@media screen and (max-width: 450px) {
  .hp__service h3 {
    padding: 0px;
  }
}
@media screen and (max-width: 450px) {
  .hp__service h3 {
    padding: 0px;
  }
}

.hp__service .container {
  position: relative;
  z-index: 3;
}

.hp__servicePerex {
  flex: 1;
}

.hp__serviceImg {
  text-align: center;
  margin-bottom: 20px;
}

.hp__serviceImg svg {
  display: inline-block;
  width: 85px;
  height: 85px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  stroke: rgb(233, 83, 13);
  pointer-events: all;
}

#serv1 svg {
  width: 100px;
  height: 100px;
}

#serv5 svg {
  width: 120px;
  height: 60px;
}

.hp__best {
  background-image: url("/user/themes/project/static/dist/hp_top_image.dde035c6.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: rgb(0, 0, 0);
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 450px) {
  .hp__best {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.hp__best h2 {
  text-align: center;
  color: rgb(255, 255, 255);
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  margin-bottom: 57px;
}
@media screen and (max-width: 650px) {
  .hp__best h2 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 450px) {
  .hp__best h2 {
    margin-bottom: 57px;
  }
}

.hp__bests {
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: 25px;
}
@media screen and (max-width: 790px) {
  .hp__bests {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }
}
@media screen and (max-width: 650px) {
  .hp__bests {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 15px;
  }
}

.hp__best__item {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3333rem;
  line-height: 1.666rem;
}
@media screen and (max-width: 650px) {
  .hp__best__item {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.hp__best__item svg {
  width: 97px;
  height: 97px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .hp__best__item svg {
    width: 80px;
  }
}

.hp__Bestnett {
  position: absolute;
  bottom: 170px;
  left: -1%;
  max-width: 100%;
  z-index: 0;
}
@media screen and (max-width: 650px) {
  .hp__Bestnett {
    bottom: 130px;
    width: 160%;
    max-width: 160%;
  }
}
@media screen and (max-width: 420px) {
  .hp__Bestnett {
    bottom: 130px;
    width: 210%;
    max-width: 210%;
  }
}

.hp__services {
  background-color: rgb(233, 83, 13);
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 650px) {
  .hp__services {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.hp__services__txt {
  margin-bottom: 48px;
}
@media screen and (max-width: 650px) {
  .hp__services__txt {
    margin-bottom: 30px;
  }
}

.hp__services__txt h2 {
  color: rgb(255, 255, 255);
}

.hp__services__txt h1 {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.hp__services__txt h1 span {
  color: rgb(255, 255, 255);
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  flex: 1;
}
@media screen and (max-width: 650px) {
  .hp__services__txt h1 span {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.hp__services__txt h1 img {
  width: 120px;
  height: 120px;
  margin-left: 20px;
}

.hp__services__txt p {
  margin-bottom: 40px;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2222rem;
  line-height: 1.6666rem;
}

.hp__services__txt a {
  display: inline-block;
  width: auto;
  padding: 7px 23px;
  border: 2px solid rgb(255, 255, 255);
  background-color: white;
  color: rgb(233, 83, 13);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 8px;
}
.hp__services__txt a:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: rgba(255, 255, 255, 0);
  color: rgb(255, 255, 255);
}

.hp__services__carousel {
  float: right;
  width: calc(100% - 325px - 30px);
}
@media screen and (max-width: 990px) {
  .hp__services__carousel {
    width: calc(100% - 325px - 30px);
  }
}
@media screen and (max-width: 790px) {
  .hp__services__carousel {
    width: calc(100% - 325px - 30px);
  }
}
@media screen and (max-width: 650px) {
  .hp__services__carousel {
    float: none;
    width: 100%;
  }
}

.glide_hpServ {
  position: relative;
}

.hp__services__carousel .glide__arrows {
  position: relative;
  margin-top: 24px;
}

.hp__services__carousel .glide__arrow {
  position: relative;
  top: 0px;
  left: 0px;
  display: inline-block;
  transform: translateY(0%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 10px 20px;
  background-image: url("/user/themes/project/static/dist/arrow_carousel.183f2a93.svg");
}

.glide__arrow--right {
  transform: rotate(180deg) !important;
}

.hp__services__carousel .glide__slide {
  background-color: rgb(255, 255, 255);
  color: rgb(29, 29, 27);
  border-radius: 9px;
  height: auto;
  overflow: hidden;
  background-image: url("/user/themes/project/static/dist/crown_light.6380c323.svg");
  background-repeat: no-repeat;
  background-position: bottom right -9px;
  background-size: 90px 52px;
  display: flex;
}

.hp__services__carousel .glide__shadow {
  width: 11%;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  background: rgb(233, 83, 13);
  background: linear-gradient(90deg, rgba(233, 83, 13, 0) 40%, rgb(233, 83, 13) 100%);
}

.hp__services__carousel .glide__slide__in {
  display: flex;
  flex-direction: column;
}

.hp__services__carousel .glide__slide__in {
  display: flex;
  flex-direction: column;
}

.hp__services__carousel .glide__slide__in img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  -webkit-border-top-left-radius: 9px;
  -webkit-border-top-right-radius: 9px;
  -moz-border-radius-topleft: 9px;
  -moz-border-radius-topright: 9px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}

.hp__services__carousel .glide__slide--cont {
  flex: 1;
  padding: 27px 21px 25px 26px;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  color: rgb(29, 29, 27);
}

.hp__services__carousel .glide__slide--cont strong, .hp__services__carousel .glide__slide--cont b {
  color: rgb(233, 83, 13);
  font-weight: bold;
}

.hp__services__carousel .glide__slide--cont h2 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3333rem;
  line-height: 1.666rem;
  margin-bottom: 15px;
  text-align: left;
}
@media screen and (max-width: 650px) {
  .hp__services__carousel .glide__slide--cont h2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.hp__services__carousel .glide__slide--contLink {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1rem;
  text-decoration: underline;
  padding: 0px 21px 0px 26px;
  height: 40px;
  color: rgb(233, 83, 13);
}

.hp__ref {
  padding-top: 70px;
  padding-bottom: 35px;
}

.hp__ref__cont {
  width: 100%;
  max-width: 762px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 950px) {
  .hp__ref__cont {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 750px) {
  .hp__ref__contDispaly {
    display: none;
  }
}

.hp__ref__topShadow {
  position: absolute;
  top: 60px;
  left: 0px;
  height: 130px;
  width: 100%;
  z-index: 20;
  background: linear-gradient(180deg, #000000 18.12%, rgba(0, 0, 0, 0) 68.2%);
}

.hp__ref__bottomShadow {
  position: absolute;
  bottom: 30px;
  left: 0px;
  height: 130px;
  width: 100%;
  z-index: 20;
  background: linear-gradient(0deg, #000000 18.12%, rgba(0, 0, 0, 0) 68.2%);
}
@media screen and (max-width: 950px) {
  .hp__ref__bottomShadow {
    bottom: 90px;
  }
}

.hp__ref__cont h1 {
  text-align: center;
  margin-bottom: 50px;
  color: rgb(233, 83, 13);
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
}
@media screen and (max-width: 650px) {
  .hp__ref__cont h1 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.hp__ref__carousel__item {
  height: 390px;
  display: flex;
  padding-bottom: 0px;
  padding-top: 40px;
}
@media screen and (max-width: 750px) {
  .hp__ref__carousel__item {
    display: block;
    height: auto;
  }
}

.hp__ref__carousel__itemLeft, .hp__ref__carousel__itemRight {
  width: calc(50% - 15px);
  background-color: white;
  border-radius: 9px;
  padding: 33px 39px 23px 39px;
  position: relative;
  background-image: url("/user/themes/project/static/dist/crown_light.6380c323.svg");
  background-repeat: no-repeat;
  background-position: bottom right -9px;
  background-size: 90px 52px;
}
.hp__ref__carousel__itemLeft::before, .hp__ref__carousel__itemRight::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: rgb(233, 83, 13);
}
@media screen and (max-width: 750px) {
  .hp__ref__carousel__itemLeft, .hp__ref__carousel__itemRight {
    width: calc(100% - 30px);
  }
}

.hp__ref__carousel__itemLeft {
  top: -40px;
}
.hp__ref__carousel__itemLeft::before {
  right: -24px;
  top: 90px;
}
@media screen and (max-width: 750px) {
  .hp__ref__carousel__itemLeft {
    width: calc(100% - 30px);
  }
}

.hp__ref__carousel__itemRight {
  width: calc(50% - 15px);
  margin-left: 30px;
}
.hp__ref__carousel__itemRight::before {
  left: -24px;
  top: 130px;
}
@media screen and (max-width: 750px) {
  .hp__ref__carousel__itemRight {
    width: calc(100% - 30px);
  }
}

.hp__ref__carousel__itemRightOP0 {
  opacity: 0;
}

.hp__ref__carousel__img {
  width: 260px;
  height: 60px;
  object-fit: contain;
  object-position: left top;
  margin-bottom: 15px;
}

.hp__ref__carousel__txt {
  height: 185px;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.1rem;
  color: rgb(29, 29, 27);
  overflow: hidden;
  margin-bottom: 10px;
}

.hp__ref__carousel__txt h2 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.1111rem;
  line-height: 1.26rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 650px) {
  .hp__ref__carousel__txt h2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.hp__ref__carousel__link {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1rem;
  text-decoration: underline;
  color: rgb(233, 83, 13);
}

.hp__ref__cont .tns-outer {
  position: relative;
}

.hp__ref__cont .tns-controls {
  position: absolute;
  width: 60px;
  height: 130px;
  right: -80px;
  top: 40%;
}
@media screen and (max-width: 950px) {
  .hp__ref__cont .tns-controls {
    right: 50%;
    transform: translateX(50%);
    top: inherit;
    height: 60px;
    width: 140px;
    bottom: -90px;
    z-index: 30;
  }
}

.hp__ref__cont .tns-controls button {
  position: relative;
  top: 0px;
  left: 0px;
  display: inline-block;
  transform: translateY(0%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 10px 20px;
  background-image: url("/user/themes/project/static/dist/arrow_carousel.183f2a93.svg");
  transform: rotate(90deg) !important;
  border-width: 2px;
}
.hp__ref__cont .tns-controls button:last-child {
  margin-top: 20px;
  transform: rotate(270deg) !important;
}
@media screen and (max-width: 950px) {
  .hp__ref__cont .tns-controls button:last-child {
    margin-top: 0px;
    margin-left: 20px;
  }
}

.hp__ref__cont .tns-inner {
  position: relative;
  z-index: 2;
}
.hp__ref__cont .tns-inner::before {
  z-index: 0;
  content: "";
  width: 4px;
  height: calc(100% + 40px);
  position: absolute;
  left: calc(50% - 1px);
  top: -20px;
  border-left: 2px dashed #EADFC9;
}

.hpM__ref__cont {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 120px;
  display: none;
}
@media screen and (max-width: 750px) {
  .hpM__ref__cont {
    display: block;
  }
}
.hpM__ref__cont::before {
  z-index: 0;
  content: "";
  width: 4px;
  height: calc(100% - 140px);
  position: absolute;
  left: 25px;
  top: 56px;
  border-left: 2px dashed #EADFC9;
}

.hpM__ref__cont h1 {
  text-align: center;
  margin-bottom: 50px;
  color: rgb(233, 83, 13);
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
}
@media screen and (max-width: 650px) {
  .hpM__ref__cont h1 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.hpM__ref__carousel {
  padding-left: 30px;
  position: relative;
}

.hpM__ref__carousel__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: white;
  border-radius: 9px;
  padding: 15px 15px 15px 15px;
  position: relative;
  background-image: url("/user/themes/project/static/dist/crown_light.6380c323.svg");
  background-repeat: no-repeat;
  background-position: bottom right -9px;
  background-size: 90px 52px;
}
.hpM__ref__carousel__item::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 19px;
  left: -30px;
  top: 28px;
  height: 19px;
  border-radius: 50%;
  background-color: rgb(233, 83, 13);
}

.hpM__ref__cont .tns-controls {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  height: 60px;
  width: 140px;
  bottom: 20px;
  z-index: 30;
}

.hpM__ref__cont .tns-controls button {
  position: relative;
  top: 0px;
  left: 0px;
  display: inline-block;
  transform: translateY(0%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 10px 20px;
  background-image: url("/user/themes/project/static/dist/arrow_carousel.183f2a93.svg");
  transform: rotate(90deg) !important;
  border-width: 2px;
}
.hpM__ref__cont .tns-controls button:last-child {
  margin-left: 20px;
  transform: rotate(270deg) !important;
}

.hpM__ref__cont .tns-inner {
  position: relative;
  z-index: 2;
}

.hpM__ref__carousel__img {
  width: 260px;
  height: 60px;
  object-fit: contain;
  object-position: left top;
  margin-bottom: 15px;
}

.hpM__ref__carousel__txt {
  flex: 1;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.1rem;
  color: rgb(29, 29, 27);
  overflow: hidden;
  margin-bottom: 10px;
}

.hpM__ref__carousel__txt h2 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.1111rem;
  line-height: 1.26rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 650px) {
  .hpM__ref__carousel__txt h2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.hpM__ref__carousel__link {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1rem;
  text-decoration: underline;
  color: rgb(233, 83, 13);
}

.hpM__ref__topShadow {
  position: absolute;
  top: 40px;
  left: 0px;
  height: 110px;
  width: 100%;
  z-index: 20;
  background: linear-gradient(180deg, #000000 18.12%, rgba(0, 0, 0, 0) 68.2%);
}

.hpM__ref__bottomShadow {
  position: absolute;
  bottom: 70px;
  left: 0px;
  height: 110px;
  width: 100%;
  z-index: 20;
  background: linear-gradient(0deg, #000000 18.12%, rgba(0, 0, 0, 0) 68.2%);
}

.hp__news {
  padding-top: 60px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.hp__news .container {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hp__news h1 {
  text-align: center;
  margin-bottom: 30px;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  color: white;
}
@media screen and (max-width: 650px) {
  .hp__news h1 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.hp__news__nett {
  position: absolute;
  left: 20%;
  bottom: 30%;
  width: 80%;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .hp__news__nett {
    left: 20%;
    bottom: 40%;
    width: 110%;
  }
}
@media screen and (max-width: 450px) {
  .hp__news__nett {
    left: 20%;
    bottom: 75%;
    width: 250%;
  }
}

.hp__news__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .hp__news__wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 450px) {
  .hp__news__wrap {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.hp__news__item {
  background-color: rgb(29, 29, 27);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
}

.hp__news__item img {
  height: 160px;
  object-fit: cover;
  width: 100%;
  -webkit-border-top-left-radius: 9px;
  -webkit-border-top-right-radius: 9px;
  -moz-border-radius-topleft: 9px;
  -moz-border-radius-topright: 9px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}

.hp__news__item__cont {
  flex: 1;
  display: flex;
  padding: 18px;
  text-align: left;
  flex-direction: column;
}

.hp__news__item__cont h2 {
  flex: 1;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.1111rem;
  line-height: 1.26rem;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 650px) {
  .hp__news__item__cont h2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.hp__news__item__cont p {
  height: 47px;
  padding: 20px 0px 0px 0px;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1rem;
  text-decoration: underline;
  color: rgb(233, 83, 13);
}

.mapHP {
  height: 350px;
  width: 100%;
  border-radius: 9px;
  filter: grayscale(100%);
}
@media screen and (max-width: 650px) {
  .mapHP {
    height: 50vh;
  }
}

.mapHP img {
  max-width: none !important;
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.careerStrip {
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/user/themes/project/static/dist/career__back.04bbe3ae.jpg");
  overflow: hidden;
  padding-top: 65px;
  padding-bottom: 85px;
  position: relative;
}
@media screen and (max-width: 650px) {
  .careerStrip {
    padding-top: 35px;
    padding-bottom: 45px;
  }
}

.careerStrip .container {
  position: relative;
  z-index: 20;
}

.careerStrip a {
  position: relative;
  z-index: 20;
}

.careerStrip__nett {
  position: absolute;
  left: 40%;
  bottom: -50%;
  width: 80%;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .careerStrip__nett {
    left: 0%;
    bottom: -50%;
    width: 130%;
  }
}
@media screen and (max-width: 450px) {
  .careerStrip__nett {
    left: -30%;
    bottom: -50%;
    width: 180%;
  }
}

.careerStrip h1 {
  color: rgb(255, 255, 255);
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 650px) {
  .careerStrip h1 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.careerStrip p {
  color: rgb(255, 255, 255);
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2222rem;
  line-height: 1.6666rem;
  margin-bottom: 41px;
  max-width: 520px;
}

.careerStrip a em {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1rem;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding-top: 7px;
  background-color: rgb(233, 83, 13);
  color: rgb(255, 255, 255);
  margin-left: 7px;
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.contactStrip {
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/user/themes/project/static/dist/contactStrip_back.30a087c0.jpg");
  overflow: hidden;
  padding-top: 65px;
  padding-bottom: 85px;
}
@media screen and (max-width: 650px) {
  .contactStrip {
    padding-top: 35px;
    padding-bottom: 45px;
  }
}

.contactStrip .container {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 650px) {
  .contactStrip .container {
    flex-wrap: wrap;
  }
}

.contactStrip__text {
  flex: 1;
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .contactStrip__text {
    margin-right: 15px;
  }
}
@media screen and (max-width: 650px) {
  .contactStrip__text {
    flex: none;
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0px;
  }
}

.contactStrip__text h1 {
  color: rgb(255, 255, 255);
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  margin-bottom: 25px;
}
@media screen and (max-width: 650px) {
  .contactStrip__text h1 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.contactStrip__text p {
  color: rgb(255, 255, 255);
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2222rem;
  line-height: 1.6666rem;
  margin-bottom: 41px;
}
@media screen and (max-width: 650px) {
  .contactStrip__text p {
    margin-bottom: 20px;
  }
}

.contactStrip__form {
  flex: 1;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .contactStrip__form {
    margin-left: 15px;
  }
}
@media screen and (max-width: 650px) {
  .contactStrip__form {
    flex: none;
    width: 100%;
    margin-bottom: 0px;
    margin-left: 0px;
  }
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.foot {
  position: relative;
  z-index: 3;
  padding-top: 49px;
  background-color: rgb(29, 29, 27);
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 650px) {
  .foot {
    padding-top: 25px;
  }
}

.foot__top {
  display: flex;
  padding-bottom: 75px;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.1rem;
  line-height: 1.3rem;
}
@media screen and (max-width: 760px) {
  .foot__top {
    display: block;
    padding-bottom: 55px;
  }
}
@media screen and (max-width: 650px) {
  .foot__top {
    padding-bottom: 25px;
  }
}

.foot__contact {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .foot__contact {
    flex: 1;
  }
}
@media screen and (max-width: 760px) {
  .foot__contact {
    flex: none;
    margin-bottom: 40px;
  }
}

.foot__adress {
  flex: 1.5;
  margin-left: 25px;
}
@media screen and (max-width: 1024px) {
  .foot__adress {
    flex: 1.5;
  }
}
@media screen and (max-width: 760px) {
  .foot__adress {
    flex: none;
    margin-bottom: 40px;
    margin-left: 0px;
  }
}

.foot__social {
  flex: 2;
  margin-left: 25px;
}
@media screen and (max-width: 1024px) {
  .foot__social {
    flex: 2;
  }
}
@media screen and (max-width: 880px) {
  .foot__social {
    flex: 1;
  }
}
@media screen and (max-width: 760px) {
  .foot__social {
    flex: none;
    margin-left: 0px;
  }
}

.foot__bottom {
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid #474747;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 0.66rem;
  line-height: normal;
  color: rgb(217, 219, 225);
}

.foot__top h2 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.1111rem;
  line-height: 1.26rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 650px) {
  .foot__top h2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.foot__contact ul {
  padding: 0;
  margin: 0px 0px 25px 0px;
  list-style-type: none;
}

.foot__contact li {
  display: block;
  margin-bottom: 10px;
}

.foot__contact a, .foot__adress a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.foot__contact a svg, .foot__adress a svg {
  fill: #F5F5F6;
  margin-right: 5px;
}
.foot__contact a:hover, .foot__adress a:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: rgb(233, 83, 13);
}
.foot__contact a:hover svg, .foot__adress a:hover svg {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  fill: rgb(233, 83, 13);
}

.foot__contact a svg {
  width: 30px;
  height: 30px;
}

.foot svg {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.foot__social a {
  display: inline-block;
  margin-right: 10px;
}
.foot__social a svg {
  fill: #F5F5F6;
}
.foot__social a:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.foot__social a:hover svg {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  fill: rgb(233, 83, 13);
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.aboutus__top {
  overflow: hidden;
  text-align: center;
  padding-top: 180px;
  padding-bottom: 65px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .aboutus__top {
    padding-top: 150px;
  }
}
@media screen and (max-width: 650px) {
  .aboutus__top {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.aboutus__top .container {
  position: relative;
  z-index: 1;
}

.aboutus__top h1 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3.125rem;
  line-height: 3.5625rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .aboutus__top h1 {
    font-size: 2rem;
    line-height: 2.4375rem;
  }
}
@media screen and (max-width: 650px) {
  .aboutus__top h1 {
    margin-bottom: 20px;
  }
}

.aboutus__top__perex {
  margin: 0 auto 64px auto;
  max-width: 880px;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3333rem;
  line-height: 1.666rem;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .aboutus__top__perex {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
@media screen and (max-width: 650px) {
  .aboutus__top__perex {
    margin: 0 auto 30px auto;
  }
}

.aboutus__top__txt {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2222rem;
  line-height: 1.6666rem;
  margin: 0 auto 64px auto;
}
@media screen and (max-width: 650px) {
  .aboutus__top__txt {
    margin: 0 auto 30px auto;
  }
}

.aboutus__top__ul {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2222rem;
  line-height: 1.6666rem;
  margin: 0 auto 30px auto;
  display: inline-block;
  width: auto;
}
@media screen and (max-width: 650px) {
  .aboutus__top__ul {
    margin: 0 auto 30px auto;
  }
}

.aboutus__top__ul li {
  text-align: left;
}

.aboutus__top__subhead {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2222rem;
  line-height: 1.6666rem;
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 650px) {
  .aboutus__top__subhead {
    margin: 0 auto 30px auto;
  }
}

.aboutus__nett {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) rotate(60deg);
  top: 50%;
  width: auto;
  height: 90%;
  max-width: none;
}
.aboutus__bests {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: 25px;
}
@media screen and (max-width: 790px) {
  .aboutus__bests {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }
}
@media screen and (max-width: 650px) {
  .aboutus__bests {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 15px;
  }
}

.aboutus__best__item {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3333rem;
  line-height: 1.666rem;
}
@media screen and (max-width: 650px) {
  .aboutus__best__item {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.aboutus__best__item svg {
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .aboutus__best__item svg {
    width: 80px;
  }
}

.aboutus__know {
  padding-top: 64px;
  padding-bottom: 74px;
  position: relative;
  background-color: rgb(233, 83, 13);
  color: rgb(255, 255, 255);
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2222rem;
  line-height: 1.6666rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .aboutus__know {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}
@media screen and (max-width: 650px) {
  .aboutus__know {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.aboutus__know h1 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .aboutus__know h1 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 650px) {
  .aboutus__know h1 {
    margin-bottom: 20px;
  }
}

.aboutus__know p {
  margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .aboutus__know p {
    margin-bottom: 20px;
  }
}
.aboutus__know p:last-child {
  margin-bottom: 0px;
}

.aboutus__peoples__wrap {
  background-color: rgb(255, 255, 255);
  padding-top: 64px;
  padding-bottom: 74px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .aboutus__peoples__wrap {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}
@media screen and (max-width: 650px) {
  .aboutus__peoples__wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.aboutus__peoples__wrap .container {
  max-width: 980px;
}

.aboutus__peoples__wrap h2 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  color: rgb(233, 83, 13);
  margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .aboutus__peoples__wrap h2 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 650px) {
  .aboutus__peoples__wrap h2 {
    margin-bottom: 20px;
  }
}

.aboutus__peoples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  column-gap: 80px;
  row-gap: 40px;
}
@media screen and (max-width: 650px) {
  .aboutus__peoples {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 450px) {
  .aboutus__peoples {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.aboutus__people__cell {
  display: flex;
}
@media screen and (max-width: 450px) {
  .aboutus__people__cell {
    flex-wrap: wrap;
  }
}

.aboutus__people {
  flex: 1;
}
.aboutus__people img {
  width: 110%;
}
@media screen and (max-width: 450px) {
  .aboutus__people img {
    width: 100%;
  }
}
.aboutus__people:nth-child(even) {
  margin-left: -10%;
}
@media screen and (max-width: 450px) {
  .aboutus__people:nth-child(even) {
    margin-left: 0%;
  }
}
@media screen and (max-width: 450px) {
  .aboutus__people {
    flex: none;
    width: 100%;
  }
}

.aboutus__people__txt {
  margin-top: 20px;
  width: 80%;
  color: rgb(29, 29, 27);
  max-width: 190px;
}
@media screen and (max-width: 450px) {
  .aboutus__people__txt {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}

.aboutus__people:nth-child(even) .aboutus__people__txt {
  margin-left: auto;
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.services__top {
  overflow: hidden;
  text-align: center;
  padding-top: 180px;
  padding-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .services__top {
    padding-top: 80px;
  }
}
@media screen and (max-width: 650px) {
  .services__top {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.services__top h1 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3.125rem;
  line-height: 3.5625rem;
  margin-bottom: 0px;
}
@media screen and (max-width: 650px) {
  .services__top h1 {
    font-size: 2rem;
    line-height: 2.4375rem;
  }
}
@media screen and (max-width: 650px) {
  .services__top h1 {
    margin-bottom: 0px;
  }
}

.services__nett {
  position: absolute;
  left: 110%;
  transform: translate(-50%, -50%) rotate(10deg);
  top: -120px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .services__nett {
    top: -120px;
    left: 135%;
  }
}

.services__list {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: 15px;
  padding-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .services__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 650px) {
  .services__list {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.services__item {
  display: flex;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  border-radius: 9px;
}

.services__item img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  -webkit-border-top-left-radius: 9px;
  -webkit-border-top-right-radius: 9px;
  -moz-border-radius-topleft: 9px;
  -moz-border-radius-topright: 9px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}

.services__item__cont {
  flex: 1;
  padding: 27px 21px 25px 26px;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  color: rgb(29, 29, 27);
}

.services__item__cont strong, .services__item__cont b {
  color: rgb(233, 83, 13);
  font-weight: bold;
}

.services__item__cont h2 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3333rem;
  line-height: 1.666rem;
  margin-bottom: 15px;
  text-align: left;
}
@media screen and (max-width: 650px) {
  .services__item__cont h2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.services__item__contLink {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1rem;
  text-decoration: underline;
  padding: 0px 21px 0px 26px;
  height: 40px;
  color: rgb(233, 83, 13);
}

.services__txt {
  position: relative;
  overflow: hidden;
}

.services__nettBottom {
  position: absolute;
  left: 91%;
  transform: translate(-50%, -50%) rotate(60deg);
  top: 360px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .services__nettBottom {
    top: 360px;
    left: 91%;
  }
}

.services__txt h2 {
  max-width: 540px;
  margin: 0px auto 40px auto;
}

.services__txt p {
  max-width: 1010px;
  text-align: center;
  margin: 0px auto 60px auto;
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.newsList__top {
  overflow: hidden;
  text-align: center;
  padding-top: 161px;
  padding-bottom: 65px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .newsList__top {
    padding-top: 80px;
  }
}
@media screen and (max-width: 650px) {
  .newsList__top {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.newsList__top h1 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3.333rem;
  line-height: 4.222rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .newsList__top h1 {
    font-size: 2rem;
    line-height: 2.4375rem;
  }
}
@media screen and (max-width: 650px) {
  .newsList__top h1 {
    margin-bottom: 20px;
  }
}

.newsList__nett {
  position: absolute;
  left: 110%;
  transform: translate(-50%, -50%) rotate(10deg);
  top: -140px;
  width: 1090px;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .newsList__nett {
    top: -220px;
    left: 135%;
  }
}

.newsList__nett2 {
  position: absolute;
  left: 110%;
  transform: translate(-50%, -50%) rotate(10deg);
  bottom: -580px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .newsList__nett2 {
    bottom: -580px;
    left: 135%;
  }
}

.newsList__list__wrap {
  overflow: hidden;
  position: relative;
}

.newsList__list {
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 35% 1fr 35%;
  grid-gap: 24px;
}
@media screen and (max-width: 750px) {
  .newsList__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .newsList__list {
    grid-template-columns: 1fr;
  }
}

.newList__item {
  background-color: rgb(29, 29, 27);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-image: url("/user/themes/project/static/dist/crown_gold.881946f6.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 38px 37px;
}

.newList__item:nth-child(4n+1),
.newList__item:nth-child(4n+4) {
  grid-column: span 2;
}
@media screen and (max-width: 750px) {
  .newList__item:nth-child(4n+1),
.newList__item:nth-child(4n+4) {
    grid-column: auto;
  }
}

.newList__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
  -webkit-border-top-left-radius: 9px;
  -webkit-border-top-right-radius: 9px;
  -moz-border-radius-topleft: 9px;
  -moz-border-radius-topright: 9px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}

.newList__item__txt {
  flex: 1;
  padding: 27px 21px 25px 26px;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  color: rgb(255, 255, 255);
}

.newList__item__txt h2 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3333rem;
  line-height: 1.666rem;
  margin-bottom: 15px;
  text-align: left;
  color: rgb(233, 83, 13);
}
@media screen and (max-width: 650px) {
  .newList__item__txt h2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.newList__item__span {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1rem;
  text-decoration: underline;
  padding: 0px 21px 0px 26px;
  height: 40px;
  color: rgb(233, 83, 13);
}

.newsList__next {
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.newsList__empty {
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  z-index: 3;
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.new {
  overflow: hidden;
  text-align: center;
  padding-top: 161px;
  padding-bottom: 65px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .new {
    padding-top: 80px;
  }
}
@media screen and (max-width: 650px) {
  .new {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.new h1 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  margin-bottom: 10px;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .new h1 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 650px) {
  .new h1 {
    margin-bottom: 10px;
  }
}

.new__nett {
  position: absolute;
  left: 110%;
  transform: translate(-50%, -50%) rotate(10deg);
  top: -120px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .new__nett {
    top: -120px;
    left: 135%;
  }
}

.new__bottom {
  position: absolute;
  left: -50%;
  transform: translate(0%, -20%) rotate(200deg);
  bottom: -700px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .new__bottom {
    bottom: -660px;
    left: -105%;
  }
}

.new__article {
  max-width: 800px;
  position: relative;
}

.new__article__date {
  text-align: center;
  color: rgb(233, 83, 13);
  margin-bottom: 20px;
  display: block;
}

.new__article__mainImg {
  max-width: 100%;
  margin-bottom: 24px;
}

.new__article__perex {
  color: rgb(233, 83, 13);
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3333rem;
  line-height: 1.666rem;
  margin-bottom: 24px;
  text-align: left;
}
@media screen and (max-width: 650px) {
  .new__article__perex {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.new__article__content {
  color: rgb(255, 255, 255);
  margin-bottom: 24px;
  text-align: left;
}

.new__article__content p {
  margin-bottom: 24px;
}
.new__article__content p:last-child {
  margin-bottom: 0px;
}

.new__next {
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.new__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: 15px;
}
@media screen and (max-width: 750px) {
  .new__gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 450px) {
  .new__gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.page_route__reference {
  padding-top: 270px;
}
@media screen and (max-width: 650px) {
  .page_route__reference {
    padding-top: 80px;
  }
}

.references__top {
  position: fixed;
  z-index: 5;
  left: 0px;
  top: 0px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: rgb(0, 0, 0);
}
@media screen and (max-width: 800px) {
  .references__top {
    padding-top: 80px;
  }
}
@media screen and (max-width: 650px) {
  .references__top {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
  }
}

.references__top h1 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3.333rem;
  line-height: 4.222rem;
  margin-bottom: 10px;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .references__top h1 {
    font-size: 2rem;
    line-height: 2.4375rem;
  }
}
@media screen and (max-width: 650px) {
  .references__top h1 {
    margin-bottom: 20px;
  }
}

.references__top p {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.1111rem;
  line-height: 1.26rem;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .references__top p {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
@media screen and (max-width: 650px) {
  .references__top p {
    margin-bottom: 20px;
  }
}

.references__nett {
  position: absolute;
  left: 110%;
  transform: translate(-50%, -50%) rotate(10deg);
  top: -120px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .references__nett {
    top: -120px;
    left: 135%;
  }
}

.references__bottomNett {
  position: absolute;
  left: -50%;
  transform: translate(0%, -20%) rotate(200deg);
  bottom: -580px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .references__bottomNett {
    bottom: -560px;
    left: -120%;
  }
}

.references {
  padding-top: 35px;
  background-color: rgb(255, 255, 255);
  padding-bottom: 0px;
  position: relative;
  overflow: hidden;
}
.references::before {
  width: 2px;
  border-left: 2px dashed rgba(233, 83, 13, 0.1);
  content: "";
  height: calc(100% - 190px);
  position: absolute;
  left: 50%;
  top: 130px;
}

.references .container {
  max-width: 920px;
  position: relative;
}

.references h2 {
  color: rgb(233, 83, 13);
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  margin-bottom: 0px;
}
@media screen and (max-width: 650px) {
  .references h2 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.references__topShadow {
  height: 55px;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 100%);
}

.references__bottomShadow {
  height: 130px;
  position: relative;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 100%);
}

.recerence {
  color: rgb(29, 29, 27);
  background: #FFFFFF;
  box-shadow: 0px 21px 101px rgba(233, 83, 13, 0.1);
  border-radius: 9px;
  padding: 46px 94px;
  margin-bottom: 60px;
}
@media screen and (max-width: 725px) {
  .recerence {
    padding: 26px 44px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 350px) {
  .recerence {
    padding: 10px 20px;
    margin-bottom: 30px;
  }
}

.recerence__header {
  display: flex;
  margin-bottom: 40px;
  justify-content: flex-start;
}
@media screen and (max-width: 460px) {
  .recerence__header {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}

.recerence__header h3 {
  order: 2;
  flex: 1;
  margin-left: 25px;
}
@media screen and (max-width: 725px) {
  .recerence__header h3 {
    margin-left: 20px;
  }
}
@media screen and (max-width: 460px) {
  .recerence__header h3 {
    margin-left: 0px;
    width: 100%;
  }
}

.reference__img {
  order: 1;
  width: calc(50% - 25px);
  object-fit: contain;
  object-position: left top;
}
@media screen and (max-width: 725px) {
  .reference__img {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 460px) {
  .reference__img {
    margin-bottom: 15px;
    width: 100%;
  }
}

.reference__img img {
  width: 250px;
  height: 60px;
  object-fit: contain;
  object-position: left top;
}

.reference__perex {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2222rem;
  line-height: 1.6666rem;
  margin-bottom: 20px;
}

.reference__txt ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.reference__txt li {
  margin: 0px 0px 15px 0px;
  padding: 15px 15px 15px 95px;
  list-style-type: none;
  border-radius: 9px;
  border: 2px solid rgb(233, 83, 13);
  background-image: url("/user/themes/project/static/dist/li_reference.01313610.svg");
  background-repeat: no-repeat;
  background-position: left 15px top 15px;
  background-size: 52px 20px;
}
@media screen and (max-width: 350px) {
  .reference__txt li {
    padding: 10px 10px 10px 65px;
    background-size: 42px 15px;
    background-position: left 10px top 15px;
  }
}

.references__partners {
  padding: 60px 0px;
}
@media screen and (max-width: 650px) {
  .references__partners {
    padding: 30px 0px;
  }
}

.references__partners h2 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 650px) {
  .references__partners h2 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.references__partners ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.references__partners li {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgb(233, 83, 13);
  border-radius: 8px;
  color: rgb(29, 29, 27);
}
@media screen and (max-width: 650px) {
  .references__partners li {
    padding: 5px 10px;
  }
}

.ref__wrap {
  position: relative;
  overflow: hidden;
  background-image: url("/user/themes/project/static/dist/back-carrier.9116a1be.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.ref__nett {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 10%;
  top: -10%;
  z-index: 0;
  opacity: 0.6;
}

.ref__wrap .container {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid rgb(233, 83, 13);
  border-bottom: 1px solid rgb(233, 83, 13);
}
@media screen and (max-width: 880px) {
  .ref__wrap .container {
    padding-bottom: 64px;
    padding-top: 120px;
  }
}
@media screen and (max-width: 650px) {
  .ref__wrap .container {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

.ref__h2 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  color: rgb(233, 83, 13);
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 650px) {
  .ref__h2 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.ref__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 850px) {
  .ref__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .ref__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
  }
}

.ref__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ref__item img {
  max-width: 100%;
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.service__top {
  overflow: hidden;
  text-align: center;
  padding-top: 180px;
  padding-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .service__top {
    padding-top: 80px;
  }
}
@media screen and (max-width: 650px) {
  .service__top {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.service__top h1 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3.333rem;
  line-height: 4.222rem;
  margin-bottom: 0px;
}
@media screen and (max-width: 650px) {
  .service__top h1 {
    font-size: 2rem;
    line-height: 2.4375rem;
  }
}
@media screen and (max-width: 650px) {
  .service__top h1 {
    margin-bottom: 0px;
  }
}

.service__nett {
  position: absolute;
  left: 110%;
  transform: translate(-50%, -50%) rotate(10deg);
  top: -120px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .service__nett {
    top: -120px;
    left: 135%;
  }
}

.service {
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .service {
    margin-bottom: 40px;
  }
}

.service__img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 64px;
}

.service__cont {
  max-width: 930px;
}

.service__cont h1 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  margin-bottom: 25px;
}
@media screen and (max-width: 650px) {
  .service__cont h1 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.service__cont__perex {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2222rem;
  line-height: 1.6666rem;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .service__cont__perex {
    margin-bottom: 30px;
  }
}

.service__cont__main {
  position: relative;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service__cont__main p {
  margin-bottom: 20px;
}

.service__cont__main h1,
.service__cont__main h2,
.service__cont__main h3,
.service__cont__main h4,
.service__cont__main h5,
.service__cont__main h6 {
  margin-bottom: 20px;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3333rem;
  line-height: 1.666rem;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .service__cont__main h1,
.service__cont__main h2,
.service__cont__main h3,
.service__cont__main h4,
.service__cont__main h5,
.service__cont__main h6 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.service__cont__main ul {
  margin: 50px 0px 50px 0px;
  padding: 0;
  list-style-type: none;
  position: relative;
}
.service__cont__main ul::before {
  content: "";
  position: absolute;
  width: 2px;
  left: 50%;
  height: calc(100% + 20px);
  top: -30px;
  border-left: 2px dashed rgb(233, 83, 13);
}

.service__cont__main li {
  background-color: rgb(0, 0, 0);
  margin: 0px 0px 15px 0px;
  text-align: left;
  padding: 15px 17px 18px 60px;
  border: 2px solid rgb(233, 83, 13);
  border-radius: 9px;
  background-image: url("/user/themes/project/static/dist/list_crown.71773d2a.svg");
  background-repeat: no-repeat;
  background-position: left 14px top 15px;
  background-size: 29px 29px;
  position: relative;
}

.service__cont__main li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  width: 36px;
  height: 36px;
  background-image: url("/user/themes/project/static/dist/list_check.a24cb6a7.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 36px 36px;
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.service__cont__main li:nth-child(1)::before {
  animation: fadeIn 0.8s ease-in-out 1s 1 forwards;
}

.service__cont__main li:nth-child(2)::before {
  animation: fadeIn 0.8s ease-in-out 2s 1 forwards;
}

.service__cont__main li:nth-child(3)::before {
  animation: fadeIn 0.8s ease-in-out 3s 1 forwards;
}

.service__cont__main li:nth-child(4)::before {
  animation: fadeIn 0.8s ease-in-out 4s 1 forwards;
}

.service__cont__main li:nth-child(5)::before {
  animation: fadeIn 0.8s ease-in-out 5s 1 forwards;
}

.service__cont__main li:nth-child(6)::before {
  animation: fadeIn 0.8s ease-in-out 6s 1 forwards;
}

.service__cont__main li:nth-child(7)::before {
  animation: fadeIn 0.8s ease-in-out 7s 1 forwards;
}

.service__cont__main li:nth-child(8)::before {
  animation: fadeIn 0.8s ease-in-out 8s 1 forwards;
}

.service__cont__main li:nth-child(9)::before {
  animation: fadeIn 0.8s ease-in-out 9s 1 forwards;
}

.service__cont__main li:nth-child(10)::before {
  animation: fadeIn 0.8s ease-in-out 10s 1 forwards;
}

.service__cont__main li:nth-child(11)::before {
  animation: fadeIn 0.8s ease-in-out 11s 1 forwards;
}

.service__cont__main li:nth-child(12)::before {
  animation: fadeIn 0.8s ease-in-out 12s 1 forwards;
}

.service__cont__main li:nth-child(13)::before {
  animation: fadeIn 0.8s ease-in-out 13s 1 forwards;
}

.service__cont__main li:nth-child(14)::before {
  animation: fadeIn 0.8s ease-in-out 14s 1 forwards;
}

.service__cont__main li:nth-child(15)::before {
  animation: fadeIn 0.8s ease-in-out 15s 1 forwards;
}

.service__cont__main li:nth-child(16)::before {
  animation: fadeIn 0.8s ease-in-out 16s 1 forwards;
}

.service__cont__main li:nth-child(17)::before {
  animation: fadeIn 0.8s ease-in-out 17s 1 forwards;
}

.service__cont__main li:nth-child(18)::before {
  animation: fadeIn 0.8s ease-in-out 18s 1 forwards;
}

.service__cont__main li:nth-child(19)::before {
  animation: fadeIn 0.8s ease-in-out 19s 1 forwards;
}

.service__cont__main li:nth-child(20)::before {
  animation: fadeIn 0.8s ease-in-out 20s 1 forwards;
}

.service__cont__main li:nth-child(21)::before {
  animation: fadeIn 0.8s ease-in-out 21s 1 forwards;
}

.service__cont__main li:nth-child(22)::before {
  animation: fadeIn 0.8s ease-in-out 22s 1 forwards;
}

.service__cont__main li:nth-child(23)::before {
  animation: fadeIn 0.8s ease-in-out 23s 1 forwards;
}

.service__cont__main li:nth-child(24)::before {
  animation: fadeIn 0.8s ease-in-out 24s 1 forwards;
}

.service__cont__main li:nth-child(25)::before {
  animation: fadeIn 0.8s ease-in-out 25s 1 forwards;
}

.service__cont__main li:nth-child(26)::before {
  animation: fadeIn 0.8s ease-in-out 26s 1 forwards;
}

.service__cont__main li:nth-child(27)::before {
  animation: fadeIn 0.8s ease-in-out 27s 1 forwards;
}

.service__cont__main li:nth-child(28)::before {
  animation: fadeIn 0.8s ease-in-out 28s 1 forwards;
}

.service__cont__main li:nth-child(29)::before {
  animation: fadeIn 0.8s ease-in-out 29s 1 forwards;
}

.service__cont__main li:nth-child(30)::before {
  animation: fadeIn 0.8s ease-in-out 30s 1 forwards;
}

.service__adv {
  background-image: url("/user/themes/project/static/dist/hp_top_image.dde035c6.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: rgb(0, 0, 0);
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 450px) {
  .service__adv {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.service__adv h1 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .service__adv h1 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 650px) {
  .service__adv h1 {
    margin-bottom: 20px;
  }
}

.service__adv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: 15px;
  padding-bottom: 60px;
}
@media screen and (max-width: 990px) {
  .service__adv__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 750px) {
  .service__adv__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 650px) {
  .service__adv__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.service__adv__grid__item {
  background-color: #1a1818;
  box-shadow: 0px 21px 101px rgba(159, 140, 98, 0.1);
  border-radius: 9px;
  text-align: center;
  padding: 15px 15px 45px 15px;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  overflow: hidden;
  background-image: url("/user/themes/project/static/dist/crown_light.6380c323.svg");
  background-repeat: no-repeat;
  background-position: bottom right -20px;
  background-size: 90px 52px;
}

.service__adv__grid__item strong,
.service__adv__grid__item b {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: rgb(233, 83, 13);
}

.service__adv__grid__item ul {
  text-align: left;
}

.service__nettBottom {
  position: absolute;
  left: 1%;
  top: -10px;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .service__nettBottom {
    left: 1%;
    top: -10px;
  }
}

.serviceshp_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px 15px;
}
@media screen and (max-width: 750px) {
  .serviceshp_grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.servicehp_itemWrap {
  background-color: rgb(255, 255, 255);
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  background-image: url("/user/themes/project/static/dist/arrow_right.0e3fde6a.svg");
  background-repeat: no-repeat;
  background-position: right 36px bottom 26px;
  background-size: 9px 21px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 420px) {
  .servicehp_itemWrap {
    flex-wrap: wrap;
  }
}
.servicehp_itemWrap:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-position: right 26px bottom 26px;
}

.serviceshp_item {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

.serviceshp_item--img {
  width: 45%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 420px) {
  .serviceshp_item--img {
    width: 100%;
    height: 150px;
  }
}

.serviceshp_item--img img {
  object-fit: cover;
  object-position: center center;
  height: 100%;
}
@media screen and (max-width: 420px) {
  .serviceshp_item--img img {
    width: 100%;
    height: 150px;
  }
}

.serviceshp_item--cont {
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 420px) {
  .serviceshp_item--cont {
    width: 100%;
  }
}

.serviceshp_item--cont h3 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3333rem;
  line-height: 1.666rem;
  margin: 0;
  color: rgb(0, 0, 0);
  padding: 65px 15px;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .serviceshp_item--cont h3 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
@media screen and (max-width: 650px) {
  .serviceshp_item--cont h3 {
    font-family: "Montserrat", helvetica, arial, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 1.1111rem;
    line-height: 1.26rem;
  }
}
@media screen and (max-width: 650px) and (max-width: 650px) {
  .serviceshp_item--cont h3 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
@media screen and (max-width: 420px) {
  .serviceshp_item--cont h3 {
    font-family: "Montserrat", helvetica, arial, sans-serif;
    font-style: normal;
    font-weight: 800;
    padding: 25px 15px 65px 15px;
  }
}

.servicehp_item_hidden {
  display: none;
}

.serviceshp_btn {
  text-align: center;
  padding-top: 44px;
}

.serviceshp_btn button {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  outline: none;
  border: none;
  padding-right: 37px;
  background-image: url("/user/themes/project/static/dist/arrow_down.86f190fd.svg");
  background-repeat: no-repeat;
  background-position: right top 15px;
  background-size: 21px 8px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.serviceshp_btn button:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-position: right top 20px;
}

.modalS {
  position: fixed;
  z-index: 100000;
  display: flex;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .modalS {
    display: block;
  }
}

.modalS__cont {
  width: 100%;
  max-width: 926px;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  display: flex;
  position: relative;
  border-radius: 9px;
  border: 1px solid rgb(233, 83, 13);
  padding: 31px 26px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 960px) {
  .modalS__cont {
    gap: 30px;
  }
}
@media screen and (max-width: 650px) {
  .modalS__cont {
    padding: 15px 15px;
    flex-wrap: wrap;
    gap: 0px;
  }
}

.modalS__img {
  width: 355px;
  max-width: 355px;
}
@media screen and (max-width: 960px) {
  .modalS__img {
    width: 250px;
  }
}
@media screen and (max-width: 650px) {
  .modalS__img {
    width: 100%;
  }
}

.modalS__img img {
  border-radius: 9px;
}

.modalS__txt {
  padding-top: 16px;
  padding-bottom: 16px;
  flex: 1;
  font-weight: 700;
}
@media screen and (max-width: 650px) {
  .modalS__txt {
    flex: auto;
    width: 100%;
  }
}

.modalS__txt h3 {
  font-size: 1.375rem;
  color: rgb(233, 83, 13);
  margin-bottom: 16px;
}

.modalS__txt p {
  text-align: justify;
}

.modalS__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 20px;
  height: 20px;
  background-image: url("/user/themes/project/static/dist/icon_close.9943433f.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  cursor: pointer;
}
.modalS__close:hover {
  cursor: pointer;
}

.modalS_hidden {
  display: none;
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.jobs__top {
  position: relative;
  z-index: 5;
  left: 0px;
  top: 0px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding-top: 180px;
  padding-bottom: 20px;
  background-color: rgb(0, 0, 0);
}
@media screen and (max-width: 800px) {
  .jobs__top {
    padding-top: 80px;
  }
}
@media screen and (max-width: 650px) {
  .jobs__top {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
  }
}

.jobs__top h1 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3.125rem;
  line-height: 3.5625rem;
  margin-bottom: 20px;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .jobs__top h1 {
    font-size: 2rem;
    line-height: 2.4375rem;
  }
}
@media screen and (max-width: 650px) {
  .jobs__top h1 {
    margin-bottom: 20px;
  }
}

.jobs__top p {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .jobs__top p {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 650px) {
  .jobs__top p {
    margin-bottom: 20px;
  }
}

.jobs__nett {
  position: absolute;
  left: 110%;
  transform: translate(-50%, -50%) rotate(10deg);
  top: -120px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .jobs__nett {
    top: -120px;
    left: 135%;
  }
}

.jobs__bottomNett {
  position: absolute;
  left: -50%;
  transform: translate(0%, -20%) rotate(200deg);
  bottom: -580px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .jobs__bottomNett {
    bottom: -560px;
    left: -120%;
  }
}

.jobs {
  overflow: hidden;
  z-index: 3;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  padding-bottom: 115px;
}
@media screen and (max-width: 990px) {
  .jobs {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 650px) {
  .jobs {
    padding-bottom: 40px;
  }
}

.jobs .container {
  max-width: 920px;
}

.job-ad-item {
  z-index: 3;
  position: relative;
  border: 2px rgb(233, 83, 13) solid;
  border-radius: 9px;
  padding: 12px 35px 13px 35px;
  margin-bottom: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 650px) {
  .job-ad-item {
    padding: 12px 25px 13px 25px;
  }
}

.job-ad-item h2 {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  position: relative;
  padding-right: 60px;
}

.job-ad-item.open {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 2px rgb(233, 83, 13) solid;
  background-color: rgb(233, 83, 13);
  padding: 20px 35px 13px 35px;
}

.job-ad-item.open h2 {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3333rem;
  line-height: 1.666rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 650px) {
  .job-ad-item.open h2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.job-ad-item .title {
  cursor: pointer;
}

.job-ad-item .content {
  display: none;
}

.job-ad-item.open .content {
  display: block;
}

.service__arrow__img {
  stroke: rgb(255, 255, 255);
  position: absolute;
  top: 10px;
  right: 0px;
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service__arrow {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  stroke: rgb(233, 83, 13);
}

.job-ad-item.open .service__arrow__img {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: rotate(180deg);
}

.job-ad-item.open .service__arrow {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  stroke: rgb(255, 255, 255);
}

.job-ad-item__buttons {
  padding: 15px 0px 30px 0px;
}

.job-ad-item__buttons .btn__white, .job-ad-item__buttons .page_route__kariera .buttons button, .page_route__kariera .buttons .job-ad-item__buttons button {
  margin-right: 10px;
  margin-bottom: 10px;
}

.job-ad-item__buttons__link {
  display: inline-block;
  padding: 5px 30px 5px 30px;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 9px;
  color: rgb(255, 255, 255);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.job-ad-item__buttons__link:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 5px 35px 5px 35px;
}

.jobs__head {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  color: rgb(233, 83, 13);
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .jobs__head {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.page_route__kariera .ajax-submited-form-container {
  width: 100%;
}

.page_route__kariera .buttons button:hover {
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.page_route__kariera .dropzone {
  background-color: rgb(233, 83, 13);
  color: #FFFFFF;
  border: 2px dashed #fff;
}

.page_route__kariera .dz-button {
  border: none;
}

.job-ad-list {
  padding-top: 64px;
  padding-bottom: 300px;
}
@media screen and (max-width: 880px) {
  .job-ad-list {
    padding-bottom: 60px;
    padding-top: 120px;
  }
}
@media screen and (max-width: 650px) {
  .job-ad-list {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

.job-ad-list-h2 {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  color: rgb(233, 83, 13);
  text-align: center;
}
@media screen and (max-width: 650px) {
  .job-ad-list-h2 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.job-ad-list-wrap {
  position: relative;
  overflow: hidden;
  background-image: url("/user/themes/project/static/dist/back-carrier.9116a1be.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.job-ad-list__nett {
  position: absolute;
  opacity: 0.6;
  bottom: -270px;
  left: 9%;
  max-width: 100%;
}
@media screen and (max-width: 650px) {
  .job-ad-list__nett {
    bottom: -130px;
  }
}

.job-ad-list-h2 {
  margin-bottom: 24px;
}

.job-ad-list-p {
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2222rem;
  line-height: 1.6666rem;
  font-weight: 700;
  text-align: center;
  color: rgb(255, 255, 255);
  margin-bottom: 24px;
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.contact__top {
  position: relative;
  z-index: 5;
  left: 0px;
  top: 0px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding-top: 180px;
  padding-bottom: 20px;
  background-color: rgb(0, 0, 0);
}
@media screen and (max-width: 800px) {
  .contact__top {
    padding-top: 80px;
  }
}
@media screen and (max-width: 650px) {
  .contact__top {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
  }
}

.contact__top h1 {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3.125rem;
  line-height: 3.5625rem;
  margin-bottom: 20px;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .contact__top h1 {
    font-size: 2rem;
    line-height: 2.4375rem;
  }
}
@media screen and (max-width: 650px) {
  .contact__top h1 {
    margin-bottom: 20px;
  }
}

.contact__nett {
  position: absolute;
  left: 110%;
  transform: translate(-50%, -50%) rotate(10deg);
  top: -120px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .contact__nett {
    top: -120px;
    left: 135%;
  }
}

.contact__bottomNett {
  position: absolute;
  left: -50%;
  transform: translate(0%, -20%) rotate(200deg);
  bottom: -580px;
  width: 1090px;
  z-index: 0;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .contact__bottomNett {
    bottom: -560px;
    left: -120%;
  }
}

.contact {
  position: relative;
  padding-top: 0px;
  padding-bottom: 60px;
  overflow: hidden;
}

.contact .container {
  position: relative;
  z-index: 3;
}

.contact__info {
  text-align: center;
  font-family: "Montserrat", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.222rem;
  line-height: 2.666rem;
  margin-bottom: 120px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .contact__info {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 650px) {
  .contact__info {
    margin-bottom: 60px;
  }
}

.contact__wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 650px) {
  .contact__wrap {
    display: block;
  }
}

.contact__img {
  width: 350px;
  margin-left: 30px;
}
@media screen and (max-width: 650px) {
  .contact__img {
    width: 100%;
    margin-left: 0px;
  }
}

.contact__img img {
  animation: floating 10s linear 0s infinite forwards;
}

.contact__adress {
  flex: 1;
}
@media screen and (max-width: 650px) {
  .contact__adress {
    flex: none;
    width: 100%;
    margin-bottom: 30px;
  }
}

.contact__adress path {
  fill: rgb(233, 83, 13);
}

.contact__adress__top {
  display: flex;
  margin-bottom: 40px;
}

.contact__adress__top svg {
  width: 41px;
  margin-right: 10px;
}

.contact__adress__top p {
  flex: 1;
}

.contact__adress__top a {
  text-decoration: underline;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: rgb(255, 255, 255);
}
.contact__adress__top a:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: rgb(233, 83, 13);
}

.map {
  height: 550px;
  width: 100%;
}
@media screen and (max-width: 650px) {
  .map {
    height: 50vh;
  }
}

.map img {
  max-width: none !important;
}

/* VARIABLES */
/* FONTS */
/* COLORS */
/* border-radius */
/* paddings */
/* widths */
/* widths */
/* annimation */
.files_grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
@media screen and (min-width: 450px) {
  .files_grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
  }
}

.files_item_img {
  aspect-ratio: 1/1;
  object-fit: contain;
  width: 100%;
  margin-bottom: 20px;
}

.files_item h2 {
  margin-bottom: 20px;
  text-align: center;
}

.files_item_txt {
  margin-bottom: 20px;
}

.files_item_link {
  display: block;
  font-weight: 800;
  color: rgb(233, 83, 13);
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.files_item_link:hover {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #FFF;
  text-decoration: underline;
}
.tns-outer{padding:0 !important}.tns-outer [hidden]{display:none !important}.tns-outer [aria-controls],.tns-outer [data-action]{cursor:pointer}.tns-slider{-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}.tns-slider>.tns-item{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tns-horizontal.tns-subpixel{white-space:nowrap}.tns-horizontal.tns-subpixel>.tns-item{display:inline-block;vertical-align:top;white-space:normal}.tns-horizontal.tns-no-subpixel:after{content:'';display:table;clear:both}.tns-horizontal.tns-no-subpixel>.tns-item{float:left}.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{margin-right:-100%}.tns-no-calc{position:relative;left:0}.tns-gallery{position:relative;left:0;min-height:1px}.tns-gallery>.tns-item{position:absolute;left:-100%;-webkit-transition:transform 0s, opacity 0s;-moz-transition:transform 0s, opacity 0s;transition:transform 0s, opacity 0s}.tns-gallery>.tns-slide-active{position:relative;left:auto !important}.tns-gallery>.tns-moving{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;transition:all 0.25s}.tns-autowidth{display:inline-block}.tns-lazy-img{-webkit-transition:opacity 0.6s;-moz-transition:opacity 0.6s;transition:opacity 0.6s;opacity:0.6}.tns-lazy-img.tns-complete{opacity:1}.tns-ah{-webkit-transition:height 0s;-moz-transition:height 0s;transition:height 0s}.tns-ovh{overflow:hidden}.tns-visually-hidden{position:absolute;left:-10000em}.tns-transparent{opacity:0;visibility:hidden}.tns-fadeIn{opacity:1;filter:alpha(opacity=100);z-index:0}.tns-normal,.tns-fadeOut{opacity:0;filter:alpha(opacity=0);z-index:-1}.tns-vpfix{white-space:nowrap}.tns-vpfix>div,.tns-vpfix>li{display:inline-block}.tns-t-subp2{margin:0 auto;width:310px;position:relative;height:10px;overflow:hidden}.tns-t-ct{width:2333.3333333%;width:-webkit-calc(100% * 70 / 3);width:-moz-calc(100% * 70 / 3);width:calc(100% * 70 / 3);position:absolute;right:0}.tns-t-ct:after{content:'';display:table;clear:both}.tns-t-ct>div{width:1.4285714%;width:-webkit-calc(100% / 70);width:-moz-calc(100% / 70);width:calc(100% / 70);height:10px;float:left}




/*# sourceMappingURL=/user/themes/project/static/dist/app.c0e5f9db.css.map */