body {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal;
  width: 100vw;
}
body.overlayed main::before {
  content: '';
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.565);
  z-index: 98;
}

/*---------------------------------
PRELOADER
---------------------------------*/
.preloader {
  display: inline-block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
  z-index: 99999
}

.preloader img {
  position: relative;
  bottom: 42%;
  left: -21%
}

.preloader .dots {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100px;
  transform: translate(-50%, -50%);
}

.preloader p {
  font-family: 'Fira Sans'!important;
  font-size: 20px;
  text-transform: uppercase
}

.preloader span {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #333;
  animation-timing-function: cubic-bezier(0,1,1,0)
}

.preloader span:nth-child(1) {
  left: 8px;
  animation: preloader1 .6s infinite
}

.preloader span:nth-child(2) {
  left: 8px;
  animation: preloader2 .6s infinite
}

.preloader span:nth-child(3) {
  left: 32px;
  animation: preloader2 .6s infinite
}

.preloader span:nth-child(4) {
  left: 56px;
  animation: preloader3 .6s infinite
}

@keyframes preloader1 {
  0% {
      transform: scale(0)
  }

  100% {
      transform: scale(1)
  }
}

@keyframes preloader3 {
  0% {
      transform: scale(1)
  }

  100% {
      transform: scale(0)
  }
}

@keyframes preloader2 {
  0% {
      transform: translate(0,0)
  }

  100% {
      transform: translate(24px,0)
  }
}

/*---------------------------------
BOOTSTRAP CUSTOMIZATIONS
---------------------------------*/
.f-effect-1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../media/images/new/font_effect_1.png");
}

.txt-green {
  color: #255946;
}

.btn-primary {
  background-color: #255946;
  outline: none;
  border-radius: 0;
  border: 2px solid #fff;
  box-shadow: 0px 0px 0px 3px #255946;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #255946;
  border-color: #255946;
}

.btn-secondary {
  background-color: #EFB443;
  border: none;
}
.btn-secondary:hover {
  background-color: #255946;
}

.btn-tertiary {
  color: #255946;
  transition: 200ms ease;
}
.btn-tertiary:hover {
  letter-spacing: 1px;
}

h2 {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  color: #255946;
  font-size: 2.5rem;
}

/* section:not(#hero, #featured-product) {
  margin-top: 50px;
} */

.dropdown-toggle::after {
  display: inherit;
  margin-left: inherit;
  vertical-align: inherit;
  content: "";
  border: none !important;
}

.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

@media (max-width: 768px) {
  .navbar-collapse {
    position: fixed;
    z-index: 999;
    top: 0px;
    padding-top: 100px;
    right: 0px;
    background: #fff;
    width: 100vw;
    height: 100vh;
    transform: translateX(100%);
    transition: all 300ms ease-in;
    overflow-y: auto;
  }
  .navbar-collapse .navbar-toggler {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .navbar-collapse.show {
    transition: all 300ms ease-in;
    transform: translateX(0%);
  }
  .navbar-collapse li {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .navbar-collapse a {
    max-width: 80% !important;
    width: 100%;
  }
  ul.dropdown-menu {
    box-shadow: none !important;
  }
  .dropend .dropdown-menu {
    width: 80% !important;
  }
  .dropdown-item:active {
    background-color: #255946;
  }
  .dropdown-item:active a {
    color:#EFB443;
  }
}

@media (min-width: 768px) {
  .dropdown:hover > .dropdown-menu, .dropend:hover > .dropdown-menu {
    display: block;
  }
}
ul.dropdown-menu {
  border: none;
  border-left: 5px solid transparent;
  box-shadow: 5px 5px 10px 0 rgba(138, 155, 165, 0.15);
}

a {
  color: inherit;
  text-decoration: inherit;
  font-size: inherit;
}

/*---------------------------------
HEADER
---------------------------------*/
@media (min-width: 992px) {
  header .navbar > div {
    gap: 150px;
  }
  header .navbar-nav {
    gap: 35px;
  }
}
@media (min-width: 1200px) {
  header .navbar > div {
    gap: 292px;
  }
}
header {
  background: #FFF;
  z-index: 99;
}
header a {
  display: inline-block !important;
  max-width: 200px;
  word-wrap: break-word;
  text-wrap: wrap !important;
}

.navbar-collapse {
  flex-grow: 0.3;
}

.nav-link {
  position: relative;
  overflow: hidden;
  font-weight: 500;
  color: #6E7673;
}
.nav-link.active {
  color: #255946 !important;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 2px;
  background-color: #EFB443;
  color: #EFB443;
  opacity: 1;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #EFB443;
  opacity: 1;
  transition: all 300ms;
}
.nav-link:hover::after, .nav-link:focus::after {
  width: 100%;
}
.nav-link:focus-visible {
  box-shadow: none;
}

/*---------------------------------
HERO SECTION
---------------------------------*/
#hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}
#hero .featured-content {
  position: relative;
  height: 100%;
}
#hero .featured-content .backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -2;
  background: url("../media/images/new/home_top_banner.jpg") no-repeat center;
  background-size: cover;
}
#hero .featured-content .backdrop::before {
  content: "";
  position: absolute;
  top: -1px;
  width: 100%;
  background: url("../media/images/new/header_hadow.png") repeat-x center;
  height: 10px;
}
#hero .featured-content .backdrop::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  background: url("../media/images/new/hero_shadow.png") repeat-x center;
  height: 10px;
}
#hero .featured-content .backdrop-secondary {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 366px;
  background: url("../media/images/new/fp-bd-sec.svg") no-repeat center;
  background-size: contain;
  display: none;
}
@media (min-width: 992px) {
  #hero .featured-content .backdrop-secondary {
    display: block;
  }
}
#hero .featured-content .featured-product-content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 786px;
}
@media (min-width: 768px) {
  #hero .featured-content .featured-product-content {
    top: 50%;
  }
}
#hero .featured-content h4 {
  /* font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  color: #255946;
  font-size: 2.5rem; */
}
#hero .featured-content .featured-product-swiper {
  width: 100%;
  overflow: hidden;
}
#hero .featured-product-content-mobile {
  position: absolute;
  bottom: 0%;
  background: url("../media/images/new/hero_featured_product_vector.svg") no-repeat center;
  background-size: cover;
  padding: 18px 5px;
}

