/*==========================*/
@import url("https://fonts.googleapis.com/css2?family=Protest+Riot&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  src:
    url("../fonts/Norwester-Regular.woff2") format("woff2"),
    url("../fonts/Norwester-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-family: "Norwester";
}
/*==========================
ROOT
==========================*/

:root {
  --bg-black: #000;
  --bg-light: #121212;
  --white: #ffffff;
  --black: #000000;
  --border: #666666;
  --transition: 0.4s ease;
  --bg-dardred: #740b19;
  --yellow: #f59e0b;
  --font-family: "Poppins";
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  background: var(--white);
}
a {
  text-decoration: none;
  color: var(--bg-black);
  transition: var(--transition);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
p,
span,
strong {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--black);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
}
.site_btn {
  background-color: var(--bg-dardred);
  color: var(--white);
  border-color: var(--bg-dardred);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  animation: bannerFadeUp 1s ease 0.6s both;
}
.site_btn:hover {
  background-color: var(--yellow);
  color: var(--white);
}
.sec_title,
.sec_title span {
  font-family: "Norwester";
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
}
.sec_label {
  display: inline-block;
  color: var(--bg-dardred);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0px;
  margin-bottom: 0;
}
.sec_title span {
  display: block;
  color: var(--yellow);
  font-size: 30px;
  font-weight: 400;
}

/*==========================
EVENT MARQUEE
==========================*/
.event_marquee {
  position: relative;
  overflow: hidden;
  z-index: 12;
  background: var(--bg-dardred);
}
.event_marquee__wrap {
  overflow: hidden;
  padding: 22px 0;
}
.event_marquee__track {
  display: flex;
  width: 100%;
}
.event_marquee__track:hover {
  animation-play-state: paused;
}
.event_marquee__list {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 3px 20px;
  flex-shrink: 0;
}
.about_sec_img img {
  width: 100%;
  position: relative;
  z-index: 2;
  max-height: 440px;
  object-fit: cover;
}
.event_marquee__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
}
.event_marquee__list li span {
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0px;
  display: inline-block;
}
.event_marquee__list li span:last-child {
  color: var(--white);
}
.event_marquee__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--bg-dardred);
  border-radius: 50%;
  font-size: 12px;
  color: var(--bg-dardred);
  flex-shrink: 0;
  animation: marqueePulse 2s ease-in-out infinite;
}
.event_marquee__list li:nth-child(3) .event_marquee__badge {
  animation-delay: 0.4s;
}
.event_marquee__list li:nth-child(5) .event_marquee__badge {
  animation-delay: 0.8s;
}
.event_marquee__sep {
  color: var(--yellow);
  font-size: 10px;
  opacity: 0.7;
  animation: marqueeSpin 6s linear infinite;
}
@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.event_marquee::before,
.spaces_sec::before,
.cooming_soon_sec_second::before,
.food_stall_sc::before,
.faq_sec::before,
.story_sec .container::before {
  position: absolute;
  content: "";
  height: 13px;
  width: 100%;
  background: url("../img/arrow-white.png") center center / 9px;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.event_marquee::after,
.spaces_sec::after,
.cooming_soon_sec_second:after,
.food_stall_sc::after,
.faq_sec::after,
.story_sec .container::after {
  position: absolute;
  content: "";
  height: 13px;
  width: 100%;
  background: url("../img/arrow-white.png") center center / 9px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}

/*==========================
HEADER css
==========================*/
.site-header {
  transition: all 0.3s;
  background-color: var(--bg-dardred);
  padding: 10px 0px 20px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  isolation: isolate;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
.site-header.sticky {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}
.site-header .site-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  line-height: 1.1;
}
.site-header .site-logo img {
  max-width: 85px;
  transition: all 0.3s;
}
.site-header .site-logo:hover {
  color: var(--white);
  opacity: 0.9;
}
.site-header .site-logo__script {
  font-family: "Bonheur Royale", cursive;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}
.site-header .site-logo__tagline {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
.site-header .site-logo__name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}
.site-header .menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.site-header .menu-toggle span {
  display: block;
  width: 32px;
  height: 1.5px;
  background-color: var(--white);
  transition: var(--transition);
}
.site-header .menu-toggle span:first-child {
  width: 32px;
}
.site-header .menu-toggle span:nth-child(2) {
  width: 40px;
}
.site-header .menu-toggle:hover span {
  opacity: 0.8;
}
.site-header .site-menu {
  background-color: var(--bg-dardred);
  color: var(--white);
  width: 400px;
  z-index: 1060;
}
.site-header .offcanvas-backdrop {
  z-index: 1040;
}
.site-header .site-menu .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px;
}
.site-header .site-menu .offcanvas-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-header .site-menu .offcanvas-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 30px;
}
.site-header .site-menu__list li {
  margin-bottom: 20px;
}
.site-header .site-menu__list a {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding: 5px 0 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.site-header .social__list ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header .social__list li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: var(--white);
}
.site-header .social__list h5 {
  padding-bottom: 20px;
  border-top: 1px solid #822430;
  padding-top: 20px;
}
.site-header .social__list li a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}
.site-header .site-menu__list li:last-child a {
  border-bottom: 0px;
}
.site-header .site-menu__list a:hover {
  color: var(--white);
  opacity: 0.75;
  padding-left: 8px;
}
header.site-header.sticky .site-logo img {
  max-width: 70px;
  transition: all 0.3s;
}
header.site-header.sticky {
  padding: 5px 0 15px 0;
  transition: all 0.3s;
}
.header_contact_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header_right_mian {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header_social ul {
  display: flex;
  align-items: center;
  gap: 0px;
}
.header_social ul li a {
  color: var(--white);
  font-size: 25px;
  padding: 0 5px;
  margin: 0 5px;
  position: relative;
  line-height: 1;
}
.header_social ul li a:hover {
  color: var(--yellow);
}
/* .header_social ul li a:before {
    position: absolute;
    content: '';
    right: -7px;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--white);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
} */
/* .header_social ul li:last-child a:before{display: none;} */

.site-header::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 100%;
  background: url("../img/arrow-white.png") center center / 9px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}
.header_social ul li.facebokk-cover a {
  font-size: 24px;
}

