/*
Theme Name: idealKKong
Theme URI: https://idealtechnology.asia/
Author: Ideal Technology
Author URI: https://idealtechnology.asia/
Description: Custom theme
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 7.0
Version: 1.1
Text Domain: realpork
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  font-family: var(--default-font);
}

a {
  color: var(--primary-color);
  text-decoration: none!important;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--primary-color), transparent 25%);  
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--default-color);  
  font-family: var(--primary-font);
}

h1{
  font-size: 40px;/* 32-48 */
  line-height: 44px;/* 38-62 */
}

h2{
  font-size: 32px;/* 24-36 */
  line-height: 38px;/* 30-50 */
  font-weight:600;
}

h3{
  font-size: 20px;/* 20-30 */
  line-height: 26px;/* 26-42 */
  font-weight:500;
}

h4{
  font-size: 18px;/* 18-24 */
  line-height: 23px;/* 23-36 */
  font-weight:500;
}

h5{
  font-size: 16px;/* 16-20 */
  line-height: 22px;/* 22-30 */
  font-weight:500;
}

h6{
  font-size: 14px;/* 14-16 */
  line-height: 20px;/* 20-26 */
  font-weight:500;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);  
  font-family: var(--default-font);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--primary-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.select-none{
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: #ffffff; 
}

.header .topbar {
  background-color: #ececec;
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--default-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: var(--default-color);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
  transition: all 0.5s;
}

.header #logo-wrapper{
  text-align: center;
  width:160px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100px;
  transition: all 1s ease;
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

.scrolled .header{
  top: -37px!important;
}

.scrolled .header .logo img{
  max-height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    display: flex;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    padding: 18px 30px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .separtor::before{
    display: block;
    position: absolute;
    right: 0;
    bottom: calc( 50% - 5px);
    content: '';    
    width: 2px;
    height: 10px;
    background-color: #999999;    
  }

  .navmenu li:hover>a,
  .navmenu li.current-menu-item a,
  .navmenu li.current-menu-item a:focus {
    color: var(--primary-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .current-menu-item:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .mobilemenu{
    display: none;
  }
 
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    position: absolute;
    z-index: 99;
    left: 0;
    margin-top: -15px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .header .topbar,
  .menu-container{
    display: none!important;
  }

  .mobilemenu {
    padding: 0;
    z-index: 9997;
  }

  .scrolled .header{
    top: 0!important;
  }

  .mobilemenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .mobilemenu a,
  .mobilemenu a:focus {
    color: var(--nav-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .mobilemenu a i,
  .mobilemenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--primary-color), transparent 90%);
  }

  .mobilemenu a i:hover,
  .mobilemenu a:focus i:hover {
    background-color: var(--primary-color);
    color: var(--contrast-color);
  }

  .mobilemenu a:hover,
  .mobilemenu .current-menu-item a,
  .mobilemenu .current-menu-item a:focus {
    color: var(--primary-color);
  }

  .mobilemenu .current-menu-item i,
  .mobilemenu .current-menu-item:focus i {
    background-color: var(--primary-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .mobilemenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .mobilemenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .mobilemenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }    

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .mobilemenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .mobilemenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Language
--------------------------------------------------------------*/

.language{
    margin-left: 15px;
    display: flex;
    width: 70px;
    align-items: center;
    cursor: pointer;
    position: absolute;
    right: 15px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }

  .language span{    
    font-family: var(--secondary-font);
    text-transform: uppercase;
    font-size: 14px;
    margin-right: 10px;
    color: var(--primary-color);
  }

  .language i{
    font-size: 12px;
    color: #222222;
  }

  #langauge-list{
    top:30px;   
    position: absolute;
    z-index: 9999;
    list-style: none;
    padding:0;
    margin: 0;
    background-color: #ffffff;    
  }

  #langauge-list li{
    padding: 5px 15px;
    line-height: 1;
  }

  #langauge-list li:hover, #langauge-list li.current-lang{
    background:var(--primary-color);
  }

  #langauge-list li a{
    font-family: var(--default-font);
    font-size: 14px; 
    color:#333333;
  }

  #langauge-list li a:hover,#langauge-list li.current-lang a{
    color:#fff;
  }




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: rgba(255, 255, 255, 0.8);
  background-color:#111111;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

