@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic);

:root {
  --gradient: linear-gradient(90deg, rgb(98, 184, 98), rgb(11, 71, 38));
  --gradient2: linear-gradient(90deg, rgb(221, 221, 122), orange);
  --beige: rgb(240, 240, 233);
}

* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  color: #2e2e2e;
}

*::selection {
  background: green;
  color: white;
}

html {
  font-size: 62.5;
  overflow-x: hidden;
}

body {
  background: #f9f9f9;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: .5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

header .logo{
  width: 10rem;
}
header .navbar a {
  font-size: 1.2rem;
  margin-left: 2rem;
  color: var(--purple);
}

header .navbar a:hover {
  color: var(--pink);
}

header input {
  display: none;
}

header label {
  font-size: 3rem;
  color: var(--purple);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

section {
  
  padding: 9%;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(assets/Base.png) no-repeat;
  position: relative;
  background-size: cover;
}

.home .taco {
  position: absolute;
  bottom: 74%;
  left: 27%;
  font-size: 4rem;
}

.home .fork {
  position: absolute;
  bottom: 65%;
  left: 52%;
  font-size: 2.5rem;
  transform: rotate(0.04turn);
}

.home .fork .fa-utensils {
  color: white;
  background-color: orange;
  padding: 1rem;
  border-radius: 1rem;
}

.home .image img {
  width: 20vw;
  animation: float 3s linear infinite;
}

.home .i{
  width:30vw;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home .image {
  background: url(assets/box.png) no-repeat;
  background-size: 100%;
  background-position: center;
  position: relative;
}

.home .soup {
  position: absolute;
  bottom: 14%;
  right: 5%;
}

.home .soup img {
  width: 20vw;
  border-radius: 1em;
  border: 1px solid #2e2e2e;
}

.home .quality {
  background: #fdecec;
  width: 8.5rem;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 80%;
  font-weight: bold;
  margin-left: 0.1rem;
  color: green;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0rem);
  }

  50% {
    transform: translateY(-3.5rem);
  }
}

.home .content h3 {
  text-transform: capitalize;
  font-family: "Playfair Display";
  font-size: 76px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0em;
  text-align: left;
  color: green;
}

.home .content h3 span {
  color: #2e2e2e;
  font-weight: 700;
  font-family: "Playfair Display";
}

.home .content p {
  font-size: 1rem;
  color: #666;
  padding: 1rem 0;
}

.home .content input[type="text"] {
  padding: 1rem;
  width: 15rem;
  border-radius: 5rem;
}

.home .content input[type="submit"] {
  background-color: transparent;
  color: white;
  margin: 1rem;
}

.home .content form {
  background: green;
  border: 1px solid green;
  border-radius: 5rem;
  width: 22rem;
  display: flex;
}

.home .review-card {
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  position: absolute;
  left: 9%;
  bottom: 6%;
  background: #fff;
  padding: 1rem;
  display: flex;
  border-radius: 2rem;
  display: flex;
  height: 9rem;
  width: 40rem;
}

.home .review-card img {
  width: 7rem;
  height: 7rem;
  border-radius: 1rem;
  margin-right: 1rem;
}

.home .review-card .stuff {
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  margin-top: 1rem;
}

.home .review-card .stuff span {
  display: block;
  font-size: 14px;
  color: green;
  margin-top: .5rem;
}

/* about stuff */

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  text-align: center;
}

.about img{
  width: 25rem;
  height: 23rem;
}

.heading {
  text-align: center;
  font-family: "playfair display";
  background: var(--gradient);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 3rem;
  text-transform: uppercase;
  padding: 1rem;
  font-weight:600;
}

.about .content{
  padding: 7rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 3rem;
  border-radius: 5rem;
  background: var(--gradient2);
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.1);
}
/* media */

@media (max-width: 1200px) {
  .home .soup {
    visibility: hidden;
  }

  html {
    font-size: 75%;
  }

  .home .fork {
    position: absolute;
    bottom: 74%;
    left: 61%;
  }

  .home .review-card {
    bottom: 3%;
    width: 45rem;
    height: 10rem;
  }
}

