/*!
Theme Name: GG Traders
Theme URI: http://underscores.me/
Author: Mahesh
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: gg-traders
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

GG Traders is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit; }

html {
  box-sizing: border-box; }

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  line-height: 1.5; }

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif; }

h1 {
  font-size: 6.5rem;
  font-weight: 600;
  color: #3B2314; }

h2 {
  font-size: 4rem;
  color: #3B2314;
  font-weight: 600;
  margin-bottom: 30px; }

h2.nospace {
  margin-bottom: 0; }

h3 {
  font-size: 3rem;
  font-weight: 600; }

h4 {
  font-size: 1.9rem;
  font-weight: 600;
  margin: 0; }

h6 {
  font-size: 1.1rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600; }

p {
  margin-bottom: 1.5em; }

dfn,
cite,
em,
i {
  font-style: italic; }

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace; }

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark,
ins {
  background: #fff9c0;
  text-decoration: none; }

big {
  font-size: 125%; }

/* Elements
--------------------------------------------- */
body {
  background: url("assets/images/bg-lines.png") repeat; }

@media (min-width: 1800px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1675px; } }

@media (max-width: 767px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: unset; } }

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

ul,
ol {
  margin: 0 0 1.5em 3em; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: 700; }

dd {
  margin: 0 1.5em 1.5em; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%; }

img {
  height: auto;
  max-width: 100%; }

figure {
  margin: 1em 0; }

table {
  margin: 0 0 1.5em;
  width: 100%; }

/* Links
--------------------------------------------- */
a {
  color: #4169e1; }

a:visited {
  color: #800080; }

a:hover, a:focus, a:active {
  color: #191970; }

a:focus {
  outline: thin dotted; }

a:hover, a:active {
  outline: 0; }

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em; }

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa; }

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px; }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111; }

select {
  border: 1px solid #ccc; }

textarea {
  width: 100%; }

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
ul.navbar-nav li a {
  font-family: "Playfair Display", serif;
  color: #3B2314;
  font-weight: 600;
  font-size: 1.3rem; }

ul.navbar-nav li a:hover {
  color: #6f1d1b; }

ul.navbar-nav li.current-menu-item a {
  color: #6f1d1b; }

@media (max-width: 991px) {
  ul.navbar-nav {
    background: rgba(255, 255, 255, 0.8); }
  ul.navbar-nav li {
    padding: 0 25px; } }

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 2.5rem;
    padding-left: 2.5rem; } }

.navbar-toggler {
  width: 65px;
  box-shadow: none;
  border: none; }

.navbar-toggler:focus {
  box-shadow: none; }

.navbar-toggler .bar {
  height: 4px;
  background: #6f1d1b;
  border-radius: 5px;
  margin-bottom: 4px; }

header.header-scroll {
  background-color: rgba(255, 255, 255, 0.75);
  transition: 0.5s;
  animation: scroll 0.6s 1;
  border-bottom: 3px solid #7a2e2c; }

header.header-scroll.site-header .navbar {
  border-bottom: none !important; }

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block; }

.post,
.page {
  margin: 0 0 1.5em; }

.updated:not(.published) {
  display: none; }

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0; }

.page-links {
  clear: both;
  margin: 0 0 1.5em; }

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em; }

.widget select {
  max-width: 100%; }

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block; }

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption .wp-caption-text {
  margin: 0.8075em 0; }

.wp-caption-text {
  text-align: center; }

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em; }

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%; }

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr); }

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr); }

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr); }

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr); }

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr); }

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr); }

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr); }

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr); }

.gallery-caption {
  display: block; }

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none; }

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block; }

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; }

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; }

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0; }

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em; }

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em; }

/* Site Styles
--------------------------------------------- */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; }

