.slider {
    width: 100vw;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.slider .slide-track {
    display: flex;
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 30s linear infinite;
    width: calc(200px * 20);
}

.slider .slide {
    width: 400px;
}

.slider .slide img {
    width: 100%;
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-200px * 7));
        transform: translateX(calc(-200px * 7));
    }
}



	

/*INICIO DE LAS CARD*/	
 
 
 
.container__car{
    max-width: 1200px;
    padding: 20px;
    padding-bottom: 40px;
    margin: auto;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.car{
    width: 300px;
    position: relative;
    margin: 20px;
    font-family: 'Poppins', sans-serif;
    transition: all 300ms;
    border-radius: 20px;
}

.card:hover{
    box-shadow: 1px 1px 20px -10px #20202049;
}

.car:hover .info__description{
    margin-top: 0;
    border-radius: 0px 0px 20px 20px;

}

.car:hover .icon{
    margin-top: -110px;
    border-radius: 20px 20px 0px 0px;
}

.icons{
    width: 100%;
    height: 220px;
    background: #EFF3F5;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 400ms cubic-bezier(0.5,0,0,1);
    border-radius: 20px;
}

.icons i{
    font-size: 150px;
    color: #fff;
    transition: all 400ms cubic-bezier(0.5,0,0,1);
}

.info__description{
    width: 100%;
    height: 220px;
    color: #474747;
    background: #EFF3F5;
    padding: 20px;
    margin-top: -220px;
    transition: all 400ms cubic-bezier(0.5,0,0,1);
    border-radius: 20px;
}

.info__description p{
    font-size: 14px;
    margin-top: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
}

.info__description input{
    margin-top: 20px;
    padding: 10px 40px;
    background: #2196f3;
    color: white;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    box-shadow: 1px 1px 30px -5px #20202049;
    transition: box-shadow 300ms;
}

.info__description input:hover{
    box-shadow: 1px 1px 30px -5px #20202070;
}


<!--COLOR DE LAS CARD--->   

.c1:hover .icons{
    background: #C9ECFF;
}

.c1 .icons i{
    color: #DD4B25;
}

.c1:hover .icons i{
    color: #fff;
}


.c2:hover .icons{
    background: #FFE6E8;
}

.c2 .icons i{
    color: #146EB0;
}

.c2:hover .icons i{
    color: #fff;
}


.c3:hover .icons{
    background: #FFFECF;
}

.c3 .icons i{
    color: #E8B600;
}

.c3:hover .icons i{
    color: #fff;
}


.c4:hover .icons{
    background: #FCFCFC;
}

.c4 .icons i{
    color: #E8B600;
}

.c4:hover .icons i{
    color: #fff;
}


.c5:hover .icons{
    background: #FFE6E8;
}

.c5 .icons i{
    color: #E8B600;
}

.c5:hover .icons i{
    color: #fff;
}


.c6:hover .icons{
    background: #E0FFE7;
}

.c6 .icons i{
    color: #E8B600;
}

.c6:hover .icons i{
    color: #fff;
}

/*FIN DE LAS CARD*/




