/*--Variables--*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Taviraj', serif;
}

a {
	text-decoration: none;
	color: #1e4040;
}

ul {
	list-style: none;
}

section {
	width: 100%;
}

/*---Utilities---*/
.fade-in {
	animation: fadeIn ease 3s;
	-webkit-animation: fadeIn ease 3s;
	-moz-animation: fadeIn ease 3;
	-o-animation: fadeIn ease 3s;
	-ms-animation: fadeIn ease 3s;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-ms-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*---Sections---*/
nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: flex;
	padding: 16px 80px;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	transition: background-color 1s box-shadow 1s;
}
@media only screen and (max-width: 799px) {
	nav {
		padding: 16px;
	}
}
nav ul li {
	z-index: 5;
	font-size: 16px;
	display: inline;
	margin-left: 48px;
}
@media only screen and (max-width: 799px) {
	nav ul li {
		font-size: 16px;
		margin-left: 8px;
		flex-grow: 2;
	}
}
nav #topLogo {
	opacity: 0;
	transition: opacity 1s;
}

#hero {
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: url('../img/hero.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-attachment: fixed;
}
@media only screen and (max-width: 799px) {
	#hero {
		background-size: auto 100vh;
		background-position: 0% 0%;
		background-attachment: fixed;
		background-color: rgba(255, 255, 255, 0.65);
		background-blend-mode: screen, difference, lighten;
	}
}
#hero img {
	max-width: 50%;
	max-height: 75%;
}
#hero h1 {
	margin: 8px;
	font-size: 2rem;
}

#hook {
	padding: 6rem 8% 4rem 8%;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
@media only screen and (max-width: 799px) {
	#hook {
		padding: 4rem 8% 2rem 8%;
	}
}
#hook h1 {
	font-size: 48px;
	margin-bottom: 24px;
}
@media only screen and (max-width: 799px) {
	#hook h1 {
		font-size: 24px;
	}
}
#hook p {
	font-size: 36px;
	line-height: 50px;
}
@media only screen and (max-width: 799px) {
	#hook p {
		font-size: 14px;
		line-height: 30px;
	}
}
#hook div {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
}
@media only screen and (max-width: 799px) {
	#hook div {
		grid-template-columns: 1fr 1fr;
	}
}
#hook div div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	margin: 4rem 2rem;
	margin-left: 48px;
}
@media only screen and (max-width: 799px) {
	#hook div div {
		margin: 1rem 2rem;
	}
}
#hook div div .lead-icon {
	background: red;
	max-width: 100px;
}
#hook div div h4 {
	font-size: 24px;
	margin-top: 24px;
}
@media only screen and (max-width: 799px) {
	#hook div div h4 {
		font-size: 12px;
	}
}

#grid {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-template-rows: 1fr 1fr;
}
@media only screen and (max-width: 799px) {
	#grid {
		grid-template-columns: 100%;
		grid-template-rows: auto;
	}
	#grid img:nth-child(3) {
		grid-row: 4;
	}
}
#grid div {
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: left;
	padding: 8%;
}
#grid div h2 {
	color: #333333;
	font-size: 48px;
	margin-bottom: 32px;
	text-align: left;
}
@media only screen and (max-width: 799px) {
	#grid div h2 {
		font-size: 24px;
		margin-bottom: 16px;
	}
}
#grid div p {
	font-size: 24px;
	line-height: 35px;
}
@media only screen and (max-width: 799px) {
	#grid div p {
		font-size: 16px;
	}
}
#grid div:first-child {
	background: #1e4040;
	color: #f4f4f4;
}
#grid div:first-child h2:first-child {
	color: #ffffff;
}
#grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 799px) {
	#grid img {
		height: auto;
	}
}

#contact {
	background: #1e4040;
	color: #f4f4f4;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 64px 10% 80px 10%;
}
#contact h2 {
	font-size: 48px;
	margin-bottom: 16px;
}
@media only screen and (max-width: 799px) {
	#contact h2 {
		font-size: 40px;
	}
}
#contact form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 64px;
	row-gap: 8px;
	text-align: left;
	width: 100%;
}
@media only screen and (max-width: 799px) {
	#contact form {
		grid-template-columns: 1fr;
	}
	#contact form label:nth-child(2) {
		grid-row: 3;
	}
	#contact form label:nth-child(6) {
		grid-row: 7;
	}
}
#contact form label {
	font-size: 20px;
}
@media only screen and (max-width: 799px) {
	#contact form label {
		font-size: 10px;
	}
}
#contact form input,
#contact form textarea {
	border-radius: 6px;
	font-size: 20px;
	padding: 12px 20px;
	border: 0px;
	margin-bottom: 16px;
}
@media only screen and (max-width: 799px) {
	#contact form input,
	#contact form textarea {
		font-size: 10px;
	}
}
#contact form textarea {
	height: 140px;
}
#contact form #message,
#contact form #submit,
#contact form .g-recaptcha,
#contact form .messages {
	grid-column: 1 / 3;
}
@media only screen and (max-width: 799px) {
	#contact form #message,
	#contact form #submit,
	#contact form .g-recaptcha,
	#contact form .messages {
		grid-column: 1;
	}
}
#contact form .g-recaptcha {
	justify-self: center;
}
#contact form #submit {
	width: 100%;
	max-width: 260px;
	justify-self: center;
	margin-bottom: 16px;
}
#contact form .messages {
	text-align: center;
}
/* New Contact */
#contact-grid {
	margin-top:16px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	width: 100%;
}
@media only screen and (max-width: 899px) {
	#contact-grid {
		grid-template-columns: 1fr;
	}
	#contact-grid > .contact-grid-item {
		margin-bottom: 40px;
	}
 }


#contact-grid > .contact-grid-item {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
	gap: 8px;
	font-size: 20px;
	color: #fff;
}
.contact-grid-item > svg {
	width: 64px;
	height: 64px;
	margin-bottom:16px;
}

.contact-grid-item  > p > a {
	color: #fff;
	font-weight: bold;
	line-height: 2rem;
}
.contact-grid-item > p> a:hover {
	cursor: pointer;
	text-decoration: underline;
}

footer {
	padding: 24px 10% 120px 10%;
	width: 100%;
	text-align: center;
}
footer h2 {
	color: #333333;
	font-size: 48px;
	margin-bottom: 8px;
}
@media only screen and (max-width: 799px) {
	footer h2 {
		font-size: 24px;
	}
}
footer #partners {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	align-items: center;
	margin-bottom: 24px;
}
@media only screen and (max-width: 799px) {
	footer #partners {
		grid-template-columns: 1fr;
	}
	footer #partners a {
		margin-top: 1rem;
	}
}
footer #breadcrumbs {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	justify-items: center;
	align-items: center;
}
@media only screen and (max-width: 799px) {
	footer #breadcrumbs {
		grid-template-columns: 1fr;
	}
	footer #breadcrumbs a {
		margin-top: 1rem;
	}
	footer #breadcrumbs p {
		margin-top: 1rem;
	}
	footer #breadcrumbs img {
		order: -1;
	}
}
footer hr {
	margin: 24px 0;
}
footer #social {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0 2rem 0;
}
footer #social .social {
	width: 60px;
	margin: 0px 15px;
	-webkit-filter: grayscale(100%);
	/* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
	transition: filter 0.5s;
}
footer #social .social:hover {
	-webkit-filter: none;
	/* Safari 6.0 - 9.0 */
	filter: none;
}
