/*=======================================
              Import Fonts
========================================*/
@import url("https://use.typekit.net/atk5eef.css");
.acumin {
  font-family: acumin-variable, sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 50, "wght" 700;
}

.moret {
  font-family: moret, serif;
  font-weight: 600;
  font-style: normal;
}

.grafical {
  font-family: "GraficalBold";
}

.grafical.bold {
  font-family: "GraficalBold";
}

/*=======================================
              Colours
========================================*/
.bg-blue {
  background-color: #00ACBD;
}

.text-blue {
  color: #00ACBD;
}

.bg-red {
  background-color: #DA0041;
}

.text-red {
  color: #DA0041;
}

.text-white {
  color: #FFFFFF;
}
.text-white a:not([class]) {
  color: #FFFFFF;
}

.bg-orange {
  background-color: #F3931B;
}

.text-cream {
  color: #F6EDE2;
}

.bg-cream {
  background-color: #F6EDE2;
}

/*=======================================
      Reset Styles for Main Elements
========================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/*=======================================
              Box Sizing
========================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*=======================================
          Default Body Styles
========================================*/
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
  font-family: GraficalBold;
}

/*=======================================
   Set Display Role for Older Browsers
========================================*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*=======================================
                Quotes
========================================*/
blockquote,
q {
  quotes: none;
}

blockquote {
  padding: 10px 30px;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/*=======================================
            Container Layout
========================================*/
.container {
  width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 1500px) {
  .container {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .container {
    padding: 0 15px;
  }
}
/*=======================================
              Helper Classes
========================================*/
.clearfix {
  clear: both;
}

.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;
  width: 1px;
  word-wrap: normal !important;
}

/*=======================================
              Flex Classes
========================================*/
.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/*=======================================
          Link Default Styles
========================================*/
a {
  text-decoration: none;
}

a.cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 0px;
}

a:hover {
  text-decoration: underline;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/*=======================================
              Buttons
========================================*/
a.button {
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.72px;
  background-color: #FFFFFF;
  padding: 15px 45px;
  font-family: acumin-variable, sans-serif;
  border-radius: 8px;
  font-variation-settings: "slnt" 0, "wdth" 50, "wght" 700;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
}
a.button:hover {
  background-color: #DA0041;
  color: #FFFFFF;
}
@media screen and (max-width: 700px) {
  a.button {
    padding: 15px 35px;
  }
}

/*=======================================
            List Default Styles
========================================*/
ul[class],
ol[class] {
  list-style: none;
}

/*=======================================
              Nice Selects
========================================*/
.starter-theme .nice-select {
  border: none;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 15px;
  height: auto;
  float: none;
  font-size: 24px;
  line-height: 1;
  font-family: acumin-variable, sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 50, "wght" 700;
  text-transform: uppercase;
}
.starter-theme .nice-select:after {
  width: 15px;
  height: 15px;
  border-color: #000000;
  top: 21px;
  border-width: 3px;
  right: 20px;
}
.starter-theme .nice-select .list {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 8px;
  border-bottom: 1px solid #000000;
  box-shadow: none;
}
.starter-theme .nice-select .option:hover,
.starter-theme .nice-select .option.focus,
.starter-theme .nice-select .option.selected.focus {
  background-color: #DA0041;
  color: #FFFFFF;
  font-weight: normal;
}
.starter-theme .nice-select:active, .starter-theme .nice-select.open, .starter-theme .nice-select:focus {
  border-color: #1D284A;
}

/*=======================================
            Table Default Styles
========================================*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*=======================================
              Form Elements
========================================*/
input,
button,
textarea,
select {
  font: inherit;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
textarea,
select {
  font-size: 16px;
  color: #333;
  background: #fff;
  border: 2px solid #333;
  display: inline-block;
  padding: 6px 10px;
  margin: 5px 0;
  outline: none;
}

label {
  cursor: pointer;
}

/*=======================================
          Image Default Styles
========================================*/
img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

/*=======================================
            Text Container
========================================*/
.text-container em {
  font-style: italic;
}
.text-container strong {
  font-weight: bold;
}
.text-container p,
.text-container ul,
.text-container ol {
  margin-bottom: 20px;
}
.text-container ul,
.text-container ol {
  margin-left: 30px;
}
.text-container ul li {
  list-style: none;
  position: relative;
}
.text-container ul li::before {
  content: "";
  background-color: #DA0041;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  line-height: 1;
  position: absolute;
  top: 9px;
  left: -25px;
}
@media screen and (max-width: 600px) {
  .text-container ul li::before {
    width: 10px;
    height: 10px;
    top: 8px;
    left: -18px;
  }
}
.text-container img {
  width: auto;
  max-width: 100%;
}
.text-container .wp-video {
  width: 100% !important;
}
.text-container iframe {
  width: 100% !important;
}
.text-container .video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.text-container .video-container:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.text-container .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*=======================================
            Hide Admin Bar
========================================*/
@media only screen and (max-width: 1000px) {
  #wpadminbar {
    display: none !important;
  }
  html {
    margin-top: 0 !important;
  }
}
/*=======================================
            Gravity Checkboxes
========================================*/
body .gform_wrapper .ginput_container_consent {
  /* after */
  /* before */
}
body .gform_wrapper .ginput_container_consent input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
body .gform_wrapper .ginput_container_consent input[type=checkbox] + label {
  position: relative;
  overflow: hidden;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
}
body .gform_wrapper .ginput_container_consent input[type=checkbox] + label a {
  text-decoration: underline;
  color: #000000;
}
body .gform_wrapper .ginput_container_consent input[type=checkbox] + label:before,
body .gform_wrapper .ginput_container_consent input[type=checkbox] + label:after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
body .gform_wrapper .ginput_container_consent input[type=checkbox]:not(:checked) + label:after {
  width: 20px;
  height: 20px;
  top: 2px;
  background-color: #F6EDE2;
  border: 2px solid #000000;
}
body .gform_wrapper .ginput_container_consent input[type=checkbox]:checked + label:after {
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: #F6EDE2;
  z-index: 0;
  border-radius: 0;
  border: 2px solid #000000;
}
body .gform_wrapper .ginput_container_consent input[type=checkbox]:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
body .gform_wrapper .ginput_container_consent input[type=checkbox]:checked + label:before {
  top: 2px;
  left: 2px;
  width: 7px;
  height: 12px;
  margin-top: 3px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

/*=======================================
            Header & Spacing
========================================*/
body {
  overflow-x: hidden;
}

header {
  padding: 0;
  position: relative;
  width: 100%;
  transition: all 0.5s ease-in-out;
  z-index: 99;
}

html.no-scroll {
  overflow-y: hidden;
}

/*=======================================
        Hide Header On Scroll
========================================*/
header.nav-up,
.admin-bar header.nav-up {
  top: -200px;
}

/*=======================================
            Header Contents
========================================*/
header {
  border-top: 35px solid #00ACBD;
}
@media screen and (max-width: 1200px) {
  header {
    padding: 30px 0;
  }
}
@media screen and (max-width: 700px) {
  header {
    border-top: 15px solid #00ACBD;
  }
}
header .contents {
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 1200px) {
  header .contents {
    justify-content: space-between;
  }
}
header .logo {
  position: relative;
  width: 240px;
  margin-right: 85px;
}
@media screen and (max-width: 1300px) {
  header .logo {
    width: 200px;
  }
}
@media screen and (max-width: 700px) {
  header .logo {
    width: 170px;
  }
}
header .right {
  position: relative;
  top: 2px;
  align-items: center;
}
@media screen and (max-width: 700px) {
  header .right {
    margin-right: 0;
  }
}
header .right .menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  header .right .menu {
    display: none;
  }
}
header .right .menu .menu-item {
  margin-right: 45px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 60px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.78px;
}
header .right .menu .menu-item a {
  text-decoration: none;
  color: #FFFFFF;
  position: relative;
}
header .right .menu .menu-item a:after {
  height: 1px;
  background-color: #FFFFFF;
  width: 0;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
header .right .menu .menu-item:hover > a:after {
  width: 100%;
}
header .right .searchbox {
  position: absolute;
  left: 0;
  top: 44px;
  z-index: 7;
  width: calc(100% - 40px);
  display: none;
}
@media screen and (max-width: 1200px) {
  header .right .searchbox {
    width: 100vw;
    background: #DA0041;
    right: -30px;
    left: auto;
    top: 58px;
    padding: 10px 30px;
    border-bottom: 1px solid #DA0041;
  }
}
@media screen and (max-width: 700px) {
  header .right .searchbox {
    top: 53px;
  }
}
@media screen and (max-width: 450px) {
  header .right .searchbox {
    right: -15px;
    padding: 10px 15px;
  }
}
header .right .searchbox input[type=text] {
  border: none;
  width: 100%;
  border-radius: 8px;
  font-size: 24px;
  padding: 8px 50px 8px 10px;
}
header .right .searchbox #searchsubmit {
  display: none;
}
header .right .searchbox .search-button {
  position: absolute;
  right: 15px;
  top: 17px;
  width: 22px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  header .right .searchbox .search-button {
    right: 40px;
    top: 27px;
  }
}
@media screen and (max-width: 450px) {
  header .right .searchbox .search-button {
    right: 27px;
  }
}
header .right .searchbox .search-button svg path {
  fill: #DA0041;
}
header .right .search-icon {
  width: 22px;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
header .right .search-icon svg path {
  fill: #FFFFFF;
}
@media screen and (max-width: 1200px) {
  header .right .search-icon {
    width: 30px;
  }
}
header .right .search-icon svg.close {
  display: none;
  margin: -5px 0;
}
header .right.search-open .search-icon svg.close {
  display: block;
}
header .right.search-open .search-icon svg.search {
  display: none;
}
header .right.search-open .menu {
  opacity: 0;
  pointer-events: none;
}
header .right .menu-toggle {
  margin-left: 15px;
}
@media screen and (min-width: 1200px) {
  header .right .menu-toggle {
    display: none;
  }
}
header .right .menu-toggle .btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  transition: 0.3s ease;
}
header .right .menu-toggle .btn-menu:focus {
  outline: none;
}
header .right .menu-toggle .btn-menu__text {
  margin-left: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
header .right .menu-toggle .btn-menu__bars {
  display: block;
  position: relative;
  width: 38px;
  height: 4px;
  background-color: #FFFFFF;
  transition: 0.3s;
  border-radius: 7px;
}
header .right .menu-toggle .btn-menu__bars:before, header .right .menu-toggle .btn-menu__bars:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  transition: 0.3s;
  border-radius: 7px;
}
header .right .menu-toggle .btn-menu__bars:before {
  transform: translate(0, -12px);
}
header .right .menu-toggle .btn-menu__bars:after {
  transform: translate(0, 12px);
}
.menu-open header .right .menu-toggle .btn-menu .btn-menu__bars {
  background-color: transparent;
}
.menu-open header .right .menu-toggle .btn-menu .btn-menu__bars:before {
  transform: rotate(45deg);
}
.menu-open header .right .menu-toggle .btn-menu .btn-menu__bars:after {
  transform: rotate(-45deg);
}
header .mobile-menu {
  display: none;
  position: absolute;
  width: 100vw;
  margin: 0 -30px;
  height: calc(100vh - 159px);
  top: 94px;
  padding: 40px 30px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 700px) {
  header .mobile-menu {
    height: calc(100vh - 129px);
    top: 85px;
  }
}
@media screen and (max-width: 450px) {
  header .mobile-menu {
    margin: 0 -15px;
    padding: 0 15px;
  }
}
header .mobile-menu .bg-shape {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 150%;
  left: -25%;
}
@media screen and (max-width: 600px) {
  header .mobile-menu .bg-shape {
    width: 250%;
    left: -75%;
  }
}
header .mobile-menu .menu-main-menu-container {
  position: relative;
  z-index: 6;
}
header .mobile-menu .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}
header .mobile-menu .menu-item {
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  header .mobile-menu .menu-item {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
header .mobile-menu .menu-item a {
  color: #000000;
  text-decoration: none;
}
header .mobile-menu .menu-item .sub-menu {
  display: none;
}
header .mobile-menu .chilli {
  width: 400px;
  margin: 50px auto 0;
}
@media screen and (max-width: 600px) {
  header .mobile-menu .chilli {
    width: 300px;
  }
}
@media screen and (max-height: 750px) {
  header .mobile-menu .chilli {
    display: none;
  }
}
header .shape {
  position: absolute;
  top: -45px;
  right: -19px;
  width: 300px;
  height: auto;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1300px) {
  header .shape {
    width: 250px;
  }
}
@media screen and (max-width: 1200px) {
  header .shape {
    width: 150px;
    top: calc(100% - 20px);
  }
}

body.menu-open header .shape {
  opacity: 0;
}

footer {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  footer {
    padding: 80px 0;
  }
}
footer .container {
  position: relative;
  z-index: 6;
}
footer .title {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: 1.08px;
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  footer .column {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
    order: 1;
  }
}
footer #col-1 .text-container {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.6px;
}
footer #col-1 .text-container p {
  margin-bottom: 10px;
}
footer #col-1 .text-container p a {
  position: relative;
}
footer #col-1 .text-container p a:after {
  height: 1px;
  background-color: #FFFFFF;
  width: 0;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
