/*!****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/index.scss ***!
  \****************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap);
/*!********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/index.scss (1) ***!
  \********************************************************************************************************************/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  color: #222222;
  font-weight: 400;
}

h1.left, h2.left, h3.left, h4.left, h5.left, h6.left, p.left, a.left, span.left {
  text-align: left;
}
h1.center, h2.center, h3.center, h4.center, h5.center, h6.center, p.center, a.center, span.center {
  text-align: center;
}
h1.right, h2.right, h3.right, h4.right, h5.right, h6.right, p.right, a.right, span.right {
  text-align: right;
}

h1 {
  font-family: "Anton", sans-serif;
  font-size: 5.5625em;
  font-weight: 400;
}
@media (max-width: 1060px) {
  h1 {
    font-size: 2.875em;
    line-height: 52px;
    /* 116% */
  }
}

h2 {
  font-family: "Anton", sans-serif;
  font-size: 3.125em;
  font-weight: 400;
  line-height: 58px;
  /* 116% */
  text-transform: uppercase;
}
@media (max-width: 1060px) {
  h2 {
    font-size: 2.5em;
    line-height: 52px;
    /* 116% */
  }
}

h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.625em;
}

h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5em;
}

h5 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.25em;
}

b, strong {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

.label {
  color: #e0bcba;
  font-family: "DM Sans";
  font-size: 1.5em;
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes moveInUp {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveInDown {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveInLeft {
  0% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveInRight {
  0% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
}

.noscroll {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.none {
  display: none;
}

.container {
  display: block;
  width: 100%;
}

.row {
  max-width: 1440px;
  display: flex;
  margin: 0 auto;
  padding: 0 162px;
}
.row.full-width {
  max-width: 100%;
}
@media (max-width: 1250px) {
  .row {
    padding: 0 50px;
  }
}
@media (max-width: 1060px) {
  .row {
    padding: 0 30px;
  }
}

.col {
  width: 100%;
}

.col-100 {
  width: 100%;
}

.col-75 {
  width: 75%;
}

.col-50 {
  width: 50%;
}

.col-25 {
  width: 25%;
}

.bg-r {
  background-color: #8a1832;
}

.bg-bl {
  background-color: #222222;
}

.capacity-indicator {
  height: 42px;
  border: 2px solid #222222;
  border-radius: 30px;
  text-decoration: none;
  color: var(--Text-Menu-Text, #222);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  /* 114.286% */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}
.capacity-indicator__circle {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  border: 1px solid #1CD500;
  margin-left: 10px;
}
.capacity-indicator__circle.no-space {
  border: 1px solid #d50000;
}
.capacity-indicator__circle.no-space:after {
  background-color: #d50000;
}
.capacity-indicator__circle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #1CD500;
  border-radius: 6px;
}

.inverted-container .capacity-indicator {
  border: 2px solid #1CD500;
  background-color: #1CD500;
}
.inverted-container .capacity-indicator span {
  color: #fff;
}
.inverted-container .capacity-indicator__circle {
  border-color: #fff;
}
.inverted-container .capacity-indicator__circle:after {
  background-color: #fff;
}
.breadcrumbs {
  background-color: #fff;
  padding: 7px 17px;
  border-radius: 10px;
  height: 22px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans";
  font-size: 12px;
}
.breadcrumbs a {
  color: #222222;
  text-align: center;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 233.333% */
  text-decoration: none;
}
@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 10px;
  }
  .breadcrumbs a {
    font-size: 10px;
  }
}
.breadcrumbs .breadcrumb-sep {
  margin: 0 6px;
  font-weight: 700;
  color: #8a1832;
  /* make the > red */
}

/* When logged in, push header down by the height of the admin bar */
body.admin-bar .main-navigation {
  top: 32px;
  /* default admin bar height on desktop */
}

/* On smaller screens the admin bar is shorter */
@media screen and (max-width: 782px) {
  body.admin-bar .main-navigation {
    top: 46px;
    /* mobile admin bar height */
  }
}
.kaartjestest {
  margin-top: 200px;
}

.pagination {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 8px;
}
.pagination .page-numbers {
  background-color: #ffffff;
  color: #222222;
  height: 48px;
  width: 48px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.pagination .page-numbers.current {
  background-color: #8a1832;
  color: #fff;
}
.pagination .page-numbers.next {
  color: #8a1832;
}

.slick-prev, .slick-next {
  z-index: 3;
  background-color: unset;
  border: none;
  width: 42px;
  height: 42px;
  transition: 0.125s ease-in-out;
  cursor: pointer;
}
.slick-prev:hover, .slick-next:hover {
  transform: scale(1.05);
}

.page-404 {
  padding: 250px 0 200px;
  background-color: #8a1832;
}
.page-404:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(b440d6a7ff9afe7a2ac5.png);
  background-position: center;
}
.page-404 .row {
  position: relative;
  z-index: 3;
}
.page-404 h1 {
  line-height: 1.1;
  color: #fff;
  margin-bottom: 30px;
}
.page-404 p {
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
}
.page-404 p a {
  color: #fff;
}

.language-label {
  position: relative;
  display: flex;
  align-items: center;
  border: 2px solid #222222;
  border-radius: 9999px;
  /* pill shape */
  padding: 6px 16px;
  font-family: sans-serif;
  font-weight: bold;
  width: fit-content;
  margin-right: 24px;
  cursor: pointer;
}
.language-label .triangle {
  margin-left: 3px;
}
.language-label .drop-block.active .submenu {
  display: block;
}
.language-label a {
  text-transform: uppercase;
  text-decoration: none;
  color: #222222;
}
.language-label a.unclickable {
  pointer-events: none;
  cursor: default;
}
.language-label a.submenu {
  position: absolute;
  left: 50%;
  bottom: -5px;
  background-color: #8a1832;
  color: #fff;
  padding: 10px 22px;
  transform: translateX(-50%) translateY(100%);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: none;
}
.lang-item {
  text-decoration: none;
  color: #222222;
  margin-right: 8px;
}

.lang-item.active {
  color: #000;
  /* highlight current */
}

.lang-icon {
  font-size: 14px;
  line-height: 1;
}

.j-poster {
  display: none;
}

.custom-grid {
  list-style-type: none;
  padding-left: 0;
}

.j-linkedin-bg {
  background-color: transparent !important;
}
.j-linkedin-bg:before {
  display: none !important;
}

.feed-item {
  border: none !important;
}
.feed-item .j-image {
  position: relative;
  display: block !important;
  height: 305px !important;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.feed-item .j-image img {
  object-fit: cover !important;
  width: 100%;
  height: 305px !important;
}
.feed-item .j-image:before {
  content: "Update";
  text-transform: uppercase;
  position: absolute;
  left: 22px;
  top: 22px;
  height: 15px;
  padding: 12px;
  background-color: #222222;
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-family: "DM Sans";
  font-weight: 400;
}
.feed-item .j-text {
  position: relative;
  height: 157px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 25px 10px 25px !important;
  border-radius: 0 0 16px 16px !important;
}
.feed-item .j-text .j-message {
  position: relative;
}
.feed-item .j-text .j-message p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.feed-item .j-text:after {
  content: "Lees meer";
  color: #8a1832;
  border-top: 1px solid #C6C6C6;
  padding-top: 10px;
}
.feed-item .j-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 19px;
  border-radius: 19px 19px 0 0;
  transform: translateY(-100%);
  background-color: #fff;
}
.feed-item .j-text .j-meta {
  display: none;
}
.feed-item .j-meta {
  display: none;
}

.j-overlay {
  padding-top: 140px !important;
  background-color: unset !important;
}
.j-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px 19px 0 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  backdrop-filter: blur(4.5px);
}
.j-overlay .j-overlay-content {
  background: transparent !important;
  max-width: 1040px !important;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.47)) drop-shadow(0 48px 48px rgba(0, 0, 0, 0.41)) drop-shadow(0 107px 64px rgba(0, 0, 0, 0.24)) drop-shadow(0 190px 76px rgba(0, 0, 0, 0.07)) drop-shadow(0 297px 83px rgba(0, 0, 0, 0.01)) !important;
}
.j-overlay .j-post-overlay {
  border-radius: 21px;
  overflow: hidden;
  background-color: #fff;
}
.j-overlay .j-overlay-text {
  height: 100%;
  padding: 64px 50px 50px !important;
}
.j-overlay .juicer-button {
  border: none !important;
  background-color: #8a1832 !important;
  height: 42px !important;
  border-radius: 200px !important;
  color: #fff !important;
  padding: 14px 35px 8px !important;
}
.j-overlay .juicer-button:before {
  display: none !important;
}
.j-overlay .j-bottom .juicer-button {
  color: #fff !important;
}

.btn {
  color: #ffffff;
  background-color: black;
  padding: 0.84rem 2.14rem;
  margin: 0.375rem 0;
  text-decoration: none;
  transition: 0.125s ease-in-out;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 200px;
}
.btn:hover {
  background-color: #222222;
}
.btn__red {
  background-color: #8a1832;
  color: #fff;
}
.btn__white {
  background-color: #fff;
  color: #8a1832;
}
.btn__white:hover {
  background-color: #222222;
  color: #fff;
}

header {
  /* When active (menu open) */
}
header .main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  height: 110px;
  display: flex;
  align-items: center;
}
header .main-navigation .row {
  padding: 0 48px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .main-navigation .logo {
  position: relative;
  z-index: 10;
  line-height: 0px;
}
header .main-navigation .logo a {
  display: inline-block;
  line-height: 0px;
}
header .main-navigation .logo img {
  max-width: 202px;
}
@media (max-width: 1050px) {
  header .main-navigation .logo img {
    max-width: 150px;
  }
}
header .main-navigation ul.menu {
  max-width: 670px;
  width: 100%;
  list-style-type: none;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  gap: 46px;
  padding: 0 10px;
}
header .main-navigation ul.menu li {
  position: relative;
  z-index: 2;
  height: 110px;
  display: flex;
  align-items: center;
}
header .main-navigation ul.menu li a {
  text-decoration: none;
  color: var(--Text-Menu-Text, #222);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  /* 114.286% */
}
header .main-navigation ul.menu li.current-menu-item, header .main-navigation ul.menu li.current-menu-parent {
  padding: 12px;
}
header .main-navigation ul.menu li.current-menu-item a, header .main-navigation ul.menu li.current-menu-parent a {
  color: #fff;
}
header .main-navigation ul.menu li.current-menu-item:after, header .main-navigation ul.menu li.current-menu-parent:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #8a1832;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 24px;
  z-index: -1;
  height: 34px;
  transform: translateY(-50%);
}
header .main-navigation ul.menu li.current-menu-item a:not(.sub-menu a):after, header .main-navigation ul.menu li.current-menu-parent a:not(.sub-menu a):after {
  filter: brightness(0) invert(1);
}
header .main-navigation ul.menu li.menu-item-has-children a:not(.sub-menu a) {
  display: flex;
  align-items: center;
}
header .main-navigation ul.menu li.menu-item-has-children a:not(.sub-menu a):after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 4px;
  background-image: url(e657cb41b331036bd63e.png);
  background-size: cover;
  margin-left: 8px;
}
header .main-navigation ul.menu li:hover .sub-menu {
  visibility: visible;
  pointer-events: all !important;
  opacity: 1;
  transform: translateY(90px);
}
header .main-navigation ul.menu li .sub-menu {
  position: absolute;
  padding-left: 0;
  list-style-type: none;
  left: -11px;
  top: 0;
  background-color: #8a1832;
  border-radius: 16px;
  max-width: 303px;
  padding: 23px 23px 23px 0;
  transform: translateY(100px);
  visibility: hidden;
  pointer-events: none !important;
  transition: 0.2s ease;
  opacity: 0;
}
header .main-navigation ul.menu li .sub-menu:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 20px;
  top: -16px;
  width: 36px;
  height: 17px;
  background-image: url(0a702b48a4804fe1b60f.svg);
  background-size: contain;
}
header .main-navigation ul.menu li .sub-menu li {
  height: auto;
  padding-left: 23px;
  padding-bottom: 12px;
}
header .main-navigation ul.menu li .sub-menu li:last-of-type {
  padding-bottom: 0;
}
header .main-navigation ul.menu li .sub-menu li a {
  color: #fff;
}
header .main-navigation__right {
  display: flex;
}
header .main-navigation__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .main-navigation .mobile-menu {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  flex-direction: column;
  padding-top: 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 150px 30px 0;
  transition: 0.3s ease;
}
header .main-navigation .mobile-menu.open {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
header .main-navigation .mobile-menu .menu-header-menu-container {
  display: flex;
  justify-content: center;
}
header .main-navigation .mobile-menu #mobile-menu {
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}
header .main-navigation .mobile-menu #mobile-menu li {
  height: auto;
}
header .main-navigation .mobile-menu #mobile-menu li.current-menu-item, header .main-navigation .mobile-menu #mobile-menu li.current-menu-parent {
  padding: 9px 0px;
}
header .main-navigation .mobile-menu #mobile-menu li.current-menu-item:after, header .main-navigation .mobile-menu #mobile-menu li.current-menu-parent:after {
  display: none;
}
header .main-navigation .mobile-menu #mobile-menu li.current-menu-item a:not(.sub-menu a), header .main-navigation .mobile-menu #mobile-menu li.current-menu-parent a:not(.sub-menu a) {
  color: #8a1832;
}
header .main-navigation .mobile-menu #mobile-menu li.current-menu-item a {
  color: #8a1832;
}
header .main-navigation .mobile-menu #mobile-menu li.menu-item-has-children {
  flex-direction: column;
}
header .main-navigation .mobile-menu #mobile-menu li .sub-menu {
  position: relative;
  background-color: transparent;
  opacity: 1;
  left: 0;
  bottom: 0;
  transform: unset;
  visibility: visible;
  pointer-events: all;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
