/*=============== GOOGLE FONTS ===============*/
@font-face {
  font-family: "Streetwear Regular";
  src: url("/fonts/FDR_Artimasa_Streetwear/Streetwear.otf") format("opentype");
}

@font-face {
  font-family: "Clash Display";
  src: url("/fonts/ClashDisplay-Variable.ttf") format("truetype");
}

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #bb2c1b;
  --second-color: #06322A;
  --background-color: #fde2c5;
  --text-color: hsl(0, 0%, 20%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);
  --shadow-card: 0 -8px 24px hsla(0, 0%, 0%, 0.3);
  --shadow-img: drop-shadow(0 12px 24px hsla(0, 0%, 0%, 0.4));

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Clash Display", sans-serif;
  --second-font: "Streetwear Regular";
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: 0.938rem;
  --biggest-font-size: 2.25rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --normal-font-size: 1rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--background-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.main {
  overflow: hidden;
}

.section {
  padding-block: 5rem 1.5rem;
}

.section__title {
  position: relative;
  font-size: var(--biggest-font-size);
  font-family: var(--second-font);
  line-height: 140%;
  width: max-content;
  margin: 0 auto 0.5rem;
}

.section__title span {
  color: var(--first-color);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== BACKGROUND ===============*/
.background {
  position: relative;
}

.background__shape-small,
.background__shape-big {
  position: fixed;
  border-radius: 50%;
  background-color: hsl(2, 100%, 88%);
  filter: blur(50px);
}

.background__shape-small {
  width: 200px;
  height: 200px;
  top: -5rem;
  left: -5rem;
}

.background__shape-big {
  width: 250px;
  height: 250px;
  top: 20rem;
  right: 8rem;
}

.background__shape-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
  mix-blend-mode: soft-light;
}

/*=============== CINTA SLIDER ===============*/
.top-slider {
  position: relative;
  font-size: 15px;
  padding-block: 8px;
  display: flex;
  overflow: hidden;
  user-select: none;
  background-color: var(--second-color);
  box-shadow: inset var(--shadow-card);
  gap: 20px;
  z-index: var(--z-fixed);
}

.top-slider ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--white-color);
  font-weight: var(--font-medium);
  animation: scroll 40s linear infinite;
}

.top-slider:hover ul {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-100% - 20px));
  }
}

/*=============== HEADER & NAV ===============*/
.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav__logo {
  color: var(--white-color);
  font-weight: var(--font-medium);
  padding: 1rem 0 1rem 0;
}

.nav__logo-img {
  width: 6rem;
  height: auto;
}

.nav__close,
.nav__toggle {
  display: flex;
  color: var(--second-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav__sello{
  width: 180px;
  position: absolute;
  bottom: 1rem;
  right: 2rem;
}

.nav__close {
  color: var(--white-color);
}

/* Navigation for mobile devices */
@media screen and (max-width: 1024px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    background-color: var(--second-color);
    width: 100%;
    height: 100%;
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left 0.4s;
  }

  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform 0.4s ease-out, visibility 0.4s;
  }

  .nav__item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: 0.5s;
  }
}

.nav__list,
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 1.8rem;
}

.nav__link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity 0.4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.nav__link span {
  position: relative;
  transition: margin 0.4s;
}



/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: 0.4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__sello {
  width: 150px;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  transform: rotate(15deg);
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform 0.4s;
}

