/*--------------------------------------------------------------
TABLE OF CONTENTS:
----------------------------------------------------------------
0.0 Resets
1.0 Typography
2.0 Basic
3.0 Forms
4.0 Basic layout
	4.1 Header
	4.2 Content
	4.3 Footer
5.0 Navigation
	5.1 Top Navigation
	5.2 Main Navigation
	5.3 Social Navigation
	5.4 Footer Navigation
	etc.
6.0 Homepage
7.0 Overview page
8.0 Article page
9.0 Custom pages
	9.1 Custom page X
	9.2 Custom page Y
	9.3 Custom page Z
	etc.
10.0 Media Queries
	10.1 Large desktop
	10.2 Portrait tablet to landscape and desktop
	10.3 Landscape phone to portrait tablet
	10.4 Landscape phones and down
--------------------------------------------------------------*/
@import url('all.min.css');

/*--------------------------------------------------------------
0.0 Resets
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
/*--------------------------------------------------------------
1.0 Typography
--------------------------------------------------------------*/
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url(../webfonts/NHaasGroteskDSPro-55Rg.woff2);
  font-weight: 400;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url(../webfonts/NHaasGroteskDSPro-65Md.woff2);
  font-weight: 500;
}

@font-face {
  font-family: 'Rollerscript Rough';
  src: url(../webfonts/Rollerscript-Rough.woff2);
  font-weight: 400;
}


/*--------------------------------------------------------------
2.0 Basic elements
--------------------------------------------------------------*/
html {
  scrollbar-gutter: stable;
}

:root {
  --main-text: #303845;
  --main-color: #00FDC0;
  --main-white: #F0EEE2;
  --main-green: #A1A995;
  --main-red: #AE7B6A;
  --box-shadow: 0px 2px 80px rgb(124 0 52 / 10%);
  --action-height: 35px;
}

body {
  font-family: 'Neue Haas Grotesk Display Pro';
  font-weight: 400;
  color: var(--main-white);
  background-color: var(--main-text);
  background-image: url("../images/bg-shape.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 180vw auto;
  background-attachment: fixed;
  line-height: 32px;
  padding-top: 200px;
}

a {
  text-decoration: none;
  color: var(--main-color);
  display: inline-block;
  transition: all .3s;
}

.btn {
  color: var(--main-text);
  padding: 12px 20px;
  background: var(--main-color);
  border-radius: 0 50px 50px 0;
  border: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
}

.btn:hover {
  background: #00dda9;
  color: var(--main-text);
}

.btn img {
  height: 26px;
  width: auto;
}

.btn.line {
  background: none;
  border: 1px solid var(--main-white);
  color: var(--main-white);
}

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

h1, h2 {
  font-size: 46px;
  margin-bottom: 30px;
}

h3 {
  margin-bottom: 14px;
}

p {
  font-size: 18px;
}

strong {
  font-weight: 500;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

section {
  padding: 100px 0;
}

.section-title {
  padding-bottom: 30px;
}

.section-title p {
  margin-bottom: 0;
}

.form-control {
  border-radius: 0;
}

.form-control:focus {
  color: var(--main-text);
  border-color: var(--main-color);
  box-shadow: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*--------------------------------------------------------------
3.0 Forms
--------------------------------------------------------------*/
label {
  font-size: 15px;
  margin-bottom: 4px;
}

.form-control {
  padding: 15px 12px;
}

.input-info-icon {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-47%);
    cursor: pointer;
    font-size: 15px;
    z-index: 5;
}


/*--------------------------------------------------------------
4.0 Basic layout
--------------------------------------------------------------*/

/* Basis lay-out, toepasbaar op alle pagina's. Uitzonderingen in bijv. content komen later in het document. */


/*------------------------------
4.1 Header
------------------------------*/
header {
  position: absolute;
  padding: 35px 0;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  transition: all .3s;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  animation: slideDown 0.4s ease-out forwards;
  background: var(--main-text);
  padding: 15px 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

header .logo.big {
  width: 600px;
}

header.sticky .logo.big {
  display: none;
}

header .logo.small {
  display: none;
  width: 185px;
}

header.sticky .logo.small {
  display: block;
}

header .top {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}

header.sticky .top {
  display: none;
}

header .top .search input {
  background: none;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 10px 0;
  color: #fff;
  display: none;
}

header .top .search.active input {
  display: block;
}

header .top .search input::placeholder {
  color: #fff;
}

header .top .search button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
}

header .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}

header.sticky .menu {
  margin-top: 15px;
}

header .menu li a {
  font-size: 20px;
  text-transform: uppercase;
  color: #F0EEE2;
    margin-bottom: 5px;
}

header .menu li a:hover {
  color: var(--main-color);
}

header .menu li a.dropdown {
  padding-bottom: 20px;
  margin-bottom: -20px;
  cursor: pointer;
}

header .menu li a.dropdown:after {
  content: '\f078';
  font-family: 'Font Awesome 7 Pro';
  margin-left: 8px;
  font-size: 16px;
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
header .menu li a {
  position: relative;
  font-style: normal;
}

h1 em svg,
h2 em svg,
h3 em svg,
h4 em svg,
h5 em svg,
h6 em svg,
header .menu > li > a svg {
  position: absolute;
  width: 100%;
  height: 18px;
  left: 0;
  bottom: -12px;
}

header .menu > li > a svg {
  width: calc(100% - 25px);
  display: none;
  filter: brightness(0) saturate(100%) invert(85%) sepia(6%) saturate(7019%) hue-rotate(102deg) brightness(94%) contrast(112%);
  bottom: unset;
  top: 30px;
}

header .menu li a:hover svg {
  display: block;
}

header .drop-menu {
  display: none;
  position: absolute;
  top: 165px;
  left: 0;
  width: 100%;
  height: calc(100vh - 165px);
  background: var(--main-text);
  overflow: hidden;
}

header.sticky .drop-menu {
  top: 90px;
  height: calc(100vh - 90px);
}

body.no-scroll {
  overflow-y: hidden;
}

header .drop-menu.active {
  display: block;
}

header:has(.drop-menu.active) {
  background: var(--main-text);
}

header .drop-menu .container,
header .drop-menu .row,
header .drop-menu .col-lg-7,
header .drop-menu .col-lg-5 {
  height: 100%;
}

header .row {
  position: relative;
  z-index: 1;
}

header .drop-menu .col-lg-7 {
  display: flex;
}

#header .dropdown .col-lg-5 {
  position: relative;
  z-index: 2;
}

header .drop-menu .blocks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  position: relative;
  margin-top: 70px;
}

