@font-face {
  font-family: 'Omegle Regular';
  src: url('../meetco/assets/fonts/OmegleRegular.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

h1,h2,h3,h4,h5{
	  font-family: "Righteous", sans-serif !important;

}

:root{
	--color-secondary: #5084da !important;
}

.omegle-font{
  font-family: 'Omegle Regular', sans-serif !important;
	text-transform: none !important;
}
.xb-header-logo img{
	max-width: 220px ;
	padding: 10px
}


.xb-header.stricky.stricked-menu.stricky-fixed .header__wrap{
	background: #0e032b80 !important;
}

@media (min-width:1200px){
	.main-menu > ul {
  gap: 20px;
  }
	.xb-header-logo img{
	max-width: 310px !important;
	padding: 10px
}
}

@media (min-width:992px)and (max-width:1200px){
	.main-menu > ul {
  gap: 10px !important;
  }
	.xb-header-logo img{
	max-width: 220px !important;
	padding: 10px
}
}

.main-menu ul li .sub-menu{
	min-width: 250px;
}

.xb-footer-wrap .xb-item--logo img{
	width:400px
}

.hero-content-img .img--1, .img--2, .img--3, .img--4{
	width:200px;
}

.hero-content-img .img--2, 
.hero-content-img .img--4{
	width:100px;
}

.attractions{
	background: #fff;
}

.image-row {
  display: flex;
  width: 100%;
  height: 600px;
  overflow: hidden;
  gap:20px;
	justify-content: space-between;
	pointer-events: none;
  
}

.img-box {
  flex: 0 0 13%;
  transition: flex 0.5s ease;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border-radius:10px;
	pointer-events: auto;
	position: relative;
	overflow: hidden;
}

.img-box .overlay-div{
	    background-image: linear-gradient(45deg, #00000063, transparent);
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}
.img-box h3{
	    writing-mode: vertical-rl;
    color: #fff;
    font-size: 21px;
    font-weight: 400;
	text-transform: uppercase;
    letter-spacing: 5px;
    word-spacing: 10px;
    padding: 20px 0 0 10px;
    filter: drop-shadow(0px 4px 3px black);
    z-index: 2;
    position: relative;
}



/* Default expanded image */
.img-box:nth-child(3) {
  flex: 0 0 40%;
}

/* On hover */
.image-row:hover .img-box {
  flex: 0 0 13%;
}

.image-row .img-box:hover {
  flex: 0 0 40%;
}


.venue .dc-funfact-inner{
	display:none;
}

.venue img{
border-radius: 10px}


.xb-contact-input-form .xb-input-field{
	display: flex;
    flex-direction: column;
}

.countdown-loc .offer-wrap{
	margin-top: 0 !important;
	background: transparent
}

.countdown-loc .offer-section{
	background: transparent !important;
}

.bito-logo{
	margin-bottom: 0 !important;
	margin-left: 10px
}

.sr7-layer .sr7-btn{
	border-radius: 5px !important;
}
.breadcrumb{
	background-size: cover;
}
.team-page .gardiant-bg{
background: linear-gradient(181deg, #ee4ea2 0%, #089df2 100%);
	border-radius: 15px
	}

.team-page .gardiant-bg img{
	height:350px;
	object-fit: cover;
}

.venue-slider .elementor-image-carousel-wrapper{
	overflow: hidden;
}


.venue-slider .elementor-swiper-button.elementor-swiper-button-prev{
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	z-index: 99;
}

.venue-slider .elementor-swiper-button.elementor-swiper-button-next{
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	z-index: 99;
}


/* -----ATTRACTIONS------ */

 .custom-gallery {
  padding: 60px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
/*   grid-auto-rows: 220px; */
  gap: 15px;
}

.gallery-item-sm {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
	width:
}

.gallery-item-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Different sizes */
.gallery-item-sm.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-sm.medium {
  grid-column: span 2;
}

.gallery-item-sm.small {
  grid-column: span 1;
}

/* Hover overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
	padding: 10px;
	pointer-events: none;
}

.overlay h3 {
  font-size: 20px;
  margin-bottom: 6px;
	color: #fff;
}

.overlay p {
  font-size: 14px;
  opacity: 0.85;
}

.gallery-item-sm:hover img {
  transform: scale(1.1);
}

.gallery-item-sm:hover .overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-sm.large,
  .gallery-item-sm.medium,
  .gallery-item-sm.small {
    grid-column: span 1;
    grid-row: span 1;
  }
}


/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox h3{
	color: #fff !important;
	  font-family:"Righteous", sans-serif !important;

}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.lightbox-caption {
  color: #fff;
  margin-top: 15px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  z-index: 1000000;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-nav:hover {
  background: rgba(0,0,0,0.8);
}

/* Smooth image transition */
#lightbox-img {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.lightbox.active #lightbox-img {
  opacity: 1;
  transform: scale(1);
}

/* Smooth caption */
.lightbox-caption {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.35s ease;
}

.lightbox.active .lightbox-caption {
  opacity: 1;
  transform: translateY(0);
}

.maintenance .shape--1,.maintenance .shape--2,.maintenance .shape--3,.maintenance .shape--4{
	max-width: 300px;
}

.maintenance .cta-shape{
	gap:50px;
}

.register-logo img{
filter: drop-shadow(0px 0px 0px white) !important;	
}


.xb-header .container{
    max-width: 1400px !important;
}

.xb-header-mobile-search{
	display:none;
}

.accommodation img{
	height:250px;
	object-fit: cover;
}

.org-committee img{
	height: 500px !important;
	object-fit: cover;
	object-position: top;
}

.svg-icon svg {
	fill: #9b1c7b;
}