header .main-navigation .mobile-menu #mobile-menu li .sub-menu li, header .main-navigation .mobile-menu #mobile-menu li .sub-menu a {
  color: #222222;
  padding-left: 0;
  padding-bottom: 0;
}
header .main-navigation .mobile-menu #mobile-menu li .sub-menu li.current-menu-item {
  padding-top: 0;
  color: #8a1832;
}
header .main-navigation .mobile-menu #mobile-menu li .sub-menu li.current-menu-item a {
  padding: 0 12px;
  color: #fff;
}
header .main-navigation .mobile-menu #mobile-menu li .sub-menu li.current-menu-item:after {
  display: block;
}
header .main-navigation .mobile-menu #mobile-menu li .sub-menu:after {
  display: none;
}
header .main-navigation .mobile-menu .mobile-menu__right {
  flex-direction: column-reverse;
  align-items: center;
  gap: 15px;
}
header .main-navigation .menu-toggle {
  position: relative;
  z-index: 10;
  display: none;
}
@media (max-width: 1220px) {
  header .main-navigation ul.menu {
    gap: 15px;
  }
  header .main-navigation .language-label {
    margin-right: 10px;
  }
}
@media (max-width: 1050px) {
  header .main-navigation {
    height: 75px;
  }
  header .main-navigation .row {
    padding: 0 30px !important;
  }
  header .main-navigation .mobile-menu {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
  }
  header .main-navigation .menu-toggle {
    display: flex;
  }
  header .main-navigation #desktop-menu {
    display: none;
  }
  header .main-navigation .desktop__right {
    display: none;
  }
}
header .hamburger {
  position: relative;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
header .hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #222222;
  /* color of the bars */
  border-radius: 2px;
  transition: all 0.3s ease;
}
header .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.footer {
  position: relative;
  background-color: #222222;
  padding-top: 146px;
}
.footer:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(b440d6a7ff9afe7a2ac5.png);
  background-position: center;
}
.footer .row {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer .site-info {
  display: flex;
  justify-content: space-between;
  gap: 104px;
  color: #fff;
}
.footer .site-info .logo {
  margin-bottom: 24px;
}
.footer .site-info h3 {
  color: #fff;
  font-family: "DM Sans";
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  /* 155.556% */
}
.footer .site-info h4 {
  color: #e0bcba;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer .site-info__info {
  max-width: 234px;
}
.footer .site-info__info p {
  font-size: 18px;
}
.footer .site-info__info .socials {
  margin-top: 25px;
  display: flex;
  gap: 5px;
}
.footer .site-info__info .certificates {
  margin-top: 25px;
  display: flex;
  gap: 5px;
}
.footer .site-info__info .certificates ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  gap: 10px;
}
.footer .site-info__info .certificates ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  background-color: #fff;
}
.footer .site-info__contact {
  max-width: 365px;
  width: 100%;
  font-size: 18px;
  line-height: 28px;
}
.footer .site-info__contact ul {
  margin-top: 30px;
  list-style-type: none;
  padding-left: 0;
}
.footer .site-info__contact ul li strong {
  padding-right: 2px;
}
.footer .site-info__menu ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: -15px;
}
.footer .site-info__menu ul li {
  width: 328px;
  border-bottom: 1px solid #fff;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .site-info__menu ul li:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(3ce9f41097561879cc94.svg);
  background-size: contain;
}
.footer .site-info__menu ul li:first-of-type {
  display: none;
}
.footer .site-info__menu ul li:last-of-type {
  border-bottom: unset;
}
.footer .site-info__menu ul li a {
  color: #fff;
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}
.footer .site-info__menu ul li .sub-menu {
  display: none;
}
@media (max-width: 1110px) {
  .footer .site-info {
    gap: 50px;
  }
}
@media (max-width: 1000px) {
  .footer .site-info {
    flex-wrap: wrap;
  }
  .footer .site-info__info {
    order: 3;
    max-width: 100%;
  }
  .footer .site-info__contact {
    order: 2;
  }
  .footer .site-info__menu {
    order: 1;
  }
}
@media (max-width: 850px) {
  .footer .site-info {
    flex-wrap: wrap;
  }
  .footer .site-info__info {
    max-width: 100%;
  }
  .footer .site-info__contact {
    max-width: 100%;
    width: 100%;
  }
  .footer .site-info__menu {
    max-width: 100%;
    width: 100%;
  }
  .footer .site-info__menu li {
    width: 100% !important;
  }
}
.footer__bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  padding-top: 130px;
}
.footer__bottom-bar .menu-footer-menu-container ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
}
.footer__bottom-bar .menu-footer-menu-container ul li {
  position: relative;
  padding: 0 10px;
}
.footer__bottom-bar .menu-footer-menu-container ul li:after {
  content: "";
  height: 50%;
  width: 1px;
  background-color: #e0bcba;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer__bottom-bar .menu-footer-menu-container ul li:last-of-type:after {
  display: none;
}
.footer__bottom-bar .menu-footer-menu-container ul li a {
  color: #e0bcba;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  /* 207.143% */
}
.footer__bottom-bar p {
  color: #e0bcba;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  /* 207.143% */
}
@media (max-width: 850px) {
  .footer__bottom-bar {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.hero {
  position: relative;
  height: 388px;
  margin-top: 78px;
  display: flex;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.hero:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.5) 50%);
}
.hero h1 {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1060px) {
  .hero h1 {
    margin-bottom: 10px;
  }
}
.hero h2 {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 5.5625em;
  font-weight: 400;
  line-height: 90px;
}
@media (max-width: 1060px) {
  .hero h2 {
    margin-bottom: 10px;
    font-size: 3.125em;
    line-height: 52px;
    /* 116% */
  }
}
.hero p {
  color: #fff;
  text-align: center;
}
.hero__content {
  position: relative;
  z-index: 3;
  align-self: flex-end;
  padding-bottom: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero__content {
    padding: 0 30px 17px;
  }
}
.hero__content p {
  max-width: 537px;
  margin-bottom: 28px;
}
.hero__home {
  height: 785px;
}
.hero__home h1 {
  max-width: 690px;
  line-height: 90px;
  margin-bottom: unset;
}
@media (max-width: 1060px) {
  .hero__home h1 {
    line-height: 52px !important;
  }
}
.hero__home h4 {
  color: #e0bcba;
  font-family: "DM Sans";
  font-size: 24px;
  font-weight: 800;
  line-height: 47px;
  text-transform: uppercase;
  margin-top: 19px;
  margin-bottom: 37px;
}
.hero__home:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.32);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1000px) {
  .hero__home {
    height: 600px;
  }
  .hero__home h1 {
    line-height: 53px;
  }
}

