* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.banner {
  padding: 0;
  margin: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

main {
  position: relative;
  width: 100%;
  height: 100%;
}

.item{
  cursor: pointer;
}
.item:hover{
  box-shadow: 0px 0px 30px #040000;
}

.item {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 0px 20px rgba(0,0,0,0.5);
	transition: all 0.75s;

  &:nth-child(1), &:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: 0 0px 20px rgba(0,0,0,0.5);
    opacity: 1;
  }

  &:nth-child(3) { left: 60%; }
  &:nth-child(4) { left: calc(60% + 220px); }
  &:nth-child(5) { left: calc(60% + 440px); }
  &:nth-child(6) { left: calc(60% + 660px); opacity: 0; }
}
@media (min-width:1599px){
  .item {
    width: 200px;
    height: 300px;
    list-style-type: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 0px 20px rgba(0,0,0,0.5);
    transition: all 0.75s;

    &:nth-child(1), &:nth-child(2) {
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      transform: none;
      border-radius: 0;
      box-shadow: 0 0px 20px rgba(0,0,0,0.5);
      opacity: 1;
    }

    &:nth-child(3) { left: 70%; }
    &:nth-child(4) { left: calc(70% + 220px); }
    &:nth-child(5) { left: calc(70% + 440px); }
    &:nth-child(6) { left: calc(70% + 660px); opacity: 0; }
  }
}

.content {
  width: min(30vw,400px);
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  /*font: 400 0.85rem helvetica,sans-serif;*/
  color: white;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
  opacity: 0;
  display: none;

  & .title {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
  }

  & .description {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 16px;
  }

  & button {
    width: fit-content;
    background-color: #FFBF3C;
    color: #040000;
    border: 1px solid rgba(255, 191, 60, 0);
    border-radius: 0px;
    padding: 8px 35px;
    cursor: pointer;
    transition: all .3s;
  }
  & button:hover {
    background-color: transparent;
    border: 1px solid rgba(255, 191, 60, 1);
    color: #fff;
  }
  & button a{
    color: #040000;
  }
  & button:hover a{
    color: #fff;
  }
}

.item:nth-of-type(2) .content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.nav {
  position: absolute;
  bottom: calc(50% - 240px);
  left: 66%;
  transform: translateX(-60%);
  z-index: 5;
  user-select: none;

  & .btn {
    background-color: rgba(255,255,255,0);
    color: #fff;
    border: 1px solid #fff;
    margin: 0 15px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;

    &:hover {
      background-color: rgba(255,255,255,0.3);
    }
  }
}
@media (min-width:1599px){
  .nav{
    left: 74.5%;
  }
}
@media (max-width:992px){
  .nav{
    left: 80%;
  }
}

@media (width > 650px) and (width < 900px) {
  .content {
    & .title        { font-size: 1rem; }
    & .description  { font-size: 0.7rem; }
    & button        { font-size: 0.7rem; }
  }
  .item {
    width: 160px;
    height: 270px;

    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 170px); }
    &:nth-child(5) { left: calc(50% + 340px); }
    &:nth-child(6) { left: calc(50% + 510px); opacity: 0; }
  }
}

@media (width < 650px) {
  .content {
    & .title        { font-size: 0.9rem; }
    & .description  { font-size: 0.65rem; }
    & button        { font-size: 0.7rem; }
  }
  .item {
    width: 130px;
    height: 220px;

    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 140px); }
    &:nth-child(5) { left: calc(50% + 280px); }
    &:nth-child(6) { left: calc(50% + 420px); opacity: 0; }
  }
}