/*/////////////////////////////////////////////
//// BEGIN: Section - Services
/////////////////////////////////////////////*/
.section-services {
	background: #d4d4d4;
	color: #000;
}

.section-services .section-header {
	margin-bottom: 30px;
}

.section-services h2 {
	color: #000;
}

.section-services li {
	position: relative;
	margin-bottom: 30px;
	font-size: 22px;
	font-weight: 600;
}

.section-services li:not(.services__title):not(:last-child):after {
	content: '';
	display: block;
	position: absolute;
	bottom: -15px;
	width: 20px;
	height: 2px;
	background: #f26522;
}

.section-services li.services__title {
	text-transform: uppercase;
}

.section-services li.services__title img,
.section-services li.services__title svg {
	display: block;
	height: 60px;
	margin-bottom: 20px;
}

/*/////////////////////////////////////////////
//// BEGIN: Media Queries
/////////////////////////////////////////////*/
/* BEGIN: Hovers */
@media screen and (min-width: 768px) {}

/* BEGIN: Responsive */
@media screen and (max-width: 1366px) {
	.section-services li {
		font-size: 1.6vw;
	}

	.section-services li.services__title img {
		height: 4.4vw;
	}
}

/* BEGIN: iPad / Mobile */
@media screen and (max-width: 960px) {}

/* BEGIN: Mobile */
@media screen and (max-width: 767px) {
	.section-services {
		height: auto;
	}

	.section-services ul {
		width: 100%;
		margin-bottom: 20px;
	}

	.section-services li {
		text-align: center;
	}

	.section-services li:not(.services__title):not(:last-child):after {
		left: 50%;
		transform: translateX(-50%);
	}

	.section-services li.services__title img {
		margin: 0 auto 20px;
	}

	.section-services .section-header {
		width: 70%;
		margin-bottom: 30px;
	}

	.section-services li.services__title img,
	.section-services li.services__title svg {
		width: 15%;
		height: 60px;
		margin: 0 auto 20px;
	}

	.section-services li {
		margin-bottom: 20px;
		font-size: 5vw;
	}

	.section-services li:not(.services__title):not(:last-child):after {
		bottom: -10px;
	}
}

/* FIN */