header .drop-menu .block-wrapper {
  display: flex;
  /**flex: 0 0 calc(50% - 50px);*/
  gap: 20px;
  align-items: flex-start;
  font-size: 16px;
  align-self: flex-start;
}

header .drop-menu .block-wrapper img {
  width: 40px;
  filter: brightness(0) saturate(100%) invert(94%) sepia(19%) saturate(110%) hue-rotate(0deg) brightness(102%) contrast(88%);
  position: relative;
  top: -20px;
  height: 40px;
  width: 40px;
}

header .drop-menu .block-wrapper h4 {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
    margin-bottom: 20px;
}

header .drop-menu .block-wrapper a {
    text-transform: unset;
    font-size: 17px;

}

header .drop-menu .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 0;
  font-size: 19px;
  color: var(--main-text);
  background: #A1A995;
  z-index: 0;
  text-transform: uppercase;
}

/*------------------------------
4.2 Content
------------------------------*/



/*------------------------------
4.3 Footer
------------------------------*/
#newsletter {
  padding: 0;
}

#newsletter .wrapper {
  padding: 100px 0;
  background-image: url(../images/newsletter-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#newsletter h2 {
  margin-bottom: 50px;
}

#newsletter form input {
  margin-bottom: 18px;
  border-radius: 0;
  border: 1px solid #707070;
  background-color: rgba(240, 238, 226, .8);
}

#newsletter form input::placeholder {
  color: var(--main-text);
}

#newsletter form .form-check-input {
  margin-top: 7px;
}

#newsletter button {
  margin-left: auto;
  margin-top: 14px;
}

#reviews .row {
  align-items: center;
}

#reviews .col-lg-5 {
  text-align: center;
}

#reviews .subtitle {
  position: relative;
  margin: 0 auto;
}

#reviews .subtitle .arrow {
  rotate: -68deg;
}

#reviews .google {
  margin-top: 30px;
}

#reviews .google .amount {
  font-size: 22px;
  margin-bottom: 14px;
}

#reviews .google .wrapper {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

#reviews .google .stars {
  display: flex;
  gap: 18px;
}

#reviews .google .stars i {
  display: flex;
  gap: 5px;
  font-size: 32px;
  color: #FBBC23;
}

#reviews .google img {
  height: 32px;
  width: auto;
}

#reviews .swiper {
  max-width: 600px;
  margin: 0 auto;
}

#reviews .swiper-wrapper {
  padding: 0;
}

#reviews .quote-wrapper {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  padding: 50px 80px 0 80px;
  line-height: 50px;
}

#reviews .quote-start,
#reviews .quote-end {
  font-size: 100px;
  font-weight: 500;
  color: var(--main-color);
  position: absolute;
}

#reviews .quote-start {
  margin-left: -50px;
  margin-top: 10px;
}

#reviews .quote-end {
  margin-left: 10px;
  margin-top: 40px;
}

#reviews .name {
  text-align: center;
  font-size: 19px;
  margin-top: 14px;
}

#partners {
  padding-top: 0;
}

#partners h2 {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}

#partners .swiper-wrapper {
  padding: 0;
}

#partners .swiper-slide {
  text-align: center;
  padding-right: 35px;
  border-right: 1px solid var(--main-white);
  display: grid;
  place-items: center;
  height: auto;
}

#partners img {
  width: 100%;
  max-height: 86px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

footer {
  background: #232734;
  color: #fff;
  font-size: 18px;
}

footer .logo {
  width: 200px;
  margin: 0 auto 40px;
  display: block;
}

footer .footer-top {
  padding: 70px 0 15px;
}

footer .wrapper {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  text-transform: uppercase;
}

footer a {
  color: #fff;
  display: block;
}

footer a:hover {
  color: var(--main-color);
}

footer a i {
  margin-right: 8px;
}

footer .social-links {
  display: flex;
  flex-wrap: wrap;
}

footer .social-links i {
  height: 40px;
  width: 40px;
  background: var(--main-white);
  color: var(--main-text);
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 22px;
  transition: all .3s;
}

footer .social-links a:hover i {
  background: var(--main-color);
  color: var(--main-white);
}

footer .ctas {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

footer .ctas .friend {
  display: flex;
  gap: 30px;
}

footer .ctas .friend .subtitle {
  position: relative;
  font-size: 30px;
  flex-direction: row;
  line-height: 36px;
}

footer .ctas .friend .subtitle .arrow {
  transform: scale(-1, 1);
  max-height: 80px;
  rotate: -50deg;
}

footer .ctas .btn {
  align-self: flex-end;
}

footer .bottom ul {
  border-top: 1px solid #707070;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 25px 0;
  margin-top: 45px;
}

/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
#slider {
  padding: 0;
  position: relative;
  height: calc(100vh - 126px);
}

#slider .swiper-wrapper {
  padding: 0;
}

#slider .img {
  height: 100%;
  position: relative;
}

#slider .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

#slider img {
  height: 100%;
  object-fit: cover;
}

#slider .content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

#slider p {
  font-size: 20px;
  margin-bottom: 35px;
}

#slider .swiper-button-next {
  bottom: 0;
  top: unset;
}

#slider .swiper-button-prev {
  bottom: 0;
  top: unset;
  right: 45px;
  left: unset;
}

#slider .swiper-pagination {
  bottom: 1.5% !important;
}

#slider .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}

#related .row {
  --bs-gutter-y: 1.5rem;
}

#related a {
  position: relative;
}

#related .img {
  overflow: hidden;
}

#related a:hover {
  opacity: 1;
}

#related .img img {
  transition: all .5s ease-out;
}

#related a:hover img {
  scale: 1.1;
}

#related .title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 50px 15px 15px 15px;
  text-align: center;
  background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,0.0) 100%);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

#usps {
  text-align: center;
}

#usps .top {
  margin-bottom: 60px;
}

#usps .usp {
  box-shadow: var(--box-shadow);
  padding: 0 25px 25px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#usps .usp i {
  height: 70px;
  width: 70px;
  background: var(--main-color);
  color: #fff;
  display: grid;
  place-content: center;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 45px;
  transform: translateY(-35px);
}

#usps .usp h5 {
  margin-top: -15px;
}

#usps .usp .btn {
  margin-top: auto;
  align-self: center;
}

