* {
  margin: 0 auto;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.hero {
  background-image: url("media/hero.jpg");
  background-size: cover;
  width: 100%;
  height: 52vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1vw;
}
.hero h1 {
  font-size: 7vw;
  text-align: center;
  color: #5F6646;
  font-family: "soap", sans-serif;
}
.hero h2 {
  font-size: 4vw;
  width: 40vw;
  text-align: center;
  color: #5F6646;
  font-family: "soap", sans-serif;
}
.hero p {
  font-size: 1.4vw;
  width: 40vw;
  color: #434833;
  text-align: center;
  font-family: "soap", sans-serif;
}
.hero a {
  text-decoration: none;
}
.hero button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
  cursor: pointer;
  color: #5F6646;
  font-family: "soap", sans-serif;
  font-size: 1.6vw;
  border-radius: 20vw;
  padding: 0.5vw 2vw;
  transition: 0.5s all;
}
.hero button:hover {
  background-color: #5F6646;
  color: antiquewhite;
}

@media (max-width: 500px) {
  .hero {
    height: 150vw;
    justify-content: flex-start;
  }
  .hero h1 {
    margin-top: 30vw;
    font-size: 15vw;
    color: #435500;
  }
  .hero h2 {
    font-size: 8vw;
    width: 80vw;
    color: #435500;
  }
  .hero p {
    display: none;
  }
  .hero button {
    font-size: 8.6vw;
    color: #435500;
  }
}
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  margin-top: 1vw;
  width: 100vw;
  gap: 0vw;
}
.navbar img {
  height: 6vw;
}
.navbar a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgb(73, 100, 37);
  text-shadow: whitesmoke 1px 1px 1px;
  color: #3c4811;
  font-family: "soap", sans-serif;
  font-size: 1.6vw;
  border-radius: 20vw;
  padding: 0.5vw 1vw;
  transition: 0.5s all;
}
.navbar a:hover {
  background-color: #5F6646;
  color: antiquewhite;
  text-shadow: none;
}
.navbar a:nth-child(2) {
  padding: 0.5vw 0.5vw;
}
.navbar a:nth-child(1), .navbar a:nth-child(3) {
  height: 2vw;
}

@media (max-width: 500px) {
  .navbar {
    margin-top: 0vw;
    padding-top: 2vw;
  }
  .navbar img {
    height: 14vw;
  }
  .navbar a {
    text-shadow: whitesmoke 1px 1px 1px;
    font-size: 6.6vw;
    padding: 2.5vw;
  }
}
.footer {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: antiquewhite;
}
.footer div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer div h1 {
  color: #5F6646;
  font-family: "soap", sans-serif;
  font-size: 2.8vw;
  margin-left: 0.8vw;
}
.footer div a {
  text-decoration: none;
  font-size: 2vw;
  border-radius: 10vw;
  color: black;
  padding: 0.2vw 1vw;
  font-family: "new-zen", sans-serif !important;
  margin: 0;
}
.footer div a:hover {
  background-color: #5F6646;
  color: antiquewhite;
}
.footer div img {
  height: 4vw;
  margin: 0;
}
.footer div:after {
  content: "";
  background-color: #333d0e;
  position: absolute;
  top: 0;
  left: -1vw;
  width: 0.3vw;
  height: 100%;
}

