/* ===== RESET ===== */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html, body{
  width:100%;
  overflow-x:hidden;
}
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}
main{ 
overflow-x: hidden;
    /* padding-top: 40px; */
    background-color: #e9e4db;
}


/* ===== TOP GAP ===== */
.top-gap {
  height: auto !important;
  background-color: #000;
  transition: height 0.3s ease;
  overflow: hidden;
  padding: 10px 0;
}

/* inner layout */
.top-gap-inner {
  max-width: 1200px;
  margin: auto;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;
  color: #fff;
  font-size: 12px;
}

/* left icons */
.top-left {
  display: flex;
  gap: 10px;
}

.top-left a {
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

/* right text */
.top-right {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 768px) {
  .top-gap {
    display: none;
  }
}


section{
    padding: 50px 0;
}
header {
    background: #000;
    height: 70px;
}
/* ===== NAVBAR ===== */
.main-navbar {
  position: fixed;
  top:42px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  padding: 15px 0;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.main-navbar.scrolled {
  top: 0;
  border-radius: 0;
}

.nav-link {
color: #000;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.home-icon {
    background: #ffc107;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    margin-right: 4px;
}

.nav-logo {
position: absolute;
    top: 0px;
    width: auto;
    height: 150px;
    transition: 300ms all;
}
.main-navbar.scrolled img.nav-logo {
    height: 120px;
    transition: 300ms all;
}
.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ffc107;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50%;
}
.handwritten {
    /* font-family: 'Caveat', cursive; */
    font-family: 'Pacifico', cursive;
    font-size: 20px;
}

/* Hamburger */
.menu-toggle{
  background:none;
  border:none;
  font-size:28px;
  cursor:pointer;
}

/* Mobile Menu */
/* ===============================
   MOBILE MENU (ANIMATED EXTENSION)
=============================== */

.mobile-menu {
  position: absolute;
  top: 107%;
  right: 20px;

  background: #fff;
  border-radius:24px 0 24px 24px;

  padding: 0 20px;

  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);

  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease;

  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* menu items */
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

/* show state */
.mobile-menu.show {
  max-height: 500px; /* enough for menu items */
  opacity: 1;
  transform: translateY(0);
}


/* Mobile adjustments */
@media(max-width:786px){

  .main-navbar{
    padding:10px 0;
    border-radius:30px;
  }

  .nav-logo{
    position:relative;
    width:80px;
    height:80px;
  }

}
@media (max-width: 768px) {

  .main-navbar {
    position: fixed;
    top: 0;
    border-radius: 0 0 30px 30px;
    padding: 10px 0;
  }

}

@media (max-width: 768px){
  .nav-logo{
    position: relative;
    width: 80px;
    height: 80px;
  }
}

/* ===== HERO SECTION ===== */
/* =========================
   HERO SLIDER
========================= */

.hero-section {
  width: 100%;
  overflow: hidden;
}

.hero-slider,
.hero-slide {
  height: 90vh;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}

.timeline-section {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}


.timeline-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Remove slick outline */
.slick-slide {
  outline: none;
}

/* =========================
   CUSTOM ARROWS
========================= */

.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background:transparent;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.custom-arrow i {
  font-size: 40px;
  color: #4b2e1e; 
  font-weight: 800;
}
.custom-arrow i:hover{
  transform: scale(1.1);
}
/* Arrow positions */
.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

/* Hover effect */



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .hero-slider,
  .hero-slide,
  .hero-slide img {
    height: 60vh;
  }

  .custom-arrow {
    width: 40px;
    height: 40px;
  }

  .custom-arrow i {
    font-size: 18px;
  }
}


.partners-section{
  background-color: #fff;
}

/* Heading */
.section-heading{
  font-size:36px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight:800;
  color:#000;
}
.section-heading-2{
  font-size:36px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight:800;
  color:#000;
}
.outline-text{
  color:#FFD400;                 /* yellow text */
  -webkit-text-stroke: 1px #000; /* black boundary */
  text-stroke: 1px #000;         /* fallback */
  font-weight:900;
}


