@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&subset=latin,latin-ext');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body {
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 150%;
    color:#555;
    font-family: 'Open Sans', sans-serif;
}
a {
    color: #80C500;
    text-decoration: none;
}
h1, h2, h3 {
    font-family: "Playfair Display", serif;
    font-style: normal;
    font-weight: normal;
    color: #333;
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;
}
section {
    background-color: #fff;
}
section.logo {
    padding: 20px;
    text-align: center;
    background: #000;
}
section.logo #logoImg {
    width: 80%;
    max-width: 640px;
}
nav {
    background-color: #f17f05;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
nav ul li a {
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    color:#fff;
    padding:10px 8px;
}
nav ul li a:hover,
nav ul li a:active,
nav ul li.active a {
    background-color: #80C500;
    color: #fff;
}
footer {
    background-color: #80C500;
    padding:20px;
    color: #fff;
}
footer .widthWrapper {
    display: flex;
    justify-content: left;
    justify-content: space-around;
    flex-wrap: wrap;
}
footer a {
    color: #fff;
}

.sp-page-builder .page-header {
    display: none;
}
.sppb-section.fullWidth {
    padding:0;
}
.sppb-section.fullWidth .sppb-row-container {
    width: 100% !important;
}
.sppb-section.fullWidth .sppb-col-md-12 {
    padding: 0px;
}
section.sppb-section.noBg {
    background: none;
}
section .sppb-title-heading {
    font-weight: normal;
    text-transform: uppercase;
}
section.sppb-section.noBg .sppb-title-heading {
    color: #fff;
}
section.orange {
    background-color: #ffd31a;
}
section.tropical {
    background-color: #f1c405;
}
section.sunshine {
    background-color: #f17f05;
}
section.green {
    background-color: #74a928;
}
section.beetroot {
    background-color: #9d2c2c;
}
section.productDesc {
    background-color: #fff;
}
#sp-page-builder section.orange .sppb-section-title,
#sp-page-builder section.tropical .sppb-section-title,
#sp-page-builder section.sunshine .sppb-section-title,
#sp-page-builder section.green .sppb-section-title,
#sp-page-builder section.beetroot .sppb-section-title{
    margin-bottom: 0;
}
#sp-page-builder section.orange .sppb-section-title .sppb-title-heading,
#sp-page-builder section.tropical .sppb-section-title .sppb-title-heading,
#sp-page-builder section.sunshine .sppb-section-title .sppb-title-heading,
#sp-page-builder section.green .sppb-section-title .sppb-title-heading,
#sp-page-builder section.beetroot .sppb-section-title .sppb-title-heading {
    color: #fff;
    margin:0;
    padding: 30px 0;
}
.sppb-btn-default,
.sppb-btn-default:hover {
    text-decoration: none;
    color: #80C500;
    border-color: #80C500;
    background-color: #fff;
}
.sppb-btn-default{
    background-color: #80C500;
    border-color: #80C500;
    color: #fff;
}

.aj-social-sidebar {
  position: fixed;
  top: 40%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 9999;
}

.aj-social-sidebar a {
  width: 36px;
  height: 36px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 0 0 8px;
  transition: 0.3s;
}

.aj-social-sidebar a svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* Facebook */
.aj-social-sidebar a.fb { background: #1877f2; }
.aj-social-sidebar a.fb:hover { background: #0f5ac6; }

/* Instagram */
.aj-social-sidebar a.ig {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}
.aj-social-sidebar a.ig:hover { opacity: 0.85; }

/* TikTok */
.aj-social-sidebar a.tt { background: #000; }
.aj-social-sidebar a.tt:hover { background: #111; }

@media only screen and (max-width: 720px) {
    body {
        font-size: 14px;
    }
    h1, h2, h3 {
        font-size: 22px;
    }
}