/**
* Template Name: Gp - v4.3.0
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ffc451;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

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

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

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #ffc451;
}

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

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  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);
  }
}

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

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

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}

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

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #ffc451;
}

#header .logo img {
  max-height: 6rem;
}
/*--------------------------------------------------------------
# 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 a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  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: #ffc451;
}

.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;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

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

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  background-color: #ffc451;
}

.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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@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(0, 0, 0, 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;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #151515;
  background-color: #ffc451;
}

.navbar-mobile .getstarted {
  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;
  color: #151515;
}

.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 {
  background-color: #ffc451;
}

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


/*--------------------------------------------------------------
# spices hero  Section
--------------------------------------------------------------*/
#spices-hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.spices-heading {
  position: absolute;
  z-index: 3;
  width: 90%;
  text-align: center;
}

@media (max-width:320px) {
  #spices-hero h1 {
    font-size: 3rem !important;
  }
}

#spices-hero  h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: 'Prata', serif;
}

#spices-hero  h1 span {
  color: #ffc451;
}

#spices-hero  h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.dark-overlay {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

#spices-hero .swiper {
  width: 100%;
}

 .m-image{
  text-align: center;
}

#mission img {
  width: 20.625rem;
}

.m-header {
  font-size: 4rem;
  font-family: 'Prata', serif;
}

#product {
  margin-top: -12rem;
}

.products-image img{
  width: 10rem;
}

.products-image {
  margin-top: -9rem;
}

.products-image h3 {
  font-family: 'Prata', serif;
}

.design-header {
  margin: auto;
}

#product .m-header {
  font-size: 2.3rem;
  font-family: 'Prata', serif;
  text-align: center;
}

.right-img {
  text-align: right;
}

.design-heading::before {
  content: '';
    width: 131px;
    height: 39px;
    background-size: 100%;
    background-image: url(/assets/img/shapeflower.png);
    display: block;
    margin: auto;
    margin-bottom: 10px;
}


.design-heading::after {
  content: '';
  width: 131px;
  height: 39px;
  background-size: 100%;
  background-image: url(/assets/img/shapeflower2.png);
  display: block;
  margin: auto;
  margin-top: 10px;
}

.m-content {
  margin: auto;
}

@media screen and (max-width: 480px) {
  #mission img {
    width:80%;
  }

  .left-img img{
    width: 70%;
    margin-top: 5rem;
  }

}

@media screen and (max-width: 320px) {
  #mission img {
    width:80%;
  }
  .m-content {
    text-align: center;
  }

  .jathika {
    display: none;
  }
}

.m-para {
  font-family: 'Open Sans', sans-serif;
  line-height: 22px;
  font-size: 1.2rem;
}


.featres {
  position: relative;
  background-image: url("/assets/img/spices-n-food-bkg.jpg");
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.hme-featre-text {
  margin-top: 8rem;
  transform: translate(0%, -8%);
}

.hme-featre-text h1 {
  font-family: 'Prata', serif;
  font-size: 88px;
  color: white;
  line-height: 78px;
}

.hme-featre-text p {
  font-family: 'Prata', serif;
  font-size: 1rem;
  line-height: 28px;
  color: white;
}

.jathika {
  position: absolute;
  right: -200px;
  width: 35%;
  top:4rem;
  z-index: 1;
}

.img-border1, .img-border2 {
  position: absolute;
  width: 100%;
}

.img-border1 {
  top: -3px;
  transform: rotate(180deg);
}

.img-border2 {
  bottom: 0px;
}



@media screen and (max-width: 768px) {

  .jathika {
    position: absolute;
    right: -0px;
    width: 43%;
    top:4rem;
    z-index: 1;
  }

  .hme-featre-text h1 {
    font-family: 'Prata', serif;
    font-size: 30px;
    color: white;
    line-height: 0px;
  }
}

@media screen and (max-width: 480px) {

  .jathika {
    display: none;
  }

  .hme-featre-text h1 {
    font-family: 'Prata', serif;
    font-size: 40px;
    color: white;
    line-height: 50px;
  }

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
 
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #ffc451;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.business-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
  width: 8px;
  height:8px;
}

.business-slider {
  height: 40vh;
  width: 100%;
}

#hero .icon-box {
  padding: 30px 15px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 10rem;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #ffc451;
}

#hero .icon-box:hover {
  border-color: #ffc451;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.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: #ffde9e;
  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: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

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

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #ffc451;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .card-wrap {
  width: 22rem;
  height: 22rem;
  position: relative;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
  margin-top: 2rem;
  overflow: hidden;
  text-align: center;
}

.services .card-wrap h2 {
  font-size: 1.5rem;
  text-align: center;
}

.services .card-wrap img {
  position:absolute;
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
}