/* Logos layout */
.partners-logos{
  display:flex;
  gap:24px;
  justify-content:space-between;
  flex-wrap:wrap;
}

.partner-item{
  flex:1;
  min-width:120px;
  text-align:center;
}

.partner-item p{
  font-size:15px;
  font-weight:500;
  margin-bottom:8px;
}

.partner-item img{
  width:100%;
  height:80px;
  object-fit:contain;
}

/* Helpline */
.helpline-box{
  text-align:center;
  color: #000;
  background-color: #f5c400;
  padding: 10px 18px;
  border-radius: 8px;
}

.helpline-box h4{
  font-weight:700;
  margin-bottom:8px;
  font-size: 20px;
}

.helpline-box p{
  margin:0;
  font-size: 20px;
  font-weight:600;
}

/* Mobile */
@media(max-width:768px){
  .partners-logos{
    justify-content:center;
  }

  .helpline-box{
    text-align:center;
    margin-top:30px;
  }
}


/* ================================
   EVENT & PARTY ALBUM SECTION
================================ */

.album-section {
  text-align: center;
  padding-bottom: 60px;
}
section.album-section {
    position: relative;
}

section.album-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("https://img.freepik.com/free-photo/noisy-background_1194-7547.jpg") no-repeat top left;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-repeat: repeat;
    background-size: 10%;
    mix-blend-mode: luminosity;
}

section.album-section > div {
    position: relative;
    z-index: 2;
}
/* ---------- Heading ---------- */
.album-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
}

.album-title span {
  color: #f5c400;
}

/* ---------- Slider Wrapper ---------- */
.album-slider {
  /* max-width: 1000px; */
  margin: 0 auto;
  position: relative; /* IMPORTANT for dots */
}

/* ---------- One Slide ---------- */
.album-page {
  padding: 10px;
}

/* ---------- 4 Image Grid ---------- */
.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


/* ---------- Images ---------- */
.album-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}
.album-grid img:nth-child(1) {
    border-radius: 0 50px;
}

.album-grid img {
    min-height: 420px !important;
    padding: 10px;
}

.album-grid img:nth-child(2) {
    border-radius: 50px;
}

.album-grid img:nth-child(3) {
    border-radius: 35% 35% 35% 0;
}

.album-grid img:nth-child(4) {
    border-radius: 35% 0;
}
/* ================================
   SLICK DOTS (FULL RESET & CUSTOM)
================================ */

/* Dot container */
.album-slider .slick-dots {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;

  list-style: none;
  padding: 0;
  margin: 0;
}

/* Remove default li spacing */
.album-slider .slick-dots li {
  margin: 0;
  padding: 0;
}

/* Remove numbers / buttons */
.album-slider .slick-dots li button {
  font-size: 0;          /* removes 1,2 */
  line-height: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* Draw dot */
.album-slider .slick-dots li button::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #777;
  border-radius: 50%;
  display: block;
}

/* Active dot */
.album-slider .slick-dots li.slick-active button::before {
  background: #f5c400;
}

/* ================================
   REMOVE ARROWS COMPLETELY
================================ */
.album-slider .slick-prev,
.album-slider .slick-next {
  display: none !important;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px){
  .album-grid{
    grid-template-columns: repeat(1, 1fr);
  }
}


@media (max-width: 576px) {
  .album-title {
    font-size: 28px;
  }

  .album-grid img {
    height: 170px;
    border-radius: 18px;
  }
}


/* ===== DIVIDER ===== */
.section-divider {
  margin: 50px 0 40px;
  border: 1px solid black;
}

/* ===== VERTICALS ===== */
.verticalmodal button.btn-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    opacity: 1;
    font-size: 14px;
    background-color: #fecf07;
    border-radius: 0;
}

