/* DEFAULTS */

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica/Helvetica.ttf");
}

@font-face {
  font-family: "Marcellus";
  src: url("../fonts/Marcellus/Marcellus-Regular.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, "Inter", sans-serif !important;
  transition: all 0.3s;
}

html {
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

p {
  margin-bottom: 0;
}
p:not(:last-child) {
  margin-bottom: .85rem;
}

p a, table a, .link-underline li a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
p a:hover, .link-underline li a:hover {
  color: #00447c;
}

figure {
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}

img {
  max-width: 100%;
}

.fw-600 {
  font-weight: 600;
}

.fs-24 {
  font-size: 24px;
}

.fs-20 {
  font-size: 20px;
}

.fs-18 {
  font-size: 18px;
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-13 {
  font-size: 13px;
}

.fs-12 {
  font-size: 12px;
}

.font-italic {
  font-style: italic;
}

.maxw-100 {
  max-width: 100%;
}

.minw-250 {
  min-width: 250px;
}

.fit-content {
  width: fit-content;
}

.text-gradient {
  background: linear-gradient(90deg, #cda053, #51a2e2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-2 {
  background: linear-gradient(90deg, #51a2e2, #cda053);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-dark {
  background: linear-gradient(90deg, #cda053, #00447c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-white-part {
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-bg {
  background: linear-gradient(90deg, #00447c, #1bae97);
}

.gradient-blue-bottom {
  background-image: linear-gradient(to top, #00447c 0%, transparent 60%);
}

.bg-darkblue {
  background-color: #00447c;
}

.bg-white {
  background-color: #fff;
}

.bg-centered {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-darkblue {
  color: #00447c;
}

.c-white {
  color: #fff;
}

.c-gold {
  color: #cda053;
}

.c-darkgrey {
  color: #838383;
}

.hover-grow:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.hover-underline:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.z-15 {
  z-index: 15;
}

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

/* CARD */

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  row-gap: 1.25rem;
}
.card-grid-centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  display: flex;
  flex-direction: column;
  border: 5px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  width: auto;
  height: auto;
  box-shadow: 0 0 5px #d9d9d9;
}

.card-grid-centered .card {
  width: 250px;
}

.card-image {
  width: 100%;
  aspect-ratio: 371 / 259;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.card-image .icon-bg {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 30px;
  height: 30px;
  padding: 5px;
}

.card-image .icon-bg img {
  max-height: 100%;
}

.card-title {
  flex-grow: 1;
  background-color: #fbf8f2;
  color: #00447c;
  height: auto;
  padding: 1rem;
  margin-bottom: 0;
  border-radius: 0 0 10px 10px;
}

.card:not(.card-news) .card-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-title h5 {
  font-size: 16px;
}

.card:hover .card-title {
  background-color: #00447c;
  color: #fff;
}

.card:hover .card-title h5 {
  color: #cda053;
}

/* SECTIONS */

.section {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.section-tall {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

section.first-content {
  position: relative;
  z-index: 15;
  margin: -80px 0 0 0;
  padding-top: 6rem;
  background-image: linear-gradient(to bottom, transparent 0, #fff 80px, #fff);
}

.main-page.first-content {
  margin: -180px 0 0 0;
  padding-top: 1rem;
  background-image: linear-gradient(to bottom, transparent 0, #fff 180px, #fff);
}

/* Header-top */

.header-top {
  height: 50px;
  background-color: #fff;
}

.contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* Header */

header {
  height: 60px;
  background-color: #fbf8f2;
  position: sticky;
  top: 0;
  color: #00447c;
  box-shadow: 0 1px 1px #d9d9d9;
  z-index: 100;
}

.logo img {
  height: 50px;
}

.menu-top-item a,
.lang-selector a {
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 60px;
}

header a.active {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  pointer-events: none;
}
header a.active:hover {
  cursor: default;
}

.menu-open {
  display: none;
  background-color: white;
  border-left: 10px solid #cda05314;
  border-right: 10px solid #cda05314;
  border-bottom: 10px solid #cda05314;
  position: absolute;
  left: 0;
  right: 0;
}

nav:hover .menu-open {
  display: block;
}

.bg-wave {
  background-image: url("../img/hero_hullam.svg");
  background-repeat: no-repeat;
  background-size: 32%;
  background-position: right 0 bottom 0;
}

.menu-open figure {
  width: 152px;
  height: 152px;
}

/* MOBILE HEADER AND STICKY */

.mobile-header .logo img {
  height: 35px;
}

.mobile-header .lang-selector a {
  border-radius: 100px;
  background-color: #f2ede6;
  height: initial;
  padding: 0.5rem;
}

.mobile-header .lang-selector a.active {
  background-color: #00447c;
  color: #fff;
  text-decoration: none;
  pointer-events: none;
}

.mobile-header .lang-selector a:first-child {
  border-radius: 100px 0 0 100px;
}
.mobile-header .lang-selector a:last-child {
  border-radius: 0 100px 100px 0;
}

.mobile-sticky {
  z-index: 20;
  width: 100vw;
}

.mobile-sticky .btn {
  width: 180px;
  padding: 0.8rem 1rem 0.75rem 1rem;
}

/* OFFCANVAS */

.offcanvas.offcanvas-start {
  top: 60px;
  width: 100%;
  max-width: 500px;
  background-color: #fbf8f2;
  border-right: none;
  color: #00447c;
}

.offcanvas-backdrop {
  top: 60px;
}

.offcanvas-body {
  padding: 1rem 0 0 0;
}

.offcanvas-body .accordion-item {
  background: none;
  border: none;
  color: #00447c;
}

.offcanvas-body ul li a:not(.asw-container *) {
  display: flex;
  align-items: center;
  height: 3.5rem;
  font-weight: 600;
}

.offcanvas-body ul .mobile-icon-wrapper {
  border: 1px solid #00447c;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  margin-right: 1rem;
}

i.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  font-size: 0.75rem;
  margin-left: auto;
  border-radius: 100%;
  cursor: pointer;
}

.single-nav i.accordion-button {
  width: 1.5rem;
  height: 1.5rem;
}

i.accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
}

i.accordion-button::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-left: 2px solid #00447c;
  border-bottom: 2px solid #00447c;
  transform: rotate(-45deg) translate(1px, -6px);
  transform-origin: center center 0;
  transition-duration: 0.3s;
}

i.accordion-button:not(.collapsed)::after {
  transform: rotate(-225deg) translate(1px, 6px);
}

.faq i.accordion-button:not(.collapsed)::after,
.single-nav i.accordion-button:not(.collapsed)::after {
  transform: rotate(-45deg) translate(1px, -6px);
}

.faq .accordion-button-fullwidth:not(.collapsed) i::after,
.single-nav .accordion-button-fullwidth:not(.collapsed) i::after {
  transform: rotate(-225deg) translate(1px, 6px);
}

.offcanvas-start .offcanvas-body > ul ul {
  background-color: #cda05333;
  padding: 1rem 1.5rem;
}

.offcanvas-start .offcanvas-body > ul ul a {
  font-weight: 500;
  height: 2.5rem;
  padding-left: 2.65rem;
}

.offcanvas-start hr {
  margin: 0.25rem 1.5rem 0.25rem 1rem;
  color: #999999;
}

.mobile-searchbox {
  background-color: #00447c;
  padding: 2rem 0;
}

.mobile-searchbox > form {
  max-width: 320px;
  margin: auto;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  padding: 2px;
}

.mobile-searchbox input {
  border: none;
  max-width: 280px;
}

.mobile-searchbox input:focus {
  box-shadow: 0 0 2px white;
}

.mobile-buy-ticket {
  background-color: #00274b;
}

.mobile-buy-ticket img {
  opacity: 0.5;
}

.offcanvas .bath-bg {
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.dark-filter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

#mobile-menu-button {
  width: 36px;
}

.menu-close {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  background-color: #fff;
}
.menu-close::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 10px;
  transform: rotate(45deg);
  transform-origin: bottom right;
  width: 24px;
  height: 3px;
  background-color: #00447c;
  border-radius: 50px;
}
.menu-close::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 1px;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  width: 24px;
  height: 3px;
  background-color: #00447c;
  border-radius: 50px;
}

/* FOOTER */

footer {
  background-color: #2b2b2b;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 10;
  background-image: url("../img/bg-wave-footer.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}

footer > .container {
  padding: 3rem 1rem 6rem 1rem;
}

.footer-section-border {
  border-bottom: 1px solid #ffffff25;
}

.footer-logo {
  max-height: 50px;
}

footer ul {
  height: 228px;
}

footer ul li {
  width: 50%;
  font-weight: 400;
}

footer .copyright img {
  height: 50px;
  transform: translate(-8px, -6px);
}

/* SEARCH MODAL */

.modal {
  align-content: center;
  background-color: rgb(65 64 66 / 60%);
}

#modal-search .modal-content {
  background-color: transparent;
  border: none;
}

#modal-search .modal-header {
  border: none;
}

#modal-search .btn-close {
  filter: invert(1);
}

#modal-search #modalSearchForm {
  border-bottom: 1px solid #fff;
}

#modal-search #modalSearchForm input,
#modal-search #modalSearchForm input:focus {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #fff;
}

#modal-search #modalSearchForm input::placeholder {
  color: #fff;
}

#modal-search #modalSearchForm .btn {
  padding: 0.5rem;
}

/* POPUP */

.img-shadow {
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.75));
}

#popup .modal-content {
  background-color: transparent;
  border: none;
}

