:root {
    --light-green: #95c11f;
    --dark-green: #6ca438;
    --button-gradient: transparent
      linear-gradient(180deg, #95c11f 0%, #6ca438 100%) 0% 0% no-repeat
      padding-box;
    --button-shadow: 0px 3px 0px #0d4825;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    overflow-x: hidden;

  }
  
  body {
    font-family: "Lato", sans-serif;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #543c6a;
    position: relative;
    overflow: hidden;
  }

  a:hover {
    cursor: pointer;
  }

  .footer {
      font-size: 16px;
  }

  nav {
    border-bottom: 2px solid #be2d2b;
    position: relative;
  }

  nav::before {
      content: none !important;
      display: inherit !important;
  }

  .footer .container::before,
  .footer .container::after {
      content: none !important;
      display: inherit !important;
  }

  nav ul {
      margin: auto;
  }
  
  nav h1 {
    margin: 0;
    font-size: 2em;
  }
  
 nav h2 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 400;
  }
  
  nav h3 {
    margin: 0;
  }
  
  nav p,
  nav a,
  .footer p,
  .footer a {
    margin: 0;
    font-size: 1em;
    font-size: 16px;
  }
  
  nav a.large,
  nav p.large,
  .footer a.large,
  .footer p.large {
    font-size: 1.25em;
  }
  
  nav a.small,
  nav p.small,
  .footer a.small,
  .footer p.small {
    font-size: 0.75em;
    font-size: 12px;
  }
  
  nav a,
  .footer a {
    text-decoration: none;
    color: white;
  }

  nav a:hover {
    text-decoration: none;
  }
  
  nav i,
  .footer i {
    margin-right: 1.25em;
    font-size: 1.25em;
  }
  
  .search-container-mobile {
    position: absolute;
    background-color: #009591;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    z-index: 8;
    padding: 10px;
    transition: 0.5s ease-in-out top;
    top:74px;
  }

  .search-mobile-hidden {
    top: 10px;
  }

  .search-container-mobile .search {
    position: relative;
    width: 100%;
  }

  .search-container-mobile .search input[type="text"] {
    background-color: white;
    width: 100%;
    padding-left: 45px;
    color: inherit;
  }

  .search-container-mobile .search i {
    position: absolute;
    top: 10px;
    left: 16px;
    z-index: 2;
    font-size: 20px;
  }

  @media (max-width: 650px) {
    nav h1 {
      font-size: 1.25em;
    }
  
    nav h2 {
      font-size: 1em;
    }
    nav p,
    nav p.small,
    nav a,
    .footer p,
    .footer p.small,
    .footer a {
      font-size: 0.75em;
    }
  
    nav p.large,
    nav a.large,
    .footer p.large,
    .footer a.large {
      font-size: 0.875em;
    }
  }
  
  nav .bold,
  .footer .bold {
    font-weight: bold;
  }
  
  nav .cyan {
    color: #009591;
  }
  
  nav .white,
  .footer .white {
    color: #fff;
  }
  
  nav .black {
    color: #0000;
  }
  
  nav .light-pink {
    color: #543c6a80;
  }
  
  nav .default {
    color: #543c6a;
  }

  nav .active {
    color: #6ca438 !important;
    background-color: white !important;
  }
  
  nav .container,
  .footer > .container .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
  }
  
  @media (max-width: 575px) {
    nav .container,
    .footer > .container .container {
      padding: 0 20px;
    }
  }
  
  @media (min-width: 576px) {
    nav .container,
    .footer > .container .container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    nav .container,
    .footer > .container .container {
      max-width: 720px;
    }
  }

  @media (min-width: 839px) {
    .search-container-mobile {
      display: none;
    }
  }
  
  @media (min-width: 992px) {
    nav .container,
    .footer > .container .container {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    nav .container,
    .footer > .container .container {
      max-width: 1140px;
    }
  }
  
  /*
  
    Global Components
  
    */
  
    nav .button,
    .footer .button {
    background: transparent linear-gradient(180deg, #95c11f 0%, #6ca438 100%) 0%
      0% no-repeat padding-box;
    box-shadow: 0px 3px 0px #0d4825;
    width: 100%;
    padding: 0.7em;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
  }
  
  nav .inputs,
  .footer .inputs {
    position: relative;
  }
  
  nav  .inputs input[type="text"],
  .footer .inputs input[type="text"] {
    border: 1px solid #cccccc;
    border-radius: 4px;
    width: 100%;
  }
  
  nav .inputs input[type="submit"],
  .footer .inputs input[type="submit"] {
    background: transparent linear-gradient(180deg, #95c11f 0%, #6ca438 100%) 0%
      0% no-repeat padding-box;
    box-shadow: 0px 3px 0px #0d4825;
    border: 0;
    border-radius: 4px;
    position: relative;
    left: -6px;
    color: white;
    font-weight: bold;
    font-size: 13.3333px;
    position: absolute;
    left: calc(100% - 2.9em);
  }
  
  nav .inputs input[type="text"],
  nav .inputs input[type="submit"],
  .footer .inputs input[type="text"],
  .footer .inputs input[type="submit"] {
    padding: 16px 14.4px 14.4px 14.4px;
  }
  
  nav .inputs ::placeholder, 
  .footer .inputs ::placeholder{
    color: #543c6a80;
    font-size: 14px;
  }
  
  nav .inputs.placeholder-black ::placeholder,
  .footer .inputs.placeholder-black ::placeholder {
    color: black;
  }
  
  nav .title {
    margin-top: 60px;
    margin-bottom: 30px;
  }
  
  @media (max-width: 650px) {
    nav .inputs input[type="text"],
    nav .inputs input[type="submit"],
    .footer .inputs input[type="text"],
    .footer .inputs input[type="submit"] {
      padding: 0.875em 0.775em 0.775em 0.775em;
    }
    nav .inputs input[type="submit"],
    .footer .inputs input[type="submit"] {
      left: calc(100% - 2.7em);
    }
  }
  
  nav .title h1 {
    width: 100%;
    border-bottom: 2px solid #d68331;
    text-transform: capitalize;
  }
  
  @media (max-width: 650px) {
    nav .title {
      text-align: center;
      margin: 14px 0 14px 0;
    }
    nav .title h1 {
      border: none;
    }
  }
  
  nav .anchors {
    margin-bottom: 50px;
  }
  
  nav .anchors .anchor:not(:last-of-type) {
    margin-right: 50px;
  }
  
  nav .anchors .anchor a {
    font-size: 1em;
    font-weight: bold;
    border-bottom: 1px solid #009591;
  }
  
  nav .mobile {
    display: none;
  }
  
  @media (max-width: 991px) {
    nav .anchors .anchor a {
      font-size: 0.8em;
    }
  }
  
  @media (max-width: 767px) {
    nav .anchors {
      margin-top: 20px;
    }
    nav .mobile {
      display: inherit;
    }
  }
  
  @media (max-width: 445px) {
    nav .anchors {
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    nav .anchors {
      margin-bottom: 20px;
    }
    nav .anchors .container {
      flex-direction: column;
      justify-content: space-between;
    }
  }

  .nav {
    height: 104px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 110px;
  }
  
  .nav .logo a {
    display: inline-block;
  }
  
  .nav ul {
    list-style-type: none;
  }
  
  .nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: calc(100% - 172px);
  }
  
  .nav ul li a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav ul .sub-list a i {
    position: relative;
    top: 2px;
  }
  
  .nav > ul > li {
    position: relative;
  }
  
  .nav > ul > li {
    padding-right: 40px;
  }
  
  .nav > ul > li > a {
    transition: 0.2s ease-in-out color;
  }
  
  .nav > ul > li > a i {
    margin-left: 5px;
  }
  
  .nav > ul li:hover > a {
    color: #d68331;
  }
  
  .nav > ul > li > a {
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }
  
  .nav ul li a {
    color: inherit;
    font-weight: bold;
  }
  
  .nav > ul li:hover > .sub-list {
    opacity: 1;
    visibility: visible;
  }
  
  .nav .sub-list {
    position: absolute;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out opacity;
    padding: 0;
    margin: 0;
    padding-top: 44px;
    width: 100%;
    min-width: 241px;
  }
  
  .nav .sub-list li {
    position: relative;
    padding: 0.8em 1.5em 0.8em 1.5em;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
  }
  
  .nav .sub-list > li:hover {
    background-color: rgba(230, 230, 230, 0.95);
    cursor: pointer;
  }
  
  .nav .sub-list .sub-sublist {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 242px;
    top: 0;
    padding-left: 0;
    transition: 0.5s ease-in-out opacity;
  }
  
  .nav .sub-list li:hover .sub-sublist {
    opacity: 1;
    visibility: visible;
  }
  
  .nav .sub-list .sub-sublist li {
    width: 257.39px;
    background-color: rgba(230, 230, 230, 0.8);
  }
  
  .search-container:hover {
    cursor: pointer;

  }
  
  .search-container .search {
    position: relative;
    height: 40px;
    width: auto;
  }
  
  .search input {
    border: 1px solid #e6e6e6;
    height: 100%;
    font-size: 1.2em;
    position: relative;
    background-color: transparent;
    z-index: 1;
  }
  
  .search input[type="text"] {
    border-radius: 100px;
    padding-left: 6px;
    width: 40px;
    color: transparent;
    transition: 0.5s ease-in-out width, 0.5s ease-in-out border;
  }
  
  .search input[type="submit"] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
  }
  
  .search-container {
    position: absolute;
    right: 90px;
  }

  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .search-container {
        top: 32px;
    }
  }

  .search-container .search input[type="text"]:focus {
    width: 904px;
    border-radius: 5px;
    color: #6ca438;
    background-color: white;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 2px solid #95c11f;
  }
  
  .search-container .search input[type="text"]:focus + i + input[type="submit"] {
    visibility: visible;
    opacity: 1;
    color: #e6e6e6;
    border-left: 0;
    width: 40px;
  }
  
  .search-container .search input[type="text"]:focus + .search-icon-holder + .search-icon-holder.close {
    display: inherit;
  }
  
  .search.active {
    display: inherit;
  }
  
  .search-container .search i {
    color: #e6e6e6;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    font-size: 16px;
  }

  .search-container .search-icon-holder {
    position: absolute;
    overflow:hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 40px;
    height: 100%;
  }

  .search-container .search-icon-holder.close {
    z-index: 2;
    right: -18px;
    left: inherit;
    border-left: 2px solid #95c11f;
    display: none;
  }

  .search-container .search-icon-holder.close i {
    font-size: 22px;
    color: #d68331;
  }

  .search.active {
    width: 200px;
    border-radius: 10px;
  }
  
  .search.active i {
    left: calc(100% - 20px);
    width: 20px;
  }
  
  .mobile-hamburger {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .mobile-hamburger .menu,
  .mobile-hamburger .search {
    width: 87px;
    height: 72px;
    position: relative;
    float: left;
  }
  
  .mobile-hamburger .menu {
    background-color: #6ca438;
    opacity: 1 !important;
  }
  
  .mobile-hamburger .search {
    background: #009591;
  }
  
  .mobile-hamburger a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 35px;
  }
  
  @media (max-width: 1316px) {
    .nav {
      flex-direction: column;
      justify-content: center;
      height: 120px;
    }
    .nav > ul {
      margin: 0;
      padding: 0;
      width: 100%;
      justify-content: center;
    }
  
    .nav > ul > li:last-of-type {
      padding: 0;
    }
  
    .nav .sub-list {
      padding-top: 21px;
    }
  
    .search-container {
      position: absolute;
      top: 30px;
      right: 110px;
    }

    .search-container .search input[type="text"]:focus {
      width: 200px;
    }
  }
  
  @media (max-width: 1080px) {
    .nav {
      padding: 0 70px;
    }
  }
  
  @media (max-width: 984px) {
    .nav {
      position: relative;
      height: 74px;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 0;
      padding-left: 20px;
      background-color: white;
      z-index: 10;
    }
  
    .nav > ul {
      position: absolute;
      display: inline-block;
      width: auto;
      z-index: 3;
      top: 74px;
      height: calc(100vh - 76px);
      overflow: auto;
      transition: 0.5s ease-in-out right;
    }
  
    .nav > ul.mobile-inactive {
      right: -270px;
    }
  
    .nav > ul.mobile-active {
      right: 0;
    }
  
    .nav ul .search {
      display: none;
    }
  
    .mobile-hamburger {
      display: inline-block;
      z-index: 100000000000;
    }
  
    .nav ul > li {
      padding-right: 0;
      background-color: rgba(108, 164, 56, 0.95);
    }
  
    .nav ul > li a,
    .nav ul > li:last-of-type a {
      padding: 12px 23px 12px 23px;
    }
  
    .nav ul > li:last-of-type {
      padding-bottom: 50px;
    }
  
    .nav ul > li a,
    .nav .sub-list > a {
      color: white;
    }
  
    .nav ul .sub-list,
    .nav .sub-list .sub-sublist {
      opacity: 1;
      visibility: visible;
      position: relative;
      display: none;
      left: 0;
      top: 0;
      padding: 0;
      width: 100%;
    }
  
    .nav .sub-list li,
    .nav .sub-list .sub-sublist li {
      padding: 0;
      width: 100%;
    }
  
    .nav .sub-list li {
      background-color: #009591;
    }
  
    .nav .sub-sublist li {
      background-color: #dadada;
    }
  
    .nav .sub-list .sub-sublist a {
      color: black;
    }
  
    .nav .sub-list:hover > li {
      background-color: #009591;
    }
  }
  
  @media (max-width: 375px) {
    .nav .logo {
      width: 42%;
    }
  
    .nav .logo a,
    .nav .logo img {
      width: 100%;
    }
  }
  
  @media (max-width: 345px) {
    .nav {
      padding-left: 10px;
    }
  }
  
  
  #search-form {
  position: relative;
  overflow: hidden;
  height: 40px;
  }

  .search-error {
    font-size: 1rem !important;
    color: white !important;
  }

  #lcqualitybadge {
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 50;
  }

  .visible-lg, .visible-md, .visible-sm, .visible-xs {
    display: none;
  }

  @media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }
  }