.dir{
	width: 95%;
	background: #ccc;
	padding: 15px;
	border-radius: 5px;
	box-shadow:  0 5px 6px rgba(0, 0, 0, 0.2);
	margin: auto;
	margin-bottom: 10px;
}

.dir:hover {
	transform: translateY(-5px);
	box-shadow:  0 5px 6px rgba(0, 0, 0, 0.2)
}

.dir-img img{
	display: block;
	margin: auto;
	border-radius: 50%;
	border: 5px solid #a5b1c2;
	width: 80px;
	height: 80px;
}

.dir-txt{
	text-align: center;
	font-weight: 600;
	font-size: 20px;
}

.dir-txt h4{
	text-decoration: underline;
}

.dir-txt a{
	text-decoration: none;
	font-size: 12px;
}



@media screen and (min-width: 640px){
	.dir-txt{
		text-align: center;
		font-weight: 50;
		font-size: 18px;
	}	
	.dir-img img{
		width: 100px;
		height: 100px;
	}
	.dir{
		display: inline-flex;
	}

}

@media screen and (min-width: 1024px){
	.dir{
		display: inline-block;
		width: 500px;
		margin-right: 20px;
	}
	.dir-img{
		display: flex;
		justify-content: center;
		align-items: center;

	}

	.dir-txt{
		text-align: left;
		font-weight: 500;
		font-size: 18px;
		margin-left: 5px;
	}
	.dir-txt a{
		font-size: 15px;
	}

}