.w-100 {
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-3 {
  margin: 3rem;
}

.m-4 {
  margin: 4rem;
}

.m-5 {
  margin: 5rem;
}

.m-6 {
  margin: 6rem;
}

.m-7 {
  margin: 7rem;
}

.m-8 {
  margin: 8rem;
}

.m-9 {
  margin: 9rem;
}

.my-1 {
  margin: 1rem 0;
}

.my-2 {
  margin: 2rem 0;
}

.my-3 {
  margin: 3rem 0;
}

.my-4 {
  margin: 4rem 0;
}

.my-5 {
  margin: 5rem 0;
}

.my-6 {
  margin: 6rem 0;
}

.my-7 {
  margin: 7rem 0;
}

.my-8 {
  margin: 8rem 0;
}

.my-9 {
  margin: 9rem 0;
}

.mx-1 {
  margin: 0 1rem;
}

.mx-2 {
  margin: 0 2rem;
}

.mx-3 {
  margin: 0 3rem;
}

.mx-4 {
  margin: 0 4rem;
}

.mx-5 {
  margin: 0 5rem;
}

.mx-6 {
  margin: 0 6rem;
}

.mx-7 {
  margin: 0 7rem;
}

.mx-8 {
  margin: 0 8rem;
}

.mx-9 {
  margin: 0 9rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.p-4 {
  padding: 4rem;
}

.p-5 {
  padding: 5rem;
}

.p-6 {
  padding: 6rem;
}

.p-7 {
  padding: 7rem;
}

.p-8 {
  padding: 8rem;
}

.p-9 {
  padding: 9rem;
}

.py-1 {
  padding: 1rem 0;
}

.py-2 {
  padding: 2rem 0;
}

.py-3 {
  padding: 3rem 0;
}

.py-4 {
  padding: 4rem 0;
}

.py-5 {
  padding: 5rem 0;
}

.py-6 {
  padding: 6rem 0;
}

.py-7 {
  padding: 7rem 0;
}

.py-8 {
  padding: 8rem 0;
}

.py-9 {
  padding: 9rem 0;
}

.px-1 {
  padding: 0 1rem;
}

.px-2 {
  padding: 0 2rem;
}

.px-3 {
  padding: 0 3rem;
}

.px-4 {
  padding: 0 4rem;
}

.px-5 {
  padding: 0 5rem;
}

.px-6 {
  padding: 0 6rem;
}

.px-7 {
  padding: 0 7rem;
}

.px-8 {
  padding: 0 8rem;
}

.px-9 {
  padding: 0 9rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: auto;
}

.col {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  -webkit-box-flex: 0;
}

@-webkit-keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  color: #666;
  background-color: #fff;
}

a:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1 {
  font-size: 6rem;
  line-height: 1.1;
  color: #333;
}

h2 {
  font-size: 5rem;
  line-height: 1.1;
}

h3 {
  font-size: 3.6rem;
  line-height: 1.1;
  color: #222;
}

h4 {
  font-size: 2.4rem;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.22;
  color: #333;
  font-weight: 400;
}

h6 {
  font-size: 1.5rem;
  line-height: 1.6rem;
  text-transform: uppercase;
}

ul,
li {
  margin: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

input,
textarea,
label {
  display: block;
  outline: none;
  border: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button {
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

button:focus {
  outline: none;
}

iframe {
  border: none;
}

button::-moz-focus-inner {
  border: 0;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

select {
  background: transparent;
}

img {
  max-width: 100%;
  display: block;
}

.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  min-width: 16.2rem;
  height: 4.6rem;
  border-radius: 23px;
  padding: 0 1.5rem;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.btn--primary {
  background: #749e3e;
}

.btn--primary:hover {
  background: #678c37;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.btn--secondary {
  background-color: #222;
}

.btn--secondary:hover {
  background: #363636;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.form__input-box {
  position: relative;
  border: 0.1rem solid #e6e6e6;
  border-radius: 0.2rem;
}

.form__input {
  width: 100%;
  height: 5rem;
  color: #333;
  padding: 0 3rem 0 6.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.form__input-img {
  top: calc(50% - 0.9rem);
  left: 2.8rem;
  position: absolute;
}

.form__textarea {
  width: 100%;
  min-height: 20rem;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
  padding: 2.5rem 2.8rem;
  border: 1px solid #e6e6e6;
}

.input__box {
  border: 1px solid #e6e6e6;
  border-radius: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.5rem;
}

.input__button {
  width: 3.8rem;
  height: 6rem;
  color: #333;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.input__button:hover {
  color: #036d1b;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.input__field {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.625;
  padding-right: 1.5rem;
  width: calc(100% - 38px);
  height: 6rem;
}

.dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 6.2rem;
  padding: 0 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  color: #666;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0.2rem;
  background: url('img/down.svg') no-repeat right 1.5rem center/12px;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
}

.dropdown__menu {
  background: #fff;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-animation: slide-up 0.3s;
  animation: slide-up 0.3s;
  display: none;
}

.dropdown__item {
  padding: 1rem 0 1rem 1.5rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.dropdown__item:hover {
  background: rgba(116, 158, 62, 0.8);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #fff;
}

.dropdown__item.active {
  background: rgba(116, 158, 62, 0.8);
  color: #fff;
}

@media (max-width: 600px) {
  .dropdown__item {
    padding: 2rem 0 2rem 1.5rem;
  }
}

.show {
  display: block;
}

.go-top-btn {
  position: fixed;
  right: 50px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background: rgba(116, 158, 62, 0.8);
  color: #fff;
  font-size: 2.5rem;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
}

/* Overlay Styles */
.overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* Modal Styles */
.modal {
  width: 90%;
  max-width: 1000px;
  height: 600px;
  position: relative;
  background: #fff;
  z-index: 2;
  padding: 50px;
  -webkit-animation: slide-up 0.7s;
  animation: slide-up 0.7s;
}

@media (max-width: 900px) {
  .modal {
    height: 500px;
  }
}

.modal__icon--close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  cursor: pointer;
}

.modal__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 900px) {
  .modal__container {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.modal h5 {
  color: #222;
  font-weight: 500;
  margin-bottom: 1rem;
}

.modal p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.modal__box--img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  height: 100%;
}

@media (max-width: 900px) {
  .modal__box--img img {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    height: 200px;
    margin-bottom: 2rem;
  }
}

.modal__box--text {
  overflow-y: scroll;
  height: 400px;
  -ms-flex-preferred-size: 65%;
  flex-basis: 65%;
  padding-right: 3rem;
}

@media (max-width: 900px) {
  .modal__box--text {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 0;
    height: auto;
  }
}

.modal__title {
  margin-bottom: 1rem;
}

.modal__phone {
  display: inline-block;
  position: absolute;
  bottom: 20px;
  right: 60px;
}

.phone {
  background: rgba(116, 158, 62, 0.8);
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 26%;
  padding-left: 1rem;
  width: 6rem;
  height: 6rem;
  font-size: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  display: none;
}

@media (max-width: 600px) {
  .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.topbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #749e3e;
  color: #fff;
  height: 4rem;
}

@media (max-width: 500px) {
  .topbar {
    height: auto;
  }
}

.topbar__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 500px) {
  .topbar__container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .topbar__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.topbar i {
  font-size: 1.6rem;
  margin-right: 0.5rem;
}

.topbar__phone,
.topbar__email {
  padding: 0.5rem 0;
}

@media (max-width: 500px) {
  .topbar__phone,
  .topbar__email {
    text-align: center;
  }
}

.topbar__phone {
  margin-right: 2rem;
}

@media (max-width: 500px) {
  .topbar__phone {
    margin-right: 0;
  }
}

.header {
  height: 7rem;
  background-color: #fff;
}

@media (max-width: 900px) {
  .header {
    height: auto;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

@media (max-width: 900px) {
  .header__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .header__container {
    padding: 0 0 3rem 0;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: start;
  align-self: flex-start;
  background: #fff;
  width: 34rem;
  height: 15rem;
  top: 0;
  padding: 0 2rem;
  position: absolute;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .header__logo {
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
  }
}

@media (max-width: 500px) {
  .header__logo {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

@media (max-width: 500px) {
  .header__logo img {
    max-width: 90%;
  }
}

.header__btn-trigger {
  display: none;
}

@media (max-width: 900px) {
  .header__btn-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 5rem;
    top: 9rem;
  }
}

@media (max-width: 500px) {
  .header__btn-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    right: 0;
    top: 0;
  }
}

.nav {
  margin-left: auto;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

@media (max-width: 900px) {
  .nav {
    margin-left: 0;
    max-height: 0;
    overflow: hidden;
  }
}

.nav__link {
  color: #333;
  margin-left: 3rem;
}

@media (max-width: 900px) {
  .nav__link {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.5rem 0;
  }
}

.nav__link.active {
  border-bottom: 0.2rem solid #749e3e;
}

@media (max-width: 900px) {
  .nav__link.active {
    border: none;
  }
}

.nav.is-open {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  max-height: 600px;
  overflow: auto;
  overflow-y: hidden;
}

.hero {
  width: 100%;
  height: 50rem;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.4)),
      to(rgba(0, 0, 0, 0.1))
    ),
    url('img/hero.png') no-repeat center top/cover;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)),
    url('img/hero.png') no-repeat center top/cover;
}

.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 700px) {
  .hero__container {
    text-align: center;
  }
}

.hero h1 {
  font-weight: 400;
  font-family: 'Arizonia';
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 1px 3px 8px rgba(51, 51, 51, 0.36);
}

.hero p {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  color: #fff;
  margin-bottom: 3.2rem;
}

@media (max-width: 500px) {
  .hero p {
    text-align: center;
    max-width: 30rem;
  }
}

.products {
  padding: 4rem 0;
}

.products h3 {
  margin-bottom: 3rem;
  font-size: 4.6rem;
  text-align: center;
  font-family: 'Arizonia';
  font-weight: 400;
  color: #749e3e;
}

.products__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 700px) {
  .products__controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.products__dropdown {
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
}

@media (max-width: 700px) {
  .products__dropdown {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    min-height: 6rem;
    margin-bottom: 1.5rem;
  }
}

.products__input {
  -ms-flex-preferred-size: 65%;
  flex-basis: 65%;
}

@media (max-width: 700px) {
  .products__input {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.products .items {
  padding: 3rem 0;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.products .items .item {
  width: 100%;
  height: 35rem;
  margin-bottom: 3rem;
  border: 1px solid #e6e6e6;
  padding: 0.5rem;
}

@media (max-width: 600px) {
  .products .items .item {
    max-width: 30rem;
    margin: 0 auto 3rem auto;
  }
}

.products .items .item__img-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background: #f3f3f3;
  height: 25rem;
  overflow: hidden;
}

.products .items .item__img-bg img {
  height: 200px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.products .items .item__category {
  display: none;
}

.products .items .item__btn {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.products .items .item__btn:hover {
  background: #333;
}

.products .items .item__body {
  height: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.products .items .item__title {
  margin-bottom: 0.5rem;
}

.products .items .item__price {
  font-weight: 400;
}

.item:hover .item__btn {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.item:hover .item__img-bg img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.footer {
  background: #222;
  padding: 8rem 0;
  line-height: 2;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.footer .box a {
  color: #b2b2b2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer .box a:hover {
  color: #749e3e;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

@media (max-width: 800px) {
  .footer .box {
    margin-bottom: 7rem;
  }
  .footer .box:last-child {
    margin-bottom: 0;
  }
}

.footer .list__link {
  color: #b2b2b2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer .list__link:hover {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  color: #036d1b;
}

.footer__title {
  font-family: 'Montserrat';
  font-weight: 700;
  margin-bottom: 3rem;
  color: #fff;
}

.footer__p {
  font-size: 1.5rem;
  color: #b2b2b2;
}

.footer__social a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  color: #b2b2b2;
}

.footer__social a:hover {
  color: #749e3e;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer__social i {
  font-size: 2rem;
  margin-left: 0.5rem;
}

.copyright {
  background: #1d1d1d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 8rem;
}

.copyright span {
  color: #749e3e;
}

.banner {
  margin-bottom: 9rem;
}

@media (max-width: 900px) {
  .banner--about,
  .banner--contact {
    display: none;
  }
}

.banner--about {
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.4)),
      to(rgba(0, 0, 0, 0.1))
    ),
    url('img/flower.jpg') no-repeat center 80% / cover;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)),
    url('img/flower.jpg') no-repeat center 80% / cover;
}

.banner--contact {
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.5)),
      to(rgba(0, 0, 0, 0.3))
    ),
    url('img/hero.png') no-repeat center 30% / cover;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
    url('img/hero.png') no-repeat center 30% / cover;
}

@media (max-width: 1170px) {
  .banner {
    margin-bottom: 0;
  }
}

.banner h2 {
  font-family: 'Arizonia';
  font-weight: 400;
}

.contact {
  margin-bottom: 4rem;
}

.contact__form {
  padding: 5.5rem 7rem 7rem 7rem;
  max-width: 50%;
  margin: auto;
}

@media (max-width: 1170px) {
  .contact__form {
    padding: 0;
  }
}

@media (max-width: 900px) {
  .contact__form {
    padding: 0;
    max-width: 60%;
  }
}

@media (max-width: 600px) {
  .contact__form {
    padding: 0;
    max-width: 90%;
  }
}

.contact__info {
  padding: 3rem 9.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 1170px) {
  .contact__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 4rem;
  }
}

.contact__info .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-right: 1px solid #e6e6e6;
  height: 100px;
}