footer #col-1 .text-container p a:hover {
  text-decoration: none;
}
footer #col-1 .text-container p a:hover:after {
  width: 100%;
}
footer .column .links a {
  display: inline-block;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.6px;
  position: relative;
  margin-bottom: 5px;
}
footer .column .links a:after {
  height: 1px;
  background-color: #FFFFFF;
  width: 0;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
footer .column .links a:hover {
  text-decoration: none;
}
footer .column .links a:hover:after {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  footer #col-4 {
    width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 800px) {
  footer #col-4 {
    margin: 0 !important;
    order: 0;
    margin-bottom: 50px !important;
  }
  footer #col-4 .title {
    display: none;
  }
}
footer #col-4 .socials {
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 800px) {
  footer #col-4 .socials {
    justify-content: center;
  }
}
footer #col-4 .socials .icon {
  position: relative;
  width: 64px;
  height: auto;
  margin-right: 18px;
}
@media screen and (max-width: 800px) {
  footer #col-4 .socials .icon {
    margin: 0 9px;
  }
}
footer #col-4 .socials .icon svg path,
footer #col-4 .socials .icon svg circle {
  transition: all 0.3s ease-in-out;
}
footer #col-4 .socials .icon:hover svg circle {
  fill: #DA0041;
}
footer #col-4 .socials .icon:hover svg path {
  fill: #FFFFFF;
}
footer .footer-bottom {
  width: 100%;
  margin-top: 150px;
  font-size: 20px;
  line-height: 1.5;
  order: 5;
}
@media screen and (max-width: 800px) {
  footer .footer-bottom {
    margin-top: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .footer-bottom p {
    text-align: center;
    margin-bottom: 30px;
  }
  footer .footer-bottom p:last-of-type {
    margin-bottom: 0;
  }
}
footer .bg-shape {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  opacity: 0.1;
  width: 1440px;
}
@media screen and (max-width: 800px) {
  footer .bg-shape {
    display: none;
  }
}
footer .bg-shape-mobile {
  display: none;
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}
@media screen and (max-width: 800px) {
  footer .bg-shape-mobile {
    display: block;
  }
}

/*=======================================
            Instagram Feed
========================================*/
.instagram {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) {
  .instagram {
    padding: 70px 0;
  }
}
@media screen and (max-width: 600px) {
  .instagram {
    padding: 50px 0 100px;
  }
}
.instagram .contents {
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .instagram .contents {
    justify-content: center;
  }
}
.instagram .meta {
  text-align: center;
  width: 200px;
}
@media screen and (max-width: 1200px) {
  .instagram .meta {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .instagram .meta {
    margin-bottom: 30px;
  }
}
.instagram .meta svg {
  display: inline-block;
  width: 56px;
  height: auto;
  margin-bottom: 10px;
}
.instagram .meta p,
.instagram .meta a {
  font-size: 36px;
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (max-width: 600px) {
  .instagram .meta p,
  .instagram .meta a {
    font-size: 32px;
  }
}
.instagram .images {
  width: calc(100% - 200px);
  padding-left: 60px;
  margin: 0 -7px;
}
@media screen and (max-width: 1500px) {
  .instagram .images {
    padding-left: 23px;
  }
}
@media screen and (max-width: 1200px) {
  .instagram .images {
    width: 100%;
    padding-left: 0;
  }
}
.instagram .images #sb_instagram svg {
  width: auto;
}

/*=======================================
            Back To Top
========================================*/
.back-to-top {
  position: fixed;
  z-index: 999;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: auto;
  cursor: pointer;
  display: none;
}

/*=======================================
            Backgrounds
========================================*/
.home .page-wrap {
  position: relative;
  overflow: hidden;
  background-color: #00ACBD;
}
.home .page-wrap .bg-element {
  position: absolute;
  z-index: 1;
}
.home .page-wrap #daisy {
  top: 400px;
  right: -150px;
  width: 1170px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .home .page-wrap #daisy {
    top: 500px;
  }
}
@media screen and (max-width: 800px) {
  .home .page-wrap #daisy {
    right: -700px;
    top: 300px;
    width: 1400px;
  }
}
@media screen and (max-width: 500px) {
  .home .page-wrap #daisy {
    right: -560px;
    width: 1100px;
  }
}
.home .page-wrap #branch {
  opacity: 0.1;
  width: 1100px;
  height: auto;
  right: 70px;
  top: 1800px;
}
@media screen and (min-width: 1900px) {
  .home .page-wrap #branch {
    width: 1400px;
  }
}
@media screen and (min-width: 1600px) {
  .home .page-wrap #branch {
    top: 2000px;
  }
}
@media screen and (max-width: 1400px) {
  .home .page-wrap #branch {
    top: 1600px;
  }
}
@media screen and (max-width: 1200px) {
  .home .page-wrap #branch {
    top: 2400px;
  }
}
@media screen and (max-width: 1000px) {
  .home .page-wrap #branch {
    top: 2200px;
  }
}
@media screen and (max-width: 800px) {
  .home .page-wrap #branch {
    top: 1400px;
  }
}
@media screen and (max-width: 700px) {
  .home .page-wrap #branch {
    top: 1400px;
    right: -50px;
  }
}
@media screen and (max-width: 500px) {
  .home .page-wrap #branch {
    top: 1000px;
    right: -100px;
    width: 1300px;
  }
}
.home .page-wrap #seed {
  opacity: 0.1;
  bottom: 100px;
  left: 0;
  width: 820px;
}
@media screen and (min-width: 1600px) {
  .home .page-wrap #seed {
    width: 1500px;
    bottom: -800px;
  }
}
@media screen and (max-width: 1300px) {
  .home .page-wrap #seed {
    width: 650px;
  }
}
@media screen and (max-width: 1200px) {
  .home .page-wrap #seed {
    bottom: 1000px;
  }
}
@media screen and (max-width: 500px) {
  .home .page-wrap #seed {
    bottom: 800px;
  }
}
.home .page-wrap section {
  position: relative;
  z-index: 2;
}