.card {
  max-width: 355px;
  width: 100%;
  text-decoration: none;
}
.card:hover .card__bottom {
  filter: drop-shadow(0 4px 14px rgba(27, 26, 26, 0.32)) !important;
}
@media (max-width: 1060px) {
  .card {
    max-width: unset;
  }
}
.card__top {
  padding: 25px;
  position: relative;
  background-color: #8a1832;
  border-radius: 16px 16px 0 0;
  padding-bottom: 29px;
  height: 198px;
  display: flex;
  align-items: flex-end;
}
.card__top .card-label {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: #222222;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 8px 12px;
  text-transform: uppercase;
  border-radius: 25px;
  z-index: 10;
}
.card__top .icon {
  position: absolute;
  right: 0;
  top: 25px;
  right: 25px;
  width: 52px;
  height: 52px;
  background-color: #222222;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__top .icon img {
  filter: brightness(0) invert(1);
}
.card__top h3 {
  color: #fff;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: 29px;
  /* 111.538% */
  list-style-type: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card__bottom {
  position: relative;
  background-color: #fff;
  padding: 0 25px 10px 25px;
  height: 265px;
  filter: drop-shadow(0 4px 24px rgba(27, 26, 26, 0.12));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 16px 16px;
  transition: 0.3s ease;
}
.card__bottom span {
  color: var(--Color, #820924);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}
.card__bottom ul {
  list-style-type: disc;
  padding-left: 20px;
}
.card__bottom li, .card__bottom p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 155.556% */
  color: #222222;
}
.card__bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 19px;
  border-radius: 19px 19px 0 0;
  transform: translateY(-100%);
  background-color: #fff;
}
.card__link {
  padding-top: 10px;
  border-top: 1px solid #C6C6C6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.card.text-card .card-label {
  left: 25px;
  top: 25px;
}
.card.post-card:hover .background-image {
  transform: scale(1.05);
}
.card.post-card .card__top {
  position: relative;
  height: 305px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.card.post-card .card__top .background-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.card.post-card .card__bottom {
  height: 176px;
  padding: 0 10px 10px 25px;
}
.card.post-card .card__bottom h3 {
  font-size: 21px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  /* 133.333% */
  color: #222222;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card.post-card .card__link {
  border-top: unset;
  padding-top: 0;
}
.card.post-card .info {
  display: flex;
  gap: 12px;
}
.card.post-card .info .date {
  text-transform: capitalize;
}
.card.post-card .info span:after {
  content: "";
  width: 2px;
  height: 10px;
  background-color: #E0BCBA;
  display: inline-block;
  margin-left: 12px;
}
.card.post-card .info span:last-of-type:after {
  display: none;
}

.page-single-project .more-row {
  position: relative;
  background-color: #8a1832;
  padding: 133px 0;
}
.page-single-project .more-row:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(b440d6a7ff9afe7a2ac5.png);
  background-position: center;
}
.page-single-project .more-row .other {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 55px;
}
@media (max-width: 1060px) {
  .page-single-project .more-row .other {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 769px) {
  .page-single-project .more-row .other {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-single-project .more-row .row {
  flex-direction: column;
}
.page-single-project .more-row .row h2 {
  color: #fff;
}

.info-block {
  width: 100%;
}
.info-block .row {
  width: 100%;
  padding: 27px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 133px;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 850px) {
  .info-block .row {
    flex-direction: column;
    align-items: center;
  }
}
.info-block .tags .tag {
  background-color: #8a1832;
  padding: 8px 12px;
  color: #fff;
  border-radius: 20px;
}
.info-block .post-info {
  display: flex;
  gap: 12px;
}
.info-block .post-info .date {
  text-transform: capitalize;
}
.info-block .post-info span {
  color: #8a1832;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}
.info-block .post-info span:after {
  content: "";
  width: 2px;
  height: 10px;
  background-color: #E0BCBA;
  display: inline-block;
  margin-left: 12px;
}
.info-block .post-info span:last-of-type:after {
  display: none;
}
@media (max-width: 1060px) {
  .info-block {
    margin-top: 60px;
  }
}

.contact-page {
  padding: 129px 0 137px;
}
.contact-page .row {
  gap: 47px;
}
@media (max-width: 1000px) {
  .contact-page .row {
    flex-direction: column;
  }
}
@media (max-width: 1000px) {
  .contact-page .row .left {
    width: 100%;
  }
  .contact-page .row .right {
    width: 100%;
  }
  .contact-page .row .right .image-container {
    max-width: 100%;
  }
}
.contact-page h2 {
  color: #222222;
  font-size: 50px;
  font-weight: 400;
  line-height: 58px;
  /* 116% */
  text-transform: uppercase;
}
.contact-page p {
  margin-top: 30px;
  max-width: 479px;
  width: 100%;
}
.contact-page h5 {
  color: #8a1832;
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  /* 155.556% */
  text-transform: uppercase;
}
.contact-page .left {
  width: 519px;
}
.contact-page .left .contact-data {
  display: flex;
  gap: 54px;
  line-height: 25px;
  margin-top: 76px;
}
@media (max-width: 850px) {
  .contact-page .left .contact-data {
    flex-direction: column-reverse;
  }
}
.contact-page .left .contact-data__right ul {
  list-style-type: none;
  margin-top: 30px;
}
.contact-page .left .contact-data__left {
  width: 169px;
}
.contact-page .left .contact-data__left h5:last-of-type {
  margin-top: 26px;
}
.contact-page .left .contact-data__left .socials {
  margin-top: 8px;
}
.contact-page .right img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.contact-page .right .image-container {
  max-width: 545px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}

.content-block {
  position: relative;
  z-index: 2;
  display: flex;
}
.content-block.double-column .row {
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 1060px) {
  .content-block.double-column .row {
    flex-direction: column;
  }
  .content-block.double-column .row .content-column:first-of-type {
    padding-bottom: 0;
  }
  .content-block.double-column .row .content-column:last-of-type {
    padding-top: 0;
  }
}
.content-block.single-column .text-block h1, .content-block.single-column .text-block h2, .content-block.single-column .text-block p, .content-block.single-column .text-block ul {
  max-width: 100%;
}
.content-block.single-column .text-block p img {
  max-width: 100%;
  height: auto;
}
.content-block.red, .content-block.black {
  background-color: #8a1832;
}
.content-block.red:after, .content-block.black:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(b440d6a7ff9afe7a2ac5.png);
  background-position: center;
}
.content-block.red h1, .content-block.red h2, .content-block.red p, .content-block.red span, .content-block.red li, .content-block.black h1, .content-block.black h2, .content-block.black p, .content-block.black span, .content-block.black li {
  color: #fff;
}
.content-block.red .icon, .content-block.black .icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(105deg) brightness(98%) contrast(110%);
}
.content-block.red li, .content-block.black li {
  border-color: #fff !important;
}
.content-block.black {
  background-color: #222222;
}

.content-column {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 135px 0;
}
@media (max-width: 1060px) {
  .content-column {
    padding: 80px 0;
  }
}

.text-block {
  display: flex;
  flex-direction: column;
}
.text-block h2, .text-block h1 {
  text-transform: uppercase;
  max-width: 325px;
  margin-bottom: 21px;
}
@media (max-width: 850px) {
  .text-block h2, .text-block h1 {
    word-break: break-word;
  }
}
.text-block h1 {
  color: #222222;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 58px;
  /* 116% */
  text-transform: uppercase;
}
.text-block p, .text-block ul {
  max-width: 430px;
}
.text-block h5, .text-block h4 {
  color: #8a1832;
  text-transform: uppercase;
  font-size: 1.125rem;
}
.text-block .btn {
  align-self: flex-start;
  margin-top: 41px;
}
.text-block ul {
  list-style-position: inside;
}
.text-block .logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 73px;
}
.text-block .logos__container {
  max-width: 260px;
  height: 118px;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-block .logos__container img {
  max-width: 142px;
}
@media (max-width: 1060px) {
  .text-block .logos__container {
    min-width: 260px !important;
  }
}
@media (max-width: 1060px) {
  .text-block {
    align-items: flex-start;
  }
  .text-block h2, .text-block h1 {
    max-width: 100%;
  }
  .text-block p, .text-block ul {
    max-width: 100%;
  }
  .text-block .logos {
    justify-content: center;
  }
}

.expanding ul:not(.expanding__item ul) {
  list-style-type: none;
  padding-left: 0;
  max-width: 545px;
  width: 100%;
  display: block;
}
.expanding ul:not(.expanding__item ul) li {
  border-bottom: 1px solid #222222;
}
@media (max-width: 1060px) {
  .expanding ul:not(.expanding__item ul) {
    max-width: 100%;
  }
}
.expanding__item {
  width: 100%;
}
.expanding__item.active .expanding__item__top .toggle {
  transform: rotate(180deg);
}
.expanding__item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 10px 0;
}
.expanding__item__top div {
  display: flex;
  align-items: center;
}
.expanding__item__top div .icon {
  width: 30px;
  height: 30px;
  margin-right: 13px;
}
.expanding__item__top .toggle {
  width: 24px;
  height: 24px;
  transition: 0.3s ease-in-out;
}
.expanding__item__top span {
  color: #222222;
  font-size: 18px;
  font-weight: 600;
}
.expanding__item__content {
  display: none;
  padding-left: 60px;
  max-height: 0;
  overflow: hidden;
  max-height: none;
  padding-bottom: 20px;
}
.expanding__item__content ul li {
  padding-bottom: 0;
  border-bottom: none !important;
}

.slider {
  max-width: 545px;
  width: 100%;
  aspect-ratio: 1.1/1;
}
.slider.double-column {
  max-width: 545px;
}
@media (max-width: 1060px) {
  .slider.double-column {
    margin-bottom: 80px;
  }
}
.slider .slick-slider {
  max-width: 545px;
  width: 100%;
  aspect-ratio: 1.1/1;
}
.slider .slick-list {
  height: 100%;
}
.slider .slider-list {
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.slider .slider-list .slick-arrow {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: unset;
  border: none;
}
.slider .slider-list .slick-arrow img {
  width: 100%;
}
.slider .slider-list .slick-prev {
  left: calc(50% - 29px);
}
.slider .slider-list .slick-next {
  left: calc(50% + 29px);
}
.slider .slick-track {
  height: 100%;
}
.slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .slick-slide {
  width: 100%;
}

.single-image {
  max-width: 545px;
  width: 100%;
  aspect-ratio: 1.1/1;
}
.single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-image__container {
  width: 100%;
  aspect-ratio: 1.1/1;
  border-radius: 16px;
  overflow: hidden;
}

.post-slider {
  position: relative;
  padding: 135px 0;
}
.post-slider.red {
  background-color: #8a1832;
}
.post-slider.red:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(b440d6a7ff9afe7a2ac5.png);
  background-position: center;
}
.post-slider.red h2, .post-slider.red p {
  color: #fff !important;
}
.post-slider .row {
  width: 100%;
  position: relative;
  z-index: 3;
  flex-direction: column;
}
.post-slider__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.post-slider__top__left {
  width: 50%;
}
.post-slider__top__left div {
  margin-top: 18px;
  max-width: 486px;
}
.post-slider__top__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
}
.post-slider__top__right .btn {
  align-self: flex-end;
  margin: 0;
}
.post-slider__top__right .navigation {
  align-self: flex-end;
  margin-left: 22px;
  display: flex;
  gap: 8px;
}
@media (max-width: 850px) {
  .post-slider__top {
    flex-direction: column;
    gap: 30px;
  }
  .post-slider__top__left {
    width: 100%;
  }
  .post-slider__top__left div {
    max-width: 100%;
  }
  .post-slider__top__right {
    width: 100%;
    justify-content: flex-start;
    justify-content: space-between;
  }
  .post-slider__top__right .btn, .post-slider__top__right .navigation {
    align-self: flex-start;
  }
}
.post-slider__container {
  position: relative;
  z-index: 5;
  margin-top: 70px;
}
.post-slider__posts, .post-slider__updates {
  gap: 25px;
}
.post-slider__posts .slick-slide, .post-slider__updates .slick-slide {
  margin: 0 12.5px;
  /* left + right margin = 25px total between cards */
}
.post-slider__posts .slick-list, .post-slider__updates .slick-list {
  margin: 0 -12.5px;
  /* compensate so outer edges align */
}

.project-overview .row:first-of-type, .services-overview-block .row:first-of-type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.project-overview .row:last-of-type, .services-overview-block .row:last-of-type {
  margin-top: 54px;
}
@media (max-width: 1050px) {
  .project-overview .row:first-of-type, .services-overview-block .row:first-of-type {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-overview .row:last-of-type, .services-overview-block .row:last-of-type {
    margin-top: 30px;
  }
}
@media (max-width: 850px) {
  .project-overview .row:first-of-type, .services-overview-block .row:first-of-type {
    grid-template-columns: repeat(1, 1fr);
  }
  .project-overview .row:last-of-type, .services-overview-block .row:last-of-type {
    margin-top: 30px;
  }
}

.logo-slider {
  position: relative;
  background-color: #8a1832;
  overflow: hidden;
}
.logo-slider:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(b440d6a7ff9afe7a2ac5.png);
  background-position: center;
}
.logo-slider .row {
  position: relative;
  z-index: 3;
  flex-direction: column;
}
@media (max-width: 1250px) {
  .logo-slider .row {
    padding: 0 100px;
  }
  .logo-slider .row .slick-prev {
    transform: translateY(-50%) translateX(calc(-100% - 28px));
  }
  .logo-slider .row .slick-next {
    transform: translateY(-50%) translateX(calc(100% + 28px));
  }
}
.logo-slider h2 {
  color: #fff;
  text-align: center;
}
.logo-slider__logos {
  display: flex;
  margin-top: 59px;
}
.logo-slider .slick-slide {
  margin: 0 14px;
  /* left + right margin = 25px total between cards */
}
.logo-slider .slick-list {
  margin: 0 -14px;
  /* compensate so outer edges align */
}
.logo-slider .slick-prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(calc(-100% - 48px));
}
.logo-slider .slick-next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(calc(100% + 48px));
}
.logo-slider .navigation {
  position: relative;
  max-width: 1116px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-slider__item {
  background-color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 101px;
  padding: 0 20px;
}
.logo-slider__item img {
  max-width: 100%;
  height: auto;
}

.capacity-block .row {
  justify-content: space-between;
  min-height: 868px;
}
@media (max-width: 980px) {
  .capacity-block .row {
    flex-direction: column;
    min-height: unset;
    padding-bottom: 30px;
  }
  .capacity-block .row .left {
    max-width: 100%;
  }
  .capacity-block .row .right {
    flex-direction: column-reverse;
    margin-top: -50px;
  }
  .capacity-block .row .capacity-block__cta {
    max-width: 100%;
    margin-bottom: 50px;
  }
  .capacity-block .row .f-image {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .capacity-block .row .f-image img {
    width: 100%;
  }
  .capacity-block .row .image-one {
    margin-top: 50px;
  }
  .capacity-block .row .image-two {
    display: none;
  }
  .capacity-block .row .image-three {
    position: absolute !important;
    right: 20px !important;
    bottom: -40px !important;
    max-width: 50% !important;
    z-index: 2 !important;
  }
}
.capacity-block .f-image {
  position: absolute;
  box-shadow: 0 325px 91px 0 rgba(0, 0, 0, 0), 0 208px 83px 0 rgba(0, 0, 0, 0.03), 0 117px 70px 0 rgba(0, 0, 0, 0.09), 0 52px 52px 0 rgba(0, 0, 0, 0.16), 0 13px 29px 0 rgba(0, 0, 0, 0.19);
}
.capacity-block .f-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
}
.capacity-block .left {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 338px;
}
.capacity-block .left p {
  margin-top: 19px;
}
.capacity-block .left ul {
  list-style-position: inside;
}
.capacity-block .left ul li {
  line-height: 28px;
}
.capacity-block .left .custom-capacity {
  align-self: flex-start;
  margin-top: 51px;
}
.capacity-block .left .custom-capacity .capacity-indicator.no-space {
  background-color: #d50000;
  border: none;
  color: #fff;
}
.capacity-block .left .custom-capacity .capacity-indicator.no-space .capacity-indicator__circle {
  color: #fff;
  border-color: #fff;
}
.capacity-block .left .custom-capacity .capacity-indicator.no-space .capacity-indicator__circle:after {
  background-color: #fff;
}
.capacity-block .left .custom-capacity .capacity-indicator.has-space {
  background-color: #1CD500;
  border: none;
  color: #fff;
}
.capacity-block .left .custom-capacity .capacity-indicator.has-space .capacity-indicator__circle {
  color: #fff;
  border-color: #fff;
}
.capacity-block .left .custom-capacity .capacity-indicator.has-space .capacity-indicator__circle:after {
  background-color: #fff;
}
.capacity-block .left .image-one {
  bottom: 191px;
  border-radius: 16px;
  max-width: 320px;
  width: 100%;
  aspect-ratio: 1/1;
  z-index: 2;
}
@media (max-width: 980px) {
  .capacity-block .left .image-one {
    max-width: 250px;
  }
}
.capacity-block .left .image-two {
  left: 231px;
  bottom: 0;
  border-radius: 16px;
  max-width: 320px;
  width: 100%;
  aspect-ratio: 1/1;
}
@media (max-width: 1328px) {
  .capacity-block .left .image-two {
    left: 180px;
  }
}
@media (max-width: 1060px) {
  .capacity-block .left .image-two {
    left: 120px;
  }
}
@media (max-width: 980px) {
  .capacity-block .left .image-two {
    max-width: 250px;
  }
}
.capacity-block .right {
  display: flex;
  position: relative;
}
.capacity-block .right .image-three {
  border-radius: 16px;
  width: 545px;
  aspect-ratio: 1/1;
  top: 73px;
  right: 115px;
}
@media (max-width: 1320px) {
  .capacity-block .right .image-three {
    width: 450px;
    top: 150px;
  }
}
@media (max-width: 1060px) {
  .capacity-block .right .image-three {
    width: 350px;
  }
}
.capacity-block .right .image-four {
  border-radius: 16px;
  max-width: 320px;
  width: 100%;
  aspect-ratio: 1/1;
  top: 0;
  right: 0;
}
@media (max-width: 980px) {
  .capacity-block .right .image-four {
    max-width: 250px;
  }
}
.capacity-block__cta {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  max-width: 433px;
  background-color: #8a1832;
  border-radius: 16px;
  padding: 128px 54px 54px;
  color: #fff;
}
.capacity-block__cta .btn {
  align-self: flex-start;
  margin-top: 37px;
}

.features-and-video {
  background-color: #222222;
}
.features-and-video:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(b440d6a7ff9afe7a2ac5.png);
  background-position: center;
}
.features-and-video .row {
  position: relative;
  z-index: 3;
  flex-direction: column !important;
}
.features-and-video .btn__red:hover {
  background-color: #fff !important;
  color: #222222 !important;
}
.features-and-video__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  border-bottom: 1px solid #fff;
  padding-bottom: 73px;
}
.features-and-video__top .left {
  display: flex;
  flex-direction: column;
}
.features-and-video__top .right {
  display: flex;
  align-items: flex-end;
  max-width: 585px;
  width: 100%;
}
.features-and-video__top h2, .features-and-video__top p {
  color: #fff;
}
.features-and-video__top h2 {
  max-width: 326px;
}
.features-and-video__top p {
  max-width: 462px;
  margin-top: 30px;
}
.features-and-video__top .specialties ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
}
.features-and-video__top .specialties li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  gap: 30px;
}
.features-and-video__top .specialties li h5 {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
  /* 157.143% */
  text-transform: uppercase;
}
.features-and-video__top .specialties .icon-block {
  background-color: #8a1832;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 105px;
}
.features-and-video__top .specialties .icon-block img {
  max-width: 63px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(105deg) brightness(98%) contrast(110%);
}
@media (max-width: 850px) {
  .features-and-video__top .specialties .icon-block {
    width: 80px;
    height: 80px;
  }
}
.features-and-video__top .title-label {
  text-transform: uppercase;
  color: #e0bcba;
  font-family: "DM Sans";
  font-size: 24px;
  font-weight: 800;
  line-height: 47px;
}
.features-and-video__top .btn {
  margin-top: 41px;
  align-self: flex-start;
}
@media (max-width: 1060px) {
  .features-and-video__top {
    flex-direction: column;
    gap: 100px;
  }
  .features-and-video__top h2 {
    max-width: 100%;
  }
  .features-and-video__top p {
    max-width: 100%;
  }
  .features-and-video__top .right {
    max-width: 100%;
  }
}
@media (max-width: 850px) {
  .features-and-video__top .specialties ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .features-and-video__top .specialties ul li {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .features-and-video__top .specialties ul li h5 {
    text-align: left;
  }
}
.features-and-video__bottom {
  padding-top: 77px;
}
.features-and-video__bottom .properties ul {
  display: flex;
  justify-content: space-between;
}
.features-and-video__bottom .properties li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #fff;
  padding: 0 48px;
}
.features-and-video__bottom .properties li:last-child {
  border-right: none;
}
.features-and-video__bottom .properties li .value {
  color: #fff;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 80px;
  /* 160% */
}
.features-and-video__bottom .properties li p {
  color: #fff;
  padding-top: 7px;
  max-width: 214px;
}
@media (max-width: 900px) {
  .features-and-video__bottom .properties ul {
    flex-direction: column;
    gap: 30px;
  }
  .features-and-video__bottom .properties ul li {
    flex-direction: row;
    align-items: center;
    width: 100%;
    text-align: left;
    gap: 35px;
    border-right: none;
  }
  .features-and-video__bottom .properties ul li p {
    border-left: 1px solid #fff;
    padding-left: 35px;
  }
  .features-and-video__bottom .properties ul li .value {
    line-height: 58px;
  }
}
.features-and-video__bottom .video {
  position: relative;
  margin-top: 68px;
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.features-and-video__bottom .video .thumbnail {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: 0.3s ease-in-out;
}
.features-and-video__bottom .video .playbutton {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.35s ease-in-out;
  transform-origin: center center;
  cursor: pointer;
}
.features-and-video__bottom .video .playbutton:hover {
  transform: translate(-50%, -50%) scale(0.8);
}
.features-and-video__bottom .video .playbutton:hover .bubble {
  transform: scale(1.4);
}
.features-and-video__bottom .video .bubble {
  position: relative;
  z-index: 5;
  transition: 0.35s ease-in-out;
  transform-origin: 50% 50%;
}
.features-and-video__bottom .video .letters {
  position: relative;
  z-index: 4;
  animation: rotate 20s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.features-and-video__bottom .video iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
/*!***************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/slick-carousel/slick/slick.scss ***!
  \***************************************************************************************************************************************/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
