body {
	align-items: center;
	/* display: flex; */
	/* height: 100vh; */
	justify-content: center;
	margin: 0;
	width: 100%;
}

#header {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	left: 0;
	padding: 28px 100px;
	padding-top: 50px;
	position: absolute;
	top: 0;
	width: calc(100% - 200px);
}

#header .logo-container {
	align-items: center;
	display: flex;
	justify-content: center;
	width: 100%;
}

#header .logo {
	height:50px;
}

#header .menu {
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

#header .menu a {
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	margin-left: 60px;
	text-decoration: none;
}

#header .menu a.hidden {
	display: none;
}

#header .menu a:hover {
	text-decoration: underline;
}

#top {
	align-items: center;
	display: flex;
	height: 100vh;
	justify-content: center;
	position: relative;
	width: 100%;
}

#top .splash-video-text {
	display: flex;
	flex-direction: column;
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	font-size: 45px;
	font-weight: 700;
	text-align: center;
}

#top .splash-video {
	filter: brightness(0.75);
	height: 100vh;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100vw;
	z-index: -1;
}

#content {
	background: #24272F;
	padding-top: 8vw;
	position: relative;
	width: 100%;
}

#content::before {
	background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
	top: 0;
	content: "";
	height: 30px;
	left: 0;
	position: absolute;
	width: 100%;
}

#content .description {
	color: white;
	font-family: 'Inter', sans-serif;
	font-size: 45px;
	text-align: center;
	font-weight: 100;
}

#content .button-wrapper {
	display: flex;
	justify-content: center;
	padding-top: 3vw;
}

#content .button-wrapper .button {
	background: none;
	border: 2px solid #FFFFFF;
	color: #FFFFFF;
	border-radius: 40px;
	cursor: pointer;
	font-family: 'Inter';
	font-size: 22px;
	font-weight: 100;
	height: 60px;
	text-align: center;
	width: 220px;
	transition: background 0.2s linear;
}

#content .button-wrapper .button:hover {
	background: #FFFFFF;
	border: none;
	color: #000000;
}

.quotes .quote {
	align-items: center;
	background-position: center;
	background-size: cover;
	display: flex;
	height: calc(100vh + 60px);
	justify-content: center;
	width: 100%;
}

.quotes .quote-description {
	max-width: 1000px;
	padding: 0 100px;
	width: 90%;
}

.quotes .quote-description h1 {
	font-size: 35px;
	font-weight: 600;
	line-height: 48px;
	letter-spacing: 0.03em;
	margin: 0;
	position: relative;
	text-align: left;
	text-shadow: 0px 4px 4px #00000040;
	z-index: 2;
}

.quotes .quote-description .person {
	align-items: center;
	display: flex;
	padding-top: 75px;
}

.quotes .quote-description .person img {
	border-radius: 50%;
	box-shadow: 2px 2px 6px 0 #00000040;
	height: 126px;
	margin: 0 35px 0 0;
	width: 126px;
}

.quotes .quote-description .person-details h1 {
	font-size: 20px;
	font-weight: 800;
	line-height: 30px;
	letter-spacing: 0.03em;
	margin: 0;
	text-align: left;
	text-shadow: 0 4px 4px #00000040;
}

.quotes .quote-description .person-details h2 {
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 0.03em;
	margin: 0;
	text-align: left;
	text-shadow: 0 4px 4px #00000040;
}

.quotes.carousel .prev-button {
	left: 1vw;
}

.quotes.carousel .next-button {
	right: 1vw;
}

footer {
	align-items: flex-start;
	background: #4D9C80;
	display: flex;
	padding: 90px 100px;
	position: relative;
	justify-content: space-between;
}

footer::before {
	background: linear-gradient(#397B64, rgba(57, 123, 100, 0));
	top: 0;
	content: "";
	height: 30px;
	left: 0;
	position: absolute;
	width: 100%;
}

footer .contact {
	color: #23634C;
	font-family: Inter;
	font-size: 15px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0.03em;
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: left;
}

footer .terms {
	color: white;
	font-family: Inter;
	text-decoration: none;
}

footer .terms a {
	text-decoration: none;
	color: inherit;
}

footer .social {
	align-items: center;
	display: flex;
	justify-content: center;
}

footer .social a {
	margin-left: 25px;
}

footer .social a:hover {
	opacity: 0.75;
}

#ad-banner {
	align-items: center;
	background: #FF8540;
	display: flex;
	justify-content: space-between;
	padding: 0 100px;
	position: fixed;
	top: 0;
	width: calc(100% - 200px);
	z-index: 5;
}

#ad-banner h1 {
	color: #FFFFFF;
	font-family: Inter;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: 0.025em;
	text-align: left;
}