@media (max-width: 1170px) {
  .contact__info .box {
    border-right: 0;
    text-align: center;
    display: block;
    margin-bottom: 3rem;
  }
}

.contact__info .box:last-child {
  border-right: none;
}

.contact__info .box__icon {
  font-size: 1.8rem;
  margin-right: 2rem;
}

@media (max-width: 1170px) {
  .contact__info .box__icon {
    margin-right: 0;
    margin-bottom: 1rem;
    display: block;
  }
}

.contact__info .box__email-link {
  color: #666;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.contact__info .box__email-link:hover {
  color: #749e3e;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.about {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
}

.about .what {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 9rem;
}

@media (max-width: 1170px) {
  .about .what {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    margin-bottom: 4rem;
  }
}

.about .what__text {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
}

@media (max-width: 1170px) {
  .about .what__text {
    padding: 3rem 0;
  }
}

.about .what__text h3 {
  margin-bottom: 3rem;
  font-size: 4.6rem;
  font-family: 'Arizonia';
  font-weight: 400;
  color: #749e3e;
}

@media (max-width: 1170px) {
  .about .what__text p {
    max-width: 700px;
    margin: auto;
  }
}

.about .what__img {
  background: url('img/ayurveda.png') no-repeat center center/contain;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  height: 400px;
}

