/* FONT */
@font-face {
  font-family: 'reg';
  src: url("../fonts/Academy-Reg.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: 'ita';
  src: url("../fonts/Academy-Ita.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:left}
/* ROOT */
:root {
	--sans: 'reg', Times, serif;
	--fontsize: 14px;
	--padding: calc(var(--fontsize)*1);
	--lhval: 1.38;
	--sideWidth: 320px;
}

@media (min-width: 500px) {
	:root {
		--fontsize: 13px;
	}
}

@media (min-width: 700px) {
	:root {
		--fontsize: 14px;
		--padding: calc(var(--fontsize)*2);
	}
}

@media (min-width: 1000px) {}

@media (min-width: 1200px) {
	:root {
		--fontsize: 15px;
		--padding: calc(var(--fontsize)*3);
	}
}

@media (min-width: 1600px) {
	:root {
		--fontsize: 16px;
	}
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
}

*::-webkit-scrollbar {
	display: none;
}

::selection {
	opacity: .5;
}

/* CUSTOM CSS */
html {
	box-sizing: border-box;
	font-size: var(--fontsize);
	margin: 0;
	padding: 0;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--sans);
	background-color: #FFFFFF;
	color: #000;
	padding: 0;
	min-height: 100svh;
	overflow-x: hidden;
	line-height: var(--lhval);
	display: flex;
	flex-flow: row wrap;
	align-content: space-between;
	position: relative;
	transition: background-color 0.5s ease-in-out;
}

@media (min-width: 800px) {
	body {
		overflow-y: scroll;
	}
}

a {
	text-decoration: none;
	color: inherit;
	transition:
		color .15s ease-in-out,
		opacity .15s ease-in-out;
}

em,i,b,strong {
	font-family: 'ita', 'reg', 'Times New Roman', Times, serif;
}
body.home {
	background-color: #FFF;
}


header {
	width: 100%;
	z-index: 999;
	padding: calc(var(--padding)*.7) var(--padding);
	position: fixed;
	top: 0;
	background: inherit;
	display: flex;
	flex-flow: row wrap;
	align-items: baseline;
	justify-content: space-between;
	border-bottom: 1px dotted;
}

header h1 {
	font-size: 1.6rem;
}
.main-scrollTo h2 {
	font-size: 1.8rem
}

header h1 {
	position: relative;
	z-index: 1000;
}

.mobile-menu-btn {
	font-size: .9rem;
	text-transform: uppercase;
	letter-spacing: .15em;
	display: block;
	opacity: 1;
	transition: opacity .15s ease-in-out;
}
.mobile-menu-btn:hover {
	opacity: .5;
}

@media (min-width: 700px) {
	header {
		height: 100svh;
		width: var(--sideWidth);
		background: none;
		align-content: start;
		position: sticky;
		padding: var(--padding) 0 var(--padding) var(--padding);
	}
	header h1 { 
		height: 8rem;
	}
	.mobile-menu-btn {
		display: none;
	}
	header h1, .main-scrollTo h2 {
		font-size: 2rem;
	}
}

.nav-desktop {
	font-size: 1.75em;
	display: none;
}
.nav-desktop li {
	line-height: 1.1;
	margin-bottom: .25em;
}
.nav-desktop li a {
	text-indent: -1ch;
	padding-left: 1ch;
	display: inline-block;
	transform: translateX(0ch);
	transition: transform .15s ease-in-out;
}
.nav-desktop li a:hover {
	transform: translateX(.5ch);
}

/* Active Navigation Link Style */
.nav-desktop li a.nav-active {
	transform: translateX(.5ch);
	opacity: .65;
}
.nav-desktop li a:hover:not(.nav-active) {
			transform: translateX(.5ch);
}
@media (min-width: 700px) {
	.nav-desktop {
		display: block;
	}
}


svg {
	fill: #000000;
	transition: fill .2s;
	overflow: visible;
}


main {
	padding: var(--padding);
	width: 100vw;
	max-width: calc(800px + (var(--padding)*2));
}

.end {
	display: block;
	width: 100%;
	max-width: 320px;
	pointer-events: none;
}

@media (min-width: 700px) {
	main {
		width: calc(100vw - var(--sideWidth));
	}
}

@media (min-width: 1000px) {
	main {
		margin-left: auto;
		margin-right: auto;
	}
}

.main-section {
	min-height: 51svh;
	padding-bottom: 8svh;
}

.main-section.main-sec-landing {
	min-height: unset;
	padding-top: 6.5em;
	padding-bottom: 0;
}
.main-scrollTo {
	padding-top: 4.5em;
	position: relative;
}
.main-scrollTo:before {
	display: block;
	content: "";
	width: 100vw;
	top: 3em;
	left: calc(-1 * var(--padding));
	border-top: 1px dotted;
	position: absolute;
}

.main-scrollTo h2 {
	padding-top: var(--padding);
	margin-bottom: 1.125em;
}

@media (min-width: 700px) {
	.main-section {
	min-height: 62svh;
	}
	.main-scrollTo {
		padding-top: 0;
	}
	.main-scrollTo:before {
		display: none;
	}
	.main-section.main-sec-landing {
		min-height: 51svh;
		padding-top: 0;
		padding-bottom: 8svh;
	}
}

.sec-text {
	font-size: 1.3rem;
	max-width: 82ch;
}
.sec-text a {
	text-decoration: underline;
}
.sec-text a:hover {
	text-decoration: none;
}
.text-para {
	font-size: 1.35rem;
	line-height: 1.3;
}

.sec-image + .sec-list {
  margin-top: 1rem;
}

.sec-image {
	max-width: 90%;
	padding: .9em;
	position: relative;
	margin-left: auto;
	margin-right: auto;

}
.sec-image img {
	display: block;
}

.sec-image:before {
	display: block;
	content: "";
	width: 2em;
	height: 2em;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(0);
	border-top: 1px dotted;
	border-left: 1px dotted;
}
.sec-image:after {
	display: block;
	content: "";
	width: 2em;
	height: 2em;
	position: absolute;
	bottom: 0;
	right: 0;
	transform: rotate(0);
	border-right: 1px dotted;
	border-bottom: 1px dotted;
}

@media (min-width: 700px) {
	.sec-image {
	max-width: 80%;
	}
	.text-para {
	font-size: 1.5rem;
	max-width: 68ch;
	line-height: var(--lhval);
	}
}

.sec-text + .sec-image, .sec-image + .sec-text {
	margin-top: 2rem;
}

.sec-list {
	display: flex;
	flex-flow: row wrap;
	row-gap: .3em;
}
.list-item {
	font-size: 1rem;
	border-top: 1px dotted;
	padding: .275em 0 1.875em 0;
	padding: .9em 0;
	width: 100%;
	max-width: 80ch;
	line-height: 1.25;
	display: flex;
	flex-flow: row wrap;
	font-size: 1.3rem;
	position: relative;
}
a.list-item:hover {
	color: black;
}
.litem-meta-start {
	opacity: .6;
	width: 100%;
}
.litem-text {
	max-width: 87%;
}
.litem-text-tint {
	max-width: 87%;
	opacity: .6;
}
.litem-meta-end {
	opacity: .6;
	margin-top: .8em;
	width: 100%;
	font-size: .65em;
	text-transform: uppercase;
	letter-spacing: .1em;
}
.litem-link-icon {
	position: absolute;
	top: .275em;
	top: .9em;
	right: 0;
	transition: transform .1s ease-in-out;
	transform: translateX(0);
}
a.list-item:hover > .litem-link-icon {
	transform: translateX(-.5em);
}

footer {
	width: 100%;
	padding: calc(var(--padding) * 1.65) var(--padding);
	text-align: center;
		font-size: .825rem;
}

.contact-links.contact-desktop {
	display: none;
}

.contact-links {
	text-transform: uppercase;
	font-size: .825rem;
	letter-spacing: .15em;
	display: flex;
	flex-direction: column;
	row-gap: .3em;
}

.contact-links a:hover {
	color: black;
}

@media (min-width:700px) {
	.contact-links.contact-desktop {
		display: flex;
	}

	.contact-links {
		position: fixed;
		z-index: 1000;
		bottom: calc(var(--padding) * 1.65);
		left: var(--padding);
		width: calc(320px - (var(--padding) * 2));
		text-align: center;
	}
}

@media (min-width:1530px) {
	.contact-links {
		bottom: calc(var(--padding) * 1.5);
		right: var(--padding);
		left: unset;
	}
}

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

	100% {
		opacity: 1;
	}
}

.nav {
	z-index: 999;
	display: flex;
	flex-flow: row wrap;
	position: fixed;
	top: var(--padding);
	right: var(--padding);
}

.home-recent {
	font-size: 1.25em;
	max-width: 500px;
}
.segment {
	display: inline-block;
	border-radius: 3px;
	background-color: rgba(255, 255, 255, .08);
	padding: .185em .5em;
	margin-bottom: .3rem;
}
.seg-small-type {
	font-size: .95rem;
}
.seg-home-recent {
	text-indent: -1ch;
	padding: .3em .6em .4em calc(.6em + 1ch);
}


.menuOverlay {
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	display: flex;
	flex-flow: column nowrap;
	z-index: 998;
	opacity: 0;
	transition: opacity .15s ease-in-out;
	pointer-events: none;
	padding: var(--padding);
	width: 100%;
	height: 100dvh;
	overflow-y: scroll;
	overflow-x: hidden;
	background-color: inherit;
}

.menu::scrollbar {
	display: none;
}
.menuOverlay.menuOpen {
	opacity: 1;
	pointer-events: all;
}

.menuOverlay .contact-links {
	flex-shrink: 1;
	text-align: center;
	margin-bottom: calc(var(--padding)*1.5);
}

.nav-mobile {
	font-size: 1.75em;
	flex-grow: 1;
	margin-top: 5.5rem;
}
.nav-mobile li {
	line-height: 1.1;
	margin-bottom: .25em;
}

@media (min-width:700px) {
	.menuOverlay {
		display: none;
	}
}