#banner {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0;
  min-height: 300px;
  text-align: center;
}

#banner img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#banner .text {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
  padding: 80px 0;
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, .4)
}

#banner .text h2 {
  margin-bottom: 0;
}

body:has(#home-intro) {
  padding-top: 0;
}

#home-intro {
  background-image: url(../images/home-intro-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 300px 0 100px;
}

#home-intro .swiper-wrapper {
  padding: 0 0 50px;
}

#home-intro .swiper-slide {
  height: auto;
}

#home-intro .item {
  padding: 42px;
  background: var(--main-white);
  color: var(--main-text);
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0 100px 0 0;
  overflow: hidden;
  height: 100%;
}

#home-intro .item.green {
  background: var(--main-green);
}

#home-intro .item.red {
  background: var(--main-red);
}

#home-intro .item .date {
  font-size: 20px;
  margin-bottom: 10px;
}

#home-intro .item h2 {
  margin-bottom: 20px;
  margin-top: 40px;
}

#home-intro .item:has(.date) h2 {
  margin-top: 0;
}

#home-intro .item p {
  margin-bottom: 20px;
}

#home-intro:has(.icon) p {
  padding-right: 80px;
}

#home-intro .item .btn {
  border-color: var(--main-text);
  color: var(--main-text);
  margin-top: auto;
}

#home-intro .item:has(.img) .btn {
  border-color: var(--main-white);
  color: var(--main-white);
  margin-top: unset;
}

#home-intro .item .icon {
  position: absolute;
  width: 120px;
  bottom: 10px;
  right: 10px;
}

#home-intro .item:has(.img) {
  background: none;
  color: var(--main-white);
  justify-content: flex-end;
}

#home-intro .item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

#home-intro .item .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,rgba(48, 56, 69, 0) 0%, rgba(48, 56, 69, 0.52) 50%, rgba(48, 56, 69, 1) 100%);
}

#home-intro .item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-intro .swiper-scrollbar {
  height: 2px;
  background: var(--main-white);
  bottom: 10px;
  width: 100%;
  position: relative;
}

#home-intro .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--main-color);
  height: 8px !important;
  top: -3px;
}

.subtitle {
  font-family: 'Rollerscript Rough';
  font-size: 50px;
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  line-height: 55px;
  rotate: -6deg;
  width: fit-content;
}

.subtitle .arrow {
  max-height: 130px;
  width: auto;
  position: relative;
}

#home-featured {
  padding-top: 200px;
}

#home-featured .container {
  position: relative;
}

#home-featured .subtitle {
  left: 5%;
  top: -140px;
  flex-direction: row-reverse;
}

#home-featured .subtitle .arrow {
  top: 75px;
}

#home-featured .item {
  position: relative;
  height: 100%;
  padding: 45px 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 0 0 0 100px;
  overflow: hidden;
}
#home-featured .item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

#home-featured .item .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,rgba(48, 56, 69, .4) 0%, rgba(48, 56, 69, 0.52) 50%, rgba(48, 56, 69, 1) 100%);
}

#home-featured .item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-featured .item .date {
  font-size: 20px;
}

#home-featured .item h2 {
  margin: 10px 0 20px;
}

#home-featured .ticket {
  padding: 65px 65px 35px 35px;
  border-radius: 0 100px 0 0;
  background: var(--main-red);
}

#home-featured .ticket h2 {
  margin-bottom: 20px;
}


#home-featured .ticket .btn {
  background: none;
  border: 1px solid var(--main-white);
  color: var(--main-white);
  margin-top: 40px;
}

#home-featured .ticket .btn img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(19%) saturate(110%) hue-rotate(0deg) brightness(102%) contrast(88%);
}

#home-sliders {
  padding-top: 120px;
}

#home-sliders .container {
  position: relative;
}

#home-sliders .subtitle {
  rotate: 5deg;
  left: 19%;
  top: -150px;
}

#home-sliders .subtitle .arrow {
  height: 70px;
}

#home-sliders .swiper-wrapper {
  padding: 0 !important;
}

#home-sliders .swiper-pagination {
  bottom: unset !important;
  top: 0;
  text-align: left;
}

#home-sliders .swiper-slide {
  height: unset;
}

#home-sliders .swiper,
#home-sliders .news,
#home-sliders .events,
#home-sliders .swiper-wrapper {
  height: 100%;
}

#home-sliders .news {
  padding: 35px;
  border-radius: 0 100px 0 0;
  background: var(--main-white);
  color: var(--main-text);
}

#home-sliders .news .swiper-pagination .swiper-pagination-bullet {
  background: var(--main-text);
}

#home-sliders .item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#home-sliders .label {
  padding: 12px 30px;
  background: var(--main-text);
  border-radius: 0 50px 50px 0;
  color: var(--main-white);
  width: fit-content;
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 60px;
  margin-bottom: 20px;
}

#home-sliders .date {
  font-size: 20px;
  margin-bottom: 20px;
}

#home-sliders h2 {
  margin-bottom: 40px;
}

#home-sliders .news .btn {
  border-color: var(--main-text);
  color: var(--main-text);
}

#home-sliders .btn {
  margin-top: auto;
}

#home-sliders .events {
  border-radius: 0 100px 0 0;
  overflow: hidden;
}

#home-sliders .events .swiper-pagination {
  top: 35px;
  left: 35px;
}

#home-sliders .events .item {
  padding: 35px;
}

#home-sliders .events .item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

#home-sliders .events .item .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .55);
}

#home-sliders .events .item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-sliders .events .label {
  background: var(--main-red);
}

#home-sliders .events .item h2 {
  max-width: 50%;
}

#home-video .container {
  position: relative;
}

#home-video .subtitle {
  right: 12px;
  top: -100px;
}

#home-video .subtitle .arrow {
  transform: scale(-1, 1);
}

#home-video h2 {
  text-align: center;
  margin-bottom: 100px;
}

#home-video .text {
  padding-right: 90px;
}

#home-video .text h2 {
  margin-bottom: 30px;
  text-align: left;
}

#home-video .text .btn {
  margin-top: 30px;
  text-align: left;
}

#home-video .thumbnail {
  position: relative;
}

#home-video .thumbnail .img {
  position: relative;
}

#home-video .thumbnail .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .55);
}

#home-video .thumbnail .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 110px;
}