@media (max-width: 500px) {
  .divider2 {
    margin-bottom: 2vw;
    margin-top: 2vw;
    width: 100vw;
    height: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .divider2 section {
    width: 80%;
    height: 100%;
    border-radius: 4vw;
    background-color: #425500;
  }
  .footer {
    padding-top: 3vw;
    padding-bottom: 5vw;
    flex-direction: column;
    align-items: center;
  }
  .footer div {
    width: 90%;
    align-items: center;
  }
  .footer div h1 {
    font-size: 8.8vw;
    margin: 0;
  }
  .footer div a {
    font-size: 6vw;
  }
  .footer div img {
    display: none;
  }
}
.search {
  display: flex;
  gap: 1vw;
  height: 50vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4vw;
}
.search div {
  background-image: url("../media/searchbg.jpg");
  background-size: cover;
  width: 100%;
  height: 200vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search div h1 {
  font-size: 6vw;
  text-shadow: whitesmoke 1px 1px 1px;
  width: 80vw;
  text-align: center;
  color: #2b3600;
  font-family: "soap", sans-serif;
}
.search h1 {
  font-size: 4vw;
  color: #5F6646;
  font-family: "soap", sans-serif;
}
.search button, .search input {
  display: flex;
  height: 2vw;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
  color: #5F6646;
  font-family: "soap", sans-serif;
  font-size: 1.6vw;
  border-radius: 20vw;
  padding: 1vw;
  transition: 0.5s all;
}
.search button:hover, .search input:hover {
  color: rgb(37, 44, 34);
  outline: black;
  caret-color: #5F6646;
}
.search button {
  cursor: pointer;
  padding: 1.5vw;
}

.catalog {
  height: auto;
  width: 100%;
  display: flex;
  width: 75vw;
  flex-wrap: wrap;
  gap: 2vw;
  margin-bottom: 4vw;
  justify-content: center;
}
.catalog div {
  position: relative;
  height: 20vw;
  width: 23vw;
  border-radius: 2vw;
  overflow: hidden;
  border: 2px solid black;
}
.catalog div img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.catalog div section {
  padding: 1vw 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.catalog div section h2 {
  color: #5F6646;
  font-family: "soap", sans-serif;
}
.catalog div section p {
  color: #8aa528;
  font-family: "soap", sans-serif;
}

.buttonDiv button {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
  display: none;
  cursor: pointer;
  color: #5F6646;
  font-family: "soap", sans-serif;
  font-size: 1.6vw;
  border-radius: 20vw;
  padding: 0.5vw;
  transition: 0.5s all;
  margin-bottom: 2vw;
}
.buttonDiv button:hover {
  background-color: #5F6646;
  color: antiquewhite;
}

@media (max-width: 500px) {
  .search {
    gap: 4vw;
    height: 180vw;
  }
  .search div h1 {
    margin-top: 12vw;
    text-shadow: whitesmoke 1px 1px 1px;
    font-size: 14vw;
    text-align: center;
  }
  .search h1 {
    font-size: 8vw;
    width: 90%;
    text-align: center;
  }
  .search button, .search input {
    height: auto;
    font-size: 5.6vw;
    max-width: 80%;
    padding: 3vw;
  }
  .search button {
    padding: 4.5vw;
    font-size: 7vw;
  }
  .catalog {
    width: 100%;
    gap: 5vw;
  }
  .catalog div {
    border-radius: 10vw;
    height: 85vw;
    width: 85vw;
  }
  .catalog div h2 {
    text-align: center;
  }
  .buttonDiv button {
    font-size: 4.6vw;
    padding: 3.5vw;
  }
}
.banner {
  width: 100%;
  height: 40vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: antiquewhite;
}
.banner h1 {
  color: #5F6646;
  font-family: "soap", sans-serif;
  font-size: 4vw;
  text-align: center;
}
.banner div {
  display: flex;
  width: 90%;
  border-radius: 2vw;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2vw;
  gap: 1vw;
  text-align: center;
  background-color: #d1dea3;
}
.banner div p {
  font-family: "soap", sans-serif;
  font-size: 2vw;
  color: black;
}
.banner div button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
  cursor: pointer;
  color: #5F6646;
  font-family: "soap", sans-serif;
  font-size: 1.6vw;
  border-radius: 20vw;
  padding: 0.5vw;
  transition: 0.5s all;
}
.banner div button:hover {
  background-color: #5F6646;
  color: antiquewhite;
}

@media (max-width: 500px) {
  .banner {
    height: auto;
    gap: 2vw;
    padding-top: 8vw;
  }
  .banner h1 {
    font-size: 8vw;
    width: 90%;
  }
  .banner div {
    gap: 3vw;
  }
  .banner div p {
    font-size: 6vw;
  }
  .banner div button {
    font-size: 5.6vw;
    padding: 2.5vw;
  }
}
.about {
  display: flex;
  margin-top: 4vw;
  flex-direction: row;
  height: 48vw;
  width: 100%;
}
.about div {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  align-items: center;
}
.about div h1 {
  font-size: 4vw;
  color: #a0b947;
  font-family: "soap", sans-serif;
  margin: 0;
  width: 35vw;
}
.about div p {
  font-size: 1.7vw;
  color: #425500;
  font-family: "soap", sans-serif;
  width: 35vw;
}
.about div section {
  height: 30vw;
  width: 29vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../media/elissa.png");
  background-size: cover;
}
.about div section img {
  height: 50vw;
  animation: 15s spin linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.divider {
  margin-bottom: 2vw;
  width: 100vw;
  height: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.divider section {
  width: 80%;
  height: 100%;
  border-radius: 4vw;
  background-color: #425500;
}

.journey {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  margin-bottom: 2vw;
  align-items: center;
}
.journey img {
  height: 30vw;
  border-radius: 2vw;
}
.journey h1 {
  font-size: 4vw;
  color: #a0b947;
  font-family: "soap", sans-serif;
}
.journey p {
  font-size: 1.7vw;
  width: 60vw;
}

@media (max-width: 500px) {
  .about {
    margin-top: 28vw;
    padding-top: 8vw;
    flex-direction: column-reverse;
    height: auto;
    gap: 14vw;
  }
  .about div {
    width: 90%;
  }
  .about div h1, .about div p {
    text-align: center;
  }
  .about div h1 {
    font-size: 10vw;
    width: 75vw;
  }
  .about div p {
    font-size: 4.7vw;
    width: 75vw;
  }
  .about div section {
    height: 60vw;
    width: 58vw;
  }
  .about div section img {
    height: 100vw;
  }
  .divider {
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
  .journey {
    gap: 4vw;
  }
  .journey img {
    height: 50vw;
  }
  .journey h1 {
    font-size: 8vw;
  }
  .journey p {
    font-size: 5vw;
    width: 80vw;
  }
}
p {
  font-family: "new-zen", sans-serif !important;
}/*# sourceMappingURL=index.css.map */