#footer-logo{
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 75px 75px 75px 75px;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  background-color: #ffffff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader h2{
  font-weight: 700;
  line-height: 1;
  margin:0;
}

#preloader h6{
  font-weight: 500;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  padding: 25px 0;
  position: relative;
}


.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
.section {
  padding: 60px 0; 
}

@media (max-width: 1199px) {


}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 { 
  margin: 10px 0;  
  text-transform: uppercase;  
}

.section-title h2 span {
  color: var(--primary-color); 
}

.section-title p {
  margin: 0 auto;
  text-align: center;
  color: #666666;
  max-width: 800px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc( 100vh - 162px );
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  position: relative;
  padding: 0;
}

#hero-slider .swiper-slide{
  width: 100%;
  height: calc( 100vh - 162px );
  background-repeat: no-repeat; 
  background-attachment: fixed;  
}

#hero-slider .it-swiper-button-next, #hero-slider .it-swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.3); 
  border-radius: 50%; 
  color: white;   
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none;    /* For Firefox */
  -ms-user-select: none;     /* For Internet Explorer/Edge */
  user-select: none;         /* Standard property */
}

#hero-slider .it-swiper-button-prev::after, #hero-slider .it-swiper-button-next::after{
  font-size: 16px;
}

#hero-slider .it-swiper-button-next {
  right: 10px;
}

#hero-slider .it-swiper-button-prev {
  left: 10px;
}

.it-swiper-pagination{
  bottom: 50px!important;
}

.it-swiper-pagination .swiper-pagination-bullet{
  width: 25px!important;
  height: 3px!important;
  border-radius:5px!important;
  background-color: rgba(255, 255, 255, 1);
}

/*--------------------------------------------------------------
# Animation Section
--------------------------------------------------------------*/

.animated-img{
  position: absolute;
  left: 50%;
  top: 50%;
}

#mala-img{  
  margin-left: -100px;
  margin-top: -400px;  
  animation: move ease-in-out 10s infinite;
}

#wuxing-img{
  margin-left: 100px;
  margin-top: -300px;  
  animation: move ease-in-out 15s infinite;
}

#chili-img{  
  margin-left: -140px;
  margin-top: 50px;  
  animation: move ease-in-out 10s infinite;
}

#potato-mala-img{   
  margin-left: 220px;
  margin-top: -330px;
  animation: move ease-in-out 10s infinite;
}

#potato-wuxing-img{ 
  margin-left:32px;
  margin-top:-217px;
  animation: move ease-in-out 15s infinite;
}

#potato-chili-img{   
  margin-left: -212px;
  margin-top: -200px;  
  animation: move ease-in-out 10s infinite;
}

#potato-img{   
  margin-left: 200px;
  margin-top: 120px;  
  animation: move ease-in-out 12s infinite;
}

