*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000;

  --white: #fff;
  --transition: all 0.3s ease-in;
  --oswald: "Oswald", sans-serif;
}
body {
  font-family: "Open Sans", sans-serif;
  background: var(--black);
}

p {
  font-size: 1rem;
  font-weight: 400;
  color: #c5c5c5;
}
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
}

/* ===== reused style components */

.style-btn {
  width: 9.5em;
  height: 3em;
  border-radius: 30em;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  color: #222;
  text-transform: uppercase;
}

.style-btn::before {
  content: "";
  width: 0;
  height: 100%; /* Ensures it covers the full button height */
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #0f0f0f 0%, #050505 100%);
  transition: width 0.5s ease; /* Smooth transition */
  display: block;
  z-index: -1; /* Keeps it behind the text */
}

.style-btn:hover::before {
  width: 100%; /* Expands to the full width of the button */
}

.style-btn:hover {
  color: var(--white);
  border: 1px solid #fff;
}

/* Section Styles */
.section {
  padding: 4rem 1rem;
}

.section-title h2 {
  font-size: 2.6rem;
  font-weight: 500;
  color: #e2e2e2;
  font-family: var(--oswald);
  text-align: center;
  text-transform: uppercase;
}

.title-icon {
  width: 100px;
  margin: 0 auto 1.5rem;
}

.title-icon svg {
  display: block;
  fill: #e2e2e2;
  text-align: center;
  font-size: 3rem;
  transition: var(--transition);
  margin: auto;
}

.section-title:hover .title-icon svg {
  transform: translateX(1rem);
}

.advertisement-area {
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center;
  background: #000; /* Adjust background if needed */
  padding: 0px 10px;
  font-size: 10px;
  font-weight: bold;
  color: white;
  position: relative; /* Needed for absolute positioning */
}

.ad-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1; /* Ensures it takes available space */
}

.ad-text svg {
  margin: 0 10px;
}

/* Fix Google Translate Alignment */
.translate-dropdown {
  position: absolute;
  right: 20px; /* Moves it to the right */
  top: 25%;
  transform: translateY(-20%); /* Aligns it vertically */
  display: flex;
  align-items: center;
}

/* Hide Google Translate Dropdown on Mobile */
@media screen and (max-width: 768px) {
  .translate-dropdown {
    display: none !important; /* Completely hide it */
  }
}

/* ====== navbar styles ====== */
nav {
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
}


.navbar {
  position: sticky;
  top: 0;
  border-top: 0;
}

.navbar-brand img {
  width: 90px;
}

.navbar-nav a {
  color: #ebebeb;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.94rem;
  transition: all 0.2s ease;
  position: relative;
  /* border: 1px solid red; */
  padding: 0.7rem 0.6rem !important;
}

.navbar-nav a:hover {
  color: #d6d6d6;
}
.navbar-nav a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: #979797;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.navbar-nav a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

@media screen and (max-width: 991px) {
  .navbar-toggle-icon svg {
    fill: #e2e2e2;
    font-size: 1.4rem;
    transition: all 0.2s ease;
  }

  .navbar-toggle-icon:hover svg {
    color: var(--secondary);
    transform: scale(1.1);
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-nav {
    border-top: 1px solid #04332f2d;
    margin-top: 1rem;
    padding: 1rem 0 1rem;
    border-bottom: 1px solid #04332f28;
  }

  .navbar {
    padding: 0.5rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    padding: 0.5rem 0rem;
  }
}

/* ======= Hero Slider ======== */
.carousel-item {
  height: 100vh;
  min-height: 600px;
  position: relative !important;
}
.black-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.carousel-img {
  height: 100vh;
  object-fit: cover;
  object-position: top;
}
.carousel-caption {
  margin-bottom: 100px;
}
.carousel-caption h1 {
  font-size: 3.7rem;
  font-family: var(--oswald);
  font-weight: 500;
}
.carousel-caption .style-btn {
  margin-top: 2rem;
}

/* ======= Hero Category sec ======= */
#category {
  position: relative;
  padding-top: 100px;
  background-color: #000000;
  background-image: linear-gradient(180deg, #000000 0%, #0f0f0f 74%);
}
#category .section-title h2 {
  text-align: center;
}
.category-content-wrap {
  margin: 5rem auto 3rem;
}
#category .section-title p {
  text-align: center;
  margin-top: 1rem;
  color: #e2e2e2;
}
.catg-item {
  /* border: 1px solid #fff; */
  margin: auto;
  color: #e2e2e2;
  cursor: pointer;
}
.catg-item .pic-wrap {
  transition: var(--transition);
}

