.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}
.absolute.top {
  top: 0;
}
.absolute.bottom {
  bottom: 0;
}
.absolute.left {
  left: 0;
}
.absolute.right {
  right: 0;
}

.flex {
  display: flex;
}
.flex.align_center {
  align-items: center;
}
.flex.align_start {
  align-items: flex-start;
}
.flex.align_end {
  align-items: flex-end;
}
.flex.justify_start {
  justify-content: flex-start;
}
.flex.justify_center {
  justify-content: center;
}
.flex.justify_end {
  justify-content: flex-end;
}
.flex.space_between {
  justify-content: space-between;
}
.flex.space_evenly {
  justify-content: space-evenly;
}

.flex_column {
  display: flex;
  flex-direction: column;
}
.flex_column.align_center {
  align-items: center;
}
.flex_column.align_start {
  align-items: flex-start;
}
.flex_column.align_end {
  align-items: flex-end;
}
.flex_column.justify_start {
  justify-content: flex-start;
}
.flex_column.justify_center {
  justify-content: center;
}
.flex_column.justify_end {
  justify-content: flex-end;
}
.flex_column.space_between {
  justify-content: space-between;
}
.flex_column.space_evenly {
  justify-content: space-evenly;
}

.overflow {
  overflow: hidden;
}

.uppercase {
  text-transform: uppercase;
}

.hidden {
  display: none;
}

.pointer {
  cursor: pointer;
}

a {
  color: #000000;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

button {
  border: none;
  background: transparent;
}

.line {
  display: block;
}
.line.vertical {
  width: 1px;
}
.line.vertical.strong {
  width: 2px;
}
.line.horizontal {
  height: 1px;
}
.line.horizontal.strong {
  height: 2px;
}

* {
  position: relative;
  box-sizing: border-box;
  font-weight: 400;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  background-color: var(--background-color-dark);
  overflow: hidden auto;
}
@media (max-width: 1500px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  body {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  body.fixed_body {
    position: fixed;
    overflow: hidden;
  }
}

p strong {
  font-weight: bold;
}
p blockquote {
  font-style: italic;
}

span {
  display: block;
}

ul {
  width: 100%;
  list-style: disc outside;
  padding: 0 0 0 1.2em;
}
ul li {
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5em;
  margin: 0 !important;
}
ul li strong {
  font-weight: bold;
}

ol {
  width: 100%;
  padding: 0 0 0 1.2em;
}
ol li {
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5em;
  margin: 0 !important;
}
ol li strong {
  font-weight: bold;
}

input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  border: none;
}

section.subpage {
  min-height: 50vh;
}

.fancybox-navigation .fancybox-button {
  top: calc(50vh - 50px) !important;
}

.richText * {
  margin-bottom: 1em;
}
.richText *:last-child {
  margin-bottom: 0;
}
.richText figure {
  width: 100%;
  max-width: 1000px;
}
.richText figure img {
  width: 100%;
}

#email2 {
  display: none;
}

* {
  font-family: "Space Grotesk", sans-serif;
}

h1.title_h1 {
  width: 100%;
  font-size: 1em;
  padding: 0 1.875em 0 0.8125em;
}
h1.title_h1 span {
  color: var(--text-color-light);
  font-size: 20px;
  line-height: 2em;
  font-weight: 700;
  text-transform: uppercase;
}
h1.title_h1 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.65em;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--main-color);
  border-radius: 50%;
}
h1.title_h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.875em;
  height: 1px;
  background-image: url("../svg/title_line.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
h1.title_h1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.875em;
  height: 1.875em;
  background-image: url("../svg/title_plus.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

h2.title_h2 {
  width: 100%;
  font-size: 1em;
  padding: 0 1.875em 0 0.8125em;
}
h2.title_h2 span {
  color: var(--text-color-light);
  font-size: 20px;
  line-height: 2em;
  font-weight: 700;
  text-transform: uppercase;
}
h2.title_h2 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.65em;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--main-color);
  border-radius: 50%;
}
h2.title_h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.875em;
  height: 1px;
  background-image: url("../svg/title_line.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
h2.title_h2::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.875em;
  height: 1.875em;
  background-image: url("../svg/title_plus.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
h2.subtitle_h2 {
  color: var(--text-color-light);
  font-size: 4.375em;
  line-height: 1.08em;
  font-weight: 300;
}
@media (max-width: 1100px) {
  h2.subtitle_h2 {
    font-size: 3.75em;
  }
}
@media (max-width: 600px) {
  h2.subtitle_h2 {
    font-size: 2.75em;
  }
}

p {
  color: var(--text-color-light);
  font-size: 1.25em;
  line-height: 1.75em;
  font-weight: 300;
}
p strong {
  font-weight: bold;
}
p blockquote {
  font-style: italic;
}
p a {
  color: inherit !important;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6em;
  text-decoration: none !important;
}
p a:hover {
  text-decoration: underline !important;
}

span {
  display: block;
}

ul {
  width: 100%;
  list-style: disc outside;
  padding: 0 0 0 1.2em;
}
ul li {
  color: var(--text-color-light);
  font-size: 1.25em;
  line-height: 1.75em;
  font-weight: 300;
}
ul li strong {
  font-weight: bold;
}

ol {
  width: 100%;
  padding: 0 0 0 1.2em;
}
ol li {
  color: var(--text-color-light);
  font-size: 1.25em;
  line-height: 1.75em;
  font-weight: 300;
}
ol li strong {
  font-weight: bold;
}

input, textarea, select {
  background-color: transparent;
  border-radius: 0;
}

.richText * {
  color: var(--text-color-light);
  margin-bottom: 1em;
}
.richText *:last-child {
  margin-bottom: 0;
}
.richText figure {
  width: 100%;
  max-width: 1000px;
}
.richText figure img {
  width: 100%;
}

:root {
  --main-color: #D8282C;
  --text-color-light: #F6F6F6;
  --text-color-dark: #161616;
  --background-color-light: #F6F6F6;
  --background-color-dark: #161616;
  --background-color-button: #222222;
}

.gdpr #gdpr_input {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.gdpr .custom_checkbox {
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #161616;
  border: 1px solid var(--main-color);
  border-radius: 4px;
}
.gdpr .custom_checkbox::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: all 0.3s ease;
  background-color: var(--main-color);
}
.gdpr #gdpr_input:checked ~ .custom_checkbox::after {
  transform: scale(1);
}
.gdpr label {
  width: calc(100% - 20px);
  color: var(--text-color-light);
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 0 0 0 10px;
}
.gdpr label a {
  color: var(--main-color);
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
}

