* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: grid;
    align-items: center;

}

.our-clients {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 2rem;
}

.our-clients h1 {
    font-size: 100px;

}

.our-clients ul {
    padding: 10px;
    margin: 0;

}

.our-clients ul li {
    list-style: none;
    display: inline-block;
    width: 180px;
    height: 100px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 50px;
    box-shadow: 0px 0px 10px -7px #555;
    transition: .5s;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    row-gap: 20px;


}

.our-clients ul li img {
    width: 100%;
    height: 100%;
}

.our-clients ul li img:nth-child(1) {
    transform: translateY(0);
    transition: .5s;
}

.our-clients ul li img:nth-child(2) {
    transform: translateY(0);
    transition: .5s;
}

/*Hover-Section*/


.our-clients ul li:hover img:nth-child(1) {
    transform: translateY(-100%);
    transition: .5s;
}

.our-clients ul li:hover img:nth-child(2) {
    transform: translateY(-100%);
    transition: .5s;
}


@media (max-width: 767px) {
    .our-clients h1 {
        text-align: center;
        font-size: 40px;
    }

    .our-clients {

        margin-top: 8rem;
    }
}