/*
COLORS
====================
Golden      | #efb15f
Red         | #e81d24
Dark Golden | #9d6c31

Dark Green  | #498e3e
Light Green | #74bc48
Diff Green  | #97c048
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Nunito Sans", sans-serif;
  color: #000;
}

a {
  color: #efb15f;
}

a:hover {
  color: #efb15f;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito Sans", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #74bc48;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #74bc48;
  color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
  background: rgba(26, 24, 22, 0.8);
}

#topbar.topbar-scrolled {
  top: -50px;
}

#topbar i {
  color: #efb15f;
}

#topbar i + i {
  margin-left: 15px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: auto;
  z-index: 99999999;
  transition: all 0.5s;
  background: transparent;
}

#header .container-fluid{
  margin: 0;
  padding: 0;
}

#header .logo img {
  display: block;
  width: 150px;
  height: 150px;
  padding: 0;
  margin: 0 auto;
}

#header .nav-menu{
  padding: 10px 0 40px 0;
  text-transform: uppercase;
}

#header .nav-menu .menu-left li a{
  color: #74bc48;
}

.search-box {
  width: 450px;
  height: 50px;
  position: relative;
  display: inline;
}

.input {
  position: absolute;
  top: 6px;
  right: 70px;
  box-sizing: border-box;
  width: 0px;
  height: 30px;
  padding: 0 15px;
  outline: none;
  font-size: 18px;
  border-radius: 50px;
  color: #29313a;
  border: none;
  transition: all 0.8s ease;
}

.btn {
  position: absolute;
  right: 45px;
  top: 0px;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #74bc48;
  transition: all 0.8s ease;
  margin-right: 20px !important;
}

.input.active {
  width: 150px;
  right: 60px;
  border: 1px solid #74bc48;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu .menu-left {
  position: relative;
  float: left;
}

.nav-menu .menu-center {
  position: absolute;
  left: 40%;
  text-align: center;
}

.nav-menu .menu-center li a{
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 24px;
  color: #74bc48;
}

.nav-menu .menu-right {
  position: relative;
  float: right;
  text-align: right;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #000;
  padding: 9px 14px;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  font-family: "Nunito Sans", sans-serif;
}

#header .nav-menu .menu-right li a i{
  color: #74bc48;
  font-size: 20px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #e81d24;
  text-decoration: none;
}

/*.nav-menu .book-a-table a {
  background: #ffb03b;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-menu .book-a-table a:hover {
  background: #ffa012;
  color: #fff;
}*/

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 150px;
  position: relative;
}

.nav-menu .drop-down ul li a {
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-transform: none;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #e81d24;
}

/*.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}*/

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #e81d24;
}

.mobile-nav .menu-left{
  display: none;
}
.mobile-nav .menu-right{
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #433f39;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #efb15f;
  text-decoration: none;
}

.mobile-nav .book-a-table a {
  background: #efb15f;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px; 
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  display: inline-block;
}

.mobile-nav .book-a-table a:hover {
  background: #e81d24;
  color: #fff;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(39, 37, 34, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #e81d24;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: auto !important;
  overflow: hidden;
  padding-top: 10px;
}

#hero .carousel-item {
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

#hero .carousel-inner .carousel-caption{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}

#hero h1 {
  color: #000;
  margin-bottom: 10px;
  font-size: 72px;
  line-height: 90px;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Nunito Sans";
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #000;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 100%;
  opacity: 1;
}

#hero .icon-next, #hero .icon-prev {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: 50px;
  height: 60px;
  display: block;
  margin: auto 0;
  background: rgba(0, 0, 0, 0.1);
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-menu {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  transition: 0.5s;
  line-height: 1;
  margin: 0;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background-color: #74bc48;
  color: #fff;
  border: none;
}

#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #498e3e;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h1 {
  font-size: 46px;
  line-height: 50px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 42px;
  color: #498e3e;
}

.section-title h2 span {
  color: #74bc48;
}

