:root {
  --theme-font-primary: "Instrument Sans", sans-serif;
  --theme-font-secondary: "Lora", serif;
  --theme-font-formal: "Ephesis", cursive;
  --theme-color-white-100: rgba(255, 255, 255, 0.1);
  --theme-color-white-200: rgba(255, 255, 255, 0.2);
  --theme-color-white-300: rgba(255, 255, 255, 0.3);
  --theme-color-white-400: rgba(255, 255, 255, 0.4);
  --theme-color-white-500: rgba(255, 255, 255, 0.5);
  --theme-color-white-600: rgba(255, 255, 255, 0.6);
  --theme-color-white-700: rgba(255, 255, 255, 0.7);
  --theme-color-white-800: rgba(255, 255, 255, 0.8);
  --theme-color-white-900: rgba(255, 255, 255, 0.9);
  --theme-color-white: #FFFFFF;
  --theme-color-black-100: rgba(0, 0, 0, 0.1);
  --theme-color-black-200: rgba(0, 0, 0, 0.2);
  --theme-color-black-300: rgba(0, 0, 0, 0.3);
  --theme-color-black-400: rgba(0, 0, 0, 0.4);
  --theme-color-black-500: rgba(0, 0, 0, 0.5);
  --theme-color-black-600: rgba(0, 0, 0, 0.6);
  --theme-color-black-700: rgba(0, 0, 0, 0.7);
  --theme-color-black-800: rgba(0, 0, 0, 0.8);
  --theme-color-black-900: rgba(0, 0, 0, 0.9);
  --theme-color-black: #000000;
  --theme-color-light: #F9F9FC;
  --theme-color-primary: #6BB444;
  --theme-color-primary-dark: #47782D;
  --theme-color-primary-light: #EEF6EA;
  --theme-color-secondary: #2F1B12;
  --theme-color-secondary-dark: #1F120C;
  --theme-color-secondary-light: #E7E5E4;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--theme-font-primary);
  position: relative;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  background-color: var(--theme-color-white) !important;
  overflow-x: hidden !important;
  color: var(--theme-color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

section {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

p,
li,
address,
label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--theme-color-black-800);
  margin-bottom: 0.5rem;
}

p:last-child,
li:last-child,
address:last-child,
label:last-child {
  margin-bottom: 0;
}

main {
  position: relative;
}

a {
  transition: all 0.3s ease-in-out;
}

.font-primary {
  font-family: var(--theme-font-primary);
}

.font-secondary {
  font-family: var(--theme-font-secondary);
}

.font-formal {
  font-family: var(--theme-font-formal);
}

.font-weight-300 {
  font-weight: 300 !important;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-700 {
  font-weight: 700 !important;
}

.font-size-1 {
  font-size: 45px !important;
}

.font-size-2 {
  font-size: 38px !important;
}

.font-size-3 {
  font-size: 35px !important;
}

.font-size-4 {
  font-size: 25px !important;
}

.font-size-5 {
  font-size: 20px !important;
}

.font-size-default {
  font-size: 16px !important;
}

.font-size-normal {
  font-size: 14px !important;
}

.font-size-small {
  font-size: 13px !important;
}

.letter-spacing-1 {
  letter-spacing: 1px !important;
}

.letter-spacing-0 {
  letter-spacing: 0px !important;
}

.line-height-0 {
  line-height: 0 !important;
}

.line-height-1 {
  line-height: 1 !important;
}

.line-height-default {
  line-height: 1.5 !important;
}

.text-decoration-hover-underline {
  text-decoration: inherit !important;
}

.text-decoration-hover-underline:hover {
  text-decoration: underline !important;
}

.text-color-white {
  color: var(--theme-color-white) !important;
}

.text-color-white-gray {
  color: var(--theme-color-white-700) !important;
}

.text-color-black {
  color: var(--theme-color-black) !important;
}

.text-color-black-gray {
  color: var(--theme-color-black-700) !important;
}

.text-color-light {
  color: var(--theme-color-light) !important;
}

.text-color-yellow {
  color: var(--theme-color-yellow) !important;
}

.text-color-primary {
  color: var(--theme-color-primary) !important;
}

.text-color-primary-light {
  color: var(--theme-color-primary-light) !important;
}

.text-color-primary-dark {
  color: var(--theme-color-primary-dark) !important;
}

.text-color-secondary {
  color: var(--theme-color-secondary) !important;
}

.text-color-secondary-light {
  color: var(--theme-color-secondary-light) !important;
}

.text-color-secondary-dark {
  color: var(--theme-color-secondary-dark) !important;
}

.text-color-hover-white {
  color: var(--theme-color-white) !important;
}

.text-color-hover-white:hover {
  color: var(--theme-color-white-600) !important;
}

.text-color-hover-white-gray {
  color: var(--theme-color-white-700) !important;
}

.text-color-hover-white-gray:hover {
  color: var(--theme-color-white) !important;
}

.text-color-hover-black {
  color: var(--theme-color-black) !important;
}

.text-color-hover-black:hover {
  color: var(--theme-color-black-600) !important;
}

.text-color-hover-black-gray:hover {
  color: var(--theme-color-black) !important;
}

.text-color-hover-primary {
  color: var(--theme-color-primary) !important;
}

.text-color-hover-primary:hover {
  color: var(--theme-color-primary-dark) !important;
}

.text-color-hover-secondary {
  color: var(--theme-color-secondary) !important;
}

.text-color-hover-secondary:hover {
  color: var(--theme-color-secondary-dark) !important;
}

.background-color-white {
  background-color: var(--theme-color-white) !important;
}

.background-color-black {
  background-color: var(--theme-color-black) !important;
}

.background-color-light {
  background-color: var(--theme-color-light) !important;
}

.background-color-primary {
  background-color: var(--theme-color-primary) !important;
}

.background-color-primary-dark {
  background-color: var(--theme-color-primary-dark) !important;
}

.background-color-primary-light {
  background-color: var(--theme-color-primary-light) !important;
}

.background-color-secondary {
  background-color: var(--theme-color-secondary) !important;
}

.background-color-secondary-dark {
  background-color: var(--theme-color-secondary-dark) !important;
}

.background-color-secondary-light {
  background-color: var(--theme-color-secondary-light) !important;
}

.background-color-gray {
  background-color: var(--theme-color-gray) !important;
}

.background-img-scroll {
  position: relative;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-img-fixed {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-img-repeat {
  position: relative;
  background-attachment: scroll;
  background-position: center;
  background-repeat: repeat;
  background-size: auto;
}

.btn {
  position: relative;
  border: none;
  padding: 0;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 2px;
  border-radius: 0.3rem;
  transition: all 0.3s ease-in-out;
}

.btn-lg {
  font-size: 12px;
  min-height: 50px;
  padding: 2px 25px;
}

.btn-sm {
  font-size: 11px;
  min-height: 30px;
  padding: 2px 25px;
}

.btn:focus:not(:focus-visible) {
  outline: none;
}

.btn-solid-primary {
  color: var(--theme-color-white);
  background-color: var(--theme-color-primary);
}

.btn-solid-primary:hover {
  color: var(--theme-color-white);
  background-color: var(--theme-color-primary-dark);
}

.btn-solid-secondary {
  color: var(--theme-color-white);
  background-color: var(--theme-color-secondary);
}

.btn-solid-secondary:hover {
  color: var(--theme-color-white);
  background-color: var(--theme-color-secondary-dark);
}

.btn-solid-black {
  color: var(--theme-color-white);
  background-color: var(--theme-color-black);
}

.btn-solid-black:hover {
  color: var(--theme-color-white);
  background-color: var(--theme-color-black);
}

.btn-solid-white {
  color: var(--theme-color-black);
  background-color: var(--theme-color-white);
}

.btn-solid-white:hover {
  color: var(--theme-color-black);
  background-color: var(--theme-color-white);
}

.btn-border-primary {
  color: var(--theme-color-primary);
  background-color: transparent;
  border: 2px solid var(--theme-color-primary);
}

.btn-border-primary:hover {
  color: var(--theme-color-white);
  background-color: var(--theme-color-primary);
}

.btn-border-primary:focus:not(:focus-visible) {
  border: 2px solid var(--theme-color-primary);
}

.btn-border-secondary {
  color: var(--theme-color-secondary);
  background-color: transparent;
  border: 2px solid var(--theme-color-secondary);
}

.btn-border-secondary:hover {
  color: var(--theme-color-white);
  background-color: var(--theme-color-secondary);
}

.btn-border-secondary:focus:not(:focus-visible) {
  border: 2px solid var(--theme-color-secondary);
}

.btn-border-black {
  color: var(--theme-color-black);
  background-color: transparent;
  border: 2px solid var(--theme-color-black);
}

.btn-border-black:hover {
  color: var(--theme-color-white);
  background-color: var(--theme-color-black);
}

.btn-border-black:focus:not(:focus-visible) {
  border: 2px solid var(--theme-color-black);
}

.btn-border-white {
  color: var(--theme-color-white);
  background-color: transparent;
  border: 2px solid var(--theme-color-white);
}

.btn-border-white:hover {
  color: var(--theme-color-black);
  background-color: var(--theme-color-white);
}

.btn-border-white:focus:not(:focus-visible) {
  border: 2px solid var(--theme-color-white);
}

.hr-black {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid var(--theme-color-black-300);
}

.hr-white {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid var(--theme-color-white-300);
}

/* PRELOADER */
#preLoader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: var(--theme-color-white);
  z-index: 99999;
  overflow: hidden !important;
}

#preLoader .loader-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

#preLoader .loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid var(--theme-color-primary);
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* MENU TOGGLE */
.menu-toggle {
  background-color: var(--theme-color-white) !important;
  height: 35px;
  min-height: 35px;
  width: 95px;
  min-width: 95px;
  border-radius: 0 !important;
  cursor: pointer;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

/* PARALLAX IMAGE */
.img-parallax-wrapper {
  position: relative;
}

.img-parallax-wrapper .img-parallax {
  position: absolute;
  top: 50%;
  opacity: 0.1;
  z-index: 0;
  white-space: nowrap;
}

.img-parallax-wrapper .img-parallax[data-parallax-direction="center"] {
  left: 50%;
}

.img-parallax-wrapper .img-parallax[data-parallax-direction="right"] {
  left: 100%;
}

.img-parallax-wrapper .img-parallax[data-parallax-direction="left"] {
  left: 0;
}


/* MAIN NAVIGATION */
#mainNavigation.navbar {
  position: absolute;
  top: auto;
  left: 0;
  width: 100%;
  min-height: 56px;
  transition: all 0.3s ease-in-out;
  z-index: 1030;
}

#mainNavigation.navbar.fixed {
  position: fixed;
  top: 0;
}

#mainNavigation.navbar .nav-item {
  margin-bottom: 0;
}

#mainNavigation.navbar .nav-item .nav-link {
  position: relative;
  font-family: var(--theme-font-secondary);
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--theme-color-white);
  padding: 20px 25px;
  margin: 0;
  line-height: 1;
}

