/* Typography
–––––––––––––––––––––––––––––––––––––––––––––– */
#case-study {
	font-size: 1rem;
	line-height: 1.5;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
	line-height: 1;
	margin-bottom: 1.5rem;
}

h1, .h1 {
	font-size: 3.75em;
}

h2, .h2 {
	font-size: 3em;
}

h3, .h3 {
	font-size: 2em;
}

h4, .h4 {
	font-size: 1.5em;
}

.heading-sub {
	margin-bottom: 1em;
	font-size: .875em;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .15em;
}

.color-highlight {
	color: rgb(61,166,187);
}

@media screen and (max-width: 1024px) {
	
	h1, .h1 {
		font-size: 3em;
	}
	
	h2, .h2 {
		font-size: 2.5em;
	}
	
	h3, .h3 {
		font-size: 1.75em;
	}
	
	h4, .h4 {
		font-size: 1.3em;
	}

}


/* Structure
–––––––––––––––––––––––––––––––––––––––––––––– */
section {
	padding: 80px 0;
}

section.pad-0 {
	padding: 0;
}

section.bg-dark {
	background-color: rgb(33,48,53);
	color: #fff;
}

[class^=container] {
	width: 100%;
	padding: 0 80px;
	margin-right: auto;
	margin-left: auto;
}

.container-narrow {
	max-width: 1000px;
}

	[class^=container] > :last-child {
		margin-bottom: 0;
	}

img {
	display: block;
}

.box {
	padding: 2em;
	background-color: #f8f8f8;
	border-radius: 1em;
}

	.box > :last-child {
		margin-bottom: 0;
	}

@media screen and (max-width: 1024px) {
	
	[class^=container] {
		padding: 0 40px;
	}

}

@media screen and (max-width: 600px) {
	
	[class^=container] {
		padding: 0 24px;
	}

}


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––– */
[class^=grid] {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-right: -3%;
	margin-left: -3%;
}

.gap-small {
	margin-right: -1%;
	margin-left: -1%;
}

.gap-medium {
	margin-right: -2%;
	margin-left: -2%;
}

	[class^=grid] > * {
		margin-right: 3%;
		margin-left: 3%;
	}

	.gap-small > * {
		margin-right: 1%;
		margin-left: 1%;
	}

	.gap-medium > * {
		margin-right: 2%;
		margin-left: 2%;
	}

@supports (display: grid) {

	[class^=grid] {
		display: grid;
		gap: 5em;
		margin-right: 0;
		margin-left: 0;
	}

	.gap-small {
		gap: 1em;
	}
	
	.gap-medium {
		gap: 3em;
	}

		[class^=grid] > *,
		.gap-small > *,
		.gap-medium > * {
			margin-right: 0;
			margin-left: 0;
		}

}

[class^=grid] + [class^=grid] {
	margin-top: 1.5em;
}

.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

	.grid-cols-2 > * {
		width: 44%;
	}

	.grid-cols-2.gap-small > * {
		width: 48%;
	}

	.grid-cols-2.gap-medium > * {
		width: 46%;
	}

	@supports (display: grid) {

		.grid-cols-2 > *,
		.grid-cols-2.gap-small > *,
		.grid-cols-2.gap-medium > * {
			width: 100%;
		}

	}

.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

	.grid-cols-3 > * {
		width: 27%;
	}

	.grid-cols-3.gap-small > * {
		width: 31%;
	}

	.grid-cols-3.gap-medium > * {
		width: 29%;
	}

	@supports (display: grid) {

		.grid-cols-3 > *,
		.grid-cols-3.gap-small > *,
		.grid-cols-3.gap-medium > * {
			width: 100%;
		}

	}

.grid-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

	.grid-cols-4 > * {
		width: 19%;
	}

	.grid-cols-4.gap-small > * {
		width: 23%;
	}

	.grid-cols-4.gap-medium > * {
		width: 21%;
	}

	@supports (display: grid) {

		.grid-cols-4 > *,
		.grid-cols-4.gap-small > *,
		.grid-cols-4.gap-medium > * {
			width: 100%;
		}

	}