/*==========================
BANNER SEC
==========================*/
.banner_sec {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
}
.banner_sec:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 100%;
  background: url(../img/arrow-white.png);
  background-position: center center;
}
.banner_sec__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner_sec__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: bannerVideoZoom 20s ease-in-out infinite alternate;
}
@keyframes bannerVideoZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.15);
  }
}
.banner_sec__overlay {
  position: absolute;
  inset: 0;
  opacity: 1;
  background: var(--bg-dardred);
  background: linear-gradient(0deg, rgb(0 0 0) 0%, rgba(255, 255, 255, 0) 100%);
  height: 100%;
  width: 100%;
}
.banner_sec__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 20px 80px;
}
.banner_sec__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 840px;
  margin: 0 auto;
}
h1.banner_sec__title,
h1.banner_sec__title span {
  font-family: "Norwester";
  font-size: 50px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--white);
  padding-bottom: 20px;
  line-height: 1;
}
h1.banner_sec__title span {
  color: var(--yellow) !important;
}
h1.banner_sec__title strong {
  font-size: 55px;
  text-transform: capitalize;
  font-weight: 400;
  color: var(--yellow);
  padding-bottom: 10px;
  font-family: "Protest Riot", sans-serif;
}
p.banner_sec__subtitle {
  font-size: 18px;
  color: var(--white);
  padding-bottom: 40px;
  font-weight: 400;
}
.banner_sec a.site_btn {
  background: var(--white);
  color: var(--black);
}
.banner_sec a.site_btn:hover {
  background: var(--bg-dardred);
  color: var(--white);
}