.slider-text{
  margin-left: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.slider-text h5{
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 70px;
}

.slider-text h3{
  color: #f9e854;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 135px;
  font-size: 180px;
}


@media (min-width: 1024px) {
	
}

@keyframes kenburns {
	0% {
	  background-size: 100%;	
	  background-position: 0% 0%;  
	}
	50% {
		background-size: 110%;
		background-position: 10% 10%; 
	}
	100% {
		background-size: 100%;
		background-position: 0% 0%; 
	}
  }


  @keyframes shake {
	0% { 
		transform: rotate(0) translate(0,0);			
	}	
	25% { 
		transform: rotate(-7deg) translate(0,70px);			
	}	
	50% { 
		transform: rotate(0) translate(0,0);			
	}	
	75% { 
		transform: rotate(7deg) translate(0,70px);			
	}	
	100% { 
		transform: rotate(0) translate(0,0);			
	}	
	
}   

@keyframes move {	
	0% {
		transform: scale(0.7) rotate(7deg) translate(0, 5px);	  	  
	}	

    50% {
		transform: scale(0.9) rotate(0) translate(-5px, 0);	  
	}       
	
	100% {
		transform: scale(0.7) rotate(7deg) translate(0, 5px);		  
	}	  
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  margin-top:-90px;
  position: relative;
  z-index: 1;    
}

.about .container{
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.about .about-content p{
  padding-right: 15px;
}

#about-img{
  margin:0!important;
  padding-left:0!important;
}


.about .about-content p:last-child {
  margin-bottom: 0;
}

.btn-more{
  background-color: var(--primary-color);
  padding: 8px 12px 8px 20px;
  text-transform: uppercase;
  font-size:14px;
  border-radius: 25px;
  color: #ffffff;
  font-weight: 700;
}

.btn-more:hover{
  background-color: #ececec;
  color: var(--default-color);
}

.btn-more i{
  padding-left: 10px;
}

/*--------------------------------------------------------------
# Ingridients Section
--------------------------------------------------------------*/
.ingridient {
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.ingridient:before {
  content: "";
  position: absolute;
  background: var(--primary-color);  
  inset: 0 100% 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.ingridient:hover h5,
.ingridient:hover i
 {
  color: #ffffff;
}

.ingridient:hover:before {
  background: var(--primary-color);
  inset: 0;  
}

.title-wrapper{
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title-wrapper h5{
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  transition: ease-in-out 0.3s;
}

.title-wrapper i{
  font-size: 30px;
  transition: ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# flavour Section
--------------------------------------------------------------*/
#flavour{
  padding:20px 0;
}

.flavour-item{
  margin-top: 60px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.flavour-item h3{
  text-align: center;
  padding: 15px;
}

.flavour-level-wrapper p{
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  margin-right: 20px;
  margin-bottom: 0;
}

.flavour-level-wrapper i{
  line-height: 30px;
  font-size: 30px;
  color: #fdb913;
}

ul.spicy-level{
  text-align: center;
  padding: 0;
  margin:0;
  list-style: none;
  display: inline-flex;
}

ul.spicy-level li{
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  margin: 1px;
}

.spicy-1{
  background-color: rgba(255,26,0, 0.25);
}
.spicy-2{
  background-color: rgba(255,26,0, 0.50);
}
.spicy-3  {
  background-color: rgba(255,26,0, 0.75);
}
.spicy-4  {
  background-color: rgba(255,26,0, 1);
}

#mala-flavour{
  background: rgba(255,26,0, 1);
  color: #ffffff;
}

/*--------------------------------------------------------------
# Crispy Potatoe Section
--------------------------------------------------------------*/

.potatoe-desc{
  padding: 30px;
  margin: 30px 0;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.animi-wrapper{
  position: relative;
}

#animi-potato{
  width: 150px;
  height: 150px;
  background: url('assets/img/animi-potato.png') no-repeat center; 
  background-size: 100px 100px; 
  position: absolute;
  top:-220px;
  right:-100px;
  animation: shake ease-in-out 5s infinite;
}

/*--------------------------------------------------------------
# Partner Section
--------------------------------------------------------------*/
#partner-list{
  display: flex;
  justify-content: center;
}

.partner{
  margin: 15px 10px;
  width: 90px;  
  border-radius: 15px;
  overflow: hidden;  
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/*--------------------------------------------------------------
# Popular Section
--------------------------------------------------------------*/
#popular{
  padding: 60px;
  overflow: hidden;
}
#popular .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#popular .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--primary-color);
}

#popular .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

#popular .swiper-slide{
  text-align: center;
  border-bottom: 3px solid #ececec;
}

#popular.swiper-slide h5{
  padding: 15px 0;
  text-transform: capitalize;
}

#popular .swiper-slide-active {
  text-align: center;
}

#popular .swiper-slide-active h5{
  color: var(--primary-color);
}

@media (min-width: 992px) {
  #popular .swiper-wrapper {
    padding: 40px 0;
  }

  #popular .swiper-slide-active {
    background: #fff;
    z-index: 1;
    transform: scale(1.15);
    margin-top: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  }
}

.promo-swiper{
    background: #e2e2e2;
}

.promo-content{
    height: 100%;
    padding: 30px 50px;
    display:flex;
    flex-direction: column;
    justify-content: center;
}

