html,
body,
div,
span,
applet,
object,
iframe,
h1,
.h1,
h4,
h5,
h6,
p,
input,
textarea,
::placeholder,
.p,
.h4,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

:root {
  --h1: 3rem;
  --h2: 2.5rem;
  --h3: 1.75rem;
  --btn: 1.125rem;
  --p: 1rem;
  --p2: 0.875rem;
  --black: #000;
  --white: #fff;
  --navy: #133445;
  --beige: #d0beaa;
  --gutter-wide: 125px;
  --gutter: 50px;
  --toppad: 115px;
  --largepad: 85px;
  --burger: 30px;
  --timing: ease; }
  @media (max-width: 1100px) {
    :root {
      --gutter-wide: 60px; } }
  @media (max-width: 750px) {
    :root {
      --h3: 1.5rem;
      --h2: 2rem;
      --largepad: 45px;
      --gutter-wide: 30px;
      --toppad: 96px; } }
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

*:focus {
  outline: none; }

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; }

html {
  font-family: "Helvetica Neue Regular";
  color: var(--navy);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

html,
body {
  overflow-x: hidden; }

a {
  text-decoration: none;
  color: currentColor; }

.fit-content {
  display: block;
  width: fit-content; }

.btn {
  display: block;
  width: fit-content;
  margin-top: 35px; }

h1, .h1 {
  font-size: var(--h1); }

h2, .h2 {
  font-size: var(--h2); }

h3, .subhead-bold, .h3 {
  font-size: var(--h3);
  line-height: 1.35; }

p, input,
textarea,
::placeholder, .p, h4,
.h4 {
  font-size: var(--p);
  line-height: 1.4; }

.p2 {
  font-size: var(--p2); }

.subhead-bold {
  font-weight: 600; }

button,
input,
textarea {
  font-family: "Helvetica Neue Regular";
  border-radius: 0;
  border: 0;
  background: none;
  color: currentColor; }

input,
textarea,
::placeholder {
  font-family: "Helvetica Neue Regular";
  color: currentColor; }

details summary::-webkit-details-marker {
  display: none; }

img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%; }

.textarea p, .textarea h4,
.textarea .h4, .textarea .p, .textarea input,
.textarea textarea,
.textarea ::placeholder {
  margin-bottom: 1em; }
  .textarea p:last-of-type, .textarea h4:last-of-type,
  .textarea .h4:last-of-type, .textarea .p:last-of-type, .textarea input:last-of-type,
  .textarea textarea:last-of-type,
  .textarea :last-of-type::placeholder {
    margin-bottom: 0em; }

.uppercase {
  text-transform: uppercase; }

header {
  height: 115px;
  padding: 15px var(--gutter-wide);
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  background: var(--white); }
  @media (max-width: 750px) {
    header {
      height: 96px; } }
  @media (min-width: 1100px) {
    header .main-nav a {
      margin-right: var(--gutter); }
      header .main-nav a:last-of-type {
        margin-right: 0; } }
  @media (max-width: 1100px) {
    header .main-nav {
      position: fixed;
      width: 100vw;
      right: -100vw;
      top: 115px;
      transition: right 0.3s var(--timing);
      height: calc(100vh - 115px);
      background: var(--navy);
      padding: var(--gutter);
      display: flex;
      flex-direction: column;
      justify-content: center; }
      header .main-nav.active {
        right: 0; }
      header .main-nav a {
        color: var(--white);
        margin-bottom: 35px;
        font-weight: 400;
        font-size: var(--h3);
        text-transform: uppercase; }
        header .main-nav a:last-of-type {
          margin-bottom: 0; } }
  @media (max-width: 750px) {
    header .main-nav {
      top: 96px;
      height: calc(100vh - 96px); }
      header .main-nav a {
        font-weight: 600; } }
.aspectholder svg {
  height: 100%;
  width: 100%;
  position: absolute; }