@media screen and (max-width: 1150px) {
	.force_one_column_1200 {
			grid-template-columns: minmax(0, 1fr) !important;
			width: 100%; }
		
		.force_one_column_1200 div {
			width: 100%;
			clear: both; }
}

@media screen and (max-width: 1024px) {

	.grid-cols-4 > * {
		width: 44%;
	}

	.grid-cols-4.gap-small > * {
		width: 48%;
	}

	.grid-cols-4.gap-medium > * {
		width: 46%;
	}

	@supports (display: grid) {

		[class^=grid],
		.gap-medium {
			gap: 3em;
		}

		.gap-small {
			gap: 1em;
		}

		.grid-cols-4 {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}

			.grid-cols-4 > *,
			.grid-cols-4.gap-small > *,
			.grid-cols-4.gap-medium > * {
				width: 100%;
			}

	}

}

@media screen and (max-width: 800px) {
	.grid-cols-3,
	.grid-cols-3.gap-small,
	.grid-cols-3.gap-medium {
		margin-right: 0;
		margin-left: 0;
	}

		.grid-cols-3 > *,
		.grid-cols-3.gap-small > *,
		.grid-cols-3.gap-medium > * {
			width: 100%;
		}

	@supports (display: grid) {
	
		.grid-cols-3 {
			grid-template-columns: minmax(0, 1fr);
		}

	}

}

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

	.grid-cols-2,
	.grid-cols-2.gap-small,
	.grid-cols-2.gap-medium,
	.grid-cols-4,
	.grid-cols-4.gap-small,
	.grid-cols-4.gap-medium {
		margin-right: 0;
		margin-left: 0;
	}

		.grid-cols-2 > *,
		.grid-cols-2.gap-small > *,
		.grid-cols-2.gap-medium > *,
		.grid-cols-4 > *,
		.grid-cols-4.gap-small > *,
		.grid-cols-4.gap-medium > * {
			width: 100%;
		}

	@supports (display: grid) {

		[class^=grid],
		.gap-medium,
		.gap-small {
			gap: 1em;
		}

		.grid-cols-2,
		.grid-cols-4 {
			grid-template-columns: minmax(0, 1fr);
		}

	}

}


/* Carousel
–––––––––––––––––––––––––––––––––––––––––––––– */
.carousel-slider .slick-slide {
	margin: 0 .5em;
}

[class^=carousel] .slick-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 1.5em;
	list-style: none;
}

	[class^=carousel] .slick-dots li {
		margin: 0 .25rem;
	}

	[class^=carousel] .slick-dots button {
		width: .75rem;
		height: .75rem;
		display: block;
		position: relative;
		padding: 0;
		background-color: transparent;
		border: 2px solid rgb(61,166,187);
		border-radius: 50%;
		font-size: 0;
		cursor: pointer;
	}

	[class^=carousel] .slick-dots button::before {
		content: "";
		position: absolute;
		top: -0.25rem;
		right: -0.25rem;
		bottom: -0.25rem;
		left: -0.25rem;
	}

	[class^=carousel] .slick-dots .slick-active button {
		background-color: rgb(61,166,187);
	}


/* Font Awesome Icons
–––––––––––––––––––––––––––––––––––––––––––––– */
#case-study .fa-icon {
	width: auto;
	height: 2em;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: .5em;
	font-size: 2em;
}

#getstarted-contact {
	padding-top: 100px;
	padding-bottom: 100px;
	font-weight: bold;
	text-align: center;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)), to(rgba(233,240,240,1)));
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(233,240,240,1) 100%);
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(233,240,240,1) 100%);
}

	#getstarted-contact > div {
		max-width: 40ch;
		margin: 0 auto;
		font-size: 1.5em;
	}

	#getstarted-contact .btn {
		width: 200px;
		display: inline-block;
		float: none;
		margin-top: 1em;
		font-size: .6667em;
	}