body {
  background: #fff;
}

main {
  display: grid;
  grid-template-rows: 250px auto;
  grid-template-columns: 100%;
}

.banner {
  grid-column: 1;
  grid-row: 1;
  background-color: #000;
}

.index-mesi {
  grid-column: 1;
  grid-row: 3;
  padding: 1rem;
}

.index-txt {
  grid-column: 1;
  grid-row: 4;
  padding: 1rem;
  max-height: 200px;
  overflow-y: auto;
  border-bottom: 1px dotted #666;
  border-top: 1px dotted #666;
  background-color: #eee;
}  
.index-slide {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  padding: 1rem;
}
.banner h1 {
  border-bottom: 2px solid #18baad;
  text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #000, 0 0 20px #000, 0 0 30px #000, 0 0 40px #000, 0 0 55px #000, 0 0 75px #000;
  font-size: 2rem;
}
.banner h1 img{
  height: 60px;
  width: auto;
}
.banner h1 span {
  font-size: 3.4rem;
  color: #18baad;
  text-shadow: none;
  border-radius: 100%;
  vertical-align: middle;
}
.banner .swiper{
  height: 100%;
}
.banner .swiper,
.banner .swiper-wrapper{
  height: 100%;
}
.banner .swiper-slide video {
  object-fit: cover;
  object-position: 0 50%;
  height: 100%;
  width: 100%;
}
.slide-lusso .slide-lusso-bg{
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
  opacity: 0.8;
  transition: .5s ease;
  border-radius: .2rem;
  height: 100%;
  border-radius: .2rem;
}
.slide-lusso .slide-lusso-logo {
  width: auto;
  height: auto;
  background-color: #fff;
  padding: .1rem .3rem;
  border-radius: .2rem;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
}
.slide-lusso .slide-lusso-txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  gap: .2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.slide-lusso .slide-lusso-txt span {
  background-color: #18baad;
  width: fit-content;
  padding: .1rem .3rem;
  border-radius: .2rem;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
}


.cruises-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media(min-width: 1024px) {
  body {
    background: linear-gradient(#18baad 500px, #fff 700px);
  }

  main {
    grid-template-columns: 1fr minmax(900px, 1400px) 1fr;
    grid-template-rows: 450px auto;
  }

  .banner {
    grid-column: 1/4;
    grid-row: 1;
    background-color: #000;
  }
  .cruises-list {
    grid-row: 3 / 12;
}
  .index-mesi {
    grid-column: 1;
    grid-row: 3;
    padding: 0;
  }
  .index-txt {
    grid-column: 1;
    grid-row: 4;
    padding: 0;
    max-height: none;
    overflow-y: visible;
    border-bottom: 0;
    border-top: 0;
    background-color: transparent;
  }
  .index-slide {
    grid-column: 1 / 3;
    grid-row: 2;
    padding: 0;
  }  
  .banner h1 {
    font-size: 4rem;
  }
  .banner h1 img{
    height: 100px;
  }
  .cruises-list {
    grid-column: 2;
    grid-row: 3 / 12;
  }
}