/*==========================
coming soon SEC
==========================*/
.cooming_soon_sec_second {
  padding: 80px 0;
  background-color: var(--bg-dardred);
  text-align: center;
  position: relative;
}
.cooming_soon_sec_second .about_sec__divider {
  background: var(--white);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(241, 159, 36, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  margin: auto;
  margin-bottom: 10px;
}
.cooming_soon_sec_second .container {
  position: relative;
  z-index: 2;
}
.cooming_soon_sec_second h2 {
  color: #fff;
  margin-bottom: 10px;
}
.cooming_soon_sec_second p {
  color: #ececec;
  max-width: 700px;
  margin: auto;
  line-height: 1.3;
}
.cooming_soon_sec_second .coming_counter {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cooming_soon_sec_second .time_box {
  width: 100%;
  height: 110px;
  max-width: 170px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 120, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
}
.cooming_soon_sec_second .time_box:hover {
  transform: translateY(-8px);
  border-color: #f5c15c;
}
.cooming_soon_sec_second .sec_label {
  color: var(--white);
}
.cooming_soon_sec_second .time_box span {
  font-family: Norwester;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.cooming_soon_sec_second .time_box small {
  margin-top: 10px;
  color: #fbfbfb;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* food section css */
.food_stall_sec {
  background: url(../img/pattern-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.food_stall_sec .container,
.events_sec {
  position: relative;
  z-index: 1;
}
/* .food_stall_sec::before {content: "";position: absolute;inset: 0;background: url(../img/bg2.jpg) center no-repeat;background-size: cover;opacity: 0.09;} */
.food_stall_sec .food_stall_img {
  position: relative;
  text-align: center;
}
.food_stall_sec .food_stall_img img {
  width: 100%;
}
.food_stall_sec .food_chip {
  position: absolute;
  background: var(--bg-dardred);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  color: var(--white);
}
.food_stall_sec .chip_one {
  top: 45px;
  left: 0;
  background: var(--yellow);
}
.food_stall_sec .chip_two {
  top: 110px;
  right: 0;
  background: #6cbdff;
}
.food_stall_sec .chip_three {
  bottom: 140px;
  left: -30px;
  background: var(--white);
  color: #d78100;
}
.food_stall_sec .chip_four {
  bottom: 0px;
  right: 10px;
  background: #3f51b5;
}
.food_stall_sec .coming_badge {
  color: var(--black);
  border: 1px solid rgb(116 11 25);
}
.food_stall_sec .feature_box:hover {
  background: #d86800;
  color: #fff;
}
.food_stall_sec .food_btn:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(216, 104, 0, 0.25);
}
.food_stall_sec .site_btn {
  display: block;
  width: max-content;
}
.food_stall_sec button.site_btn {
  outline: none;
  box-shadow: none;
  border: 0px;
}
.food_form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  row-gap: 20px;
}
.food_form {
  width: 100%;
}
.food_form form input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #bbbbbb;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  color: #222;
  outline: none;
  transition: all 0.3s ease;
}
.food_form form input::placeholder {
  color: #999;
}
.food_form form input:focus {
  border-color: var(--bg-dardred);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}
.food_form form .site_btn:active {
  transform: scale(0.98);
}
/* .food_stall_wrapper {background: var(--white);padding: 40px;border-radius: 20px;margin-top: 50px;} */
.events_sec .about_sec__divider {
  margin: 0 auto 15px auto;
  background: var(--white);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(116, 11, 25, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  margin-bottom: 10px;
}
.events_main {
  overflow: visible;
  padding: 40px 0 0 0;
  overflow-x: hidden;
}
.events_main .swiper-slide {
  transition: 0.45s;
}
.events_main .event_card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
}
.events_main img,
.events_main video {
  width: 100%;
  object-fit: fill;
  display: block;
}
/* .events_main .swiper-slide-active .event_card{box-shadow:0 30px 60px rgba(0,0,0,.25);} */
.events_sec h2.sec_title {
  margin: 0px;
}
.food_form {
  padding-top: 25px;
}
.food_form h3 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 10px;
}
.food_content {
  padding-left: 40px;
}
.events_main .event_card:hover {
  transform: translateY(-10px);
  transition: all 0.3s;
}

/*==========================
faq section css
==========================*/
.faq_sec {
  background: var(--bg-dardred);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.faq_sec .about_sec__divider {
  background: var(--white);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(241, 159, 36, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  margin: auto;
  margin-bottom: 10px;
}
/* .faq_sec::before {content: "";position: absolute;inset: 0;background: url(../img/bg2.jpg) center no-repeat;background-size: cover;opacity: 0.09;} */
.faq_sec .faq_main span.sec_label,
.faq_sec .faq_main h2.sec_title {
  color: var(--white);
}
.faq_sec .faq_accordion .accordion-item {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq_sec div#faqAccordion {
  max-width: 700px;
  margin: 0 auto;
}
.faq_sec .faq_main {
  position: relative;
  z-index: 1;
}
.faq_sec .faq_accordion .accordion-button {
  background: var(--white);
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 19px;
  box-shadow: none;
  display: flex;
  align-items: center;
}
.faq_sec .faq_accordion .accordion-button:not(.collapsed) {
  background: var(--white);
  color: #000;
}
.faq_sec .faq_number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #f5c15c;
  color: var(--bg-dardred);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-weight: 700;
  font-size: 14px;
}
.faq_sec .faq_accordion .accordion-body {
  color: var(--black);
  padding: 0 20px 11px 75px;
  font-size: 16px;
  line-height: 1.2;
}
.faq_sec .faq_accordion .accordion-button::after {
  background-image: none;
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transform: none;
}
.faq_sec .faq_accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  background-image: none;
}
.faq_sec .faq_accordion .accordion-button:focus {
  box-shadow: none;
}
.faq_sec .faq_heading {
  padding-bottom: 10px;
}

/*==========================
Sponsors css
==========================*/
/* .Sponsors_sec {padding: 80px 0;background: #fff;overflow: hidden;position: relative;}
.Sponsors_sec .about_sec__divider {margin: 0 auto 15px auto;background: var(--white);background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(116, 11, 25, 1) 50%, rgba(255, 255, 255, 0) 100%);}
.Sponsors_sec .container {position: relative;z-index: 1;}
section.Sponsors_sec .sec_title {margin-bottom: 10px;}
.Sponsors_sec .section_heading {text-align: center;margin-bottom: 30px;}
.Sponsors_sec .section_heading p {max-width: 650px;margin: auto;color: #000000;line-height: 1.2;font-size: 16px;}
.Sponsors_sec .Sponsors_slider {position: relative;}
.Sponsors_sec .Sponsors_card {height: 150px;background: #fff;border-radius: 22px;border: 1px solid #c1c1c1;display: flex;align-items: center;justify-content: center;transition: .35s;box-shadow: 0 15px 35px rgba(0, 0, 0, .05);}
.Sponsors_sec .Sponsors_card:hover {border-color: var(--bg-dardred);box-shadow: 0 20px 40px rgba(116, 11, 25, .15);}
.Sponsors_sec .Sponsors_card img {max-width: 120px;transition: .4s;}
.Sponsors_sec .Sponsors_card:hover img {filter: none;transform: scale(1.08);}
.Sponsors_sec .Sponsors_prev,
.Sponsors_sec .Sponsors_next {width: 48px;height: 48px;border-radius: 50%;position: absolute;top: 50%;transform: translateY(-50%);background: #740b19;color: #fff;display: flex;align-items: center;justify-content: center;cursor: pointer;z-index: 5;transition: .3s;}
.Sponsors_sec .Sponsors_prev {left: -24px;}
.Sponsors_sec .Sponsors_next {right: -24px;}
.Sponsors_sec .Sponsors_prev:hover,
.Sponsors_sec .Sponsors_next:hover {background: #d4a24c;color: var(--bg-dardred);}
section.Sponsors_sec .sec_title span {
    display: inline-block;
    margin: 0px;
} */
/* sponsor css */
.sponsor_sec {
  padding: 100px 0 100px;
  background: url(../img/pattern-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.sponsor_sec .section_heading {
  text-align: center;
  margin-bottom: 70px;
}
.sponsor_sec .sponsor_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sponsor_sec .sponsor_card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 45px 10px 20px;
  text-align: center;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}
.sponsor_sec .sponsor_tag {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dardred);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--bg-dardred);
}
.sponsor_sec .sponsor_logo {
  flex-wrap: wrap;
  row-gap: 15px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor_sec .sponsor_logo img {
  max-width: 150px;
  padding: 0 15px;
  transition: all 0.3s;
}
.sponsor_sec .sponsor_logo img:hover {
  transform: scale(1.07);
  transition: all 0.3s;
}
.sponsor_sec .sponsor_large {
  grid-column: span 1;
}
.sponsor_sec .double_logo {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}
.sponsor_sec .school_partner {
  margin-top: 50px;
  position: relative;
}
.sponsor_sec .partner_title {
  background: var(--white);
  color: var(--black);
  padding: 10px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid var(--bg-dardred);
  width: fit-content;
  margin: 0 auto;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.sponsor_sec .partner_slider {
  display: flex;
  gap: 25px;
  background: var(--white);
  padding: 30px;
  border-radius: 25px;
  justify-content: space-between;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.sponsor_sec .sponsorSwiper {
  padding: 60px 30px 40px;
  background: var(--white);
  box-shadow: 0 5px 26px #00000021;
  border-radius: 20px;
}
.sponsor_sec .swiper-slide {
  display: flex;
  justify-content: center;
}
.sponsor_sec .partner_item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.sponsor_sec .partner_item img {
  max-width: 70%;
  height: auto;
}
.sponsor_sec .partner-prev,
.sponsor_sec .partner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--bg-orange);
  color: var(--bg-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.sponsor_sec .partner-prev {
  left: -22px;
}
.sponsor_sec .partner-next {
  right: -22px;
}
.sponsor_sec .partner-prev:hover,
.sponsor_sec .partner-next:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.sponsor_sec .partner-prev i,
.sponsor_sec .partner-next i {
  font-size: 18px;
}
.sponsor_sec .sponsor_grid_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* book now sticky section */
.book_now_mian .container {
  display: grid;
  grid-template-columns: 330px auto;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
.book_now_mian {
  padding: 7px 0;
  background-color: var(--bg-dardred);
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 20px #0000004d;
}
.book_now_mian .site_btn img {
  max-width: 102px;
}
.book_now_mian .btn_grp {
  display: flex;
  align-items: center;
  gap: 10px;
}
.book_now_mian .site_btn:last-child {
  background: var(--bg-dardred);
}
.book_now_mian .site_btn:last-child:hover {
  background-color: var(--yellow);
  color: var(--black);
}
.book_now_mian .site_btn:first-child {
  padding: 5px 20px;
  border: 1px solid var(--white);
}
.book_now_mian .booking_text h2.sec_title {
  text-align: left;
  margin: 0px;
  color: var(--white);
  font-size: 24px;
}
.book_now_mian .booking_text h2.sec_title span {
  font-size: 24px;
}

/* Information section css */
.Information_sec {
  padding: 80px 0;
  background: var(--bg-dardred);
  position: relative;
  overflow: hidden;
}
section.Information_sec .section_title {
  padding-bottom: 15px;
}
.Information_sec .section_title p {
  color: var(--white);
  max-width: 650px;
  margin: auto;
}
.Information_sec .about_sec__divider {
  background: var(--white);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(241, 159, 36, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  margin: auto;
  margin-bottom: 10px;
}
.Information_sec .container {
  position: relative;
  z-index: 2;
}
.Information_sec .info_card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.35s;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.Information_sec .info_card h3 {
  color: var(--white);
  font-weight: 700;
  font-size: 22px;
}
.Information_sec span.sec_label,
.Information_sec .sec_title {
  color: var(--white);
}
.Information_sec .info_card:hover {
  background: rgba(255, 255, 255, 0.12);
}
.Information_sec .info_card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: #d9b46b;
  border-radius: 20px;
}
.Information_sec .info_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: auto auto 25px;
  border: 1px solid rgba(217, 180, 107, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9b46b;
  font-size: 25px;
}
.Information_sec .info_card span {
  display: block;
  color: #d9b46b;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.Information_sec .info_card h4 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.Information_sec .info_card small {
  color: var(--white);
  font-size: 16px;
}
.Information_sec .site_btn {
  margin-top: 25px;
  display: block;
}
.Information_sec span {
  margin: 0;
}
.Information_sec .info_card a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}
.Information_sec .info_card img {
  width: 100%;
  max-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Information_sec .info_card.bg_transparent {
  background: transparent;
  border: 0;
  padding: 0;
  justify-content: center;
}
.Information_sec .info_card.bg_transparent a.site_btn {
  background: var(--yellow);
  width: max-content;
  margin: 20px auto 0 auto;
  padding: 6px 20px;
  height: auto;
}
.Information_sec .info_card.bg_transparent a.site_btn:hover {
  background-color: var(--white);
  color: var(--black);
}
.Information_sec .info_card.bg_transparent:hover {
  background: transparent;
}
.Information_sec .info_card.bg_transparent:after {
  display: none;
}
/* second mocup css */

/* about css start */
.about_sec_second {
  position: relative;
  background: url(../img/pattern-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  overflow: hidden;
}
.about_sec_second .about_gallery {
  position: relative;
  padding: 0px 40px 40px 0px;
}
.about_sec_second .about_img_big {
  overflow: hidden;
}
.about_sec_second .about_img_big img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
.about_sec_second .about_content {
  padding-left: 40px;
}
.about_sec_second .about_img_small {
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 300px;
  overflow: hidden;
  max-height: 300px;
}
.about_sec_second .about_img_small img {
  width: 100%;
  display: block;
  border: 3px solid var(--white);
  border-radius: 10px;
}
.about_sec_second .about_days {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  background: var(--bg-dardred);
  border-radius: 100%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--white);
  z-index: 1;
}
.about_sec_second .about_days h2 {
  margin: 0;
  font-size: 35px;
  line-height: 1;
  font-weight: 700;
}
.about_sec_second .about_days p {
  margin: 0;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.about_sec_second .shape_circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(116, 11, 25, 0.15);
  border-radius: 50%;
  bottom: -40px;
  left: -70px;
}
.about_sec_second .about_content > p {
  color: #333333;
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 20px;
}
.about_sec_second .about_legacy {
  background: #eee1da;
  border-left: 3px solid var(--bg-dardred);
  padding: 15px 20px;
  border-radius: 20px;
}
.about_sec_second .about_legacy h5 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--black);
}
.about_sec_second .about_legacy p {
  margin: 0;
  color: #000000;
  line-height: 22px;
}
.about_sec_second .about_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about_sec_second .about_btn a img {
  max-width: 140px;
}
.about_sec_second .about_btn a:first-child {
  padding: 5px 30px;
}
.about_sec_second .about_btn a:last-child {
  background: var(--white) 00;
  border: 1px solid var(--bg-dardred);
  color: var(--black);
}
.about_sec_second .about_btn a:last-child:hover {
  background-color: var(--yellow);
  color: var(--white);
  border-color: var(--white);
}

.spaces_sec {
  padding: 100px 0 100px 0;
  background: var(--bg-dardred);
  overflow: hidden;
  position: relative;
}
.spaces_sec .section_heading span.sec_label {
  color: var(--white);
}
.spaces_sec .section_heading h2.sec_title {
  color: var(--white);
}
.spaces_sec .space_item {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.spaces_sec .space_img {
  width: 58%;
  min-height: 450px;
  overflow: hidden;
}
.spaces_sec .space_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  min-height: inherit;
}
.spaces_sec .space_content {
  width: 48%;
  margin-left: -90px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  padding: 82px 50px 50px;
  border-radius: 10px;
  box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}
.spaces_sec .space_no {
  position: absolute;
  right: 40px;
  top: 40px;
  font-size: 80px;
  font-weight: 800;
  color: rgb(153 153 153 / 8%);
}
.spaces_sec .space_content h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-family: Norwester;
}
.spaces_sec .space_content p {
  line-height: 1.4;
  color: #333333;
  margin-bottom: 40px;
}
.spaces_sec .spaces_navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.spaces_sec .space_prev,
.spaces_sec .space_next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--bg-dardred);
  cursor: pointer;
  transition: 0.4s;
}
.spaces_sec .space_prev:hover,
.spaces_sec .space_next:hover {
  background: var(--yellow);
  color: var(--white);
}
.spaces_sec .spaces_dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 8px;
}
.spaces_sec .spaces_dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: #d7d7d7;
  opacity: 1;
  transition: 0.3s;
  padding: 0;
  display: inline-block;
}
.spaces_sec .spaces_dot.active {
  width: 36px;
  border-radius: 20px;
  background: var(--yellow);
}
.sponsor_sec .sponsor_card:hover {
  box-shadow: 0 0px 35px rgb(0 0 0 / 16%);
  transition: 0.4s;
}

.our_artist_sec {
  padding: 100px 0;
  background: url(../img/pattern-bg.jpg);
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}
.our_artist_sec .artist_card {
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}
.our_artist_sec .artist_frame {
  position: relative;
  padding: 0px;
  border-radius: 20px;
  background: transparent;
}
.our_artist_sec .section_title {
  padding-bottom: 35px;
  max-width: 600px;
  margin: 0 auto;
}
.our_artist_sec .artist_frame img {
  width: 100%;
}
.our_artist_sec h2.sec_title {
  margin-bottom: 10px;
}
.our_artist_sec .artist_day {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
}
.our_artist_sec .artist_content {
  margin-top: 15px;
}
.our_artist_sec .artist_date {
  display: block;
  color: #d88900;
  font-weight: 600;
  margin-bottom: 12px;
}
.our_artist_sec .artist_content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.our_artist_sec .artist_content h3 span {
  display: block;
}
.our_artist_sec .artist_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.our_artist_sec .artist_frame::before {
  position: absolute;
  content: "";
  height: 60px;
  width: 100%;
  background: var(--bg-dardred);
  border-radius: 20px;
  left: 0;
  bottom: 0;
}
.our_artist_sec .artist_nav {
  display: flex;
  gap: 10px;
}
.our_artist_sec .artist_prev,
.our_artist_sec .artist_next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-dardred);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.our_artist_sec .swiper-pagination {
  position: relative;
}
.our_artist_sec .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
}
.our_artist_sec .swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 20px;
  background: var(--bg-dardred);
}
.artist_card .artist_img img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.our_artist_sec .artist_prev:hover,
.our_artist_sec .artist_next:hover {
  background: var(--yellow);
}

.food_stall_sc {
  padding: 100px 0;
  background: var(--bg-dardred);
  overflow: hidden;
  position: relative;
}
.food_stall_sc .stall_content {
  color: var(--white);
}
.food_stall_sc .stall_content > p {
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 30px;
}
.food_stall_sc .stall_box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}
.food_stall_sc .stall_icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  color: var(--bg-dardred);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}
.food_stall_sc .stall_box h4 {
  font-size: 20px;
  margin: 0;
  color: var(--white);
  font-weight: 700;
}
.food_stall_sc .stall_box p {
  margin: 5px 0 0;
  color: #ddd;
  font-size: 14px;
}
.food_stall_sc .stall_image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.food_stall_sc .stall_image img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  min-height: 540px;
}
.food_stall_sc .stall_form {
  border: 1px solid var(--white) 52;
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 82%;
  background: #1818183d;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}
.food_stall_sc .stall_form h4 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 700;
}
.food_stall_sc .stall_form input {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 18px;
  margin-bottom: 10px;
  outline: none;
}
.food_stall_sc .stall_form button.site_btn {
  border: 0px;
  margin-top: 10px;
}
.food_stall_sc .stall_content .sec_label,
.stall_content .sec_title {
  color: var(--white);
}
.food_stall_sc .stall_image:hover img {
  transform: scale(1.08);
  transition: all 0.3s;
}
.food_stall_sc h2.sec_title span {
  margin: 0px;
  display: block;
}
.food_stall_sc h2.sec_title {
  margin-bottom: 10px;
}

/* Footer section css */
.footer_sec {
  background: #fffff4;
  display: grid;
  align-items: center;
  gap: 20px;
  padding: 40px 50px 220px 50px;
  position: relative;
  overflow: hidden;
}
.footer_sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/bg2.jpg) center no-repeat;
  background-size: cover;
  opacity: 0.03;
}
.footer_sec .footer_logo {
  text-align: center;
  margin-bottom: 20px;
}
.footer_cta_wrapper {
  position: relative;
  z-index: 1;
}
.footer_sec::after {
  background: url(../img/ahd.png);
  position: absolute;
  content: "";
  left: 0;
  bottom: 64px;
  width: 100%;
  height: 127px;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer_sec .footer_logo img {
  max-width: 140px;
}
.footer_sec .footer_logo {
  text-align: center;
}
.footer_sec .footer_content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer_sec .footer_content h2 {
  margin-bottom: 20px;
}
.footer_sec .footer_content h3 {
  font-size: 50px;
  color: var(--bg-orange);
  font-weight: 400;
  margin-bottom: 25px;
  font-family: "Bonheur Royale", cursive;
  line-height: 1;
}
.footer_sec .footer_social {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer_sec .footer_social span {
  font-size: 18px;
  color: #081327;
  font-weight: 400;
  text-transform: capitalize;
}
.footer_sec .footer_social ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer_sec .footer_social ul li {
  list-style: none;
}
.footer_sec .footer_social ul li a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-dardred);
  color: var(--white);
  font-size: 20px;
  transition: 0.4s;
}
.footer_sec .footer_social ul li a:hover {
  background: var(--yellow);
}
.footer_sec span.footer_sub_heading {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 5px;
  font-family: Norwester;
  font-size: 20px;
}
.footer_sec .footer_social ul.emaicover {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 20px;
  gap: 5px;
}
.footer_social.media span {
  font-family: Norwester;
  font-size: 20px;
}

ul.emaicover {
  margin-bottom: 20px;
}
ul.emaicover li {
  display: flex;
  align-items: center;
  gap: 10px;
}
marquee {
  animation: marquee 10s linear infinite;
}

/* =========================================
   STORY SECTION START
========================================= */

.story_sec {
  padding: 80px 0 0 0;
  position: relative;
}
.story_sec .container {
  background: #740b19;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  /* outline: 1px solid #740b19; */
  position: relative;
}
.story_main {
  padding: 40px 50px;
}
.story_main::before {
  position: absolute;
  content: "";
  height: calc(100% - 26px);
  width: 15px;
  background: url("../img/arrow-white-down.png") center center / 15px;
  top: 13px;
  left: 0px;
  z-index: 1;
}
.story_main::after {
  position: absolute;
  content: "";
  height: calc(100% - 26px);
  width: 15px;
  background: url("../img/arrow-white-down.png") center center / 15px;
  bottom: 13px;
  right: 0px;
  z-index: 1;
}

.story_sec .story_sec__heading {
  max-width: 750px;
  margin: 0 auto 35px auto;
  text-align: center;
}
.story_sec .story_sec__slider {
  width: 100%;
  overflow: hidden;
}
.story_sec .story_sec__slider .swiper-wrapper {
  align-items: stretch;
}
.story_sec .story_sec__slider .swiper-slide {
  height: auto;
}
.story_sec .story_sec__content {
  position: relative;
  padding-right: 50px;
}
.story_sec .story_sec__title {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
}
.story_sec .story_sec__title span {
  display: block;
  color: var(--yellow);
}
.story_sec .story_sec__description {
  margin: 0 0 30px;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.story_sec .site_btn {
  background: var(--yellow);
}
.story_sec .story_sec__heading span.sec_title {
  color: #ffffff;
}
.story_sec .story_sec__video_wrap {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #740b19;
  border-radius: 20px;
  border: 4px solid #ffffff;
}
.story_sec .story_sec__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story_sec .story_sec__video {
  transition: transform 0.7s ease;
}
.story_sec .story_sec__video_wrap:hover .story_sec__video {
  transform: scale(1.04);
}
.story_sec .story_sec__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
.story_sec .story_sec__navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}
.story_sec .story_sec__prev,
.story_sec .story_sec__next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  cursor: pointer;
  transition: 0.4s;
  color: var(--white);
  border: 0px;
}
.story_sec .story_sec__prev:hover,
.story_sec .story_sec__next:hover {
  background: var(--white);
  color: var(--black);
}

.story_sec .story_sec__prev i,
.story_sec .story_sec__next i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
@keyframes storyContentFade {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes storyVideoFade {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* back bottom to top btn */
.back_top_btn {
  position: fixed;
  right: 25px;
  bottom: 40px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #e8c47c;
  border-radius: 50%;
  background: #740b19;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.8);

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease,
    background 0.3s ease;
}

.back_top_btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  background-color: var(--bg-dardred);
}
.back_top_btn .back_top_btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}
.back_top_btn .back_top_btn__icon i {
  font-size: 16px;
  transition: transform 0.35s ease;
  color: var(--white);
}
.back_top_btn:hover {
  background: var(--yellow);
  color: var(--white);
  transform: translateY(-5px) scale(1.05);
}
.back_top_btn:hover .back_top_btn__icon i {
  animation: backTopArrow 0.7s ease infinite alternate;
}
@keyframes backTopArrow {
  0% {
    transform: translateY(3px);
  }

  100% {
    transform: translateY(-3px);
  }
}
.back_top_btn.show::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--bg-dardred);
  border-radius: 50%;
  animation: backTopPulse 2s ease-out infinite;
}
@keyframes backTopPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

