@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: "FuturaBookC";
  src: local("FuturaBookC"), url("../fonts/woff2/FuturaBookC.woff2") format("woff2"), url("../fonts/woff/FuturaBookC.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "FuturaDemiC";
  src: local("FuturaDemiC"), url("../fonts/woff2/FuturaDemiC.woff2") format("woff2"), url("../fonts/woff/FuturaDemiC.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "FuturaLightC"; 
  src: local("FuturaLightC"), url("../fonts/woff2/FuturaLightC.woff2") format("woff2"), url("../fonts/woff/FuturaLightC.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "FuturaMediumC";
  src: local("FuturaMediumC"), url("../fonts/woff2/FuturaMediumC.woff2") format("woff2"), url("../fonts/woff/FuturaMediumC.woff") format("woff");
  font-display: swap;
}
:root {
  --black: #000;
  --light-black: #11190A;
  --gray: #9D9D9D;
  --green: #697200;
  --green-op: rgba(105, 114, 0, 0.1);
  --light-green: #D5D862;
  --dark-green: #323C00;
  --white: #fff;
  --main-size: 24px;
  --main-font-weight: 400;
  --main-line-height: 27.17px;
  --rubik: "Rubik", sans-serif;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: var(--main-font-weight);
  font-size: var(--main-size);
  line-height: var(--main-line-height);
  color: var(--black);
}
body.hidden {
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  padding: 0 80px;
  position: relative;
}
@media (max-width: 992px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.container__product-slider {
  margin: auto;
  width: 100%;
  padding: 0 77px;
  max-width: 1440px;
}
@media (max-width: 992px) {
  .container__product-slider {
    padding: 0 20px;
  }
}

button {
  background-color: transparent;
  border: none;
  border-color: none;
}

h2 {
  font-size: 40px;
  line-height: 47px;
  color: var(--green);
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  h2 {
    text-align: center;
    font-size: 28px;
    line-height: 38px;
  }
}

h3 {
  font-size: 38px;
  line-height: 44px;
  color: var(--green);
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  h3 {
    text-align: center;
    font-size: 22px;
    line-height: 32px;
  }
}

h4 {
  font-size: 28px;
  line-height: 33px;
  color: var(--dark-green);
  font-weight: 600;
}
@media (max-width: 992px) {
  h4 {
    text-align: center;
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 992px) {
  p {
    font-size: 24px;
    line-height: 34px;
    text-align: center !important;
  }
}

.btn {
  border-radius: 10px;
  font-size: 26px;
  line-height: 29px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  background-color: transparent;
  text-transform: uppercase;
  width: fit-content;
  color: var(--light-black);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .btn {
    font-size: 18px;
    line-height: 29px;
    padding: 0 20px;
    height: 56px;
  }
}
.btn--header {
  padding: 0 20px;
  font-size: 20px;
  line-height: 23px;
  height: 53px;
  background-color: var(--light-green);
}
.btn--color {
  background-color: var(--light-green);
}
.btn--about {
  color: var(--dark-green);
  border: 1px solid var(--dark-green);
}
.btn--about-two {
  color: var(--green);
  border: 1px solid var(--green);
}
.btn--form {
  background-color: var(--green);
  color: var(--white);
}
.btn--transparent {
  color: var(--white);
  border: 1px solid var(--white);
}

.button-square {
  font-size: 28px;
  line-height: 28px;
  border: 1px solid var(--black);
  padding-left: 20px;
  padding-right: 20px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  width: fit-content;
}
@media (max-width: 1207px) {
  .button-square {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .button-square {
    font-size: 16px;
    height: 37px;
  }
}


/* Main menu item styling */
.menu-item {
  position: relative;
  list-style: none;
  padding: 10px 15px;
}

.menu-item > a {
  text-decoration: none;
  position: relative;
  padding-right: 15px; /* Add space for the arrow */
}

/* Add a custom arrow for dropdown */
.menu-item.menu-item-has-children > a::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid #fff; /* Arrow color */
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  transition: transform 0.3s ease; /* Smooth rotation transition */
}

/* Rotate the arrow when the submenu is active */
.menu-item:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
}


/* Submenu container styling */
.menu-item .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* Show submenu on hover */
.menu-item:hover .sub-menu {
  display: block;
}

/* Submenu item styling */
.menu-item .sub-menu .menu-item {
  padding: 5px 15px;
}

.menu-item .sub-menu .menu-item a {
  color: #333;
  text-decoration: none;
  font-weight: normal;
}

.menu-item .sub-menu .menu-item a:hover {
  color: var(--dark-green);;
}

/*# sourceMappingURL=settings.css.map */
