/*--------------------------------------------------------------
# General English Css
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
  overflow-x: hidden !important;
 
}

a {
  color: #254d22;
  text-decoration: none;
}

a:hover {
  color: #00b4ff;
  text-decoration: none;
}

p{font-size: 15px;  }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;text-transform: capitalize;
}

/* .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{margin-bottom: 1rem;} */

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: '';
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #254d22;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/


.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #254d22;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #fff;
  color: #254d22;
}

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

.back-to-top:hover i{  color: #254d22;}
.back-to-top:active i{  color: #254d22;}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 50px;
}
#english_header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#english_header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#english_header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#english_header .logo a {
  color: #0b2341;
}

#english_header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar li a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #2d602a;
  transform-origin: bottom left;
  transition: transform 0.5s ease-out;
}

.navbar li a:hover::after {
  transform: scaleX(1);
  color: #2d602a;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 20px 10px 20px;
  font-size: 15px;
  color: #0b2341;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #254d22;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #254d22;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ef6445;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #254d22;
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0b2341;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  height: 100%;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #254d22;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #254d22;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*----------------Buttons---------------------------------------*/

.button-sky {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 40px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #254d22;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background-color: #00b4ff;
  color: #fff;
 margin-top: 20px;
  border-radius: 50px;
}

.button-sky:hover {
  background: #254d22;
  color: #fff;
  text-decoration: none;
}

.button-white {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 40px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #254d22;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background-color: #fff;
  color: #00b4ff;
  margin-top: 20px;
  border-radius: 50px;
}

.button-white:hover {
  background: #254d22;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;

  /* max-height: calc(190vh);
  min-height: 100vh !important; */

  overflow: hidden;
  position: relative;
  background-size: cover;


 


}

.container video {
  width: 100%;
  height: 100%;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: '';
  /* background-color: rgba(4, 12, 21, 0.5); */
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@media (min-width: 1200px) {

  .products_list_page .col-sm-4{padding: 0px 30px;}

  .card-slider .swiper-pagination {
  display: none;
}

 .desk_show{display: block;}
 .mob_show{display: none;}
  #hero p {
    width: 50%;
  }

  .mob_show_2{display: none;}
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #254d22;
}

#hero .btn-get-started {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  transition: 0.5s;
  line-height: 1;
  color: #000;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #fff;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #ef6445;
}

@media (max-width: 992px) {
  #hero {
    /* height: 100vh; */
  }

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (min-width: 768px) and (max-width:992px){
  .wg-box-content-image {
    width: 100%;
}

  .n_overlap-2{padding-top:100px ;}
  .card-section{padding-top: 100px !important;}
  .n_overlap-2 .row{flex-direction: column-reverse;}
  .contact-team .row{flex-direction: column-reverse;}
  .ico-box{  
    margin: 40px 40px 0px !important;
    height: 250px !important;
  }

  .royal_food .floating-product-2 {
    position: absolute;
    left: 22% !important;
    top: 23% !important;}

  .heading-block{margin-bottom: 70px !important;}

  .mob_show{display: block !important;}
  .desk_show{display: none;}
  .overlap_sec_text1{margin-top: 50px;}
  .overlap_sec_text2{margin-top: 50px;}
}
@media (max-width: 768px) {
  .card-section{padding-top: 100px !important;}
  .heading-block{margin-bottom: 70px !important;}

  .desk_show{display: none;}
  .mob_show{display: block;}
  #hero{padding-top: 0px;}
  #hero h2 {
    font-size: 30px;
  }
  
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  /* padding: 90px 0; */
padding-top: 100px;
}
.card-section{padding-top: 70px;}

.section-bg {
  background-color: #f6f9fd;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Poppins', sans-serif;
}

.section-title h2::after {
  content: '';
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  color: #0f2f57;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-choose-us .wcu_icon {
  width: 80px;
}

.why-choose-us p{margin-bottom: 0px;}
/* .why-choose-us{padding-top: 190px;} */
.left-benefit-box {
  text-align: end;
}

.right-benefit-box {
  text-align: left;
}

.why-choose-us .left-benefit-box .box1 {
  margin-right: 0px;
  padding: 20px 0px;
}

.why-choose-us .left-benefit-box .box2 {
  margin-right: 50px;
  padding: 20px 0px;
}

.why-choose-us .left-benefit-box .box3 {
  margin-right: 50px;
  padding: 20px 0px;
}

.why-choose-us .left-benefit-box .box4 {
  margin-right: 0px;
  padding: 20px 0px 0px;
}

.why-choose-us .right-benefit-box .box1 {
  margin-left: 0px;
  padding: 20px 0px;
}

.why-choose-us .right-benefit-box .box2 {
  margin-left: 50px;
  padding: 20px 0px;
}

.why-choose-us .right-benefit-box .box3 {
  margin-left: 50px;
  padding: 20px 0px;
}

.why-choose-us .right-benefit-box .box4 {
  margin-left: 0px;
  padding: 20px 0px 0px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 22px;
  height: 6px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #254d22;
  border-radius: 0px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #254d22;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #254d22;
  background-image: url(../img/FooterSplash.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  /* padding: 0 0 30px 0; */
  color: #fff;
  font-size: 14px;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: transparent;

  text-align: center;
  padding: 50px 0px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
}
#english_footer {
  background: #254d22;
  background-image: url(../img/FooterSplash.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  /* padding: 0 0 30px 0; */
  color: #fff;
  font-size: 14px;
}

#english_footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: transparent;

  text-align: center;
  padding: 50px 0px;
}