/*==========================
coming soon SEC sticky
==========================*/
.cooming_soon_sec_new {
  padding: 7px 0;
  background-color: var(--bg-dardred);
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 20px #0000004d;
}
.cooming_soon_sec_new .about_sec__divider {
  background: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(241, 159, 36, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  margin: auto;
  margin-bottom: 10px;
}
.cooming_soon_sec_new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/bg2.jpg) center no-repeat;
  background-size: cover;
  opacity: 0.09;
}
.cooming_soon_sec_new h2 {
  color: #fff;
  margin-bottom: 0px;
  font-size: 30px;
}
.tiler_head {
  text-align: left;
}
.cooming_soon_sec_new .container {
  display: grid;
  align-items: center;
  gap: 180px;
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
}
.cooming_soon_sec_new h2 span {
  font-size: 20px;
  margin: 0px;
  display: inline-block;
}
.cooming_soon_sec_new p {
  color: #ececec;
  max-width: 700px;
  margin: auto;
  line-height: 1.3;
}
.cooming_soon_sec_new .coming_counter {
  margin-top: 0px;
  display: flex;
  justify-content: end;
  gap: 10px;
  flex-wrap: wrap;
}
.cooming_soon_sec_new .time_box {
  width: 100%;
  height: 100%;
  max-width: max-content;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 120, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
  padding: 8px;
  max-width: 80px;
}
.cooming_soon_sec_new .time_box:hover {
  border-color: #f5c15c;
}
.cooming_soon_sec_new .sec_label {
  color: #ffffff;
  font-size: 14px;
}
.cooming_soon_sec_new .time_box span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  font-family: "Norwester";
}
.cooming_soon_sec_new .time_box small {
  margin-top: 2px;
  color: #fbfbfb;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 1;
}
.cooming_soon_sec_new .btn_main a img {
  max-width: 100px;
}

.cooming_soon_sec_new .btn_main a {
  background: #7e01f3;
  display: block;
  width: max-content;
  padding: 6px 25px;
  border-radius: 50px;
}
.cooming_soon_sec_new .start_time_main {
  display: grid;
  grid-template-columns: 300px auto;
  align-items: center;
}

/* Thank You Modal */
#thankYouModal .modal-dialog {
  max-width: 500px;
}
.modal-body .site_btn {
  border: 0px;
  padding: 10px 30px;
}
#thankYouModal .modal-content {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  background: url(../img/pattern-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
#thankYouModal .modal-body {
  position: relative;
  padding: 50px 30px 30px;
  text-align: center;
}

