.videos {
	text-align: center;
}

.videos .video {
	margin: 2em 0;
}

.videos .video video {
	display: block;
	width: 100%;
	height: auto;
}

.videos .video .video-details .video-title {
	font-style: italic;
}

@media (min-width: 768px) {
	.videos {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: flex-start;
		justify-content: space-between;
		gap: 2em;
	}
}

.hs-replacement-form form {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1em;
}

.hs-replacement-form form .field {
	display: block;
	flex-grow: 1;
	flex-shrink: 1;
	width: calc(50% - 0.5em);
	margin: 0 0 1em;
}

.hs-replacement-form form .field.full {
	width: 100%;
}

.hs-replacement-form form .field label {
	display: block;
}

.hs-replacement-form form .field.required label::after {
	content: " *";
	color: #1BFCAE;
}

.hs-replacement-form form .field input[type="text"],
.hs-replacement-form form .field input[type="tel"],
.hs-replacement-form form .field input[type="email"],
.hs-replacement-form form .field textarea {
	display: block;
	width: 100%;
	font: inherit;
	color: white;
	background: transparent;
	padding: 0.5em 0;
	border: none;
	border-bottom: 1px solid #1BFCAE;
	outline: 0;
}

.hs-replacement-form form .field textarea {
	height: 8em;
}

.hs-replacement-form form label {
	color: inherit;
}

.hs-replacement-form form [type="submit"] {
	font-size: 1.25em;
	font-family: "Helvetica Neue LT W05_75 Bold";
	color: white;
	background: transparent;
	padding: 0.5em 2em;
	border: 2px solid #1BFCAE;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	border-radius: 1.5em;
}

.hs-replacement-form form [type="submit"]:hover {
	background: #1BFCAE;
	color: white;
}

.hs-replacement-form .hide { display: none; }

.hs-replacement-form iframe {
	display: none;
	visibility: hidden;
	width: 0;
	height: 0;
}

.hs-replacement-form .checkbox {
	max-width: 60em;
}

.hs-replacement-form .buttons {
	width: 100%;
	margin-top: 2em;
}