.hero_section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    padding-top: 150px;
    padding-bottom: 100px;
}

body {
    margin: 0;
    font-family: GraphikAlt, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 14px;
    font-weight: 400;
    color: #242424;
    text-align: left;
    line-height: 1.5;
    background-color: #fff;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    color: rgba(36, 36, 36, .7);
    font-size: 18px;
}

.hide-desktop,
.hide-mobile-tablets {
    display: none;
}

/* These classes will hide/show the elements on specific device widths */
@media screen and (max-width: 1024px) {
    .hide-desktop {
        display: block;
    }

}

@media screen and (min-width: 1025px) {
    .hide-mobile-tablets {
        display: block;
    }
}

.product-hero-block__images {
    width: 50%;
    margin-bottom: 5%;
}

.product-hero-images__desktop-app {
    left: 2%;
}

.product-hero-images__mobile-app {
    width: 40%;
    top: 7%;
    right: -36%;
    box-shadow: 0px 20px 30px rgba(0, 10, 10, 0.5);
    border-radius: 2rem;
}

.product-hero-images__card {
    width: 50%;
    top: 45%;
    left: -30%;
    box-shadow: 0px 20px 30px rgba(0, 10, 10, 0.5);
    border-radius: 2rem;
}

.product-hero-images__container {
    transform-origin: 50% 0;
}

.product-hero-images__desktop-app {
    box-shadow: 0px 20px 30px rgba(0, 10, 10, 0.5);
}


.club_feature_img {
    position: absolute;
    z-index: -1;
    right: -80px;
    top: -90px;
}

.max-width-540 {
    max-width: 540px;
}

.max-width-300 {
    max-width: 300px;
}

/* Card hover */
.card_hover {
    transition: 0.3s;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    /* Adjust as needed */
}

.card_hover:hover {
    transform: translateY(-10px);
    /* This makes the card move upwards */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    /* This increases the depth of the shadow to give a "lifting" effect */
}

.card-arrow {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.card_hover:hover .card-arrow {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-text {
    color: white;
    font-size: 24px;
    text-align: center;
}

.card_hover:hover .overlay {
    opacity: 1;
}

.list-group-item::before {
    position: absolute;
    left: -0.5rem;
    content: '✓';
    font-weight: 100;
    color: green;
    font-size: 20px;
}

@media(max-width: 960px) {
    .club_feature_img {
        position: static;
    }
    .hero_section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .product-hero-images__mobile-app {
        border-radius: 1rem;
    }
}

@media(max-width: 600px) {
    .club_feature_img {
        position: static;
    }
    .product-hero-block__images{
        width: 60%;
    }
    .hero_section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .product-hero-images__mobile-app {
        width: 36%;
        top: 57%;
        right: -3%;
        border-radius: 0.5rem;
    }
}

@media(max-width: 380px) {
    .club_feature_img {
        position: static;
    }
    .product-hero-block__images{
        width: 80%;
    }

    .hero_section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .product-hero-images__card {
        width: 50%;
        top: 65%;
        left: -20%;
        box-shadow: 0px 20px 30px rgba(0, 10, 10, 0.5);
        border-radius: 0.5rem;
    }
}