body {
	color: #676767;
	font: 100% 'Open Sans', sans-serif;
	font-weight: 300;
	font-size: 12px;
}

.container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.container.reverse {
	flex-direction: row-reverse;
}

.content {
	flex: 1;
	line-height: 1.5rem;
	padding: 1rem;
	box-sizing: border-box;
}

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

.pad-5 {
	padding: 5rem;
}

.image {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100%;
	min-width: 33%;
	max-height: 25rem;
	flex: 1;
	padding: 0;
	overflow: hidden;
}

.image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center;
}

.content.covering {
	background-color: #08A499;
	color: #bffdff;
}

content.covering h1 {
	color: white;
}

.portfolio-image {
	margin: 0 auto;
	width: 4rem;
	height: 4rem;
}

.portfolio-image img {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	object-fit: cover;
}

@media (max-width: 48rem) {
	.container {
		flex-direction: column;
	}

	.container.reverse {
		flex-direction: column;
	}

	.content,
	.image {
		flex: 1;
		padding: 1rem;
	}

	@media (min-width: 49rem) {
		.content {
			padding: 2rem;
		}
	}
}


ul {
	list-style-type: disc;
	list-style-position: inside;
	margin-left: 1.5rem;
}

li {
	margin-top: 0.5rem;
}

h1,
h2,
h3,
h4 {
	font-weight: 600;
}

h1 {
	font-size: 26px;
	padding: 0.5em 0;
}

h2 {
	font-size: 18px;
	padding: 0.5em 0;
}

h3 {
	padding-top: 1.2em;
	font-size: 14px;
	font-weight: 700;
}

b {
	font-weight: bold;
}

#welcome {
	background-color: #f1f1f1;
}

#testimonials {
	background-color: #C5D1D0;
}

#services {
	background-color: #f1f1f1;
}

#contact {
	color: white;
	background-color: #292929;
	box-shadow: 0 3px 4px #000000;
}

#contact a {
	color: white;
}

#footer {
	color: white;
	background-color: #1d1d1d;
}

.fade-in {
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 400ms ease-in-out forwards;
}

.fade-in-long {
	animation: fadeIn 1s ease-in-out forwards;
}