.services .card-wrap .card-info {
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  padding: 12px;
  background: #302d2e;
  opacity:0.8;
  transition: all 0.5s cubic-bezier(.48,-0.28,0.41,1.4);
  box-sizing: border-box;
}

.services .card-wrap:hover .card-info {
  width: 100%;
  height: 75%;
  left: 0;
  bottom: 0;
}

.card-info p {
  margin:10px 0 0;
  padding: 1em 1em;
  transform: translateY(2em);
  line-height: 1.3em;
  transition: 0.3s;
  opacity: 0;
}

.services .card-wrap:hover .card-info p {
  transform: translateY(0);
  opacity: 1;
}

.services .btn {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 20px;
  text-align: center;
}

.services .btn:hover {
  border: 1px solid rgb(226, 230, 19);
  color: #fff;
  border-radius: 20px;
}

.services .card-wrap:hover {
  box-shadow: 0 0 5em rgba(0, 0, 0, 0.4);
}


/* 
responsive queries
*/

@media (max-width:768px) {

  .services .card-wrap {
    width: 20rem;
    height: 20rem;
    position: relative;
    text-align: center;
    /* box-shadow: 0 3px 15px rgba(0, 0, 0, 0.7); */
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
  }
}

@media (max-width:320px) {

  .services .card-wrap {
    width: 15rem;
    height: 15rem;
    position: relative;
    text-align: center;
    /* box-shadow: 0 3px 15px rgba(0, 0, 0, 0.7); */
    margin-left: auto;
    margin-right: auto;
  }

  .services .card-wrap h2 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #ffc451;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }
  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  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: 0 auto 15px auto;
  color: #eee;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: .5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #ffc451;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# office
--------------------------------------------------------------*/

.office .addr-card {
  width: 20rem;
  height: 19rem;
  border: 1px solid #d3d2d2;
  padding: 1rem;
  border-radius: 0.7rem;
  margin-top: 2rem;
  transition: all .3s;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}


.office .addr-card:hover {
  transform: translateY(-15px);
}

.office .addr-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.office .addr-card img {
  width: 3rem;
}


.office .list-group-item {
  border: none;
}

.office a {
  color: inherit;
  cursor: pointer;
}

.office .card {
  width: 24rem;
  transition: all .2s;
}

.office .card:hover {
  transform: translateY(-15px);
}

@media (max-width:768px) {

  .office .addr-card {
    width: 20rem;
    margin-top: 2rem;
  }
}

@media (max-width:425px) {

  .office .addr-card {
    width: 17rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/*--------------------------------------------------------------
# Restaurant 
--------------------------------------------------------------*/

#restaurant_hero {
  height: 100vh;
  background-color: #fff4f2;
}

.restaurant_text {
  line-height: 1.2;
}

.restaurant_text h1 {
  position: relative;
  top: 50%;
  font-family: 'Mitr', sans-serif;
  font-size: 3rem;
  text-align: center;
}

.restaurant_text p {
  position: relative;
  top: 50%;
  font-family: 'Raleway', sans-serif;
  margin-top: 0;
  font-size: 1.2rem;
  text-align: center;
}

.restaurant_img {
  height: 100vh;
  background: url("../img/restaurant-hero.jpg") top center;
  background-size:cover ;
}

.restaurant-info h2 {
  font-family: 'Mitr', sans-serif;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}

.restaurant-info p {
  font-family: 'Raleway', sans-serif;
  text-align: center;
  font-size: 1.2rem;
  color: #94817e;
  font-weight: 400;
  line-height: 1.5;
}

.restaurant-service .service-card {
  background-color: #fff;
  border: 1px solid #e6dad8;
  border-radius: 10px;
  height: 60vh;
  text-align: center;
  transition: all .4s;
  padding: 3.7rem;
}


.restaurant-service .service-card h5 {
    font-weight: 500;
    font-size: 26px;
    color: #4d312c;
    line-height: 1.4;
    font-family: "Mitr",sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    transition: all .4s ease-out 0s;
}

.restaurant-service .service-card p {
  font-family: "Raleway",sans-serif;
  color: #94817e;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: normal;
  line-height: 1.4;
}

.restaurant-service .service-card:hover  h5 {
  color: #fe5f41;
}

.restaurant-service .service-card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid transparent;
}

#restaurant_branches {
  background: url("../img/restaurant/restaurantbg.jpg");
}

.restaurant_branches .branch-item {
  margin-bottom: 30px;
}

