.slider {
    height: 180px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 98%;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.01) 100%);
    content: "";
    height: 180px;
    position: absolute;
    width: 60px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slide-track {
    display: flex;
    width: fit-content;
    animation: scroll 180s linear infinite; /* Adjust the duration as needed */
}

.slide {
    height: 180px;
    width: 80%;
    margin-right: -15px;
    padding-right: 0px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100%  )); } /* Adjust the distance to match your image width */
}

.gradient-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%; /* Adjust as needed */
    width: 100%;
    background-image: linear-gradient(to bottom,rgb(28 22 36), transparent); /* Adjust colors as needed */
    
}

@media (min-width: 769px) {
.foot{
    display: flex;
    flex-direction: row;
}
.foot .relative img{

    position:relative;top:-55px
}

.copyright{
    align-items: left;
}
}
@media (max-width: 768px) {
    .foot{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .foot .relative img{
        position:absolute;top:-55px;
    }
    .team{
        
        position: relative;
        right:-60px;
        
    }

    .copyright{
        justify-content: center;
        align-items: center;
    }
}