.nav__social-link:hover {
  transform: translateY(-0.25rem);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/* Change background header */
.scroll-header {
  background-color: var(--background-color);
  box-shadow: 0 1px 4px hsla(0, 4%, 15%, 0.1);
  transition: 0.3s;
}

/*=============== HOME ===============*/
.home,
.home__container {
  position: relative;
}

.home__container {
  padding-top: 3rem;
  height: 100vh;
  display: grid;
  row-gap: 1rem;
}

.home__title {
  left: 0;
}

.home__description,
.btn {
  font-weight: 600;
  border: none;
}

.home__description {
  color: var(--title-color);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.btn {
  display: inline-grid;
  position: relative;
  place-items: center;
  transition: 0.3s;
  width: 180px;
}

.btn:hover {
  transform: scale(1.1);
  rotate: 5deg;
  cursor: pointer;
}

.btn span {
  position: absolute;
  color: var(--first-color);
  font-size: var(--h2-font-size);
  font-weight: 600;
}

.home__images {
  position: relative;
  width: 325px;
  height: 378px;
  justify-self: center;
}

.home__images img {
  position: absolute;
}

.home__liquid {
  max-width: initial;
  width: 340px;
  left: -0.5rem;
}

.home__juice {
  width: 140px;
  transform: rotate(15deg);
  left: 1rem;
  right: 0;
  top: 1rem;
  margin: 0 auto;
  animation: float-juice 4s ease-in-out infinite;
}

.home__apple2 {
  width: 190px;
  right: 1.5rem;
  bottom: 3.5rem;
}

.home__apple1 {
  width: 100px;
  transform: rotate(-25deg);
  top: 7rem;
  left: 0.65rem;
}

.home__leaf:nth-child(1),
.home__leaf:nth-child(6) {
  width: 50px;
  transform: rotate(30deg);
}

.home__leaf:nth-child(2),
.home__leaf:nth-child(5),
.home__leaf:nth-child(4) {
  width: 40px;
}

/* Animation leaf */
.home__leaf:nth-child(1) {
  top: -7rem;
  right: 3rem;
}

.home__leaf:nth-child(2) {
  transform: rotate(-60deg);
  top: 1.5rem;
  left: 1.25rem;
}

.home__leaf:nth-child(3) {
  width: 20px;
  transform: rotate(-15deg);
  top: 8rem;
  right: 5rem;
}

.home__leaf:nth-child(4) {
  bottom: 4rem;
  left: 3rem;
}

.home__leaf:nth-child(5) {
  transform: rotate(-30deg);
  bottom: 0;
  right: 5rem;
}

.home__leaf:nth-child(6) {
  bottom: -5rem;
  left: 3rem;
}

.home__shape-small,
.home__shape-big {
  position: absolute;
  border-radius: 50%;
  background-color: hsl(2, 100%, 88%);
  filter: blur(100px);
}

.home__shape-small {
  width: 200px;
  height: 200px;
  top: -5rem;
  left: -5rem;
}

.home__shape-big {
  width: 250px;
  height: 250px;
  top: 20rem;
  right: 8rem;
}

.home__shape-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  mix-blend-mode: soft-light;
  mask-image: linear-gradient(to top, transparent, black);
}

@keyframes float-juice {
  0% {
    transform: translateY(0) rotate(15deg);
  }
  50% {
    transform: translateY(-1.5rem) rotate(15deg);
  }
  100% {
    transform: translateY(0) rotate(15deg);
  }
}

/*=============== ABOUT ===============*/
.about {
  position: relative;
  overflow: hidden;
}

.about__container {
  padding: 3.5rem 0 2.5rem 0;
}

.about__data {
  text-align: center;
}

.about__title-img-1,
.about__title-img-2 {
  position: absolute;
  width: 40px;
}

.about__title-img-1 {
  top: -1rem;
  left: -4.5rem;
  transform: rotate(-15deg);
  animation: animate-star-1 5s infinite ease-in-out;
}

.about__title-img-2 {
  bottom: 2.75rem;
  right: -1.5rem;
  transform: rotate(15deg);
  animation: animate-star-2 5s infinite ease-in-out;
}

.about__description {
  position: relative;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.about__img {
  position: relative;
  width: 250px;
  justify-self: center;
  margin-top: 1.5rem;
  transform: rotate(15deg);
}

.about__tree-1,
.about__tree-2 {
  position: absolute;
  width: 150px;
  top: 30rem;
}

.about__tree-1 {
  left: -4rem;
}

.about__tree-2 {
  right: -4rem;
}

.about__shape-small,
.about__shape-big {
  position: absolute;
  border-radius: 50%;
  background-color: hsl(2, 100%, 88%);
  filter: blur(100px);
}

.about__shape-small {
  width: 200px;
  height: 200px;
  top: 15rem;
  left: -5rem;
}

.about__shape-big {
  width: 250px;
  height: 250px;
  top: 20rem;
  right: 10rem;
}

.about__shape-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  mix-blend-mode: soft-light;
  mask-image: linear-gradient(to bottom, transparent, black);
}

/* Animation title images */
@keyframes animate-star-1 {
  0% {
    transform: scale(0.7) rotate(-15deg);
    opacity: 0.2;
  }
  50% {
    transform: scale(1) rotate(-15deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.7) rotate(-15deg);
    opacity: 0.2;
  }
}

@keyframes animate-star-2 {
  0% {
    transform: scale(1) rotate(15deg);
    opacity: 1;
  }
  50% {
    transform: scale(0.7) rotate(15deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(1) rotate(15deg);
    opacity: 0.2;
  }
}

/*=============== PRODUCTS ===============*/
.products {
  position: relative;
  margin-top: 5rem;
}

.products__container {
  position: relative;
  padding-top: 4.5rem;
}

.products__content {
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 1.5rem;
  
}

.products__card {
  position: relative;
  padding: 5.25rem 0.75rem 1.25rem;
  border-radius: 1rem;
  margin-top: 6rem;
  z-index: var(--z-tooltip);
  display: grid;
  place-items: center;
  row-gap: 1rem;
  
}

.products__subtitle {
  text-align: center;
  position: absolute;
  z-index: var(--z-tooltip);
  width: 150px;
  bottom: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  
}

.products__card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products__img {
  position: absolute;
  top: -8.5rem;
  left: 0;
  right: 0;
  width: 80px;
  margin: 0 auto;
  filter: var(--shadow-card);
  transition: transform 0.4s;
  z-index: var(--z-fixed);
}

.products__card:hover .products__img {
  transform: translateY(-0.5rem);
}

.products__leaf1,
.products__leaf2,
.products__leaf3 {
  position: absolute;
  width: 40px;
}

.products__leaf1 {
  top: -2.5rem;
  left: 0;
  rotate: 30deg;
}

.products__leaf2 {
  top: 17rem;
  right: 1.5rem;
  rotate: -15deg;
}

.products__leaf3 {
  left: 0;
  top: 28rem;
  margin: 0 auto;
  bottom: 3rem;
  rotate: -45deg;
}

/*=============== SHOP ===============*/

.shop {
  margin-top: 3rem;
}

.shop__container {
  position: relative;
  padding-bottom: 4rem;
}

.shop__content {
  position: relative;
  padding: 2.5rem 1.5rem;
  row-gap: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}

.shop__content::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--first-color);
  top: 0;
  left: 0;
  box-shadow: inset var(--shadow-card);
}