.restaurant_branches .branch-filter {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.restaurant_branches .branch-filter li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.restaurant_branches .branch-filter li:hover, .restaurant_branches .branch-filter li .active {
  color: #fff;
  background: #ffc451;
}

.restaurant_branches  .branch-filter li:last-child {
  margin-right: 0;
}

.restaurant_branches .branch-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.restaurant_branches .branch-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.restaurant_branches .branch-wrap img {
  transition: all ease-in-out 0.3s;
}

.restaurant_branches .branch-wrap .branch-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.restaurant_branches .branch-wrap .branch-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.restaurant_branches .branch-wrap .branch-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.restaurant_branches .branch-wrap .branch-links {
  text-align: center;
  z-index: 4;
}

.restaurant_branches .branch-wrap .branch-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.restaurant_branches .branch-wrap .portfolio-links a:hover {
  color: #ffc451;
}

.restaurant_branches .branch-wrap:hover::before {
  opacity: 1;
}

.restaurant_branches .branch-wrap:hover img {
  transform: scale(1.2);
}

.restaurant_branches .portfolio-wrap:hover .branch-info {
  opacity: 1;
}


.restaurant-testimonials {
  padding: 80px 0;
  background: url("../img/restaurant/rs_bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.restaurant-testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.restaurant-testimonials .section-header {
  margin-bottom: 40px;
}

.restaurant-testimonials .restaurant-item {
  text-align: center;
  color: #fff;
}

.restaurant-testimonials .restaurant-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.restaurant-testimonials .restaurant-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.restaurant-testimonials .restaurant-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.restaurant-testimonialss .restaurant-item.quote-icon-left, .restaurant-testimonials  .restaurant-item.quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

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

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

.restaurant-testimonials .restaurant-itemp {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

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

.restaurant-testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: .5;
}

.restaurant-testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
  opacity: 1;
}

.restaurant_branches .section-title p {
    color:#fff;
}

.restaurant_branches ul {
  list-style: none;
  color: #fff;
}

.restaurant_branches ul li {
  border-radius: 0.9rem;
  cursor: pointer;
  float: left;
  margin: 0.7rem;
  padding: 8px 15px 10px 15px;
  transition:all .5s;
}

.restaurant_branches .active {
  background:#ffc451;
}

.restaurant_branches ul li:hover {
  background:#ffc451;
}


@media (min-width: 1024px) {
  .restaurant-testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .restaurant-testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .restaurant_text h1 {
    margin-top: 14rem;
    font-family: 'Mitr', sans-serif;
    font-size: 2rem;
  
  }

  .restaurant-service .service-card {
    background-color: #fff;
    border: 1px solid #e6dad8;
    border-radius: 10px;
    height: 55vh;
    text-align: center;
    transition: all .4s;
    padding: 3.2rem;
    margin: 0.8rem;
  }
  
}

.restaurant_text p {
  font-family: 'Raleway', sans-serif;
  margin-top: 0;
  font-size: 1rem;
}

@media (max-width: 425px) {
  .restaurant_text h1 {
    margin-top: 14rem;
    font-family: 'Mitr', sans-serif;
    font-size: 1rem;
  
  }

  .restaurant_img {
    display: none;
  }

  .restaurant-info h2 {
    font-family: 'Mitr', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
  }
  
  .restaurant-info p {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    font-size: 1.2rem;
    color: #94817e;
    font-weight: 400;
    line-height: 1.5;
  }

  .restaurant-service .service-card {
    background-color: #fff;
    border: 1px solid #e6dad8;
    border-radius: 10px;
    height: 70vh;
    text-align: center;
    transition: all .4s;
    padding: 1rem;
    
  }

}


/*--------------------------------------------------------------
# IT-Solution section
--------------------------------------------------------------*/

#it_hero {
  height: 100vh;
  background-color: #1A1A40;
}


.it_title {
    color: #fff;
    margin: auto;
    justify-content: center;
    align-items: center;
}

#it_para {
  padding: 160px 0;
  text-align: center;
  width: 100%;
}

.it_h1 {
    width: 90%;
    font-family: Poppins;
    font-weight: 300;
    color: #383838;
    margin: 0 auto;
    text-align:center;
    line-height:1.4em;
}

.it_p {
  color: #818792;
  font-family: Poppins;
  font-size: 24px;
  padding-top: 30px;
  width: 70%;
  margin: 0 auto;
}



#it_info {
  /* height: 100vh; */
  background-color: #ece8e8;
  padding: 200px 0;
}

.it_img_info img {
    width: 100%;
    height: auto;
}

.it_info h3 {
  font-size: 32px;
  font-family: robotolight,Helvetica,Arial,sans-serif;
  color: #f7706f;
  padding-bottom: 40px;
}

.it_info p {
    font-size: 18px;
    color: #5d5d5d;
    padding: 10px 0;
    line-height: 1.5;
    font-weight: 300;
    font-family: Poppins,Helvetica,Arial,sans-serif;
}

#mobapp {
  display: block;
  width: 100%;
  background-color: #29243c;
  padding: 120px 0 200px;
}