.section-title p {
  margin: 15px 5em 0 5em;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Tea Variants
--------------------------------------------------------------*/
#tea-v{
  padding: 7em 0 0 0;
}

#tea-v .card{
  position: relative;
  overflow: hidden;
  border: none;
}

#tea-v .card-body{
  display: block;
}

#tea-v .card-body h5{
  background-color: #498e3e;
  padding: 10px 23px;
  position: absolute;
  top: 25px;
  right: 0;
  color: #fff;
  transition: all .2s ease-in;
}

#tea-v .card:hover h5{
  padding: 10px 30px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #fffaf3;
}

.about .content {
  padding: 0 80px;
}

.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  font-size: 15px;
  color: #848484;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li + li {
  margin-top: 15px;
}

.about .content ul li {
  position: relative;
  padding-left: 26px;
}

.about .content ul i {
  font-size: 20px;
  color: #ffb03b;
  position: absolute;
  left: 0;
  top: 2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffb03b 50%, rgba(255, 176, 59, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 176, 59, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ffb03b;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .about .content, .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }
  .about .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*======= TOP BANNER ======================================*/
#top-banner{
  padding: 10px 0 5em 0;
  position: relative;
}

#top-banner .banner-img{
  background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url(../img1/banner4.jpg) no-repeat;
  background-position: 90% 90%;
  height: 50vh;
  background-attachment: fixed;
}

#top-banner .banner-text h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -90%);
  color: #fff;
  font-size: 80px;
  letter-spacing: .8px;
  line-height: 1.2;
  font-weight: 100;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #top-banner .banner-img{
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url(../img1/banner4.jpg) no-repeat;
    background-position: 80% 0%;
    background-attachment: fixed;
  }

  #top-banner .banner-text h1{
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  #top-banner .banner-img{
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url(../img1/banner4.jpg) no-repeat;
    background-position: 80% 0%;
    background-attachment: fixed;
  }

  #top-banner .banner-text h1{
    font-size: 30px;
  }
}

/*======= ABOUT TOP BANNER ======================================*/
#about-top-banner{
  padding: 10px 0 5em 0;
  position: relative;
}

#about-top-banner .banner-img{
  background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url(../img1/about-banner.jpg) no-repeat;
  background-size: cover;
  background-position: 90% 90%;
  height: 50vh;
  background-attachment: fixed;
}

#about-top-banner .banner-text h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -90%);
  color: #fff;
  font-size: 80px;
  letter-spacing: .8px;
  line-height: 1.2;
  font-weight: 100;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #about-top-banner .banner-img{
    background-position: 80% 0%;
  }

  #about-top-banner .banner-text h1{
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  #about-top-banner .banner-img{
    background-position: 80% 0%;
  }

  #about-top-banner .banner-text h1{
    font-size: 30px;
  }
}

/*======= PRODUCT TOP BANNER ======================================*/
#product-top-banner{
  padding: 10px 0 5em 0;
  position: relative;
}

#product-top-banner .banner-img{
  background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url(../img1/product-banner-1.jpg) no-repeat;
  background-size: cover;
  background-position: 90% 90%;
  height: 50vh;
  background-attachment: fixed;
}

#product-top-banner .banner-text h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -90%);
  color: #fff;
  font-size: 80px;
  letter-spacing: .8px;
  line-height: 1.2;
  font-weight: 100;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #product-top-banner .banner-img{
    background-position: 80% 0%;
  }

  #product-top-banner .banner-text h1{
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  #product-top-banner .banner-img{
    background-position: 80% 0%;
  }

  #product-top-banner .banner-text h1{
    font-size: 30px;
  }
}

/*======= CONTACT TOP BANNER ======================================*/
#contact-top-banner{
  padding: 10px 0 5em 0;
  position: relative;
}

#contact-top-banner .banner-img{
  background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url(../img1/contact-banner.jpg) no-repeat;
  background-size: cover;
  background-position: 90% 90%;
  height: 50vh;
  background-attachment: fixed;
}

