@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");

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

body {
  font-family: "Sora", sans-serif;
  line-height: 1.6;
  background-color: #000;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0px 20px;
}

/* Header */

.scroll-header {
  display: none;
}

.scroll-header.is-sticky {
  display: block;
  position: fixed;
  width: 100%;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 0px;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  z-index: 99;
  background-color: #000;
}

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

header img {
  max-width: 100px;
  margin-top: 10px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 0px 30px;
  border-radius: 10px;
}

.header nav a {
  text-decoration: none;
  color: #fece02;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.header nav a:hover {
  color: #fff;
}

header .mob-logo {
  display: none;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 19px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Banner */
.banner {
  position: relative;
}
.banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100vh;
}
.banner video {
  object-fit: cover;
}
.mob-banner {
  display: none !important;
}
.banner a {
  background-color: #fece02;
  border-radius: 100px;
  width: 190px;
  height: 50px;
  display: block;
  font-size: 25px;
  color: #002234;
  text-decoration: none;
  font-weight: 700;
  padding: 5px 0px;
  margin: 20px auto;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.banner p {
  font-size: 600;
  color: #000;
  margin-top: 20px;
}
.event {
  padding: 30px 0px;
}
.event h2 {
  margin-bottom: 15px;
  color: #000;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.event img {
  height: auto;
  width: 100%;
}
.bg-video {
  position: absolute;
  content: "";
  background-color: #000;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
}
.text-banner {
  position: absolute;
  content: "";
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  top: 30%;
}
.text-banner img {
  height: auto;
  width: 70%;
  margin: auto;
}
.banner .owl-item img {
  width: 100%;
  height: 100vh;
}
/* .gallery {
  position: absolute !important;
  bottom: 20px;
  z-index: 99;
}
.gallery .item {
  opacity: 1;
  transition: 0.4s ease all;
  margin: 0 20px;
}
.gallery.owl-carousel .owl-item img {
  border-radius: 20px;
  box-shadow: 5px 5px 20px -1px #111010;
}

.gallery .center .item {
  opacity: 1;
}
.gallery.owl-carousel .owl-item:not(.center) .item {
  opacity: 1 !important;
} */

/* Category Section */
.category {
  padding: 50px 0px 0px;
  text-align: center;
}

.category h2 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
}

