#section02 *,
#section02 *::after,
#section02 *::before {
  box-sizing: border-box;
}

#section02 .container {
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

#section02 .center {
  height: 100vh;
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translate(-50%);
}

#section02 .items {
  transform-origin: center 200vh;
  transform: rotate(0); 
  display: flex;
}

#section02 .item {
  position: absolute;
  cursor: grab;
  transform: translateX(-50%);
}

#section02 .item a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  display: block;
  margin: 25px 0;
}

#section02 .item a.link {
  text-decoration: underline;
  text-underline-offset: 8px;
}

#section02 .item p {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

#section02 .card {
  display: block;
  width: 600px;
  height: 300px;
  background: #fff;
  border-radius: 17px;
  overflow: hidden; 
  position: relative;
}

#section02 .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  /* filter: grayscale(100); */
  pointer-events: none;
}

@media (max-width: 600px) {

  #section02 h2 {
    display:  none;
  }

  #section02 .container {
    height: 20vh;
  }

  #section02 .card {
    width: 300px;
    height: 150px;
  }
}