#mainNavigation.navbar .nav-item .nav-link:hover,
#mainNavigation.navbar .nav-item:hover .nav-link {
  background-color: var(--theme-color-black-200);
}

#mainNavigation.navbar .nav-item {
  position: relative;
}

#mainNavigation.navbar .nav-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--theme-color-white-200);
  z-index: 1;
}

#mainNavigation.navbar .nav-item:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--theme-color-white-200);
  z-index: 1;
}

#mainNavigation.navbar .nav-item .nav-dropdown {
  position: absolute;
  top: 100%;
  min-width: 240px;
  max-height: 0;
  padding: 0;
  background-color: var(--theme-color-secondary-light);
  list-style: none;
  overflow: hidden;
  transition: opacity 0.2s ease-out, max-height 0.3s ease-out;
  pointer-events: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
  opacity: 0;
  z-index: 1020;
}

#mainNavigation.navbar .nav-item:hover .nav-dropdown {
  opacity: 1;
  max-height: 260px;
  pointer-events: auto;
}

#mainNavigation.navbar .nav-dropdown .nav-dropdown-item {
  position: relative;
  margin-bottom: 0;
}

#mainNavigation.navbar .nav-dropdown .nav-dropdown-item .nav-dropdown-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  text-align: left;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--theme-font-secondary);
  color: var(--theme-color-secondary);
  text-decoration: none;
  margin: 0 15px;
  padding: 10px 2px;
}

