@import url("https://use.typekit.net/fjy8uos.css");
/* Font Weights 400 500 700 */
:root {
	--teal: #00afab;
	--blue: #003a70;
	--purple: #863990;
}

body {
	margin: 0;
	background: #fff;
	position: relative;
}
p {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: normal;
	line-height: 1.2em;
	margin: 0;
	font-variant-numeric: lining-nums;
}

a,
h1,
h2,
h3,
h4,
h5,
ul,
ol,
li,
span,
input,
textarea,
button,
label,
tspan,
text {
	font-family: freight-sans-pro, sans-serif;
	font-style: normal;
	font-weight: 400;
	margin: 0;
	font-variant-numeric: lining-nums;
}

strong {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
}

html {
	scroll-behavior: smooth;
}

img {
	width: 100%;
}
button {
	background: none;
	border: none;
	margin: 0;
	padding: 0;
	cursor: pointer;
}
a,
button {
	cursor: pointer;
}
hr {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.container,
.container_sm {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.container_sm {
	max-width: 1040px;
}

.btn {
	background: var(--purple);
	color: #fff;
	line-height: 1.2em;
	padding: 0.2em 0.7em 0.3em 0.7em;
	border-radius: 4px;
	transition: background 0.125s linear, border 0.125s linear,
		color 0.125s linear;
	border: 1px solid transparent;
}
.btn:hover,
.btn:active {
	background: #fff;
	border: 1px solid var(--purple);
	color: var(--purple);
}

/* ⚡ HERO & NAV */

.hero {
	background: url(./images/hero.jpg) center center / cover no-repeat;
}
.navbar {
	background: #fff;
	padding: 17px 40px;
	z-index: 10;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar {
	display: flex;
	justify-content: space-between;
	position: fixed;
	top: 0;
	right: 0;
	bottom: auto;
	left: 0;
}
nav.primary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
nav.primary a:not(.btn) {
	text-decoration: none;
	color: var(--blue);
	font-weight: 400;
	font-size: 1.2rem;
	position: relative;
	transition: color 0.1s linear;
}
nav.primary a:not(.btn):not(.logo_pp):hover,
nav.primary a:not(.btn):not(.logo_pp):active {
	color: var(--purple);
}

nav.primary a:not(.btn):not(.logo_pp):after {
	content: "";
	position: absolute;
	top: auto;
	right: 0;
	bottom: -3px;
	left: 0;
	height: 1px;
	transform: scaleX(0);
	background: var(--purple);
	transition: all 0.1s linear;
}

nav.primary a:not(.btn):not(.logo_pp):hover:after {
	transform: scaleX(1);
}

.logo_nd {
	max-width: 250px;
}

.logo_pp {
	max-width: 175px;
}
.logo_pp img {
	vertical-align: middle;
}

.mobile_nav_btn {
	display: none;
	width: 30px;
}
.mobile_nav {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--blue);
	z-index: 51;
	animation: slideleft 0.3s ease-out;
}

nav.mobile {
	display: flex;
	flex-direction: column;
	padding: 60px 30px 30px 30px;
	align-items: center;
}
nav.mobile a {
	font-size: 40px;
	color: #fff;
	text-decoration: none;
	text-align: center;
}
nav.mobile .logo_pp {
	margin: 40px 0 0 0;
	padding: 30px 0 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideleft {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}

@media only screen and (max-width: 880px) {
	nav.primary {
		display: none;
	}
	.logo_nd {
		max-width: 180px;
	}
	.navbar {
		padding: 20px;
	}
	.mobile_nav_btn {
		display: block;
		width: 30px;
	}
}

.title {
	margin: 400px 0 0 0;
	padding: 40px 40px 40px 10%;
	position: relative;
	display: inline-block;
	max-width: 600px;
}
.title::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--blue);
	mix-blend-mode: multiply;
	display: inline-block;
}
h1 {
	margin: 0;
	line-height: 1em;
	font-size: 4rem;
	color: #fff;
	position: relative;
}
h1 strong {
	color: var(--teal);
}

.intro {
	color: #fff;
	text-align: center;
	padding: 40px 10% 40px 40px;
	max-width: 700px;
	margin: -200px 0 0 auto;
	transform: translateY(200px);
	position: relative;
	overflow: hidden;
}
@media only screen and (min-width: 1735px) {
	.intro {
		overflow: visible;
	}
}
.intro::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--teal);
}