.features{
  background-color: var(--beige);
}

.features .box-container{
  display: flex;
  width: 100%;
  flex-wrap: wrap; 
}

.features .box-container .box{
  background-color: #fff;
  border: 1px solid green;
  padding: 2rem;
  margin: 1rem;
  border-radius: 2rem;
  flex: 1 1 20rem;
  justify-content: space-evenly;
  text-align: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.features .box-container img{
  height: 9rem;
  padding-bottom: 1rem;
}

.features .box-container p{
  margin-top: 1rem;

}

.reviews{
  align-items: center;
  text-align: center;
  background: var(--beige);
}

.reviews .content .box-container{
  display: flex;
  flex-wrap: wrap;
}

.reviews .content img{
  width: 8rem;

}

.reviews .content h3{
  padding: 1rem;
}


.reviews .content span{
  font-size: 1.3rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.reviews .content .box-container .box{
  flex: 1 1 20rem;
  background: white;
  padding: 1rem;
  border:1px solid green;
  margin: 1rem;
  border-radius: 2rem;
  position: relative;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.reviews .content .fa-quote-right{
  position: absolute;
  top:5%; right: 10%;
  font-size: 5rem;
  color: green;
  opacity: .3;
}

.reviews img{
  border-radius: 50%;
}


.newsletter{
  background: url(assets/Base.png) no-repeat;
  background-size: cover;
  width: 100%;
  text-align: center;
  align-items: center;
  padding: 8rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.newsletter h2{
  font-size: 2rem;
}

.newsletter form {
  margin: 1.5rem 4rem;
  height: 6rem;
  border: 5px solid white;
  background: transparent;
  background-position: center;
  border-radius: 5rem;
  display: flex;
  padding: 0.7rem 1rem;
  text-align: center;
  align-items: center; justify-content: center;
}

.newsletter form input[type=email] {
  text-align: left;
  background: transparent;
  font-size: 1.2rem;
  margin-left: 4rem;
  color: green;
  font-family: "inter";
  width: 100%;
}

.newsletter form input[type=submit] {
  font-size: 16px;
  font-family: "inter";
  font-weight: 600;
  min-width: 10rem;
}

.newsletter form input[type=submit] {
  color: white;
  border-radius: 5rem;
  height: 100%;
  width: 25%;
  background: var(--gradient2);
}

.download{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  padding: 5rem 0;
}

.download img{
  width: 38%;
}

.download .content{
  padding: 1rem 0;
}

.download h2{
  font-size: 2rem;
}

.download p{
  margin: 1.6rem;
  font-family: "inter";
  font-size: 1.1rem;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  background: var(--beige);
  
  
}

.contact .image {
  text-align: left;
}

.contact form {
  padding: 2rem 3rem;
}

.contact .content{
  background: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  border-radius: 2rem;
  text-align: center;
  min-width:30rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 50%;

}

.contact form .header {
  text-align: left;
  padding: 0;
  padding-bottom: 2rem;
  background: var(--gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.contact img {
  padding: 0 5rem;
  width: 50%;
}

.contact form .inputBox input,
.contact form .inputBox textarea {
  width: 100%;
  background: none;
  color: #666;
  margin: 1rem 0;
  font-size: 1rem;
  text-transform: none;
  text-decoration: none;
  margin-bottom: 1rem;
}

.contact form .inputBox textarea {
  resize: none;
  height: 8rem;
}

.copyright{
  width: 100%;
  text-align: center;
  background: url(assets/Base.png) no-repeat;
  background-position: bottom;
  padding: 3rem;
}

/**/


@media (max-width: 1056px) {
  .home .fork {
    position: absolute;
    bottom: 74%;
    left: 61%;
  }

}

@media (max-width: 768px) {

  .download img{
    width: 100%;
  }

  .newsletter {
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 9%;
  }

  .contact img{
    width: 99%;
  }

  .contact .content{
    width: 99%;
  }


  .about img{
    margin-top: 3rem;
  }

  .about{
    flex-wrap: wrap;
  }

  .about .content{
    padding: 0;
  }

  .home .review-card {
    opacity: 0;
    visibility: collapse;
  }

  header label {
    visibility: visible;
    opacity: 1;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 2rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: 0.2s linear;
  }

  header .navbar a {
    display: block;
    margin: 2rem 0;
    font-size: 2rem;
  }

  header input:checked ~ .navbar {
    transform: scaleY(1);
    opacity: 1;
    transition: 0.3s linear;
  }

  header input:checked ~ label::before {
    content: "\f00d";
  }

  .home {
    flex-flow: column-reverse;
  }

  .home .image img {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .home .i{
    width: 100%;
    padding: 20%;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .home .image {
    background-size: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .home .content h3 {
    font-size: 3.2rem;
  }

  .home .content p {
    font-size: 1.3rem;
  }

  .about {
    background-position: right;
  }
}



@media (max-width: 450px) {
  .home .review-card{
    visibility: hidden;
  }

  .home .fork,
  .home .taco {
    visibility: hidden;
  }

  html {
    font-size: 50%;
  }


  .home .content input[type="submit"] {
    background-color: green;
    padding: 0.9rem;
    color: white;
    margin: 1rem;
    border-radius: 1rem;
  }

  .home .content input[type="text"] {
    background-color: white;
    padding: 1rem;
    color: white;
    margin: 1rem;
    border-radius: 1rem;
    border: 1px solid green;
  }

  .home .quality {
    width: 12rem;
  }

  .home .content form {
    background: transparent;
    border: none;
    width: 110%;
    display: flex;
  }
}





/*
.heading {
  text-align: center;
  background: var(--gradient);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 3rem;
  text-transform: uppercase;
  padding: 1rem;
}

.features .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}
.features .box-container .box {
  flex: 1 1 20rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: 0.2s linear;
}

.features .box-container .box img {
  height: 7rem;
}

.features .box-container .box h3 {
  font-size: 1.5rem;
  color: #333;
  padding-top: 1rem 0;
}

.features .box-container .box p {
  font-size: 1rem;
  color: #666;
  padding: 1rem 0;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 3rem;
  border-radius: 5rem;
  background: var(--gradient);
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.1);
}

.about {
  background: url(./images/about-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 10rem;
}

.about .column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.about .column .image {
  flex: 1 1 30rem;
}

.about .column .image img {
  width: 100%;
}

.about .column .content {
  flex: 1 1 40rem;
}

.about .column .content h3 {
  font-size: 2rem;
  color: #666;
  text-transform: capitalize;
}

.about .column .content p {
  font-size: 1rem;
  color: #666;
  padding: 1rem 0;
}

.about .column .content .button a:last-child {
  margin-left: 2rem;
}

.newsletter {
  text-align: center;
  padding: 5rem 1rem;
  background: url(/images/subscribe-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 6rem;
}

.newsletter h3 {
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
}

.newsletter form {
  display: flex;
  max-width: 70rem;
  border: 0.2rem solid #fff;
  padding: 0.5rem;
  border-radius: 5rem;
  margin: 2rem auto;
  height: 5.5rem;
}

.newsletter form input[type="email"] {
  padding: 0 2rem;
  font-size: 1.2rem;
  background: none;
  width: 100%;
  color: #fff;
  text-transform: none;
  background: none;
}

.newsletter form input[type="email"]::placeholder {
  color: #eee;
  text-transform: capitalize;
}

.newsletter form input[type="submit"] {
  background: #fff;
  width: 20rem;
  font-size: 1.2rem;
  border-radius: 5rem;
  cursor: pointer;
}

.newsletter form input[type="submit"]:hover {
  color: var(--pink);
}

.newsletter p {
  color: #fff;
  font-size: 1rem;
  margin: 2rem auto;
  max-width: 70rem;
}

*\