/*=======================================
            Home Banner
========================================*/
.home-banner {
  padding: 35px 0;
}
@media screen and (max-width: 700px) {
  .home-banner {
    padding: 15px 0 0 0;
  }
}
.home-banner .container {
  padding-right: 0;
  width: 100%;
  padding-left: calc((100vw - 1440px) / 2 + 30px);
}
@media screen and (min-width: 1920px) {
  .home-banner .container {
    width: 1920px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 1500px) {
  .home-banner .container {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .home-banner .container {
    padding-left: 0;
  }
}
.home-banner .contents {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .home-banner .contents {
    flex-direction: column-reverse;
  }
}
.home-banner .left {
  width: 470px;
  padding: 0 20px 0 0;
}
@media screen and (max-width: 1200px) {
  .home-banner .left {
    width: 100%;
    padding: 30px;
  }
}
@media screen and (max-width: 450px) {
  .home-banner .left {
    padding: 30px 15px;
  }
}
.home-banner .left h1 {
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media screen and (max-width: 1300px) {
  .home-banner .left h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 700px) {
  .home-banner .left h1 {
    font-size: 52px;
    text-align: center;
  }
}
.home-banner .left .subtitle {
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .home-banner .left .subtitle {
    text-align: center;
  }
}
.home-banner .left .buttons {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 700px) {
  .home-banner .left .buttons {
    justify-content: center;
  }
}
.home-banner .left .buttons .button {
  margin-right: 20px;
}
@media screen and (max-width: 700px) {
  .home-banner .left .buttons .button {
    margin: 0 10px 20px;
  }
}
.home-banner .right {
  width: calc(100% - 470px);
}
@media screen and (max-width: 1200px) {
  .home-banner .right {
    width: 100%;
  }
}
.home-banner .right .carousel {
  margin-bottom: 0 !important;
}
.home-banner .right .slick-dots {
  bottom: 10px;
}
.home-banner .right .slick-dots li {
  width: 20px;
  height: 15px;
  margin: 0 3px;
  transition: width 0.3s ease-in-out;
}
@media screen and (max-width: 700px) {
  .home-banner .right .slick-dots li {
    width: 9px;
    height: 9px;
    margin: 0 2px;
  }
}
.home-banner .right .slick-dots li button {
  width: 100%;
  height: 100%;
}
.home-banner .right .slick-dots li button:before {
  content: "";
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  border-radius: 8px;
}
.home-banner .right .slick-dots li.slick-active {
  width: 40px;
}
@media screen and (max-width: 700px) {
  .home-banner .right .slick-dots li.slick-active {
    width: 18px;
    height: 9px;
  }
}
.home-banner .right .slick-dots li.slick-active button:before {
  content: "";
  opacity: 1;
}

/*=======================================
                Intro
========================================*/
.home-intro {
  padding: 0 0 50px 0;
}
.home-intro .contents {
  align-items: center;
}
@media screen and (max-width: 800px) {
  .home-intro .contents {
    flex-direction: column;
  }
}
.home-intro .pom {
  width: 42%;
}
@media screen and (max-width: 1200px) {
  .home-intro .pom {
    width: 30%;
  }
}
@media screen and (max-width: 800px) {
  .home-intro .pom {
    width: 450px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .home-intro .pom {
    width: 100%;
  }
}
.home-intro .pom svg {
  position: relative;
  width: 680px;
  left: -250px;
  top: -70px;
}
@media screen and (max-width: 1200px) {
  .home-intro .pom svg {
    width: 450px;
    top: 0;
    left: -160px;
  }
}
@media screen and (max-width: 1000px) {
  .home-intro .pom svg {
    left: -200px;
  }
}
@media screen and (max-width: 800px) {
  .home-intro .pom svg {
    position: static;
    width: 100%;
  }
}
.home-intro .content {
  width: 58%;
  position: relative;
  top: -65px;
}
@media screen and (max-width: 1200px) {
  .home-intro .content {
    width: 70%;
    top: 0;
    padding-left: 30px;
  }
}
@media screen and (max-width: 800px) {
  .home-intro .content {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .home-intro .content {
    text-align: center;
  }
}
.home-intro .content .text-container {
  color: #000000;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 1.26px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .home-intro .content .text-container {
    font-size: 35px;
  }
}
@media screen and (max-width: 600px) {
  .home-intro .content .text-container {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.96px;
  }
}

/*=======================================
                Products
========================================*/
.home-products {
  margin-top: -100px;
  position: relative;
  z-index: 6 !important;
}
@media screen and (max-width: 1200px) {
  .home-products {
    margin-top: 100px;
  }
}
.home-products .container {
  width: 100%;
  padding: 0;
}
.home-products .orange {
  display: none;
  width: 250px;
  height: auto;
  position: absolute;
  left: -50px;
  top: -70px;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .home-products .orange {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .home-products .orange {
    width: 210px;
    top: -90px;
    left: -35px;
  }
}
.home-products h2 {
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 30px;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 1300px) {
  .home-products h2 {
    font-size: 70px;
  }
}
@media screen and (max-width: 1000px) {
  .home-products h2 {
    font-size: 60px;
  }
}
@media screen and (max-width: 600px) {
  .home-products h2 {
    font-size: 52px;
    padding: 0 15px;
  }
}
.home-products .carousel-wrap {
  position: relative;
  z-index: 6;
}
.home-products .carousel-wrap .slick-list {
  padding: 0 150px;
}
@media screen and (max-width: 1200px) {
  .home-products .carousel-wrap .slick-list {
    padding: 0 120px;
  }
}
@media screen and (max-width: 1000px) {
  .home-products .carousel-wrap .slick-list {
    padding: 0 110px;
  }
}
@media screen and (max-width: 600px) {
  .home-products .carousel-wrap .slick-list {
    padding: 0 30px;
  }
}
.home-products .carousel-wrap .slick-track {
  display: flex !important;
  padding: 30px 0;
}
.home-products .carousel-wrap .card {
  height: inherit !important;
  display: flex;
  flex-direction: column;
  margin: 0 8px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.home-products .carousel-wrap .card .image {
  transition: border-width 0.3s ease-in-out;
  border: 0px solid #DA0041;
  background-color: #FFFFFF;
  padding: 30px;
}
.home-products .carousel-wrap .card .info {
  padding: 20px 25px;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.2;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .home-products .carousel-wrap .card .info {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .home-products .carousel-wrap .card .info {
    font-size: 24px;
  }
}
.home-products .carousel-wrap .card .overlay {
  position: absolute;
  inset: 0;
  z-index: 9;
  background-color: #000000;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.home-products .carousel-wrap .card .cover {
  z-index: 10;
  pointer-events: none;
}
.home-products .carousel-wrap .card.slick-active:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.home-products .carousel-wrap .card.slick-active:hover .image {
  border-width: 15px;
}
.home-products .carousel-wrap .card.slick-active .overlay {
  opacity: 0;
}
.home-products .carousel-wrap .card.slick-active .cover {
  pointer-events: all;
}
.home-products .carousel-wrap .arrows .arrow {
  width: 50px;
  height: auto;
  cursor: pointer;
  top: calc(50% - 50px);
  position: absolute;
}
.home-products .carousel-wrap .arrows .arrow.prev {
  left: 30px;
}
.home-products .carousel-wrap .arrows .arrow.next {
  right: 30px;
  transform: rotate(180deg);
}
.home-products .carousel-wrap .arrows .arrow svg path {
  transition: all 0.3s ease-in-out;
}
.home-products .carousel-wrap .arrows .arrow:hover svg path {
  fill: #DA0041;
}
@media screen and (max-width: 1500px) {
  .home-products .carousel-wrap .arrows .arrow {
    width: 40px;
    top: calc(50% - 35px);
  }
}
@media screen and (max-width: 1000px) {
  .home-products .carousel-wrap .arrows .arrow {
    width: 30px;
  }
}
@media screen and (max-width: 600px) {
  .home-products .carousel-wrap .arrows .arrow {
    display: none !important;
  }
}
.home-products .link {
  margin-top: 60px;
  text-align: center;
}

/*=======================================
            Home Recipes
========================================*/
.home-recipes {
  padding-top: 150px;
}
@media screen and (max-width: 700px) {
  .home-recipes {
    padding-top: 120px;
  }
}
.home-recipes .container {
  padding-left: 0;
  width: 100%;
  position: relative;
  padding-right: calc((100vw - 1440px) / 2 + 30px);
}
@media screen and (min-width: 1920px) {
  .home-recipes .container {
    width: 1920px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 1500px) {
  .home-recipes .container {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .home-recipes .container {
    padding-right: 0;
  }
}
.home-recipes .lime {
  position: absolute;
  width: 544px;
  height: auto;
  top: -200px;
  right: -155px;
  z-index: 5;
}
@media screen and (max-width: 700px) {
  .home-recipes .lime {
    width: 350px;
    right: -130px;
    top: -150px;
  }
}
.home-recipes .contents {
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 1200px) {
  .home-recipes .contents {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.home-recipes .left {
  width: calc(100% - 465px);
}
@media screen and (max-width: 1200px) {
  .home-recipes .left {
    width: 100%;
  }
}
.home-recipes .left .carousel {
  margin-bottom: 0 !important;
}
.home-recipes .left .slick-dots {
  bottom: 10px;
}
.home-recipes .left .slick-dots li {
  width: 20px;
  height: 15px;
  margin: 0 3px;
  transition: width 0.3s ease-in-out;
}
@media screen and (max-width: 700px) {
  .home-recipes .left .slick-dots li {
    width: 9px;
    height: 9px;
    margin: 0 2px;
  }
}
.home-recipes .left .slick-dots li:only-child {
  display: none;
}
.home-recipes .left .slick-dots li button {
  width: 100%;
  height: 100%;
}
.home-recipes .left .slick-dots li button:before {
  content: "";
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  border-radius: 8px;
}
.home-recipes .left .slick-dots li.slick-active {
  width: 40px;
}
@media screen and (max-width: 700px) {
  .home-recipes .left .slick-dots li.slick-active {
    width: 18px;
    height: 9px;
  }
}
.home-recipes .left .slick-dots li.slick-active button:before {
  content: "";
  opacity: 1;
}
.home-recipes .right {
  width: 465px;
  padding: 0 0 0 25px;
}
@media screen and (max-width: 1200px) {
  .home-recipes .right {
    width: 100%;
    max-width: 80%;
    padding: 0 30px 50px;
  }
}
@media screen and (max-width: 700px) {
  .home-recipes .right {
    max-width: 100%;
  }
}
.home-recipes .right h2 {
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media screen and (max-width: 1300px) {
  .home-recipes .right h2 {
    font-size: 70px;
  }
}
@media screen and (max-width: 700px) {
  .home-recipes .right h2 {
    font-size: 52px;
    text-align: center;
  }
}
.home-recipes .right .subtitle {
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .home-recipes .right .subtitle {
    max-width: 500px;
  }
}
@media screen and (max-width: 700px) {
  .home-recipes .right .subtitle {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.2;
  }
}
.home-recipes .right .link {
  margin-top: 40px;
}
@media screen and (max-width: 700px) {
  .home-recipes .right .link {
    text-align: center;
  }
}

/*=======================================
                Trade
========================================*/
.home-trade {
  padding: 250px 0 280px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .home-trade {
    padding: 130px 0;
  }
}
.home-trade .contents {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.home-trade .lime-slice {
  position: absolute;
  top: -150px;
  left: -175px;
  width: 466px;
  height: auto;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .home-trade .lime-slice {
    width: 320px;
    top: -105px;
    left: -105px;
  }
}
.home-trade .card {
  position: relative;
  z-index: 6;
  align-items: unset;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .home-trade .card {
    flex-direction: column-reverse;
  }
}
.home-trade .card .left {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .home-trade .card .left {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.home-trade .card .right {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .home-trade .card .right {
    width: 100%;
    aspect-ratio: 1/1;
    align-items: center;
    padding: 30px 50px;
  }
  .home-trade .card .right .inner {
    text-align: center;
  }
}
.home-trade .card .right h2 {
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 50px;
  max-width: 480px;
}
@media screen and (max-width: 1300px) {
  .home-trade .card .right h2 {
    font-size: 70px;
  }
}
@media screen and (max-width: 800px) {
  .home-trade .card .right h2 {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .home-trade .card .right h2 {
    font-size: 52px;
    margin-bottom: 30px;
  }
}
.home-trade .chilli-slice {
  position: absolute;
  bottom: -235px;
  right: -245px;
  width: 517px;
  height: auto;
  z-index: 7;
}
.home-trade .chilli-slice svg {
  transform: rotate(21.5deg);
}
@media screen and (max-width: 800px) {
  .home-trade .chilli-slice {
    width: 234px;
    bottom: -98px;
    right: -75px;
  }
}

/*=======================================
            Backgrounds
========================================*/
.page-template-template-products .page-wrap {
  position: relative;
  overflow: hidden;
  background-color: #00ACBD;
}
.page-template-template-products .page-wrap .bg-element {
  position: absolute;
  z-index: 1;
}
.page-template-template-products .page-wrap #daisy {
  top: 400px;
  right: -150px;
  width: 1170px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .page-template-template-products .page-wrap #daisy {
    top: 500px;
  }
}
@media screen and (max-width: 800px) {
  .page-template-template-products .page-wrap #daisy {
    right: -700px;
    top: 300px;
    width: 1400px;
  }
}
@media screen and (max-width: 500px) {
  .page-template-template-products .page-wrap #daisy {
    right: -560px;
    width: 1100px;
  }
}
.page-template-template-products .page-wrap #seed {
  opacity: 0.1;
  bottom: -600px;
  left: 0;
  width: 850px;
}
@media screen and (min-width: 1600px) {
  .page-template-template-products .page-wrap #seed {
    width: 1000px;
    bottom: -700px;
  }
}
@media screen and (max-width: 1000px) {
  .page-template-template-products .page-wrap #seed {
    width: 700px;
    bottom: -500px;
  }
}
@media screen and (max-width: 800px) {
  .page-template-template-products .page-wrap #seed {
    width: 1000px;
    bottom: -400px;
  }
}
@media screen and (max-width: 450px) {
  .page-template-template-products .page-wrap #seed {
    bottom: -800px;
  }
}
.page-template-template-products .page-wrap section {
  position: relative;
  z-index: 2;
}

/*=======================================
            Page Banner
========================================*/
.page-banner {
  padding: 35px 0;
  position: relative;
  z-index: 10 !important;
}
@media screen and (max-width: 700px) {
  .page-banner {
    padding: 15px 0 0 0;
  }
}
.page-banner .container {
  padding-right: 0;
  width: 100%;
  padding-left: calc((100vw - 1440px) / 2 + 30px);
}
@media screen and (min-width: 1920px) {
  .page-banner .container {
    width: 1920px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 1500px) {
  .page-banner .container {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .page-banner .container {
    padding-left: 0;
  }
}
.page-banner .contents {
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .page-banner .contents {
    flex-direction: column-reverse;
  }
}
.page-banner .left {
  width: 470px;
  padding: 30px 20px 0 0;
}
@media screen and (max-width: 1200px) {
  .page-banner .left {
    width: 100%;
    padding: 30px;
  }
}
@media screen and (max-width: 700px) {
  .page-banner .left {
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .page-banner .left {
    padding: 30px 15px;
  }
}
.page-banner .left .breadcrumb {
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 1.2;
}
@media screen and (max-width: 700px) {
  .page-banner .left .breadcrumb {
    text-align: center;
    margin-bottom: 25px;
  }
}
.page-banner .left .breadcrumb .separator {
  display: inline-block;
  margin: 0 8px;
  font-size: 0px;
}
.page-banner .left .breadcrumb .separator:before {
  content: "";
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 7px;
  height: 10px;
}
.page-banner .left .breadcrumb a {
  color: #F6EDE2;
}
.page-banner .left h1 {
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media screen and (max-width: 1200px) {
  .page-banner .left h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 700px) {
  .page-banner .left h1 {
    font-size: 52px;
    text-align: center;
  }
}
.page-banner .left .subtitle {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .page-banner .left .subtitle {
    max-width: 60%;
  }
}
@media screen and (max-width: 700px) {
  .page-banner .left .subtitle {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 30px;
  }
}
.page-banner .right {
  width: calc(100% - 470px);
}
@media screen and (max-width: 1200px) {
  .page-banner .right {
    width: 100%;
  }
}
.page-banner .right .carousel {
  margin-bottom: 0 !important;
}
.page-banner .right .slick-dots {
  bottom: 10px;
}
.page-banner .right .slick-dots li {
  width: 20px;
  height: 15px;
  margin: 0 3px;
  transition: width 0.3s ease-in-out;
}
@media screen and (max-width: 700px) {
  .page-banner .right .slick-dots li {
    width: 9px;
    height: 9px;
    margin: 0 2px;
  }
}
.page-banner .right .slick-dots li button {
  width: 100%;
  height: 100%;
}
.page-banner .right .slick-dots li button:before {
  content: "";
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  border-radius: 8px;
}
.page-banner .right .slick-dots li.slick-active {
  width: 40px;
}
@media screen and (max-width: 700px) {
  .page-banner .right .slick-dots li.slick-active {
    width: 18px;
    height: 9px;
  }
}
.page-banner .right .slick-dots li.slick-active button:before {
  content: "";
  opacity: 1;
}

/*=======================================
            Products Grid
========================================*/
.products-grid {
  padding: 40px 0 200px;
}
@media screen and (max-width: 800px) {
  .products-grid {
    padding: 0 0 100px;
  }
}
.products-grid .pom {
  position: absolute;
  z-index: 5;
  width: 500px;
  height: auto;
  left: -200px;
  top: -100px;
}
@media screen and (max-width: 1200px) {
  .products-grid .pom {
    width: 400px;
    right: -100px;
    left: auto;
    top: -275px;
  }
}
@media screen and (max-width: 800px) {
  .products-grid .pom {
    top: -330px;
  }
}
@media screen and (max-width: 700px) {
  .products-grid .pom {
    width: 200px;
    position: static;
    margin: 0 auto 30px;
  }
}
.products-grid .content {
  position: relative;
  z-index: 7;
}
.products-grid h2 {
  text-align: center;
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .products-grid h2 {
    font-size: 44px;
    margin-bottom: 30px;
  }
}
.products-grid h2:before, .products-grid h2:after {
  content: "...";
  font-family: moret, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 80px;
  line-height: 20px;
  color: #DA0041;
  display: inline-block;
  position: relative;
  top: -10px;
}
@media screen and (max-width: 600px) {
  .products-grid h2:before, .products-grid h2:after {
    font-size: 50px;
    top: -11px;
  }
}
@media screen and (max-width: 450px) {
  .products-grid h2:before, .products-grid h2:after {
    display: none;
  }
}
.products-grid h2:before {
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .products-grid h2:before {
    margin-right: 15px;
  }
}
.products-grid h2:after {
  margin-left: 20px;
}
@media screen and (max-width: 600px) {
  .products-grid h2:after {
    margin-left: 15px;
  }
}
.products-grid #filters {
  justify-content: center;
  align-content: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 600px) {
  .products-grid #filters {
    justify-content: space-between;
  }
}
.products-grid #filters .category {
  margin: 0 10px 20px;
  padding: 15px;
}
.products-grid #filters .category.active {
  background-color: #DA0041;
  color: #FFFFFF;
}
@media screen and (max-width: 600px) {
  .products-grid #filters .category {
    width: calc(50% - 5px);
    margin: 0 0 10px;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .products-grid #filters .category {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .products-grid #filters .category {
    display: none;
  }
}
.products-grid #filters .mobile-filter {
  display: none;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .products-grid #filters .mobile-filter {
    display: block;
  }
}
.products-grid #filters .mobile-filter .nice-select {
  width: 100%;
  border-bottom: none;
  background-color: #FFFFFF;
}
.products-grid .grid {
  justify-content: flex-start;
  align-items: unset;
  position: relative;
  z-index: 6;
  margin: 0 -20px;
}
@media screen and (max-width: 1200px) {
  .products-grid .grid {
    margin: 0 -10px;
  }
}
.products-grid .grid .card {
  width: calc(33.3333333333% - 40px);
  display: flex;
  flex-direction: column;
  margin: 0 20px 65px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .products-grid .grid .card {
    margin: 0 10px 30px;
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 900px) {
  .products-grid .grid .card {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .products-grid .grid .card {
    width: calc(100% - 20px);
  }
}
.products-grid .grid .card.hidden {
  display: none;
}
.products-grid .grid .card .image {
  transition: border-width 0.3s ease-in-out;
  border: 0px solid #DA0041;
  background-color: #FFFFFF;
  padding: 30px;
}
.products-grid .grid .card .info {
  padding: 20px 25px;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.2;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .products-grid .grid .card .info {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .products-grid .grid .card .info {
    font-size: 24px;
  }
}
.products-grid .grid .card .cover {
  z-index: 10;
}
.products-grid .grid .card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.products-grid .grid .card:hover .image {
  border-width: 15px;
}

/*=======================================
        Single Product - Backgrounds
========================================*/
.single-product .page-wrap {
  position: relative;
  overflow: hidden;
  background-color: #00ACBD;
}
.single-product .page-wrap .bg-element {
  position: absolute;
  z-index: 1;
}
.single-product .page-wrap #daisy {
  top: 400px;
  right: -150px;
  width: 1170px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .single-product .page-wrap #daisy {
    top: 500px;
  }
}
@media screen and (max-width: 1000px) {
  .single-product .page-wrap #daisy {
    width: 140vw;
    top: 0;
    right: -20vw;
  }
}

/*=======================================
        Single Product - Main
========================================*/
.single-product .product-main {
  padding-bottom: 150px;
}
@media screen and (max-width: 700px) {
  .single-product .product-main {
    padding-bottom: 100px;
  }
}
.single-product .product-main .breadcrumb {
  padding: 20px 0;
  font-size: 18px;
  line-height: 1.2;
}
@media screen and (max-width: 700px) {
  .single-product .product-main .breadcrumb {
    padding-right: 140px;
  }
}
.single-product .product-main .breadcrumb .separator {
  display: inline-block;
  margin: 0 8px;
  font-size: 0px;
}
.single-product .product-main .breadcrumb .separator:before {
  content: "";
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 7px;
  height: 10px;
}
.single-product .product-main .breadcrumb a {
  color: #000000;
}
.single-product .product-main .main {
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
.single-product .product-main .main .gallery {
  width: 50%;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 1000px) {
  .single-product .product-main .main .gallery {
    width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 700px) {
  .single-product .product-main .main .gallery {
    width: 100%;
  }
}
.single-product .product-main .main .gallery.no-gallery .thumbs-wrap {
  display: none;
}
.single-product .product-main .main .gallery .gallery-wrap {
  border: 3px solid #F6EDE2;
}
.single-product .product-main .main .gallery .gallery-wrap .slide.add-padding img {
  padding: 30px;
}
.single-product .product-main .main .gallery .thumbs-wrap {
  position: relative;
}
.single-product .product-main .main .gallery .thumbs-wrap .arrows {
  height: 100%;
}
.single-product .product-main .main .gallery .thumbs-wrap .arrows .arrow {
  height: calc(100% - 3px);
  width: 59px;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 3px;
  left: 0;
  cursor: pointer;
}
.single-product .product-main .main .gallery .thumbs-wrap .arrows .arrow.next {
  left: auto;
  right: 0;
}
.single-product .product-main .main .gallery .thumbs-wrap .arrows .arrow.next svg {
  transform: rotate(180deg);
}
.single-product .product-main .main .gallery .thumbs-wrap .arrows .arrow svg {
  width: 20px;
  height: auto;
}
.single-product .product-main .main .gallery .thumbs-wrap .arrows .arrow svg path {
  transition: all 0.3s ease-in-out;
}
.single-product .product-main .main .gallery .thumbs-wrap .arrows .arrow:hover svg path {
  fill: #DA0041;
}
.single-product .product-main .main .gallery .gallery-thumbs .slick-list {
  padding: 0 60px !important;
  border-top: 3px solid #F6EDE2;
}
.single-product .product-main .main .gallery .gallery-thumbs .slick-list .slick-slide {
  border-left: 1px solid #F6EDE2;
  border-right: 1px solid #F6EDE2;
}
.single-product .product-main .main .gallery .below-gallery {
  max-width: 440px;
  margin-top: 110px;
  padding-left: 40px;
}
@media screen and (max-width: 1000px) {
  .single-product .product-main .main .gallery .below-gallery {
    display: none;
  }
}
.single-product .product-main .main .gallery .below-gallery h2 {
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.single-product .product-main .main .info {
  width: 50%;
  margin-top: 50px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .single-product .product-main .main .info {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .single-product .product-main .main .info {
    width: 100vw;
    margin: 30px -30px 0;
  }
}
@media screen and (max-width: 450px) {
  .single-product .product-main .main .info {
    margin: 15px -15px 0;
  }
}
.single-product .product-main .main .info .info-wrap {
  position: relative;
  padding: 55px 40px 80px 50px;
}
@media screen and (max-width: 1000px) {
  .single-product .product-main .main .info .info-wrap {
    overflow: hidden;
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 700px) {
  .single-product .product-main .main .info .info-wrap {
    padding: 50px 30px 100px;
  }
}
@media screen and (max-width: 450px) {
  .single-product .product-main .main .info .info-wrap {
    padding: 30px 15px 100px;
  }
}
.single-product .product-main .main .info .bg-image {
  position: absolute;
  bottom: 0;
  left: -50px;
  width: calc(100% + 50px);
  height: auto;
  opacity: 0.1;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .single-product .product-main .main .info .bg-image {
    width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 600px) {
  .single-product .product-main .main .info .bg-image {
    width: 150%;
    left: -25%;
  }
}
.single-product .product-main .main .info .left-spacer {
  position: absolute;
  height: 100%;
  width: 50px;
  top: 0;
  left: -50px;
  background-color: #F3931B;
  z-index: 4;
}
@media screen and (max-width: 1000px) {
  .single-product .product-main .main .info .left-spacer {
    display: none;
  }
}
.single-product .product-main .main .info .inner {
  position: relative;
  z-index: 6;
}
.single-product .product-main .main .info h1 {
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media screen and (max-width: 1300px) {
  .single-product .product-main .main .info h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 600px) {
  .single-product .product-main .main .info h1 {
    font-size: 55px;
  }
}
.single-product .product-main .main .info .subtitle {
  font-size: 36px;
  line-height: 1.16;
  letter-spacing: 1.08px;
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .single-product .product-main .main .info .subtitle {
    font-size: 30px;
  }
}
.single-product .product-main .main .info .description {
  font-size: 24px;
  line-height: normal;
}
@media screen and (max-width: 600px) {
  .single-product .product-main .main .info .description {
    font-size: 20px;
  }
}
.single-product .product-main .main .info .accordion {
  margin-top: 50px;
}
.single-product .product-main .main .info .accordion .item {
  border-top: 1px solid #000000;
}
.single-product .product-main .main .info .accordion .item:last-of-type {
  border-bottom: 1px solid #000000;
}
.single-product .product-main .main .info .accordion .item .top {
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}
.single-product .product-main .main .info .accordion .item .top .title {
  font-size: 36px;
  line-height: 1.16;
  letter-spacing: 1.08px;
}
@media screen and (max-width: 600px) {
  .single-product .product-main .main .info .accordion .item .top .title {
    font-size: 30px;
  }
}
.single-product .product-main .main .info .accordion .item .top svg {
  width: 14px;
  height: auto;
  transform: rotate(-90deg);
  position: relative;
  right: 10px;
  transition: all 0.3s ease-in-out;
}
.single-product .product-main .main .info .accordion .item .top svg path {
  fill: #000000;
}
.single-product .product-main .main .info .accordion .item .main {
  display: none;
}
.single-product .product-main .main .info .accordion .item .main .text-container {
  font-size: 18px;
  line-height: 1.4;
}
.single-product .product-main .main .info .accordion .item.open .top svg {
  transform: rotate(90deg);
}
.single-product .product-main .main .info .accordion .logo-group {
  margin-bottom: 20px;
}
.single-product .product-main .main .info .accordion .logo-group .title {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 10px;
}
.single-product .product-main .main .info .accordion .item.where-to-buy .logos {
  margin-top: 20px;
  justify-content: flex-start;
  align-items: center;
  margin: 0 -10px;
}
.single-product .product-main .main .info .accordion .item.where-to-buy .logos .logo {
  width: calc(25% - 20px);
  aspect-ratio: 1/1;
  background-color: #F6EDE2;
  margin: 0 10px 20px 10px;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 600px) {
  .single-product .product-main .main .info .accordion .item.where-to-buy .logos .logo {
    width: calc(33.3333333333% - 20px);
  }
}
.single-product .product-main .main .info .accordion .item.where-to-buy .logos .logo img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
}
.single-product .product-main .main .info .slice {
  width: 293px;
  height: auto;
  position: absolute;
  pointer-events: none;
  z-index: 7;
  left: -130px;
  bottom: -120px;
  transform: rotate(-90deg);
}
@media screen and (max-width: 1000px) {
  .single-product .product-main .main .info .slice {
    width: 250px;
    left: -25px;
    bottom: -90px;
  }
}
@media screen and (max-width: 700px) {
  .single-product .product-main .main .info .slice {
    width: 180px;
    bottom: -64px;
    left: calc(50% - 90px);
    transform: rotate(-125deg);
  }
}
.single-product .product-main .main .info .slice svg path {
  fill: #DA0041;
}

/*=======================================
        Single Product - Recipes
========================================*/
.single-product .recipes {
  padding-bottom: 150px;
}
@media screen and (max-width: 1000px) {
  .single-product .recipes {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 700px) {
  .single-product .recipes {
    padding-bottom: 100px;
  }
}
.single-product .recipes .container {
  padding-left: 0;
  width: 100%;
  padding-right: calc((100vw - 1440px) / 2 + 30px);
}
@media screen and (min-width: 1920px) {
  .single-product .recipes .container {
    width: 1920px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 1500px) {
  .single-product .recipes .container {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .single-product .recipes .container {
    padding-right: 0;
  }
}
.single-product .recipes .carousel-wrap {
  position: relative;
}
.single-product .recipes .slide .inner {
  align-items: unset;
}
.single-product .recipes .slide .image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-grow: 1;
  width: calc(100% - 725px);
}
@media screen and (max-width: 1200px) {
  .single-product .recipes .slide .image {
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .single-product .recipes .slide .image {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.single-product .recipes .slide .info {
  width: 725px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 0 150px 50px;
}
@media screen and (max-width: 1200px) {
  .single-product .recipes .slide .info {
    width: 50%;
    padding: 30px 20px 100px 50px;
  }
}
@media screen and (max-width: 1000px) {
  .single-product .recipes .slide .info {
    width: 100%;
    padding: 30px;
  }
}
.single-product .recipes .slide .info .big-title {
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 65px;
}
@media screen and (max-width: 1200px) {
  .single-product .recipes .slide .info .big-title {
    font-size: 55px;
    margin-bottom: 30px;
  }
}
.single-product .recipes .slide .info h3 {
  font-size: 36px;
  line-height: 1.16;
  letter-spacing: 1.08px;
  margin-bottom: 20px;
}
.single-product .recipes .slide .info .subtitle {
  font-size: 24px;
  line-height: normal;
  margin-bottom: 25px;
}
.single-product .recipes .arrows {
  width: 675px;
  position: absolute;
  right: 0;
  bottom: 20px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .single-product .recipes .arrows {
    width: calc(50% - 70px);
    right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .single-product .recipes .arrows {
    width: 350px;
    bottom: 28px;
    right: 30px;
  }
}
@media screen and (max-width: 700px) {
  .single-product .recipes .arrows {
    width: 100%;
    bottom: -50px;
    right: 0;
    left: 0;
    padding: 0 30px;
  }
}
.single-product .recipes .arrows .arrow {
  width: 48px;
  height: auto;
  cursor: pointer;
}
.single-product .recipes .arrows .arrow.next {
  transform: rotate(180deg);
}
.single-product .recipes .slick-dots {
  width: 675px;
  bottom: 37px;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .single-product .recipes .slick-dots {
    width: calc(50% - 70px);
    right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .single-product .recipes .slick-dots {
    width: 350px;
    bottom: 45px;
    right: 30px;
  }
}
@media screen and (max-width: 700px) {
  .single-product .recipes .slick-dots {
    width: 100%;
    bottom: -34px;
    right: 0;
    left: 0;
  }
}
.single-product .recipes .slick-dots li {
  width: 20px;
  height: 15px;
  margin: 0 3px;
  transition: width 0.3s ease-in-out;
}
.single-product .recipes .slick-dots li button {
  width: 100%;
  height: 100%;
}
.single-product .recipes .slick-dots li button:before {
  content: "";
  background-color: #000000;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  border-radius: 8px;
}
.single-product .recipes .slick-dots li.slick-active {
  width: 40px;
}
.single-product .recipes .slick-dots li.slick-active button:before {
  content: "";
  opacity: 1;
}

/*=======================================
            Retailers Popup
========================================*/
.retailers-popup {
  position: fixed !important;
  z-index: 999 !important;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
.retailers-popup .container,
.retailers-popup .contents {
  height: 100%;
}
.retailers-popup .contents {
  justify-content: center;
  align-items: center;
}
.retailers-popup .contents .card {
  width: 1024px;
  padding: 100px;
  position: relative;
}
@media screen and (max-height: 800px) {
  .retailers-popup .contents .card {
    height: calc(100% - 60px);
    overflow-y: auto;
  }
}
@media screen and (max-width: 1000px) {
  .retailers-popup .contents .card {
    padding: 100px 35px;
  }
}
@media screen and (max-width: 600px) {
  .retailers-popup .contents .card {
    padding: 70px 35px 50px;
  }
}
.retailers-popup .contents .card .close {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 35px;
  right: 35px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .retailers-popup .contents .card .close {
    width: 35px;
    height: auto;
    top: 20px;
    right: 20px;
  }
}
.retailers-popup .contents .card .title-dots {
  text-align: center;
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .retailers-popup .contents .card .title-dots {
    font-size: 44px;
  }
}
.retailers-popup .contents .card .title-dots:before, .retailers-popup .contents .card .title-dots:after {
  content: "...";
  font-family: moret, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 80px;
  line-height: 20px;
  color: #00ACBD;
  display: inline-block;
  position: relative;
  top: -13px;
}
@media screen and (max-width: 1000px) {
  .retailers-popup .contents .card .title-dots:before, .retailers-popup .contents .card .title-dots:after {
    font-size: 50px;
    top: -15px;
  }
}
.retailers-popup .contents .card .title-dots:before {
  margin-right: 20px;
}
@media screen and (max-width: 800px) {
  .retailers-popup .contents .card .title-dots:before {
    display: none;
  }
}
.retailers-popup .contents .card .title-dots:after {
  margin-left: 20px;
}
@media screen and (max-width: 800px) {
  .retailers-popup .contents .card .title-dots:after {
    content: "......";
    display: block;
    margin: 15px 0 0 0;
  }
}
.retailers-popup .contents .card .title-dots.red:before, .retailers-popup .contents .card .title-dots.red:after {
  color: #DA0041;
}
.retailers-popup .contents .card .logos {
  justify-content: center;
  align-items: center;
  margin: 0 -10px;
}
.retailers-popup .contents .card .logos .logo {
  width: calc(20% - 20px);
  aspect-ratio: 1/1;
  background-color: #F6EDE2;
  margin: 0 10px 20px 10px;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 100%;
}
@media screen and (max-width: 800px) {
  .retailers-popup .contents .card .logos .logo {
    width: calc(25% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .retailers-popup .contents .card .logos .logo {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 450px) {
  .retailers-popup .contents .card .logos .logo {
    width: calc(33.3333333333% - 10px);
    margin: 0 5px 10px 5px;
  }
}
.retailers-popup .contents .card .logos .logo img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
}

/*=======================================
            Backgrounds
========================================*/
.page-template-template-recipes .page-wrap {
  position: relative;
  overflow: hidden;
  background-color: #00ACBD;
}
.page-template-template-recipes .page-wrap .bg-element {
  position: absolute;
  z-index: 1;
}
.page-template-template-recipes .page-wrap #daisy {
  top: 400px;
  right: -150px;
  width: 1170px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .page-template-template-recipes .page-wrap #daisy {
    top: 500px;
  }
}
@media screen and (max-width: 800px) {
  .page-template-template-recipes .page-wrap #daisy {
    right: -700px;
    top: 300px;
    width: 1400px;
  }
}
@media screen and (max-width: 500px) {
  .page-template-template-recipes .page-wrap #daisy {
    right: -560px;
    width: 1100px;
  }
}
.page-template-template-recipes .page-wrap #seed {
  opacity: 0.1;
  bottom: -600px;
  left: 0;
  width: 850px;
}
@media screen and (min-width: 1600px) {
  .page-template-template-recipes .page-wrap #seed {
    width: 1000px;
    bottom: -700px;
  }
}
@media screen and (max-width: 1000px) {
  .page-template-template-recipes .page-wrap #seed {
    width: 700px;
    bottom: -500px;
  }
}
@media screen and (max-width: 800px) {
  .page-template-template-recipes .page-wrap #seed {
    width: 1000px;
    bottom: -400px;
  }
}
@media screen and (max-width: 450px) {
  .page-template-template-recipes .page-wrap #seed {
    bottom: -800px;
  }
}
.page-template-template-recipes .page-wrap section {
  position: relative;
  z-index: 2;
}

/*=======================================
            Recipes Grid
========================================*/
.recipes-grid {
  padding: 40px 0 200px;
}
@media screen and (max-width: 800px) {
  .recipes-grid {
    padding: 0 0 100px;
  }
}
.recipes-grid .pom {
  position: absolute;
  z-index: 5;
  width: 500px;
  height: auto;
  left: -200px;
  top: -100px;
}
@media screen and (max-width: 1200px) {
  .recipes-grid .pom {
    width: 400px;
    right: -100px;
    left: auto;
    top: -275px;
  }
}
@media screen and (max-width: 800px) {
  .recipes-grid .pom {
    top: -330px;
  }
}
@media screen and (max-width: 700px) {
  .recipes-grid .pom {
    width: 200px;
    position: static;
    margin: 0 auto 30px;
  }
}
.recipes-grid .content {
  position: relative;
  z-index: 7;
}
.recipes-grid h2 {
  text-align: center;
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .recipes-grid h2 {
    font-size: 44px;
    margin-bottom: 30px;
  }
}
.recipes-grid h2:before, .recipes-grid h2:after {
  content: "...";
  font-family: moret, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 80px;
  line-height: 20px;
  color: #DA0041;
  display: inline-block;
  position: relative;
  top: -10px;
}
@media screen and (max-width: 600px) {
  .recipes-grid h2:before, .recipes-grid h2:after {
    font-size: 50px;
    top: -11px;
  }
}
@media screen and (max-width: 450px) {
  .recipes-grid h2:before, .recipes-grid h2:after {
    display: none;
  }
}
.recipes-grid h2:before {
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .recipes-grid h2:before {
    margin-right: 15px;
  }
}
.recipes-grid h2:after {
  margin-left: 20px;
}
@media screen and (max-width: 600px) {
  .recipes-grid h2:after {
    margin-left: 15px;
  }
}
.recipes-grid #filters {
  justify-content: center;
  align-content: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 600px) {
  .recipes-grid #filters {
    justify-content: space-between;
  }
}
.recipes-grid #filters .category {
  margin: 0 10px 20px;
  padding: 15px;
}
.recipes-grid #filters .category.active {
  background-color: #DA0041;
  color: #FFFFFF;
}
@media screen and (max-width: 600px) {
  .recipes-grid #filters .category {
    width: calc(50% - 5px);
    margin: 0 0 10px;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .recipes-grid #filters .category {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .recipes-grid #filters .category {
    display: none;
  }
}
.recipes-grid #filters .mobile-filter {
  display: none;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .recipes-grid #filters .mobile-filter {
    display: block;
  }
}
.recipes-grid #filters .mobile-filter .nice-select {
  width: 100%;
  border-bottom: none;
  background-color: #FFFFFF;
}
.recipes-grid .grid {
  justify-content: flex-start;
  align-items: unset;
  position: relative;
  z-index: 6;
  margin: 0 -20px;
}
@media screen and (max-width: 1200px) {
  .recipes-grid .grid {
    margin: 0 -10px;
  }
}
.recipes-grid .grid .card {
  width: calc(33.3333333333% - 40px);
  display: flex;
  flex-direction: column;
  margin: 0 20px 65px;
  position: relative;
  transition: all 0.3s ease-in-out;
  border: 10px solid #DA0041;
}
@media screen and (max-width: 1300px) {
  .recipes-grid .grid .card {
    margin: 0 10px 30px;
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 1200px) {
  .recipes-grid .grid .card {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 800px) {
  .recipes-grid .grid .card {
    width: calc(100% - 20px);
  }
}
.recipes-grid .grid .card.hidden {
  display: none;
}
.recipes-grid .grid .card .info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.recipes-grid .grid .card .info .title {
  height: 110px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.2;
  max-width: 325px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .recipes-grid .grid .card .info .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .recipes-grid .grid .card .info .title {
    height: auto;
    padding: 25px 0;
    font-size: 24px;
  }
}
.recipes-grid .grid .card .info .meta {
  width: 100%;
  padding: 40px 0 80px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .recipes-grid .grid .card .info .meta {
    padding: 40px 0;
  }
}
.recipes-grid .grid .card .info .meta .pattern {
  position: absolute;
  z-index: 9;
  opacity: 0.25;
  bottom: 0;
  right: 0;
}
.recipes-grid .grid .card .info .meta .inner {
  position: relative;
  z-index: 10;
}
.recipes-grid .grid .card .info .meta .icons {
  padding: 0 20px;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
}
.recipes-grid .grid .card .info .meta .icons .icon {
  justify-content: flex-start;
  align-items: center;
  margin: 0 10px 15px;
}
.recipes-grid .grid .card .info .meta .icons .icon .circle {
  width: 33px;
  height: 33px;
  border-radius: 100%;
  background-color: #DA0041;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
.recipes-grid .grid .card .info .meta .icons .icon .circle svg {
  height: 20px;
  width: auto;
  position: relative;
}
.recipes-grid .grid .card .info .meta .icons .icon .circle svg path {
  fill: #FFFFFF;
}
.recipes-grid .grid .card .info .meta .icons .icon .circle.clock svg {
  top: -1px;
}
.recipes-grid .grid .card .info .meta .icons .icon .circle.pepper svg {
  height: 18px;
  top: -1px;
}
.recipes-grid .grid .card .info .meta .icons .icon .circle.veggie svg {
  height: 16px;
}
.recipes-grid .grid .card .info .meta .icons .icon .circle.vegan svg {
  height: 17px;
}
.recipes-grid .grid .card .info .meta .icons .icon .label {
  font-size: 18px;
  line-height: 1;
  margin-top: 1px;
}
.recipes-grid .grid .card .info .meta .desc {
  font-size: 24px;
  line-height: normal;
  text-align: center;
  padding: 0 35px;
}
@media screen and (max-width: 800px) {
  .recipes-grid .grid .card .info .meta .desc {
    font-size: 20px;
  }
}
.recipes-grid .grid .card .cover {
  z-index: 10;
}
.recipes-grid .grid .card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

/*=======================================
        Single Recipe - Backgrounds
========================================*/
.single-recipe .page-wrap {
  position: relative;
  overflow: hidden;
  background-color: #00ACBD;
}
.single-recipe .page-wrap .bg-element {
  position: absolute;
  z-index: 1;
}
.single-recipe .page-wrap #flower {
  top: -300px;
  right: calc(50% - 700px);
  width: 1400px;
  height: auto;
  opacity: 0.1;
}
@media screen and (max-width: 1000px) {
  .single-recipe .page-wrap #flower {
    top: -150px;
  }
}
.single-recipe .page-wrap #seed {
  opacity: 0.1;
  bottom: 150px;
  left: 0;
  width: 850px;
}
@media screen and (max-width: 1200px) {
  .single-recipe .page-wrap #seed {
    bottom: -500px;
  }
}
@media screen and (max-width: 800px) {
  .single-recipe .page-wrap #seed {
    width: 1000px;
    bottom: -400px;
  }
}
@media screen and (max-width: 450px) {
  .single-recipe .page-wrap #seed {
    bottom: -800px;
  }
}
.single-recipe .page-wrap section {
  position: relative;
  z-index: 2;
}