.promo-content h2{
    margin-bottom: 30px;
    color: var(--primary-color);
}

.single-content{
    padding: 30px 0;
}

/*--------------------------------------------------------------
  # Page 
  --------------------------------------------------------------*/
.page-wrapper{
  padding: 60px 0;
}
/*--------------------------------------------------------------
  # Page - Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumb-wrapper{
    padding:45px 0;
    background: var(--primary-color);
  }

  .breadcrumb-wrapper h1{
    margin-bottom: 0;
    font-weight: 700;
    color: white;
  }

  .breadcrumbs span{
    color:white;
  }

  .breadcrumbs span a{
    color:rgba(255, 255, 255, 0.7); 
  }

/*--------------------------------------------------------------
  # Page - Grids
--------------------------------------------------------------*/
.grid-title{
  margin: 15px 0;
}

.grid-excerpt{
  font-size: 14px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
  # Page - Pagination
--------------------------------------------------------------*/
  .post-pagination{
    padding: 20px;
  }

  .post-pagination .page-numbers{
    color: var(--default-color);
    padding: 10px 15px;
    border:1px solid var(--default-color);
  }

  .post-pagination .current{
    color:#ffffff!important;
    border:1px solid var(--primary-color);
    background-color: var(--primary-color)!important;
  }
/*--------------------------------------------------------------
  # Page  - Menu
  --------------------------------------------------------------*/
 .page-menu-item-wrapper{
     border-top: 5px solid var(--primary-color);
     box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
 }
 
 .page-cat-title h3{
     padding: 20px;
     text-transform:uppercase;
 }
 
 .tax-menu-title h4{
     padding: 20px;
     text-transform:uppercase; 
 }
 
 .tax-menu-grid-wrapper{
    border-top: 5px solid var(--primary-color);
     box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; 
 }
 
 .kk-menu{
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
  .kk-menu .sb-menu-item-wrapper{
    flex: 1;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin: 0 15px;
    border-radius: 15px;
    overflow: hidden;
  }
  
   .sb-menu-item-wrapper .sb-menu-item{
        padding: 20px;  
   }
   
   .sb-menu-item h3{
       text-align: center;
       font-weight: 700;
       text-transform: uppercase;
   }
  
  
   .sb-menu-item-wrapper .active-sb-menu, .sb-menu-item-wrapper:hover .sb-menu-item{
      background: var(--primary-color); 
   }
   
   .active-sb-menu h3, .sb-menu-item-wrapper:hover .sb-menu-item h3{
       color: #ffffff!important;
   }
   
   .sub-kk-menu{
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top:30px;
   }
   
   .sub-kk-menu .kk-sub-menu-item-wrapper{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin: 0 15px;
    border-radius: 15px;
    overflow: hidden;
   }
   
   .kk-sub-menu-item-wrapper .kk-sub-menu-item{
       padding: 10px 20px;
   }
   
   .kk-sub-menu-item-wrapper .active-sub-menu, .kk-sub-menu-item-wrapper:hover .kk-sub-menu-item{
       background:var(--primary-color);
   }
   
   .active-sub-menu h4, .kk-sub-menu-item-wrapper:hover .kk-sub-menu-item h4{
       color: #ffffff!important;
   }
   .tax-mgt{
       margin-top: 60px;
   }
   
   .menu-bg{
       background: url('assets/img/hypnotize.png')center;
   }
   
   .term-description{
       background: #ffffff;
       padding: 30px 25px;
       margin-top: 30px;
       border-radius: 25px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
   }

/*--------------------------------------------------------------
  # Page  - Contact
  --------------------------------------------------------------*/
  
  .contact-form .it-contact-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
    padding: 50px 30px;
  }
  
  .contact-form .it-contact-form .error-message {    
    color: #fff;
    background: var(--highlight-color);
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact-form .it-contact-form .error-message br+br {
    margin-top: 25px;
  }
  
  .contact-form .it-contact-form .sent-message {
    
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact-form .it-contact-form .loading {    
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact-form .it-contact-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact-form .it-contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form .it-contact-form input,
  .contact-form .it-contact-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }
  
  .contact-form .it-contact-form input:focus,
  .contact-form .it-contact-form textarea:focus {
    border-color: #106eea;
  }
  
  .contact-form .it-contact-form input {
    padding: 10px 15px;
  }
  
  .contact-form .it-contact-form textarea {
    padding: 12px 15px;
  }
  
  .contact-form .it-contact-form button[type=submit] {
    background: var(--primary-color);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
  }
  
  .contact-form .it-contact-form button[type=submit]:hover {
    background: #3b8af2;
  }

  .contact-form .it-contact-form .error{
    font-size: 12px;
    color:var(--highlight-color);
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

@media (max-width: 1200px) {
  .slider-text h3{
    font-size: 70px;
    line-height: 60px;
  }
  .slider-text h5{
    font-size: 50px;
  }

  #mala-img{
  margin-left: -50px;
  margin-top: -230px;  
  width: 400px!important;
  height: auto!important;    
  }

  #wuxing-img{
    margin-left: 100px;
    margin-top: -270px; 
    width: 400px!important;
    height: auto!important;    
   }

   #chili-img{  
    margin-left: -50px;
    margin-top: -50px;  
    width: 200px!important;
    height: auto!important;   
   }

   #potato-mala-img{   
    margin-left: 100px;
    margin-top: -200px;
    animation: move ease-in-out 10s infinite;
  }
  
  #potato-wuxing-img{ 
    margin-left:-70px;
    margin-top:-160px;
    animation: move ease-in-out 15s infinite;
  }
  
  #potato-img{   
    margin-left: -140px;
    margin-top: 55px;  
    width: 90px;
    animation: move ease-in-out 12s infinite;
  }

   

  .header .logo img{
    max-height: 50px;
  }
  .scrolled .header .logo img{
    max-height: 35px;
  }
}