#home-video .thumbnail .pictogram {
  left: 55%;
  top: -60px;
  width: 100px;
  z-index: 1;
  position: absolute;
}

#home-video .thumbnail .mic {
  left: -80px;
  bottom: -110px;
  width: 245px;
  z-index: 1;
  position: absolute;
  transform: scale(-1, 1);
}

#faq {
  padding-top: 200px;
}

#faq .container {
  position: relative;
}

#faq .subtitle {
  top: -140px;
  left: 6%;
}

#faq .subtitle .arrow {
  rotate: 306deg;
  height: 120px;
}

#faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

#faq .accordion-item {
  border: none;
  margin-bottom: 10px;
  color: var(--main-white);
  border-radius: 0 30px 0 0;
  background: none;
  overflow: hidden;
}

#faq .accordion-item .accordion-body {
  padding: 30px 30px 20px 30px;
  font-weight: 400;
  background: #232734;
}

#faq button {
  color: var(--main-white);
  font-size: 25px;
  padding: 0;
  box-shadow: none !important;
  padding: 30px;
  background: #232734;
}

#faq button[aria-expanded="true"] {
  background: var(--main-color);
  color: var(--main-text);
}

#faq button:after {
  content: "\f078";
  font-family: 'Font Awesome 7 Pro';
  font-size: 25px;
  background-image: none;
}

#faq button[aria-expanded="true"]:after {
  color: var(--main-text);
}

/*--------------------------------------------------------------
7.0 Overview
--------------------------------------------------------------*/
#overview article {
    background: #fff;
    box-shadow: var(--box-shadow);
    margin-top: 24px;
}

#overview article .details {
  padding: 25px;
}

#overview article .details h5 {
  color: var(--main-color);
}

#overview article .details .btn {
  margin-top: 25px;
}

#events {
  padding-top: 50px;
}

#events .col-lg-4 {
  margin-top: 24px;
}

.event {
  border-radius: 0 100px 0 0;
  overflow: hidden;
  position: relative;
  min-height: 540px;
  padding: 70px 35px 35px 35px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  color: #fff;
}

.event:has(.logo) {
  background: var(--main-white);
  color: var(--main-text);
}

.event .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.event .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(48, 56, 69, .4) 0%, rgba(48, 56, 69, 0.52) 50%, rgba(48, 56, 69, 1) 100%);
}

.event .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.event .label {
  padding: 12px 30px;
  background: var(--main-red);
  border-radius: 0 50px 50px 0;
  color: var(--main-white);
  width: fit-content;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 20px;
}

.event .logo {
  filter: brightness(0) saturate(100%) invert(94%) sepia(4%) saturate(401%) hue-rotate(16deg) brightness(96%) contrast(84%);
}

.event h2 {
  font-weight: 500;
  margin-bottom: 0;
}

.event .date {
  margin-top: auto;
  font-size: 18px;
  margin-bottom: -10px;
}

.event:has(.logo) .btn {
  color: var(--main-text);
  border-color: var(--main-text);
}

#events-related {
  padding-top: 0;
}

#events-related.article {
  padding-top: 50px;
}

#events-related .swiper-wrapper {
  padding: 25px 0 70px;
}

#events-related .swiper-slide {
  height: auto;
}

#events-related .swiper-button-next,
#events-related .swiper-button-prev {
  top: unset;
  bottom: 0;
}

#events-related .swiper-button-prev {
  left: unset !important;
  right: 70px;
}


/*--------------------------------------------------------------
8.0 Article page
--------------------------------------------------------------*/
#breadcrumbs {
  padding: 30px 0 0;
}

#breadcrumbs.article {
  padding-bottom: 0;
  margin-bottom: -30px;
}

#breadcrumbs ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#breadcrumbs ul li {
  position: relative;
  padding-right: 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #AEB0AC;
}

#breadcrumbs ul li:last-of-type {
  font-weight: 500;
  padding-right: 0;
}

#breadcrumbs ul li:not(:last-child):after {
  content: "\f054";
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  right: 12px;
  top: 1px;
  position: absolute;
  font-size: 12px;
}

#breadcrumbs ul li a {
  color: #AEB0AC;
}

.content {
  padding: 50px 0;
}

#text-image .text >*:last-child,
#text-video .text >*:last-child,
#text-slider .text >*:last-child {
  margin-bottom: 0;
}

#text-image.img-right .row,
#text-video.right .row,
#text-slider.right .row {
  flex-direction: row-reverse;
}

#text-image.img-top .row,
#text-image.img-bottom .row,
#text-video.top .row,
#text-video.bottom .row,
#text-slider.top .row,
#text-slider.bottom .row {
  flex-direction: column;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 3rem;
}

#text-image.img-top .col-lg-6,
#text-image.img-bottom .col-lg-6,
#text-video.top .col-lg-6,
#text-video.bottom .col-lg-6,
#text-slider.top .col-lg-6,
#text-slider.bottom .col-lg-6 {
  width: 100%;
}

#text-image.img-bottom .row,
#text-video.bottom .row,
#text-slider.bottom .row {
  flex-direction: column-reverse;
}

#text-image img {
  max-width: 540px;
  border-radius: 80px 0 0 0;
}

#text-image.img-top img,
#text-image.img-bottom img {
  max-width: 100%;
}

#text-image.img-top,
#text-image.img-bottom,
#text-video.top,
#text-video.bottom,
#text-slider.top,
#text-slider.bottom {
  max-width: 900px;
  margin: 0 auto;
}

#text-image.img-right img {
  margin-left: auto;
  display: block;
}

#text-image .img:has(.title) {
  position: relative;
}

#text-image .title {
  font-size: 30px;
  font-weight: 500;
  border-radius: 0 30px 0 0;
  padding: 50px;
  background: var(--main-red);
  max-width: 350px;
  position: absolute;
  right: 50px;
  bottom: 30px;
}

.swiper-wrapper {
  padding: 25px 0 35px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--main-white);
  background: var(--main-text);
  border: 1px solid var(--main-white);
  height: 45px;
  width: 45px;
  font-size: 22px;
  display: grid;
  place-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after,
.swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}

.swiper-button-next {
  right: 0 !important;
}

.swiper-button-prev {
  left: 0 !important;
}

.swiper-pagination {
  bottom: -10px !important;
}

.swiper-pagination-bullet {
  background: var(--main-white);
  width: 19px;
  height: 19px;
  border-radius: 0;
}