#english_footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#english_footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
}

.social-links a {
  font-size: 12px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 26px;
  height: 26px;
  transition: 0.3s;
  border-radius: 100px;
  background: #00b4ff;
}

.social-link-footer a {
  background-color: #fff !important;
  color: #254d22 !important;
}

.social-link-footer {
  margin-top: 25px;
  margin-bottom: 25px;
}

.social-links a:hover {
  color: #fff;
  background: #254d22;
  text-decoration: none;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links ul,
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  display: inline;
}

.footer-menu ul li a {
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #fff;
  /* white-space: nowrap; */
  transition: 0.3s;
  text-transform: capitalize;
}

.footer-links ul i {
  padding-right: 2px;
  color: #ef6445;
  font-size: 18px;
  line-height: 1;
}

.footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-newsletter form input[type='submit']:hover {
  background: #ef6445;
}

#footer .copyright {
  /* border-top: 1px solid #0f2f57; */
  text-align: center;
  /* padding-top: 30px; */
  color: #000;
  background-color: transparent;
  padding-bottom: 15px;
}
/* 
@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
} */

/* header social-media*/
.social-media-header li a {
  color: #fff;
  background-color: #00b4ff !important;
}

.footer-menu {
  margin-top: 20px;
}

.leaf-icon img {
  width: 20px;
}

.leaf-icon {
  margin-left: 13%;margin-bottom: 20px;
}

.why-choose-us .contact_us .leaf-icon-center, .card-section .leaf-icon-center , .product-slider .leaf-icon-center{margin-bottom: 20px; }

.subtitle {
  color: #254d22;
  font-size: 1.8rem;
}

.title {
}

.side-image-left .pattern-bg {
  width: 120%;
  height: 100%;
  position: absolute;
  left: 5%;
  top: -5%;
  background: url(../img/Photo-Section-02.jpg);
  background-size: contain;
}

.side-image-left {
  display: inline-block;
  margin-bottom: 0;
  margin-top: -20px;
  /* background: #ebcfa7; */
  position: relative;
}

.side-image-left .holder {
  position: relative;
  width: 100%;
  float: left;
  display: block !important;
  transform: translate(85px, -65px);
}

