.cover {
    position: relative;
    padding: 0px 30px;
    /* margin-top: 100px; */
}

.left {
    padding: 10px;
    width: 50px;
    height: 50px;
    /* margin-right: 5%; */
    border-radius: 50px;
    position: absolute;
    right: 50%;
    top: 85%;
    transform: translateY(-50%);
}

.right {
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: absolute;
    right: 45%;
    top: 85%;
    transform: translateY(-50%);
}

@media screen and (max-width: 520px) {
    .right {
        right: 35%;
    }
    /*  #benefits-mobile {
        display: block;
    } */
}


/* #benefits-mobile {
    display: none;
} */

.scroll-images-mobile {
    width: 100%;
    padding: 40px 0px;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.scroll-images {
    position: relative;
    width: 100%;
    padding: 40px 0px;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.child {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 350px;
    height: 400px;
    padding: 20px 40px;
    margin: 1px 10px;
    border: 1px solid #f1f1f1;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 15px 2px rgb(0 0 0 / 10%);
    box-shadow: 0px 0px 15px 2px rgb(0 0 0 / 10%);
    flex-direction: column;
    text-align: center;
    border-radius: 1.25rem;
    transition: var(--transition);
    background: var(--color-white);
}

.child h4 {
    margin: 10px 0;
}

.child img,
.child>svg {
    /* position: absolute;
    margin-top: -195px; */
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    /*  border-radius: 50%;
    background: #03A9F4; */
}

.scroll-images::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #aaa;
}

.scroll-images::-webkit-scrollbar-thumb {
    background-color: black;
}

button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 25px;
}