#gallery .row .col-12:not(:last-of-type) {
  margin-bottom: 24px;
}

#carousel .swiper-wrapper,
#carousel .swiper-slide {
  height: fit-content;
}

.content ul,
.content ol {
  margin-bottom: 16px;
}

.content ol {
  padding-left: 0;
}

.content ul li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
}

.content ol li {
  list-style: decimal;
  list-style-position: inside;

}

.content ul li:not(:last-child),
.content ol li:not(:last-child) {
  margin-bottom: 5px;
}

.content ul li:after {
  content: "\f111";
  font-family: 'Font Awesome 7 Pro';
  font-weight: 700;
  font-size: 6px;
  position: absolute;
  color: var(--main-white);
  left: 0;
  top: 0;
}

.content table {
  display: block;
  overflow-x: auto;
  overflow-y: auto;
  margin-bottom: 30px;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 300px);
  height: auto !important;
  border: 1px solid #fff;
}

/* Define scrollbar size */
.content table::-webkit-scrollbar {
  width: 8px;
  height: 8px; 
}

.content table::-webkit-scrollbar-track {
  background: #b1d5e3;
  border-radius: 7px;
}

.content table::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 7px;
}

.content table::-webkit-scrollbar-button {
  display: none;
}

.content tbody tr:first-of-type {
  position: sticky;
  top: 0;
  background: #303845;
  z-index: 2;
}

.content table td {
  padding: 8px;
}

.content table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
}

#cta {
  text-align: center;
}

#cta .btns {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.form-checkboxes {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkboxes input {
  margin-top: 5px;
}

#tickets .text {
  max-width: 1400px;
}

#tickets h3:nth-of-type(2) {
  margin-top: 40px;
  margin-bottom: 24px;
}

#contact-hours .tel,
#contact-hours .mail {
  color: var(--main-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#contact-hours .tel:hover,
#contact-hours .mail:hover {
  color: var(--main-color);
}

#contact-hours .follow-us {
  margin-top: 90px;
  position: relative;
}

#contact-hours .subtitle {
  flex-direction: row-reverse;
  rotate: 6deg;
  top: -170px;
  right: 60px;
}

#contact-hours .subtitle .arrow {
  rotate: 26deg;
  right: 42px;
  top: 30px;
}

footer .social-links {
  display: flex;
  flex-wrap: wrap;
}

#contact-hours .follow-us .social-links i {
  height: 40px;
  width: 40px;
  background: var(--main-white);
  color: var(--main-text);
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 22px;
  transition: all .3s;
  margin-right: 8px;
}

#contact-hours .follow-us .social-links a:hover i {
  background: var(--main-color);
  color: var(--main-white);
}

#contact-hours table {
  border: none;
}

#contact-hours table:not(:last-of-type) {
  margin-bottom: 30px;
}

#contact-hours table td {
  padding: 2px 0;
  font-size: 18px;
}

#contact-hours table tr td:first-of-type {
  padding-right: 30px;
}

#contact-hours table tr td:last-of-type {
  font-weight: 500;
}

#contact-hours button {
  background: none;
  color: var(--main-white);
  font-weight: 500;
  border: none;
  margin-top: 10px;
  font-size: 18px;
}

#contact-hours button i {
  margin-left: 8px;
}

#contact-hours button .view-less {
  display: none;
}

#contact-hours button.active .view-less {
  display: block;
}

#contact-hours button.active .view-more {
  display: none;
}

/*--------------------------------------------------------------
9.0 Custom pages
--------------------------------------------------------------*/


/*------------------------------
9.1 Basic
------------------------------*/
#banner.page {
  height: 40vh;
  position: relative;
}

#banner.page .content {
  text-align: center;
}

/*------------------------------
9.2 Search
------------------------------*/
#search-results {
  padding-top: 0;
}

#search-top {
	padding: 30px 0 70px;
	text-align: center;
}

#search-top h1 {
	font-size: 40px;
	font-weight: 400;
}

#search-top h1 span {
	color: var(--main-color);
}

#search-top .search {
	max-width: 750px;
	margin: 30px auto 0;
}

#search-top .search p {
	font-size: 18px;
	margin-bottom: 15px;
}

#search-top .search .form-control {
	background: #F7F7F7;
  border: none;
}

#search-top .search button {
    background: #F7F7F7;
    border: none;
    padding-right: 15px;
    padding-left: 15px;
}

#search-results article {
  background: #232734;
  box-shadow: var(--box-shadow);
  margin-top: 24px;
}

#search-results article .details {
  padding: 25px;
}

#search-results article .details h5 {
  color: var(--main-white);
}

#search-results article .details .btn {
  margin-top: 25px;
}

/*--------------------------------------------------------------
9.3 Error
--------------------------------------------------------------*/
#error {
	min-height: calc(100vh - 185px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(35,35,34,0.35) 100%);
}

#error .wrapper {
	display: flex;
	align-items: center;
}

#error .wrapper > div {
	flex: 0 0 50%;
	width: 50%;
}

#error .content {
	text-align: right;
}

#error .content h1 {
	font-size: 60px;
	font-weight: 400;
	margin-bottom: 14px;
}

#error .content p {
	font-size: 25px;
}

#error .content .cta {
	margin-top: 100px;
	text-align: right;
}

#error .content .cta p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444444;
    max-width: 360px;
    margin-left: auto;
}

#error .img {
	padding-left: 80px;
}

#error .img img {
	max-height: 60vh;
}

/*--------------------------------------------------------------
9.3 Products
--------------------------------------------------------------*/
#products .categories h4 {
  margin-bottom: 15px;
}
#products .categories ul li > ul {
  display: none;
  margin-left: 20px;
}

#products .categories ul li.active {
  margin-bottom: 15px;
}

#products .categories ul li.active > a {
  color: var(--main-color);
  font-weight: 400;
}

#products .categories ul li.active li.active {
  margin-bottom: 0;
}

#products .categories ul li.active li.active a {
  font-weight: 400;
}

#products .categories ul li.active > ul {
  display: block;
}

#products .categories a {
  color: var(--main-text);
  padding: 3px 0;
}

#products .price-range {
  position: relative;
  height: 44px;
}

#products .price-range .track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e9ecef;
  transform: translateY(-50%);
}

#products .price-range .range-fill {
  position: absolute;
  top: 50%;
  height: 6px;
  border-radius: 999px;
  background: var(--main-color);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

#products .price-range input[type="range"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 44px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