header.site-header .navbar {
  padding: 12px 0;
  border-bottom: 2px solid #7a2e2c; }

@media (max-width: 991px) {
  header.site-header .navbar {
    padding-bottom: 0; } }

.main-banner {
  height: 1000px; }

@media (max-width: 1399px) {
  .main-banner {
    height: 850px; } }

@media (max-width: 991px) {
  .main-banner {
    height: 700px; } }

@media (max-width: 650px) {
  .main-banner {
    height: 600px; } }

.main-banner img {
  height: auto !important;
  max-height: 100% !important; }

@media (max-width: 650px) {
  .main-banner img {
    max-height: 450px !important;
    margin-top: 45px !important; } }

@media (max-width: 550px) {
  .main-banner img {
    max-height: 350px !important; } }

@media (max-width: 550px) {
  .main-banner img {
    max-height: 250px !important;
    margin-top: 89px !important; } }

.main-banner.home-banner img {
  margin-top: 110px !important;
  width: auto !important;
  margin-left: -40px !important; }

@media (max-width: 650px) {
  .main-banner.about-banner {
    height: 500px; } }

@media (max-width: 500px) {
  .main-banner.about-banner {
    height: 400px;
    min-height: unset; } }

@media (max-width: 400px) {
  .main-banner.about-banner {
    height: 300px;
    min-height: unset; } }

.main-banner.about-banner img {
  max-height: 100% !important;
  margin-top: unset !important; }

@media (max-width: 1199px) {
  .main-banner.product-banner {
    height: 650px; } }

@media (max-width: 991px) {
  .main-banner.product-banner {
    height: 480px; } }

@media (max-width: 450px) {
  .main-banner.product-banner img {
    max-height: 200px !important;
    margin-top: 50px !important;
    width: auto;
    right: -40px !important; } }

.main-banner h2, .main-banner h3, .main-banner h4, .main-banner h6 {
  margin: 0;
  line-height: .8; }

.main-banner h1 {
  font-size: 8.7rem; }

@media (max-width: 1799px) {
  .main-banner h1 {
    font-size: 7rem; } }

@media (max-width: 1399px) {
  .main-banner h1 {
    font-size: 6rem; } }

@media (max-width: 991px) {
  .main-banner h1 {
    font-size: 4.2rem; } }

@media (max-width: 650px) {
  .main-banner h1 {
    font-size: 3.5rem; } }

.main-banner h2 {
  font-size: 202px;
  line-height: 1;
  margin-top: -45px; }

@media (max-width: 1799px) {
  .main-banner h2 {
    font-size: 150px;
    margin-top: 0px; } }

@media (max-width: 1199px) {
  .main-banner h2 {
    font-size: 120px; } }

@media (max-width: 991px) {
  .main-banner h2 {
    font-size: 90px; } }

@media (max-width: 650px) {
  .main-banner h2 {
    font-size: 70px; } }

.main-banner h3 {
  font-size: 76px; }

@media (max-width: 991px) {
  .main-banner h3 {
    font-size: 55px; } }

@media (max-width: 650px) {
  .main-banner h3 {
    font-size: 40px; } }

.main-banner h4 {
  font-size: 70px; }

@media (max-width: 991px) {
  .main-banner h4 {
    font-size: 50px; } }

@media (max-width: 650px) {
  .main-banner h4 {
    font-size: 35px; } }

.main-banner .banner-btn {
  margin-top: 50px; }

.main-banner .banner-btn a.wp-block-button__link {
  border-color: #2b7718;
  font-size: 26px;
  color: #2b7718;
  font-family: "Playfair Display", serif;
  transition: .5s;
  padding: 18px 100px; }

@media (max-width: 991px) {
  .main-banner .banner-btn a.wp-block-button__link {
    padding: 10px 50px; } }

.main-banner .banner-btn a.wp-block-button__link:hover {
  background: #2b7718;
  color: #fff; }

.main-banner.ps-center img {
  right: 0;
  left: 0;
  margin: 0 auto; }

.main-banner.ps-right img {
  right: 0;
  left: unset; }

.site-footer {
  font-size: 1.2rem;
  color: #cda349;
  font-family: "Playfair Display", serif;
  background: #3B2314;
  margin-top: 120px; }

.site-footer .container {
  position: relative;
  background: url("assets/images/dried-chilli.png") no-repeat;
  background-position: 20% 40px;
  background-size: 300px auto; }

.site-footer .container ::after {
  content: "";
  background: url("assets/images/footer-leaves.png") no-repeat;
  width: 205px;
  height: 257px;
  position: absolute;
  right: 18%;
  top: -110px;
  z-index: 10;
  background-size: contain; }

@media (max-width: 1299px) {
  .site-footer .container ::after {
    width: 150px;
    height: 188px; } }

@media (max-width: 650px) {
  .site-footer .container ::after {
    width: 100px;
    height: 125px;
    top: -68px; } }

.site-footer .footer-top {
  padding: 40px 0 20px 0;
  border-bottom: 2px solid #cda349; }

@media (max-width: 767px) {
  .site-footer .footer-top {
    text-align: center; }
  .site-footer .footer-top .col-md-4 {
    margin-bottom: 30px; }
  .site-footer .footer-top .col-md-4 .text-end {
    text-align: center !important; } }

.site-footer .site-info {
  font-family: 1rem;
  padding: 15px 0; }

li.widget {
  margin: 0;
  list-style-type: none; }

li.widget ul.menu {
  text-align: center;
  margin: 0;
  padding: 0; }

li.widget ul.menu li {
  list-style-type: none;
  display: inline-block;
  padding: 0 25px; }

li.widget ul.menu a {
  text-decoration: none;
  color: #cda349; }

li.widget .social-icons a {
  display: inline-block;
  padding-left: 15px; }

li.widget .social-icons i {
  color: #cda349;
  font-size: 1.6rem; }

#page {
  overflow: hidden; }

.entry-content .alignfull {
  width: 100vw; }

.spt1, .spy1 {
  padding-top: 40px !important; }

@media only screen and (min-width: 601px) {
  .spt1, .spy1 {
    padding-top: 75px !important; } }

.spb1, .spy1 {
  padding-bottom: 40px !important; }

@media only screen and (min-width: 601px) {
  .spb1, .spy1 {
    padding-bottom: 75px !important; } }

.spt2, .spy2 {
  padding-top: 40px !important; }

@media only screen and (min-width: 601px) {
  .spt2, .spy2 {
    padding-top: 40px !important; } }

.spb2, .spy2 {
  padding-bottom: 40px !important; }

@media only screen and (min-width: 601px) {
  .spb2, .spy2 {
    padding-bottom: 40px !important; } }

.spx1 {
  max-width: 1200px;
  margin: 0 auto; }

.center {
  text-align: center; }

.coffee, .coffee * {
  color: #3B2314 !important; }

.green, .green * {
  color: #2b7718 !important; }

.entry-content {
  margin-top: 0;
  /*img {
		width: 100vw;
	}*/ }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2);
  margin-right: calc( -100vw / 2 + 100% / 2);
  max-width: 100vw; }

.gg-border-btm {
  border-bottom: 1px solid #7a2e2c; }

.cnt-map, .cnt-mail, .cnt-tel {
  color: #3B2314;
  padding-left: 75px;
  position: relative; }

.cnt-map::before, .cnt-mail::before, .cnt-tel::before {
  position: absolute;
  left: 2px;
  top: 0px;
  font-family: "Font Awesome 5 Free";
  color: #6f1d1b;
  font-size: 3.5rem;
  font-weight: 900; }

.cnt-map h4, .cnt-mail h4, .cnt-tel h4 {
  color: #3B2314; }

.cnt-map a, .cnt-mail a, .cnt-tel a {
  color: #807c7c;
  font-size: 1.3rem;
  text-decoration: none; }

.cnt-map::before {
  content: "\f3c5"; }

.cnt-tel::before {
  content: "\f2a0";
  top: 25px; }

.cnt-mail::before {
  content: "\f0e0";
  top: 25px; }

.contact-form label, .contact-form .wpcf7-form-control {
  width: 100%; }

.contact-form label {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #3B2314;
  margin-bottom: 25px; }

.contact-form .wpcf7-form-control-wrap {
  margin-top: 10px;
  display: block; }

.contact-form .wpcf7-form-control {
  padding: 15px;
  border: 1px solid #3B2314;
  border-radius: 6px; }

.contact-form .wpcf7-submit {
  width: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  border-color: #2b7718;
  color: #2b7718;
  background: transparent;
  font-size: 2.5rem;
  color: #2b7718 !important;
  font-family: "Playfair Display", serif;
  transition: .5s;
  padding: 20px 75px; }

.contact-form .wpcf7-submit:hover {
  background: #2b7718;
  color: #fff !important; }

.gg-testimonials {
  padding: 0 5%;
  position: relative; }

.gg-testimonials::before {
  position: absolute;
  content: "";
  background: url("assets/images/basilicum-2.png") no-repeat;
  width: 310px;
  height: 340px;
  top: -130px;
  left: -100px;
  background-size: contain;
  z-index: 10; }

@media (max-width: 1399px) {
  .gg-testimonials::before {
    width: 150px;
    height: 165px;
    top: -90px;
    left: -25px; } }

@media (max-width: 1399px) {
  .gg-testimonials::before {
    width: 75px;
    height: 86px;
    top: -45px;
    left: 0px; } }

.gg-testimonials .testimonial-inner {
  padding-left: 50px; }

@media (max-width: 767px) {
  .gg-testimonials .testimonial-inner {
    padding-left: 0px; } }

.gg-testimonials .testi-head {
  margin-top: 25px; }

.gg-testimonials h3 {
  color: #3B2314;
  font-size: 4rem; }

.gg-testimonials .desig {
  color: #2b7718;
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  margin: 13px 0 70px 0;
  padding-bottom: 37px;
  border-bottom: 2px solid #000; }

.gg-testimonials .testimonial {
  max-width: 700px; }

.gg-testimonials .slick-prev, .gg-testimonials .slick-next {
  top: unset;
  bottom: 0;
  z-index: 10; }

.gg-testimonials .slick-prev::before, .gg-testimonials .slick-next::before {
  color: #fff;
  font-family: "Font Awesome 5 Free";
  background: #6f1d1b;
  font-weight: 900;
  height: 35px;
  width: 35px;
  display: inline-block;
  padding: 10px 0 0 1px;
  border-radius: 50%;
  font-size: .9rem; }

.gg-testimonials .slick-next {
  right: 100px; }

.gg-testimonials .slick-prev {
  right: 150px;
  left: unset; }

.gg-testimonials .slick-next::before {
  content: '\f061'; }

.gg-testimonials .slick-prev::before {
  content: '\f060'; }

.certificates figure.wp-block-image {
  text-align: center; }

.certificates figure.wp-block-image img {
  width: auto; }

.certificates h6 {
  text-align: center; }

.gg-btn {
  margin-top: 10px; }

.gg-btn a.wp-block-button__link {
  border-color: #2b7718;
  font-size: 1.55rem;
  color: #2b7718 !important;
  font-family: "Playfair Display", serif;
  transition: .5s;
  padding: 10px 65px; }

.gg-btn a.wp-block-button__link:hover {
  background: #2b7718;
  color: #fff !important; }

.gg-btn.center {
  margin-left: auto !important;
  margin-right: auto !important; }

.gg-btn.large-btn a.wp-block-button__link {
  font-size: 2.5rem; }

@media (max-width: 650px) {
  .gg-btn.large-btn a.wp-block-button__link {
    font-size: 1.5rem; } }

.prd-pt-1 {
  padding-top: 10%; }

.prd-pt-2 {
  padding-top: 5%; }

h2.line, h3.line {
  position: relative;
  padding-bottom: 45px;
  margin-bottom: 40px; }

h2.line::after, h3.line::after {
  content: "";
  position: absolute;
  border-bottom: 2px solid #3B2314;
  width: 300%;
  left: 0;
  bottom: 0px; }

h2.line.line-right::after, h3.line.line-right::after {
  left: unset;
  right: 0; }

@media (max-width: 599px) {
  h2.line.line-right::after, h3.line.line-right::after {
    left: 0;
    right: unset; } }

hr.gg-line {
  opacity: 1;
  background: #3B2314;
  height: 2px;
  margin: 0 !important; }

.btm-pb-1 {
  margin-bottom: -150px; }

.sgpb-popup-overlay {
  background: #c2a16e !important; }

.sgpb-popup-dialog-main-div-theme-wrapper-1 {
  border-radius: 15px;
  background: #fff;
  /*border: 1px solid $color__coffeelight !important;*/
  box-shadow: 1px 1px 15px 5px rgba(59, 35, 20, 0.7); }

.sgpb-popup-dialog-main-div-theme-wrapper-1 img.sgpb-popup-close-button-1 {
  position: absolute;
  bottom: unset;
  top: -10px;
  right: -9px !important; }

.sgpb-popup-dialog-main-div-theme-wrapper-1 .sgpb-content .sg-popup-builder-content {
  padding: 25px 25px 0 25px !important; }

.sgpb-theme-1-content {
  box-shadow: none !important; }

.gg-popup {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  line-height: normal;
  font-weight: 600; }

.gg-popup .wp-block-columns {
  margin-bottom: 0; }

.gg-popup .gg-btn a.wp-block-button__link {
  padding: 10px 25px;
  font-size: 1.35rem; }

.sgpb-main-html-content-wrapper hr.gg-line {
  margin: 20px 0 !important; }

.home .main-banner::after {
  content: "";
  background: url("assets/images/leaves-h.png") no-repeat;
  width: 230px;
  height: 300px;
  background-size: contain;
  top: -5px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1020; }

@media (max-width: 1799px) {
  .home .main-banner::after {
    width: 200px;
    height: 268px;
    top: 15px; } }

@media (max-width: 1399px) {
  .home .main-banner::after {
    width: 150px;
    height: 201px;
    top: 30px;
    right: 44%;
    left: unset;
    margin: unset; } }

@media (max-width: 991px) {
  .home .main-banner::after {
    width: 100px;
    height: 134px;
    top: 50px;
    right: 14%; } }

@media (max-width: 650px) {
  .home .main-banner::after {
    width: 50px;
    height: 67px;
    top: 90px; } }

.prod-right-box > * {
  text-align: right;
  padding-right: 15%; }

@media (max-width: 599px) {
  .prod-right-box > * {
    text-align: left;
    padding-right: 0; } }

.prod-right-box .wp-block-buttons {
  justify-content: flex-end; }

@media (max-width: 599px) {
  .prod-right-box .wp-block-buttons {
    justify-content: flex-start; } }

.prod-right-box h2.line.line-right::after, .prod-right-box h3.line.line-right::after {
  right: 15%; }

.fancy-1 {
  position: relative; }

.fancy-1::before, .fancy-1::after {
  position: absolute;
  content: ""; }

.fancy-1::before {
  background: url("assets/images/parsley.png") no-repeat;
  background-size: contain;
  width: 235px;
  height: 265px;
  left: 0;
  right: 0;
  top: -135px;
  margin: 0 auto; }

.fancy-1::after {
  background: url("assets/images/nutmeg-powder.png") no-repeat;
  background-size: contain;
  width: 518px;
  height: 475px;
  right: -220px;
  top: -250px; }

@media (max-width: 991px) {
  .fancy-1::after {
    width: 300px;
    height: 275px;
    right: -150px;
    top: -150px; } }

.fancy-2 {
  position: relative; }

.fancy-2::before, .fancy-2::after {
  position: absolute;
  content: ""; }

.fancy-2::before {
  background: url("assets/images/rosemary.png") no-repeat;
  background-size: contain;
  width: 300px;
  height: 300px;
  left: 32%;
  top: -200px;
  margin: 0 auto; }

@media (max-width: 767px) {
  .fancy-2::before {
    width: 150px;
    height: 151px;
    left: 32%;
    top: -65px; } }

.fancy-2::after {
  background: url("assets/images/mask.png") no-repeat;
  background-size: contain;
  width: 270px;
  height: 270px;
  right: 0px;
  top: -110px; }

@media (max-width: 767px) {
  .fancy-2::after {
    width: 150px;
    height: 151px;
    right: -25px;
    top: -80px; } }

.fancy-3 {
  position: relative; }

.fancy-3::before {
  position: absolute;
  content: "";
  background: url("assets/images/basilicum.png") no-repeat;
  background-size: contain;
  width: 380px;
  height: 360px;
  right: -70px;
  top: -40px; }

@media (max-width: 991px) {
  .fancy-3::before {
    width: 200px;
    height: 190px; } }

.fancy-4 {
  position: relative; }

.fancy-4::before {
  position: absolute;
  content: "";
  background: url("assets/images/basilicum-2.png") no-repeat;
  background-size: contain;
  width: 310px;
  height: 340px;
  right: -180px;
  top: -150px; }

@media (max-width: 1399px) {
  .fancy-4::before {
    width: 200px;
    height: 220px;
    right: -100px;
    top: -90px; } }

@media (max-width: 991px) {
  .fancy-4::before {
    width: 100px;
    height: 110px;
    right: -80px;
    top: -20px; } }

@media (max-width: 599px) {
  .fancy-4::before {
    right: -30px; } }

.fancy-5 {
  position: relative; }

.fancy-5::before {
  position: absolute;
  content: "";
  background-size: contain;
  background: url("assets/images/basilicum-plant.png") no-repeat;
  width: 900px;
  height: 890px;
  left: -700px;
  top: -580px; }

.fancy-6 {
  position: relative; }

.fancy-6::before {
  position: absolute;
  content: "";
  background: url("assets/images/pepper.png") no-repeat;
  width: 400px;
  height: 370px;
  left: -310px;
  top: -280px;
  background-size: contain; }

.fancy-7 {
  position: relative; }

.fancy-7::before {
  position: absolute;
  content: "";
  background: url("assets/images/chives.png") no-repeat;
  width: 490px;
  height: 455px;
  right: -310px;
  top: -280px;
  background-size: contain; }

.fancy-8 {
  position: relative; }

.fancy-8::before, .fancy-8::after {
  position: absolute;
  content: ""; }

.fancy-8::before {
  background: url("assets/images/cinnamon.png") no-repeat;
  width: 465px;
  height: 700px;
  left: -350px;
  top: -135px;
  background-size: contain; }

.fancy-8::after {
  background: url("assets/images/pepper-mill.png") no-repeat;
  width: 300px;
  height: 395px;
  top: -150px;
  left: 65%;
  background-size: contain; }

@media (max-width: 1799px) {
  .fancy-8::after {
    width: 180px;
    height: 237px;
    top: -80px; } }

@media (max-width: 650px) {
  .fancy-8::after {
    width: 100px;
    height: 132px;
    top: -55px; } }

.fancy-9 {
  position: relative; }

.fancy-9::before {
  position: absolute;
  content: "";
  background: url("assets/images/basilicum-plant.png") no-repeat;
  width: 900px;
  height: 890px;
  right: -800px;
  top: -380px;
  background-size: contain; }

.fancy-10 {
  position: relative; }

.fancy-10::before, .fancy-10::after {
  position: absolute;
  content: ""; }

.fancy-10::before {
  background: url("assets/images/basilicum-2.png") no-repeat;
  width: 310px;
  height: 340px;
  left: -150px;
  top: -100px;
  background-size: contain; }

@media (max-width: 1299px) {
  .fancy-10::before {
    width: 200px;
    height: 220px; } }

.fancy-10::after {
  background: url("assets/images/cinnamon.png") no-repeat;
  width: 465px;
  height: 700px;
  top: -500px;
  right: -400px;
  background-size: contain; }

.fancy-11 {
  position: relative; }

.fancy-11::after {
  position: absolute;
  content: "";
  background: url("assets/images/nutmeg-powder.png") no-repeat;
  background-size: contain;
  width: 518px;
  height: 475px;
  left: -250px;
  bottom: -150px; }

@media (max-width: 1499px) {
  .fancy-11::after {
    width: 300px;
    height: 275px; } }

@media (max-width: 991px) {
  .fancy-11::after {
    width: 200px;
    height: 183px;
    bottom: -300px;
    left: -100px; } }

.fancy-12 {
  position: relative; }

.fancy-12::before {
  position: absolute;
  content: "";
  background: url("assets/images/basilicum-2.png") no-repeat;
  width: 200px;
  height: 220px;
  right: -100px;
  top: -13px;
  background-size: contain; }

@media (max-width: 450px) {
  .fancy-12::before {
    width: 100px;
    height: 95px;
    right: -47px;
    top: 13px; } }

.fancy-13 {
  position: relative; }

.fancy-13::before {
  position: absolute;
  content: "";
  background: url("assets/images/parsley-plan.png") no-repeat;
  background-size: contain;
  width: 440px;
  height: 580px;
  right: -350px;
  top: -240px; }

@media (max-width: 450px) {
  .fancy-13::before {
    width: 250px;
    height: 330px;
    right: -210px;
    top: -75px; } }

.fancy-14 {
  position: relative; }

.fancy-14::before, .fancy-14::after {
  position: absolute;
  content: ""; }

.fancy-14::before {
  background: url("assets/images/basilicum.png") no-repeat;
  width: 380px;
  height: 360px;
  left: -150px;
  top: -300px;
  background-size: contain; }

@media (max-width: 991px) {
  .fancy-14::before {
    width: 200px;
    height: 190px;
    left: -150px;
    top: -75px; } }

.fancy-14::after {
  background: url("assets/images/rosemary.png") no-repeat;
  width: 300px;
  height: 305px;
  top: -100px;
  right: -180px;
  background-size: contain; }

@media (max-width: 650px) {
  .fancy-14::after {
    width: 150px;
    height: 151px;
    top: -30px;
    right: -55px; } }

.fancy-15 {
  position: relative; }

.fancy-15::before {
  position: absolute;
  content: "";
  background: url("assets/images/basilicum-3.png") no-repeat;
  background-size: contain;
  width: 345px;
  height: 260px;
  left: 0;
  top: -60px; }

@media (max-width: 1399px) {
  .fancy-15::before {
    width: 200px;
    height: 150px; } }

@media (max-width: 991px) {
  .fancy-15::before {
    left: -150px; } }

@media (max-width: 599px) {
  .fancy-15::before {
    left: auto;
    right: 0;
    top: 0px; } }

@media (max-width: 400px) {
  .fancy-15::before {
    right: -75px;
    top: 15px;
    width: 150px;
    height: 113px; } }

.fancy-16 {
  position: relative; }

.fancy-16::before {
  position: absolute;
  content: "";
  background: url("assets/images/basilicum.png") no-repeat;
  width: 380px;
  height: 360px;
  left: -230px;
  top: -250px;
  background-size: contain; }

@media (max-width: 1199px) {
  .fancy-16::before {
    width: 200px;
    height: 190px;
    left: -130px;
    top: -120px; } }

.fancy-17 {
  position: relative; }

.fancy-17::before {
  position: absolute;
  content: "";
  background: url("assets/images/tea.png") no-repeat;
  width: 555px;
  height: 550px;
  right: -270px;
  top: -300px;
  background-size: contain; }

@media (max-width: 991px) {
  .fancy-17::before {
    width: 250px;
    height: 248px;
    right: -240px;
    top: -35px; } }

@media (max-width: 650px) {
  .fancy-17::before {
    right: -140px; } }

@media (max-width: 400px) {
  .fancy-17::before {
    right: -70px;
    width: 150px;
    height: 149px;
    top: -28px; } }

.fancy-18 {
  position: relative; }

.fancy-18::before {
  position: absolute;
  content: "";
  background: url("assets/images/pepper.png") no-repeat;
  width: 490px;
  height: 455px;
  left: -370px;
  top: -100px;
  background-size: contain; }

@media (max-width: 1799px) {
  .fancy-18::before {
    left: -570px; } }

@media (max-width: 1399px) {
  .fancy-18::before {
    left: -470px; } }

@media (max-width: 991px) {
  .fancy-18::before {
    left: -530px; } }

.fancy-19 {
  position: relative; }

.fancy-19::before {
  position: absolute;
  content: "";
  background: url("assets/images/mask.png") no-repeat;
  width: 270px;
  height: 272px;
  right: 0px;
  top: -200px;
  background-size: contain; }

@media (max-width: 1199px) {
  .fancy-19::before {
    width: 150px;
    height: 150px;
    right: -100px;
    top: -100px; } }

@media (max-width: 1199px) {
  .fancy-19::before {
    top: -10px; } }

.fancy-20 {
  position: relative; }

.fancy-20::before {
  position: absolute;
  content: "";
  background: url("assets/images/cinnamon.png") no-repeat;
  width: 465px;
  height: 700px;
  top: -10px;
  left: -350px;
  background-size: contain;
  z-index: 10; }

@media (max-width: 650px) {
  .fancy-20::before {
    display: none; } }

.fancy-21 {
  position: relative; }

.fancy-21::after {
  position: absolute;
  content: "";
  background: url("assets/images/parsley-plan.png") no-repeat;
  background-size: contain;
  width: 440px;
  height: 580px;
  right: -350px;
  bottom: -300px; }

@media (max-width: 1799px) {
  .fancy-21::after {
    right: -450px;
    bottom: -400px; } }

.fancy-22 {
  position: relative; }

.fancy-22::before {
  position: absolute;
  content: "";
  background: url(assets/images/pepper.png) no-repeat;
  width: 490px;
  height: 455px;
  right: -400px;
  top: -300px;
  background-size: contain; }

.fancy-23 {
  position: relative; }

.fancy-23::before {
  position: absolute;
  content: "";
  background: url(assets/images/nutmeg-powder.png) no-repeat;
  background-size: contain;
  width: 518px;
  height: 475px;
  left: -550px;
  top: -100px; }

.fancy-23::after {
  position: absolute;
  content: "";
  background-size: contain;
  background: url("assets/images/basilicum-plant.png") no-repeat;
  width: 900px;
  height: 890px;
  right: -1000px;
  bottom: 0; }

.sm-nt1 {
  margin-top: -70px !important; }

@media (max-width: 1799px) {
  .sm-nt1 {
    margin-top: -50px !important; } }
