@charset "utf-8";
/* CSS Document */

#services {
	padding-top: 65px;
	padding-bottom: 80px;
}

body.has-news #services {
	padding-top: 100px;
}

#services .service, #services .service .info-container {
	background-size: cover;
	background-position: center center;
}

#services .service {
	margin-bottom: 30px;
	overflow: hidden;
	height: calc(25vw - 60px);
}

#services .service .info-container {
	cursor: pointer;
	height: 100%;
	-webkit-transform: translateY(calc(100% - 40px));
	transform: translateY(calc(100% - 40px));
	box-sizing: border-box;
	transition: transform 0.6s;
	vertical-align: middle;
	padding: 10px 15px;
	background-color: rgba(0, 0, 0, 0.6);
}

#services .service .info-container, #services .service .info-container * {
	color: #fff;
}

#services .service:hover .info-container {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

#services .service .info-container div {
	display: inline-block;
	vertical-align: top;
	transition: all 0.6s;
}

#services .service:hover .info-container div {
	vertical-align: middle;
}

#services .service .info-container .padd {
	height: 100%;
}

#services .service .info-container h4 {
	margin-top: 0;
	font-family: 'Lato', sans-serif;
}

#services .service .info-container p {
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
}

#services .service-modal .modal-header, #services .service-modal .modal-body {
	background-color: rgba(255, 255, 255, 0.9);
}

#services .service-modal .modal-body {
	overflow: hidden;
}

#services .service-modal .modal-body > div {
	max-height: calc(100vh - 154px);
	overflow: auto;
}

@media (max-width: 991px) {
#services .service {
	height: calc(33vw - 70px);
}
}

@media (max-width: 767px) {
#services .service-container:not(:nth-child(2)) {
	margin-top: 20px;
}

#services .service {
	height: calc(50vw - 60px);
}
}

@media (max-width: 560px) {
#services .service {
	height: calc(100vw - 90px);
}

.col-xs-6 {
    width: 100%;
}
}

@media (min-width: 1237px) {
#services .service {
	height: 245px;
}
}