.verticale_detail .vertical_img {
    width: 150px;
    height: 150px;
    background: #f7f5eb;
    border-radius: 50%;
    line-height: 150px;
    text-align: center;
    margin: 15px auto;
    border: 1px solid #e8e2c1;
}

.verticale_detail {
    text-align: center;
}

.verticale_detail h3 {
    font-size: 20px;
}

.verticale_detail p {
    font-size: 14px;
}
.verticals-title {
  margin-bottom: 30px;
  font-weight: 600;
}

.verticals-slider {
  max-width: 100%;
}

.vertical-card {
  background: #fff;
  border-radius: 10px;
  height: 80px;
  padding: 12px 25px;
  font-weight: 700;
  margin: 0 10px;
  white-space: nowrap;
}
.vertical-card img{
  height: 100%;
  width: 100%;
  object-fit: contain;

}



/* ===============================
   VENUES SECTION BASE
=============================== */

.venues-wrap {
background: #ffffff;
    position: relative;
   
    border-radius: 60px;
}

.venues-container {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 40px;
  padding:0 60px;
}
@media (max-width: 768px){
  .venues-container{
    padding: 0 20px;
  }
}



.venues-heading {
  text-align: center;
  font-weight: 800;
  margin-bottom: 50px;
}

.venues-heading span {
  color: #f5c400;
}

/* ===============================
   SLIDER LAYOUT
=============================== */

.venues-slider {
  position: relative;
}

.venue-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LEFT CARD */
.venue-left {
  position: relative;
  background: #f5c400;
  padding:60px 35px;
  width: 40%;
}
.venue-logo {
    position: absolute;
    top: -55px;
    right: 20%;
    width: 110px;
  height: 110px;
}
.venue-logo img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.venue-left h3 {
font-weight: 600;
    font-size: 35px;
    margin: 10px 0;
    text-transform: uppercase;
    text-align: center;
}


.venue-time {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: none;
  border-right: none;
  font-size: 17px;
  text-transform: uppercase;
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
}

.venue-address {
  font-size: 18px;
  text-transform: uppercase;
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
}

/* RIGHT IMAGE SHAPE */
.venue-right {
  width: 45%;
}

.venue-image-shape {
  position: relative;
  overflow: hidden;
}


.venue-image-shape img {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .venue-left h3 {
    font-size: 20px;
  }
  .venue-address {
    font-size: 16px;
  }
  .venue-time{
    font-size: 16px;
  }
  .venue-left {
    padding: 50px 28px;
  }
}

/* ===============================
   ARROWS (CIRCLE)
=============================== */

/* ===============================
   ARROW POSITIONING (HALF IN / OUT)
=============================== */

.venues-slider .slick-prev,
.venues-slider .slick-next {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translate(50%, -50%); /* half outside */
  right: -21px; /* half of 42px */
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* remove default arrows */
.events_show .slick-dots {
    display: none !important;
}
.ven_slider .slick-next:before, .logo_box .slick-next:before, .our_venus .slick-next:before, .events_show .slick-next:before {
    content: '\f285';
}

.venues-slider .slick-prev::after,
.venues-slider .slick-next::after {
  font-size: 18px;
  color: #000;
}
.upc_events_Sec  p.handwritten {
    color: #fff;
    text-align: center;
}

.upc_events_Sec h2.section-heading {
    color: #fff;
}
/* ===============================
   DOTS (HARD RESET)
=============================== */

.venues-slider .slick-dots {
  position: absolute;
  /* bottom: -35px;
  left: 50%; */
  display: flex !important;
  justify-content: center;
  bottom: 0%;
  left: 27%;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.venues-slider .slick-dots li {
  margin: 0;
  padding: 0;
}

.venues-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.venues-slider .slick-dots li button::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #999;
  border-radius: 50%;
  display: block;
}

.venues-slider .slick-dots li.slick-active button::before {
  background: #f5c400;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 768px) {
  .venue-card {
    flex-direction: column;
    padding: 50px 0;
  }
  .venues-slider .slick-prev, .venues-slider .slick-next {
    top: 6%;
    left: 18%;
  }
  .venue-logo {
    right: 10%
  }

  .venue-left{
    width: 75%;
  }
  .venue-right {
    width: 100%;
  }
}

/* ===============================
   INFO STRIP (YELLOW)
=============================== */

.info-strip {
  background: #ffcc1d;
}


.info-block {
  text-align: center;
}


.info-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-line {
  width: 60px;
  height: 2px;
  background: #000;
  margin: 10px auto 20px;
}

.info-text {
    font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0px;
}

.info-desc {
  max-width: 320px;
  margin: 0 auto 20px;
  font-size: 14px;
  line-height: 14px;
}

.email-input::placeholder{
  color:#000;
}

/* Center image */
.info-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50% 50% 50% 0%;
}