@media (max-width: 992px) {
  h1{
    font-size: 32px;
  }
  .header .logo img{
    max-height: 45px;
  }
  .scrolled .header .logo img{
    max-height: 35px;
  }

  #hero,
  #hero-slider .swiper-slide{    
    height: calc( 100vh - 70px );
  }

  .section-title p{
    max-width:600px;
  }


}

@media (max-width: 768px) {
  h1{
    font-size: 28px;
  }

  .header .logo img{
    max-height: 45px;
  }
  .scrolled .header .logo img{
    max-height: 35px;
  }

  .section-title p{
    max-width:90%;
  }
  .mobile-nav-toggle{
    left:15px;
  }
  #hero,
  #hero-slider .swiper-slide{    
    height: calc( 100vh - 45px );
  }
  
  .about{
    margin-top: 0;
  }

  #animi-potato{
    right: 0;
  }
}

@media (max-width: 576px) {
  h1{
    font-size: 24px;
  }

  h2{
    font-size: 20px;
  }

  h3{
    font-size: 16px;
  }

  p{
    font-size: 14px;
  }

  .title-wrapper h5{
    font-size: 14px;
  }

  .slider-text{
    top: 100px!important;
    margin-left: 50px;
  }

  .slider-text h3{
    font-size: 50px;
    line-height: 40px;
  }
  .slider-text h5{
    font-size: 30px;
    bottom: 100px!important;
  }

  #mala-img{
  margin-left: -150px;
  margin-top: -100px;  
  width: 250px!important;
  height: auto!important;    
  }

  #wuxing-img{
    margin-left: -90px!important;
    margin-top: 0px!important; 
    width: 250px!important;
    height: auto!important;    
   }

   #chili-img{  
    margin-left: -15px;
    margin-top: -100px;  
    width: 100px!important;
    height: auto!important;   
   }

   #potato-mala-img{   
    margin-left: -140px;
    margin-top: 15px;
    animation: move ease-in-out 10s infinite;
  }
  
  #potato-wuxing-img{ 
    margin-left:-160px;
    margin-top:-250px;
    animation: move ease-in-out 15s infinite;
  }
  
  #potato-img{   
    margin-left: -140px;
    margin-top: 55px;  
    width: 90px;
    animation: move ease-in-out 12s infinite;
  }

   
}

