body {
	font-family: calibri;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #d3d3d3;
}
.divider {
	position: relative;
    width: 100%;
	height: 3rem;
}
.shadow {
	border-bottom: solid 2px #0d6eaf;
}
.top-spacer {
	height: 200px;
}
.address {
	border-left: 2px solid #0d6eaf;
	margin-bottom: 15px;
	font-size: 1.25rem;
	font-weight: 300;
}
.address-icons {
	font-size: 1.25rem;
}
.hide-overflow {
	overflow: hidden;
}
.thumbnail {
	width: 100%;
	max-width: 270px;
	height: 100%;
	max-height: 170px;
	cursor: pointer;
}
.card{
	width: 30rem;
	height: 25rem;
	margin: 1rem;
	cursor: pointer;
}
.card-title {
	text-align: center;
	margin: 0.3rem;
	font-size: 1.5rem;
	letter-spacing: -0.05rem;
}
.card-text {
	margin-bottom: 0.5rem;
	text-align: center;
	font-weight: 300;
	font-size: 1.25rem;
}
.card-image-top {
	display:flex;
	justify-content: center;
	align-items: center;
	margin-top: 1.5rem;
}
.card-icon {
	border-radius: 13%;
	background-color: #0d6eaf;
	height: 8rem;
	width: 8rem;
	display:flex;
	justify-content: center;
	align-items: center;
	color: white;
	box-shadow: 0 8px 8px -4px #888888;
}
.divide {
	margin-bottom: 3.5rem;
}
.customer-logos {
	top: -30px;
}
.customer-logos .slide {
	width: 300px;
	height: 150px;
	transition: transform .3s ease-in-out;
	transform-origin: center;
	transition: all 300ms;
	cursor: pointer;
	box-shadow: 0 8px 8px -4px #888888;
	margin: 15px;
}
.customer-logos .slide:hover {
	transform: scale(1.1);
}
.client-slider-container {
	position: relative;
	width: 100%;
	max-width: 1000px;
	height: 260px;
	overflow: hidden;
	margin: auto;
}
.client-logo-group {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	gap: 30px;
	width: 100%;
	opacity: 0;
	transform: translateX(100%);
	animation: fadeSlideMove 18s linear infinite;
}
.client-logo-group:nth-child(2) {
	animation-delay: 6s;
}
.client-logo-group:nth-child(3) {
	animation-delay: 12s;
}
.client-logo img {
	width: 180px;
	height: 180px;
	display: block;
	margin: auto;
	box-shadow: 0 8px 8px -4px #888888;
	transition: transform .3s ease-in-out;
	transform-origin: center;
}
.client-logo img:hover {
	transform: scale(1.1);
}
.client-logo {
	text-align: center;
	justify-content: center;
	font-size: 1rem;
	letter-spacing: -0.05rem;
	font-weight: 300;
}
@keyframes fadeSlideMove {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	8% {
		transform: translateX(0);
	}
	10% {
		opacity: 1;
	}
	27% {
		opacity: 1;
	}
	35% {
		opacity: 0;
		transform: translateX(-2%);
	}
	100% {
		opacity: 0;
		transform: translateX(-100%);
	}
}
.section-header {
	position: relative;
	width: 40%;
	top: -72px;
	background-color: #0d6eaf;
	color: white;
	padding: 20px;
	font-size: 1.75rem;
	letter-spacing: -0.05rem;
	box-shadow: 0 8px 8px -4px #888888;
}
.section-header:nth-child(even) {
	float: right;
}