#contact-top-banner .banner-text h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -90%);
  color: #fff;
  font-size: 80px;
  letter-spacing: .8px;
  line-height: 1.2;
  font-weight: 100;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #contact-top-banner .banner-img{
    background-position: 80% 0%;
  }

  #contact-top-banner .banner-text h1{
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  #contact-top-banner .banner-img{
    background-position: 80% 0%;
  }

  #contact-top-banner .banner-text h1{
    font-size: 30px;
  }
}

/*=============================================== 
          Portfolio Page
================================================*/
#portfolio {
  padding: 60px 0;
  background-color: #fff;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 20px;
  color: #74bc48;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  color: #498e3e;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 24px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #74bc48;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #f8fcff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #74bc48;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 24px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #74bc48;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: rgba(0, 0, 0, 0.8);
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.variants .box {
  padding: 50px 30px;
  border: 1px solid rgba(207, 207, 207, 0.479);
  transition: all ease-in-out 0.3s;
}

.variants .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffcf88;
}

.variants .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #6c665c;
}

.variants .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.variants .box:hover {
  background: #ffb03b;
  padding: 30px 30px 70px 30px;
}

.variants .box:hover span, .variants .box:hover h4, .variants .box:hover p {
  color: #fff;
}

/* ================== SHOPPING CART PAGE ======================= */
#sc{
  padding: 5em 2em;
}
 .product-image {
	 float: left;
	 width: 20%;
}
 .product-details {
	 float: left;
	 width: 37%;
}
 .product-price {
	 float: left;
	 width: 12%;
}
 .product-quantity {
	 float: left;
	 width: 10%;
}
 .product-removal {
	 float: left;
	 width: 9%;
}
 .product-line-price {
	 float: left;
	 width: 12%;
	 text-align: right;
}
/* This is used as the traditional .clearfix class */
 .group:before, .shopping-cart:before, .column-labels:before, .product:before, .totals-item:before, .group:after, .shopping-cart:after, .column-labels:after, .product:after, .totals-item:after {
	 content: '';
	 display: table;
}
 .group:after, .shopping-cart:after, .column-labels:after, .product:after, .totals-item:after {
	 clear: both;
}
 .group, .shopping-cart, .column-labels, .product, .totals-item {
	 zoom: 1;
}
/* Apply clearfix in a few places */
/* Apply dollar signs */
 .product .product-price:before, .product .product-line-price:before, .totals-value:before {
	 content: '\20B9';
}
 label {
	 color: #aaa;
}
 .shopping-cart {
	 margin-top: -45px;
}
/* Column headers */
 .column-labels label {
	 padding-bottom: 15px;
	 margin-bottom: 15px;
	 border-bottom: 1px solid #eee;
}
 .column-labels .product-image, .column-labels .product-details, .column-labels .product-removal {
	 text-indent: -9999px;
}
/* Product entries */
 .product {
	 margin-bottom: 20px;
	 padding-bottom: 10px;
	 border-bottom: 1px solid #eee;
}
 .product .product-image {
	 text-align: center;
}
 .product .product-image img {
	 width: 80%;
   height: auto;
}
 .product .product-details .product-title {
	 margin-right: 20px;
	 font-family: 'HelveticaNeue-Medium', 'Helvetica Neue Medium';
}
 .product .product-details .product-description {
	 margin: 5px 20px 5px 0;
	 line-height: 1.4em;
}
 .product .product-quantity input {
	 width: 40px;
}
 .product .remove-product {
	 border: 0;
	 padding: 4px 8px;
	 background-color: #c66;
	 color: #fff;
	 font-family: 'HelveticaNeue-Medium', 'Helvetica Neue Medium';
	 font-size: 12px;
	 border-radius: 3px;
}
 .product .remove-product:hover {
	 background-color: #a44;
}
/* Totals section */
 .totals .totals-item {
	 float: right;
	 clear: both;
	 width: 100%;
	 margin-bottom: 10px;
}
 .totals .totals-item label {
	 float: left;
	 clear: both;
	 width: 79%;
	 text-align: right;
}
 .totals .totals-item .totals-value {
	 float: right;
	 width: 21%;
	 text-align: right;
}
 .totals .totals-item-total {
	 font-family: 'HelveticaNeue-Medium', 'Helvetica Neue Medium';
}
 .checkout {
	 float: right;
	 border: 0;
	 margin-top: 20px;
	 padding: 6px 25px;
	 background-color: #6b6;
	 color: #fff;
	 font-size: 25px;
	 border-radius: 3px;
}
 .checkout:hover {
	 background-color: #494;
}
/* Make adjustments for tablet */
 @media screen and (max-width: 650px) {
	 .shopping-cart {
		 margin: 0;
		 padding-top: 20px;
		 border-top: 1px solid #eee;
	}
	 .column-labels {
		 display: none;
	}
	 .product-image {
		 float: right;
		 width: auto;
	}
	 .product-image img {
		 margin: 0 0 10px 10px;
	}
	 .product-details {
		 float: none;
		 margin-bottom: 10px;
		 width: auto;
	}
	 .product-price {
		 clear: both;
		 width: 70px;
	}
	 .product-quantity {
		 width: 100px;
	}
	 .product-quantity input {
		 margin-left: 20px;
	}
	 .product-quantity:before {
		 content: 'x';
	}
	 .product-removal {
		 width: auto;
	}
	 .product-line-price {
		 float: right;
		 width: 70px;
	}
}
/* Make more adjustments for phone */
 @media screen and (max-width: 350px) {
	 .product-removal {
		 float: right;
	}
	 .product-line-price {
		 float: right;
		 clear: left;
		 width: auto;
		 margin-top: 10px;
	}
	 .product .product-line-price:before {
		 content: 'Item Total: $';
	}
	 .totals .totals-item label {
		 width: 60%;
	}
	 .totals .totals-item .totals-value {
		 width: 40%;
	}
}
 
