:root {
	--primary-color: #0d0d0d;
	--secondary-color: #27aae1;
	--bg: #0d0d0d;
	--text: #eee;
	--text-dark: #333;
	--bg-accent: #2a2a2a;
	--bg-light: #111;
	--btn-primary: #27aae1;
	--btn-primary-05: rgb(39, 170, 225, .5);
	--btn-primary-hover: #1e8fb8;
	--color-success: #2ecc71;
	--color-success-hover: #27ae60;
	--color-success-50: rgb(46, 204, 113, .5);
	--border-radius: 4px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Lato', sans-serif;
	line-height: 1.3;
	font-size: 18px;
}

a {
	text-decoration: none;
	color: var(--secondary-color);
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
	color: var(--text);
	background: var(--bg-light);
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	left: 0;
	top: 0;
	font-size: 100%;
	overflow: auto;
	scroll-behavior: smooth;
}

main section {
	padding: 50px 20px;
}

@media ( max-width: 768px ) {
	main section {
		padding: 30px 20px;
	}
}

h1, h2, h3, h4, h5, h6 {
	margin: 0.67em 0;
}

h1 {
	font-size: 2.5em;
}

h2 {
	font-size: 2em;
}

h3 {
	font-size: 1.75em;
}

h4 {
	font-size: 1.5em;
}

h5 {
	font-size: 1.25em;
}

h6 {
	font-size: 1em;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
	font-size: inherit;
	color: var(--secondary-color);
}

main section.split {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: .1rem;
}
.image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	min-height: 420px;
	flex: 1;
}

main section.split > .content {
	padding: 0 20px;
	flex: .5;
}

@media ( max-width: 996px ) {
	main section.split {
		flex-direction: column;
		padding-bottom: 0;
	}
	main section.split > .content {
		margin-bottom: 20px;
	}
	main section.split .content { 
		padding: 50px 20px;
	}
	.image {
		width: 100%;
		flex: 1;
	}
	
	main section.split.mobile-reverse {
		flex-direction: column-reverse;
	}
}

@media ( max-width: 768px ) {
	/* .image {
		min-height: 300px;
	} */
}

@media ( max-width: 480px ) {
	.image {
		background-size: cover;
	}
	
	main section.split > .content {
		padding-bottom: 0;
	}
	
	main section.split > .image {
		padding-bottom: 0;
	}
}

section hr {
	border: none;
	width: 150px;
	height: 2px;
	margin: 1rem auto;
	background: var(--secondary-color);
}

.text-center {
	text-align: center;
}

main section.section-dark {
	background: var(--bg);
}

.section-title {
	font-size: 2rem;
	text-align: center;
	font-weight: bold;
}

.section-title strong {
	font-size: 2rem;
	color: var(--secondary-color);
}

section .content strong {
	color: var(--secondary-color);
}

ul {
	margin: 1rem 2.5rem;
}

p {
	margin-bottom: .5rem;
}

.image-what-is-emtnow {
	background-image: url(/what-is-emtnow.webp);
}

.red-text {
	color: #ff7364;
}

.white-text {
	color: #fff !important;
}

@media ( max-width: 768px ) {
	h1 {
		font-size: 1.5em;
	}
	h2 {
		font-size: 1.3em;
	}
	h3 {
		font-size: 1.25em;
	}
}

.faqs {
	padding: 1rem 15rem;
}
@media ( max-width: 996px ) {
	.faqs {
		padding: 1rem 2rem;
	}
}