* {
  font-family: "Prompt", serif;
}

p {
  color: var(--font-color);
}
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(--font-color);
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5em;
}
ul li strong {
  font-weight: bold;
}

ol {
  width: 100%;
  padding: 0 0 0 1.2em;
}
ol li {
  color: var(--font-color);
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5em;
}
ol li strong {
  font-weight: bold;
}

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

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

h1.title_h1 {
  color: var(--font-color);
  font-size: 5em;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-align: left;
  line-height: 1.15em;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  h1.title_h1 {
    font-size: 4em;
  }
}
@media (max-width: 500px) {
  h1.title_h1 {
    font-size: 2.5em;
  }
}

h2.title_h2 {
  color: var(--font-color);
  font-size: 2.5em;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-align: left;
  line-height: 1.15em;
  text-transform: uppercase;
}

h3.title_h3 {
  color: var(--font-color);
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.15em;
  text-transform: uppercase;
}

p {
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.2em;
}

.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;
  transition: color 1s ease;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  background-color: var(--background-color);
  overflow: hidden auto;
  transition: background-color 1s ease;
}
@media (max-width: 1500px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  body {
    font-size: 12px;
  }
}
@media (max-width: 1050px) {
  body.fixed_body {
    position: fixed;
    overflow: hidden;
  }
}

p strong {
  font-weight: 700;
}
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;
}
ul li strong {
  font-weight: 700;
}

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

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;
}

:root {
  --main-color: #cc0000;
  --font-color: #252525;
  --button-text-color: #ffffff;
  --background-color: #eeecea;
}

.color_picker {
  bottom: 0;
  right: 0;
  gap: 10px;
  background-color: #252525;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  padding: 10px 20px;
  z-index: 200;
}
.color_picker .color_text {
  font-size: 20px;
  color: #ffffff;
}
.color_picker .color_grid {
  gap: 20px;
}
.color_picker .color_grid .color_item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}
.color_picker .color_grid .color_item.active {
  border: 2px solid #ffffff;
}

.btn {
  width: fit-content;
  height: fit-content;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.3em 1.4em;
  min-width: 125px;
  min-height: 40px;
}
.btn span {
  text-align: center;
  text-transform: uppercase;
  z-index: 5;
}
.btn.square {
  min-width: 10em;
  height: 3.25em;
  background-color: var(--main-color);
  padding: 0.875em;
  box-shadow: 0 5px 15px 0 var(--main-color);
  transition: all 0.3s ease;
}
.btn.square span {
  color: var(--button-text-color);
  font-size: 1.125em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.btn:hover {
  box-shadow: 0 0 0 0 var(--main-color);
}

.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;
  border: 2px solid var(--main-color);
}
.gdpr .custom_checkbox::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
  transform: scale(0);
  transition: all 0.3s ease;
}
.gdpr #gdpr_input:checked ~ .custom_checkbox::after {
  transform: scale(1);
}
.gdpr label {
  width: calc(100% - 20px);
  color: var(--font-color);
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 0 0 0 10px;
}
.gdpr label a {
  color: inherit;
  font-size: 1em;
  font-weight: inherit;
  text-decoration: underline;
}