/*=======================================
        Single Recipe - Top
========================================*/
.recipe-top {
  padding: 65px 0;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .recipe-top {
    padding: 50px 0;
  }
}
.recipe-top .breadcrumb {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}
.recipe-top .breadcrumb .separator {
  display: inline-block;
  margin: 0 8px;
  font-size: 0px;
}
.recipe-top .breadcrumb .separator:before {
  content: "";
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 7px;
  height: 10px;
}
.recipe-top .breadcrumb a {
  color: #F6EDE2;
}
.recipe-top .title {
  text-align: center;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .recipe-top .title {
    font-size: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .recipe-top .title {
    font-size: 70px;
  }
}
@media screen and (max-width: 600px) {
  .recipe-top .title {
    font-size: 55px;
  }
}

@media screen and (max-width: 1200px) {
  header .shape {
    display: none;
  }
}
/*=======================================
        Single Recipe - Banner
========================================*/
@media screen and (max-width: 600px) {
  .single-recipe .recipe-banner .container {
    padding: 0;
  }
}
.single-recipe .recipe-banner .pom {
  position: absolute;
  z-index: 5;
  width: 400px;
  height: auto;
  left: -200px;
  top: -100px;
}
@media screen and (max-width: 1200px) {
  .single-recipe .recipe-banner .pom {
    width: 200px;
    top: -100px;
    left: -100px;
  }
}
@media screen and (max-width: 600px) {
  .single-recipe .recipe-banner .pom {
    display: none;
  }
}
.single-recipe .recipe-banner .contents {
  justify-content: space-between;
  align-items: unset;
  position: relative;
}
.single-recipe .recipe-banner .contents .left,
.single-recipe .recipe-banner .contents .right {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .single-recipe .recipe-banner .contents .left,
  .single-recipe .recipe-banner .contents .right {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .single-recipe .recipe-banner .left {
    aspect-ratio: 1/1;
  }
}
.single-recipe .recipe-banner .left #recipe-gallery,
.single-recipe .recipe-banner .left .slick-list,
.single-recipe .recipe-banner .left .slick-track {
  height: 100%;
}
.single-recipe .recipe-banner .left .carousel {
  height: 100%;
  margin-bottom: 0 !important;
}
.single-recipe .recipe-banner .left .carousel .slide {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.single-recipe .recipe-banner .left .carousel .slick-dots {
  bottom: 15px;
}
.single-recipe .recipe-banner .left .carousel .slick-dots li {
  width: 20px;
  height: 15px;
  margin: 0 3px;
  transition: width 0.3s ease-in-out;
}
@media screen and (max-width: 700px) {
  .single-recipe .recipe-banner .left .carousel .slick-dots li {
    width: 9px;
    height: 9px;
    margin: 0 2px;
  }
}
.single-recipe .recipe-banner .left .carousel .slick-dots li button {
  width: 100%;
  height: 100%;
}
.single-recipe .recipe-banner .left .carousel .slick-dots li button:before {
  content: "";
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  border-radius: 8px;
}
.single-recipe .recipe-banner .left .carousel .slick-dots li.slick-active {
  width: 40px;
}
@media screen and (max-width: 700px) {
  .single-recipe .recipe-banner .left .carousel .slick-dots li.slick-active {
    width: 18px;
    height: 9px;
  }
}
.single-recipe .recipe-banner .left .carousel .slick-dots li.slick-active button:before {
  content: "";
  opacity: 1;
}
.single-recipe .recipe-banner .right {
  padding: 90px 50px 150px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .single-recipe .recipe-banner .right {
    padding: 60px 20px 100px;
  }
}
@media screen and (max-width: 1200px) {
  .single-recipe .recipe-banner .right {
    padding: 50px 20px 80px;
  }
}
.single-recipe .recipe-banner .right .bg-image {
  position: absolute;
  bottom: -65%;
  left: -25%;
  width: 150%;
  height: auto;
  opacity: 0.1;
  z-index: 5;
}
@media screen and (max-width: 450px) {
  .single-recipe .recipe-banner .right .bg-image {
    bottom: -40%;
  }
}
.single-recipe .recipe-banner .right .inner {
  position: relative;
  z-index: 6;
}
.single-recipe .recipe-banner .right .icons {
  margin-bottom: 100px;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .single-recipe .recipe-banner .right .icons {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .single-recipe .recipe-banner .right .icons {
    margin-bottom: 30px;
  }
}
.single-recipe .recipe-banner .right .icons .icon {
  width: 20%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10px;
}
@media screen and (max-width: 600px) {
  .single-recipe .recipe-banner .right .icons .icon {
    width: 33.3333333333%;
    margin-bottom: 30px;
  }
}
.single-recipe .recipe-banner .right .icons .icon .circle {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background-color: #DA0041;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.single-recipe .recipe-banner .right .icons .icon .circle svg {
  height: 25px;
  width: auto;
  position: relative;
}
.single-recipe .recipe-banner .right .icons .icon .circle svg path {
  fill: #FFFFFF;
}
.single-recipe .recipe-banner .right .icons .icon .circle.clock svg {
  top: -1px;
}
.single-recipe .recipe-banner .right .icons .icon .circle.pepper svg {
  height: 23px;
  top: -1px;
}
.single-recipe .recipe-banner .right .icons .icon .circle.veggie svg {
  height: 21px;
}
.single-recipe .recipe-banner .right .icons .icon .circle.vegan svg {
  height: 22px;
}
.single-recipe .recipe-banner .right .icons .icon .circle.plate svg {
  height: 19px;
}
.single-recipe .recipe-banner .right .icons .icon .label {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}
.single-recipe .recipe-banner .right .subtitle {
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 1.44px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .single-recipe .recipe-banner .right .subtitle {
    font-size: 40px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  .single-recipe .recipe-banner .right .subtitle {
    font-size: 30px;
  }
}

/*=======================================
        Single Recipe - Page Builder
========================================*/
.single-recipe .page-builder-simple .contents {
  padding: 0 55px 150px;
}
@media screen and (max-width: 1000px) {
  .single-recipe .page-builder-simple .contents {
    padding: 0 30px;
  }
}
@media screen and (max-width: 450px) {
  .single-recipe .page-builder-simple .contents {
    padding: 0 15px;
  }
}

/*=======================================
        Single Recipe - Related
========================================*/
.related-products {
  position: relative;
  z-index: 6 !important;
  margin: 180px 0 140px;
}
@media screen and (max-width: 1200px) {
  .related-products {
    margin: 100px 0;
  }
}
.related-products .container {
  width: 100%;
  padding: 0;
}
.related-products h2 {
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 30px;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 1300px) {
  .related-products h2 {
    font-size: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .related-products h2 {
    font-size: 60px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .related-products h2 {
    font-size: 52px;
    padding: 0 15px;
  }
}
.related-products h2:before, .related-products h2:after {
  content: "...";
  font-family: moret, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 80px;
  line-height: 20px;
  color: #DA0041;
  display: inline-block;
  position: relative;
  top: -20px;
}
@media screen and (max-width: 1200px) {
  .related-products h2:before, .related-products h2:after {
    font-size: 60px;
    top: -17px;
  }
}
@media screen and (max-width: 1000px) {
  .related-products h2:before, .related-products h2:after {
    font-size: 50px;
    top: -15px;
  }
}
.related-products h2:before {
  margin-right: 30px;
}
@media screen and (max-width: 1200px) {
  .related-products h2:before {
    margin-right: 20px;
  }
}
@media screen and (max-width: 800px) {
  .related-products h2:before {
    display: none;
  }
}
.related-products h2:after {
  margin-left: 30px;
}
@media screen and (max-width: 1200px) {
  .related-products h2:after {
    margin-left: 20px;
  }
}
@media screen and (max-width: 800px) {
  .related-products h2:after {
    content: "......";
    display: block;
    margin: 15px 0 0 0;
  }
}
.related-products .carousel-wrap {
  position: relative;
  z-index: 6;
}
.related-products .carousel-wrap .slick-list {
  padding: 0 150px;
}
@media screen and (max-width: 1200px) {
  .related-products .carousel-wrap .slick-list {
    padding: 0 120px;
  }
}
@media screen and (max-width: 1000px) {
  .related-products .carousel-wrap .slick-list {
    padding: 0 110px;
  }
}
@media screen and (max-width: 600px) {
  .related-products .carousel-wrap .slick-list {
    padding: 0 30px;
  }
}
.related-products .carousel-wrap .slick-track {
  display: flex !important;
  padding: 30px 0;
}
.related-products .carousel-wrap .card {
  height: inherit !important;
  display: flex;
  flex-direction: column;
  margin: 0 8px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.related-products .carousel-wrap .card .image {
  transition: border-width 0.3s ease-in-out;
  border: 0px solid #DA0041;
  background-color: #FFFFFF;
  padding: 30px;
}
.related-products .carousel-wrap .card .info {
  padding: 20px 25px;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.2;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .related-products .carousel-wrap .card .info {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .related-products .carousel-wrap .card .info {
    font-size: 24px;
  }
}
.related-products .carousel-wrap .card .overlay {
  position: absolute;
  inset: 0;
  z-index: 9;
  background-color: #000000;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.related-products .carousel-wrap .card .cover {
  z-index: 10;
  pointer-events: none;
}
.related-products .carousel-wrap .card.slick-active:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.related-products .carousel-wrap .card.slick-active:hover .image {
  border-width: 15px;
}
.related-products .carousel-wrap .card.slick-active .overlay {
  opacity: 0;
}
.related-products .carousel-wrap .card.slick-active .cover {
  pointer-events: all;
}
.related-products .carousel-wrap .arrows .arrow {
  width: 50px;
  height: auto;
  cursor: pointer;
  top: calc(50% - 50px);
  position: absolute;
}
.related-products .carousel-wrap .arrows .arrow.prev {
  left: 30px;
}
.related-products .carousel-wrap .arrows .arrow.next {
  right: 30px;
  transform: rotate(180deg);
}
.related-products .carousel-wrap .arrows .arrow svg path {
  transition: all 0.3s ease-in-out;
}
.related-products .carousel-wrap .arrows .arrow:hover svg path {
  fill: #DA0041;
}
@media screen and (max-width: 1500px) {
  .related-products .carousel-wrap .arrows .arrow {
    width: 40px;
    top: calc(50% - 35px);
  }
}
@media screen and (max-width: 1000px) {
  .related-products .carousel-wrap .arrows .arrow {
    width: 30px;
  }
}
@media screen and (max-width: 600px) {
  .related-products .carousel-wrap .arrows .arrow {
    display: none !important;
  }
}
.related-products .link {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .related-products .link {
    margin-top: 30px;
  }
}

/*=======================================
        Page Intro - Banner
========================================*/
.page-intro-banner {
  padding: 35px 0;
}
@media screen and (max-width: 1200px) {
  .page-intro-banner {
    padding: 35px 0 0 0;
  }
}
@media screen and (max-width: 700px) {
  .page-intro-banner {
    padding: 15px 0 0 0;
  }
}
.page-intro-banner .container {
  padding-right: 0;
  width: 100%;
  padding-left: calc((100vw - 1440px) / 2 + 30px);
}
@media screen and (min-width: 1920px) {
  .page-intro-banner .container {
    width: 1920px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 1500px) {
  .page-intro-banner .container {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .page-intro-banner .container {
    padding-left: 0;
  }
}
.page-intro-banner .contents {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .page-intro-banner .contents {
    flex-direction: column-reverse;
  }
}
.page-intro-banner .left {
  width: 470px;
  padding: 0 20px 0 0;
}
@media screen and (max-width: 1200px) {
  .page-intro-banner .left {
    width: 100%;
    padding: 30px;
  }
}
@media screen and (max-width: 450px) {
  .page-intro-banner .left {
    padding: 30px 15px;
  }
}
.page-intro-banner .left h1 {
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media screen and (max-width: 1300px) {
  .page-intro-banner .left h1 {
    font-size: 70px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .page-intro-banner .left h1 {
    text-align: center;
  }
}
@media screen and (max-width: 700px) {
  .page-intro-banner .left h1 {
    font-size: 52px;
  }
}
.page-intro-banner .left .subtitle {
  font-size: 36px;
  line-height: 1.16;
  max-width: 400px;
}
@media screen and (max-width: 1200px) {
  .page-intro-banner .left .subtitle {
    max-width: 100%;
    text-align: center;
  }
}
.page-intro-banner .left .buttons {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 700px) {
  .page-intro-banner .left .buttons {
    justify-content: center;
  }
}
.page-intro-banner .left .buttons .button {
  margin-right: 20px;
}
@media screen and (max-width: 700px) {
  .page-intro-banner .left .buttons .button {
    margin: 0 10px 20px;
  }
}
.page-intro-banner .right {
  width: calc(100% - 470px);
}
@media screen and (max-width: 1200px) {
  .page-intro-banner .right {
    width: 100%;
  }
}
.page-intro-banner .right .carousel {
  margin-bottom: 0 !important;
}
.page-intro-banner .right .slick-dots {
  bottom: 10px;
}
.page-intro-banner .right .slick-dots li {
  width: 20px;
  height: 15px;
  margin: 0 3px;
  transition: width 0.3s ease-in-out;
}
@media screen and (max-width: 700px) {
  .page-intro-banner .right .slick-dots li {
    width: 9px;
    height: 9px;
    margin: 0 2px;
  }
}
.page-intro-banner .right .slick-dots li button {
  width: 100%;
  height: 100%;
}
.page-intro-banner .right .slick-dots li button:before {
  content: "";
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  border-radius: 8px;
}
.page-intro-banner .right .slick-dots li.slick-active {
  width: 40px;
}
@media screen and (max-width: 700px) {
  .page-intro-banner .right .slick-dots li.slick-active {
    width: 18px;
    height: 9px;
  }
}
.page-intro-banner .right .slick-dots li.slick-active button:before {
  content: "";
  opacity: 1;
}

/*=======================================
        Page Intro - Intro
========================================*/
.page-intro-intro {
  padding: 0 0 150px 0;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .page-intro-intro {
    padding: 0 0 50px 0;
  }
}
.page-intro-intro .contents {
  justify-content: flex-end;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .page-intro-intro .contents {
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .page-intro-intro .contents {
    flex-direction: column;
  }
}
.page-intro-intro .pom {
  position: absolute;
  width: 600px;
  left: -180px;
  top: -150px;
}
@media screen and (max-width: 1200px) {
  .page-intro-intro .pom {
    position: static;
    width: 400px;
  }
}
@media screen and (max-width: 900px) {
  .page-intro-intro .pom {
    width: 300px;
  }
}
@media screen and (max-width: 450px) {
  .page-intro-intro .pom {
    width: 250px;
  }
}
.page-intro-intro .lime {
  position: absolute;
  width: 600px;
  left: -180px;
  top: -150px;
}
@media screen and (max-width: 1200px) {
  .page-intro-intro .lime {
    position: static;
    width: 400px;
  }
}
@media screen and (max-width: 900px) {
  .page-intro-intro .lime {
    width: 300px;
  }
}
@media screen and (max-width: 450px) {
  .page-intro-intro .lime {
    width: 250px;
  }
}
.page-intro-intro .onion {
  position: absolute;
  width: 500px;
  left: 30px;
  top: -120px;
}
@media screen and (max-width: 1200px) {
  .page-intro-intro .onion {
    position: static;
    width: 400px;
  }
}
@media screen and (max-width: 900px) {
  .page-intro-intro .onion {
    width: 300px;
  }
}
@media screen and (max-width: 800px) {
  .page-intro-intro .onion {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 450px) {
  .page-intro-intro .onion {
    width: 250px;
  }
}
.page-intro-intro .content {
  width: calc(100% - 470px);
  position: relative;
  padding: 65px 0 0 125px;
}
@media screen and (max-width: 1200px) {
  .page-intro-intro .content {
    width: calc(100% - 400px);
    padding: 0 0 0 50px;
  }
}
@media screen and (max-width: 900px) {
  .page-intro-intro .content {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 800px) {
  .page-intro-intro .content {
    width: 100%;
    padding: 30px 0 0 0;
    text-align: center;
  }
}
.page-intro-intro .content .text-container {
  color: #000000;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 1.26px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .page-intro-intro .content .text-container {
    font-size: 40px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  .page-intro-intro .content .text-container {
    font-size: 35px;
  }
}
@media screen and (max-width: 600px) {
  .page-intro-intro .content .text-container {
    font-size: 32px;
    text-align: center;
    letter-spacing: 0.96px;
  }
}

/*=======================================
        Text & Image Banner
========================================*/
.text-image-banner {
  padding: 75px 0 150px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .text-image-banner {
    padding: 50px 0 100px;
  }
}
.text-image-banner .contents {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.text-image-banner .card {
  position: relative;
  z-index: 6;
  align-items: unset;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .text-image-banner .card {
    flex-direction: column-reverse;
  }
}
.text-image-banner .card .left {
  width: 40%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .text-image-banner .card .left {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.text-image-banner .card .right {
  width: 60%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .text-image-banner .card .right {
    width: 100%;
    align-items: center;
    padding: 50px;
  }
  .text-image-banner .card .right .inner {
    text-align: center;
  }
}
.text-image-banner .card .right h2 {
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
  .text-image-banner .card .right h2 {
    font-size: 70px;
  }
}
@media screen and (max-width: 1050px) {
  .text-image-banner .card .right h2 {
    font-size: 55px;
  }
}
@media screen and (max-width: 800px) {
  .text-image-banner .card .right h2 {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .text-image-banner .card .right h2 {
    font-size: 52px;
    margin-bottom: 30px;
  }
}
.text-image-banner .card .right .text-container {
  font-size: 36px;
  line-height: 1.16;
}
@media screen and (max-width: 1050px) {
  .text-image-banner .card .right .text-container {
    font-size: 24px;
  }
}
.text-image-banner .card .right .text-container p:last-of-type {
  margin-bottom: 0;
}
.text-image-banner .chilli-slice {
  position: absolute;
  bottom: -175px;
  right: -125px;
  width: 387px;
  height: auto;
  z-index: 7;
}
.text-image-banner .chilli-slice svg {
  transform: rotate(21.5deg);
}
@media screen and (max-width: 1200px) {
  .text-image-banner .chilli-slice {
    width: 234px;
    bottom: -98px;
    right: -75px;
  }
}
@media screen and (max-width: 800px) {
  .text-image-banner .chilli-slice {
    width: 234px;
    bottom: -98px;
    right: -75px;
  }
}

/*=======================================
        Text & Image Carousel
========================================*/
.text-image-carousel {
  padding: 0 0 150px 0;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .text-image-carousel {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 700px) {
  .text-image-carousel {
    padding-bottom: 50px;
  }
}
.text-image-carousel .container {
  padding-left: 0;
  width: 100%;
  position: relative;
  padding-right: calc((100vw - 1440px) / 2 + 30px);
}
.text-image-carousel .container.reverse {
  padding-right: 0;
  padding-left: calc((100vw - 1440px) / 2 + 30px);
}
@media screen and (min-width: 1920px) {
  .text-image-carousel .container {
    width: 1920px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 1500px) {
  .text-image-carousel .container {
    padding-right: 30px;
  }
  .text-image-carousel .container.reverse {
    padding-right: 0;
    padding-left: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .text-image-carousel .container {
    padding-right: 0;
  }
  .text-image-carousel .container.reverse {
    padding-left: 0;
  }
}
.text-image-carousel .contents {
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 1200px) {
  .text-image-carousel .contents {
    flex-direction: column;
    align-items: flex-start;
  }
}
.text-image-carousel .contents.reverse {
  flex-direction: row-reverse;
}
.text-image-carousel .contents.reverse .right {
  padding: 0 40px 0 0;
}
.text-image-carousel .left {
  width: calc(100% - 600px);
  position: relative;
}
@media screen and (max-width: 1200px) {
  .text-image-carousel .left {
    width: 100%;
  }
}
.text-image-carousel .left .carousel {
  margin-bottom: 0 !important;
}
.text-image-carousel .left .slick-dots {
  bottom: 10px;
}
.text-image-carousel .left .slick-dots li {
  width: 20px;
  height: 15px;
  margin: 0 3px;
  transition: width 0.3s ease-in-out;
}
@media screen and (max-width: 700px) {
  .text-image-carousel .left .slick-dots li {
    width: 9px;
    height: 9px;
    margin: 0 2px;
  }
}
.text-image-carousel .left .slick-dots li:only-child {
  display: none;
}
.text-image-carousel .left .slick-dots li button {
  width: 100%;
  height: 100%;
}
.text-image-carousel .left .slick-dots li button:before {
  content: "";
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  border-radius: 8px;
}
.text-image-carousel .left .slick-dots li.slick-active {
  width: 40px;
}
@media screen and (max-width: 700px) {
  .text-image-carousel .left .slick-dots li.slick-active {
    width: 18px;
    height: 9px;
  }
}
.text-image-carousel .left .slick-dots li.slick-active button:before {
  content: "";
  opacity: 1;
}
.text-image-carousel .left .shape.slice {
  position: absolute;
  z-index: 99;
  width: 230px;
  bottom: -75px;
  right: -85px;
  transform: rotate(-70deg);
}
@media screen and (max-width: 1350px) {
  .text-image-carousel .left .shape.slice {
    width: 200px;
    bottom: -65px;
    right: -75px;
  }
}
@media screen and (max-width: 1200px) {
  .text-image-carousel .left .shape.slice {
    bottom: -200px;
    right: 10px;
    transform: rotate(-160deg);
  }
}
@media screen and (max-width: 700px) {
  .text-image-carousel .left .shape.slice {
    display: none;
  }
}
.text-image-carousel .left .shape.slice.reverse {
  transform: rotate(0deg);
  right: auto;
  left: -85px;
}
@media screen and (max-width: 1200px) {
  .text-image-carousel .left .shape.slice.reverse {
    bottom: -200px;
    left: auto;
    right: 10px;
    transform: rotate(-160deg);
  }
}
.text-image-carousel .left .shape.leaf {
  position: absolute;
  z-index: 99;
  width: 260px;
  bottom: -110px;
  left: -120px;
}
@media screen and (max-width: 1200px) {
  .text-image-carousel .left .shape.leaf {
    left: auto;
    right: -120px;
    bottom: -150px;
  }
}
@media screen and (max-width: 700px) {
  .text-image-carousel .left .shape.leaf {
    display: none;
  }
}
.text-image-carousel .left .shape.leaf.reverse {
  left: auto;
  right: -120px;
}
.text-image-carousel .right {
  width: 600px;
  padding: 0 0 0 40px;
}
@media screen and (max-width: 1200px) {
  .text-image-carousel .right {
    width: 100%;
    padding: 50px 30px 0 !important;
  }
}
@media screen and (max-width: 700px) {
  .text-image-carousel .right {
    padding: 30px 30px 0 !important;
  }
}
.text-image-carousel .right .text-container {
  font-size: 36px;
  line-height: 1.16;
  letter-spacing: 1.08px;
}
.text-image-carousel .right .text-container p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .text-image-carousel .right .text-container {
    max-width: 80%;
  }
}
@media screen and (max-width: 700px) {
  .text-image-carousel .right .text-container {
    max-width: 100%;
    font-size: 30px;
  }
}

/*=======================================
            Form Block
========================================*/
.form-block {
  padding: 75px 0 150px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .form-block {
    padding: 50px 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .form-block .container {
    padding: 0;
  }
}
.form-block .contents {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.form-block .card {
  position: relative;
  z-index: 6;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 85px 50px 150px;
}
@media screen and (max-width: 1200px) {
  .form-block .card {
    padding: 70px 30px 100px;
  }
}
@media screen and (max-width: 450px) {
  .form-block .card {
    padding: 70px 15px 100px;
  }
}
.form-block .card .inner {
  max-width: 800px;
  margin: 0 auto;
}
.form-block .card h2 {
  font-size: 64px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 800px) {
  .form-block .card h2 {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 450px) {
  .form-block .card h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
.form-block .card .gform_wrapper .gform_required_legend {
  display: none;
}
.form-block .card .gform_wrapper .gfield_label {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
}
.form-block .card .gform_wrapper input[type=text],
.form-block .card .gform_wrapper input[type=email],
.form-block .card .gform_wrapper textarea {
  border: 3px solid #000000;
  background-color: #F6EDE2;
  font-size: 20px;
  line-height: 1.2 !important;
  resize: none;
}
.form-block .card .gform_wrapper img.gform_ajax_spinner {
  display: none !important;
}
.form-block .card .gform_wrapper .gform_footer input[type=submit] {
  font-size: 24px;
  line-height: 1 !important;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.72px;
  background-color: #FFFFFF;
  padding: 15px 45px;
  font-family: acumin-variable, sans-serif;
  border-radius: 8px;
  font-variation-settings: "slnt" 0, "wdth" 50, "wght" 700;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.form-block .card .gform_wrapper .gform_footer input[type=submit]:hover {
  background-color: #DA0041;
  color: #FFFFFF;
}
@media screen and (max-width: 700px) {
  .form-block .card .gform_wrapper .gform_footer input[type=submit] {
    padding: 15px 35px;
  }
}
.form-block .chilli-slice {
  position: absolute;
  bottom: -175px;
  right: -125px;
  width: 387px;
  height: auto;
  z-index: 7;
}
.form-block .chilli-slice svg {
  transform: rotate(21.5deg);
}
@media screen and (max-width: 1200px) {
  .form-block .chilli-slice {
    width: 234px;
    bottom: -98px;
    right: -75px;
  }
}
@media screen and (max-width: 800px) {
  .form-block .chilli-slice {
    width: 234px;
    bottom: -98px;
    right: -75px;
  }
}

/*=======================================
            Wrapper
========================================*/
@media screen and (max-width: 600px) {
  .page-template-template-pagebuilder-simple header .shape {
    display: none;
  }
}

.page-builder-simple {
  padding-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .page-builder-simple {
    padding-bottom: 0;
  }
}
.page-builder-simple .contents {
  padding: 0 55px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .page-builder-simple .contents {
    padding: 0 30px;
  }
}
@media screen and (max-width: 450px) {
  .page-builder-simple .contents {
    padding: 0 15px;
  }
}
@media screen and (max-width: 600px) {
  .page-builder-simple .container {
    padding: 0;
  }
}
.page-builder-simple .bg-shape {
  position: absolute;
  z-index: 5;
}
.page-builder-simple .bg-shape#pb-daisy {
  width: 1170px;
  height: auto;
  right: -300px;
  top: 400px;
}
@media screen and (max-width: 1000px) {
  .page-builder-simple .bg-shape#pb-daisy {
    top: 200px;
    right: -600px;
  }
}
@media screen and (max-width: 600px) {
  .page-builder-simple .bg-shape#pb-daisy {
    width: 800px;
    top: 200px;
    right: -400px;
  }
}
.page-builder-simple .bg-shape#pb-daisy svg g {
  opacity: 0.25;
}
.page-builder-simple .bg-shape#pb-daisy svg path {
  fill: #FFFFFF;
}
.page-builder-simple .bg-shape#pb-seed {
  width: 1000px;
  height: auto;
  left: calc(50% - 500px);
  bottom: -850px;
}
.page-builder-simple .bg-shape#pb-seed svg path {
  opacity: 0.25;
  fill: #FFFFFF;
}
.page-builder-simple section {
  position: relative;
  z-index: 6 !important;
}

/*=======================================
            Text Block
========================================*/
.text-block {
  max-width: 1010px;
  margin: 0 auto;
}
.text-block .text-container {
  font-size: 24px;
  line-height: normal;
}
@media screen and (max-width: 1000px) {
  .text-block .text-container {
    font-size: 20px;
  }
}
.text-block .text-container h1,
.text-block .text-container h2,
.text-block .text-container h3,
.text-block .text-container h4,
.text-block .text-container h5,
.text-block .text-container h6 {
  font-family: moret, serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.text-block .text-container h1 {
  font-size: 70px;
  line-height: 1;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .text-block .text-container h1 {
    font-size: 60px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 600px) {
  .text-block .text-container h1 {
    font-size: 44px;
    margin-bottom: 20px;
  }
}
.text-block .text-container h2 {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 25px;
}
@media screen and (max-width: 1000px) {
  .text-block .text-container h2 {
    font-size: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .text-block .text-container h2 {
    font-size: 40px;
  }
}
.text-block .text-container h3 {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .text-block .text-container h3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .text-block .text-container h3 {
    font-size: 35px;
  }
}
.text-block .text-container h4,
.text-block .text-container h5,
.text-block .text-container h6 {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .text-block .text-container h4,
  .text-block .text-container h5,
  .text-block .text-container h6 {
    font-size: 30px;
  }
}
.text-block .text-container a:not([class]) {
  text-decoration: underline;
}
.text-block .text-container ul li {
  list-style: disc;
}
.text-block .text-container li {
  margin-bottom: 8px;
}
.text-block .text-container li:before {
  display: none;
}
.text-block .text-container div.wp-caption {
  width: 100% !important;
}
.text-block .text-container .wp-caption-text {
  font-size: 20px;
  margin-top: 5px;
}
.text-block .text-container.highlight-blue h1,
.text-block .text-container.highlight-blue h2,
.text-block .text-container.highlight-blue h3,
.text-block .text-container.highlight-blue h4,
.text-block .text-container.highlight-blue h5,
.text-block .text-container.highlight-blue h6 {
  color: #00ACBD;
}
.text-block .text-container.highlight-blue a:not([class]) {
  color: #00ACBD;
}
.text-block .text-container.highlight-red h1,
.text-block .text-container.highlight-red h2,
.text-block .text-container.highlight-red h3,
.text-block .text-container.highlight-red h4,
.text-block .text-container.highlight-red h5,
.text-block .text-container.highlight-red h6 {
  color: #DA0041;
}
.text-block .text-container.highlight-red a:not([class]) {
  color: #DA0041;
}

/*=======================================
            Title
========================================*/
.title-block .title-dots {
  text-align: center;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 1000px) {
  .title-block .title-dots {
    font-size: 60px;
  }
}
@media screen and (max-width: 600px) {
  .title-block .title-dots {
    font-size: 44px;
  }
}
.title-block .title-dots:before, .title-block .title-dots:after {
  content: "...";
  font-family: moret, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 80px;
  line-height: 20px;
  color: #00ACBD;
  display: inline-block;
  position: relative;
  top: -20px;
}
@media screen and (max-width: 1000px) {
  .title-block .title-dots:before, .title-block .title-dots:after {
    font-size: 50px;
    top: -15px;
  }
}
.title-block .title-dots:before {
  margin-right: 30px;
}
@media screen and (max-width: 1000px) {
  .title-block .title-dots:before {
    margin-right: 20px;
  }
}
@media screen and (max-width: 800px) {
  .title-block .title-dots:before {
    display: none;
  }
}
.title-block .title-dots:after {
  margin-left: 30px;
}
@media screen and (max-width: 1000px) {
  .title-block .title-dots:after {
    margin-left: 20px;
  }
}
@media screen and (max-width: 800px) {
  .title-block .title-dots:after {
    content: "......";
    display: block;
    margin: 15px 0 0 0;
  }
}
.title-block .title-dots.red:before, .title-block .title-dots.red:after {
  color: #DA0041;
}

/*=======================================
            Two Col Text
========================================*/
.two-col-text .inner {
  justify-content: space-between;
  align-items: flex-start;
}
.two-col-text .inner .col {
  width: calc(50% - 20px);
}
@media screen and (max-width: 800px) {
  .two-col-text .inner .col {
    width: 100%;
    margin-bottom: 30px;
  }
}
.two-col-text .inner .col h3 {
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media screen and (max-width: 1000px) {
  .two-col-text .inner .col h3 {
    font-size: 35px;
  }
}
.two-col-text .inner .col .text-container {
  font-size: 24px;
  line-height: 1.4;
  padding-right: 40px;
}
@media screen and (max-width: 1000px) {
  .two-col-text .inner .col .text-container {
    font-size: 20px;
    padding-right: 20px;
  }
}
.two-col-text .inner .col .text-container a {
  color: #DA0041;
  text-decoration: underline;
}
.two-col-text .inner .col .text-container ul li {
  list-style: disc;
}
.two-col-text .inner .col .text-container li {
  margin-bottom: 8px;
}
.two-col-text .inner .col .text-container li:before {
  display: none;
}

/*=======================================
              Page Wrap
========================================*/
body.search .page-wrap {
  position: relative;
  overflow: hidden;
  background-color: #00ACBD;
}
body.search .page-wrap .bg-element {
  position: absolute;
  z-index: 1;
}
body.search .page-wrap #daisy {
  top: -300px;
  right: calc(50% - 700px);
  width: 1400px;
  height: auto;
}
@media screen and (max-width: 1000px) {
  body.search .page-wrap #daisy {
    top: -150px;
  }
}
body.search .page-wrap section {
  position: relative;
  z-index: 2;
}

/*=======================================
            Search Banner
========================================*/
.search-banner {
  padding: 65px 0;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .search-banner {
    padding: 50px 0;
  }
}
.search-banner .title {
  text-align: center;
  font-size: 70px;
  line-height: 1;
  text-transform: uppercase;
  max-width: 1100px;
  margin: 0 auto;
}
.search-banner .title span {
  font-style: italic;
}
@media screen and (max-width: 800px) {
  .search-banner .title {
    font-size: 55px;
  }
}
@media screen and (max-width: 600px) {
  .search-banner .title {
    font-size: 45px;
  }
}

/*=======================================
            Sections
========================================*/
.search-res {
  margin-bottom: 150px;
  padding-bottom: 0;
}
@media screen and (max-width: 600px) {
  .search-res {
    margin-bottom: 75px;
  }
}

/*=======================================
            Section Titles
========================================*/
.results-title h2 {
  text-align: center;
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 800px) {
  .results-title h2 {
    font-size: 44px;
    margin-bottom: 30px;
  }
}
.results-title h2:before, .results-title h2:after {
  content: "...";
  font-family: moret, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 80px;
  line-height: 20px;
  color: #DA0041;
  display: inline-block;
  position: relative;
  top: -10px;
}
@media screen and (max-width: 800px) {
  .results-title h2:before, .results-title h2:after {
    font-size: 50px;
    top: -11px;
  }
}
@media screen and (max-width: 450px) {
  .results-title h2:before, .results-title h2:after {
    display: none;
  }
}
.results-title h2:before {
  margin-right: 20px;
}
@media screen and (max-width: 800px) {
  .results-title h2:before {
    display: none;
  }
}
.results-title h2:after {
  margin-left: 20px;
}
@media screen and (max-width: 800px) {
  .results-title h2:after {
    margin-left: 15px;
  }
}
@media screen and (max-width: 800px) {
  .results-title h2:after {
    content: "......";
    display: block;
    margin: 15px 0 0 0;
  }
}

/*=======================================
            No Results
========================================*/
.no-res {
  padding: 0 0 65px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .no-res {
    padding: 0 0 50px;
  }
}
.no-res .title {
  text-align: center;
  font-size: 55px;
  line-height: 1;
  text-transform: uppercase;
  max-width: 800px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 600px) {
  .no-res .title {
    font-size: 35px;
    margin-bottom: 30px;
  }
}

/*# sourceMappingURL=styles.css.map */