.shop__data {
  z-index: 5;
}

.shop__data .shop__title,
.shop__data .shop__description {
  color: white;
  text-align: center;
}

.shop__description {
  font-size: var(--normal-font-size);
  margin-bottom: 1.5rem;
}

.shop__title {
  position: relative;
  font-size: var(--biggest-font-size);
  font-family: var(--second-font);
  line-height: 140%;
  margin: 0.5rem auto 0.5rem;
}

.shop__leaf-1,
.shop__leaf-2 {
  position: absolute;
  width: 80px;
}

.shop__leaf-1 {
  top: -2.5rem;
  left: 0;
  rotate: 35deg;
}

.shop__leaf-2 {
  bottom: 1rem;
  right: 1rem;
  rotate: 15deg;
}

.shop__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.shop__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  background-color: white;
  color: var(--first-color);
}

.shop__button:hover {
  background-color: var(--background-color);
}

/*=============== ILUSTRATION ===============*/
.ilustration {
  position: relative;
  height: 100vh;
}

.ilustration__container {
  position: relative;
  height: 70%;
  display: grid;
  justify-items: center;
  overflow: hidden;
}

.ilustration__container img {
  position: absolute;
}

.ilustration__grass {
  bottom: 0;
}

.ilustration__stone {
  bottom: -0.5rem;
  width: 470px;
}