.btn {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn span {
  text-align: center;
  z-index: 5;
}
.btn.square {
  background-color: var(--background-color-button);
  border-radius: 0.625em;
  padding: 1.25em;
  overflow: hidden;
}
.btn.square span {
  color: var(--text-color-light);
  font-size: 0.8125em;
  text-transform: uppercase;
}
.btn.square svg {
  width: 1.5em;
  height: 1.5em;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 5;
}
.btn.square::after {
  content: "";
  position: absolute;
  bottom: -0.3em;
  right: -0.3em;
  background-color: var(--main-color);
  width: 1em;
  height: 1em;
  border-radius: 50%;
  transition: all 0.3s ease 0.15s;
}
.btn.square.animate_text {
  gap: 0;
}
.btn.square.animate_text span {
  width: 0;
  opacity: 0;
  text-transform: lowercase;
  transition: width 0.3s ease 0.15s, opacity 0.15s ease;
}
@media (min-width: 1200px) {
  .btn.square:hover::after {
    transform: scale(30);
    transition: all 0.5s ease;
  }
  .btn.square:hover.animate_text {
    gap: 1.25em;
  }
  .btn.square:hover.animate_text span {
    width: 7.69em;
    opacity: 1;
    transition: width 0.3s ease, opacity 0.15s ease 0.3s;
  }
}

header {
  width: 100%;
  max-width: 1920px;
  padding: 3.125em;
  z-index: 250;
}
header.subpage_header {
  position: relative;
}
header .header_logo {
  width: 6.5em;
  height: 2.8125em;
}
header .header_logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header_nav {
  gap: 2.5em;
  margin: 0 auto;
}
header .header_nav .nav_item {
  color: var(--text-color-light);
  font-size: 0.875em;
  text-transform: uppercase;
  transition: color 0.5s ease;
}
header .header_nav .nav_item::after {
  content: "";
  position: absolute;
  top: -15px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
  border-radius: 50%;
  transform: translateY(-50px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.1s ease 0.3s;
}
header .header_nav .nav_item.active {
  color: var(--main-color);
}
header .header_nav .nav_item.active::after {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 1200px) {
  header .header_nav .nav_item:hover {
    color: var(--main-color);
  }
  header .header_nav .nav_item:hover::after {
    transform: translateY(0);
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
}
header .header_contact {
  gap: 0.625em;
}
header .header_contact .btn {
  height: 3em;
  padding: 0.625em 1.25em;
}
header .hamburger {
  width: 40px;
  height: 20px;
  display: none;
}
header .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--main-color);
}
header .hamburger span:nth-child(1) {
  top: 0;
  transition: top 0.15s ease 0.15s, transform 0.15s ease;
}
header .hamburger span:nth-child(2) {
  top: 8px;
  transition: opacity 0.15s ease 0.15s;
}
header .hamburger span:nth-child(3) {
  top: 16px;
  transition: top 0.15s ease 0.15s, transform 0.15s ease;
}
header .hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
  transition: top 0.15s ease, transform 0.15s ease 0.15s;
}
header .hamburger.open span:nth-child(2) {
  opacity: 0;
  transition: opacity 0.15s ease;
}
header .hamburger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
  transition: top 0.15s ease, transform 0.15s ease 0.15s;
}
@media (max-width: 1000px) {
  header .header_nav {
    display: none;
  }
  header .header_contact {
    margin: 0 3.125em 0 auto;
  }
  header .hamburger {
    display: block;
  }
}
@media (max-width: 600px) {
  header {
    padding: 20px 16px;
  }
  header .header_logo {
    margin: 0 auto 0 0;
  }
  header .header_contact {
    display: none;
  }
}