.catg-item .pic-wrap img {
  border: 2px dashed #6b6b6b;
  border-radius: 50%;
  padding: 0.5rem;
  transition: var(--transition);
  display: block;
  margin: auto;
}
.catg-item:hover img {
  border-radius: 25%;
  border: 2px dashed #bbbbbb;
}
.catg-item h4 {
  font-family: var(--oswald);
  text-transform: uppercase;
  text-align: center;
  margin: 1.5rem 0;
  font-weight: 400;
}
.catg-item p {
  text-align: center;
}

/* ======= Hero Banner ======= */
#hero-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/highlighted_event.webp");
  background-size: cover;
  background-position: center;
  height: auto;
}
.banner-content-wrap h3 {
  text-align: center; /* Center-align the main heading */
  font-family: var(--oswald);
  font-weight: 500;
  color: var(--white);
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem; /* Add spacing below the main heading */
}

.banner-content-wrap h4.course-level {
  text-align: center; /* Center-align the subheading */
  font-family: var(--oswald); /* Optional: Use consistent font for headings */
  font-weight: 400; /* Slightly lighter weight than the main heading */
  font-size: 1.5rem; /* Adjust the size for visual hierarchy */
  color: #c5c5c5; /* Make the subheading visually distinct */
  margin-bottom: 1rem; /* Add spacing below the subheading */
}

/* Optional: Adjust the paragraph styles */
.banner-content-wrap p {
  color: var(--white);
  text-align: center; /* Center-align the text */
}

.banner-content-wrap .sub-title {
  font-weight: 500;
  font-size: 1.2rem;
  margin: 1.5rem auto;
}
.count-down-wrap {
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.count-down-wrap span {
  display: block;
  width: 55px;
  color: #222;
  font-size: 2.2rem;
  font-family: var(--oswald);
  font-weight: 700;
  background-color: #fff;
  /* padding: 5px 10px; */
  border-radius: 0.2rem;
  text-align: center;
}
.count-item p {
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
#hero-banner .style-btn {
  margin: auto;
  display: block;
  width: 12.5em;
  background-color: var(--white);
}

#hero-banner .style-btn:hover::before {
  width: 12.5em;
}

/* ======= Hero Package ======= */
#package {
  background-color: #000000;
  padding-bottom: 0;
}
#package .info-pic-side {
  margin: auto;
  padding: 2rem 1rem;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
}
.info-pic-side:hover img {
  border-radius: 50%;
}
.info-pic-side img {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 450px;
  height: 450px;
  object-fit: cover;
  border: 2px dashed #6b6b6b;
  border-radius: 20%;
  padding: 0.5rem;
  transition: var(--transition);
}
.info-side {
  padding: 1rem 2rem;
  color: #e2e2e2;
}
.info-side h3 {
  color: #e2e2e2;
  font-family: var(--oswald);
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.price {
  display: inline-block;
  padding: 0.5rem;
  background: #e2e2e2;
  color: var(--black);
  font-weight: 700;
  border-radius: 0.4rem;
  margin-bottom: 1rem;
}
#package .info-side p.first {
  font-weight: 600;
}
#package .style-btn {
  margin-top: 1rem;
}
.package-wrap {
  padding: 1rem 0;
}

/* ======= Partners sec ======= */
#partner {
  background-color: #000000;
  background-image: linear-gradient(0deg, #000000 50%, #050505 95%);
  padding-top: 150px;
}

#partner .section-title h2 {
  text-align: center;
}
.partner-content-wrap {
  margin: 4rem auto 3rem;
}
#partner .partner-item {
  margin: auto;
  /* border: 1px solid red; */
}

.partner-item .pic-wrap img {
  border: 2px dashed #6b6b6b;
  border-radius: 50%;
  padding: 0.1rem;
  transition: var(--transition);
  margin: auto;
  display: block;
}
.partner-item:hover img {
  border: 2px solid #353535;
}

