#hero {
    position: relative;
    padding: 10em 0 0em 0;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#hero .hero-text {
    padding-left: 20px;
    padding-bottom: 10em;
}

#hero .hero-text h1 {
    font-size: 2em;
    font-family: "Venera900";
}

.product-items {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.product {
    position: relative;
    display: inline-block;
    width: 70%;
    margin-bottom: 20px;
}

.product img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.product .product-info {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: 1.5em;
    width: 100%;

    h2 {
        margin-top: -10px;
        padding: 0px;
    }

    p {

        color: #fdc2bb;
        margin: 0px;
        padding: 0px;
        font-size: 0.5em;
    }
}

.product .learn-more {
    z-index: 2;
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.5em;
    margin-top: 10px;
}

.product-other {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    img {
        border-radius: 20px;
        width: 100%;
    }
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    z-index: 1;
}

@media screen and (max-width: 1023px) {
    .product-items {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      padding-inline: 20px;
    }
  
    .product,
    .product-other,
    .product-other .product {
      width: 100%;
      /* margin-bottom: 20px; */
    }
  
    .product-other {
      flex-direction: column;
      /* gap: 20px; */
    }
  
    .product-info {
        h2 {
            font-size: 1em;
        }
    
        p {
    
            font-size: 0.3em;
        }
    }
  
    .product .learn-more {
      font-size: 0.4em;
    }
  }
  