#products .price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 5px solid var(--main-color);
  cursor: pointer;
}

#products .price-range input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--main-color);
  border: none;
  cursor: pointer;
}

#products .range-min { z-index: 3; }
#products .range-max { z-index: 4; }

#products .products .col-lg-4:not(:last-child) {
  margin-bottom: 24px;
}

.product {
  box-shadow: var(--box-shadow);
  background: #fff;
}

.product a:hover {
  opacity: 1;
}

.product .title {
  padding: 15px;
  font-weight: 500;
  font-size: 20px;
  color: var(--main-text);
}

.product a:hover .title {
  color: var(--main-color);
}

.product .product-image-container {
  position: relative;
}

.product .product-image-container .discount {
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--main-color);
  color: white;
  padding: 5px;
}

.product-link .product .product-image-container .variants {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: white;
  color: black;
  padding: 5px;
  display: none;
}

.product-link:hover .product .product-image-container .variants {
  display: block;
}

.product .product-price-container {
  padding: 0 0 15px 15px;
  display: flex;
  align-items: left;
}

.product .product-price-container span {
  margin-right: 10px;
}

#products .products .pagination svg {
  width: 20px;
}

#products .products .pagination nav div:first-child {
  display: none;
}

.product-gallery{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: stretch;
}

.product-thumbs{
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.product-thumbs_btn{
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  padding: 8px 0;
  line-height: 1;
}

.product-thumbs_viewport{
  overflow: auto;
  min-height: 0;
  padding: 10px;
}

.product-thumbs_viewport{
  scroll-behavior: smooth;
}

.product-thumbs_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-thumb{
  width: 100%;
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  display: block;
}

.product-thumb img{
  width: 100%;
  height: auto;
  display: block;
}

.product-thumb.is-active{
  border-color: #111;
}

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

.product-main img{
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}

.related-preview:hover {
  border: 5px solid var(--main-color);
}

.price {
  font-size: 24px;
  font-weight: 400;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 12px; /* ruimte tussen qty en button */
}

/* wrapper bepaalt de breedte */
.product-actions {
    display: inline-block;
}

/* select volgt exact de breedte van de buttons */
.product-actions .form-select {
    width: 100%;
}

/* spacing onder variant select */
.variant-select-wrapper {
    margin-bottom: 12px;
}

/* action row */
.add-to-cart-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* quantity */
.quantity-stepper {
    display: inline-flex;
    align-items: stretch;
}

.qty-btn,
.qty-input {
    height: var(--action-height);
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ced4da;
    background: #f8f9fa;
    font-size: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* quantity input */
.qty-input {
    width: 50px;
    height: 35px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ced4da;
    border-left: 0;
    border-right: 0;
}

/* buttons */
.add-to-cart-btn,
.btn-favorite {
    height: var(--action-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* favorite button */
.btn-favorite {
    width: var(--action-height);
    padding: 0;
    border: 1px solid #ced4da;
    color: black;
    background: #f8f9fa;
}

/* 🔥 pixel-perfect heart centering */
.btn-favorite i {
    display: block;
    font-size: 18px;
    transform: translateY(0.5px);
    margin-left: 0px;
}

.accordion-collapse p:last-of-type {
  margin-bottom: 0;
}

.related img.active {
  border: 5px solid var(--main-color);
}

/*--------------------------------------------------------------
9.4 Shoppingcart
--------------------------------------------------------------*/

#shoppingcart .product-list{
  margin-bottom: 0;
}

#shoppingcart .product-list img {
  max-width: 100px;
}

#shoppingcart .product-list td {
  vertical-align: top;
}

#shoppingcart .product-list td.image {
  width: 100px;
}

#shoppingcart .product-list td.info {
  width: 50%;
  padding-top: 15px;
}

#shoppingcart .product-list td.edit {
  width: 140px;
}

#shoppingcart .product-list td.edit .text-muted {
  font-size: .8em;
}

#shoppingcart .product-list td.remove {
  width: 25px;
  padding-top: 13px;
}

/* buttons */
/* favorite button */
.btn-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: black;
  background: none;
}

/* 🔥 pixel-perfect heart centering */
.btn-remove i {
  display: block;
  font-size: 16px;
  margin-left: 0px;
}

#shoppingcart .product-list td.subtotal {
  padding-top: 15px;
}

#shoppingcart .cart-summary-sticky {
  position: sticky;
  top: 100px; /* adjust based on header height */
  background: #f3f3f3;
}

#shoppingcart .cart-summary-sticky .image-wrapper {
  position: relative;
  float:left;
  width: 50px;
  margin-right: 15px;
  border: 1px solid rgba(0,0,0,.08);
}

#shoppingcart .cart-summary-sticky .image-wrapper .qty {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  font-size: 12px;
  padding: 2px;
  font-weight: bold;
  text-align: center;
  background: var(--main-color);
  color: white;
}

#shoppingcart .payment-logo {
  width: auto;
  height: 35px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .08);
}

#shoppingcart .card-header {
  background: #f3f3f3;
  border-bottom: none;
}

/*--------------------------------------------------------------
10.0 Media Queries
--------------------------------------------------------------*/

/*------------------------------
10.1 Large desktop
------------------------------*/
@media (min-width: 1250px) {
  .container {
    max-width: 1250px;
  }
}

@media (min-width: 1450px) {
  .container {
    max-width: 1450px;
  }
}

@media (min-width: 1650px) {
  .container {
    max-width: 1650px;
  }
}

@media (max-width: 1500px) {
  h1, h2 {
    font-size: 36px;
  }
  header .logo.big {
    width: 400px;
  }
  header .logo.small {
    width: 150px;
  }
  header .menu {
    gap: 30px;
  }
  header .menu li a {
    font-size: 17px;
  }
  header .drop-menu {
    top: 165px;
    height: calc(100vh - 165px);
  }
  header.sticky .drop-menu {
    top: 120px;
    height: calc(100vh - 120px);
  }
  #home-intro {
    padding: 200px 0 100px;
  }
  #home-intro .item .icon {
    width: 80px;
  }
  #home-intro:has(.icon) p {
    padding-right: 50px;
  }
  .subtitle {
    font-size: 40px;
  }
  .subtitle .arrow {
    height: 100px;
  }
  #home-video .subtitle {
    top: -140px;
  }
  #home-video .thumbnail .pictogram {
    left: 55%;
    top: -50px;
    width: 80px;
  }
  #home-video .thumbnail .play-btn {
    width: 80px;
  }
  #home-video .thumbnail .mic {
    left: -40px;
    bottom: -50px;
    width: 125px;
  }
  #breadcrumbs.article {
    margin-bottom: 0;
  }
  #text-image .title {
    font-size: 25px;
    max-width: 350px;
  }
  #reviews .quote-wrapper {
    font-size: 25px;
    line-height: 38px;
  }
  #reviews .quote-start, #reviews .quote-end {
    font-size: 70px;
  }
  #reviews .quote-start {
    margin-left: -35px;
    margin-top: 5px;
  }
  #reviews .quote-end {
    margin-left: 8px;
    margin-top: 30px;
  }
}



