.scroll-container {
    position: relative;

}

.scroll-container img {
    width: 100%;
    height: auto;
    /* width: inherit;
    height: inherit; */
    position: absolute;
    left: 0%;
    top: 0%;
    animation: primary 10s linear infinite;
    transition: all 0.3s;
}

.scroll-container-hover {
    position: relative;

}

.scroll-container-hover img {
    width: 100%;
    height: auto;
    /* width: inherit;
    height: inherit; */
    position: absolute;
    left: 0%;
    top: 0%;
    transition: all 0.3s;
    animation: primary 20s linear infinite;
}


@keyframes primary {
    0% {
        top: 0%;
    }

    50% {
        top: -120%;
    }

    100% {
        top: 0%;
    }
}

.rectangle p {
    height: 105px;
}
.list-item-horiz{
    display: flex !important;
    align-items: center;
    justify-content: center;
}


@media (max-width: 980px){
    .full-four-square .list-item-horiz li {
        width: 50% !important;
    }

    .full-four-square ul {
        display: block !important;
    }

}