/* ======= Register sec ======= */
#register {
  background-color: #000000;
  /* background-image: linear-gradient(180deg, #000000 0%, #0f0f0f 74%); */
}

#register .section-title h2 {
  text-align: center;
}
.register-wrap p {
  text-align: center;
  padding: 2rem 1rem;
  font-weight: 400;
  font-size: 0.95rem;
}
.email-form-wrap {
  width: 100%;
  max-width: 700px;

  margin: auto;
}

.email-form-wrap input {
  background-color: transparent;
  padding: 1rem !important;
  border: 1px solid #b6b6b6;
  color: #fff !important;
}
.email-form-wrap input:focus {
  background-color: transparent;
  padding: 1rem !important;
  border: 1px solid #b6b6b6;
  box-shadow: none;
}
.email-form-wrap input::placeholder {
  color: #818181;
}
.email-form-wrap .style-btn {
  background-color: var(--white);
  height: 3.5em;
}
.email-form-wrap .style-btn::before {
  height: 3.5em;
}

/* ======= Gallery sec ======= */
#gallery {
  background-color: #000000;
  background-image: linear-gradient(180deg, #000000 0%, #0f0f0f 74%);
}

#gallery .section-title h2 {
  text-align: center;
}

/* ========================================= */
.image-gallery-wrap {
  position: relative;
  margin: 4rem 2rem 1rem;
}
/* ====================================== */

/* Splide gallery */
.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splide__slide {
  opacity: 0.5;
}

.splide__slide.is-active {
  opacity: 1;
}

.main-slide img {
  width: auto !important;
  margin: auto;
  display: block;
}

/* ============================================== */

/* ======= Testimonial sec ======= */
#testimonial {
  background-color: #000000; /* Keeping the black background */
  background-size: cover;
  background-position: top;
  height: 400px;
}
#testimonial .section-title h2 {
  text-align: center;
  color: #000000; /* Ensure the title text is white */
}

/* ====== Footer ========= */
footer {
  background-color: #000000;
  /* background-image: linear-gradient(0deg, #000000 0%, #0f0f0f 74%); */
  padding: 1rem 0 4rem;
}
.footer-logo {
  margin: auto;
}
.footer-logo img {
  display: block;
  width: 120px;
  margin: 0.5rem auto 2rem;
}
.link-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.link-wrap a {
  color: #e2e2e2;
  text-transform: uppercase;
  font-size: 0.95rem;
}
footer .copy {
  font-size: 0.9rem;
  text-align: center;
  color: #818181;
  margin: 0;
}
.social-icon-wrap {
  margin: 1rem auto 2rem;
}
.social-icon-wrap ul {
  margin: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icon-wrap ul li:first-child .icon {
  padding: 4px 10px;
}
.social-icon-wrap .icon {
  padding: 4px 8px;
  border-radius: 50%;
  background-color: #e2e2e2;
  border: 1px solid #e2e2e2;
  transition: var(--transition);
}

.social-icon-wrap .icon:hover {
  background-color: #000;
}

.social-icon-wrap .icon:hover i {
  color: #fff;
}

.social-icon-wrap .icon i {
  font-size: 0.95rem;
  color: #000;
}
/* ========================= */
/* ====== About Page  ========= */
#about-hero {
  background-color: #000000;
}
.about-achive {
  margin: 4.5rem auto 0;
  text-align: center;
}
#about-hero .section-title h2 {
  text-align: center;
}
.achiev-pic-wrap {
  overflow: hidden;
  border: 2px dashed #6b6b6b;
  border-radius: 1rem;
  margin: 3rem auto;
  padding: 0.8rem;
  transition: var(--transition);
}

.achiev-pic-wrap:hover {
  border: 2px solid #b9b9b9;
}