.about .who {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1170px) {
  .about .who {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.about .who__text {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
}

@media (max-width: 1170px) {
  .about .who__text {
    padding: 3rem 0;
  }
}

.about .who__text h3 {
  margin-bottom: 3rem;
  font-size: 4.6rem;
  font-family: 'Arizonia';
  font-weight: 400;
  color: #749e3e;
}

.about .who__text a {
  color: #749e3e;
}

@media (max-width: 1170px) {
  .about .who__text p {
    max-width: 700px;
    margin: auto;
  }
}

.about .who__text p:nth-of-type(1) {
  margin-bottom: 2rem;
}

.about .who__avatar {
  height: 400px;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1170px) {
  .about .who__avatar {
    width: 100%;
    max-width: 400px;
    margin: auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.about .who__avatar-img {
  background: url('img/photo.jpg') no-repeat center center/cover;
  height: 100%;
  margin-bottom: 2rem;
}

.about .who__avatar-info {
  text-align: center;
}

.about .who__avatar-info h5 {
  color: #749e3e;
}

.partners {
  margin-bottom: 6rem;
}

@media (max-width: 1170px) {
  .partners {
    margin: 12rem 0 6rem 0;
  }
}

.partners__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 1170px) {
  .partners__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.partners h4 {
  width: 60%;
  margin-bottom: 2rem;
  font-size: 2rem;
}

@media (max-width: 1170px) {
  .partners h4 {
    max-width: 500px;
    text-align: center;
  }
}

.partners p {
  width: 60%;
}

@media (max-width: 1170px) {
  .partners p {
    width: 100%;
    text-align: center;
  }
}

.partners__links a {
  color: #749e3e;
  font-size: 1.6rem;
  display: inline-block;
  padding: 0.5rem 0;
}

.services {
  /* background: pink; */
  /* min-height: 90vh; */
  padding: 3rem;
}

.services__title {
  font-family: 'Arizonia', sans-serif;
  font-size: 4.6rem;
  font-weight: 400;
  /* text-align: center; */
  color: #749e3e;
  margin-bottom: 20px;
}
.services__title,
.services__subtitle {
  text-align: center;
}

.services__subtitle {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 64px;
  color: #222;
}

.services .items {
  display: flex;
  /* flex-direction: column; */
  gap: 4rem;
}

@media (max-width: 960px) {
  .services .items {
    flex-direction: column;
  }
}

.services .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* justify-content: center; */
  align-items: center;
  text-align: center;
  color: #222;
  margin-bottom: 100px;
}

.services .item__title {
  font-size: 22px;
  font-weight: 600;
  height: 70px;
}

.services .item__img {
  background: #749e3e;
  width: 80px;
  height: 80px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .item__subtitle {
  line-height: 28px;
}

.services .item__price {
  font-size: 1.8rem;
  font-weight: 600;
}

.services .item__price span {
  color: #749e3e;
}
.services__bottom-text {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 64px;
  color: #222;
  text-align: center;
}
.services__bottom-text a {
  color: #678c37;
}

.services__bottom-text a:hover {
  color: #678c37;
  text-decoration: underline;
}

@media (max-width: 960px) {
  .services .item {
    margin-bottom: 40px;
  }
  .services .item:last-child {
    margin-bottom: 100px;
  }
  .services .item__title {
    height: auto;
  }
  .services .item__subtitle {
    max-width: 480px;
  }
}

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