#site-contacts {
	text-align: center;
	padding: 50px 0px 20px 0px;
	background: #000;
	color: #fff;	
}

#site-contacts-title {
    color: #fff;
    background: linear-gradient(to right, #ffd800, #ff9600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#site-contacts-list {

}

#site-contacts-list > div:nth-child(3n+1) {
    clear: left;
}

.site-contacts-list-item {
    margin-top: 40px;
    position: relative;
}

.site-contacts-list-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: auto;
	color: #fff;
	font-size: 45px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-bottom: 25px;
	border: 3px dashed rgba(255,255,255,0.1);
	transition: all 0.3s;
}

.site-contacts-list-item-icon:hover {
	background: linear-gradient(to bottom, #ffd800, #ff9600);
	border: none;
}

.site-contacts-list-item-title {
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 10px;
	text-transform: uppercase;	
}

.site-contacts-list-item-description {
	color: #aaa;
}

#site-contacts-copyright {
	border-top: 1px solid rgba(255,255,255, 0.1);
    margin-top: 100px;
    text-align: left;
    color: #aaa;
    padding-top: 20px;
}