*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: black;
  background-color: white;
}

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

.text-bold {
  font-weight: bold;
}

.text-green {
  color: #61b553;
}

.text-padding {
  padding: 0 0.5rem;
}

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

.line-through {
  text-decoration: line-through;
}

.image-wrapper {
  margin: 2.5rem 0;
  display: flex;
  justify-content: center;
}

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

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

.btn {
  width: 100%;
  border: 2px solid #61b553;
  background-color: #61b553;
  text-align: center;
  display: block;
  color: white;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 1.8rem 4.4rem;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
.btn:hover {
  background-color: #499e3a;
  border: 2px solid #000000;
}

.container {
  width: 100%;
  max-width: 114rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 22px;
}
@media (min-width: 1280px) {
  .container {
    padding: 0;
  }
}

.hero {
  background-image: url("../images/background_main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 3rem 0;
}
@media (min-width: 1024px) {
  .hero {
    padding: 8rem 0 26rem;
  }
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero__wrapper {
    align-items: flex-start;
    text-align: left;
  }
}
.hero__logo {
  max-width: 32rem;
  margin-bottom: 3rem;
}
.hero__heading {
  font-size: 4rem;
  line-height: 5rem;
  color: black;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero__heading {
    font-size: 5.5rem;
    line-height: 7rem;
    max-width: 73rem;
  }
}
.hero__heading span {
  color: #61b553;
  text-transform: uppercase;
}
.hero__title {
  font-size: 3.2rem;
  line-height: 4rem;
  font-weight: 400;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
.hero__subtitle {
  font-size: 2.2rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}
.hero__subtitle span {
  font-size: 1.8rem;
  font-weight: 400;
}
.hero__list {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero__list {
    margin-bottom: 4rem;
  }
}
.hero__listItem {
  position: relative;
  font-size: 1.6rem;
  line-height: 2.2rem;
  padding-left: 3rem;
  text-align: left;
}
.hero__listItem::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-image: url(../images/ok_icon.svg);
}

.delivery {
  position: relative;
  padding: 3rem 0;
}
.delivery__spoon {
  position: absolute;
  top: 0;
  left: -14rem;
  opacity: 0.5;
  width: 39rem;
  height: 78rem;
  z-index: -1;
}
@media (min-width: 1400px) {
  .delivery__spoon {
    left: 0;
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .delivery {
    padding: 5rem 0 7rem;
  }
}
.delivery__title {
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .delivery__title {
    font-size: 4rem;
    line-height: 4.6rem;
  }
}
.delivery__paragraph {
  font-size: 1.8rem;
  line-height: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
}
.delivery__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.delivery__wrapper:not(:last-of-type) {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .delivery__wrapper {
    flex-direction: row;
    align-items: stretch;
  }
}
.delivery__box {
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 100%;
  max-width: 21rem;
  border: 0.2rem solid #77b86b;
  text-align: center;
  padding: 3.5rem 0 0 0;
  cursor: pointer;
}
@media (min-width: 992px) {
  .delivery__box {
    max-width: 23rem;
  }
}
.delivery__box--yellow {
  border: 0.2rem solid #efcb48;
}
.delivery__boxTitle {
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-transform: uppercase;
  color: #61b553;
  font-weight: 600;
  margin-bottom: 2rem;
  padding: 0 2rem;
}
.delivery__boxTitle--yellow {
  color: #efcb48;
}
.delivery__boxText {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 2.5rem;
  padding: 0 2rem;
}
.delivery__box a {
  margin-top: auto;
}
.delivery__boxBtn {
  font-size: 1.8rem;
  text-align: center;
  color: white;
  background-color: #61b553;
  padding: 2rem 1rem;
  margin-top: auto;
}
.delivery__boxBtn--yellow {
  background-color: #efcb48;
}
.delivery__comment {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 27rem;
  padding: 3.7rem 3.7rem 1.3rem;
  background-color: #f8f8f8;
}
.delivery__commentAvatar {
  width: 5.1rem;
  height: 5.1rem;
  margin-right: 1.5rem;
}
.delivery__commentInner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5rem;
}
.delivery__commentName {
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 700;
}
.delivery__commentText {
  font-size: 1.8rem;
  line-height: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.delivery__commentQuote {
  margin-top: auto;
  margin-left: auto;
}

.about {
  background-color: #f8f8f8;
  padding: 3.8rem 0 43.3rem;
  background-image: url("../images/food.png");
  background-position: bottom center;
  background-size: auto;
  background-repeat: no-repeat;
}
.about-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.about .hero__listItem {
  font-size: 1.8rem;
  line-height: 2.5rem;
}

@media (min-width: 1580px) {
  .about {
    padding: 6.5rem 0 7rem;
    background-position: right;
    background-size: auto 100%;
  }
  .about-title {
    font-size: 4rem;
    margin-bottom: 4.4rem;
    max-width: 68rem;
  }
  .about .hero__listItem {
    max-width: 60rem;
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
}
.form-container {
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
  padding-bottom: 6rem;
}
.form-left-col {
  margin-bottom: 4rem;
}
.form-content {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2.1rem;
}
.form-image {
  margin-right: 1.5rem;
}
.form-row {
  display: flex;
  align-items: flex-start;
}
.form-row:first-of-type {
  margin-bottom: 1rem;
}
.form-title {
  font-size: 2.2rem;
  line-height: 3.2rem;
  margin-bottom: 2rem;
}
.form-input {
  width: 100%;
  padding: 2rem 2rem 1.5rem;
  font-size: 1.8rem;
  line-height: 3.2rem;
  border: 1px solid #dbdbdb;
  background-color: #f8f8f8;
  color: black;
  margin-bottom: 1.5rem;
}
.form-input::-moz-placeholder {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: black;
}
.form-input:-ms-input-placeholder {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: black;
}
.form-input::placeholder {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: black;
}
.form-label-wrapper {
  display: grid;
  grid-template-columns: 2rem auto;
  align-items: flex-start;
  grid-gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.form-checkbox {
  width: 2rem;
  height: 2rem;
  margin: 0;
  accent-color: #61b553;
}
.form-btn {
  max-width: 24rem;
}

@media (min-width: 768px) {
  .form-container {
    flex-direction: row;
    justify-content: space-between;
    padding-right: 4.1rem;
    gap: 20px;
  }
  .form-left-col {
    max-width: 45rem;
    width: 100%;
  }
  .form-content {
    margin-bottom: 5rem;
  }
  .form-row:first-of-type {
    margin-bottom: 2rem;
  }
  .form-right-col {
    max-width: 40rem;
    width: 100%;
  }
  .form-label-wrapper {
    margin-bottom: 3rem;
  }
  .form-btn {
    margin: 0;
  }
  .form-alert {
    display: none;
    font-size: 1.6rem;
    color: green;
    margin: 1rem 0;
    text-align: left;
  }
}
.footer {
  padding: 3rem 0 2.1rem;
  border-top: 1px solid #e8e8e8;
}
.footer-container {
  display: flex;
  justify-content: center;
}
.footer-container .list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-container .list-item,
.footer-container .list a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #b2b2b2;
  text-align: center;
}

@media (min-width: 768px) {
  .footer {
    padding: 0;
    border-top: none;
  }
  .footer-container {
    padding: 3.1rem 0 3.6rem;
    border-top: 1px solid #e8e8e8;
  }
  .footer-container .list {
    flex-direction: row;
    gap: 0;
  }
  .footer-container .list-item,
.footer-container .list a {
    font-size: 1.6rem;
  }
  .footer-container .list-item:nth-child(2) {
    margin: 0 3rem;
    position: relative;
  }
  .footer-container .list-item:nth-child(2)::after, .footer-container .list-item:nth-child(2)::before {
    position: absolute;
    content: "|";
  }
  .footer-container .list-item:nth-child(2)::before {
    left: -1.5rem;
  }
  .footer-container .list-item:nth-child(2)::after {
    right: -1.5rem;
  }
}
.cookie-bar {
  background-color: rgb(35, 35, 35);
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}

.cookie-bar .container {
  padding: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}

.cookie-bar-content {
  color: white;
  font-size: 1.6rem;
  padding-right: 1.5rem;
}

.cookie-bar-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.cookie-bar-buttons-wrapper .btn {
  margin: 0;
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-size: 18px;
}

@media (min-width: 768px) {
  .cookie-bar .container {
    grid-template-columns: minmax(auto, 80rem) auto;
  }
  .cookie-bar-buttons-wrapper {
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */