.news {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 100px 100px;
}
.news figure {
  width: 45%;
  border-radius: 5px;
  overflow: hidden;
}
.news figure img {
  width: 100%;
}
.news .text-container {
  height: 100%;
  width: 45%;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.news .text-container h2 {
  font-size: 2.5rem;
  color: #84C1B1;
}
.news .text-container p {
  color: #1E1E1E;
  font-size: 1.1rem;
}
.news .text-container a {
  width: fit-content;
}

.smoothies {
  margin: 100px 0;
  background-size: cover;
  height: 60vh;
  display: flex;
  justify-content: flex-end;
}
.smoothies .text-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-right: 50px;
  width: 25%;
  gap: 30px;
}
.smoothies .title {
  position: relative;
  width: fit-content;
}
.smoothies .title::after {
  content: "";
  background: #84C1B1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 30px 5px;
}
.smoothies .title h2 {
  position: relative;
  height: 100%;
  width: 100%;
  margin: -5px 0 0 10px;
  padding: 10px 30px 10px 10px;
  z-index: 9;
  font-size: 1.7rem;
  font-weight: 400;
  color: #FFFFFF;
}
.smoothies p {
  clip-path: polygon(0 0, 100% 0, 100% 40%, 97% 53%, 100% 48%, 100% 100%, 32% 100%, 20% 94%, 22% 100%, 0 100%);
  background: #84C1B1;
  width: 90%;
  padding: 20px;
  color: #FFFFFF;
  border-radius: 5px;
}
.smoothies a {
  width: fit-content;
  background: #FFFFFF;
  border-radius: 50%;
  height: 37px;
}

.products {
  margin: 200px 0;
  padding: 100px;
  background: #84C1B1;
}
.products h2 {
  margin: 0 auto 100px auto;
  text-align: center;
  background: #fff;
  width: 30%;
  padding: 20px;
  font-size: 2rem;
  color: #84C1B1;
  border-radius: 5px;
}

.about {
  display: flex;
  justify-content: space-around;
  width: 80%;
  gap: 50px;
  margin: 200px auto;
}
.about figure, .about .text-container {
  width: 25%;
}
.about figure img {
  width: 100%;
  border-radius: 5px;
}
.about .text-container {
  display: flex;
  gap: 50px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}
.about .text-container h2 {
  font-size: 2rem;
  color: #84C1B1;
}
.about .text-container p {
  height: fit-content;
  font-size: 1.2rem;
}
.about .text-container:last-child {
  justify-content: flex-end;
}
.about .text-container a {
  font-weight: 400;
  font-style: italic;
  width: 50%;
  min-width: fit-content;
}

@media screen and (max-width: 796px) {
  .news {
    flex-direction: column;
  }
  .news figure, .news .text-container {
    width: 75%;
  }
  .smoothies {
    justify-content: center;
  }
  .smoothies .text-container {
    width: 65%;
    margin: 0;
  }
  .products h2 {
    width: 70%;
  }
}
@media screen and (max-width: 524px) {
  .news {
    padding: 50px;
  }
  .news figure, .news .text-container {
    width: 90%;
  }
  .news .text-container h2 {
    font-size: 1.8rem;
  }
  .products {
    padding: 100px 50px;
  }
  .products h2 {
    width: 90%;
  }
}