@media (min-width: 576px) {
  #hero {
    height: 800px;
  }
  #hero .featured-product-content-mobile {
    padding: 18px 120px;
  }
  #hero .featured-product-content-desktop {
    max-width: 500px;
    margin-top: -60px;
  }
  #hero .featured-product-content-image {
    padding-top: 20px;
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  #hero .featured-content h4 {
    /* font-size: 70px; */
  }
  #hero .featured-content .featured-product-content > div {
    margin-top: -65px;
    gap: 10px;
  }
  #hero .featured-product-content-desktop {
    margin-top: 30px;
  }
  #hero .featured-product-content-image {
    padding-top: 80px;
  }
}
@media (min-width: 1200px) {
  #hero {
    height: 100vh;
  }
}
/*---------------------------------
ABOUT US
---------------------------------*/
.about-us h4 {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal;
  color: #1F4E3D;
}

/*---------------------------------
CATEGORY CARDS
---------------------------------*/
#categories .content-main {
  background-color: #F8EEDA;
}
#categories .category-swiper {
  width: calc(100vw - 32px);
}
#categories .category-swiper .swiper-slide {
  padding: 0px;
  max-width: 600px;
}
#categories .category-swiper .swiper-slide .card {
  border-radius: 5px;
  border: none;
  max-width: 600px;
  min-height: 300px;
}
#categories .card .card-title {
  word-wrap: normal;
}
#categories .category-swiper .swiper-slide .card .row {
  min-height: 300px;
}
#categories .category-swiper .swiper-slide .card-title {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: normal;
  color: #255946;
  font-size: 29px;
}
#categories .category-swiper .swiper-slide .card-text {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal;
  color: #255946;
}
#categories .category-swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 200px;
  height: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  #categories .category-swiper .swiper-slide img {
    border-top-left-radius: 0px !important;
    border-top-right-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important;
  }
}
#categories .category-swiper .swiper-wrapper {
  padding: 64px 0px;
}
#categories .category-swiper .swiper-slide {
  height: auto;
}
#categories .category-swiper .swiper-slide > .card {
  height: calc(100% - 128px);
}
.swiper-navigation {
  color: #EFB443;
  background-color: #FFF;
  border-radius: 100%;
  padding: 22px;
  transition: 200ms ease;
}

@media (max-width: 768px) {
  .swiper-navigation.swiper-button-prev {
    top: auto;
    bottom: 35px;
    left: 30%;
  }
  .swiper-navigation.swiper-button-next {
    top: auto;
    bottom: 35px;
    right: 30%;
  }
}
.swiper-navigation::after {
  font-size: 18px;
}
.swiper-navigation:hover {
  box-shadow: 0px 0px 5px 0px #B5C3BE;
}
.swiper-pagination-bullet-active {
  background: #255946 !important;
}

@media (min-width: 768px) {
  .swiper-navigation {
    padding: 36px;
  }
  .swiper-navigation::after {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  #categories .category-swiper {
    width: calc(100vw - 128px);
    
  }
  .swiper-navigation {
    padding: 36px;
  }
  .swiper-navigation::after {
    font-size: 36px;
  }
}
/*---------------------------------
RECIPE CARDS
---------------------------------*/
#recipes .recipe-card {
  gap: 35px;
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 30px;
}
#recipes .recipe-card .content {
  background: url("../media/images/new/recipe_content_bg.png") no-repeat center;
  padding: 30px 10px;
  gap: 10px;
  background-size: cover;
}
#recipes .recipe-card .content h3 {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: #255946;
}
#recipes .recipe-card .content p {
  font-family: "Cormorant", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  color: #255946;
  max-width: 80%;
}
@media (min-width: 1200px) {
  #recipes .recipe-card .content {
    background-size: contain;
  }
}
#recipes .recipe-card img {
  max-width: 100%;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 12.888px 17.184px -8.592px rgba(0, 0, 0, 0.4);
}
#recipes .recipe-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 200px;
  background-color: #F8EEDA;
  z-index: -1;
}
#recipes .recipe-card::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 10px;
  background: url("../media/images/new/recipe_card_after.png") repeat-x center;
  z-index: -1;
}
@media (min-width: 768px) {
  #recipes .recipe-card .content {
    height: 469px;
  }
}

/*---------------------------------
TIPS SECTION
---------------------------------*/
#tips .category-cards .card {
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 12.889px 17.18px 0px rgba(0, 0, 0, 0.07);
  border: none;
  padding: 0px;
  width: 100%;
  max-width: 370px;
  height: 100%;
}
#tips .category-cards .card .card-title {
  font-weight: 700;
  color: #FB9A03;
  font-size: 1.3rem;
}
#tips .category-cards .card p {
  color: #646464;
}
#tips .category-cards .card a {
  font-weight: 700;
}
#tips .swiper {
  width: 100%;
}
#tips .swiper-wrapper {
  margin-bottom: 40px;
}
#tips .swiper .swiper-slide {
  padding: 15px;
  height: auto;
}

/*---------------------------------
INSTAGRAM
---------------------------------*/
.instagram .swiper.instagram-swiper {
  height: 85vh;
}
.instagram .instagram-card {
  margin: 20px;
  border-radius: 0px 3px 3px 0px;
  border: 1px solid #DBDBDB;
  background: #FFF;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.08);
}
.instagram .pacifico {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  color: #255946;
  font-size: 29px;
}
.instagram img {
  height: 350px;
}

@media (min-width: 992px) {
  .instagram .swiper.instagram-swiper {
    height: 480px;
  }
  .instagram img {
    height: 400px;
  }
}
/*---------------------------------
FOOTER
---------------------------------*/
footer {
  margin-top: 100px;
  padding: 40px 12px;
  background-color: #255946;
  color: #F8EEDA;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0px;
  width: 100%;
  height: 17px;
  background: url("../media/images/new/footer_before_el.png") no-repeat center;
  background-size: cover;
}
footer .socials {
  list-style: none;
}
footer .checkbox-list {
  list-style: none;
  padding: 0;
}
footer .checkbox-list li {
  margin-top: 9px;
}
footer .checkbox-list i {
  background-color: #EFB443;
  color: #000;
  padding: 4px;
  margin-right: 8px;
  border-radius: 2px;
}
footer .checkbox-list i:not(:first-child) {
  margin-right: 10px;
}
footer .input-group {
  background-color: #FFF;
  padding: 6px 6px 6px 24px;
  border-radius: 35px;
}
footer .input-group input {
  border: none;
}
footer .input-group input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
footer .input-group button {
  padding: 12px 25px;
  border-radius: 25px !important;
}

@media (min-width: 992px) {
  footer {
    margin-top: 100px;
    padding: 40px 100px;
  }
  footer::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0px;
    width: 100%;
    height: 17px;
  }
  footer .input-group {
    padding: 6px 6px 6px 24px;
    border-radius: 35px;
  }
  footer .input-group input {
    border: none;
  }
  footer .input-group input:focus {
    outline: none;
    border: none;
    box-shadow: none;
  }
  footer .input-group button {
    padding: 12px 25px;
    border-radius: 25px !important;
  }
}
.footbar {
  position: relative;
  background-color: #1F4E3D;
  color: #B5C3BE;
  padding: 40px 0px;
}
.footbar::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0px;
  width: 100%;
  height: 17px;
  background: url("../media/images/new/footer_before_el2.png") center;
  background-size: cover;
}
.footbar ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

@media (max-width: 768px) {
  .footbar ul {
    flex-direction: column;
    padding: 0;
  }
}

@media (min-width: 600px) {
  .footbar ul li:not(:last-child)::after {
    content: "/";
    padding-left: 5px;
  }
}

/*---------------------------------
PRODUCT CARD
---------------------------------*/
.product-card {
  border-radius: 10px;
  background: rgba(238, 238, 238, 0.45);
  box-shadow: 2px 4px 13px 0px rgba(0, 0, 0, 0.05);
  border: none;
  flex-direction: row;
  padding: 2rem;
}
.product-card .product-img, .product-card .card-body {
  width: 50%;
}
.product-card .product-img {
  display: flex;
  align-items: end;
}
.product-card p {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal;
  color: #255946;
  font-size: 1.2rem;
}

/*--------------------------------- 
Old Accordions
---------------------------------*/
.accordion .card {
  margin-bottom: 20px;
  cursor: pointer;
}
.accordion .collapse {
  padding: 15px;
}