.ilustration__tree {
  bottom: 0.1rem;
  width: 470px;
}

.ilustration__moon {
  bottom: 2rem;
  width: 590px;
}

.ilustration__stone,
.ilustration__tree,
.ilustration__moon {
  max-width: initial;
}

.ilustration__shadow .ilustration__point {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ilustration__shadow {
  mix-blend-mode: overlay;
  mask-image: linear-gradient(to bottom, transparent, black);
}

.ilustration__titles {
  position: absolute;
  bottom: 11rem;
  text-align: center;
}

.ilustration__subtitle,
.ilustration__title {
  color: var(--second-color);
  font-family: var(--second-font);
  font-weight: var(--font-medium);
  text-shadow: 0 2px 8px var(--first-color);
}

.ilustration__subtitle {
  font-size: var(--biggest-font-size);
}

.ilustration__title {
  font-size: var(--h1-font-size);
}

.ilustration__data {
  position: absolute;
  bottom: 4rem;
  text-align: center;
  margin-inline: 1.5rem;
}

.ilustration__description {
  margin-bottom: 2rem;
}

/*=============== CONTACT ===============*/
.contact__container {
  position: relative;
  row-gap: 3rem;
}

.contact__title {
  text-align: center;
  font-size: var(--h2-font-size);
  margin: 0.5rem auto 0.5rem;
}

.contact__info {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.contact__card {
  display: inline-grid;
  position: relative;
  place-items: center;
  transition: 0.3s;
  width: 300px;
}

.contact__card .contact__data {
  position: absolute;
  color: var(--first-color);
  font-weight: 600;
  text-align: center;
}

.contact__card-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.contact__card-title,
.contact__card-data {
  font-size: var(--small-font-size);
}

.contact__card-title {
  font-weight: var(--font-medium);
}

.contact__card-data {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--first-color);
}

.contact__button {
  color: var(--black-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.25rem;
}

.contact__button:hover .contact__button-icon {
  transform: translateX(0.25rem);
}

.contact__button-icon {
  font-size: 1rem;
  transition: 0.4s;
}

.contact__form-div {
  position: relative;
  margin-bottom: 2rem;
  height: 4rem;
}

.contact__form-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--first-color);
  background: var(--background-color);
  color: var(--black-color);
  outline: none;
  padding: 1.5rem;
  border-radius: 0.75rem;
  z-index: 1;
  font-family: var(--body-font);
  font-weight: var(--font-medium);
}

.contact__form-tag {
  position: absolute;
  top: -1.55rem;
  left: 1.25rem;
  font-size: var(--smaller-font-size);
  padding: 0.25rem;
  z-index: var(--z-tooltip);
}

.contact__form-area {
  height: 11rem;
}

.contact__form-area textarea {
  resize: none;
}

/*=============== FOOTER ===============*/
.footer {
  position: relative;
  margin-top: -17rem;
  background-color: var(--second-color);
  color: white;
}

.footer__container {
  row-gap: 3rem;
  padding-top: -5rem;
  margin-top: -4rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  transition: 0.3s;
}

.footer__logo-img {
  width: 10.5rem;
  height: auto;
}

.footer__logo:hover {
  color: var(--first-color);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
  font-weight: var(--font-medium);
  width: 200px;
}

.footer__subscribe {
  background-color: var(--first-color-lighten);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  border-radius: 0.5rem;
}