.achiev-pic-wrap img {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border-radius: 1rem;
}
.about-achive h3 {
  font-family: var(--oswald);
  color: #e2e2e2;
  font-weight: 500;
  font-size: 1.8rem;
}
.about-achive p {
  margin-top: 1rem;
  font-size: 1.1rem;
}
/* <!-- ==== ABOUT FEATURES ==== --> */
#about-features {
  background-color: #000;
  padding: 0 0 2rem;
  /* background-image: linear-gradient(0deg, #000000 0%, #0a0a0a 74%); */
}
.about-feature-item {
  text-align: center;
  padding: 1rem;
  border: 1px dashed #535353;
  height: 100%;
  border-radius: 1rem;
  transition: var(--transition);
}
.about-feature-item:hover {
  border: 2px dashed #9b9b9b;
}
.about-feature-item h4 {
  font-family: var(--oswald);
  font-size: 1.6rem;
  color: #e2e2e2;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* ===== Our story  ===== */
#story {
  background-image: linear-gradient(0deg, #000000 0%, #050505 74%);
}
#story .section-title h2 {
  text-align: left;
  margin-bottom: 2.5rem;
}

#story .title-icon {
  margin: 0 0 1.4rem 0;
}

#story .title-icon svg {
  margin: 0;
}

#story .info-pic-side {
  height: 100%;
  display: flex;
  align-items: center;
}
#story .info-pic-side img {
  max-width: 300px;
  height: auto;
}

#story .info-side p {
  line-height: 1.7;
}
#story .info-side p span {
  color: #fff;
}

/* ========================= */
/* ====== Upcoming Trips Page  ========= */
#upcoming-trips {
  background-image: linear-gradient(0deg, #000000 0%, #050505 74%);
}
.top-section .section-title {
  margin: 5rem auto 2rem;
}
.events-item {
  border-bottom: 2px dotted #474747;
  padding: 1rem 0;
}
.events-item:hover {
  border-bottom: 1px dashed #b3b3b3;
}

.events-item .event-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  height: 100%;
}
.events-item .event-pic img {
  width: 100%;
  max-width: 200px;
}
.event-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.event-info a {
  display: block;
  width: max-content;
}
.event-info .date {
  font-family: var(--oswald);
  font-weight: 400;
  color: #e2e2e2;
  font-size: 1.8rem;
}
.event-info .event-title {
  font-weight: 400;
  color: #e2e2e2;
  font-size: 1.3rem;
  margin: 1rem 0 1.5rem;
}
.event-time-wrap {
  /* border: 1px solid red; */
  padding: 1rem;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: end;
}
.event-info p {
  color: #acacac;
  margin-bottom: 24px;
}
.event-time-wrap .style-btn {
  margin-top: 1rem;
}
.event-time-wrap .event-time {
  font-family: var(--oswald);
  font-weight: 400;
  color: #e2e2e2;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.coming-time-wrap.event-time-wrap p {
  margin-top: 16px;
}

/* ========================= */
/* ====== Category  Page  ========= */
.category-item-wrap {
  margin: 4rem auto 0;
}

.category-card {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border: 3px double #353535;
  border-radius: 0.5rem;
  margin: 0 auto 2rem;
}

.category-card:hover {
  border: 3px double #b6b6b6;
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 420px;
  transition: transform 0.3s, filter 0.3s;
  object-fit: cover;
  object-position: center;
}

.card-image:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.7)
  );
}

.card-image:hover .overlay {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0)
  );
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  color: #fff;
  transition: all 0.3s ease;
}

.card-title {
  font-family: var(--oswald);
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
}
.category-card p {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 1.2rem;
}

.category-card:hover .card-content {
  opacity: 0;
}

/* ========================= */
/* ====== Contact us  Page  ========= */

#contact {
  background-image: linear-gradient(0deg, #000000 0%, #050505 74%);
}

.contact-content-wrap {
  padding: 2rem 0 0;
  border-bottom: 1px solid #252525;
}
.contact-content-wrap h4,
.contact-info-side h4 {
  color: #e2e2e2;
  font-weight: 400;
  font-size: 1.25rem;
}

.contact-info-side {
  padding-bottom: 150px;
}

.contact-container form {
  width: 100%;
  margin: auto;
  padding: 2rem 0 1rem;
}

.contact-container form input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 12px 20px;
  background-color: #000;
  border: 1px solid #bbbbbb;
  outline: none;
  font-size: 1rem;
  color: var(--white);
  border-radius: 0.2rem;
}

.contact-container form textarea {
  width: 100% !important;
  padding: 12px 20px;
  background-color: #000;
  border: 1px solid #bbbbbb;
  outline: none;
  font-size: 1rem;
  color: var(--white);
}

.contact-container form input:focus,
.contact-container textarea:focus {
  background-color: #000;
  box-shadow: none !important;
  outline: none;
  border: 1px solid #ffffff;
}

