  .search {
    grid-column: 1;
    grid-row: 1;
  }

  h3 {
    font-weight: 900;
  }

  .content {
    grid-column: 1;
    grid-row: 3;
    display: grid;
    gap: 2rem;
    margin-top: 1rem;
    grid-template-columns: 100%;
    grid-template-rows: 24px auto;
  }

  .index-breadcrumb {
    grid-column: 1;
    grid-row: 1;
  }

  .banner {
    position: relative;
  }

  .banner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }

  .banner h1 {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: fit-content;
    height: fit-content;
    color: #fff;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 1rem;
  }

  .index-mesi-tutte {
    background-color: #87c6c1 !important;
    color: #222 !important;
    font-weight: bold;
    flex: 1 1 30% !important;
  }

  /* TABS */

  .tabs2>.tabs-short {
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
  }

  .tabs2>.tabs-full {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: .5rem;
  }

  .tabs2>.tabs-full a {
    padding: 1rem;
    text-align: center;
    border-radius: .2rem;
    background: #18baad;
  }

  .tabs2>.tabs-full a:active,
  .tabs2>.tabs-full a:focus,
  .tabs2>.tabs-full a:hover {
    background-color: #ff8f00;
  }

  .tabs2>.tabs-short a {
    position: relative;
    background-color: #000;
    border-radius: .2rem;
  }

  .tabs2>.tabs-short a:active,
  .tabs2>.tabs-short a:focus,
  .tabs2>.tabs-short a:hover {
    background-color: #fff;
  }

  .tabs2>.tabs-short a strong {
    position: absolute;
    bottom: .5rem;
    z-index: 1;
    font-size: 1.4rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    border-bottom: 2px solid #18baad;
    margin: 0 1rem;
  }

  .tabs2>.tabs-short a img {
    width: auto;
    object-fit: cover;
    opacity: 0.8;
    transition: .5s ease;
    border-radius: .2rem;
    height: 140px;
  }

    @media(min-width: 1024px) {
    .tabs2>.tabs-short {
      grid-template-columns: repeat(2, 1fr);
    }

    .tabs2>.tabs-short a img {
      width: 100%;
      height: 100%;
    }
  }



  .content p {
    margin-bottom: 1rem;
  }




  @media(min-width: 1024px) {

    .search {
      grid-column: 1/4;
      grid-row: 2;
      height: 100%;
      margin-top: -50px;
    }

    .content {
      grid-column: 2/3;
      grid-row: 3;
      display: grid;
      grid-template-columns: 35% calc(65% - 6rem);
      grid-template-rows: auto;
      gap: 4rem;
    }

    .index-breadcrumb {
      grid-column: 1 / 3;
      grid-row: 1;
    }
    .cruises .cruises-price-container .cruise-price strong {
      font-size: 2rem;
    }

  }