header {
  width: 100%;
  max-width: 1920px;
  padding: 10px 5em;
  z-index: 220;
}
header .header_logo {
  height: 2em;
  width: 5em;
  color: var(--main-color);
  font-size: 2.375em;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-align: left;
  line-height: 1.15em;
  margin-right: auto;
}
header .header_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .header_nav {
  gap: 2.5em;
}
header .header_nav .nav_item {
  color: var(--main-color);
  font-size: 1.25em;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-align: right;
  text-transform: uppercase;
  cursor: pointer;
}
header .header_nav .nav_item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}
header .header_nav .nav_item:hover::after {
  left: 0;
  width: 100%;
}
header .header_social {
  gap: 1.25em;
  margin-left: 2.5em;
}
header .header_social svg {
  width: 2.5em;
  height: 2.5em;
  object-fit: contain;
}
header .header_social svg path {
  fill: var(--main-color);
}
header .header_social .spotify svg path, header .header_social .spotify svg circle {
  stroke: var(--main-color);
}
header .hamburger {
  width: 45px;
  height: 31px;
}
header .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: var(--main-color);
}
header .hamburger span:nth-child(1) {
  top: 0;
  transition: top 0.25s ease 0.25s, transform 0.25s ease;
}
header .hamburger span:nth-child(2) {
  top: 12px;
  transition: opacity 0.01s ease 0.25s;
}
header .hamburger span:nth-child(3) {
  top: 24px;
  transition: top 0.25s ease 0.25s, transform 0.25s ease;
}
@media (min-width: 1051px) {
  header .hamburger {
    display: none;
  }
}
header .hamburger.open span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
  transition: top 0.25s ease, transform 0.25s ease 0.25s;
}
header .hamburger.open span:nth-child(2) {
  opacity: 0;
  transition: opacity 0.01s ease 0.25s;
}
header .hamburger.open span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
  transition: top 0.25s ease, transform 0.25s ease 0.25s;
}
@media (max-width: 1500px) {
  header {
    padding: 10px 2.5em;
  }
}
@media (max-width: 1050px) {
  header {
    padding: 20px 2.5em;
  }
  header .header_nav {
    display: none;
  }
  header .header_social {
    display: none;
  }
}
@media (max-width: 600px) {
  header {
    padding: 20px 10px;
  }
}

.menu {
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  background-color: var(--background-color);
  transition: all 0.5s ease;
  padding: 10px;
  z-index: 200;
}
.menu.open {
  transform: translateX(0%);
}
.menu .menu_nav {
  gap: 1.75em;
}
.menu .menu_nav .nav_item {
  color: var(--main-color);
  font-size: 1.75em;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-align: right;
  text-transform: uppercase;
}

footer {
  width: 100%;
  max-width: 1920px;
  padding: 0 5em;
}
footer .footer_wrapper {
  width: 100%;
  gap: 5em;
  border-top: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  padding: 5em 0;
}
footer .footer_wrapper .footer_column {
  width: calc(33.3% - 3.33em);
  gap: 1.25em;
}
footer .footer_wrapper .footer_column:last-child {
  align-self: stretch;
  align-items: flex-end;
  justify-content: center;
}
footer .footer_wrapper .footer_column .footer_nav {
  color: var(--font-color);
  font-size: 1.625em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.45em;
  cursor: pointer;
  transition: color 0.3s ease;
}
footer .footer_wrapper .footer_column .footer_nav:hover {
  color: var(--main-color);
}
footer .footer_wrapper .footer_column .footer_title {
  color: var(--font-color);
  font-size: 1.625em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.45em;
}
footer .footer_wrapper .footer_column .footer_text {
  color: var(--font-color);
  font-size: 1.125em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.2em;
}
footer .footer_wrapper .footer_column .footer_link {
  color: var(--font-color);
  font-size: 1.125em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.2em;
  cursor: pointer;
  transition: color 0.3s ease;
}
footer .footer_wrapper .footer_column .footer_link:hover {
  color: var(--main-color);
}
footer .footer_wrapper .footer_column .footer_social {
  gap: 2.5em;
}
footer .footer_wrapper .footer_column .footer_social svg {
  width: 2.5em;
  height: 2.5em;
  object-fit: contain;
}
footer .footer_wrapper .footer_column .footer_social svg path {
  fill: var(--main-color);
}
footer .footer_wrapper .footer_column .footer_social .spotify svg path, footer .footer_wrapper .footer_column .footer_social .spotify svg circle {
  stroke: var(--main-color);
}
footer .copyright {
  width: 100%;
  padding: 2.5em 0;
}
footer .copyright span {
  color: var(--font-color);
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.45em;
  cursor: pointer;
}
footer .copyright span a {
  color: var(--font-color);
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.45em;
  cursor: pointer;
  transition: color 0.3s ease;
}
footer .copyright span a:hover {
  color: var(--main-color);
}
@media (max-width: 1500px) {
  footer {
    padding: 0 2.5em;
  }
}
@media (max-width: 1000px) {
  footer .footer_wrapper {
    flex-wrap: wrap;
  }
  footer .footer_wrapper .footer_column {
    width: calc(50% - 2.5em);
    align-items: flex-start !important;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 0 10px;
  }
  footer .footer_wrapper .footer_column {
    width: 100%;
  }
  footer .footer_wrapper .footer_column:last-child {
    align-items: center !important;
  }
  footer .copyright {
    flex-direction: column;
    gap: 10px;
  }
  footer .copyright span {
    text-align: center;
  }
}