.footer__input {
  width: 70%;
  padding: 0 0.5rem;
  background: none;
  color: var(--text-color);
  border: none;
  outline: none;
}

.footer__button {
  padding: 1rem;
  border: none;
  left: 0;
}

.footer__data {
  display: grid;
  row-gap: 0.75rem;
  margin-top: 1rem;
}

.footer__information {
  font-size: var(--small-font-size);
  color: white;
}

.footer__social {
  display: inline-flex;
  column-gap: 0.75rem;
}

.footer__social-link {
  font-size: 1rem;
  color: var(--white-color);
  transition: 0.3s;
}

.footer__social-link:hover {
  transform: translateY(-0.25rem);
}

.footer__cards {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  margin-top: 1.5rem;
}
.footer__card {
  width: 35px;
}

.footer__copy {
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin: 5rem 0 1rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 370px) {
  .container {
    margin-inline: 1rem;
  }

  .home__images {
    width: 245px;
    height: 320px;
  }

  .home__liquid {
    width: 250px;
    left: 0;
  }

  .home__juice {
    width: 100px;
  }

  .home__apple1,
  .home__apple2 {
    width: 70px;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .about__tree-1 {
    left: -4rem;
  }

  .about__tree-2 {
    right: -4rem;
  }

  .products__content {
    grid-template-columns: 160px;
    justify-content: center;
  }

  .ilustration__stone {
    width: 370px;
  }

  .ilustration__tree {
    width: 400px;
  }

  .ilustration__moon {
    width: 520px;
  }

  .ilustration__titles {
    bottom: 9rem;
  }

  .ilustration__data {
    bottom: 2rem;
  }
}

/* For medium devices */
@media screen and (min-width: 540px) {
  .products__content {
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
  }

  .ilustration__container {
    height: 85%;
  }

  .ilustration__grass,
  .ilustration__stone,
  .ilustration__tree,
  .ilustration__moon {
    width: 100%;
  }

  .ilustration__moon {
    bottom: 3rem;
  }

  .ilustration__titles {
    bottom: 13rem;
  }

  .ilustration__data {
    bottom: 2rem;
  }

  .contact__info {
    grid-template-columns: 300px;
    justify-content: center;
  }

  .contact__form {
    width: 360px;
    margin: 0 auto;
  }

  .footer__subscribe {
    width: 400px;
  }

  .footer__container {
    grid-template-columns: repeat(2, max-content);
  }
}

@media screen and (min-width: 767px) {
  .section {
    padding-block: 7rem 1.5rem 0 1.5rem;
  }

  .home__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    align-items: center;
    column-gap: 4rem;
    padding-top: 0;
  }

  .home__title {
    width: 390px;
  }

  .home__description {
    width: 390px;
  }

  .top-slider {
    gap: 40px;
  }

  .about {
    margin-top: -5rem;
  }

  .about__container {
    grid-template-columns: 0.6fr;
    justify-content: center;
  }

  .about__tree-1,
  .about__tree-2 {
    width: 200px;
  }

  .products {
    margin-top: -15rem;
  }

  .products__content {
    grid-template-columns: repeat(3, 160px);
  }

  .products__subtitle {
    text-align: center;
    font-size: 1rem;
    bottom: 2.7rem;
    width: 200px;
  }

  .ilustration__container {
    height: 95%;
  }

  .ilustration__titles {
    bottom: 16rem;
  }

  .ilustration__subtitle {
    font-size: 2.5rem;
  }

  .home__title {
    font-size: 4.5rem;
  }

  .contact__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 3rem;
  }

  .contact__card {
    width: 250px;
  }

  .footer {
    margin-top: -10rem;
  }

  .footer__container {
    grid-template-columns: repeat(1, max-content);
    column-gap: 3rem;
  }
  .footer__subscribe {
    width: initial;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle,
  .nav__close,
  .nav__sello {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
    color: var(--second-color);
    font-weight: var(--font-medium);
  }

  .nav__link i {
    font-size: 1.5rem;
  }
  .nav__social-link {
    color: var(--second-color);
  }

  .nav__logo-img {
    width: 10rem;
    height: auto;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 2rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }

  .home__title {
    width: 420px;
  }

  .home__images {
    width: 530px;
    height: 590px;
  }

  .home__liquid {
    width: 530px;
  }

  .home__juice {
    width: 220px;
    left: 0;
    top: 1.5rem;
  }

  .home__apple1 {
    width: 180px;
    top: 10rem;
    left: -1rem;
  }

  .home__apple2 {
    width: 380px;
    right: 0.5rem;
  }

  .home__leaf:nth-child(1),
  .home__leaf:nth-child(6) {
    width: 70px;
  }

  .home__leaf:nth-child(2),
  .home__leaf:nth-child(5),
  .home__leaf:nth-child(4) {
    width: 60px;
  }

  .home__leaf:nth-child(1) {
    top: -1rem;
    right: 2rem;
  }

  .home__leaf:nth-child(2) {
    top: 2.5rem;
    left: 2.25rem;
  }

  .home__leaf:nth-child(3) {
    width: 40px;
    top: 12rem;
    right: 10rem;
  }

  .home__leaf:nth-child(4) {
    bottom: 8rem;
    left: 4.5rem;
  }

  .home__leaf:nth-child(5) {
    right: 10rem;
  }

  .home__leaf:nth-child(6) {
    bottom: 1rem;
    left: -8rem;
  }

  .home__shape-small {
    width: 400px;
    height: 400px;
    top: 0;
    left: -15rem;
  }

  .home__shape-big {
    width: 500px;
    height: 500px;
    top: 22rem;
    right: 10rem;
  }

  .about {
    margin-top: 2rem;
  }

  .about__title-img-1 {
    width: 60px;
  }

  .about__title-img-2 {
    bottom: 5.75rem;
  }

  .about__description {
    padding: 2rem;
  }

  .about__tree-1,
  .about__tree-2 {
    width: 300px;
    top: 14rem;
  }

  .about__img {
    width: 450px;
  }

  .products {
    margin-top: 0;
  }

  .products__container {
    padding-top: 7.5rem;
    margin-top: 2rem;
  }

  .products__content {
    grid-template-columns: repeat(3, 250px);
    gap: 10rem 4rem;
  }

  .products__card {
    padding: 9rem 2rem 2rem;
    border-radius: 1.5rem;
  }

  .products__img {
    width: 105px;
    top: -10.5rem;
  }

  .products__leaf1,
  .products__leaf2,
  .products__leaf3 {
    width: 80px;
  }

  .products__leaf1 {
    top: 2rem;
  }

  .products__leaf2 {
    top: 30rem;
    right: 3rem;
  }

  .products__leaf3 {
    left: 1rem;
    margin: initial;
  }

  .ilustration__container {
    height: 110%;
  }

  .ilustration__moon {
    bottom: 0;
  }

  .ilustration__titles {
    bottom: 20rem;
  }

  .contact__container {
    margin-top: 3rem;
    column-gap: 6rem;
  }

  .contact__info,
  .contact__form {
    margin-top: 2rem;
  }

  .footer {
    margin-top: -3rem;
  }

  .footer__logo {
    font-size: var(--h3-font-size);
  }
  .footer__container {
    grid-template-columns: 1fr 0.5fr 0.5fr 0.5fr;
  }
  .footer__copy {
    margin: 7rem 0 2rem;
  }
}

@media screen and (min-width: 1048px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .about__description {
    font-size: 1.2rem;
  }

  .about__tree-1,
  .about__tree-2 {
    width: 480px;
  }

  .about__img {
    width: 350px;
    margin-top: 4rem;
  }

  .ilustration__container {
    height: 150%;
  }

  .footer {
    margin-top: 10rem;
  }
}
