.banner-wrap { 
    display: block;
    position: relative; 
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    overflow: hidden;
    color: #fff;
    user-select: none;
    
}

.banner-wrap img {
    transition: opacity 0.5s ease;
}

.banner-wrap:hover img {
    opacity: 0.65;
}

.banner-wrap .content {
    position: absolute;
    display: flex;
    align-items: center;
    width: 60%;
    height: 80%;
    z-index: 1;
    top: 10%;
    left: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.banner-wrap .content h1 {
    font-size: 2.5rem;
    color: #fff;
}

.banner-wrap .pack-contents {
    display: flex; 
    justify-content: space-evenly;
    gap: 20px;
}

.banner-wrap .item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #fff;
    background: #79b446aa;
    padding: 20px; 
    width: 100%;
    border-radius: 5px;
}

.banner-wrap .item i {
    font-size: 1.5rem;
    margin-right: 10px;
}