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

html, body {
  height: 100%;
  width: 100%;
  font-family: monospace;
}

main {
  height: 100%;
  width: 100%;
  background-color: #FAF5EC;
}

nav {
  width: 100%;
  height: 70px;
  padding: 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .logo img {
  margin-top: 1em;
  width: 80%;
}
nav .navbar {
  display: flex;
  align-items: center;
  gap: 3em;
  font-weight: 600;
  font-size: 15px;
}
nav .search-bar {
  width: 25%;
  padding: 10px 15px;
  outline: 1px solid #94908D;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .search-bar .left {
  display: flex;
  align-items: center;
  gap: 5px;
}
nav .search-bar .left svg {
  font-weight: 100;
  color: rgba(0, 0, 0, 0.477);
}
nav .search-bar .left p {
  font-size: 13px;
  word-spacing: 1px;
  color: rgba(0, 0, 0, 0.582);
}
nav .search-bar .right {
  display: flex;
  gap: 5px;
}
nav .search-bar .right #line {
  transform: rotate(90deg);
  font-weight: 100;
  color: rgba(0, 0, 0, 0.683);
}

.hero-section {
  position: relative;
  width: 100%;
  height: calc(100% - 70px);
  background-color: #FCF4EC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}
.hero-section .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 50%;
}
.hero-section .right #top {
  background-color: #EAEDD8;
  width: 35%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 5px;
  border: 2px solid #61902C;
  border-radius: 50px;
  word-spacing: -5px;
  color: #61902C;
}
.hero-section .right h3 {
  font-size: 5em;
  line-height: 30px;
}
.hero-section .right h3 span {
  color: #23561E;
}
.hero-section .right img {
  margin-top: 10px;
  width: 70%;
}
.hero-section .right p {
  font-size: 1.2em;
  width: 60%;
}
.hero-section .right .cart-btn {
  margin-top: 10%;
  display: flex;
  align-items: center;
  gap: 5em;
}
.hero-section .right .cart-btn #add-to-cart {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: black;
  color: white;
  padding: 0.5em 0;
  padding-right: 0;
  width: 30%;
  border-radius: 50px;
  border: 1px solid #61902C;
}
.hero-section .right .cart-btn #add-to-cart svg {
  background-color: #FECC66;
  color: black;
  width: 20%;
  border-radius: 50px;
}
.hero-section .right .cart-btn #quantity {
  display: flex;
  align-items: center;
  gap: 1em;
  background-color: white;
  outline: 1px solid rgba(0, 0, 0, 0.495);
  padding: 0.4em;
  border-radius: 50px;
  font-size: 1.5em;
}
.hero-section .right .cart-btn #quantity #line {
  transform: rotate(90deg);
}
.hero-section .left {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.hero-section .left .left-content {
  display: flex;
  align-items: center;
  gap: 2em;
}
.hero-section .left .left-content #icon {
  width: 50%;
}
.hero-section .left .left-content #icon img {
  width: 100%;
}
.hero-section .left .left-content #content p {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.393);
}

#hero {
  position: absolute;
  right: 200px;
  height: 550px;
}/*# sourceMappingURL=style.css.map */