.royal_food {
  background-image: url(../img/BG-01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.royal_food p {
  color: #fff;
  line-height: 22px;
}

.royal_food .content .btn-learn-more {
  background-color: #fff;
  color: #00b4ff;
}

.royal_food .floating-product-2 {
  position: absolute;
  left: 11%;
  top: 37%;
  width: 300px;
  transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
  animation: float 6s ease-in-out infinite;
}

.royal_food .floating-product {
  position: absolute;
  left: 11%;
  top: 37%;
  width: 300px;
  transform: translatey(0px);
  -webkit-animation: float 4s ease-in infinite;
  animation: float 4s ease-in-out infinite;
}

@-webkit-keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

.product-slider {
  padding-left: 10%;
  padding-right: 10%;
  /* padding-top: 0px; */
}
.royal_food{padding-bottom: 40px;}

.our-products .produt-text h3{margin-top: 30px; font-size: 1.3rem;}
.our-products .produt-text h4{ font-size: 1.1rem;}
.our-products .produt-text h6{ font-size: .9rem;}

.product-slider img {
  width: 180px;
}

.product-slider-content {
  padding-top: 30px;
}

.produt-text {
  text-align: center;
  color: #254d22;
}

.product-slider .leaf-icon-center img {
  width: 20px;
}

.royal_food h1,
.royal_food h6 {
  color: #fff;
}

.overlap_img_section-1 p,
.overlap_img_section-2 p {

  
  margin-top: 20px;
}

.overlap_img_section-1 .image-stack__item--top img {
  position: absolute;
  width: 400px;
  height: 546px;
  left: 16%;
  border-radius: 10px;
}

.overlap_img_section-1 .image-stack__item--bottom img {
  width: 300px;
  height: 409px;
  margin-top: 65px;
  border-radius: 10px;
}

.overlap_img_section-2 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.overlap_img_section-2 .image-stack__item--top img {
  position: absolute;
  width: 400px;
  right: 16%;
  border-radius: 10px;
}

.overlap_img_section-2 .image-stack__item--bottom img {
  width: 300px;
  margin-top: 65px;
  border-radius: 10px;
}

.overlap_img_section-2 .image-stack__item--bottom {
  text-align: end;
}

/******* icon box styles *******/

.ico-box {
  margin: 60px 70px 0px;
  /* padding: 1.063rem 0.9375rem 0.9375rem; */
  padding: 30px;
  box-shadow: inset -20px -21px 19px -8px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: justify;
  border-radius: 25px;
  position: relative;
  /* -webkit-transition: box-shadow linear 0.8s; */
  /* -o-transition: box-shadow linear 0.8s; */
  /* -webkit-transition: -webkit-box-shadow linear 0.8s; */
  /* transition: -webkit-box-shadow linear 0.8s; */
  /* transition: box-shadow linear 0.8s; */
  /* transition: box-shadow linear 0.8s, -webkit-box-shadow linear 0.8s; */
  height: 300px;
}

.ico-box:be {
  position: absolute;
  content: ' ';
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  border-radius: 25px;
  -webkit-transition: -webkit-transform linear 0.2s;
  transition: -webkit-transform linear 0.2s;
  -o-transition: -o-transform linear 0.2s;
  transition: transform linear 0.2s;
  transition: transform linear 0.2s, -webkit-transform linear 0.2s,
    -o-transform linear 0.2s;
  -webkit-transform: translate(101%, 0);
  -o-transform: translate(101%, 0);
  transform: translate(101%, 0);
}

.ico-box > * {
  position: relative;
  z-index: 2;
}

.ico-box .icon {
  color: #55565b;
}

.ico-box h4 {
  color: #55565b;
}

.ico-box h4 a {
  color: #55565b;
}

.ico-box:hover {
  /* box-shadow: 15px 29px 25px -7px rgba(0, 0, 0, 0.1); */
  box-shadow: inset 0px -16px 31px 2px rgba(0,0,0,0.1),0px 10px 15px -3px rgba(0,0,0,0.1),0px 10px 15px -3px rgba(0,0,0,0.1);
}

/* .ico-box:hover:before {
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
} */

.ico-box .icon {
  margin-bottom: 1.5625rem;
  color: #575757;
  font-size: 2.8125rem;
  line-height: 1;
}

.ico-box .des {
  color: #575757;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0;
}

.ico-box .des p {
  margin-bottom: 0;
}

.ico-box .link-holder {
  margin-top: 1.875rem;
}

.ico-box .link-holder .link-more {
  text-transform: uppercase;
  color: #212121;
  font-size: 0.875rem;
  font-family: 'Poppins', sans-serif;
}

.ico-box .link-holder .link-more:hover {
  color: #5645ff;
}

.ico-box.dark-hover:before {
  background: #55565b;
}

.ico-box.dark-hover:hover .des,
.ico-box.dark-hover:hover .link-more {
  color: #c1c5cd;
}

.ico-box.dark-hover .link-more:hover {
  color: #fff;
}

.ico-box.has-shadow {
  -webkit-box-shadow: 0 10px 40px 0 rgba(36, 83, 107, 0.1);
  box-shadow: 0 10px 40px 0 rgba(36, 83, 107, 0.1);
}

.ico-box.has-shadow1 {
  -webkit-box-shadow: 0 0.1429rem 0.6429rem 0.07143rem rgba(1, 2, 2, 0.1);
  box-shadow: 0 0.1429rem 0.6429rem 0.07143rem rgba(1, 2, 2, 0.1);
}

.bordered-icon .ico-box .icon {
  width: 6.25rem;
  height: 6.25rem;
  margin: 0 auto 1.875rem;
  text-align: center;
  border: rgba(0, 0, 0, 0.08) 0.1875rem solid;
  line-height: 6.25rem;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.bordered-icon .ico-box:hover .icon {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.icon-v1 .ico-box {
  text-align: left;
  padding: 0;
}

.icon-v1 .ico-box h4 {
  text-transform: capitalize;
  letter-spacing: 0;
  padding-left: 1.875rem;
}

.icon-v1 .ico-box .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-size: 1.125rem;
}

.icon-v1 .ico-box:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.icon-box-v2 .ico-box {
  padding: 0;
  min-height: 10rem;
  border: rgba(0, 0, 0, 0.1) 0.0625rem solid;
  border-radius: 4px;
}

.icon-box-v2 .ico-box .icon {
  position: absolute;
  width: 6.25rem;
  border-right: rgba(0, 0, 0, 0.1) 0.0625rem solid;
  height: 100%;
  padding-top: 2rem;
}

.icon-box-v2 .ico-box .icon-desc {
  text-align: left;
  padding: 2rem 0.9375rem;
  padding-left: 7.813rem;
}

.flipped-box .ico-box,
.flipped-box .front-box,
.flipped-box .back-box {
  min-height: 9.375rem;
  width: 100%;
}

.flipped-box .flipper-box {
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
}

.flipped-box .ico-box {
  -webkit-perspective: 1000;
  perspective: 1000;
}

.flipped-box .ico-box .front-box,
.flipped-box .ico-box .back-box {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.flipped-box .ico-box .back-box {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.flipped-box .ico-box:hover .flipper-box {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

@media only screen and (min-width: 991px) {
  .ico-box {
padding: 30px;
  }

  .ico-box p {
   line-height: 23px;
   color: grey; font-weight: 400;
      }
}

.has-radius-medium {
  border-radius: 0.5rem;
}

.bg-gray-light {
  background: #f8f8f8;
}

.diagonal-box .light-sky {
  background-color: #3fd3fe;
  padding: 15px 30px;
  color: #fff;
  font-size: 18px;
  border-radius: 5px 0px 0px 5px;

}

.diagonal-box .dark-sky {
  background-color: #00b4ff;
  padding: 15px 30px;
  color: #fff;
  font-size: 18px;
  border-radius: 0px 5px 5px 0px;
  margin-left: -5px;

}

.diagonal-box {
  position: absolute;
  right: -9%;
  z-index: 1;
  background-color: #3fd3fe;
  /* width: 140px; 
  height: 70px;  */

  margin: 0 auto;
  transform: skew(-25deg);
  -o-transform: skew(-25deg);
  -moz-transform: skew(-25deg);
  -webkit-transform: skew(-25deg);
}

.ico-box p {
  margin-top: 50px;
  font-size: 14px;
  padding-bottom: 60px;
  line-height: 23px;
  color: grey; font-weight: 400;
}
#video-testimonials .testimonials-slide-video{
  /* padding-top: 20px; */
}
/*--Play button--*/
.play-now-video .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 65px;
  width: 65px;
  text-align: center;
  line-height: 65px;
  background-color: #fff;
  color: #c0bdbd;
  z-index: 1;
  font-size: 20px;
  /* padding-left: 5px; */
  display: block;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
}

.play-now-video .ripple,
.play-now-video .ripple:before,
.play-now-video .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 65px;
  width: 65px;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  box-shadow: 0 0 0 0 white;
  animation: ripple-video 3s infinite;
  z-index: 1;
}

.play-now-video .ripple:before {
  animation-delay: 0.9s;
  content: '';
  position: absolute;
}

.play-now-video .ripple:after {
  animation-delay: 0.6s;
  content: '';
  position: absolute;
}

@keyframes ripple-video {
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.aon-vodeo-area {
  padding: 300px 0px;
  background-image: url(../img/video-thumb.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.aon-vodeo-area2 {
  padding: 300px 0px;
  background-image: url(../img/video-thumb2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.testiminial-para {
  font-size: 15px;
  padding: 50px;
  color: grey;
}

.promobanner > a > img {
  min-width: 100%;
  height: 580px;
}

.promobanner .text {
  position: absolute;
  /* padding: 20px; */
  z-index: 1;
  color: #1a1a1a;
  font-size: 15px;
}

.promobanner .text.top-left,
.promobanner .text.top-middle,
.promobanner .text.top-right {
  top: 0;
  left: 0;
  right: 0;
}

.promobanner .text.top-left {
  text-align: left;
}

.promobanner .text.top-middle {
  text-align: center;
}

.promobanner .text.top-right {
  text-align: right;
}

.promobanner .text.middle-left,
.promobanner .text.middle-center,
.promobanner .text.middle-right {
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}



.onepage-collection-item {
  margin-top: 233.5%;
  transition: 0.6s;
  color: #ffff;

  background-color: #2e602b;
  padding: 20px 0px;
}

.onepage-collection-item a.btn.btn-default {
  display: none;
}

.onepage-collection-item > p:nth-child(2) {
  display: none;
  font-size: 17px;
  line-height: 24px;
  max-width: 600px;
}

.onepage-collection-item > p:nth-child(1) {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.onepage-collection-first .promobanner:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  background: #2e602b;
  opacity: 1;
  z-index: 1;
  display: none;
}

.onepage-collection-first .promobanner:hover:before {
  display: block;
}

.onepage-collection-first .promobanner:hover .onepage-collection-item {
  margin-top: 0;
}

.onepage-collection-first
  .promobanner:hover
  .onepage-collection-item
  > p:nth-child(2) {
  display: block;
}

.onepage-collection-first
  .promobanner:hover
  .onepage-collection-item
  a.btn.btn-default {
  display: inline-block;
}

.onepage-collection-second {
  margin-top: 30px;
  padding: 0 30px;
}

/*overlay section*/

.promobanner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.promobanner img {
  border-radius: 10px;
}

.promobanner .text.middle-center {
  text-align: justify;
}

.white-text {
  color: #fff;
}

/* .hover-text{display: none;} */
.show-text:hover .hover-text {
  display: block !important;
}

.show-text {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.promobanner .hover-text {
  padding: 0px 20px;
}

.promobanner:hover .show-text {
  display: none;
}

.floating {
  animation-name: floating;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: 5px;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -10px);
  }
}

.icon-box-cont,
.align_div_center {
  align-items: center;
}

.icon-box-cont p {
  font-size: 20px;
  font-weight: 700;
}

/* About us start */
.banner_image {
  background-image: url('../img/about/inner-bg.png');
  max-width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 320px;
  display: grid;
  place-items: center;
  align-items: center;
}
.banner_image .text-center{padding-bottom: 40px;}
.bg_aboutus {
  background-image: url('../img/about/aboutusbanner.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70vh;
  border-radius: 10px;
}
.bg_aboutus:hover {
  transform: scale(1.2);
  transition: 1s ease-in-out;
}
.aboutus_heading {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 30px;
}
.description {
  font-size: 15px;

  color: grey;

}
.leaf_icon {
  width: 20px;
}
.text-justify {
  text-align: justify;
}
.bg_text {
  font-weight: 700;
  font-size: 50px;
  color: #ffffff;
}
/* About us end */

/* technology start */
.bg_technology {
  background-image: url('../img/technology/technologybanner.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70vh;
  border-radius: 10px;
}
.bg_technology:hover {
  transform: scale(1.2);
  transition: 1s ease-in-out;
}
/* technology end */
.fs-50 {
  font-size: 50px;
}


/*----our products---*/
.our-products .swiper-pagination {margin-top: 70px !important;}
.our-products{padding-top: 110px;}
/* .card-section{padding-top: 70px;} */

/* contacts start */
.icon_box {
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 0px 2px 2px rgb(34 34 34 / 13%);
  /* text-align: center; */
  padding: 6%;
  height: 45vh;
}

.contact_icon {
  border-radius: 50%;
  border: 1px darkblue;
  padding: 1%;
  box-shadow: 0px 0px 2px 2px #22222221;
}
.mail::before {
  content: '📧';
  margin-right: 10px;
}
.landline:before {
  content: '☏';
  margin-right: 10px;
  color: #f2940c;
  fill: #f2940c;
}
.input_contact {
  border: 2px solid #c1c1c1;
  display: flex;
  align-items: center;
  background: #ffffff;
}
.form_input {
  border: none;
  width: 100%;
  background-color: #eee;
  padding: 2%;
  border-radius: 10px;
  border: 2px solid #eee;
  /* color: #ffffff; */
}
/* .form_input::placeholder {
  color: #ffffff;
} */
.form_input:focus {
  border: 2px solid #2d602a;
}
.form_input:hover {
  border: 2px solid #2d602a;
}

.form_input:focus-visible {
  border: 2px solid #2d602a;
}
.contact_form {
  box-shadow: 0px 0px 2px 2px #22222221;
  padding: 6%;
  border-radius: 10px;
}

/* contacts end */
/* products start */
.products {
  /* border-radius: 10px; */
  padding: 5%;
  /* margin: 5%; */
  text-align: left;
  box-shadow: 0px 0px 1px 1px #cccccc;
  background-color: #ffffff;
  cursor: pointer;
}

.product_list::before {
  content: '⮞';
  margin-right: 10px;
}
/* products End */

.text-main {
  color: #2d602a !important;
  font-size: 1.5rem;
}

.link {
  color: inherit;
}
.link:hover {
  color: inherit !important;
}

/* modal css start */
.modal-header {
  background-color: #2d602a;
  color: #ffffff;
}
.btn-close {
  background-image: url(../img/close.svg);
}
/* modal css end */
.language_selector {
  border: 2px solid #2d602a;
  padding: 5px 10px;
  border-radius: 10px;
  width: 65px;
}
/* .language_selector:focus {
  border: none !important;
} */
.language_selector::selection {
  border: none !important;
}




.language-changer .hn:after {
  color: #666;
  content: "  |  ";
}

.language-changer a{font-size: 15px;}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.right-content-inner .p-4{padding-top: 0px !important;}
.right-content-inner{padding-left: 36px;}

.modal-body {padding: 30px;}

@media (min-width: 576px){
.modal-dialog {
    max-width: 600px;}}

    .contact-team{padding-bottom: 20px !important;}
    /* #video-testimonials{padding-top: 90px;} */

    .overlay-text {
      position: absolute; 
      bottom: 0; 
      background:#2e602b;
 text-transform: capitalize;
      color: #fff;
      width: 100%;
      transition: .5s ease;
      opacity:1;
      color: white;
      font-size: 20px;
      padding: 20px;
      text-align: center;}

      .our-products-pdp{ padding-bottom: 100px;}
      .description .text-main{font-size: 16px;}
      .pl-60{padding-left: 60px;}
.vertical-center{ display: flex;
  flex-direction:column;
  align-content: flex-start;
  flex-wrap: wrap;
justify-content: center;}

      @media (max-width: 768px) {

        .gan_inner_pge{padding-top: 50px !important;}

        .container-fluid.p-0.mt-5{margin-top: 0px !important;}
        .footer-menu ul li a{font-size: 10px;}
        #footer .copyright{font-size: 10px;}
        #card-slider{padding-left: 20px; padding-right: 20px;}
        .overlap_img_section-2{margin-bottom: 0px;}
        .why-us-mobile-2{padding-top: 30px;}

 

        .royal_food {
          background-image: url(../img/Banner_mobile.svg);
          background-repeat: no-repeat;
          background-position: top center;
          background-size: cover;
        }

        .overlap_img_section-2 .align_div_center{flex-direction: column-reverse;}
        .contact-team .row{flex-direction: column-reverse;}
        .contact-team{padding: 0px 20px;}
        .royal_food{padding-bottom: 100px !important;}
        #video-testimonials .testimonials-slide-video{padding-top: 20px!important;}
        .product-slider-content{padding-top: 20px;}
        .con_team_col{margin-bottom: 50px;}
        .testimonials-slide-video .testiminial-para{text-align: justify !important; padding: 20px 0px;}

        .why-choose-us .content-right{ margin: 50px 0px 30px;}

        .subtitle {
          color: #254d22;
          font-size: 1.2rem;
      }
        .aon-vodeo-area{padding: 100px 0;}
        .testiminial-para{padding: 20px;}
        .royal_food .floating-product-2{
          position: absolute;
          left: 18.5%;
          top: 10%;
          width: 193px;
        }
        .overlap_img_section-1{margin: 50px 0px;}
        .image-stack{margin-bottom: 90px;}
        .overlap_img_section-1 .image-stack__item--top img{
          width: 245px;
          top: 3%;
          height: auto;
          left: 26%;
        }
        .overlap_img_section-1 .image-stack__item--bottom img{
          width: 200px;
          height: auto;
        }

        .overlap_img_section-2 .image-stack__item--top img{
          width: 245px;
      right: 26%;
          height: auto;
          top:4.5%
        
       
        }
        .overlap_img_section-2 .image-stack__item--bottom img{
          width: 200px;
          height: auto;
        }



        .overlap_img_section-1, .overlap_img_section-2{padding: 0px 20px;}

        .ico-box{
          margin: 20px 50px;
          height: 250px;
        }

        .royal_food, .product-slider{
     
          padding-left: 20px;
          padding-right: 20px;
      }
   
    .icon-box-cont p {
      font-size: 14px;}
      .why-choose-us .wcu_icon {
        width: 70px;
    }
    .why-choose-us .left-benefit-box .box2,   .why-choose-us .left-benefit-box .box3{margin-right: 65px;}
    .why-choose-us .left-benefit-box .box2,   .why-choose-us .left-benefit-box .box3 p{}

    .why-choose-us .right-benefit-box .box2,   .why-choose-us .right-benefit-box .box3{margin-left: 65px;}
    .why-choose-us .right-benefit-box .box2 p, .why-choose-us .right-benefit-box .box3 p{padding-left: 20px;}
    .box1, .box2, .box3 , .box4{padding: 10px 0px !important;}



    #header_mob{padding: 20px;}

    #header_mob img{margin-left: 35px;}
      }


      

      .wg-box-content {
        position: relative;
    
    
        margin: auto;
        overflow: hidden;
      }
      
      .wg-box-content .wg-box-content-overlay {
        background:#2e602b;
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        opacity: 0;
        -webkit-transition: all 0.4s ease-in-out 0s;
        -moz-transition: all 0.4s ease-in-out 0s;
        transition: all 0.4s ease-in-out 0s;
      }
      
      .wg-box-content:hover .wg-box-content-overlay{
        opacity: 1;
      }
      
      .wg-box-content-image{
        /* width: 100%; */
      }
      
      .wg-box-content-details {
        position: absolute;
        text-align: center;
        padding-left: 1em;
        padding-right: 1em;
        width: 100%;
        top: 50%;
        left: 50%;
        opacity: 0;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
      }
      
      .wg-box-content:hover .wg-box-content-details{
        top: 50%;
        left: 50%;
        opacity: 1;
      }
      
      .wg-box-content-details h3{
        color: #fff;
        font-weight: 500;
  
        margin-bottom: 0.5em;
        text-transform: uppercase;
        text-align: left;
      }
      
      .wg-box-content-details p{
        color: #fff;
        font-size: 15px;
        text-align: justify;
        line-height: 22px;
      }
      
      .wg-box-fadeIn-bottom{
        top: 80%;
        padding: 0px 30px;
      }
      .wg-box-content:hover .overlay-text{
        display: none;
        -webkit-transition: all 0.8s ease-in-out 0s;
        -moz-transition: all 0.8s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
      }



      /* @font-face {
        font-family: "kruti Dev";
        src: url("../vendor/fonts/k010.TTF");
          src: url("../vendor/fonts/krdv014.ttf");
              src: url("../vendor/fonts/K510.TTF");
                  src: url("../vendor/fonts/KrutiDev010Bold.TTF");
       
        } */

        /* h1,h2,h3{font-family: Kruti Dev;} */
      



        /* @font-face {
          font-family: HindiFont;
          src: url("../vendor/fonts/K510.TTF");
      }
        
      h6 {
          font-family: HindiFont !important;
          color: darkgreen;
      } */
      
      @font-face {
        font-family: ktidev;
        src: url(../vendor/fonts/K510.TTF);
      }
      /* h6{font-family:  ktidev !important; } */

      @font-face {
        font-family: CoventryGardenNF;
        src: url(../vendor/fonts/CoventryGardenNF.ttf);
      }

      /* p{font-family:CoventryGardenNF !important;} */

      .contact-border{padding-top: 40px; border: 2px;}
 
      .padding-left-prdoduct{padding-left: 45px;}
      .product-details-page span.text-main{font-size: 18px; font-weight: 600 !important; margin: 5px 0px;}

       .contact_info1 {margin-top: 50px; margin-top: 40px; padding-top: 40px;}
      /* .send_us_msz{margin-bottom: 40px !important;} */
      .contact_us .description{font-size: 14px !important; margin-left: 0px !important;}
      h1{font-weight: 700 !important;}
      /* .contact_us .list-unstyled{margin-bottom: 40px !important;} */
      .contact_us {padding-bottom: 100px; padding-top: 60px !important;}
      .list-unstyled{margin: 0px !important;}
      .contact_us p{margin-bottom: 0px !important;}
      .product-listing .text-main{font-size: 1.3rem;}
      .product-listing h4{font-size: 1.1rem;}
      .modal_form_container{
        background-image: url(../img/about/inner-bg.png);
        max-width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 150px;
        /* display: grid; */
        /* place-items: center;
        align-items: center; */
        background-color: #fff;
        border:none;
      }

      @media (min-width: 576px){
      .modal-dialog {
          max-width: 680px;
      }

    }

    .btn-close {
      box-sizing: content-box;
      width: .7em !important;
      height: .7em !important;
      padding: 0.25em 0.25em;
   
      border: 0;
      border-radius:100px;
      opacity: 1 !important;

      margin-bottom: 99px !important;
  }

 

.u-image {
  object-fit: cover;
  display: block;
vertical-align: middle;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

 
  
   .u-image-2 {
    /* height: 400px; */
    width: 300px;
    /* margin: 0 auto 0 72px; */
    border-radius:8px;
  }
  
   
  
     .u-image-1 {
      width: 400px;
      
    
        margin: -482px auto 0 240px;
        border-radius:8px;
    }
  
  
    .u-image-3 {

      width: 300px;

      border-radius:8px;
    }
    
     
    
       .u-image-4 {
        width: 400px;
        
      
          margin: -482px auto 0 240px;
          border-radius:8px;
      }
   
    
  @media (min-width: 1200px) {
    .overlap_sec_text1{padding-left: 30px;}
    .overlap_sec_text2{padding-right: 30px;}
    .n_overlap-1{padding-top: 190px !important;}
    .n_overlap-2{padding-top: 190px !important;}
    .con_team_col {
      padding-left: 15%;
  }
  .inner_page_spc{padding: 0px 30px;}
  }

  @media (max-width: 768px) {
    .footer-menu ul li a{padding: 0px 12px;}
    .contact_info1{margin-top: 20px;padding-top: 20px;}

    #footer {
      background: #254d22;
      background-image: url(../img/footer-mob.png);
      background-position: bottom center;
      background-repeat: no-repeat;
      background-size: contain;
      /* padding: 0 0 30px 0; */
      color: #fff;
      font-size: 14px;
  }

    .u-image-2 { width: 180px;     }
    .u-image-1 { width: 250px; margin: -300px auto 0 70px;}
    .u-image-4 { width: 180px;     }
    .u-image-3 { width: 250px;}
    .mob-spc{    padding: 0px 9%;}
    .n_overlap-1{padding: 100px 20px 0;}
    
    .n_overlap-2{padding: 100px 20px 0;}
    .overlap_sec_text1{margin-top: 50px;}
    .overlap_sec_text2{margin-top: 50px;}
    .n_overlap-2 .row{flex-direction: column-reverse;}
    .inner_page_spc{padding: 40px 0px;}
    .gan_inner_pge{padding-left: 20px; padding-right: 20px;}
    .bg_aboutus,.bg_technology{height: 35vh;}

  }

  .n_overlap-1 p,  .n_overlap-2 p{text-align: justify; color: grey; font-weight: 400;}
  .contact-team-text h1{margin-bottom: 20px;}
body{
  overflow-x: hidden;
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;}
   /*---------------english store------------------*/


   @media (min-width:1280px)  and (max-width: 1400px) {

    .ico-box{
      margin: 60px 50px 0px;
      height: 250px;
    }
    .wg-box-content-image {
      /* width: 115%; */
  }
  .wg-box-content-details p{font-size: 14px;}

 .u-image-2 {
  
    width: 255px;
    border-radius:8px;
  }
  
   
  
     .u-image-1 {
      width: 355px;
       margin: -410px auto 0 180px;
      border-radius:8px;
    }
  

    .u-image-3 {

      width: 255px;

      border-radius:8px;
    }
    
     
    
       .u-image-4 {
        width: 355px;
      
    margin: -418px auto 0 180px;

        border-radius:8px; 
      
        
      }
    

   }

   /*test---*/

/*new css on 10thMay*/


.icon-box-cont .plus{position: absolute; position: absolute;
  width: 34px;
  margin-left: -33px;
  margin-top: 47px;}
  .icon-box-cont .plus_btn{position: absolute; position: absolute;
    width: 48px;
    background-color: transparent;
    margin-left: -33px;
    margin-top: 47px;}

    .icon-box-cont .minus_btn{position: absolute; position: absolute;
      width: 48px;
      background-color: transparent;
      margin-left: -33px;
      margin-top: 47px;
      z-index:9;
      rotate: 46deg;
    }

    .Vitamins_Details .wcu_icon {
      width: 55px;
  }

.minus_btn{    
    position: absolute;
    margin-left: 40px !important;
    width: 55px;
    margin-top: 35px !important;
    rotate: 46deg;
}

#others_minus_btn{    border: none;
  outline: transparent;
background: transparent;}

.minus_btn1 {

  width: 55px;
  position: absolute;
  margin-left: 40px !important;
  margin-top: -165px !important;
  border: none;
  outline: transparent;
  rotate: 46deg;



}
 

.Vitamins_Details #vitamin_minus_btn_desk{
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  outline: transparent;
  border: none;



 
}
    .vitamin_center_icon{

      margin: 0 auto;
      position: absolute;
      left: 49%;
      top: 49%;
      transform: translate(-50%, -50%);
  
    }

   




  .Mineral_Details .wcu_icon{

    width: 55px;
  }



  .Mineral_Details .left-benefit-box .box1 {
    margin-right: 0px;
    padding: 10px 0px;
    position: absolute;
    left: 29.5%;
    z-index: 9;
    top: 6%;
}


  .Mineral_Details .left-benefit-box .box2 {
    margin-right: 0px;
    padding: 10px 0px;
    position: absolute;
    left: 24%;
    z-index: 9;
    top: 27%;
}


  .Mineral_Details .left-benefit-box .box3 {
    margin-right: 0px;
    padding: 10px 0px;
    left: 24.5%;
    z-index: 9;
    position: absolute;
    top: 51%;
}

  .Mineral_Details .left-benefit-box .box4 {
    margin-right: 0px;
    padding: 10px 0px;
    left: 26.5%;
    z-index: 9;
    position: absolute;
    top: 72%;
}


  .Mineral_Details .left-benefit-box .box5 {
    margin-right: 0px;
    padding: 10px 0px;
    left: 35.5%;
    z-index: 9;
    position: absolute;
    top: 86%;
}

  .Mineral_Details .right-benefit-box .box1 {
    margin-left: -116px;
    padding: 30px 0px;
}

.Mineral_Details .right-benefit-box .box2 {
  margin-left: -83px;
  padding: 20px 0px;
}

.Mineral_Details .right-benefit-box .box3 {
margin-left: -78px;
padding: 21px 0px;
}

.Mineral_Details .right-benefit-box .box4 {
margin-left: -146px;
padding: 20px 0px;
}


.Vitamins_Details .left-benefit-box .box1{

margin-right: -123px !important;
position: absolute;
top: 10%;
left: 25%;
z-index: 9;
}
.Vitamins_Details .left-benefit-box .box4{
margin-right: -123px !important;
top: 82%;
left: 32%;
position: absolute;
z-index: 9;
}


.Vitamins_Details .right-benefit-box .box2{

margin-left: -70px !important;
z-index:9;
}




.wipe {
/* height: 200px; */
-webkit-transition: width 4s;
transition: width 4s;
float:left;
}
.open {
width: 100%;
display: block;
}
.closed {
width: 0%;
display: none;

}




.pages {
display: flex;
width: 200%;
box-sizing: border-box; 
}

.page {
width: 100%;
height: 100vh;
display: flex;
/* align-items: center; */
/* justify-content: center; */
flex-direction: column;
gap: 10px;
transition: all 0.7s;

}

.one{
/* background: #198754; */
}

.two{
/* background-color: #0dcaf0; */
}

.three{
/* background-color: indigo; */
}

.four{
/* background-color: limegreen; */
}

.icon-box-cont button{border:none;}


#Div2 {
display: none;
}
#Div3 {
display: none;
}


#Div2_mob, #Div3_mob{display: none;}





@keyframes scale-display {
0% {
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}
100% {
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
}
}
@keyframes scale-display--reversed {
0% {
display: inline-flex;
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
}
99% {
display: inline-flex;
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}
100% {
display: none;
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}
}


@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}


#Div1, #div2, #div3{min-height: 600px; max-height: 750px; margin-bottom: 40px;}

.vitamin_center_icon_mobile{position: absolute;left: 47%; top: 50%; transform: translate(-50%, -50%);}
.minerals_ico_mob{margin-top: 50px;}
.minerals_ico_mob p{margin-top: 10px; font-weight: 700;margin-bottom: 30px;}
.minus_btn_mob{position: absolute;left: 58%; top: 64%; transform: translate(-50%, -50%);  rotate: 46deg; }

.minerals_icon_mob{width: 70px;}

.vitamins_minus_btn_mob{ background-color: transparent; border: none; outline: transparent;}

.plus_btn_mob2{
position: absolute;
width: 35px;
right: 25%;
bottom: 40%;
z-index: 9;
}
.plus_btn_mob1{


position: absolute;
width: 35px;
right: 42%;
bottom: 73%;
z-index: 9;
}


.plus_btn_desk1:hover #Div3{display: block;}
.plus_btn_desk2:hover #Div2{display: block;}



@media (max-width: 992px) {

  .mob_show_2{display: block;}

  .desk_show{display: none;}

}


@media only screen and (max-width: 1159px) and (min-width: 993px)  {


  .mob_show_2{display: block;}
 
   .desk_show{display: none;}
 
   .mob_show{display: block;}
 
   .ico-box {
     margin: 40px 20px 0px;}
 
 }

 


@media only screen and (max-width: 992px) and (min-width: 769px)  {
  .plus_btn_mob1 {
    position: absolute;
    width: 40px;
left:42%;
    bottom: 61%;
    z-index: 9;
}

.plus_btn_mob2{
  position: absolute;
  width: 40px;
  left:47.5%;
  bottom: 42%;
  z-index: 9;
}


.vitamin_center_icon_mobile {
  position: absolute;
  left: 49%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.minus_btn_mob {
  position: absolute;
  left: 51%;
  top: 64%;
  transform: translate(-50%, -50%);
  rotate: 46deg;
}


}

:root {
  --animate-duration: 1800ms;
  --animate-delay: 0.9s;
}
/*eng--------------*/


  .plus_btn_desk2::after {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -8px;
    left: -8px;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    border: 8px solid rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    -webkit-animation-name: ripple;
            animation-name: ripple;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
            animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
  }
  .plus_btn_desk2::before {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -8px;
    left: -8px;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    border: 8px solid rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    -webkit-animation-name: ripple;
            animation-name: ripple;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
            animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
  }
  
  @-webkit-keyframes ripple {
    from {
      opacity: 1;
      transform: scale3d(0.75, 0.75, 1);
    }
    to {
      opacity: 0;
      transform: scale3d(1.5, 1.5, 1);
    }
  }
  
  @keyframes ripple {
    from {
      opacity: 1;
      transform: scale3d(0.75, 0.75, 1);
    }
    to {
      opacity: 0;
      transform: scale3d(1.5, 1.5, 1);
    }
  }



  @media (min-width:1280px)  and (max-width: 1400px) {



    .Mineral_Details .right-benefit-box .box1{margin-left: -70px !important;}
  
    .Mineral_Details .right-benefit-box .box2{    margin-left: -30px !important;}
    .Mineral_Details .right-benefit-box .box3{    margin-left: -45px !important;}
    .Mineral_Details .right-benefit-box .box4{    margin-left: -126px  !important;}
  
    .vitamin_center_icon{left: 57% !important;}
  
    .Mineral_Details .left-benefit-box .box2{left: 24%;}
    .Mineral_Details .left-benefit-box .box1{left: 28.5%;}
    .Mineral_Details .left-benefit-box .box3{    left: 22.5%;}
  
    .Vitamins_Details .right-benefit-box .box2{    margin-left: -26px !important;}
    .Vitamins_Details .left-benefit-box .box1{left: 24%;}
  }
  #loader_img{display: none;position: absolute;z-index: 99;width: 100%;   left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);}
    #loader_img img{width: 80px;     margin: 0 auto;
      display: block;
  }

  #emailvalidation{

    font-size: 12px;
    margin-top: -9px;
    margin-left: 7px;
    margin-bottom: 1rem;
    line-height: 12px;
text-transform: capitalize;

}

#numbervalidation{

  font-size: 12px;
  margin-top: -9px;
  margin-left: 7px;
  margin-bottom: 1rem;
  line-height: 12px;
text-transform: capitalize;

}





   