/* ======================================================
   ██████  TEMPLATE CORE STYLES — DO NOT EDIT
   SOURCE: Menu Template
   STATUS: FROZEN
====================================================== */

/* ======================================================
   ██████  GLOBAL SITE STYLES (ALL PAGES)
====================================================== */

body {
  font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
               "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #fff;
  position: relative;
}

body:before {
  content: "";
  position: fixed; /* <-- REQUIRED FIX */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: .3s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

body.offcanvas-menu:before {
  opacity: 1;
  z-index: 1002;
  visibility: visible;
}

p {
  color: #b3b3b3;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
               "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

a {
  transition: .3s all ease;
}

a, a:hover {
  text-decoration: none !important;
}

/* ======================================================
   ██████  HERO / LANDING IMAGE (INDEX ONLY)
====================================================== */

.hero {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ======================================================
   ██████  NAVIGATION / HEADER (MENU TEMPLATE)
====================================================== */

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: absolute;
  width: 100%;
  top: 2rem;
}

.site-navbar .container-fluid {
  padding-left: 7rem;
  padding-right: 7rem;
}

@media (max-width: 1199.98px) {
  .site-navbar .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* =========================
   LOGO (LEFT SIDE)
   ========================= */

.site-navbar .site-logo {
  position: absolute;
  left: 5%;
}

@media (max-width: 767.98px) {
  .site-navbar .site-logo {
    position: relative;
    left: auto;
  }
}

.site-navbar .site-logo a {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .2rem;
  text-transform: uppercase;
}

.site-navbar .site-logo a:hover {
  text-decoration: none;
}

/* ======================================================
   ██████  CTA MENU (RIGHT SIDE)
====================================================== */

.site-navbar .site-burger-menu,
.site-navbar .right-cta-menu {
  position: absolute;
  right: 5%;
}

@media (max-width: 767.98px) {
  .site-navbar .site-burger-menu,
  .site-navbar .right-cta-menu {
    position: relative;
    right: auto;
  }
}

/* The wrapper .ml-auto no longer needs flex */
.right-cta-menu .ml-auto { }

/* Desktop horizontal menu */
.right-cta-menu .site-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.right-cta-menu .site-menu > li {
  display: inline-flex;
  position: relative;
}

/* =========================
   DROPDOWN MENU
   ========================= */

.right-cta-menu .site-menu .dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  padding: 0;
  margin-top: 5px;
  list-style: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease;
  z-index: 999;
  width: max-content;
  min-width: 200px;
}

.right-cta-menu .site-menu .dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #212529;
  text-decoration: none;
  white-space: normal;
}

.right-cta-menu .site-menu .has-children:hover > .dropdown {
  visibility: visible;
  opacity: 1;
}

.right-cta-menu .site-menu .dropdown li a:hover {
  background: #f8f9fa;
  color: #89ba16;
}

/* ======================================================
   ██████  SITE NAVIGATION (CENTER)
====================================================== */

.site-navbar .site-menu-toggle {
  color: #fff;
  line-height: 0;
  font-size: 2.5rem;
  position: relative;
}

@media (max-width: 767.98px) {
  .site-navbar .site-menu-toggle {
    margin-left: 5px;
  }
}

.site-navbar .site-navigation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu .active {
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
  position: relative;
}

.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
}

.site-navbar .site-navigation .site-menu > li > a {
  padding: 20px 20px !important;
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  text-decoration: none !important;
}

.site-navbar .site-navigation .site-menu > li > a:hover {
  color: #fff;
}

/* =========================
   CENTER DROPDOWN MENU
   ========================= */

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children > a {
  position: relative;
  padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children > a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: 'icomoon';
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #89ba16;
  box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.2);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

/* ======================================================
   ██████  MOBILE MENU (OFFCANVAS)
====================================================== */

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  transform: translateX(110%);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  transition: 0.2s all cubic-bezier(0.66, 0.2, 0.48, 0.9);
}

.offcanvas-menu .site-mobile-menu {
  transform: translateX(0%);
}

/* ======================================================
   ██████  MOBILE MENU STRUCTURE (HEADER + BODY)
====================================================== */

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  line-height: 1;
  cursor: pointer;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #dee2e6;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

/* ======================================================
   ██████  MOBILE MENU NAV LINKS
====================================================== */

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529;
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: #89ba16;
  text-decoration: none;
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li .active {
  color: #000;
}

/* ======================================================
   ██████  MOBILE MENU COLLAPSE ARROWS
====================================================== */

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-180deg);
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  transform: translate(-50%, -50%);
}

/* ======================================================
   ██████  MOBILE MENU SUB-MENUS
====================================================== */

.site-mobile-menu .site-nav-wrap > li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap > li > ul > li {
  display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  font-size: 16px;
  padding-left: 60px;
}

/* ======================================================
   ██████  MOBILE SOCIAL LINKS (OPTIONAL)
====================================================== */

.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li {
  width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
  padding-left: 15px !important;
}

/* ======================================================
   ██████  STICKY NAVIGATION
====================================================== */

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper + .site-blocks-cover {
  margin-top: 96px;
}

.sticky-wrapper .site-menu-toggle {
  color: #000;
}

@media (max-width: 991.98px) {
  .sticky-wrapper .site-menu-toggle {
    color: #fff;
  }
}

.sticky-wrapper .site-navbar {
  transition: .3s all ease;
}

.sticky-wrapper .site-navbar .site-menu > li {
  display: inline-block;
}

.sticky-wrapper .site-navbar .site-menu > li > a {
  position: relative;
}

.sticky-wrapper .site-navbar .site-menu > li > a:after {
  height: 2px;
  background: #fff;
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  transform: scale(0);
  transition: .3s all ease;
}

.sticky-wrapper .site-navbar .site-menu > li > a:hover,
.sticky-wrapper .site-navbar .site-menu > li > a.active {
  color: #fff;
  position: relative;
}

.sticky-wrapper .site-navbar .site-menu > li > a:hover:after,
.sticky-wrapper .site-navbar .site-menu > li > a.active:after {
  transform: scale(1);
}

.sticky-wrapper.is-sticky .site-menu-toggle {
  color: #000;
}

.sticky-wrapper.is-sticky .site-navbar {
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: #000;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li {
  display: inline-block;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
  position: relative;
  color: #000;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:after {
  height: 2px;
  background: #89ba16;
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  transform: scale(0);
  transition: .3s all ease;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover,
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
  color: #89ba16;
  position: relative;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover:after,
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active:after {
  transform: scale(1);
}

.sticky-wrapper .shrink {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* ======================================================
   ██████  BUTTON STYLES
====================================================== */

.btn:after, .btn:before {
  display: none;
}

.btn:hover, .btn:focus, .btn:active {
  outline: none;
  box-shadow: none !important;
}

.btn.btn-primary {
  color: #fff;
  background: #89ba16;
  border-color: #89ba16;
}

.btn.btn-primary:hover {
  background: #90c317;
  border-color: #90c317;
}

.btn.btn-outline-white {
  background: transparent;
  border-width: 2px;
  border-color: #fff;
  color: #fff;
}

.btn.btn-outline-white:hover {
  background: #fff;
  color: #000;
}

.btn.btn-outline-primary {
  color: #89ba16;
}

.btn.btn-outline-primary:hover {
  color: #fff;
  background: #89ba16;
}