#thankYouModal .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 12px;
  height: 12px;
  opacity: 0.7;
  box-shadow: none;
}
#thankYouModal .btn-close:hover {
  opacity: 1;
}
#thankYouModal .modal-body::before {
  content: "✓";
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: green;
  color: #fff;
  font-size: 24px;
  outline: 1px solid green;
  outline-offset: 2px;
}
#thankYouModal p {
  margin: 0 auto 20px;
  max-width: 400px;
  color: var(--bg-black);
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}
#thankYouModal .modal-content {
  animation: thankYouPopup 0.35s ease;
}
@keyframes thankYouPopup {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*----------- responsive css start--------------- */
@media screen and (max-width: 1360px) {
  .about_sec_second,
  .Information_sec,
  .our_artist_sec,
  .cooming_soon_sec_second,
  .food_stall_sc,
  .food_stall_sec,
  .spaces_sec,
  .sponsor_sec,
  .faq_sec {
    padding: 80px 0;
  }
  h1.banner_sec__title,
  h1.banner_sec__title span {
    font-size: 45px;
  }
  p.banner_sec__subtitle {
    padding-bottom: 35px;
  }
  .sec_title,
  .sec_title span {
    font-size: 38px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 1200px) {
  .site_btn {
    padding: 12px 30px;
  }
  .sec_title,
  .sec_title span {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .spaces_sec .space_img {
    width: 55%;
    min-height: 400px;
  }
  .spaces_sec .space_content {
    width: 53%;
    padding: 60px 40px 40px;
  }
  .spaces_sec .site_btn {
    display: block;
    width: fit-content;
  }
  .spaces_sec .space_content p {
    margin-bottom: 30px;
  }
  .spaces_sec .space_no {
    right: 30px;
    top: 30px;
    font-size: 60px;
  }
  .spaces_sec .space_prev,
  .spaces_sec .space_next {
    width: 45px;
    height: 45px;
  }
  .spaces_sec .spaces_dot {
    width: 10px;
    height: 10px;
  }
  .spaces_sec .spaces_dot.active {
    width: 26px;
  }
  .header_social ul li a {
    font-size: 20px;
    padding: 0 4px;
    margin: 0 4px;
  }
  .header_social ul li.facebokk-cover a {
    font-size: 19px;
  }
  p.banner_sec__subtitle {
    padding-bottom: 30px;
    font-size: 16px;
  }
  .about_sec_second .about_days h2 {
    font-size: 28px;
  }
  .about_sec_second .about_days p {
    font-size: 12px;
  }
  .about_sec_second .about_days {
    width: 80px;
    height: 80px;
  }
  .spaces_sec .space_content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .our_artist_sec .swiper.artist_slider {
    display: flex;
  }
  .our_artist_sec .section_title {
    padding-bottom: 25px;
  }
  .cooming_soon_sec_second .coming_counter {
    margin-top: 25px;
  }
  .events_main {
    padding: 25px 0 0 0;
  }
  .events_main img,
  .events_main video {
    min-height: 350px;
  }
  .food_stall_sc .stall_icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
  }
  .food_stall_sc .stall_form input {
    height: 46px;
    font-size: 14px;
  }
  .sponsor_sec .section_heading {
    margin-bottom: 50px;
  }
  .sponsor_sec .sponsor_grid {
    gap: 20px;
  }
  .sponsor_sec .sponsor_grid_row {
    gap: 20px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .site-header {
    padding: 4px 0px 15px 0;
  }
  .about_sec_second,
  .Information_sec,
  .our_artist_sec,
  .cooming_soon_sec_second,
  .food_stall_sc,
  .food_stall_sec,
  .spaces_sec,
  .sponsor_sec,
  .faq_sec {
    padding: 70px 0;
  }
  .about_sec_second .about_content {
    padding-left: 20px;
  }
  .sec_label {
    font-size: 16px;
  }
  .sec_title,
  .sec_title span {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .spaces_sec .spaces_dots {
    margin: 0px;
    gap: 6px;
  }
  .cooming_soon_sec_second .time_box span {
    font-size: 32px;
  }
  .cooming_soon_sec_second .time_box small {
    margin-top: 5px;
  }
  .cooming_soon_sec_second .time_box {
    height: 90px;
    border-radius: 10px;
  }
  h1.banner_sec__title,
  h1.banner_sec__title span {
    font-size: 38px;
  }
  .footer_sec::after {
    bottom: 60px;
  }
}

@media screen and (max-width: 991px) {
  .about_sec_second .about_content {
    padding-left: 20px;
  }
  .sec_title,
  .sec_title span {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .about_sec_second .about_content > p {
    line-height: 22px;
  }
  .about_sec_second .about_content {
    padding-left: 0px;
  }
  .container,
  .container-md,
  .container-sm {
    max-width: 85%;
  }
  .cooming_soon_sec_second .coming_counter {
    gap: 12px;
  }
  .spaces_sec .space_content {
    padding: 50px 25px 30px;
  }
  .cooming_soon_sec_new .start_time_main {
    grid-template-columns: 170px auto;
  }
  .cooming_soon_sec_new .time_box span {
    font-size: 16px;
  }
  .cooming_soon_sec_new .time_box small {
    font-size: 10px;
  }
  .cooming_soon_sec_new .time_box {
    border-radius: 6px;
    padding: 8px;
    max-width: 80px;
  }
  .cooming_soon_sec_new .coming_counter {
    gap: 5px;
  }
  .cooming_soon_sec_new h2 {
    font-size: 22px;
  }
  .food_stall_sc .stall_form input {
    height: 40px;
  }
  .site_btn {
    padding: 8px 20px;
  }
  .sponsor_sec .sponsor_tag {
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 6px;
  }
  .sponsor_sec .sponsor_logo img {
    max-width: 110px;
    padding: 0 10px;
  }
  .sponsor_sec .container,
  .cooming_soon_sec_new .container {
    max-width: 100%;
  }
  .cooming_soon_sec_second .time_box {
    max-width: 140px;
  }
  .food_stall_sc .stall_content > p {
    line-height: 22px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  .about_sec_second,
  .Information_sec,
  .our_artist_sec,
  .cooming_soon_sec_second,
  .food_stall_sc,
  .food_stall_sec,
  .spaces_sec,
  .sponsor_sec,
  .faq_sec {
    padding: 60px 0;
  }
  .food_stall_sc .stall_form {
    width: calc(100% - 40px);
  }
  .food_stall_sc .stall_box h4 {
    font-size: 16px;
  }
  .food_stall_sc .stall_box {
    gap: 10px;
  }
  .food_stall_sc .stall_image img {
    min-height: 460px;
  }
  .sponsor_sec .sponsor_grid_row {
    row-gap: 30px;
  }
  .sponsor_sec .sponsor_grid {
    gap: 10px;
    margin-top: 25px;
  }
  h1.banner_sec__title,
  h1.banner_sec__title span {
    font-size: 35px;
    padding-bottom: 10px;
  }
  p.banner_sec__subtitle {
    padding-bottom: 25px;
  }
  .sec_title,
  .sec_title span {
    font-size: 30px;
  }
  .spaces_sec .space_item {
    flex-direction: column;
  }
  .spaces_sec .space_img {
    min-height: 300px;
    width: 100%;
  }
  .spaces_sec .space_content {
    width: calc(100% - 30px);
    margin: -30px 0 0 0;
  }
  .container,
  .container-md,
  .container-sm {
    max-width: 100%;
  }
  .about_sec_second .about_days {
    width: 70px;
    height: 70px;
    border: 2px solid var(--white);
    left: 10px;
  }
  .cooming_soon_sec_second h2 {
    margin-bottom: 0px;
  }
  .cooming_soon_sec_second .coming_counter {
    margin-top: 25px;
  }
  .footer_sec {
    padding: 60px 0px 300px 0px;
  }
  .footer_sec .footer_social ul li a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .footer_sec .footer_social ul {
    gap: 6px;
  }
  .footer_sec .footer_social span {
    font-size: 16px;
    word-break: inherit;
  }
  .footer_sec span.footer_sub_heading {
    font-size: 18px;
    padding-bottom: 2px;
  }
}

@media screen and (max-width: 575px) {
  .events_main img,
  .events_main video {
    height: 200px;
    object-fit: cover;
  }
  .cooming_soon_sec_second .time_box {
    max-width: calc(50% - 6px);
  }
  .sponsor_sec .section_heading {
    margin-bottom: 40px;
  }
  .footer_sec ul.emaicover li h4 span {
    font-size: 14px;
  }
  .event_marquee__wrap {
    padding: 20px 0;
  }
  .site_btn {
    font-size: 14px;
    padding: 8px 15px;
  }
  .site-header .col:first-child {
    flex: 0 0 0%;
  }
  h1.banner_sec__title,
  .inner_banner_title,
  h1.banner_sec__title span {
    font-size: 30px;
    padding-bottom: 12px;
    padding-bottom: 0;
  }
  p.banner_sec__subtitle {
    font-size: 16px;
    color: var(--white);
    padding-bottom: 20px;
    padding-top: 10px;
  }
  .about_sec_second .about_days h2 {
    font-size: 26px;
  }
  .about_sec_second .about_days p {
    letter-spacing: 0;
    font-size: 12px;
  }
  .about_sec_second .about_img_small {
    width: 200px;
  }
  .about_sec_second .about_content {
    padding-left: 0;
  }
  .sec_title,
  .sec_title span {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .sec_label {
    font-size: 16px;
  }
  .sec_title span {
    font-size: 22px;
  }
  .about_sec_second .about_btn {
    flex-wrap: wrap;
  }
  .Information_sec .row {
    row-gap: 15px;
  }
  .our_artist_sec .artist_prev,
  .our_artist_sec .artist_next {
    width: 40px;
    height: 40px;
  }
  .food_stall_sc .stall_form {
    width: 90%;
    padding: 20px 15px;
  }
  .food_stall_sc .stall_form input {
    height: 40px;
    font-size: 14px;
  }
  .events_main {
    padding: 20px 0 0;
  }
  .spaces_sec .space_content a {
    display: block;
    width: max-content;
  }
  .food_stall_sc .stall_content > p {
    line-height: 1.2;
  }
  .spaces_sec .spaces_navigation {
    gap: 10px;
    margin-top: 20px;
  }
  .spaces_sec .space_prev,
  .spaces_sec .space_next {
    width: 40px;
    height: 40px;
  }
  .spaces_sec .space_content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .spaces_sec .space_content p {
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .spaces_sec .space_content {
    width: calc(100% - 40px);
    margin-left: 0;
    margin-top: -40px;
    padding: 30px 16px 20px;
  }
  .spaces_sec .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .spaces_sec .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .spaces_sec .space_no {
    right: 20px;
    top: 18px;
    font-size: 50px;
    font-weight: 700;
  }
  .sponsor_sec .sponsor_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .sponsor_sec .sponsor_grid_row {
    grid-template-columns: repeat(1, 1fr);
  }
  .start_time_main {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .sponsor_sec .sponsor_logo img {
    max-width: 120px;
    padding: 0 10px;
  }
  .site-header .site-menu {
    width: calc(100% - 30px);
  }
  .contact_box_main .icon_main {
    width: 50px;
    height: 50px;
  }
  .contact_box_main .icon_main SVG {
    width: 26px;
  }
  .contact_box_main {
    padding: 25px 15px;
  }
  span.contact_text span {
    font-size: 16px;
  }
  span.contact_text {
    padding-top: 16px;
    margin-top: 20px;
  }
  .footer_sec {
    padding: 40px 0 200px;
  }
  .footer_sec::after {
    left: 0;
    bottom: 53px;
    width: 100%;
    height: 104px; /* background-size: 760px; */
    background-position: center center;
  }
  .footer_sec .footer_logo img {
    max-width: 100px;
  }
  .footer_sec .footer_social {
    gap: 10px;
  }
  .footer_sec .footer_logo {
    margin-bottom: 25px;
  }
  .site-header .site-logo img {
    max-width: 75px;
  }
  .site-header {
    padding: 6px 0 12px 0;
  }
  .header_social ul li a {
    font-size: 18px;
    padding: 0 4px;
    margin: 0 4px;
  }
  .site-header .menu-toggle span:nth-child(2) {
    width: 30px;
  }
  .site-header .menu-toggle span,
  .site-header .menu-toggle span:first-child {
    width: 22px;
    height: 1px;
  }
  .about_sec_second .about_content > p {
    line-height: 1.2;
    font-size: 15px;
  }
  p,
  span,
  strong {
    font-size: 15px;
    line-height: 20px;
  }
  .about_sec_second .about_legacy p {
    line-height: 20px;
  }
  .our_artist_sec .section_title {
    padding-bottom: 25px;
  }
  .our_artist_sec h2.sec_title {
    margin-bottom: 6px;
  }
  .Information_sec .info_card {
    padding: 25px 15px;
  }
  .Information_sec .info_card.bg_transparent {
    padding-top: 10px;
  }
  .food_stall_sc .stall_icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    padding: 10px;
    gap: 10px;
  }
  .food_stall_sc .stall_box h4 {
    font-size: 16px;
  }
  .sponsor_sec .sponsor_logo {
    min-height: auto;
  }
  .sponsor_sec .sponsor_grid_row {
    margin-top: 40px;
  }
  .faq_sec .faq_accordion .accordion-body {
    font-size: 15px;
    padding: 0 20px 11px 54px;
  }
  .faq_sec .faq_number {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-weight: 600;
    font-size: 13px;
    margin-right: 10px;
  }
  .footer_sec .footer_social ul li a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .footer_sec .footer_social ul {
    gap: 8px;
  }
  .artist_card .artist_img img {
    border-radius: 10px;
  }
  .site-header .site-menu__list a {
    font-size: 16px;
    padding: 5px 0 15px 0;
  }
  .sponsor_sec .sponsor_card {
    padding: 35px 10px 20px;
  }
  header.site-header.sticky .site-logo img {
    max-width: 60px;
  }
  .Information_sec .info_card img {
    max-width: 130px;
  }
  .book_now_mian .booking_text h2.sec_title,
  .book_now_mian .booking_text h2.sec_title span {
    font-size: 20px;
  }
  .book_now_mian .site_btn:last-child {
    padding: 6px 15px;
  }
  .book_now_mian .btn_grp {
    justify-content: center;
  }
  .book_now_mian .container {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .book_now_mian .site_btn img {
    max-width: 60px;
  }
  .banner_sec {
    min-height: 100%;
  }
  .about_sec_second,
  .Information_sec,
  .our_artist_sec,
  .cooming_soon_sec_second,
  .food_stall_sc,
  .food_stall_sec,
  .spaces_sec,
  .sponsor_sec,
  .faq_sec {
    padding: 40px 0;
  }
  .cooming_soon_sec_second .coming_counter {
    gap: 10px;
  }
  .cooming_soon_sec_second .time_box span {
    font-size: 30px;
  }
  .cooming_soon_sec_second .time_box {
    height: 80px;
  }
  .book_now_mian .booking_text h2.sec_title {
    text-align: center;
  }
  .spaces_sec .spaces_dot.active {
    width: 25px;
  }
  .spaces_sec .spaces_dot {
    width: 8px;
    height: 8px;
  }
  .spaces_sec .spaces_dots {
    gap: 4px;
  }
  .header_social ul li.facebokk-cover a {
    font-size: 17px;
  }
  .story_main {
    padding: 40px 20px;
  }
  .story_sec .story_sec__title {
    font-size: 24px;
  }
  .story_sec .story_sec__description {
    margin: 0 0 20px;
    line-height: 1.2;
  }
  .story_sec .story_sec__content {
    padding-right: 0px;
    margin-bottom: 20px;
  }
  .story_sec .story_sec__prev,
  .story_sec .story_sec__next {
    width: 40px;
    height: 40px;
  }
  .story_sec .story_sec__bottom {
    margin-top: 15px;
  }
  .story_sec .story_sec__video_wrap {
    height: 320px;
    border: 2px solid #ffffff;
  }
  .back_top_btn {
    bottom: 50px;
    width: 40px;
    height: 40px;
  }
  .faq_sec .faq_accordion .accordion-button {
    padding: 10px 12px;
  }
  .story_sec {
    padding: 50px 0 0 0;
  }
  .food_stall_sc .stall_image img {
    min-height: 380px;
  }
  .cooming_soon_sec_new .time_box {
    padding: 5px 5px;
    max-width: max-content;
    border-radius: 8px;
  }
  .cooming_soon_sec_new .start_time_main {
    display: grid;
    grid-template-columns: 95px auto;
    align-items: center;
  }
  .cooming_soon_sec_new h2,
  .cooming_soon_sec_new h2 span {
    font-size: 16px;
  }
  .cooming_soon_sec_new .time_box span {
    font-size: 16px;
    font-weight: 400;
  }
  .cooming_soon_sec_new .time_box small {
    font-size: 10px;
  }
  .cooming_soon_sec_new .coming_counter {
    gap: 5px;
  }
  .food_stall_sc .stall_box {
    gap: 12px;
    padding: 10px;
  }
  .food_stall_sc .stall_form h4 {
    font-size: 22px;
  }
  .sponsor_sec .sponsor_logo img {
    max-width: 130px;
    padding: 0 12px;
  }
  .about_sec_second .about_legacy {
    padding: 15px 10px;
    border-radius: 10px;
  }
  .footer_sec .footer_social ul.emaicover {
    gap: 0px;
  }
  #thankYouModal .modal-dialog {
    max-width: 470px;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  #thankYouModal .modal-body {
    padding: 40px 20px 20px;
  }
  #thankYouModal p {
    line-height: 1.2;
  }
  #thankYouModal .modal-body::before {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    font-size: 24px;
  }
  #thankYouModal .btn-close {
    top: 12px;
    right: 14px;
  }
}