.category p {
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.category .date {
  font-size: 16px;
  margin: 5px;
}

.category a {
  display: block;
  background: #fece02;
  border: none;
  padding: 5px 13px;
  border-radius: 30px;
  color: #002234;
  cursor: pointer;
  font-size: 16px;
  width: 140px;
  font-weight: 700;
  margin: 10px auto 30px;
  text-decoration: none;
}
/* .category a:hover {
  background: #fece02;
} */

.days-content .day-box {
  width: 48%;
  display: inline-block;
  margin: 30px 0px;
  border: 1px solid #464545;
  border-radius: 10px;
  overflow: hidden;
}
.days-content .day-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.days-content .day-box h3 {
  color: #fff;
  font-size: 20px;
  margin: 0px 0px 10px 0px;
}
.days-content .day-box p {
  font-size: 16px;
}
.days-content .day-box:nth-child(2) {
  margin-left: 20px;
}
/* Footer */
footer {
  padding: 40px 0px;
}

.footer {
  display: flex;
  justify-content: space-between;
}

.footer-links h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

footer .logo img {
  max-width: 200px;
  margin-top: 30px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.footer-links a:hover {
  color: #3ca342;
}
.contact img {
  height: 14px;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-links.social-link a {
  display: inline-block;
  height: 30px;
  width: 30px;
  margin-right: 10px;
  border: 1px solid #fff;
  border-radius: 100px;
  vertical-align: middle;
  padding: 4px 3px;
}
.footer-links.social-link a img {
  height: 20px;
  object-fit: cover;
}

/* upcoming */
.upcoming {
  padding: 50px 0px;
  position: relative;
}
.upcoming h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Anton", sans-serif;
}
.upcoming img {
  width: 100%;
  height: auto;
}
.upcoming .info-div {
  position: absolute;
  bottom: 12%;
  text-align: center;
  left: 20px;
  right: 0px;
}
.upcoming a {
  background-color: #fece02;
  border-radius: 19px;
  width: 180px;
  height: 40px;
  display: inline-block;
  font-size: 20px;
  color: #002234;
  text-decoration: none;
  font-weight: 700;
  padding: 3px 0px;
}
.upcoming p {
  font-size: 14px;
  color: #000;
  margin-top: 20px;
}
.upcoming .book-mob {
  display: none;
}

/* gallery */
.gallery {
  padding: 0px 0px 50px;
}
.gallery h2 {
  margin-bottom: 0px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
}
.gallery p {
  margin-bottom: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  opacity: 90%;
}
.gallery-box {
  padding: 0px 40px;
  text-align: center;
}
.gallery img {
  height: 170px;
  width: 255px;
  border-radius: 10px;
  margin: 10px 5px;
  transition: all 0.2s ease-in-out;
}
.gallery img:hover {
  transform: scale(1.1);
}

/*Slider*/
.slider {
  padding: 0px;
}
.slider h2 {
  margin-bottom: 0px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
}
.slider p {
  margin-bottom: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  opacity: 90%;
}
.slider .owl-carousel .owl-item img {
  height: auto;
  width: auto;
}
.slider .item {
  /* opacity: 0.4; */
  transition: 0.4s ease all;
  margin: 0 20px;
}
.slider .owl-carousel .owl-item video {
  border-radius: 20px;
  border: 1px solid #464545;
}
/* 
.center .item {
  opacity: 1;
} */
/* .owl-carousel .owl-item:not(.center) .item {
  opacity: 0.4 !important;
} */
@media (max-width: 1000px) {
  .item {
    margin: 0 !important;
    overflow: hidden;
  }
  .owl-carousel1 .item video{
    width: 100%;
    height: auto;
  }
}
.active .item {
  opacity: 1;
}

.owl-item {
  -webkit-backface-visibility: hidden;
}

.inner {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
}

.black .inner a {
  color: #000;
  background: #000;
  border-radius: 100px;
  padding: 10px 20px;
  text-decoration: none;
}
.black .inner a:hover {
  border-color: #000;
}

.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
}
.owl-prev {
  position: absolute;
  left: 20px;
  background: #6e686899 !important;
  border-radius: 100px;
  height: 50px;
  width: 50px;
}
.owl-nav span {
  color: #fff;
  font-size: 30px;
}
.owl-next {
  position: absolute;
  right: 50px;
  background: #6e686899 !important;
  border-radius: 100px;
  height: 50px;
  width: 50px;
}

.book-mob {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .header nav a:hover {
    color: #fece02 !important;
  }
  header {
    padding-top: 5px;
    position: relative;
  }
  header .mob-logo {
    display: block;
  }
  nav{
            overflow: hidden;
        top: 64px;
        position: fixed;
        height: calc(100vh - 30px) !important;
        background: #000;
        left: -100vw !important;
        transition: all .5s ease;
    padding: 10px 20px;
        margin: 0;
        display: block !important;
        visibility: hidden;
        width: 95% !important;
  }
  /* nav {
    position: absolute;
    top: 71px;
    right: 0;
    background: #000000;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    box-shadow: 0px 0px 20px 0px #1a1a1a;
  } */
  nav.active {
    left: 0 !important;
    transition: all .3s ease;
    visibility: visible;
    max-height: 100vh;
    opacity: 1;
  }

  header nav a {
    padding: 10px 0;
    display: block;
    width: 100%;
    color: #fff !important;
  }

  .header {
    position: relative;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 10px;
    top: 25px;
  }

  header .logo {
    display: none;
  }

  /* Animate hamburger into X */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .web-banner {
    display: none !important;
  }
  .mob-banner {
    display: block !important;
    position: relative;
    margin-bottom: 20px;
  }
  .banner a {
    width: 170px;
    height: 40px;
    font-size: 18px;
    padding: 6px 0px;
    margin: 20px auto;
  }

  .category {
    padding: 30px 0px;
  }

  .footer {
    display: block;
  }
  .footer-links {
    display: inline-block;
    width: 100%;
    vertical-align: top;
  }
  .footer-links h4 {
    margin-top: 20px;
  }

  .inner-space p {
    font-size: 15px;
  }

  .contact-container {
    flex-direction: column;
  }
  .contact-image {
    min-height: 250px;
    border-radius: 20px 20px 0px 0px;
  }
  .contact-content {
    padding: 30px 25px;
  }
  .contact-content h1 {
    font-size: 28px;
    text-align: center;
  }
  .upcoming .info-div {
    bottom: 17%;
    left: 5px;
  }
  .upcoming img {
    height: auto;
    width: 100%;
  }
  .upcoming .book-mob {
    display: block;
    text-align: center;
    width: 150px;
    height: 40px;
    margin: 20px auto 0px;
    padding: 5px;
  }
  .owl-next {
    right: 20px;
  }
  .upcoming {
    padding: 20px 0px 0px;
  }
  .banner .owl-item img {
    height: auto !important;
  }
  .banner img {
    width: 100%;
    height: 150px;
  }
  .days-content .day-box {
    width: 100%;
    margin: 20px 0px 0px;
  }
  .days-content .day-box:nth-child(2) {
    margin: 20px 0px 20px;
  }
  .banner video {
    height: 550px;
  }
  .text-banner {
    top: 30%;
  }
  .gallery-box {
    padding: 0px;
  }
  .gallery img {
    height: auto;
    margin: 10px 5px;
    width: 46%;
  }
  header img {
    max-width: 70px;
  }
  .footer-links.contact a {
    display: inline-block;
    width: 42%;
  }
}
@media (max-width: 299px) {
  .gallery img {
    height: auto;
    margin: 10px 5px;
    width: 45%;
  }
}

@media (max-width: 374px){
    .footer-links.contact a {
    display: inline-block;
    width: 49%;
    font-size: 12px;
  }
}