.cookie {
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(100% - 20px);
  max-width: 800px;
  max-height: 80vh;
  background-color: #FFFFFF;
  padding: 1.25em;
  transform: scale(0) translate(-50%, -50%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 500;
  opacity: 0;
  transition: all 0.3s ease;
}
.cookie.visible {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cookie .cookie_title {
  color: #1D0C12;
  font-size: 2.5em;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2em;
}
.cookie .cookie_text {
  width: 100%;
  color: #1D0C12;
  font-size: 1em;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.2em;
  margin-top: 1.25em;
}
.cookie .cookie_text a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
}
.cookie .cookie_container {
  width: 100%;
  display: none;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cookie .cookie_container::-webkit-scrollbar {
  display: none;
}
.cookie .cookie_container .cookie_wrapper {
  width: 100%;
  margin-top: 1.25em;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_item {
  width: 100%;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line {
  width: 100%;
  border-bottom: 1px solid #1D0C12;
  padding-bottom: 1.25em;
  margin-top: 2.5em;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .column {
  width: calc(100% - 5em);
  margin-right: auto;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .column .cookie_subtitle {
  color: #1D0C12;
  font-size: 1.5em;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2em;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .column .cookie_text {
  margin-top: 0.625em;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .cookie_checkbox {
  width: 2.5em;
  height: 1.25em;
  border-radius: 0.625em;
  background-color: #e5e3df;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .cookie_checkbox span {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25em;
  height: 1.25em;
  background-color: #F7F0F3;
  border: 1px solid #e5e3df;
  border-radius: 0.625em;
  transition: all 0.3s ease;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .cookie_checkbox.active {
  background-color: #cc0000;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .cookie_checkbox.active span {
  left: 1.25em;
  border: 1px solid #cc0000;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.5em;
  margin-top: 1.25em;
}
@media (max-width: 600px) {
  .cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub {
    grid-gap: 2.5em 1.25em;
  }
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item {
  width: 100%;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item .cookie_checkbox {
  width: 2.5em;
  height: 1.25em;
  border-radius: 0.625em;
  background-color: #e5e3df;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item .cookie_checkbox span {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25em;
  height: 1.25em;
  background-color: #F7F0F3;
  border: 1px solid #e5e3df;
  border-radius: 0.625em;
  transition: all 0.3s ease;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item .cookie_checkbox.active {
  background-color: #cc0000;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item .cookie_checkbox.active span {
  left: 1.25em;
  border: 1px solid #cc0000;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item .cookie_text {
  color: #1D0C12;
  text-align: center;
  margin-top: 0.625em;
}
.cookie .cookie_bottom {
  width: 100%;
  gap: 2em;
  flex-wrap: wrap;
  margin-top: 1.25em;
}
.cookie .cookie_bottom .btn {
  width: fit-content;
  height: fit-content;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  min-width: 125px;
  min-height: 40px;
  box-shadow: none;
}
.cookie .cookie_bottom .btn span {
  text-align: center;
  z-index: 5;
}
.cookie .cookie_bottom .btn.square {
  min-width: 200px;
  padding: 0.8em 2em;
}
.cookie .cookie_bottom .btn.square span {
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5em;
}
.cookie .cookie_bottom .btn.green {
  background-color: #09A661;
}
.cookie .cookie_bottom .btn::after {
  display: none !important;
}
.cookie .cookie_bottom .cookie_less {
  display: none;
}
.cookie .cookie_bottom .cookie_save {
  display: none;
}
.cookie .cookie_bottom .cookie_accept {
  min-width: 15em;
  padding: 1em;
}
.cookie .cookie_bottom .cookie_accept span {
  font-size: 1em;
}
.cookie .cookie_bottom .cookie_accept::after {
  font-size: 1em;
}
@media (max-width: 500px) {
  .cookie .cookie_bottom .cookie_accept {
    margin-left: auto;
  }
}

.cookie_badge {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: #cc0000;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 5px 10px;
  z-index: 500;
  display: none;
  cursor: pointer;
}
.cookie_badge.visible {
  display: flex;
}

.index {
  width: 100%;
  max-width: 1920px;
  padding: 0 5em;
}
.index .index_header {
  width: 100%;
  margin-bottom: 5em;
}
.index .index_header .index_header_swiper {
  width: 100%;
  border-radius: 0 0 min(12.5vw, 240px) 0;
  overflow: hidden;
}
.index .index_header .index_header_swiper .swiper-slide {
  height: 78vh;
}
.index .index_header .index_header_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index .index_header .index_header_intro {
  left: 1em;
  width: calc(100% - 2em);
  max-width: 550px;
  color: #ffffff;
  font-size: 2em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  z-index: 20;
}
.index .index_about {
  width: 100%;
  gap: 5em;
  margin-bottom: 1.25em;
}
.index .index_about .column {
  width: calc(42% - 2.5em);
  gap: 2.5em;
}
.index .index_about .column .richText {
  width: 100%;
}
.index .index_about .column .btn {
  align-self: flex-end;
}
.index .index_about .image {
  width: calc(58% - 2.5em);
  border-radius: 0 min(12.5vw, 240px) 0 0;
  overflow: hidden;
}
.index .index_about .image img {
  width: 100%;
}
.index .index_video {
  width: 100%;
  max-width: 900px;
  margin: 5em 0;
}
.index .index_video .video_wrapper {
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 1.25em;
  overflow: hidden;
}
.index .index_video .video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index .index_services {
  width: 100%;
  gap: 3.75em;
  margin-bottom: 5em;
}
.index .index_services .index_services_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 5em;
}
.index .index_services .index_services_grid .index_services_item {
  width: 100%;
  overflow: hidden;
}
.index .index_services .index_services_grid .index_services_item img {
  width: 100%;
  border-radius: 1.25em;
  margin-bottom: 1.25em;
}
.index .index_services .index_services_grid .index_services_item svg {
  width: 5em;
  height: 5em;
  object-fit: contain;
  margin-bottom: 5em;
}
.index .index_services .index_services_grid .index_services_item svg path {
  fill: var(--main-color);
}
.index .index_services .index_services_grid .index_services_item p {
  margin-top: 1.1em;
}
.index .index_references {
  width: 100%;
  gap: 3.75em;
  margin-bottom: 5em;
}
.index .index_references .index_references_swiper {
  width: 100vw;
  align-self: center;
  overflow: hidden;
  padding: 0 5em;
}
.index .index_references .index_references_swiper .swiper-slide {
  overflow: hidden;
}
.index .index_references .index_references_swiper .swiper-slide img {
  width: 100%;
  border-radius: 1.25em;
  margin-bottom: 1.25em;
}
.index .index_references .index_references_swiper .swiper-slide h3 {
  color: var(--font-color);
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.2em;
}
.index .index_references .index_references_swiper .swiper-slide p {
  margin: 0.625em 0;
}
.index .index_references .index_references_swiper .swiper-slide .icon_grid {
  width: 100%;
  flex-wrap: wrap;
  gap: 1.25em;
}
.index .index_references .index_references_swiper .swiper-slide .icon_grid a svg {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.index .index_references .index_references_swiper .swiper-slide .icon_grid a svg path {
  fill: var(--main-color);
}
.index .index_references .index_references_swiper .swiper-slide .icon_grid a.spotify svg path, .index .index_references .index_references_swiper .swiper-slide .icon_grid a.spotify svg circle {
  stroke: var(--main-color);
}
.index .index_references .index_references_nav {
  align-self: flex-end;
  gap: 7.5em;
}
.index .index_references .index_references_nav .index_references_prev {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.index .index_references .index_references_nav .index_references_prev svg {
  width: 2.125em;
  height: 1.25em;
  object-fit: contain;
}
.index .index_references .index_references_nav .index_references_prev svg path, .index .index_references .index_references_nav .index_references_prev svg line {
  stroke: var(--main-color);
}
.index .index_references .index_references_nav .index_references_prev.swiper-button-disabled {
  opacity: 0.5;
}
.index .index_references .index_references_nav .index_references_next {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.index .index_references .index_references_nav .index_references_next svg {
  width: 2.125em;
  height: 1.25em;
  object-fit: contain;
}
.index .index_references .index_references_nav .index_references_next svg path, .index .index_references .index_references_nav .index_references_next svg line {
  stroke: var(--main-color);
}
.index .index_references .index_references_nav .index_references_next.swiper-button-disabled {
  opacity: 0.5;
}
.index .index_contact {
  width: 100%;
  gap: 3.75em;
  margin-bottom: 5em;
}
.index .index_contact .index_contact_wrapper {
  width: 100%;
  gap: 5em;
}
.index .index_contact .index_contact_wrapper .map {
  width: calc(56% - 2.5em);
  border-radius: 1.25em;
  overflow: hidden;
}
.index .index_contact .index_contact_wrapper .map img {
  width: 100%;
}
.index .index_contact .index_contact_wrapper .map svg {
  position: absolute;
  width: 6.25em;
  height: 6.25em;
  object-fit: contain;
}
.index .index_contact .index_contact_wrapper .map svg circle {
  fill: var(--main-color);
}
.index .index_contact .index_contact_wrapper .contact_form {
  width: 100%;
  max-width: 600px;
  gap: 1.25em;
}
.index .index_contact .index_contact_wrapper .contact_form .title_h3 {
  margin-bottom: 0.3em;
}
.index .index_contact .index_contact_wrapper .contact_form > input {
  width: 100%;
  font-size: 1.125em;
  color: #ffffff;
  border-radius: 0.55em;
  background-color: var(--main-color);
  padding: 1.1em;
}
.index .index_contact .index_contact_wrapper .contact_form > input::placeholder {
  font-size: 1em;
  color: #ffffff;
  opacity: 0.7;
}
.index .index_contact .index_contact_wrapper .contact_form > textarea {
  width: 100%;
  font-size: 1.125em;
  color: #ffffff;
  border-radius: 0.55em;
  background-color: var(--main-color);
  padding: 1.1em;
  resize: none;
}
.index .index_contact .index_contact_wrapper .contact_form > textarea::placeholder {
  font-size: 1em;
  color: #ffffff;
  opacity: 0.7;
}
.index .index_contact .index_contact_wrapper .contact_form .btn {
  align-self: flex-end;
}
@media (max-width: 1500px) {
  .index {
    padding: 0 2.5em;
  }
  .index .index_references .index_references_swiper {
    padding: 0 2.5em;
  }
}
@media (max-width: 1000px) {
  .index .index_header .index_header_swiper .swiper-slide {
    height: 50vh;
  }
  .index .index_services .index_services_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .index .index_about {
    flex-direction: column;
    margin-bottom: 5em;
  }
  .index .index_about .column {
    width: 100%;
  }
  .index .index_about .image {
    width: 100%;
  }
  .index .index_video {
    margin: 0 0 5em 0;
  }
  .index .index_contact .index_contact_wrapper {
    flex-direction: column;
    margin-bottom: 5em;
  }
  .index .index_contact .index_contact_wrapper .map {
    width: 100%;
  }
  .index .index_contact .index_contact_wrapper .contact_form {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .index .index_services .index_services_grid {
    grid-gap: 5em 2.5em;
  }
}
@media (max-width: 600px) {
  .index {
    padding: 0 10px;
  }
  .index .index_header .index_header_swiper .swiper-slide {
    height: 40vh;
  }
  .index .index_header .index_header_intro {
    left: 10px;
    width: calc(100% - 20px);
  }
  .index .index_about .column .btn {
    align-self: center;
  }
  .index .index_services .index_services_grid {
    grid-template-columns: 100%;
  }
  .index .index_references .index_references_swiper {
    padding: 0 10px;
  }
  .index .index_references .index_references_nav {
    align-self: center;
  }
}

.universalPage {
  width: 100%;
  max-width: 1920px;
  padding: 0 5em;
}
.universalPage h1 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.universalPage .universalMatrix {
  width: 100%;
  max-width: 1920px;
  margin: 2em auto 0 auto;
}
.universalPage .universalMatrix .universalMatrix_elem {
  width: 100%;
  margin-bottom: 7.5em;
}
.universalPage .universalMatrix .universalMatrix_elem.header {
  margin-bottom: 2.5em;
}
.universalPage .universalMatrix .universalMatrix_elem.textImage {
  gap: 2.5em;
}
.universalPage .universalMatrix .universalMatrix_elem.textImage .image {
  width: calc(53% - 1.25em);
  border-radius: 1.25em;
}
.universalPage .universalMatrix .universalMatrix_elem.textImage .richText {
  width: calc(47% - 1.25em);
}
.universalPage .universalMatrix .universalMatrix_elem.textImage.left {
  flex-direction: row-reverse;
}
.universalPage .universalMatrix .universalMatrix_elem.image img {
  width: 100%;
  border-radius: 1.25em;
}
.universalPage .universalMatrix .universalMatrix_elem.table table {
  width: 100%;
}
.universalPage .universalMatrix .universalMatrix_elem.table table tr td {
  padding: 5px 10px;
}
.universalPage .universalMatrix .universalMatrix_elem.table table tr:nth-child(even) td {
  color: var(--button-text-color);
  background-color: var(--main-color);
}
.universalPage .universalMatrix .universalMatrix_elem.tableImage {
  gap: 2.5em;
}
.universalPage .universalMatrix .universalMatrix_elem.tableImage .image {
  width: calc(51% - 1.25em);
  border-radius: 1.25em;
}
.universalPage .universalMatrix .universalMatrix_elem.tableImage table {
  width: calc(49% - 1.25em);
}
.universalPage .universalMatrix .universalMatrix_elem.tableImage table tr td {
  padding: 5px 10px;
}
.universalPage .universalMatrix .universalMatrix_elem.tableImage table tr:nth-child(even) td {
  color: var(--button-text-color);
  background-color: var(--main-color);
}
.universalPage .universalMatrix .universalMatrix_elem.tableImage.left {
  flex-direction: row-reverse;
}
.universalPage .universalMatrix .universalMatrix_elem.video {
  max-width: 900px;
}
.universalPage .universalMatrix .universalMatrix_elem.video video {
  width: 100%;
}
.universalPage .universalMatrix .universalMatrix_elem.youtube {
  max-width: 900px;
}
.universalPage .universalMatrix .universalMatrix_elem.youtube .video_wrapper {
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.universalPage .universalMatrix .universalMatrix_elem.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.universalPage .universalMatrix .universalMatrix_elem.downloads h2 {
  margin-bottom: 0.25em;
}
.universalPage .universalMatrix .universalMatrix_elem.downloads .downloads_item {
  gap: 10px;
  margin-top: 1.25em;
}
.universalPage .universalMatrix .universalMatrix_elem.downloads .downloads_item .icon {
  width: 2.5em;
  height: 2.5em;
  background-image: url("../svg/pdf_icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.universalPage .universalMatrix .universalMatrix_elem.downloads .downloads_item .title {
  color: #A6093D;
  padding: 0 100px 0 0;
}
.universalPage .universalMatrix .universalMatrix_elem.downloads .downloads_item .btn {
  min-width: 8.5em;
  height: 2.5em;
  padding: 5px 10px !important;
}
.universalPage .universalMatrix .universalMatrix_elem.downloads .downloads_item .btn span {
  color: #f9f8f4;
  font-size: 1em;
}
.universalPage .universalMatrix .universalMatrix_elem.gallery {
  width: 100%;
  max-width: 1920px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 1.25em;
}
.universalPage .universalMatrix .universalMatrix_elem.gallery:last-child {
  margin-bottom: 0;
}
.universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_item {
  width: 100%;
  border-radius: 1.25em;
  overflow: hidden;
}
.universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_item img {
  width: 100%;
  transition: all 0.5s ease;
}
.universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 0;
  transition: all 0.5s ease;
}
.universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_item:hover img {
  transform: scale(1.1);
}
.universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_item:hover::after {
  opacity: 0.5;
}
.universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_item.hidden {
  display: none;
}
.universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_item .more {
  width: 100%;
  height: 100%;
}
.universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_item .more .bg {
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 0.5;
}
.universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_item .more span {
  color: var(--button-text-color);
  font-size: 1.5em;
  letter-spacing: 0;
  line-height: 1.2em;
}
@media (max-width: 600px) {
  .universalPage .universalMatrix .universalMatrix_elem.gallery {
    grid-gap: 10px;
  }
}
.universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper {
  width: 100%;
  gap: 1.25em;
}
.universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper .form_column {
  width: calc(50% - 0.625em - 140px);
  align-self: stretch;
  gap: 1.25em;
}
.universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper .form_column input {
  width: 100%;
  border: 2px solid #A6093D;
  border-radius: 20px;
  background-color: #F9F7F4;
  color: #A6093D;
  font-size: max(1.375em, 14px);
  letter-spacing: 0;
  line-height: 1.5em;
  padding: 1em 0.9em;
}
.universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper .form_column textarea {
  width: 100%;
  height: 100%;
  align-self: stretch;
  border: 2px solid #A6093D;
  border-radius: 20px;
  background-color: #F9F7F4;
  color: #A6093D;
  font-size: max(1.375em, 14px);
  letter-spacing: 0;
  line-height: 1.5em;
  resize: none;
  padding: 1em 0.9em;
}
.universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper .form_action {
  width: 280px;
  align-self: stretch;
  gap: 1.25em;
}
.universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper .form_action .btn {
  width: 100%;
}
@media (max-width: 1500px) {
  .universalPage {
    padding: 3.75em 2.5em 0 2.5em;
  }
  .universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_swiper {
    padding: 0 2.5em;
  }
}
@media (max-width: 1000px) {
  .universalPage .universalMatrix .universalMatrix_elem.textImage {
    flex-direction: column-reverse !important;
  }
  .universalPage .universalMatrix .universalMatrix_elem.textImage .image {
    width: 100%;
  }
  .universalPage .universalMatrix .universalMatrix_elem.textImage .richText {
    width: 100%;
  }
  .universalPage .universalMatrix .universalMatrix_elem.tableImage {
    flex-direction: column-reverse !important;
  }
  .universalPage .universalMatrix .universalMatrix_elem.tableImage .image {
    width: 100%;
  }
  .universalPage .universalMatrix .universalMatrix_elem.tableImage table {
    width: 100%;
  }
  .universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper {
    flex-wrap: wrap;
  }
  .universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper .form_column {
    width: calc(50% - 0.625em);
  }
  .universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper .form_action {
    width: calc(50% - 0.625em);
    margin: 0 0 0 auto;
  }
}
@media (max-width: 600px) {
  .universalPage {
    padding: 3.75em 10px 0 10px;
  }
  .universalPage .universalMatrix .universalMatrix_elem {
    margin-bottom: 5em;
  }
  .universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_swiper {
    padding: 0 10px;
  }
  .universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_swiper .swiper-slide {
    gap: 10px;
  }
  .universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_swiper .gallery_nav {
    gap: 8em;
    margin: 2.5em auto 2.5em auto;
  }
  .universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_swiper .gallery_nav .gallery_prev {
    width: 1em;
    height: 2em;
  }
  .universalPage .universalMatrix .universalMatrix_elem.gallery .gallery_swiper .gallery_nav .gallery_next {
    width: 1em;
    height: 2em;
  }
  .universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper .form_column {
    width: 100%;
  }
  .universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper .form_column textarea {
    height: 160px;
  }
  .universalPage .universalMatrix .universalMatrix_elem.form .form_wrapper .form_action {
    width: 100%;
  }
}

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