.mobapp h3 {
  font-size: 32px;
  font-family: robotolight,Helvetica,Arial,sans-serif;
  color: #f7706f;
  padding-bottom: 40px;
}

.mobapp p {
  font-size: 18px;
    color: #fff;
  padding: 10px 0;
  line-height: 1.5;
  font-weight: 300;
  font-family: Poppins,Helvetica,Arial,sans-serif;
}

.mobapp_para {
  color: #fff;
    margin: auto;
    justify-content: center;
    align-items: center;
}

#webapp {
  display: block;
  width: 100%;
  padding: 120px 0 200px;
 
}

#webapp img {
  width: 100%;
  height: auto;
}

.webapp h3 {
  font-size: 32px;
  font-family: robotolight,Helvetica,Arial,sans-serif;
  color: #f7706f;
  padding-bottom: 40px;
}


.webapp p {
  font-size: 18px;
  color: #5d5d5d;
  padding: 10px 0;
  line-height: 1.5;
  font-weight: 300;
  font-family: Poppins,Helvetica,Arial,sans-serif;
}


@media (max-width: 768px) {
  .it_hero--img ,
  .it_img_info,
  .mobapp--img,
  .webapp--img{
    display: none;
  }

  .it_para {
    padding-left: 5%;
    padding-right: 5%;
    min-height: 95%;
    margin-right: auto;
    margin-left: auto;
  }

  .it_h1 {
    font-size: 40px;
    width: 90%;
  }

  .it_p {
    width: 70%;
    text-align: center;
  }
}

@media (max-width: 425px) {
  .it_para {
    padding-left: 5%;
    padding-right: 5%;
    min-height: 95%;
    margin-right: auto;
    margin-left: auto;
  }

  .it_h1 {
    font-size: 30px;
    width: 90%;
  }

  .it_p {
    width: 80%;
    text-align: center;
    font-size: 1.3em;
  }
}

/*--------------------------------------------------------------
# Contact section
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Import Export Mask
--------------------------------------------------------------*/
#mask_hero{
  width: 100%;
  height: 100vh;
  background: url("../img/mask/mask_banner.png") top center;
  background-size:cover ;
}

#mask_hero img{
  width: 100%;
}

#mask_hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#mask_hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#mask_hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#mask_hero h1 span {
  color: #ffc451;
}

#mask_hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.product_details h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

#mask .button {
  background: #ffc451;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  border-radius: 4px;
  transition: .4s;
}

#mask .button:hover {
  background: #ffcd6b;
}

.list-group-item {
  border: none;
  padding: .3rem .3rem;
}

.list-group-item p {
    font-size: 17px;
    color: #848484;
}

/* mask slider */
#mask .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#mask .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#mask .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mask .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

#mask .swiper-slide {
  background-size: cover;
  background-position: center;
}

#mask .mySwiper2 {
  height: 80%;
  width: 100%;
}

#mask .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

#mask .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

#mask .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

#mask .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .product_details h4 {
    font-size: 17px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
  }
    .list-group-item p {
      font-size: 14px;
      color: #848484;
  }
}


@media (max-width: 425px) {
  .product_details h4 {
    font-size: 15px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
  }
    .list-group-item p {
      font-size: 13px;
      color: #848484;
  }
}

/*--------------------------------------------------------------
# manufacturing
--------------------------------------------------------------*/

#manf_hero{
  width: 100%;
  height: 100vh;
  background: url("../img/manufacturing/manf_banner2.jpg") top center;
  background-size:cover ;
  opacity: .9;
}

/* #manf_hero .manf_heading {
  position: absolute;
  z-index: 3;
} */

/* #manf_hero .dark-overlay {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

#manf_hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 900;
  line-height: 64px;
  color: rgb(255, 255, 255);
  font-family: "Poppins", sans-serif;
  z-index: 3;
}

#manf_hero h1 span {
  color: #ffc451;
}

#manf_hero h2 {
  color: rgb(255, 255, 255);
  margin: 10px 0 0 0;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
}


.manf_product .manf-card {
  margin-left: auto;
  margin-right: auto;
  border-radius: 2rem;
  padding: 0.6rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.accordion-button:hover {
    color: #ffffff;
    background-color: #5ce5b8;
    transition: 0.4s;
}

.manf-card img {
  border-radius: 1rem;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

#contact_hero{
  width: 100%;
  height: 100vh;
  background: url("../img/contact_banner.jpg") top center;
  background-size:cover ;
}

#contact_hero img{
  width: 100%;
}

#contact_hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#contact_hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}


#contact_hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#contact_hero h1 span {
  color: #ffc451;
}

#contact_hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}



#contact .info {
  width: 100%;
  background: #fff;
}

#contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

#contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

#contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

#contact .info .email, #contact .info .phone {
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

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

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

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

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc451;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

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

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