.info-flex{
  display:flex;
  gap:50px;
  align-items:center;
}


/* Newsletter */
.newsletter-form {
  display: flex;
  max-width: 420px;
  margin: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
}

.newsletter-form button {
  background: #000;
  color: #ffcc1d;
  border: none;
  padding: 0 24px;
  font-weight: 700;
  cursor: pointer;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 992px) {
  .info-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

}

@media(max-width:768px){
  .info-flex{
    flex-direction:column;
    gap:30px;
  }
  .info-block {
    margin-top: 30px;
  }
}


/* ===============================
   BRAND PARTNERS SECTION
=============================== */

.brand-partners-section {
  background: #0b0b0b;
  color: #fff;
  padding-bottom: 150px;
}

.brand-script {
  text-align: center;
  font-style: italic;
}

.brand-heading {
  text-align: center;
  font-weight: 800;
  margin-bottom: 40px;
}

.brand-heading span {
  color: #f5c400;
}

/* ===============================
   SLIDER
=============================== */

.brand-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.brand-slider {
  width: 80%;
}

.brand-logo {
  padding: 15px;
}

.brand-logo img {
  background: #fff;
  border-radius: 50px;
  padding: 20px;
  width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* ===============================
   CUSTOM ARROWS
=============================== */

.brand-arrow {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-arrow img {
  width: 18px;
}

/* ===============================
   BOTTOM SECTION
=============================== */


.brand-cta {
  background: #fdebb2;
  color: #000;
  padding: 40px;
  border-radius: 30px;
}



.brand-cta h3 {
  font-weight: 600;
  font-size: 35px;
  margin: 10px 0;
}

.cta-text {
  font-size: 14px;

  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  background: #f5c400;
  color: #000;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #000;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.brand-image {
  border-radius: 30px;
  filter: grayscale(1);
  margin: auto;
  overflow: hidden;
}

.brand-image img {
  width: 100%;
  height: 310px;
  display: block;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 992px) {
  .brand-slider {
    width: 100%;
  }

  .brand-bottom {
    text-align: center;
  }

  .brand-cta {
    margin-bottom: 30px;
  }
}

.partner-section {
  position: relative;
  min-height: 250px;
}

.card-line {
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
}

.partner-section .row {
  align-items: stretch;
}

.partner-section .col-lg-5,
.partner-section .col-lg-7 {
  display: flex;
}
.brand-cta,
.brand-image {
  height: 100%;
}

.brand-image img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}


@media (max-width: 768px) {

  .partner-section {
    position: static;
  }
  .brand-arrow{
    display: none;
  }

  .card-line {
    position: static;
  }

  .partner-section .col-lg-5,
  .partner-section .col-lg-7 {
    display: block;
  }

  .brand-cta,
  .brand-image {
    height: auto;
  }
.brand-partners-section {
  padding-bottom: 50px;
}
}


/* ===============================
   FOOTER
=============================== */

.site-footer {
  background: #0d0d0d;
  color: #fff;
  padding: 50px 0px;
}


.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-copy {
  font-size: 14px;
  opacity: 0.7;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
  cursor: pointer;
}

.site-footer ul li a{
  font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
}

.follow-title {
  margin-bottom: 10px;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #fff;
  color: #000;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ===============================
   RESPONSIVE
=============================== */


@media (max-width: 576px) {

.follow-title {
  text-align: center;
}
  .social-icons {
    justify-content: center;
  }
  .site-footer ul {
    padding-left: 20px;
  }
}


/* about */

.about-section {
  background: #e9e4db;
  position: relative;
  padding-bottom: 80px;
}

.about-image{
  height: 500px;
  /* position: relative; */
}
/* IMAGE */
.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 80px 0;
  object-fit: cover;
}

/* CONTENT */
.about-content {
  padding-left: 40px;
}


.about-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
}

