* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}
button,
li {
  cursor: pointer;
}
button {
  padding: 10px 25px;
  margin-right: 10px;
  border: none;
  font-size: 15px;
  color: #f4f4f4 !important;
  transition: 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}
a.active {
  color: #ff6a31 !important;
}
.primary {
  background-color: #ff6a31;
}
.secondary {
  background-color: black;
}
.secondary:hover,
.primary:hover {
  background-color: #f4f4f4;
  color: black !important;
  border: 1px solid black;
}
input,
textarea {
  background-color: transparent;
  border: none;
  display: block;
  width: 100%;
  border-bottom: 1px solid black;
  outline: none;
}
textarea {
  resize: none;
}
/* ----------------------------------- */
nav,
#home {
  background-color: #f4f4f4;
}
.navbar img {
  width: 1.5em;
}

/* ---------------------------------- */
#home img {
  width: 70%;
}
/* ---------------------------------- */
/*services*/
#services img {
  width: 3.2em;
}
#services h4 {
  color: #ff6a31;
}
#services .item {
  border: 1px solid rgb(212, 212, 212) !important;
}
/* ------------ */
#fruits img {
  width: 10em;
  height: 10em;
}
@media screen and (max-width: 576px) {
  #fruits img {
    display: none;
  }
}

/* ------------------------------------- */
.sec-landing {
  text-align: center;
  height: 60vh;
  margin: 60px 0 80px 0;
  background-image: url(../imgs/tasty.png);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-landing h1 {
  font-size: 8em;
  color: #f4f4f4;
}
@media screen and (max-width: 576px) {
  .sec-landing h1 {
    font-size: 5em;
  }
}
/* ------------------------------ */
.card img {
  width: 10em;
}
/* ---------------------------- */
.contact {
  margin: 60px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#contact img {
  right: 0;
  width: 12em;
}
/*------------------------------------- */
footer {
  background-color: #f4f4f4;
}
