/**********************************************************
// Block >> Services
**********************************************************/
.Block-Services {
	padding: var(--60px) var(--20px);
	background: var(--Color-Gray-Light);
	text-align: center;
	}

.Block-Services > h2 {
	margin: 0 auto var(--50px) auto;
	padding: 0 !important;
	color: var(--Color-Blue-1);
	text-align: center;
	font-family: var(--Font-Titles);
	font-size: 2.307rem; /* 36.914px */
	font-style: normal;
	font-weight: 400;
	line-height: 2.625rem; /* 42px */
	}

.Block-Services-List {
	margin: auto;
	max-width: 75rem;
	font-size: 0;
	}

.Block-Services-Item {
	margin: var(--20px) 1.5%;
	width: 22%;
	text-align: center;
	display: inline-block;
	vertical-align: top;
	}

.Block-Services-Item-Icon {
	margin: 0 auto var(--20px) auto;
	width: var(--80px);
	height: var(--80px);
	border-radius: 50%;
	background: var(--Color-White);
	box-shadow: 0 var(--2px) var(--4px) rgba(0, 0, 0, 0.1);
	line-height: 0;
	font-size: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	}

.Block-Services-Item-Icon img {
	width: auto;
	height: auto;
	max-height: var(--40px);
	max-width: var(--40px);
	}

.Block-Services-Item h3 {
	margin: 0 auto;
	padding: 0 !important;
	max-width: 14.375rem; /* 230px */
	line-height: 1.3em;
	font-family: var(--Font-Titles);
	font-weight: 400;
	font-size: var(--18px);
	color: var(--Color-Blue-1);
	}

/**********************************************************
// Media Queries
**********************************************************/
@media /* 1024px */
all and (max-width: 64rem),
all and (max-device-width: 64rem)
{
	.Block-Services-Item {
		margin: var(--30px) 2%;
		width: 46%;
		}
}

@media /* 768px */
all and (max-width: 48rem),
all and (max-device-width: 48rem)
{
	.Block-Services-Item {
		margin: var(--30px) auto;
		width: 100%;
		max-width: var(--300px);
		display: block;
		}
}