/*------------------------------
10.2 Portrait tablet to landscape and desktop
------------------------------*/
@media (min-width: 768px) and (max-width: 979px) {

}

/*------------------------------
10.3 Landscape phone to portrait tablet
------------------------------*/
@media (max-width: 992px) {
  body {
    padding-top: 120px;
  }
  section {
    padding: 50px 0;
  }
  header {
    padding: 20px 0;
  }
  header:has(.menu.active) {
    background: var(--main-text);
  }
  header .wrapper {
    gap: 20px;
  }
  header .logo.big {
    display: none;
  }
  header .logo.small {
    display: block;
    width: 125px;
  }
  header .search {
    display: none;
  }
  header .btn {
    font-size: 14px;
    gap: 8px;
    padding: 8px 12px;
  }
  header .top {
    margin-left: auto;
  }
  header .mobile-menu-toggler {
    height: 60px;
    width: 45px;
    position: relative;
    cursor: pointer;
    display: block !important;
    top: 6px;
  }
  header .mobile-menu-toggler .line {
    height: 2px;
    display: block;
    background: var(--main-white);
    width: 60%;
    position: absolute;
    right: 0;
  }
  header .mobile-menu-toggler .line:nth-of-type(2) {
    top: 12px;
    width: 80%;
  }
  header .mobile-menu-toggler .line:nth-of-type(3) {
    top: 24px;
    width: 100%;
  }
  header .mobile-menu-toggler span:nth-of-type(4) {
    text-transform: uppercase;
    font-size: 13px;
    bottom: 0;
    top: unset;
    position: absolute;
    left: 3px;
  }
  header .mobile-menu-toggler .line {
    transition: all 0.3s ease-in-out;
  }
  header .mobile-menu-toggler .line:nth-of-type(1) {
    top: 0;
  }
  header .mobile-menu-toggler.active .line:nth-of-type(1) {
    top: 12px;
    width: 100%;
    transform: rotate(45deg);
    right: -8px;
  }
  header .mobile-menu-toggler.active .line:nth-of-type(2) {
    opacity: 0;
    width: 0;
  }
  header .mobile-menu-toggler.active .line:nth-of-type(3) {
    top: 12px;
    width: 100%;
    transform: rotate(-45deg);
    right: -8px;
  }
  header.sticky .menu {
    margin-top: 30px;
  }
  header .menu {
    position: fixed;
    top: 68px;
    left: 0;
    height: calc(100vh - 68px);
    background: var(--main-text);
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 50px 12px;
    border-top: 1px solid var(--main-white);
    transform: translateX(100%);
    transition: transform .5s;
  }
  header .menu.active {
    transform: translateX(0);
  }
  header .menu .drop-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100vh - 68px);
    background: var(--main-text);
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 50px 12px;
    z-index: 10000;
    overflow: auto;
    transform: translateX(100%);
    transition: transform .5s;
    display: block;
  }
  header .menu .drop-menu.active {
    transform: translateX(0);
  }
  header .drop-menu .container, header .drop-menu .row, header .drop-menu .col-lg-7, header .drop-menu .col-lg-5 {
    height: unset;
  }
  header .drop-menu .blocks {
    margin-top: unset;
  }
  header .drop-menu .block-wrapper {
    flex: 0 0 100%;
  }
  header .menu li {
    width: 100%;
  }
  header .menu li a.dropdown {
    width: 100%;
    display: flex;
    align-items: center;
    color: var(--main-white) !important;
  }
  header .menu li a.dropdown svg {
    display: none;
  }
  header .menu li a.dropdown:after {
    content: "\f054";
  }
  header .menu .content-mob h4 {
    font-weight: 500;
  }
  header .menu .content-mob .contact a {
    display: block;
    color: #fff;
  }
  header .menu .content-mob .address {
    margin-top: 25px;
  }
  header .drop-menu .block-wrapper img {
    height: 32px;
    width: 32px;
  }
  #banner .content h2 {
    font-size: 35px;
  }
  header .drop-menu .block-wrapper h4 {
    font-size: 18px;
  }
  header .drop-menu .bottom {
    position: relative;
  }
  header .drop-menu .close {
    font-size: 30px;
    top: 20px;
    right: 25px;
    position: absolute;
  }
  header .col-lg-5 {
    margin-top: 50px;
  }
  .carousel-control-next,
  .carousel-control-prev {
    bottom: 1px;
    transform: unset;
    top: unset;
  }
  .carousel-control-prev {
    right: 50px;
    left: unset;
  }
  #services .row .col-lg-4:not(:last-child) {
    margin-bottom: 24px;
  }
  footer .tel, footer .mail {
    display: block;
  }
  footer .footer-links {
    margin-bottom: 24px;
  }
  .content {
    padding: 25px 0;
  }
  #text-image .row, #text-video .row, #text-slider .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
  .swiper-wrapper {
    padding: 20px 0;
  }
  .swiper-button-next, .swiper-button-prev {
    font-size: 20px;
    height: 35px;
    width: 35px;
  }
  .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
  #slider {
    height: calc(100vh - 73px);
  }
  #slider p {
    font-size: 17px;
  }
  #slider .swiper-button-prev {
    right: 35px;
  }
  #related .title {
    font-size: 18px;
  }
  #usps .row {
    --bs-gutter-y: 3.5rem;
  }
  #usps .usp i {
    width: 50px;
    height: 50px;
    font-size: 30px;
    transform: translateY(-25px);
  }
  #products .categories {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 70px;
    width: 100%;
    height: calc(100vh - 73px);
    background: #fff;
    padding: 50px 12px;
    border-top: 1px solid var(--main-text);
    transition: transform .3s;
    transform: translateX(-100%);
  }
  #products .categories.open {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    padding: 50px 12px;
    border-top: 1px solid var(--main-text);
    transition: transform .3s;
    transform: translateX(0);
  }
  #products .categories .close {
    position: absolute;
    top: 25px;
    right: 12px;
    font-size: 20px;
    background: var(--main-color);
    color: #fff;
    display: grid;
    place-content: center;
    height: 30px;
    width: 30px;
  }
  #products .categories > ul {
    height: 100%;
    overflow: auto;
    padding-bottom: 30px;
  }
  #products .categories ul li > ul {
    display: block;
  }
  #products .cat-mob-btn {
    margin-bottom: 20px;
  }
  h1, h2 {
    font-size: 30px;
  }
  .subtitle {
    font-size: 30px;
  }
  .subtitle .arrow {
    height: 85px;
  }
  #home-intro {
    padding: 120px 0 100px;
  }
  #home-intro .item {
    padding: 24px;
    border-radius: 0 60px 0 0;
  }
  #home-intro .item .icon {
    display: none;
  }
  #home-intro:has(.icon) p {
    padding-right: 0;
  }
  #home-featured {
    padding: 50px 0;
  }
  #home-featured .subtitle {
    display: none;
  }
  #home-featured .item {
    padding: 25px;
    border-radius: 0;
    min-height: 415px;
  }
  #home-featured .col-lg-8 {
    margin-bottom: 50px;
  }
  #home-featured .ticket {
    padding: 30px;
  }
  #home-sliders .subtitle {
    display: none;
  }
  #home-sliders {
    padding-top: 0;
  }
  #home-sliders .label {
    padding: 5px 20px;
  }
  #home-sliders .col-lg-4 {
    margin-bottom: 50px;
  }
  #home-sliders .events .item h2 {
    max-width: 100%;
  }
  #home-video .subtitle {
    display: none;
  }
  #home-video .thumbnail {
    margin-bottom: 100px;
  }
  #home-video .thumbnail .mic {
    left: 5px;
    bottom: -60px;
    width: 110px;
  }
  #home-video .thumbnail .play-btn {
    width: 55px;
  }
  #home-video .thumbnail .pictogram {
    left: 60%;
    top: -27px;
    width: 45px;
  }
  #home-video .text {
    padding-right: 12px;
    text-align: center;
  }
  #home-video .text h2 {
    text-align: center;
  }
  #home-video .text .btn {
    margin: 0 auto;
  }
  #text-image .title {
    font-size: 18px;
    max-width: 350px;
    padding: 25px;
  }
  #faq .subtitle {
    display: none;
  }
  #faq {
    padding-top: 50px;
  }
  #faq button {
    font-size: 16px;
    font-weight: 500;
    padding: 25px 18px;
  }
  #faq button:after {
    font-size: 16px;
  }
  #faq .accordion-item .accordion-body {
    padding: 25px 18px;
  }
  #newsletter .wrapper {
    padding: 50px 20px;
  }
  #newsletter h2 {
    margin-bottom: 20px;
  }
  #reviews .subtitle {
    display: none;
  }
  #reviews .google .stars {
    gap: 5px;
  }
  #reviews .google .stars i {
    font-size: 22px;
  }
  #reviews .google img {
    height: 22px;
  }
  #reviews .google .wrapper {
    gap: 5px;
  }
  #reviews .quote-wrapper {
    font-size: 18px;
    line-height: 28px;
    padding: 50px 73px 0 73px;
  }
  #partners .swiper-slide {
    border-right: none;
    padding-right: 0;
  }
  #partners img {
    max-height: 65px;
    width: auto;
  }
  #reviews .name {
    font-size: 16px;
  }
  #reviews .quote-start, #reviews .quote-end {
    font-size: 60px;
  }
  .swiper-button-next, .swiper-button-prev {
    font-size: 16px;
    height: 28px;
    width: 28px;
  }
  footer {
    font-size: 16px;
  }
  footer .footer-top {
    padding: 70px 0 15px;
    text-align: center;
  }
  footer .wrapper {
    justify-content: center;
    gap: 35px;
    flex-direction: column;
  }
  footer .social-links {
    justify-content: center;
    margin-bottom: 30px;
  }
  footer .ctas {
    justify-content: center;
  }
  footer .ctas .friend {
    flex-direction: column;
  }
  footer .ctas .btn {
    align-self: center;
  }
  footer .ctas .friend .subtitle {
    text-align: left;
  }
  footer .ctas .friend .subtitle .arrow {
    rotate: 10deg;
    position: relative;
    top: 20px;
    left: -20px;
  }
  footer .bottom ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  #contact-hours .subtitle {
    display: none;
  }
  #contact-hours .follow-us {
    margin: 40px 0;
  }
  .event {
    min-height: 450px;
    padding: 50px 25px 25px 25px;
    border-radius: 0 60x 0 0;
  }
  .event .label {
    padding: 5px 20px;
  }
  #events-related .swiper-button-prev {
    right: 45px;
  }
}

