main.home {
  .main-banner {
        .splide-heros h2 {
      font-size: clamp(1.2rem, 0.686rem + 1.371vw, 2.4rem);
    }
    .content {
      img {
        border-radius: 40px;
        height: 440px;
      }

      .bg-opacity {
        background: linear-gradient(270deg,
            rgba(217, 217, 217, 0) 0%,
            rgba(0, 0, 0, 1) 100%);
        border-radius: 40px;
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
        height: 440px;
      }

      .description {
        position: absolute;
        z-index: 1;
        left: 3rem;
        width: 50%;
        bottom: 3rem;

        h2 {
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
          line-clamp: 3;
          -webkit-line-clamp: 3;
        }

        p {
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
          line-clamp: 4;
          -webkit-line-clamp: 4;
        }
      }
    }
  }

  .second-banners {
    .content {
      img {
        border-radius: 20px;
        height: 212px;
      }

      .bg-opacity {
        border-radius: 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%;

        &.first {
          background: linear-gradient(180deg,
              rgba(217, 217, 217, 0) 60%,
              var(--primary) 0%);
        }

        &.second {
          background: linear-gradient(180deg,
              rgba(217, 217, 217, 0) 60%,
              var(--secondary) 0%);
        }
      }

      .description {
        position: absolute;
        z-index: 1;
        left: 0;
        padding-inline: 1rem;
        width: 100%;
        bottom: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0.5rem;

        h2,
        p {
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
          line-clamp: 1;
          -webkit-line-clamp: 1;
        }
      }
    }
  }

  .box-brand {
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;

    &.dagusto {
      background-color: rgba(0, 40, 108, 1);
    }

    &.jappi {
      background-color: rgba(0, 187, 180, 1);
    }

    &.fry {
      background-color: rgba(242, 145, 0, 1);
    }

    &.mestre {
      background-color: rgba(255, 255, 255, 1);
    }

    &.manos-verdes {
      background-color: #02843f;
    }
  }

  .news-1 {
    border-radius: 20px;

    .content {
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
    }

    h2 {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-clamp: 2;
      -webkit-line-clamp: 2;
      text-overflow: ellipsis;
    }

    p {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-clamp: 4;
      -webkit-line-clamp: 4;
      text-overflow: ellipsis;
    }

    .sct-image {
      position: relative;
      height: 210px;

      img {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
      }

      .btn {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translate(-50%, 0);
        width: 65%;
      }
    }
  }

  .news-2 {
    border-radius: 20px;

    img {
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
    }

    h2 {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-clamp: 2;
      -webkit-line-clamp: 2;
      text-overflow: ellipsis;
    }

    p {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-clamp: 3;
      -webkit-line-clamp: 3;
      text-overflow: ellipsis;
    }
  }

  .recipe-week {
    border-radius: 40px;

    img {
      border-top-left-radius: 40px;
      border-top-right-radius: 40px;
    }

    .content {
      .title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
      }

      .content-recipe {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-clamp: 6;
        -webkit-line-clamp: 6;
        text-overflow: ellipsis;
      }
    }

    .sct-redirect {
      margin-top: 5rem;
    }
  }

  .recipes-card {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }

  .hero-banner {
    position: relative;

    .content-hero {
      position: absolute;
      top: 50%;
      transform: translate(0, -50%);
      width: 35%;
      left: 7rem;
      z-index: 1;
    }

    .bg-opacity {
      background: linear-gradient(270deg,
          rgba(217, 217, 217, 0) 0%,
          rgba(0, 0, 0, 1) 100%);
      position: absolute;
      top: 0;
      left: 0;
      width: 60%;
      height: 100%;
    }
  }

  #newsletterModal {
    .modal-content {
      border-radius: 40px;

      .banner {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
      }

      .close {
        color: #fff;
        position: absolute;
        right: 0;
        padding: 1rem;
      }
    }
  }

  @media screen and (max-width: 767px) {
    .main-banner {
      .content {
        img {
          border-radius: 20px;
          height: 100%;
        }

        .bg-opacity {
          border-radius: 20px;
          height: 100%;
        }

        .description {
          left: 1rem;
          width: 70%;
          bottom: 1rem;

          a.btn {
            font-size: 16px !important;
          }
        }
      }
    }

    .news-1 {
      margin-inline: auto;

      .sct-image {
        position: relative;

        img {
          object-fit: cover;
          height: 100%;
        }

        .btn {
          font-size: 16px !important;
          bottom: 0.5rem;
          left: 50%;
          transform: translate(-50%, 0);
          width: 90%;
        }
      }
    }

    .news-2 {
      margin-inline: auto;
    }

    .recipe-week {
      border-radius: 20px;

      img {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
      }

      .sct-redirect {
        margin-top: 1rem;
      }
    }

    .hero-banner {
      .content-hero {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        width: 80%;
        left: 2rem;
      }

      .bg-opacity {
        width: 80%;
      }
    }
  }
}