/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border: 2px solid #efb15f;
  border-radius: 50px;
}

.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: #fff;
  background: #efb15f;
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menu .menu-content {
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................"
 "...................................................................."
 "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #dad8d4;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: #efb15f;
}

.menu .menu-content span {
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .menu-ingredients {
  font-style: italic;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  color: #948c81;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: #ffb03b;
}

.specials .nav-link.active {
  color: #ffb03b;
  border-color: #ffb03b;
}

.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #433f39;
}

.specials .details p {
  color: #777777;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
  .specials .nav-link.active {
    color: #fff;
    background: #ffb03b;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: '';
  background-color: rgba(12, 11, 10, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: #fff;
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #ffb03b;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #ffb03b;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ffb03b;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .owl-nav, .events .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.events .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.events .owl-dot.active {
  background-color: #ffb03b !important;
}

@media (min-width: 992px) {
  .events .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br + br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input, .book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type="submit"] {
  background: #ffb03b;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type="submit"]:hover {
  background: #ffa012;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  margin: 4em 0;
}

#gallery .section-title p{
  text-align: justify;
}

.gallery .gallery-item {
  overflow: hidden;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff;
  text-align: center;
}

/*.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}*/

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #74bc48;
  overflow: hidden;
  text-align: center;
  margin-left: 30px;
  width: 80%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}

.gallery-item:hover .overlay {
  -webkit-transform: scale(.8);
  -ms-transform: scale(.8);
  transform: scale(.8);
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -40%);
  -ms-transform: translate(-50%, -40%);
  transform: translate(-50%, -40%);
  text-align: center;
}

.text p{
  font-size: 16px;
  text-transform: none;
}

