.et-header-logo-link {
	display: block;
	height: 100%;
}

.et-hero {
	padding: 8rem 0rem 6rem;
}

.et-hero__grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6rem;
}

.et-hero__img-wrap {
	flex: 0 0 38rem;
	max-width: 40%;
}

.et-hero__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 1.2rem;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
	object-fit: cover;
}

.et-hero__kicker {
	color: var(--blue);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	margin-bottom: 1.2rem;
	font-size: 2rem;
}

.et-hero__title {
	color: var(--blue);
	margin-bottom: 2.4rem;
}

.et-hero__subtitle {
	margin: 0;
	color: var(--gray-dark);
}

.et-hero__cta {
	margin-top: 4rem;
	text-align: left;
}

.et-contact__form {
	margin-top: 3.2rem;
}

.et-contact__fields {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.et-contact__field {
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.et-contact__label {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .02em;
}

.et-contact__input {
	width: 100%;
	padding: 1.2rem 1.6rem;
	border: 2px solid #d0d8e4;
	border-radius: .8rem;
	font-size: 1.6rem;
	font-family: inherit;
	color: var(--text-color);
	background-color: var(--white);
	transition: border-color .2s ease, box-shadow .2s ease;
	outline: none;
	box-sizing: border-box;
}

.et-contact__input:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(var(--blue-rgb, 30, 86, 160), .12);
}

.et-contact__input--error {
	border-color: #d0312d;
}

.et-contact__textarea {
	resize: vertical;
	min-height: 14rem;
}

.et-contact__error {
	font-size: 1.3rem;
	color: #d0312d;
}

.et-contact__submit {
	margin-top: 2.8rem;
	text-align: left;
}

.et-contact__notice {
	margin-top: 2rem;
	padding: 1.4rem 1.8rem;
	border-radius: .8rem;
	font-size: 1.5rem;
	line-height: 1.5;
}

.et-contact__notice--success {
	background-color: #eaf7ef;
	color: #1a6636;
	border: 1px solid #a3d9b4;
}

.et-contact__notice--error {
	background-color: #fdf2f2;
	color: #922b21;
	border: 1px solid #f5b7b1;
}

.et-contact__notice--error a {
	color: inherit;
	font-weight: 700;
}

.et-contact__links {
	margin-top: 2rem;
	text-align: center;
}

.main ul {
	list-style: disc;
	padding-left: 1.4rem;
}

.main .section--blue a {
	color: white;
	text-decoration: underline;
}

@media screen and (max-width: 761px) {
	.et-contact__submit {
		text-align: center;
	}
}

.et-hero__img-wrap--mobile {
	display: none;
}

@media screen and (max-width: 761px) {
	.et-hero {
		padding: 2rem 0rem 6rem;
	}

	.et-hero__img-wrap--mobile {
		display: block;
		margin-bottom: 2.4rem;
	}

	.et-hero__img-wrap--desktop {
		display: none;
	}

	.et-hero__grid {
		flex-direction: column;
		gap: 2.4rem;
	}

	.et-hero__img-wrap {
		flex: 0 0 auto;
		max-width: 100%;
	}

	.et-hero__img {
		height: 520px;
	}

	.et-hero__kicker {
		text-align: center;
		margin-bottom: 2rem;
	}

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

.et-credentials__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 4rem;
	margin-top: 2rem;
}

.et-credentials__item {
	flex: 0 0 calc(50% - 2rem);
	padding: 2rem;
	border-radius: 1.2rem;
	border: 2px solid var(--blue);
	background-color: var(--white);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
	color: var(--text-color);
}

.et-credentials__item-title {
	color: var(--blue);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.2rem;
	line-height: 1.1;
}

.et-credentials__item-text {
	color: var(--text-color);
	margin: 0;
}

@media screen and (max-width: 1024px), print {
	.et-credentials__item {
		flex: 0 0 100%;
	}
}

@media screen and (max-width: 761px) {
	.et-credentials__item {
		padding: 1.2rem;
		border-radius: .6rem;
	}

	.et-credentials__item-title {
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}
}
