
.redes_sociales{
    margin: 0;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}


i{
    text-align: center;
    font-size: 20px;
    color: aliceblue;
    margin:3px;
    border-radius: 50%;
    padding: 5%;
    box-shadow: 0px, 5px, 10px  rgb(0, 0, 0, .35);
    transition: .3s ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


.fa-facebook:hover{

    background-color: #836301;
    color:aliceblue;
    box-shadow: 0 0 15px #D6A102,
                0 0 45px #D6A102,
                0 0 75px #D6A102,
                0 0 115px #D6A102;
}



.fa-twitter:hover{

    background-color: #836301;
    color:aliceblue;
    box-shadow: 0 0 15px #D6A102,
                0 0 45px #D6A102,
                0 0 75px #D6A102,
                0 0 115px #D6A102;
}


.fa-instagram:hover{

    background-color: #836301;
    color:aliceblue;
    box-shadow: 0 0 15px #D6A102,
                0 0 45px #D6A102,
                0 0 75px #D6A102,
                0 0 115px #D6A102;
 }

 



* {
	margin: 0;
	padding: 0;
}

.slider-area h2 {
	text-align: center;
	font-family: impact;
	font-size: 60px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0px 0 30px 0;
	color: #fff;
}
.wrapper {
	display: flex;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 0px;
	padding: 2.5rem;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
	-webkit-border-radius:;
	-moz-border-radius:;
	-ms-border-radius:;
	-o-border-radius:;
}
.item {
	animation: animate 25s alternate linear infinite;
}
.container:hover .item {
	animation-play-state: paused;
}
@keyframes animate {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-1100px, 0, 0);
	}
}
@media (max-width:767px) {
	.slider-area h2 {
		font-size: 30px;
	}
	.wrapper {
		width: 95%;
		border-radius: 0;
		padding: 0;
	}
}


