 
.site{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* .wrapper-car{ 
  padding: 0 15px; 
 
} */
.Wra_Car{
    position: fixed;
    z-index: 999999999999;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}

.wrapper-car-a{ 
   margin-top: 15px;
}

 
.social{
    margin: auto;
  color: #FFF;
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
  font-size: 30px;
}
.social:hover {
	text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
	transition: all ease 0.5s;
	-moz-transition: all ease-in 0.5s;
	-webkit-transition: all ease-in 0.5s;
	-o-transition: all ease-in 0.5s;
  
}

.facebook {
 color:#4267B2;
}

 
.youtube {
      color:#c4302b;
}
 
.instagram {
 color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background-clip: text;
  -webkit-background-clip: text;

}
 
.whatsapp {
        color:#25D366;
}

.bg-ico {
  display: flex;
  background-color: #FFF;
  width: 50px;
  height: 50px; 
  margin: 0 5px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 28%;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,0.1);
  opacity: 0.99;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
  
}
.bg-ico:hover{
     box-shadow: 0 5px 15px -5px rgba(0,0,0,0.8);
}

#facebook:hover {
  background-color: #4267B2;
}

 
#youtube:hover {
      background-color: #c4302b;
}
 
#instagram:hover {
 background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  

}
 
#whatsapp:hover {
       background-color:#25D366;
}

.facebook:hover,  
.youtube:hover, 
.instagram:hover,  
.whatsapp:hover {
 color:#fff;
 transform: scale(1.3);

}
 
/* https://codepen.io/matt-egginton/pen/wvJEaEE */