.sec {
  height: 100vh;
  width: 100vw;
  transition: 750ms ease-in-out;
}

.sec-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 100%;
}

.abs {
  position: absolute;
  transition: 750ms ease-in-out;
}

.sec-1 h1 {
  position: relative;
  font-size: 5em;
  letter-spacing: 0.1em;
  color: #fff;
}

.sec-1 h2,
h3 {
  opacity: 0;
  color: #fff;
}

.sec-2 {
  position: relative;
  display: none;
  opacity: 0;
  justify-content: center;
  align-items: center;
}

.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
  transform: perspective(50em) rotateY(5deg) translateX(60%);
}

.text-content h2 {
  font-size: 3em;
  font-weight: 600;
  color: white;
}

.text-content p {
  display: block;
  margin: 1em 0 2em 0;
  width: 75%;
  color: white;
}

.text-content button {
  outline: none;
  border: none;
}

.text-content button a {
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  background-color: #000;
  color: #fff;
  transition: 250ms ease-in-out;
  box-shadow: 0 0 0.5em 0 #fff;
}

.text-content button a:hover {
  cursor: pointer;
  background-color: #fff;
  color: #000;
  transform: scale(1.1) translateX(0.25em);
}

.sec-2 img {
  transform: scale(0.5);
}

main i {
  color: white;
  font-size: 1.5em;
  transition: 250ms ease-in-out;
  padding: 1em;
  opacity: 0;
  transform: translateY(-50%);
}

main i:hover {
  color: #fc354c;
  cursor: pointer;
}

.fa-circle-chevron-right {
  position: absolute;
  top: 50%;
  right: 5%;
}

.fa-circle-chevron-right:hover {
  transform: translateX(0.25em) translateY(-50%) scale(1.1);
}

.fa-circle-chevron-left {
  position: absolute;
  top: 50%;
  left: 5%;
}

.fa-circle-chevron-left:hover {
  transform: translateX(-0.25em) translateY(-50%) scale(1.1);
}

.nav-dots {
  display: flex;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 0.75em;
  transition: 500ms ease-in-out;
  opacity: 0;
}

.dot:hover {
  cursor: pointer;
}

.skip {
  position: absolute;
  left: 5%;
  bottom: 10%;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  color: #fff;
  background-color: #000;
  box-shadow: 0 0 0.5em 0 #fff;
  transition: 250ms ease-in-out;
}

.skip:hover {
  background-color: #fff;
  color: #000;
  cursor: pointer;
  transform: scale(1.1);
}

.sec-3 {
  display: none;
  opacity: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.products-title {
  color: #fff;
  position: absolute;
  top: 5%;
  z-index: 999;
}

.card-list {
  display: none;
}

.grid-back {
  position: absolute;
  top: 100px;
  left: 10px;
  color: #fff;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-back i {
  opacity: 0;
}

.grid {
  padding: 1em 0;
  width: 50vw;
  max-height: 70vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  gap: 1em;
  overflow-y: auto;
}

.grid::-webkit-scrollbar {
  display: none;
}

.card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 200px;
  min-height: 200px;
  min-width: 200px;
  border-radius: 0.5em;
  transition: 250ms ease-in-out;
}

.card h3 {
  color: #fff;
  opacity: 0;
  transform: translateY(5em);
  transition: 250ms ease-in-out;
  pointer-events: none;
}

.card::after {
  position: absolute;
  content: "";
  inset: 0;
  background-image: url(https://ddoomk3f11rr4.cloudfront.net/media/catalog/product/cache/ea8833a9ab95c83c4ff073f0ad2e51e1/h/a/hanes_p170_black.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 0.5em;
  z-index: -1;
}

.card:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.7);
}

.card:hover h3 {
  transform: translateY(0);
  opacity: 1;
}