.about-title span {
  color: #f5c400;
}

.about-content-text p {
  font-size: 15px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 15px;
}

/* STATS BAR */
.about-stats {
    position: absolute;
    left: 60%;
    bottom: -6%;
    min-width: 800px;
}

.about-stats .container2 {
  background: #2b2b2b;
  border-radius: 6px;
  padding: 35px 20px;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 16px;
  color: #ddd;
  margin: 0;
}

.stat-border {
  border-left: 1px solid rgba(255,255,255,0.3);
  border-right: 1px solid rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
  }

  .about-stats {
    position: static;
    margin-top: 40px;
  }

  .stat-border {
    border: none;
  }
}
@media (max-width: 768px) {
.about-stats {
    position: absolute;
    left: 8px;
    bottom: -6%;
    min-width: 90%;
    width: 96%;
    margin-bottom: 20px;
}
.stat-item{
  padding: 0 5px;
}
.section-heading,
.section-heading-2 {
    font-size: 30px;
}
.handwritten {
  font-size: 18px;
}

}

@media (max-width: 576px) {
  .about-section{
    padding-bottom:50px ;
  }
  .stat-item h3 {
    font-size: 20px;
  }
  .stat-item p {
    font-size: 12px;
  }
  .about-stats .container2 {
    background: #2b2b2b;
    border-radius: 6px;
    padding: 20px 10px;
  }
  .about-image{
  height: 400px;
  width: 90%;
    margin: auto;
}
}
.col-md-6,
.col-lg-6{
  padding: 0 20px;
}

.ceo-img{
  border-radius: 30px;
  overflow: hidden;
  width: 90%;
  background: #fff;
  /* margin: auto; */
}
.ceo-img img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    max-height: 300px;
}
.ceo-text p{
      font-size: 15px;
    line-height: 1.4;
    color: #555;
    margin-bottom: 15px;
}
.section-heading-2 small {
    display: block;
    font-size: 20px;
}
.ceo-img{
width: 90%;
  margin: auto;
  margin-top: 30px;
}

.our-mission {
  background: #fff;
}

/* Yellow box */
.mission-box {
  background-color: #f8de5c8c;
  border-radius: 30px;
  position: relative;
  overflow: visible; /* VERY IMPORTANT */
  margin: 80px 0;
}


/* TEXT */
.mission-text {
  padding: 40px 30px;
  text-align: center;
}

.mission-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-text p {
  font-size: 15px;
  line-height: 1.4;
  color: #010101;
}

/* IMAGE FLOATING */
.floating-img {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 100%;
}

.floating-img img {
  width: 100%;
  max-height: 550px;
  border-radius: 30px;
  object-fit: cover;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
  .floating-img {
    position: static;
    transform: none;
    width: 100%;
    padding-bottom: 20px;
  }

  .mission-text {
    text-align: center;
    padding: 30px 0;
  }
  .mission-box{
    margin: 0;
  }
}


.inner_about{
  padding-top: 150px;
}

