#all-services-3{
	text-align: center;
	padding-bottom: 30px;
	width: 90%;
    margin: 0 auto;
}

#all-services-3 p{
	font-size: 18px;
    line-height: 22px;
    width: 80%;
    margin: 0 auto;
    color: #5b5b5b;
	margin-top: 20px;
	margin-bottom: 20px;
}

.service-3{
	display: inline-flex;
	vertical-align: top;
	width: 200px;
    height: 200px;
    margin: 30px;
	position: relative;
	box-shadow: 0 10px 25px 5px rgb(60 59 60 / 20%);
	cursor: pointer;
	align-items: center;
	border-radius: 200px;
	overflow: hidden;
}

.service-image-3{
	background-position: center;
    background-size: cover;
    position: absolute;
    filter: blur(1px) brightness(0.6);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .3s;
}

.service-3:hover .service-image-3{
	filter: blur(0px) brightness(1.0);
}

.service-3:hover:nth-child(odd) .service-description-3{
	background-color: rgba(0, 0, 0, 0.5);
	border-top: 3px solid #007deb;
	border-bottom: 3px solid #007deb;
}

.service-3:hover:nth-child(even) .service-description-3{
	background-color: rgba(0, 0, 0, 0.5);
	border-top: 3px solid #e00202;
	border-bottom: 3px solid #e00202;
}

.image-service-3{
	background-color: white;
	width: 100%;
	height: 150px;
	display: flex;
	align-items: center;
}

.image-service-3 > div{
	margin: 0 auto;
}

.image-service-3 img{
	width: 55%;
	max-height: 200px;
	filter: invert(17%) sepia(89%) saturate(2658%) hue-rotate(194deg) brightness(94%) contrast(103%);
}

.service-description-3{
	/*background-color: white;*/
    /* color: white; */
    text-align: center;
    height: auto;
    font-size: 18px;
    width: 100%;
    z-index: 1;
    transition: all .3s;
}

.service-description-3 > p{
    padding: 0px 10%;
    color: white !important;
	font-size: 25px;
	text-transform: uppercase;
}

.title-service-3{
	/*margin: 0;*/
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}

@media only screen and (max-width: 599px) {
	.service-3{
    	width: 250px;
    	height: 250px;
    }

    #other-services .title {
    	font-size: 33px !important;
	}
}

@media only screen and (min-width: 600px) and (max-width: 767px){

}