#mainNavigation.navbar .nav-dropdown .nav-dropdown-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--theme-color-black-100);
  z-index: 1;
}

#mainNavigation.navbar .nav-dropdown .nav-dropdown-item:last-child::after {
  height: 0;
}

#mainNavigation.navbar .nav-dropdown .nav-dropdown-item .nav-dropdown-link:hover,
#mainNavigation.navbar .nav-dropdown-item:hover .nav-dropdown-link,
#mainNavigation.navbar .nav-dropdown-item .nav-dropdown-link.active {
  color: var(--theme-color-primary);
}


#mobileNavigation {
  position: relative;
  top: 56px;
  overflow: hidden;
  max-height: 0;
  background-color: var(--theme-color-light);
  z-index: 1030;
  transition: max-height 0.3s ease-out;
}

#mobileNavigation.active {
  max-height: 600px
}

#mobileNavigation .navbar-nav .nav-item {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 15px;
  text-align: left;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--theme-font-secondary);
  color: var(--theme-color-secondary);
  text-decoration: none;
}

#mobileNavigation .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--theme-color-black-100);
  z-index: 1;
}

#mobileNavigation .navbar-nav .nav-item:last-child::after {
  height: 0;
}

#mobileNavigation .navbar-nav .nav-item .nav-link.active {
  color: var(--theme-color-primary);
}


