/*SOCIAL MEDIA*/

.container-social{
	display: flex;
    justify-content: center;  
	background-color: white;
	margin-top: 1vw;
}

.social-media{
	display: flex;
    justify-content: space-around;

    width: 20vw; 
	background-color: white;

}

.social-media div{
	list-style:none;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;

	font-size: 2vh;
	
	background-color: #c8c8c8;
	border-radius: 100%;
	height: 4vh;
	width: 4vh;

	margin-top: 1vw;
	margin-bottom: 1vw;

	-o-transition:all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	-webkit-font-smoothing: antialiased;
}

i{
	color: white;
	height: 100%;
}

div.facebook:hover{
	background: #3b5998;
}
div.instagram:hover{
	background: #d6249f;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
div.pinterest:hover{
	background: #bd081c;
}
div.twitter:hover{
	background:#1da1f2;
}
div.linkedin:hover{
	background: #007bb5;
}
