.coverboardfull{
    background-color: #f3f3f3ff;
}

.cards {
  position: absolute;
  height: 70%;
  top: 55%;
  width: 30%;
  transform: translateY(-50%);
  left: 5%;
}

.cards > img {
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
}

.default-card {
  cursor: pointer;
}

.cards > :not(.card-bg, .default-card) {
  width: 98%;
  height: 98%;
}

.cards > :not(.card-bg) {
  z-index: 20;
}

.card-content__container > .img-container > img,
.card-holder > .img-container > img {
  width: 70%;
}

.card-content__container,
.card-holder {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-container {
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-name {
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  user-select: none;
}

.card-name > p {
  background-color: #fff2ccff;
  color: #595959;
  padding: 4% 7%;
  width: 40%;
  font-weight: 800;
  border-radius: 0.5em;
}

.rightblock {
  position: absolute;
  width: 55%;
  height: 85%;
  right: 2%;
  top: 12%;
  background-color: #d9ead3ff;
  z-index: 20;
  border-radius: 0.5em;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  justify-content: center;
  align-content: center;
  padding: 2%;
}

.rightblock > .card-holder {
  height: 45%;
  width: 28%;
  background-color: #fff;
  border-radius: 0.5em;
}

.rightblock .card-name > p {
  width: 75%;
  font-size: 1.6vw;
}
.card-holder > .img-container > .card-tablet {
  width: 55%;
}

.rightblock .card-holder > .card-name {
  animation: slideDownText 1000ms linear forwards;
}
.rightblock .card-holder > .img-container {
  animation: slideDownImg 1000ms cubic-bezier(1, 1.89, 0.11, 0.84) forwards;
}

.cards .pointer{
  position: absolute;
  z-index: 100;
  width: 30%;
  top: unset;
  bottom: -40%;
  left: 30%;
  object-fit: contain;
  cursor: pointer;
}

@keyframes slideDownText {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 30%;
  }
}

@keyframes slideDownImg {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 70%;
  }
}



.cards > .girl-talking {
  position: absolute;
  top: 45%;
  height: 70%;
  left: 10%;
  width: auto;
}


.sp-1{
    top: 18%;
    left: 1%;
    width: 35%;
    height: 30%;
}


.sp-1 > img{
    left: 0;
    top: 10%;
}