
/*--------------------------------------------------------------
# Swiper Slider
--------------------------------------------------------------*/
.it-section-wrapper{
  width: 100%;
}

   /* Swiper Container */
   .swiper {
    width: 100%;    
  }

  .swiper-container{
    overflow: hidden;
    position: relative;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    
  }

  /* Video Styling */
  .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the entire slide */
  }

  
/* Responsive Adjustments */
@media (max-width: 768px) {
  video {
    object-fit: contain;
  }

  .swiper{
    height: auto;
  }

  .header .logo img{
    max-height: 30px;
  }
}



/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
  }
  
  .section-title h2 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 40px;  
    margin-bottom: 20px;
    padding-bottom: 20px;    
    position: relative;
  }
  
  .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .section-title p {
    margin-bottom: 0;
  }


  /* Effect Common style */
.grid figure {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	background: var(--primary-color);
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 400;
  text-transform: capitalize;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	font-size: 68.5%;
  text-transform: capitalize;
  color: #ffffff;
 
}

/* Individual effects */

/*---------------*/
/***** Lily *****/
/*---------------*/

figure.effect-lily img {
	max-width: none;
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0, 0);
	transform: translate3d(-40px,0,0);
}

figure.effect-lily figcaption {
	text-align: left;
}

figure.effect-lily figcaption > div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	height: 50%;
}

figure.effect-lily h2,
figure.effect-lily p {
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.effect-lily h2 {
  font-size: 30px;
  font-weight: 400;
  color:rgba(255, 255, 255, 1);
  text-shadow: 0px 4px 5px rgba(0,0,0,1);
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-lily p {
	color: rgba(255,255,255,1);
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
  margin-top:15px;
  padding: 10px;
  background: var(--primary-color);
  border-radius: 7px;
}

figure.effect-lily:hover img,
figure.effect-lily:hover p {
	opacity: 1;
}

figure.effect-lily:hover img,
figure.effect-lily:hover h2,
figure.effect-lily:hover p {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-lily:hover p {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
}

.featured-img{
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.description{
  background-color: var(--primary-color);
  padding:20px;
  border-radius: 0 0 15px 15px;
}

.description h4{
  color: #ffffff;
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
}


.featured-img img{
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0.85;
}

.featured-img:hover img {
	opacity: 1;
	-webkit-transform: scale3d(1.1,1.1,1);
	transform: scale3d(1.1,1.1,1);
}



figure.effect-goliath {
	background: var(--primary-color);
}

figure.effect-goliath img,
figure.effect-goliath h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-goliath img {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-goliath h2{
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
}

figure.effect-goliath h2,
figure.effect-goliath p {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px;
}

figure.effect-goliath p {
	text-transform: none;
	font-size: 90%;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,50px,0);
	transform: translate3d(0,50px,0);
}

figure.effect-goliath:hover img {
	-webkit-transform: translate3d(0,-80px,0);
	transform: translate3d(0,-80px,0);
}

figure.effect-goliath:hover h2 {
	-webkit-transform: translate3d(0,-100px,0);
	transform: translate3d(0,-100px,0);
}

figure.effect-goliath:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.animated-img{
  padding: 20px;
}

.animated-img img{
  animation: shake ease-in-out 1.7s infinite;
}

@keyframes shake {
	0% { 
		transform: rotate(0) translate(0,0);			
	}	
	25% { 
		transform: rotate(-3deg) translate(0,15px);			
	}	
	50% { 
		transform: rotate(0) translate(0,0);			
	}	
	75% { 
		transform: rotate(3deg) translate(0,15px);			
	}	
	100% { 
		transform: rotate(0) translate(0,0);			
	}	
	
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;  
}

.gallery-wrapper{
  padding: 0 60px;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--primary-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--primary-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/* Breadcrumb */

.it-breadcrumb-wrapper{
  width: 100%;
}
.breadcrumb-end h1{
  text-align: end;
}

.breadcrumb-end > .it-breadcrumb-container{
  display: flex;
  justify-content: end;
}

.breadcrumb-center h1{
  text-align: center;
}

.breadcrumb-center > .it-breadcrumb-container{
  display: flex;
  justify-content: center;
}

.breadcrumb-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/*contact Form*/
.info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}
.info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  
}

@media (max-width: 575px) {
  .php-email-form {
    padding: 20px;
  }
}

.php-email-form input[type=text],
.php-email-form input[type=email],
.php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #fff;
  background-color: var(--surface-color);
 
}

.php-email-form input[type=text]:focus,
.php-email-form input[type=email]:focus,
.php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.php-email-form input[type=text]::placeholder,
.php-email-form input[type=email]::placeholder,
.php-email-form textarea::placeholder {
  color: color-mix(in srgb, #fff, transparent 70%);
}

.php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--primary-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.button-center{
  display: flex;
  justify-content: center;
}

.it-button svg{
  margin-right: 15px;
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-container .faq-item {
  
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-container .faq-item h3 .num {
  padding-right: 5px;
}

.faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  
}

.youtube-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.icon-wrapper{
  width:100%;
  display: flex;
}
.justify-content-center{
  justify-content: center;
}
.justify-content-left{
  justify-content: start;
}
.justify-content-right{
  justify-content: end;
}

.py-60{
  padding:60px 0;
}

.wp-block-itblocks-icon{
  display: flex;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}


.tag{
  width: 70px;
  height: 70px;
  background-position: center;
  background-size: contain;
  position: absolute;
  z-index: 1; 
}

.special-tag{
  background-image: url(../../assets/img/remcommanded.png);
  top: 10px;
  right: 10px;
}

.description {
  background-color: #f8f8f8;
  padding:20px;
  border-radius:0 0 15px 15px;
  overflow: hidden;
  border:1px solid rgba(0, 0, 0, 0.05);
}

.swiper-slide{
  background-color: none!important;
}

.description h4 {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
}

.feature-img{
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  background: none!important;
  position: relative;
}

.korean-title{
  font-family: "Single Day", cursive;
  text-align: center;
  font-size: 20px;
  color: #999999;
}

.skids{
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 30px;
}

.skids-desc{
  padding: 15px;
}

.skids-desc h4{
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}

.kids-tag{
  background-image: url(../../assets/img/kids.png);
  top: 10px;
  right: 10px;
}

.spicy-tag{
  background-image: url(../../assets/img/spicy-1.png);  
}

.spicy-2x-tag{
  background-image: url(../../assets/img/spicy-2.png);  
}

.spicy-mild-tag{
  background-image: url(../../assets/img/spicy-3.png);
  
}

.spicy-tag-pst{
  bottom: 10px;
  left: 10px;
}

.animated-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-block-image{
  margin:0;
}


.bottom-separator-2::after{ 

  content: "";
  position: absolute;
  display: block;
  width: 200px;
  height: 38px;
  background-image: url(../../assets/img/separator-3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.bottom-separator-3::after {
  content: "";
  position: absolute;
  display: block;
  width: 200px;
  height: 38px;
  background-image: url(../../assets/img/separator-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


.tax-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.tax-list li{
  border-bottom: 1px solid #84240c;
  padding: 10px 0;
}

.tax-list li a{
  text-decoration: none!important;
}