/* PRODUCTS ITEMS LIST */
.product-item-wrapper {
  position: relative;
  border: 1px solid var(--theme-color-black-100);
  overflow: hidden;
  height: 100%;
}

.product-item-wrapper .product-item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40;
}

.product-item-wrapper .product-item-bg {
  min-height: 430px;
  position: relative;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-item-wrapper .product-item-overlay, 
.product-item-wrapper .product-item-content {
  will-change: opacity, transform;
}

.product-item-wrapper .product-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, var(--theme-color-black) 0%, transparent 100%);
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
  z-index: 10;
}

.product-item-wrapper:hover .product-item-overlay {
  opacity: 1;
}

.product-item-wrapper .product-item-content {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(1.5rem);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  z-index: 45;
}

.product-item-wrapper:hover .product-item-content {
  transform: translateY(-1.5rem);
}


/* NAV TABS */
#navTabs.nav {
  position: relative;
}

#navTabs.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--theme-color-black-200);
  z-index: 10;
}

#navTabs .nav-item {
  margin-bottom: 0;
}

#navTabs .nav-item .nav-link {
  position: relative;
  color: var(--theme-color-black);
  padding: 15px;
  line-height: 1;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  z-index: 15;
}

#navTabs .nav-item .nav-link:hover {
  color: var(--theme-color-primary-dark);
  border-bottom: 2px solid var(--theme-color-primary-dark);
}

#navTabs .nav-item .nav-link.active {
  color: var(--theme-color-primary-dark);
  border-bottom: 2px solid var(--theme-color-primary-dark);
}


/* PRODUCT SLIDER */
#productsliderNav .slick-slide {
  margin: 0 calc(var(--bs-gutter-x) * 0.5);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

#productsliderNav .slick-current {
  opacity: 1;
}

#productsliderNav .slick-list {
  margin: 0 calc(-0.5 * var(--bs-gutter-x));
}


/* TESTIMONIALS */
#testimonialCarousel .slick-slide {
  margin: 0 calc(var(--bs-gutter-x) * 0.5);
}
#testimonialCarousel .slick-list {
  margin: 0 calc(-0.5 * var(--bs-gutter-x));
}


/* OTHER PRODUCTS SLIDER */
#otherproductsCarousel .slick-slide {
  margin: 0 calc(var(--bs-gutter-x) * 0.5);
}
#otherproductsCarousel .slick-list {
  margin: 0 calc(-0.5 * var(--bs-gutter-x));
}


/* COUNTER */
.counter-wrapper .counter-content {
  position: relative;
  border-right: none;
  border-right: 2px dotted var(--theme-color-black-400);
  z-index: 100;
}

.counter-wrapper:last-child .counter-content {
  border-right: none;
}


/* FOOTER */
.footer-list {
  margin-bottom: 0.5rem;
}

.footer-list:last-child {
  margin-bottom: 0;
}


/* FORM */
.form-control {
  display: block;
  width: 100%;
  padding: 10px 10px 10px 0px;
  font-size: 17px;
  color: var(--theme-color-black-900);
  font-weight: 300;
  height: inherit;
  line-height: 1.6;
  text-transform: inherit;
  background-color: transparent;
  background-clip: padding-box;
  border: none !important;
  border-bottom: 1px solid var(--theme-color-black-300) !important;
  border-radius: 1px;
}

.form-control:focus {
  border-bottom: 1px solid var(--theme-color-black-900) !important;
  box-shadow: none !important;
  background-color: transparent;
}


/* RESPONSE MESSAGE */
#responseMessage {
  display: none;
  padding: 10px 13px;
  color: #0071BC;
  background-color: #EBF6FE;
  border: 1px solid #0071BC;
  border-radius: 3px;
}

#responseMessage.success {
  color: #006837;
  background-color: #E6F0EC;
  border: 1px solid #006837;
}

#responseMessage.error {
  color: #C1272D;
  background-color: #F9EAEA;
  border: 1px solid #C1272D;
}


/* MOBILE AND TAB */
@media (max-width: 992px) {
  .counter-wrapper .counter-content {
    position: relative;
    border-bottom: 2px dotted var(--theme-color-black-400);
    z-index: 100;
  }

  .counter-wrapper:nth-child(2) .counter-content {
    border-right: none;
  }
  
  .counter-wrapper:nth-child(3) .counter-content,
  .counter-wrapper:last-child .counter-content {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .font-size-1 {
    font-size: 32px !important;
  }

  .font-size-2 {
    font-size: 29px !important;
  }

  .font-size-3 {
    font-size: 21px !important;
  }

  .font-size-4 {
    font-size: 19px !important;
  }

  .font-size-default {
    font-size: 17px !important;
  }

}