.contact-container form input::placeholder,
.contact-container form textarea::placeholder {
  color: #888888;
  font-size: 0.95rem !important;
}

.form-check-input {
  width: 10px !important;
  padding: 8px !important;
  margin: 1px 10px 0 0;
}

.form-check {
  margin-top: 1rem;
  display: flex;
}

.form-check-label {
  color: #c5c5c5;
  font-weight: 400;
  font-size: 0.9rem;
}

.contact-container #submit {
  display: block;
  background-color: #e2e2e2;
  margin: 2rem 0;
}

.has-error li {
  color: #b90202 !important;
  font-weight: 600;
  margin-bottom: 2rem;
}

div#msgSubmit {
  text-align: center;
  margin-top: 15px;
  font-size: 30px;
}

.text-success {
  color: green;
}

.text-danger {
  color: #b90202;
  font-size: 1rem !important;
}
.contact-info-side {
  height: 100%;
  padding: 0 1rem;
}
.contact-info-side p {
  margin-top: 2rem;
}

.whatsapp-btn {
  width: fit-content;
  padding: 0.7rem 1.5rem;
  background-color: #e2e2e2;
  margin: 2rem 0;
  color: #222;
  border-radius: 2rem;
  align-items: center;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.92rem;
}
.whatsapp-btn:hover {
  color: #fff;
}

.whatsapp-btn-wrap .style-btn:hover::before {
  width: 23.5em;
}

.whatsapp-btn i {
  font-size: 1.8rem;
  margin-right: 10px;
  color: #00b809;
}
.contact-bottom-wrap {
  margin-top: 2rem;
}
.contact-bottom-wrap h5 {
  color: #e2e2e2;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.contact-bottom-wrap p {
  margin: 0;
  font-size: 0.92rem;
}
.contact-bottom-wrap .link-text.top {
  margin-top: 0.7rem;
  line-height: 1.5;
}
.contact-bottom-wrap .link-text a {
  color: #fff;
  font-weight: 500;
}
.contact-bottom-wrap .link-text a:hover {
  color: #8a8a8a;
}
.open-hours-wrap {
  margin-top: 1rem;
  padding: 1rem 0 1rem;
  border-top: 1px solid #353535;
}
.open-hours-wrap p {
  line-height: 1.5;
  font-size: 0.9rem;
}

/* <!-- ====  GALLERY PAGE ==== --> */
#gallery {
  background-image: linear-gradient(0deg, #000000 0%, #050505 74%);
}

/* ===== Bootstrap Gallery ======== */

.tz-gallery .row > div {
  padding: 2px;
}

.tz-gallery .lightbox img {
  width: 100%;
  border-radius: 3px;
  position: relative;
}
.tz-gallery .lightbox {
  position: relative;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
  opacity: 1;
}

.baguetteBox-button {
  background-color: transparent !important;
}

.gal-wrap {
  display: flex;
  flex-wrap: wrap;
}
.gallery-item {
  margin: 1rem 0.5rem;
  transition: all 0.3s ease-in;
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-inner {
  display: flex;
  flex-wrap: wrap;
}
.gal-column {
  flex: 33%;
}

/* <!-- ====  Company events PAGE ==== --> */
.events-items-wrap .contact-link {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.95rem;
  display: block;
  color: #e2e2e2;
}
.events-items-wrap .contact-link:hover {
  color: #aaaaaa;
}
.events-items-wrap .no-event-title {
  text-align: center;
  font-size: 1.2rem;
  color: #e2e2e2;
  margin-top: 3rem;
}

/* <!-- ====  Privacy PAGE ==== --> */
#privacy {
  background-color: #000;
}
.privacy-content-wrap {
  margin: 4.5rem auto 3rem;
  width: 100%;
  max-width: 950px;
}
.privacy-content-wrap h5 {
  color: #f3f3f3;
  margin: 2rem 0 1rem;
  font-weight: 600;
}
.privacy-content-wrap p {
  font-size: 0.96rem;
  line-height: 1.5;
  color: #c2c2c2;
}
.privacy-content-wrap p a {
  color: #fff;
  font-weight: 500;
}
/* <!-- ====  Impressum PAGE ==== --> */
.impressum-content-wrap {
  margin: 4rem auto;
  width: 100%;
  max-width: 700px;
}