@media (max-width: 767px) {
  #error {
		min-height: unset;
		padding: 50px 0;
	}
	#error .wrapper {
		flex-direction: column;
	}
	#error .wrapper > div {
		flex: 0 0 100%;
		width: 100%;
	}
	#error .content {
		text-align: center;
		order: 2;
		margin-top: 40px;
	}
	#error .content h1 {
		font-size: 40px;
	}
	#error .content p {
		font-size: 20px;
	}
	#error .content .cta {
		margin-top: 40px;
		text-align: center;
	}
	#error .content .cta p {
		max-width: unset;
	}
	#error .img {
		padding-left: 0;
	}

}

/*------------------------------
10.5 Landscape phones and down
------------------------------*/
@media (max-width: 480px) {

}

#hotspots .image-container {
  position: relative;
}

#hotspots .image-container img {
  width: 100%;
  height: 100%;
}

#hotspots .hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#hotspots .hotspots .hotspot {
  position: absolute;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  background-color: rgba(60, 255, 0, 0.877);
  border-radius: 50%;
  cursor: pointer;
}

#hotspots .hotspots .hotspot .content {
  background-color: #f0f0f0;
  border-radius: 15px;
  padding: 6px 12px;
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  min-height: 40px;
  width: fit-content;
  max-width: 300px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

#hotspots .hotspots .hotspot .content::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-right-color: #f0f0f0;
}

#hotspots .hotspots .hotspot:hover .content {
  opacity: 1;
}