@media (max-width: 768px) {
  .overlay {
    margin-left: 21px;
  }
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs {
  background: url("../img/chefs-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.chefs::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
}

.chefs .container {
  position: relative;
  z-index: 10;
}

.chefs .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.chefs .member .pic {
  overflow: hidden;
}

.chefs .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #433f39;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.chefs .member h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
  color: #6c665c;
  position: relative;
  padding-bottom: 10px;
  font-family: "Nunito Sans", sans-serif;
}

.chefs .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #ffcf88;
  bottom: 0;
  left: calc(50% - 25px);
}

.chefs .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.chefs .member .social {
  margin-top: 15px;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: #7a7368;
}

.chefs .member .social a:hover {
  color: #ffb03b;
}

.chefs .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .chefs .member {
    margin-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .chefs {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 5em 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../img1/h4-img-5.jpg);
 }

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #000;
  background-color: #74bc48b9;
  border-bottom-left-radius: 60px;
  border-top-right-radius: 60px;
  margin: 0 30px;
  padding: 20px 0;
}

.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: 40px;
  font-weight: 200;
  margin: 10px 0 5px 0;
  color: #000;
  font-family: "Nunito Sans", sans-serif;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #000;
  margin: 0 0 15px 0;
  font-family: "Nunito Sans", sans-serif;
}

.testimonials .testimonial-item .stars {
  color: #e81d24;
  margin-bottom: 10px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #498e3e;
  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: #000;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.testimonials .owl-dot.active {
  background-color: #498e3e !important;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 786px) {
  #testimonials .testimonial-item{
    padding: 50px;
  }

  #testimonials .testimonial-item h3{
    font-size: 30px;
  }

  #testimonials .testimonial-item .stars i{
    font-size: 10px
  }
}

@media (max-width: 576px){
  #testimonials .testimonial-item{
    padding: 10px;
  }

  #testimonials .testimonial-item h3{
    font-size: 30px;
  }

  #testimonials .testimonial-item .stars i{
    font-size: 10px
  }

  .testimonials .testimonial-item {
    border-bottom-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .testimonials .testimonial-item p {
    font-size: 14px;
  }
}
/*-------------------------------------------------------------
# Process
--------------------------------------------------------------*/
#process{
  background-image: url(../img1/process-bg.jpg);
  background-position: center;
  height: auto;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 5em;
}

#process h1{
  text-align: center;
  padding: 2em 0;
  text-transform: uppercase;
  color: #efb15f;
  text-shadow: #888 2px 2px 5px;
  font-size: 52px;
}

.flexcontainer {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 20px 0;
  font-family: "Nunito Sans";
}

.flexitem {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.flexitem__date {
  order: 2;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 
  46%, rgb(255, 255, 255) 46%, rgb(255, 255, 255) 52%, rgba(190, 190, 190, 0) 52%, rgba(255, 255, 255, 0) 56%);
  flex-basis: 50px;
  display: flex;
}

.flexitem__date > span {
  margin: 15px auto auto auto;
  background: #e81d24;
  border-radius: 50%;
  padding: 15px;
}

.flexitem__desc {
  order: 3;
  width: auto;
  padding-left: 10px;
  margin-bottom: 7em;
}

.flexitem__desc h2{
  text-align: center;
  margin: 0 0 20px 0;
  color: #fff;
  font-size: 48px;
}

.flexitem__desc img{
  width: 300px;
  height: 200px;
}

@media (min-width: 576px) {
  .flexitem__desc, .flexitem__hidden {
    width: 40%;
 }

  .flexitem--flipped .flexitem__desc {
    order: 1;
    text-align: right;
    padding-right: 0px;
 }
  
  .flexitem--flipped .flexitem__hidden {
    order: 3;
 }
}

@media (max-width: 768px) {
  #process h1{
    padding: 30px;
  }
}

/*======== ABOUT SECTION DIVIDER ==============================*/
#about-divider {
  margin: 5em 0;
  background: url("../img1/h4-img-5.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#about-divider .col-lg-4, .col-lg-8{
  margin: 0;
  padding: 0;
}