.sec-4 {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.sec-4 p {
  display: inline-block;
  width: 45%;
  margin: 1.5em 0;
  text-align: center;
  color: #fff;
}

.buttons {
  display: flex;
}

.shop {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  min-width: 7em;
  text-align: center;
  padding: 0.5em 1.5em;
  margin: 0 1em;
  border-radius: 0.5em;
  background-color: #000;
  box-shadow: 0 0 0.5em 0 #fff;
  font-weight: 600;
  transition: 250ms ease-in-out;
}

.shop:hover {
  background-color: #fff;
  color: #000;
  cursor: pointer;
  transform: scale(1.1);
}

.sec-4 h2 {
  color: white;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 0.75em 0 #fff;
  transition: 250ms ease-in-out;
}

.bubble:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.bubble1 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQMAAADCCAMAAAB6zFdcAAAAgVBMVEX///8Yd/IAbfEAcfIAa/EAb/EAbPHW4vwAafHs8v4Ac/L4+//f6fwQdfL7/f/L2/u6z/o6hfNzovVJjPRimfXT4fygv/gygfNblfS+0vp8qPaPtPfE1/uHr/fJ2vsrfvOuyPmdvfjc5/xGi/R1pPbn7/2rxflsnfWYuPgbevIAYfB5JIsvAAAFpElEQVR4nO2d63rqKhCGG0hSGhuP9VCt1dqlrq77v8Bde1hbdwLMkDSA+3t/tk/yMJ8DDMNAbm4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgu+vvd4HE4HD4Odvu+78Z0Tn96WE7KNBciOyFEnhaT5WH6v1FiuhqlQsqyTM4pSylFOloNfDfv53kaCyEvrb9QQgoxfvLdyJ9kv85EobX/m0Jk63vfTf0hBgtl8IBLb1CTa+wTz6Pc7gJnzpCPnn03uWV2k5TmAmfOkL/ufDe7Rfq/FMcH/vqCGvd8N70thlI6KHBCZkPfjW+F/gO7G/xLmS+uIG66LV2d4JOimPo2oSkz1UiBE2rm24hmjPPGEiRJPvZtRhMmzfrBN3Li2xBn+vN2JHgXYR7pJNnfuAQF9RSbKEXoz9uT4CRCjHPkqE0J3kUY+TaIz6KtseAbufBtEpe14FtZvpPoY8ps6dsoHkNmaFRIkapk/jralEKlQkhZ05NUVIuHPU+CTE1eBnd/n767f96ujvMaEfYebeIyZ6ySSvF2qJv49tXeVG46t8SZNWM8lIXGw+9rRhS57tYQd3aMnpAfdW+p0yBRt10a0oANvScY1oS1GsTSG2YZXYKt/jW1GiTZS2d2NKAnyG4gfhveU69BksewcKAPiKUx8tNoICOIlO7oA6L5J9VokKg701NBsCS7gTT1BL0G4TtCj+EG5jfpNEhU6CPCb7obWOIdrQYW//FPSZ4Ucku4o9WglN2Y4soTeclstaRmvfCFeOzEFlceyG5Q1CfMd4f1r/EHD9o8VBF0NoUxImaHmucf31Ipiy/0zwY9Kg7pYbKoKbJYKpobZdvOLaNzpOdR82o+ZJYSny0fPNhGhZFErPozoyMJH8bRuGVoUI2QDvTMiwh3L/qFkT+q/pQLetpBhruC1k9nFA3e6A8HPDvSg8Q6DYiFeyfCDRXvqON6Yw2SNNQF9ICzt9RMg7roIgi2nC3GZhrIuigzBFYdarDyYB+FMWe3vZkGmhWXfxYdahBqhdKIU4vZTINy7sE+Cowgp7EGiQf7KBTd+UESapBkM0KkZ/ypPP4nvcD8ssyDfRQsGqS87I+hKidgDSx9gRffWrIJoWpgGRN5GuyMgXewY6JlbuRpYE5NBjs3WmIkngbmDatgYyRLrMzTwJyeLbQlPJ6xrJl4GphL24ItzrKsnXkamPMxwa6dLTkUlgaWnFSwORRLu1katKlnp5iDJFa7D+apMdTlgi23ztLAXNkVcG7dvMfC0sAcawRcijI1dmKWBuatioD32sx7rhwN+uYVU8B7ruYBIXu6PaP6S07P/mteLRQh772bm56JM6o5FHX2X3O0FXQNRqMSAnouLehaHEZNVgMNAp4ZT9Br8xpoEHhtHj237K5BwEHiJ+RaXXcNgt1r/IY8KrprEH7xPrV231mD8Gv3yWc4nDUI3w3IjuCqQQRucDrT9aMaRHGmi3i2z1GDOM72Ec94umlQvnmwx4VbyrDopoEKOHFwCeWIo5MGMV0DQegNLhrEctr5A8IdEC4aqKiuGLXfBeKgQbrt3pAmrG0TJF+DmAaDT2x3A7E1iO9uIOsdUVwNYrwjynZdGlODOO8Ku+kZReBpUL5FsUyo0jPdHcjSINJr8z4w3CHJ0UC+emh7a+jvEmVoIEItPiKivVOWrEGpIlku65lqDm9TNShkNEtFPf1FXmccTYMyX8Q7Gp4zrNtCJWkgxbb75v4MvXH1UD9Bg1Idr8MJPtm9/rdDWDUo89dYLoij8jS//AaFRYMin1/jZ1meJ+ffIjFpcPoWybV9heOb+7Nv0ug1KIRYRpUw4vJ4/Po2Ub0Gp28THQMvL2iDwWqkhFSVvwsp1GgdaiFy6/Sms+oaYDwbXNNUCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+Adsc0i5xOhnBAAAAABJRU5ErkJggg==);
  width: 40px;
  height: 40px;
  right: 10%;
  top: 20%;
}
.bubble2 {
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIkSPlRGoB16Kb-9q3l0H0swTq307DbN2je3xgqV_pFsuvPilZ4NdbLiQ6jUGvjBVDjJs&usqp=CAU);
  width: 60px;
  height: 60px;
  right: 20%;
  top: 30%;
}
.bubble3 {
  background-image: url(https://static.vecteezy.com/system/resources/previews/002/557/421/original/tiktok-logo-black-mobile-social-media-icon-free-vector.jpg);
  width: 50px;
  height: 50px;
  right: 15%;
  top: 75%;
}
.bubble4 {
  background-color: #fff;
  background-image: url(https://brandlogos.net/wp-content/uploads/2016/06/linkedin-logo-512x512.png);
  width: 40px;
  height: 40px;
  left: 10%;
  top: 20%;
}
.bubble5 {
  background-color: #fff;
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Steam_icon_logo.svg/640px-Steam_icon_logo.svg.png);
  width: 60px;
  height: 60px;
  left: 20%;
  top: 30%;
}
.bubble6 {
  background-color: #fff;
  background-image: url(https://i.pinimg.com/originals/1b/76/01/1b7601e035a83c13c208b4ec905ee6d9.png);
  width: 50px;
  height: 50px;
  left: 15%;
  top: 75%;
}

@media (min-width: 300px) and (max-width: 900px) {
  .sec-1 {
    width: 100vw;
    text-align: center;
  }

  .sec-1 h1 {
    font-size: 2.5em;
  }

  .sec-2 {
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    width: 100vw;
    padding-top: 25%;
  }

  .sec-2 h2 {
    font-size: 1.5em;
  }

  .sec-2 p {
    font-size: 0.5em;
  }

  .sec-2 img {
    position: absolute;
    bottom: 25%;
    left: 50%;
    width: 35%;
    height: 20%;
    transform: translateX(-50%);
  }

  .text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    transform: rotateY(0) rotateX(25deg);
    height: 40%;
    width: 100%;
  }

  .text-content p {
    font-size: 1em;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 5em;
    margin-top: -25%;
    min-height: 65vh;
    overflow-y: auto;
  }

  .card {
    min-height: 25vh;
  }

  .buttons {
    flex-direction: column;
    justify-content: space-between;
    height: 10%;
  }

  .bubble {
    scale: 0.75;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}