.impressum-content-wrap h5 {
  font-size: 0.99rem;
  color: #f0f0f0;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
}
.impressum-content-wrap p {
  color: #c2c2c2;
  margin: 0;
  font-size: 0.95rem;
}
.impressum-content-wrap a {
  color: #fff;
  font-weight: 500;
}
.impressum-content-wrap a:hover {
  text-decoration: underline;
}
.privacy-link {
  display: block;
  font-size: 0.99rem;
  margin-top: 2rem;
  font-weight: 400;
}

.sk_branding a.tutorial_link {
  display: none !important;
}

.sk-ww-google-reviews {
  background-color: transparent !important;
}

section#register .section-title {
  margin-top: 125px;
}

.package-bottom-line-warpper {
  margin-left: -1rem;
  margin-right: -1rem;
  padding-top: 4rem;
}

.package-bottom-line {
  height: 1px;
  width: 100%;
  background: #fff;
}

.sport-guy-line .title-icon {
  margin-bottom: 0;
}

.package-bottom-line-warpper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.skiguy-scroll-effect {
  position: absolute;
  top: 0;
  left: -195px;
  z-index: 500;
}

.gallery-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

@keyframes galleryAnimation {
  from { opacity: 0; }
  to {  opacity: 1;}
}

.galler-area-two {
  display: none;

}

.galler-area-two.active-gallery {
  display: flex;
  animation: galleryAnimation 1s;
}

.contact-container form input:focus, .contact-container textarea:focus {
  color: #fff;
}


/* Advertisement Section */
.advertisement-strip {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px 0px;
  text-align: center;
}

.advertisement-strip svg {
  width: 30px;
  height: 30px;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);}
}

section.advertisement-strip p {
  margin-bottom: 0;
  font-size: 20px;
}

/* Cookie Policy */
.cookie-alert {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 400px;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
  background-color: #000;
  color: #fff;
}

.cookie-alert p {
  font-size: 16px;
}

.cookie-alert h5.card-title {
  font-size: 24px;
  font-weight: 400;
  text-align: left;
  text-transform: unset;
}

.cookie-alert.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.btn-toolbar.cookie-btn-toolbar {
  justify-content: space-between;
  gap: 20px;
}

.cookie-btn {
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
  padding: 8px 50px;
  border-radius: 48px;
  font-weight: 700;
  cursor: pointer;
}

/* Modal */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  border: none;
  background-color: #fefefe;
  margin: 0px auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  margin-top: 250px;
}

/* The Close Button */
.newsletter-modal .close {
  color: #000;
  float: right;
  font-size: 28px;
  font-weight: 400;
}

.newsletter-modal .close:hover,
.newsletter-modal .close:focus {
  color: #aaa;
  text-decoration: none;
  cursor: pointer;
}


.newsletter-modal .modal-content {
  max-width: 515px;
  padding: 0;
  border-radius: 12px;
}

.newsletter-modal .modal-content img {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.newsletter-modal .modal-content .close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-modal .modal-txt-content-wrapper {
  padding: 32px;
  text-align: center;
}

.newsletter-modal .register-btn {
  width: max-content;
  font-size: 16px;
  color: rgb(198, 198, 198);
  border-radius: 48px;
  min-height: 56px;
  padding: 16px 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.071em;
  background-color: #000;
  margin-top: 25px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.modal-txt-content-wrapper h2 {
  margin-bottom: 15px;
}

.siteseal-area {
  text-align: center;
  width: 100%;
  position: relative;
  height: 100%;
  display: block;
  margin-top: 20px;
}

#mc-embedded-subscribe {
  width: 9.5em !important;
  border-radius: 30em !important;
  border: none !important;
  color: #000 !important;
}

#mc-embedded-subscribe:hover {
  color: #fff !important;
  border: 1px solid #fff !important;
}

div#mc_embed_signup_scroll {
  display: flex;
  justify-content: center;
  width: 100%;
}