#popup .modal-dialog {
  max-width: 600px;
}

#popup .modal-text {
  background-color: #d9d9d94d;
}

#popup .modal-body h2 {
  letter-spacing: 1px;
}

#popup .modal-header i:hover {
  cursor: pointer;
  color: #00447c;
}

/* Infobox */

.infobox {
  white-space: nowrap;
  overflow: hidden;
}

.infobox .infobox-text {
  display: inline-block;
  position: relative;
  padding-left: 3rem;
}
.infobox:hover .infobox-innerwrap {
  animation-play-state: paused;
}

.infobox .infobox-innerwrap {
  white-space: nowrap;
  animation: swimmingText 30s linear infinite;
}

.infobox .infobox-text.marquee {
  padding-right: 5rem;
}

.infobox .infobox-text img {
  position: absolute;
  top: -1px;
  left: 0;
}

.infobox.static {
  border-radius: 10px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.infobox.static .infobox-text {
  white-space: normal;
}

/* Bottom right logo */

.bottom-container {
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 300px;
  z-index: 1050;
}

.toggle-btn {
  position: absolute;
  bottom: 100%;
  right: 1rem;
  margin-bottom: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #3347A3;
  color: white;
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background-color: #cda053;
}

.toggle-btn i::before {
  font-size: 20px;
}

.rotate {
  transform: rotate(180deg);
}

/* Hero */

.hero {
  height: 240px;
}

.hero-main {
  height: 68vh;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.gradient-filter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-image: linear-gradient(
    to left,
    transparent 0%,
    #cda0537e 50%,
    #cda0537e 75%,
    #009fe3d8 100%
  );
}

.hero-main .gradient-filter {
  background-image: linear-gradient(
    to left,
    transparent 0%,
    #cda05352 50%,
    #009fe37d 100%
  );
}

.breadcrumbs {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.hero-content {
  position: relative;
  z-index: 12;
  padding-bottom: 20px;
}

.hero-main .hero-content {
  padding-bottom: 155px;
}

.hero h1 {
  font-family: Marcellus, "Inter", sans-serif !important;
  font-size: 36px;
  font-weight: 400;
}

.hero-main h1 {
  font-size: 70px;
}

.hero-main .btn {
  margin-top: 4rem;
}

.hero .hero-subtitle {
  color: #f0e5d1;
  font-size: 20px;
  font-family: "Inter", sans-serif !important;
  bottom: -30px;
  left: 0;
  right: 0;
}

.hero .btn .bi-arrow-right-circle::before {
  margin-left: 10px;
  vertical-align: -2px;
}

/* MAIN PAGE SWIPER */

.main-page-swiper {
  padding-bottom: 20px;
  position: static;
}

.main-page-swiper .swiper-slide {
  padding: 5px;
}

.main-swiper-card {
  display: block;
  border: 8px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 175px;
  height: 175px;
  box-shadow: 0 0 5px #d9d9d9;
  font-size: 13px;
}
.main-swiper-card:hover {
  transform: scale(1.05);
}

.main-swiper-card-image {
  height: 100px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-swiper-card-image .icon-bg-darkblue {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border-radius: 50px;
}

.main-swiper-card-image .icon-bg-darkblue img {
  max-height: 100%;
}

.main-swiper-card-title {
  background-color: #fbf8f2;
  color: #00447c;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  font-weight: 600;
  text-align: center;
  padding: 0 5px;
}

.main-swiper-card:hover .main-swiper-card-title {
  background-color: #00447c;
  color: #fff;
}

/* MAIN PAGE OFFERS */

.offers-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.offer-card {
  background-color: #00447c14;
  width: 100%;
  max-width: 524px;
  height: auto;
  border-radius: 10px;
  padding: 14px 14px 0 14px;
}
.offer-card:hover {
  transform: scale(1.05);
  cursor: pointer;
  background-color: #00447c;
}

.offer-card figure {
  border-radius: 10px;
  overflow: hidden;
}

.offer-card-image {
  aspect-ratio: 496 / 332;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offer-card-title {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
}

.offer-card:hover .offer-card-title h5 {
  color: #fff;
}

.offer-card-title .button-next::after {
  border-color: #cda053;
}
.offer-card:hover .offer-card-title .button-next {
  background-color: #cda053;
}
.offer-card:hover .offer-card-title .button-next::after {
  border-color: #fff;
}

/* Banners */

.banner-buy-ticket {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner-buy-ticket .dark-filter {
  background-color: rgba(0, 0, 0, 0.6);
}

.banner-buy-ticket .btn-white-outline {
  border-width: 1px;
}

.newsletter {
  background-image: linear-gradient(90deg, #00447c, #2b2b2b);
}

.newsletter .position-absolute {
  bottom: -132px;
  left: 0;
  right: 0;
  opacity: 0.1;
}

.newsletter .position-absolute img {
  max-width: 140%;
}

.newsletter form > div:first-child > * {
  width: 310px;
}

/* SOCIAL */

.social h5 {
  font-size: 1.5rem;
  line-height: 1.5;
}

/* INFO TABS (MAIN PAGE) */

.useful-info {
  background-color: #fff;
}

.useful-info .nav {
  gap: 0.5rem;
}

.useful-info .nav-link {
  background-color: #efefef;
  border-radius: 10px;
  padding: 1.5rem 0.5rem 1rem 0.5rem;
  color: #00447c;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.useful-info .nav-link > div {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

.useful-info .nav-link.active {
  background: linear-gradient(90deg, #eaca93, #cda053);
  color: #fff;
}
.useful-info .nav-link.active img.blue {
  display: none;
}
.useful-info .nav-link.active img.white {
  display: block;
}
.useful-info .nav-link:not(.active) img.blue {
  display: block;
}
.useful-info .nav-link:not(.active) img.white {
  display: none;
}

.useful-info .nav-link img {
  height: 20px;
  margin-bottom: 0.5rem;
}

.useful-info .useful-content {
  max-width: 450px;
  margin: auto;
}

.useful-info .useful-content .tab-pane div:has(p) {
  height: 80px;
}

.useful-info .useful-content p {
  font-size: 12px;
}

.useful-info table {
  font-size: 12px;
  border-radius: 10px;
  overflow: hidden;
}

.useful-info table td {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.useful-info table tr:nth-child(odd) {
  background-color: #00447c1a;
}
.useful-info table tr:nth-child(even) {
  background-color: #fff;
}

.useful-info table tr td:first-child {
  width: 35%;
  padding-left: 2rem;
  border-right: 1px solid #d9d9d9;
}
.useful-info table tr td:last-child {
  text-align: center !important;
}

.image-border {
  border: 10px solid #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px #d9d9d9;
}

.image-border iframe {
  width: 100%;
}

.image-border img:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.useful-info .tab-pane-image {
  height: 210px;
}

/* SINGLE PAGES */

.single-nav a {
  color: #00447c;
  border-radius: 20px;
  padding: 1rem;
  white-space: nowrap;
}

.single-main .gradient-bg .btn {
  max-width: 400px;
}

.single-content-block-image {
  width: 100%;
}
.single-content-block-image div {
  border-radius: 10px;
  aspect-ratio: 3/2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-content-block-coltext {
  width: 100%;
  /* font-size: 13px; */
}

.single-content-block-coltext ul.parameters {
  border-radius: 10px;
  overflow: hidden;
}

.single-content-block-coltext ul.parameters li:nth-child(odd) {
  background-color: #00447c1a;
}

.single-content-block-coltext ul.parameters li img {
  width: 31px;
  height: 31px;
}

.single-content-block-container .highlighted img {
  width: 18px;
  height: 18px;
}

.gallery-swiper-container {
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #fbf8f2;
}

.gallery-swiper {
  border-radius: 10px;
  position: static;
}

.gallery-swiper .swiper-slide {
  padding: 2rem 1rem;
}

.gallery-swiper-card {
  display: block;
}
.gallery-swiper-card:hover {
  transform: scale(1.05);
}

.gallery-swiper-card-image {
  overflow: hidden;
  width: 200px;
  height: 130px;
}

.out-of-order .table-frame {
  border-radius: 10px;
  overflow: hidden;
}

.out-of-order ul {
  background-color: #fbf8f2;
}

.out-of-order ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.out-of-order ul li .icon-bg {
  width: 30px;
  height: 30px;
}

.out-of-order ul li:not(:last-child),
.contact ul li:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}

.faq .accordion-header {
  background-color: #f4f4f4;
  border-radius: 10px;
  letter-spacing: 1px;
}
.faq .accordion-header:hover {
  cursor: pointer;
}

.news-date {
  background-color: #F0EAE1;
  color: #AFA89D;
  padding: .25rem 1rem;
  font-size: 12px;
  border-radius: 5px;
  width: fit-content;
}

.news-highlighted {
  background-color: #f2f2f2;
  letter-spacing: 1px;
}

.contact ul li img {
  height: 32px;
}

.contact .image-border {
  height: 250px;
}

.contact-form {
  background-color: #fbf8f2;
  margin: auto;
}

.contact .contact-form {
  max-width: 480px;
}

.card-grid.gallery .card {
  width: 100%;
  aspect-ratio: 4 / 3;
}
.card-grid.gallery .card img {
  width: 100%;
  height:100%;
  object-fit: cover;
  border-radius: 6px;
}
.card-grid.gallery .card:hover img {
  cursor: pointer;
  transform: scale(1.05);
}

.search-results ul li a {
  display: block;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 10px #d9d9d9;
}
.search-results ul li a:hover {
  background-color: #00447c;
  color: #fff;
}
.search-results ul li a:hover h5 {
  color: #cda053;
}

.offer-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.fancybox__container,
.fancybox__container * {
  transition: initial !important;
}
[data-fancybox] {
  cursor: pointer;
}

/* TABLES */

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-weight: 600;
  color: #cda053;
}

th,
td {
  padding: 1rem 1.5rem;
}

th,
tr:not(.price-table-mobile tr) td:first-child {
  color: #00447c;
}

tbody tr:nth-child(odd),
thead tr:not(:last-child) {
  background-color: #00447c1a;
}

tr td:not(:last-child),
tr:not(:first-child) th:not(:last-child) {
  border-right: 1px solid #0000001a;
}

tr:first-child td:first-child {
  border-top-left-radius: 10px;
}
tr:first-child td:last-child {
  border-top-right-radius: 10px;
}
tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

tbody tr td:not(:first-child) {
  font-weight: 400;
}

.price-table-anchor {
  position: absolute;
  top: -75px;
}

.tooltip-anchor {
  position: relative;
}

.tooltip-anchor i {
  position: absolute;
  top: 0px;
  left: 6px;
  font-size: 18px;
  color: #fff;
  background-color: #cda053;
  border-radius: 50px;
  padding: 1px 2px 3px 2px;
}
.tooltip-anchor i:hover {
  cursor: pointer;
  color: #cda053;
  background: none;
}

.price-table-mobile .tooltip-anchor i {
  top: -1px;
  left: 3px;
}

.opening-hours-table {
  width: 100%;
  font-size: 12px;
  overflow-x: scroll;
}
.opening-hours-table tbody tr td:first-child {
  max-width: 300px;
  min-width: 170px !important;
}

.opening-hours-table th:first-child,
.opening-hours-table td:first-child {
  position: sticky;
  left: 0;
  background-color: #fff;
}

.opening-hours-table tr:nth-child(odd) td:first-child {
  background-color:#E5ECF2;
}


/* Tables - mobile view */

.price-table-mobile {
  font-size: 13px;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.price-table-mobile td,
.price-table-mobile th {
  padding: 1rem;
}

.price-table-mobile tr:first-child td {
  background-color: #00447c;
  color: #fff;
  letter-spacing: 1px;
}
.price-table-mobile tr:has(th) {
  background-color: #00447c1a;
  color: #00447c;
}
.price-table-mobile tr:last-child {
  background-color: #a7a7a71a;
  height: 70px;
}

.price-table-mobile tr:not(:first-child) th:not(:last-child),
.price-table-mobile tr:not(:first-child) td:not(:last-child) {
  border-right: 1px solid #0000001a;
}

.price-table-mobile th {
  border-top: 1px solid #0000001a;
}


/* SWIPERS */

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  background: #fbf8f2;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  box-shadow: 0 0 3px #00447c;
}

.swiper-button-prev {
  left: -20px;
}
.swiper-button-next {
  right: -20px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 15px;
  font-weight: 600;
  color: #00447c;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #00447c;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #fff;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: initial;
  bottom: 0px;
  background: #e9e9e9;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #d9d9d9;
}

/* BUTTONS */

.btn {
  border-radius: 50px;
  padding: 0.8rem 2rem 0.75rem 2rem;
  font-weight: 600;
  max-width: 300px;
  letter-spacing: 1px;
}

.btn-thin {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.btn-green {
  background-color: #1bae97;
  border: 1px solid #1bae97;
  color: #fff;
}
.btn-green:hover {
  background-color: #00447c;
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline {
  color: #00447c;
  border: 1px solid #00447c;
}
.btn-outline:hover {
  color: white;
  border: 1px solid #00447c;
  background-color: #00447c;
}

.btn-white {
  background-color: #fff;
  color: #00447c;
  border: none;
}
.btn-white:hover {
  background-color: #00447c;
  color: #fff;
}

.btn-white-outline {
  border: 2px solid #fff;
}

.btn-darkblue {
  background-color: #00447c;
  color: #fff;
}
.btn-darkblue:hover {
  background-color: #fff;
  color: #00447c;
  border: 1px solid #00447c;
}

.btn-transparent {
  background-color: transparent;
  color: #fff;
}
.btn-transparent:hover {
  background-color: #fff;
  color: #00447c;
}

.btn-gradient-hover {
  background: linear-gradient(90deg, #00447c, #00447c);
  color: #fff;
}
.btn-gradient-hover:hover,
.btn-gradient-hover:active {
  background: linear-gradient(90deg, #00447c, #1bae97);
  color: #fff !important;
}

.button-next {
  background: #fff;
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-next::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #00447c;
  border-bottom: 2px solid #00447c;
  transform: translateX(-1px) rotate(-45deg);
}

button[type="submit"]:has(.icon-bg-darkblue) {
  background: none;
}

button[type="submit"] .icon-bg-darkblue:hover {
  background: #cda053;
}

.gradient-bg .btn {
  margin: 1px;
  background-color: #fff;
}
.gradient-bg .btn:hover {
  background: transparent;
  color: #fff;
}

/* ICONS */

.bi::before {
  transform: translateY(1px);
}

.icon-bg {
  background-color: #f1f1f1;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-bg-darkblue {
  background-color: #00447c;
  width: 40px;
  height: 40px;
}

.icon-bg-white {
  background-color: #fff;
  border: 1px solid #00447c;
}

.icon-bg-green {
  background-color: #1bae97;
  border: none;
}

.icon-bg-red {
  background-color: #ae1b1b;
  padding: 5px;
}

.icon-bg svg {
  max-width: 100%;
  max-height: 100%;
}

.gradient-bg > a > svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #00447c;
  transform: translateY(-1px);
}
.gradient-bg:hover > a > svg {
  stroke: #fff;
}

/* FORMS */

.form-control {
  border-radius: 100px;
  padding: 0.75rem 1.25rem;
  border: none;
}

.form-control::placeholder {
  opacity: 0.65;
}

.form-check-input:hover {
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #cda053;
  border-color: #cda053;
}

.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0.25rem #cda053;
}

.input-with-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 100px;
  padding-right: 3px;
}

.newsletter .form-control:focus {
  box-shadow: 0 0 0 #fff;
}

.contact-form .form-control {
  border-radius: 10px;
  border: 2px solid #eeeae1;
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-form .form-control::placeholder {
  color: #00447c;
  text-align: top;
}

.contact-form form textarea {
  height: 200px;
  resize: none;
}

.report-abuse .contact-form form {
  max-width: 410px;
  margin: auto;
}

/* RESPONSIVE */

/* SM and down */

@media screen and (max-width: 575px) {
  .hero-main h1 {
    font-size: 50px;
  }
  
  .offers.card-grid {
    grid-template-columns: 1fr;
  }
}

/* MD and down */

@media screen and (max-width: 767px) {
  .price-table p {
    margin-bottom: 2rem;
  }
}

/* LG and down */

@media screen and (max-width: 991px) {
  .single-content-block-image {
    max-width: 500px;
  }

  .out-of-order .col-lg-12 .col-12:not(:last-child) li:last-child {
    border-bottom: 1px solid #d9d9d9;
  }
}

/* XL and down */

@media screen and (max-width: 1199px) {
  .hidden-on-mobile {
    display: none;
  }

  .breadcrumbs {
    font-size: 12px;
  }

  .infobox {
    white-space: wrap;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .infobox .infobox-innerwrap {
    white-space: wrap;
    animation: none;
    margin: auto;
  }
  .infobox .infobox-text.marquee {
    padding-right: 0;
  }

  .single-nav {
    overflow-x: scroll;
    padding-bottom: 5px;
    margin-bottom: 3rem;
  }

  .single-nav > div {
    background: linear-gradient(90deg, #00447c, #1bae97);
    border-radius: 100px !important;
  }

  .single-nav a {
    display: inline-block;
    background: #fff;
    border: 1px solid #00447c;
    border-radius: 100px;
    margin: 1px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
  }
  .single-nav a:hover,
  .single-nav a:active,
  .single-nav a.active {
    color: #fff;
    background: linear-gradient(90deg, #00447c, #1bae97);
  }

  .single-nav .accordion-collapse {
    position: absolute;
    display: flex;
    gap: .5rem;
    overflow-x: scroll;
    width: 100%;
    left: 0;
    padding-bottom: 5px;
  }
  .single-nav .accordion-collapse.collapse:not(.show) {
    display: none;
  }

  div:not(.price-table):not(.price-table-mobile):has(> table) {
    width: 100%;
    font-size: 12px;
    overflow-x: scroll;
  }
  div:not(.price-table):not(.price-table-mobile):has(> table) th,
  div:not(.price-table):not(.price-table-mobile):has(> table) td {
    min-width: 110px;
    padding: 0.75rem 1rem;
  }

  .footer-logo {
    max-width: 180px;
  }
}

/* XXL and down */

@media screen and (max-width: 1399px) {
  .bgyh-button {
    font-size: 12px;
    padding: 0.5rem;
  }
}

/* SM and up */

@media screen and (min-width: 576px) {
  .newsletter .position-absolute img {
    max-width: 33%;
  }

  .newsletter .position-absolute {
    top: -32px;
    bottom: -32px;
  }
}

/* MD and up */

@media screen and (min-width: 768px) {
  .card:not(.card-news) .card-title {
    display: block;
  }

  footer ul {
    height: 172px;
  }

  footer ul li {
    width: 33%;
  }
}

/* LG and up */

@media screen and (min-width: 992px) {
  .card-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .card-grid-centered .card {
    width: 400px;
  }

  .single-content-block-container:nth-child(odd) .single-content-block-image {
    order: 2;
  }
  .single-content-block-container:nth-child(odd) .single-content-block-coltext {
    order: 1;
  }

  .single-content-block-image {
    width: 48%;
  }
  .single-content-block-coltext {
    width: 48%;
  }

  .contact .image-border {
    height: 480px;
  }

  footer ul {
    height: 258px;
  }

  footer ul li {
    width: 46%;
  }

  .footer-section-border {
    border-right: 1px solid #ffffff25;
    border-bottom: none;
  }
}

/* XL and up */

@media screen and (min-width: 1200px) {
  .logo {
    padding-right: 50px;
  }

  .menu-top-item {
    padding-right: 50px;
  }

  .nav-width-1 {
    width: 200px;
  }
  .nav-width-2 {
    width: calc(100% - 265px);
  }
  .nav-width-3 {
    width: 65px;
  }

  .gradient-filter {
    background-image: linear-gradient(
      to left,
      transparent 0%,
      #cda0537e 50%,
      #cda0537e 75%,
      #009fe3d8 100%
    );
  }

  .hero:not(.hero-main) {
    height: 444px;
  }

  .hero:not(.hero-main) .hero-content {
    padding-bottom: 60px;
  }

  section.first-content {
    margin: -140px 0 0 0;
    padding-top: 12rem;
    background-image: linear-gradient(
      to bottom,
      transparent 0,
      #fff 140px,
      #fff
    );
  }

  .list-page.first-content {
    margin: -140px 0 0 0;
    padding-top: 6rem;
    background-image: linear-gradient(
      to bottom,
      transparent 0,
      #fff 140px,
      #fff
    );
  }

  .card-grid {
    column-gap: 1.5rem;
    row-gap: 2.5rem;
  }

  .card {
    border-width: 8px;
  }

  .card-image .icon-bg {
    width: 50px;
    height: 50px;
    padding: 8px;
    left: 20px;
    bottom: 20px;
  }

  .offers-wrapper {
    flex-wrap: nowrap;
  }

  .single-content-block-container .card-image {
    height: 170px;
  }

  .single-nav a {
    display: block;
    width: 90%;
    white-space: wrap;
    transition-duration: 0s;
  }
  .single-nav a:hover,
  .single-nav a:active,
  .single-nav a.active {
    font-weight: 600;
  }
  .single-nav a:active,
  .single-nav a.active {
    background-color: #fbf8f2;
  }

  .singlenav-fixed {
    position: fixed;
    top: 100px;
    width: 283px;
  }

  .side-back-button {
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }

  .price-table-anchor {
    top: -115px;
  }

  .static-table table {
    margin-top: 3rem;
  }

  .useful-info {
    background-color: #00447c0d;
  }

  .useful-info .useful-content {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .useful-info .tab-content > .tab-pane {
    display: block;
    width: 31%;
  }

  .useful-info .tab-content > .tab-pane div:first-child {
    height: 40px;
  }

  .useful-info .tab-content > .tab-pane div:first-child img {
    width: 30px;
  }

  .useful-info .tab-pane-image {
    height: 294px;
  }

  .useful-info .useful-content .fade:not(.show) {
    opacity: 1;
  }

  .useful-info .useful-content p {
    font-size: 14px;
  }

  .useful-info table,
  .useful-info .btn {
    font-size: 16px;
  }

  .useful-info table td {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .single-main {
    padding-left: 3rem;
  }

  footer > .container {
    padding: 6rem 3rem 2rem 3rem;
  }

  footer ul {
    height: 228px;
  }

  footer ul li {
    width: 50%;
  }
}

/* XXL and up */

@media screen and (min-width: 1400px) {
  header {
    height: 90px;
  }

  .menu-top-item a,
  .lang-selector a {
    height: 90px;
  }

  .nav-width-1 {
    width: 350px;
  }
  .nav-width-2 {
    width: calc(100% - 430px);
  }
  .nav-width-3 {
    width: 80px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-main h1 {
    font-size: 128px;
  }

  .hero h1 .hero-subtitle {
    font-size: 32px;
    left: 142px;
    bottom: -38px;
  }

  .offer-card-title {
    padding: 2rem 1rem;
  }

  .single-content-block-container .card-image {
    height: 250px;
  }

  .gallery-swiper-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .card-title {
    padding: 2rem 1.5rem;
  }
  .card-title h5 {
    font-size: 24px;
    line-height: 32px;
  }
}

/* XXXL and up */

@media screen and (min-width: 1800px) {
  .container {
    max-width: 1720px;
  }

  .menu-top-item {
    padding-right: 90px;
  }

  .menu-top-item,
  .lang-selector {
    font-size: 18px;
  }
  .menu-open .subnav a {
    font-size: 15px;
  }

  .nav-width-1 {
    width: 350px;
  }
  .nav-width-2 {
    width: calc(100% - 450px);
  }
  .nav-width-3 {
    width: 100px;
  }

  .card-grid, .card-grid.gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .single-main .card-grid:not(.gallery) {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .single-content-block-container .card-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero:not(.hero-main) {
    width: 100%;
    height: initial;
    aspect-ratio: 1718 / 436;
  }

  .hero-main .hero-content {
    padding-left: 4rem;
  }

  .main-swiper-card {
    width: 244px;
    height: 240px;
    font-size: 15px;
  }

  .main-swiper-card-image {
    height: 164px;
  }

  /* .offers-wrapper {
    justify-content: space-between;
  } */

  .single-nav {
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }

  .single-main {
    padding-left: 6rem;
  }

  .opening-hours-table {
    font-size: 14px;
    overflow: hidden;
  }

  .opening-hours-table th,
  .opening-hours-table td {
    min-width: 110px;
    padding: 1.5rem;
  }

  footer ul {
    height: 172px;
  }

  footer ul li {
    width: 33%;
  }

  .btn {
    font-size: 16px;
  }
}

@keyframes swimmingText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