.menu {
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  background-color: var(--background-color-dark);
  transition: all 0.5s ease;
  padding: 10px;
  z-index: 200;
}
.menu.open {
  transform: translateX(0%);
}
.menu .menu_nav {
  gap: 1.5em;
}
.menu .menu_nav .nav_item {
  color: var(--text-color-light);
  font-size: 1.75em;
  text-transform: uppercase;
}

footer {
  margin-top: auto;
  width: 100%;
  background-color: var(--background-color-button);
  padding: 0 1.25em;
}
footer .footer_content {
  width: 100%;
  gap: 2.5em;
  flex-wrap: wrap;
  border-bottom: 1px solid #575757;
  padding: 2.5em 0;
}
footer .footer_content .footer_logo {
  height: 6.25em;
}
footer .footer_content .footer_logo svg {
  height: 100%;
}
footer .footer_content .footer_nav {
  gap: 1.875em;
  margin: 0 auto;
}
footer .footer_content .footer_nav .nav_item {
  color: var(--text-color-light);
  font-size: 0.875em;
  font-weight: 400;
  text-transform: uppercase;
}
footer .footer_content .footer_nav .line {
  height: auto;
  width: 1px;
  align-self: stretch;
  background-color: #575757;
}
footer .footer_content .footer_contact {
  gap: 1.875em;
}
footer .footer_content .footer_contact .footer_link {
  gap: 1em;
  color: var(--text-color-light);
  font-size: 0.875em;
  font-weight: 400;
}
footer .footer_content .footer_contact .footer_link svg {
  width: 1.5em;
  height: 1.5em;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
footer .footer_content .footer_contact .line {
  height: auto;
  width: 1px;
  align-self: stretch;
  background-color: #575757;
}
footer .footer_content .footer_contact .footer_social {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.25em;
}
footer .footer_content .footer_contact .footer_social a svg {
  width: 1.5em;
  height: 1.5em;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
footer .copyright {
  width: 100%;
  padding: 2.5em 0;
}
footer .copyright span {
  color: var(--text-color-light);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
footer .copyright span a {
  color: var(--text-color-light);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}
footer .copyright a {
  color: var(--text-color-light);
}
@media (max-width: 1780px) {
  footer .footer_logo {
    margin: 0 auto;
  }
  footer .footer_nav {
    justify-content: center;
    width: 100%;
  }
  footer .footer_contact {
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  footer .footer_logo {
    margin: 0 auto;
  }
  footer .footer_nav {
    flex-direction: column;
  }
  footer .footer_nav .line {
    display: none;
  }
  footer .footer_contact {
    flex-direction: column;
  }
  footer .footer_contact .line {
    display: none;
  }
}
@media (max-width: 700px) {
  footer .copyright {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

.popup_form {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 1520px;
  max-height: 90vh;
  gap: 1.875em;
  align-self: center;
  background-color: #222222;
  border-radius: 0.625em;
  padding: 2.5em;
  overflow-y: scroll;
  z-index: 300;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.3s ease;
}
.popup_form.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.popup_form .form_close {
  top: 0.625em;
  right: 0.625em;
  width: 2.5em;
}
.popup_form .form_close svg {
  width: 100%;
}
.popup_form .form_title {
  color: var(--text-color-light);
  font-size: 1.875em;
  line-height: 1.08em;
  font-weight: 300;
  text-align: center;
}
.popup_form .form_grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1.875em;
}
.popup_form .form_grid .form_input {
  width: 100%;
  gap: 0.625em;
}
.popup_form .form_grid .form_input label {
  color: var(--text-color-light);
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5em;
}
.popup_form .form_grid .form_input input {
  width: 100%;
  color: var(--text-color-light);
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.25em;
  background-color: #161616;
  border: 1px solid var(--main-color);
  border-radius: 0.625em;
  padding: 0.83em;
}
.popup_form .form_message {
  width: 100%;
  gap: 0.625em;
}
.popup_form .form_message label {
  color: var(--text-color-light);
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5em;
}
.popup_form .form_message textarea {
  width: 100%;
  color: var(--text-color-light);
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.25em;
  background-color: #161616;
  border: 1px solid var(--main-color);
  border-radius: 0.625em;
  padding: 0.83em;
  resize: none;
}
.popup_form .gdpr {
  align-self: flex-start;
}
.popup_form .btn {
  align-self: flex-end;
  background-color: #161616;
}

@media (max-width: 1000px) {
  .popup_form {
    padding: 2.5em 1.25em;
  }
}
@media (max-width: 700px) {
  .popup_form .form_grid {
    grid-template-columns: 100%;
  }
}
@media (max-width: 600px) {
  .popup_form {
    width: 100%;
    padding: 4em 16px 2.5em 16px;
  }
  .popup_form .btn {
    width: 100%;
    height: 75px;
  }
  .popup_form .btn span {
    font-size: 16px;
  }
}/*# sourceMappingURL=critical.css.map */