.mc-field-group {
  display: flex;
  gap: 30px;
  max-width: 640px;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

div[for="mce-EMAIL"] {
  position: absolute;
  top: 100%;
  left: 0;
}

.email-input-wrapper {
  width: 100%;
}

a.email-btn.whatsapp-btn.d-flex.style-btn i {
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .cookie-alert {
    max-width: calc(100% - 30px);
  }

  .btn-toolbar.cookie-btn-toolbar {
    justify-content: flex-start;
  }

  .cookie-btn {
    font-size: 14px;
    padding: 8px 30px;
  }

  #testimonial {
    height: 100%;
  }
  .newsletter-modal .modal-content {
    margin-top: 150px;
  }
  .mc-field-group {
    flex-direction: column;
    gap: 15px;

  }

  #mc-embedded-subscribe {
    margin-top: 0;
  }

  .clear.foot {
    display: flex;
    justify-content: center;
  }

  div[for="mce-EMAIL"] {
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 10px;
}
}

.row.contact-form-row {
  justify-content: center;
}

.contact-info-side {
  text-align: center;
}

.whatsapp-btn {
  margin-left: auto;
  margin-right: auto;
}


/* new ------------------------------------------------------------ */
.new-upcoming-event-booking p {
  margin-bottom: 0;
}
.new-upcoming-event-booking {
  align-items: center;
  padding-right: 0;
}
.buy-tickets-new {
  display: flex;
  justify-content: end;
}


/* countdown  */
.pre-index-nav .container-lg {
  justify-content: center;
}
.navbar.navbar-expand-lg.fixed-top.pre-index-navbar {
  justify-content: center;
}
.navbar-brand.pre-index-nav-brand img {
  width: 150px;
}


#countdown-container {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#countdown {
  font-size: 80px;
  color: var(--white);
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/Bowling-new.png"); */
  transition: 0.5s ease;
  height: 300px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  text-transform: capitalize;
}
.countdown-section {
  position: relative;
  height: calc(100vh);
  background-image: url(../img/video/Test\ Flash\ LOGO\ \(Website\).gif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#days, #hours, #minutes, #seconds {
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  width: 120px;
  border-radius: 10px;
}
.counting h4 {
  margin-top: 15px;
}


/* video-box  */
.countdown-video-section {
  background: var(--black);
  height: calc(100vh - 365px);
}
#countdown-video{
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%;
  height: 100%; */
  z-index: -1;
  /* object-fit: cover; */
  
}

@media (min-aspect-ratio: 16/9) {
  #countdown-video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  #countdown-video {
    width: auto;
    height: 100%;
  }
}


@media screen and (max-width:767px) {
  .countdown-section {
    background-image: url(../img/video/mobile-video.gif);
  }
  #countdown-container {
    bottom: 100px;
  }
  #countdown {
  font-size: 25px;
  height: 100%;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  }

  #days, #hours, #minutes, #seconds {
    width: 60px;
    padding: 10px;
  }
  .counting h4 {
    font-size: 14px;
  }
}

.event-pic.with-border-radius img {
  border-radius: 25px;
  border: 5px solid #d5ddfb;
}

nav.navbar.navbar-expand-lg.fixed-top.pre-index-navbar {
  display: none;
}



button.style-btn.view-btn {
  width: max-content;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .row.new-upcoming-event-booking {
    margin-bottom: 15px;
  }

  .buy-tickets-new {
    justify-content: flex-start;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

div#carouselExampleCaptions {
  position: relative;
  top: -85px;
}


/* -------------------------------------------  */
.scrolled {
  background: var(--black);
  border: 1px solid #202020;
}
.nav-container {
  max-width: 1300px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.mobile-break {
  display: none;
}

@media screen and (max-width:767px) {
  .advertisement-area {
    word-wrap: break-word;
  }
  .mobile-break {
    display: block;
  }
  button.style-btn.view-btn {
    padding: 30px 25px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .advertisement-strip .left-svg {
    left: 0px;
    top: 0px;
  }
  .advertisement-strip .right-svg {
    right: 0px;
    top: 0px;
  }
  .advertisement-strip {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width:768px) and (max-width:991px) {
  .advertisement-strip .left-svg {
    left: -15px;
    top: 0;
}
  .advertisement-strip {
    display: flex;
    align-items: center;
    height: 70px;
  }
  .advertisement-strip .right-svg {
    right: -15px;
    top: 0;
}
  .advertisement-area {
    height: 70px;
    word-wrap: break-word;
  }

}
.mobile-nav-active {
  background: var(--black);
}