/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 10 2024 | 16:13:12 */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@200;300;400;500;600;700&display=swap');
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      text-decoration: none;
      font-family: 'Rubik';
    }
    .wrapper {
      background: #2B581B;
      position: fixed;
      width: 100%;
    }
    .wrapper nav {
      position: relative;
      display: flex;
      max-width: calc(100% - 200px);
      margin: 0 auto;
      height: 70px;
      align-items: center;
      justify-content: space-between;
    }
    nav .content {
      display: flex;
      align-items: center;
      margin-left: auto;
      margin-right: auto;
    }
    .content .logo a img {
      height: 60px;
      width: 60px;
      display: flex;
      align-items: center;
      margin-left: auto;
      margin-right: auto;
    }
    nav .content .links {
      margin-left: 80px;
      display: flex;
      margin: auto;
    }
    .content .logo a {
      color: #fff;
      font-size: 30px;
      font-weight: 600;
      display: flex;
      align-items: center;
      margin-left: auto;
      margin-right: 100px;
    }
	.content .links {
	  margin-left: 80px;
	  display: flex;
	  margin: auto;
	  list-style: none; /* Add this line */
	}

	.content .links li {
	  list-style: none; /* Add this line */
	  line-height: 70px;
	}

    .content .links li {
      list-style: none;
      line-height: 70px;
    }
    .content .links li a,
    .content .links li label {
      color: #fff;
      font-size: 18px;
      font-weight: 500;
      padding: 9px 17px;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .content .links li label {
      display: none;
    }
    .content .links li a:hover,
    .content .links li label:hover {
      background: #A6CC99;
      color: #2B581B;
      border-radius: 5px;
    }
    .wrapper .menu-icon {
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      line-height: 70px;
      width: 70px;
      text-align: center;
      display: none;
    }
    .wrapper input[type="checkbox"] {
      display: none;
    }
    .content .links ul {
      position: absolute;
      background: #243A1C;
      border-radius: 0 0 8px 8px;
      top: 80px;
      z-index: -1;
      opacity: 0;
      visibility: hidden;
    }
    .content .links li:hover > ul {
      top: 70px;
      opacity: 1;
      visibility: visible;
      transition: all 0.3s ease;
    }
    .content .links ul li a {
      display: block;
      width: 100%;
      line-height: 30px;
    }
    .content .links ul ul {
      position: absolute;
      top: 0;
      right: calc(-100% + 60px);
    }
    .content .links ul li {
      position: relative;
    }
    .content .links ul li:hover ul {
      top: 0;
    }
    .quote-button {
      border-radius: 50px;
      color: #FFF;
      background-color: #FF9A25;
      border-style: solid;
      border-color: #FFF;
      border-width: 2px;
      padding: 10px 20px;
      text-decoration: none;
      font-weight: 500;
    }
    .quote-button:hover {
      background-color: #FFF;
      color: #FF9A25;
    }
    .quote-button-mobile {
      display: none;
    }
    @media screen and (max-width: 1250px) {
      .wrapper nav {
        max-width: 100%;
        padding: 0 20px;
      }
      nav .content .links {
        margin-left: 30px;
      }
      .content .links li a {
        padding: 8px 13px;
      }
      .content .logo a {
        margin-right: auto;
      }
    }
    @media screen and (max-width: 900px) {
      .wrapper .menu-icon {
        display: block;
      }
      .wrapper #show-menu:checked ~ .menu-icon i::before {
        content: "\f00d";
      }
      nav .content .links {
        display: block;
        position: fixed;
        background: #14181f;
        height: 100%;
        width: 100%;
        top: 70px;
        left: -100%;
        margin-left: 0;
        max-width: 350px;
        overflow-y: auto;
        padding-bottom: 100px;
        transition: all 0.3s ease;
      }
      nav #show-menu:checked ~ .content .links {
        left: 0%;
      }
      .content .links li {
        margin: 15px 20px;
      }
      .content .links li a,
      .content .links li label {
        line-height: 40px;
        font-size: 20px;
        display: block;
        padding: 8px 18px;
        cursor: pointer;
      }
      .content .links li a.desktop-link {
        display: none;
      }
      .content .links ul,
      .content .links ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0px;
        overflow: hidden;
      }
      .content .links #show-features:checked ~ ul,
      .content .links #show-services:checked ~ ul,
      .content .links #show-items:checked ~ ul {
        max-height: 100vh;
      }
      .content .links ul li {
        margin: 7px 20px;
      }
      .content .links ul li a {
        font-size: 18px;
        line-height: 30px;
      }
      .quote-button-desktop {
        display: none;
      }
      .quote-button-mobile {
        display: block;
      }
    }
    @media screen and (max-width: 400px) {
      .wrapper nav {
        padding: 0 10px;
      }
      .content .logo a {
        font-size: 27px;
      }
    }