.icon-image {
    height: 60px;
    margin-right: 16px;
    border-radius: 10px;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d3efff;
    padding: 50px 20px;
    height: 100vh;
    width: 100%;
}

.hero-image-medium {
    height: 350px;
    margin-left:-20px;
    margin-bottom: 20px;
}

.hero-image-large {
    height: 464px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: flex-start;
}
        

.hero-images-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
}

.hero-image-group {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;            
}

.hero-image-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-items: flex-end;
    flex-wrap: nowrap;
}

.store-button-box {
    margin-top: 16px;
    height: 62px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
        
.google-play-button {
    height: 62px;
}

.app-store-button {
    height: 48px;
}

.desktop-only {
    display: unset;
}

.mobile-only {
     display:none;
}

@media (max-width: 864px) {
    .hero-images-box {
        flex-direction: column;
        gap: 0;
        margin-top: 24px;
    }

    .hero-image-group {
        margin-bottom: 16px;
    }

    .hero-image-large {
        height: 358px;
    }

    .hero-image-medium {
        height: 286.4px;
    }

    .app-store-button {
        width: 160.2px;
        height: auto;
    }

    .hero {
        height: auto;
        padding: 20px 20px;
    }

    .hero-image {
        height: 350px;
    }

    .moblie-store-button-box {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .desktop-only {
        display:none;
    }

    .mobile-only {
        display:unset;
    }
}