.intro p {
	font-size: 20px;
	line-height: 1.4;
	position: relative;
}
@media only screen and (max-width: 675px) {
	.hero {
		background: url(./images/hero.jpg) top -60px center / 120% no-repeat;
		margin-top: 80px;
	}
	.title {
		margin: 40vw 0 0 0;
		padding: 30px;
	}
	.title::before {
		mix-blend-mode: unset;
	}
	h1 {
		font-size: 8vw;
		text-align: center;
	}
	.intro {
		padding: 40px;
	}
	.intro p {
		font-size: 1.2em;
		text-align: left;
	}
	.title::before {
		left: 0;
	}
}
@media only screen and (max-width: 450px) {
	.hero {
		background: url(./images/hero.jpg) top -20px center / 120% no-repeat;
	}
}

/* ⚡ ABOUT */

.about {
	margin: 250px 0 0 0;
	overflow-x: hidden;
	position: relative;
}
.cards,
.slider-container {
	display: flex;
	justify-content: space-around;
	box-sizing: border-box;
}

.card {
	background: #fff;
	flex: 1;
	padding: 40px;
	text-align: center;
	transition: box-shadow 0.125s linear, background 0.125s linear,
		color 0.125s linear;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.card:nth-child(2) {
	z-index: 2;
}
.card:hover,
.card:active {
	background: var(--teal);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.card:hover .icon,
.card:active .icon {
	filter: saturate(0) brightness(100);
}
.card:hover h2,
.card:active h2,
.card:hover p,
.card:active p {
	color: #fff;
}

.card .icon {
	max-width: 100px;
	margin: 0 auto;
}
.card h2 {
	font-size: 41px;
	font-weight: 400;
	line-height: 0.8em;
	color: var(--blue);
	margin: 0.3em 0;
}
.card p {
	font-size: 18px;
	color: #54565b;
	line-height: 1.5;
}

.slider-container {
	display: none;
	overflow: hidden;
	transform: translateX(0);
	transition: transform 0.3s ease-out;
	cursor: grab;
}

.slide {
	user-select: none;
}

.grabbing {
	cursor: grabbing;
}

.slider_arrows {
	display: none;
	position: relative;
	top: 200px;
	right: auto;
	bottom: auto;
	left: 0;
	width: 100vw;
	z-index: 9;
	pointer-events: none;
}
.slider_arrows img {
	position: absolute;
	width: 8px;
}
.slider_arrows img:nth-child(1) {
	transform: rotate(180deg);
	left: 10px;
}

.slider_arrows img:nth-child(2) {
	right: 10px;
}

@media only screen and (max-width: 900px) {
	.slider_arrows {
		display: block;
	}
	.about {
		margin: 180px 0 0 0;
		padding: 60px 0 0 0;
	}
	.about .container {
		padding: 0;
	}
	.cards {
		display: none;
	}

	.slider-container {
		display: inline-flex;
	}
	.slide {
		box-sizing: border-box;
		width: 100vw;
		box-shadow: none;
		padding: 0 50px;
	}
	.slide p {
		font-size: 16px;
	}
	.contact_btn {
		margin-top: 10px;
	}

	.card:hover,
	.card:active {
		background: #fff;
		box-shadow: unset;
	}
	.card:hover .icon,
	.card:active .icon {
		filter: unset;
	}
	.card:hover h2,
	.card:active h2 {
		color: var(--blue);
	}
	.card:hover p,
	.card:active p {
		color: #54565b;
	}
	.contact_cta p {
		padding: 0 20px;
	}
}

@media only screen and (max-width: 600px) {
	.card h2 {
		font-size: 8vw;
	}
}
.contact_cta {
	text-align: center;
	padding: 40px 0;
}
.contact_cta p {
	font-family: freight-sans-pro, sans-serif;
	font-size: 31px;
	font-weight: 700;
	color: var(--purple);
	line-height: 1.2em;
}
.contact_cta a {
	text-decoration: none;
	font-weight: 700;
}
.contact_cta .btn {
	display: inline-block;
}

/* ⚡ MIXED CONTENT */

.mixed_content {
	display: flex;
	background: var(--blue);
}
.cta_box {
	flex: 1;
	background: var(--blue);
	background: url(./images/cta_bg.png) center center / cover no-repeat;
	color: #fff;
	padding: 80px 0;
	position: relative;
	display: flex;
	align-items: center;
}
.cta_box .wrapper {
	flex: 8;
	aspect-ratio: 16 / 9;
}
.cta_box h2 {
	flex: 6;
	padding: 0 0 0 30px;
}
.arrow {
	width: 15px;
	position: absolute;
	top: auto;
	right: auto;
	bottom: 100px;
	left: 50%;
	transform: translate(-50%, -3px);
	animation: arrow 1s ease-in-out infinite;
}

@keyframes arrow {
	0% {
		transform: translate(-50%, -3px);
	}
	50% {
		transform: translate(-50%, 3px);
	}
	100% {
		transform: translate(-50%, -3px);
	}
}

.cta_box h2 {
	line-height: 1em;
	font-size: 60px;

	color: #fff;
	max-width: 450px;
	margin: 0 auto;
}
.cta_box h2 strong {
	color: var(--teal);
}
.vets {
	position: relative;
	flex: 1;
	scroll-margin-top: 100px;
}
.vet {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 40px 40px 400px 40px;
	animation: hide 0.5s linear;
	opacity: 0;
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
}
.vets .active {
	animation: reveal 0.5s linear;
	opacity: 1;
}
@keyframes reveal {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes hide {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.vet h3 {
	font-size: 30px;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	line-height: 1.2em;
}
.vet p {
	font-family: freight-sans-pro, sans-serif;
	font-size: 16px;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.vet p strong {
	font-family: freight-sans-pro, sans-serif;
}
.pause {
	width: 50px;
	height: 50px;
	margin: 30px 0 0 0;
	clip-path: circle();
	background: url("./images/pause.png") center center / 100% no-repeat,
		linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
.play {
	background: url("./images/play.png") center center / 100% no-repeat,
		linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

@media only screen and (max-width: 780px) {
	.cta_box {
		flex-direction: column-reverse;
	}
	.cta_box h2 {
		font-size: 8vw;
		text-align: center;
		padding: 0 0 40px 0;
		max-width: unset;
		flex: unset;
		max-width: 90%;
	}
	.cta_box .wrapper {
		flex: unset;
		width: 100%;
	}
}

/* ⚡ VIDEO */

.video {
	background: #fff;
}
.video .wrapper {
	position: relative;
	aspect-ratio: 16/9;
	z-index: 9;
}
.video .offset {
	margin: -40px 0;
}
.video .videos {
	display: flex;
	margin: 20px 0;
	gap: 20px;
}
.video .videos .vid {
	aspect-ratio: 16/9;
	z-index: 9;
	width: 100%;
}

@media only screen and (max-width: 650px) {
	.video .videos {
		flex-direction: column;
	}
}

/* ⚡ MAP */
.map {
	position: relative;
	overflow: hidden;
}
.map img {
	vertical-align: middle;
}
.key {
	position: absolute;
	top: 50%;
	right: 5%;
	bottom: auto;
	left: auto;
	border-left: 10px solid var(--teal);
	max-width: 220px;
	padding: 0 0 0 10px;
}
.key h3 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 0.6em;
	padding: 0 0 0.5em 0;
}
.key p {
	color: #fff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
}

.tx,
.fl,
.ga,
.sc,
.nc,
.va,
.al,
.tn {
	fill: var(--teal);
	transition: fill 0.125s linear;
}
.tx:hover,
.fl:hover,
.ga:hover,
.sc:hover,
.nc:hover,
.va:hover,
.al:hover,
.tn:hover,
.tx:active,
.fl:active,
.ga:active,
.sc:active,
.nc:active,
.va:active,
.al:active,
.tn:active {
	fill: var(--purple);
	cursor: pointer;
}

text,
tspan,
circle {
	pointer-events: none;
}

/* ⚡ LOCATIONS */

#locations {
	scroll-margin-top: 4rem;
}

.locations {
	background: var(--blue);
	padding: 80px 0 40px;
	color: #fff;
	display: none;
}
.locations p {
	padding: 0 0 1em 0;
}

.locations input {
	display: none;
}

.locations label {
	font-weight: 400;
	font-size: 26px;
	display: block;
	padding: 10px 0;
	margin: 0 0 1px 0;
	cursor: pointer;
	color: #fff;
	transition: ease 0.5s;
}

.locations label:hover {
	text-decoration: underline;
}

.locations {
	padding: 0 20px;
}
.locations h2 {
	font-weight: 600;
}

.locations h3,
.location h3 {
	font-weight: 700;
}

.locations p,
.location p {
	font-size: 18px;
	font-family: freight-sans-pro, sans-serif;
	font-style: normal;
	font-weight: 400;
}

.locations a,
.location a {
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	padding: 0 25px 0 0;
}

.locations span {
	font-size: 12px;
	padding: 0 8px 0 0;
}

.location {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
}

.locations input + label + .content {
	display: none;
}

.locations input:checked + label + .content {
	display: block;
}

.map_popup {
	display: none;
	position: absolute;
	top: 80px;
	box-sizing: border-box;
	bottom: 3px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(360deg, rgb(224, 224, 224) 0%, #f6f6f6 8%),
		linear-gradient(360deg, #f6f6f6 50%, #f6f6f6 50%);
	padding: 40px 80px;
	width: 100%;
	max-width: 1100px;
	z-index: 2;
	animation: map_card 0.3s ease-in-out forwards;
	box-shadow: -2 0 15px rgba(0, 0, 0, 0.2);
}
.map .active {
	display: block;
}
@keyframes map_card {
	from {
		transform: translate(-50%, 100%);
	}
	to {
		transform: translate(-50%, 0);
	}
}

.map_popup .list {
	box-sizing: border-box;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 100%;
	height: 85%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	border: 1px solid var(--teal);
	padding: 40px;
}
.map_popup h4 {
	font-size: 30px;
	color: var(--blue);
	font-weight: 500;
	margin: 0 0 40px;
}
.map_popup h3 {
	color: #54565b;
}
.map_popup .locations a,
.map_popup .location a {
	color: var(--blue);
	display: block;
}
.map_popup p {
	color: #54565b;
	margin: 0 0 10px 0;
}
.map_popup a:hover,
.map_popup a:active {
	text-decoration: underline;
}
.map_popup .close {
	border: 1px solid #fff;
}
@media only screen and (max-width: 1500px) {
	.key {
		right: 0;
	}
}
@media only screen and (max-width: 1000px) {
	.map_popup {
		padding: 40px 80px 80px 80px;
	}
}
@media only screen and (max-width: 960px) {
	.key {
		padding: 0 10px;
		max-width: 20vw;
		border-left: 5px solid var(--teal);
	}
	.key h3 {
		font-size: 3vw;
	}
	.key p {
		font-size: 2vw;
	}
}

@media only screen and (max-width: 800px) {
	.locations {
		display: block;
		padding: 80px 20px 40px 20px;
	}
	.map {
		display: none;
	}
}

/* ⚡ FOOTER */

footer {
	padding: 80px 0 0 0;
	background: url(./images/watermark.png) center center / cover no-repeat;
	margin: -10px 0 -20px;
}
footer p {
	font-family: freight-sans-pro, sans-serif;
	font-weight: 500;
	color: #54575a;
	font-size: 22px;
}
footer .group {
	display: flex;
	justify-content: space-around;
}
footer div {
	flex: 1;
}
footer .logo_nd {
	margin-bottom: 20px;
	max-width: 283px;
}
footer .wrapper {
	max-width: 300px;
	margin: 0 auto 0 0;
}
.social {
	align-self: flex-start;
	display: flex;
	align-items: center;
	max-width: 120px;
	margin: 0 0 0 auto;
}
.social a {
	transform: scale(1);
	transition: all 0.15s ease-in-out;
}
.social a:nth-child(2) {
	margin: 0 20px;
}
.social a:hover,
.social a:active {
	transform: scale(1.1);
}
.copyright {
	padding: 80px 20px 10px 20px;
	text-align: center;
	color: #54575a;
	font-size: 16px;
	font-family: freight-sans-pro, sans-serif;
	font-weight: 400;
}
.copyright a {
	color: #54575a;
	font-weight: 700;
	text-decoration: none;
	padding-left: 10px;
}
.copyright a:hover,
.copyright a:active {
	text-decoration: underline;
}

@media only screen and (max-width: 660px) {
	footer .wrapper {
		max-width: 300px;
		margin: 0 auto;
	}
	footer .group {
		flex-direction: column;
	}
	footer p {
		text-align: center;
		font-size: 16px;
	}
	.social {
		margin: 40px auto 0 auto;
	}

	footer .logo_nd {
		max-width: 200px;
		margin: 0 auto;
	}
}

.contact .outer {
	display: none;
	position: fixed;
	z-index: 30;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	padding: 40px;
	animation: fadein 0.3s linear;
	overflow: auto;
}

.contact .inner {
	display: block;
	background: #f6f6f6;
	background: url(./images/watermark_contact.png) center center / cover
		no-repeat;
	padding: 40px;
	margin: 100px auto 0 auto;
	border: 1px solid var(--teal);
	max-width: 1020px;
	position: relative;
	animation: slidedown 0.3s ease-out;
}
.contact .inner .group {
	display: flex;
	align-items: flex-end;
}
.monogram {
	max-width: 135px;
	display: inline-block;
	margin: -40px 20px 0 0;
}

.contact h2 {
	display: inline-block;
	line-height: 1em;
	font-size: 30px;
	font-weight: 500;
	color: var(--blue);
	padding: 0 0 5px 0;
}
.contact p {
	color: #442255;
}

@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slidedown {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

.close {
	position: absolute;
	top: 0;
	right: 0;
	bottom: auto;
	left: auto;
	padding: 10px 13px 15px 13px;
	background: var(--teal);
	line-height: 0.5em;
	font-size: 20px;
	color: #fff;
	vertical-align: middle;
	cursor: pointer;
}

.close:hover,
.close:active {
	background: var(--blue);
}

form {
	display: flex;
	gap: 40px;
	padding: 40px 0 0 0;
}
form > div {
	flex: 1;
}
form label {
	display: block;
	font-weight: 500;
	margin: 0 0 10px 0;
	color: var(--blue);
}
form input,
form textarea,
select {
	display: block;
	width: 100%;
	border: 1px solid var(--teal);
	padding: 10px;
	font-size: 18px;
	margin: 0 0 20px 0;
	box-sizing: border-box;
}

select {
	/* reset */
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #fff 50%),
		linear-gradient(135deg, #fff 50%, transparent 50%),
		linear-gradient(to right, var(--teal), var(--teal));
	background-position: calc(100% - 20px) calc(1em + 2px),
		calc(100% - 15px) calc(1em + 2px), 100% 0;
	background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
	background-repeat: no-repeat;
}
form input[type="submit"] {
	width: auto;
	margin: 50px 0 0 auto;
	padding: 10px 15px;
	background: var(--purple);
	color: #fff;
	border: none;
	transition: background 0.125s linear;
	cursor: pointer;
}
form input[type="submit"]:hover,
form input[type="submit"]:active {
	background: var(--blue);
}

@media only screen and (max-width: 700px) {
	form {
		flex-direction: column;
	}
}
