#main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.5rem;
}

#main > *:not([class^="button"]) {
	margin-top: 50px;
}

#main > p {
	width: 60vw;
	text-align: left;
	margin-top: 5px;
}

#opening-video {
	position: relative;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.video-wrapper {
	position: relative;
	width: 100vw;
	height: 80vh;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.3);
}

.video-overlay * {
	color: var(--TEXT_LIGHT);
	display: flex;
	flex-direction: column;
	width: 40%;
	text-align: left;
}
.video-overlay * * {
	width: fit-content;
}

#our-mission-wrapper {
	display: flex;
	flex-direction: row;
	height: 50vh;
}
#our-mission-wrapper * {
	color: var(--TEXT_LIGHT);
	background-color: var(--BLUE);
	width: 50vw;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#our-mission-wrapper #text * {
	margin-left: 50px;
	margin-top: 0;
	margin-bottom: 0;
}
#our-mission-wrapper #text h1 {
	width: 150px;
	margin-bottom: 15px;
}
#our-mission-wrapper #text p {
	width: 500px;
}
#main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


#our-focus {
	background-color: var(--GREEN);
	padding-top: 80px;
	padding-bottom: 80px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#our-focus > *:not([class^="button"]) {
	width: 60%;
	background-color: black;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 30px;
}
#our-focus *:not([class^="button"]) {
	color: var(--TEXT_LIGHT);
	text-align: center;
	max-width: 80%;
}
#our-focus * h1,
#our-focus * p {
	margin: 0;
}

.service-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 50vw;
}
.service-wrapper > * {
	width: 47%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.service-wrapper > * * {
	margin-left: 15px;
}


.testimonials-wrapper p {
	font-size: 1.5rem;
	margin-top: 0;
	margin-bottom: 45px;
}
.testimonials-wrapper h2 {
	font-size: 2rem;
	text-decoration: underline;
	margin-bottom: 15px;
}

.testimonials-wrapper {
	position: relative;
	margin: 2rem auto;
	overflow: hidden;
	max-width: 50%;
	background-color: var(--SECONDARY_BG);
}

.testimonials-slides {
	background-color: transparent;
	display: flex;
	flex-direction: row;
	transition: transform 500ms ease-in-out;
}

.testimonials-slides > * {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0;
	flex: 0 0 100%;
	padding: 2rem;
}

.testimonials-dots {
	text-align: center;
	margin-top: 12px;
}
.testimonials-dots button {
	border: none;
	background-color: var(--TEXT_LIGHT);
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin: 0 4px;
	cursor: pointer;
	transition: background 0.250ms;
}
.testimonials-dots button.active,
.testimonials-dots button:hover { background: #222; }

.list .list-item + .list-item {
	border-top: 3px solid grey;
}