#about-divider .about-divider-img img{
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#about-divider .js-text{
  text-align: left;
}

#about-divider .ds-text{
  text-align: right;
}

#about-divider .about-divider-content h1{
  font-size: 30px;
  font-weight: 100;
  margin: 70px 30px 10px 30px;
}

#about-divider .about-divider-content span{
  font-size: 16px;
  background-color: #74bc48;
  color: #fff;
  padding: 8px 10px;
  margin: 30px;  
  border-radius: 20px
}

#about-divider .about-divider-content p{
  margin: 15px 30px 0 30px;
}

@media (max-width: 768px) {
  #about-divider .about-divider-content h1{
    font-size: 40px;
    margin: 10px;
  }
  
  #about-divider .about-divider-content p{
    font-size: 14px;
    margin: 10px;
  }
}

@media (max-width: 576px){
  #about-divider .js-text{
    text-align: center;
  }
  
  #about-divider .ds-text{
    text-align: center;
  }
}
/*============== DIVIDER SECTION ==============================*/
#divider {
  padding: 5em 0;
}

#divider .col-lg-4, .col-lg-8, .col-lg-6{
  margin: 0;
  padding: 0;
}

#divider .divider-content{
  background-image: url("../img1/h4-img-5.jpg");
  text-align: left;
}

#divider .divider-img img{
  width: 100%;
  height: auto;
}

#divider .divider-content h1{
  font-size: 40px;
  font-weight: 100;
  margin: 0 30px;
}

#divider .divider-content h4{
  font-weight: 100;
  margin: 0 30px 30px 30px;
}

#divider .divider-content p{
  margin: 10px 30px;
}

@media (max-width: 768px) {
  #divider .divider-content h1{
    font-size: 40px;
    margin: 10px;
  }
  
  #divider .divider-content p{
    font-size: 14px;
    margin: 10px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#divider1 {
  padding: 0 0 1em 0;
}

#divider1 .col-lg-5, .col-lg-7{
  margin: 0;
  padding: 0;
}

#divider1 .divider1-content{
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url("../img1/h4-img-5.jpg");
}

#divider1 .divider1-img img{
  width: 100%;
  height: auto;
}

#divider .divider1-content h1{
  font-size: 60px;
  font-weight: 100;
  margin: 70px 30px;
}

#divider1 .divider1-content p{
  margin: 10px 30px;
}

@media (max-width: 768px) {
  #divider1 .divider1-content h1{
    font-size: 40px;
    margin: 10px;
  }
  
  #divider1 .divider1-content p{
    font-size: 14px;
    margin: 10px;
  }
}

.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 3em;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #498e3e;
  float: left;
  width: 44px;
  height: 44px;
  background: #e8ffeb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #74bc48;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #7a7368;
}

.contact .info:hover i {
  background: #498e3e;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #74bc48;
  border: 0;
  padding: 10px 24px;
  color: #000;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #498e3e;
  color: #fff;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #000;
  font-size: 14px;
  text-align: center;
  padding: 10em 0 4em 0;
}

#footer .footer-logo{
  width: 150px;
  height: 150px;
}

#footer h3 {
  font-size: 34px;
  font-weight: 700;
  color: #74bc48;
  position: relative;
  padding: 0;
  margin: 15px 0 15px 0;
  text-transform: uppercase
}

#footer p {
  font-size: 15;
  padding: 0 16em;
  margin: 0 0 50px 0;
}

#footer .social-links {
  margin: 0 0 50px 0;
}

#footer .social-links a {
  font-size: 32px;
  display: inline-block;
  color: #498e3e;
  line-height: 1;
  padding: 0 28px;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#footer .credits a{
  color: #000;
}

#footer .credits a:hover{
  color: #498e3e;
  text-decoration: underline;
}

@media (max-width: 768px){
  #footer p {
    padding: 0 3em;
  }
}

@media (max-width: 576px){
  #footer p {
    padding: 0 3em;
  }
}