.product_listimg {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.product_box {
    /* border: 1px solid #cecece; */
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    transition: all .4s linear;
    background: #cecece;
}

.product_box:hover {
    background: #ffffff;
    border-color: #cecece;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px -3px, rgba(0, 0, 0, 0.06) 0px 2px 5px -3px;
}

.prod_list {
    padding: 25px 20px;
    display: flex;
    align-items: center;
}

.prod_name {
    width: calc(100% - 110px);
}

.prod_name h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.prod_name p {
    font-size: 14px;
    margin-bottom: 0;
    color: #000;
}

.prod_list a {
    line-height: 35px;
    padding: 0px 20px;
    border-radius: 50px;
    background: #000;
    border: 1px solid #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: all .4s;
    display: inline-flex;
    height: 100%;
}
.venues_slider {
    margin: 0 10px;
    margin-bottom: 15px;
}
.venus_list_sec .venues_slider .prod_list1 {
    padding: 25px 20px;
}
.venus_list_sec .venues_slider h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

/*contact us css*/
/* conatct-css */

.get_touch {
    padding: 80px 0 50px 0;
}

.get_touch_inner {
    display: flex;
}

.get_form_inner {
    display: block;
    padding: 40px;
    background: #fff;
    box-shadow: -4px -2px 20px -7px #cfd5df;
}

.get_touch_inner input[type="text"],
.get_touch_inner input[type="text"],
.get_touch_inner input[type="email"],
.get_touch_inner input[type="tel"] {
    border: 1px solid #dbdbdb;
    border-radius: 2px;
    color: #333;
    height: 42px;
    padding: 0 0 0 20px;
    width: 100%;
    outline: 0;
}

.input_tag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.grid-full {
    margin: 20px 0 0 0;
}

textarea {
    border: 1px solid #dbdbdb;
    border-radius: 2px;
    color: #333;
    padding: 12px 0 0 20px;
    width: 100%;
    outline: 0;
    margin-bottom: 20px;
}

.get_form_inner_text h3 {
    color: #333;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
}

.input_tag input[type="submit"] {
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid #000000;
    font-weight: 500;
    border-radius: 4px;
    padding: 5px 20px;
    outline: 0;
    cursor: pointer;
    color: #103e65;
    transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -ms-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.input_tag input[type="submit"]:hover {
    background-color: #95cbcd;
    border-color: #95cbcd;
    color: #fff;
}

.get_form {
    width: 75%;
}

.get_say_form {
    display: inline-block;
    padding: 45px 30px 25px 30px;
    background: #898989;
    position: relative;
    width: 50%;
}

.get_say_form h5 {
    color: #fff;
    font-size: 26px;
    margin: 0 0 40px;
}

.get_say_form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.get_say_social-icn {
    display: flex;
    position: absolute;
    bottom: 40px;
}

.get_say_social-icn a {
    font-size: 22px;
    color: #fff;
    padding: 0 20px 0 0;
}

.get_say_info_sec i {
    color: #fff;
    font-size: 32px;
}

.get_say_info_sec>li {
    display: grid;
    grid-template-columns: 40px auto;
    align-items: center;
    margin-bottom: 40px;
}

.grid-full input {
    padding: 10px 30px;
}

.get_touch_inner form {
    padding: 0;
}

.get_say_info_sec>li a {
    width: 100%;
    display: block;
    padding: 15px 25px;
    color: #fff;
    font-size: 16px;
    text-decoration: unset;
    font-weight: 500;
    background: transparent;
    border-radius: 5px 0 0 5px;
}

.get_say_info_sec>li a:hover {
    background-color: #939598;
}
.grid-full input[type="submit"] {
    background: #000;
    color: #ffcc1d;
    border: 0;
}
.ven_slider .slick-arrow {
    display: none;
}
.ceo-img.shadow{
  max-width: 200px;
}

/*event show*/
.upc_events_Sec {
    background: #000;
    border-radius: 30px 30px 0 0;
}

.events_show .slick-center .img_time {
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    opacity: 1;
    transform: scale(1.2);
}

.events_show .img_time {
    opacity: 0.8;
    transition: all 500ms linear;
}

.img_time {
    margin: 40px;
    position: relative;
}

.po_eveny_btn {
    position: absolute;
    bottom: calc(15% + 8px);
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
    left: auto;
    right: auto;
}

.po_eveny_btn a {
    display: inline-block;
    border-radius: 30px;
    filter: drop-shadow(3px 5px 2px rgba(0, 0, 0, 0.6));
    background-color: #ffc300;
    border: 2px solid #000000;
    padding: 8px 25px;
    color: #000;
    font-weight: 600;
    transition: all 0.3s;
}

.po_eveny_btn a:hover {
    background-color: #fff;
}

.events_show .slick-prev {
    left: 30.5%;
    z-index: 3;
}

.events_show .slick-next {
    right: 30.5%;
}

.events_show .slick-prev,
.events_show .slick-next {
    background: #ffffff;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    border: 1.5px solid #ffcc00;
}

.events_show .slick-prev:before,
.events_show .slick-next:before {
  color: #000;
    padding: 10px;
    width: 30px;
    height: 30px;
    background: url('https://cdn-icons-png.flaticon.com/512/271/271228.png') no-repeat center;
    background-size: 16px;
    content: "";
}
.events_show .slick-prev:before{
   background: url('https://cdn-icons-png.flaticon.com/512/271/271220.png') no-repeat center;    background-size: 16px;
}
.events_show .slick-prev:hover,
.events_show .slick-prev:focus,
.events_show .slick-next:hover,
.events_show .slick-next:focus {
    background-color: #fff;
}

.events_show .slick-dots,
.party_album_Sec .slick-dots {
    bottom: -50px;
}

.events_show .slick-dots li button:before,
.party_album_Sec .slick-dots li button:before {
    width: 13px;
    height: 13px;
    background: transparent;
    border-radius: 50px;
    border: 1px solid rgb(255, 255, 255);
    font-size: 0;
    opacity: 0.6;
}

.events_show .slick-dots li.slick-active button:before,
.party_album_Sec .slick-dots li.slick-active button:before,
.our_venus .slick-dots li.slick-active button:before {
    background: #fecf06;
    opacity: 1;
}


.events_show .slick-prev {
    left: 30.5%;
    z-index: 3;
}

.events_show .slick-next {
    right: 30.5%;
}

.events_show .slick-prev,
.events_show .slick-next {
    background: #ffffff;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    border: 1.5px solid #ffcc00;
        position: absolute;
}

.events_show .slick-prev:before,
.events_show .slick-next:before {
    color: #000;
    padding: 10px;
}

.events_show .slick-prev:hover,
.events_show .slick-prev:focus,
.events_show .slick-next:hover,
.events_show .slick-next:focus {
    background-color: #fff;
}

.events_show .slick-dots,
.party_album_Sec .slick-dots {
    bottom: -50px;
}

.events_show .slick-dots li button:before,
.party_album_Sec .slick-dots li button:before {
    width: 13px;
    height: 13px;
    background: transparent;
    border-radius: 50px;
    border: 1px solid rgb(255, 255, 255);
    font-size: 0;
    opacity: 0.6;
}

.events_show .slick-dots li.slick-active button:before,
.party_album_Sec .slick-dots li.slick-active button:before,
.our_venus .slick-dots li.slick-active button:before {
    background: #fecf06;
    opacity: 1;
}

@media (max-width: 768px) {
  main{
    padding-top: 5px;
  }
  .get_touch{
    padding-top: 0;
  }
  .main-navbar.scrolled img.nav-logo {
    height: 80px;
    transition: 300ms all;
}
.get_touch_inner {
    flex-wrap: wrap;
}
.get_form, .get_say_form {
    width: 100%;
}
.inner_about {
    padding-top: 50px;
}
}


