/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/* * What follows is the result of much research on cross-browser styling. * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal, * Kroc Camen, and the H5BP dev community and team. */
/* ========================================================================== ========================================================================== */
:root {
  --sans: "Lato", sans-serif;
  --serif: "adobe-caslon-pro", serif;
  --normal: 400;
  --bold: 700;
  --font-size: 1em;
  --font-size-small: 0.85em;
  --font-size-medium: 1.75em;
  --font-size-medium-plus: 2.5em;
  --font-size-large: 3.5em;
  --font-size-xlarge: 4.5em;
  --font-size-chonk: 6em;
  --neutral: #dbdad6;
  --light-neutral: #f2f0e8;
  --dark-neutral: #c8c7c2;
  --light-brown: #724e2c;
  --dark-brown: #221d19;
  --blue: #0090cd;
  --dark-blue: #335a6a;
  --black: #000000;
  --white: #ffffff;
  --white-alt: #fafafa;
  --gray: #8b8d94;
  --gray-light: #e8e8e8;
  --gray-dark: #111111;
  --radius: 6px;
  --indent: -9999px;
  --center: translate(-50%, -50%);
}

html {
  background: var(--white-alt);
  color: var(--black);
  font-size: 1em;
  font-family: var(--sans);
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

/* * Remove text-shadow in selection highlight: * https://twitter.com/miketaylr/status/12228805301 * * Customize the background color to match your design. */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* * A better looking default horizontal rule */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--light-brown);
  margin: 1em 0;
  padding: 0;
}

/* * Remove the gap between audio, canvas, iframes, * images, videos and the bottom of their containers: * https://github.com/h5bp/html5-boilerplate/issues/440 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/* * Remove default fieldset styles. */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* * Allow only vertical resizing of textareas. */
textarea {
  resize: vertical;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  box-sizing: border-box;
  font-family: var(--serif);
  font-weight: var(--normal);
  line-height: 1em;
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 42px;
  line-height: 50px;
}

h3 {
  font-size: 55px;
  line-height: 60px;
}

h4 {
  font-size: 35px;
  line-height: 45px;
}

h5,
h6 {
  font-size: 30px;
  line-height: 35px;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
a,
li,
strong {
  font-family: var(--sans);
  font-weight: var(--normal);
}
p a,
a a,
li a,
strong a {
  text-decoration: underline;
  color: var(--light-brown);
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-3em {
  margin-bottom: 3em;
}

.inner-spacing.no-padding-top {
  padding-top: 0;
}

.inner-spacing {
  padding: 2em 4em;
}

.btn.center-align {
  margin-bottom: 3em;
}

P {
  color: #000;
  font-family: Lato;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
P.large-text {
  font-size: 24px;
  line-height: 36px;
}

.white {
  color: var(--white);
}

.dark-brown {
  color: var(--dark-brown);
}

main,
header,
article,
section,
footer {
  margin: auto;
  position: relative;
  width: 100%;
}

header {
  background: transparent;
  height: 75px;
  position: fixed;
  top: 0px;
  width: 100vw;
  z-index: 100;
  transition:
    background 0.2s linear,
    color 0.3s linear;
}
header nav {
  height: 90px;
  position: absolute;
  right: 0;
  top: 6px;
  width: 100vw;
}
header nav .left-nav {
  display: none;
}
header nav .right-nav {
  display: none;
}
header h1 {
  text-indent: var(--indent);
}
header h1#logo {
  background: url("../img/dac-circle-emblem-white.webp") no-repeat left center;
  background-size: 66px 66px;
  height: 66px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
}
header .toggle {
  background: url("../img/icon-menu.svg") no-repeat center center;
  background-size: 41px 41px;
  display: block;
  height: 75px;
  left: 1em;
  position: absolute;
  text-indent: var(--indent);
  top: 0;
  width: 41px;
  z-index: 101;
}
header .toggle.close {
  background: url("../img/icon-close.svg") no-repeat center center;
  background-size: 41px 41px;
  left: auto;
  right: 1em;
}
header .mobile-login {
  color: var(--white);
  display: inline-block;
  font-family: var(--serif);
  position: absolute;
  padding: 0.5em;
  right: 1em;
  top: 50%;
  text-decoration: none;
  transform: translateY(-50%);
}

#header.scroll,
#header.white-bg {
  background: var(--dark-brown);
}
#header.scroll h1#logo,
#header.white-bg h1#logo {
  background: url("../img/dac-circle-emblem-white.webp") no-repeat left center;
  background-size: 66px 66px;
  height: 66px;
  width: 66px;
}
#header.white-bg + article section:first-of-type {
  margin-top: 9em;
}
#header.on {
  bottom: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  height: 100vh;
  width: 100vw;
}
#header.on h1#logo {
  background: url("../img/dac-circle-emblem-white.webp") no-repeat left center;
  background-size: 90px 90px;
  height: 90px;
  left: 1em;
  transform: translateX(0%);
  top: -3em;
  width: 90px;
}
#header.on nav {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -40%);
  top: 40%;
  width: 100vw;
  z-index: 101;
}
#header.on nav .left-nav {
  display: block;
}
#header.on nav .right-nav {
  display: block;
}
#header.on nav .right-nav li:nth-child(2) {
  padding-top: 1.5em;
  border-top: 1px solid var(--light-brown);
}
#header.on nav .right-nav li:nth-child(2) a {
  color: var(--dark-neutral);
}
#header.on nav li {
  display: block;
  list-style: none;
  margin: 0.5em auto;
  width: 90%;
}
#header.on nav li a {
  border-bottom: 1px solid transparent;
  color: var(--white);
  display: inline-block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: var(--normal);
  padding: 0.5em 1.5em;
  text-decoration: none;
  transition:
    border-bottom 0.2s ease,
    color 0.2s ease;
}
#header.on nav li a:hover {
  color: #ccc;
  border-bottom: 1px solid #666;
  transition:
    border-bottom 0.2s ease,
    color 0.2s ease;
}
#header.on .mobile-login {
  display: none;
}

.login #header {
  height: auto;
}
.login #header .nav-wrapper {
  margin: 0;
}
.login #header .nav-wrapper nav {
  width: 100%;
  gap: 0;
  flex-wrap: wrap;
  display: flex;
  height: auto;
  top: 4em;
  display: flex;
  justify-content: center;
}
.login #header .nav-wrapper nav .right-nav li:first-child {
  margin-left: 0;
}
.login #header .nav-wrapper nav ol {
  padding: 0;
  gap: 0;
  flex-wrap: wrap;
  float: none;
  width: auto;
  display: flex;
}
.login #header .nav-wrapper nav ol li {
  margin-right: 5em;
}
.login #header .nav-wrapper nav ol li a {
  padding: 0;
  color: var(--dark-brown);
}
.login #header #logo {
  display: none;
  text-indent: var(--indent);
}
.login #header.on,
.login #header.on.login-form-wrapper {
  height: 100vh;
  top: 0;
}
.login #header .toggle {
  background: url(../img/icon-menu.svg) no-repeat center center;
  background-size: 41px 41px;
  display: block;
  height: 75px;
  left: 1em;
  position: absolute;
  text-indent: var(--indent);
  top: 0;
  width: 41px;
  z-index: 101;
}

@media only screen and (max-width: 1024px) {
  /*  quick last minute fix will need remedied */
  .center-text.quicklist {
    margin-top: 3em;
  }

  span.light {
    color: var(--dark-neutral);
    display: inline-block;
    margin: auto 0.5em;
  }
  span.remove {
    display: block;
    text-indent: var(--indent);
    margin: 0.5em auto;
  }

  .login #header .nav-wrapper nav ol.left-nav,
  .login #header .nav-wrapper nav ol.right-nav {
    display: none;
  }
  .login #header.login-form-wrapper {
    top: 0;
  }
  .login #header.login-form-wrapper.on nav {
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -40%);
    top: 40%;
    width: 100vw;
    z-index: 101;
  }
  .login #header.login-form-wrapper.on nav ol.left-nav,
  .login #header.login-form-wrapper.on nav ol.right-nav {
    display: block;
  }
  .login #header.login-form-wrapper.on nav ol.left-nav li,
  .login #header.login-form-wrapper.on nav ol.right-nav li {
    display: block;
    list-style: none;
    margin: 0.5em auto;
    width: 90%;
  }
  .login #header.login-form-wrapper.on nav ol.left-nav li a,
  .login #header.login-form-wrapper.on nav ol.right-nav li a {
    border-bottom: 1px solid transparent;
    color: var(--white);
    display: inline-block;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: var(--normal);
    padding: 0.5em 1.5em;
    text-decoration: none;
    transition:
      border-bottom 0.2s ease,
      color 0.2s ease;
  }
  .login #header.login-form-wrapper.on .login-form,
  .login #header.login-form-wrapper.on .forgot-password {
    display: none;
  }
  .login #header.login-form-wrapper.on h1#logo {
    background: url(../img/dac-circle-emblem-white.webp) no-repeat left center;
    background-size: 90px 90px;
    height: 90px;
    left: 1em;
    display: block;
    transform: translateX(0%);
    top: -3em;
    width: 90px;
    position: absolute;
  }
  .login #header .toggle.close {
    background: url(../img/icon-close.svg) no-repeat center center;
    background-size: 41px 41px;
    left: auto;
    right: 1em;
  }
}
.btn {
  background: var(--dark-brown);
  border: 2px solid var(--dark-brown);
  color: var(--white);
  display: block;
  max-width: 210px;
  padding: 0.75em;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s linear;
  width: 80%;
}
.btn.invert {
  background: transparent;
  border: 2px solid var(--dark-brown);
  color: var(--dark-brown);
}
.btn.invert:hover {
  background: var(--dark-brown);
  color: var(--white);
}
.btn.alt {
  background: var(--light-brown);
  border: 2px solid var(--light-brown);
}
.btn.white {
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--black);
}
.btn:hover {
  opacity: 0.8;
}

.arrow {
  background: url("../img/link-arrow.svg") no-repeat calc(100% - 0px)
    calc(50% + 1px);
  background-size: 65px 12px;
  color: var(--dark-brown);
  display: inline-block;
  padding: 0.5em 0em;
  padding-right: 81px;
  text-decoration: none;
  transition: all 0.2s linear;
}
.arrow:hover {
  background: url("../img/link-arrow.svg") no-repeat calc(100% - 6px)
    calc(50% + 1px);
  background-size: 65px 12px;
  padding-right: 81px;
}
.arrow.invert {
  background: url("../img/link-arrow-light.svg") no-repeat calc(100% - 0px)
    calc(50% + 1px);
  background-size: 65px 12px;
  color: var(--black);
}

.double-line-divider {
  background: url("../img/divider-double.svg") no-repeat center center;
  background-size: contain;
  width: 100%;
  margin: 6em auto;
}
.double-line-divider.alt {
  background: url("../img/divider-double-light.svg") no-repeat center center;
  background-size: contain;
}
.double-line-divider.single-slash {
  background: url("../img/divider-double-w-slash.svg") no-repeat center center;
  background-size: contain;
  width: 100%;
  margin: 6em auto;
  height: 80px;
}
.double-line-divider .slash-divider {
  width: 50px;
  padding: 0 2em;
  background-color: #fafafa !important;
  display: flex;
  margin: auto;
}

.slash-divider {
  background: url("../img/divider.svg") no-repeat left center;
  background-size: contain;
  width: 100%;
  margin-bottom: 3em;
}
.slash-divider.alt {
  background: url("../img/divider-light.svg") no-repeat left center;
  background-size: contain;
  width: 100%;
}
.slash-divider.center {
  background: url("../img/divider.svg") no-repeat center center;
}
.slash-divider.center.alt {
  background: url("../img/divider-light.svg") no-repeat center center;
  background-size: contain;
  width: 100%;
}

section.section {
  position: relative;
  width: 100%;
}
section.section img {
  min-height: 450px;
  object-fit: cover;
}
section.section img.foundation-logo {
  width: 226px;
  height: 242px;
  min-width: 226px;
  min-height: 242px;
  max-width: 226px;
  max-height: 242px;
  display: block;
  object-fit: contain;
  margin: auto;
}
section.section img.dps-logo {
  width: 320px;
  height: 225px;
  min-width: 320px;
  min-height: 225px;
  max-width: 320px;
  max-height: 225px;
  display: block;
  object-fit: contain;
  margin: auto;
}
section img {
  display: block;
  position: relative;
  width: 100%;
}

.dress-code-wrapper {
  padding-bottom: 6em;
  position: relative;
  padding-top: 2em;
}
.dress-code-wrapper .content-wrapper {
  margin-bottom: 500px;
}
.dress-code-wrapper .image-wrapper {
  overflow: visible;
}
.dress-code-wrapper .image-wrapper.forty {
  height: 770px;
}
.dress-code-wrapper .image-wrapper .feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 9;
}
.dress-code-wrapper .twenty .image-wrapper {
  overflow: visible;
  position: absolute;
  bottom: -150px;
  right: 0;
  left: 35%;
  width: 65%;
  height: 450px;
}
.dress-code-wrapper + .basic-content {
  padding-top: 12em;
}

footer {
  background: var(--dark-brown);
  color: var(--white);
  font-size: 15px;
}
footer .double-line-divider {
  padding: 2em 0em;
  margin-bottom: 3em;
  margin-top: 1em;
}
footer ol {
  padding: 2em 0em;
}
footer ol li {
  text-align: center;
  padding: 1em;
  margin: 2em auto;
}
footer .full img {
  display: block;
  height: 107.99px;
  margin: auto;
  width: 177px;
}
footer a {
  color: var(--light-neutral);
  display: block;
  font-family: var(--serif);
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s linear;
}
footer a:hover {
  opacity: 0.8;
}
footer strong {
  color: #9d6e41;
  display: block;
  font-weight: var(--normal);
  font-size: 36px;
  font-family: var(--serif);
  margin: 2em auto 1em;
  max-width: 80%;
  text-align: center;
}
footer p {
  color: var(--light-neutral);
  font-family: var(--serif);
  margin-top: 6em;
  text-align: center;
}
footer p span {
  display: block;
}
footer p span:last-child {
  margin: 3em auto;
}
footer .btn {
  margin: auto;
  font-family: var(--sans);
}
footer .btn:hover {
  background: transparent;
  border: 2px solid var(--light-neutral);
  color: var(--light-neutral);
  opacity: 1;
}
footer hr {
  border-top: 1px solid var(--dark-neutral);
}
footer .platinum {
  background: url(../img/apcoa_color.svg) no-repeat center center;
  background-size: contain;
  display: block;
  height: 213px;
  margin: 0.25em auto 1.25em auto;
  text-indent: var(--indent);
  width: 200px;
}
footer .legal {
  font-size: 14px;
  padding-bottom: 3em;
}
footer .legal p {
  color: var(--dark-neutral);
  font-family: var(--sans);
  text-align: center;
  padding: 0;
  margin: 2em auto;
}
footer .legal a {
  color: var(--dark-neutral);
  font-family: var(--sans);
  margin-top: 1em;
  text-align: center;
  text-decoration: underline;
}

/* -------------- faded-image-wrapper ------------------ */
.faded-image-wrapper {
  margin: 3em auto;
}
.faded-image-wrapper .full {
  background: url("../img/home-blade-3-1.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 788px;
  margin: 0em auto;
  display: flex;
  flex-wrap: wrap;
}
.faded-image-wrapper .full hgroup {
  color: var(--light-neutral);
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 900px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
.faded-image-wrapper .full hgroup span {
  display: block;
  letter-spacing: 3px;
  margin-bottom: 2em;
  text-transform: uppercase;
}
.faded-image-wrapper .full hgroup h5 {
  font-size: 66px;
  line-height: 72px;
  color: var(--white);
}
.faded-image-wrapper .full hgroup .btn {
  margin-top: 3em;
}
.faded-image-wrapper .full ul {
  padding-top: 2em;
  margin: auto;
  width: 1px;
}
.faded-image-wrapper .full ul li {
  border-right: 1px solid var(--light-neutral);
  height: 54px;
  list-style: none;
}
.faded-image-wrapper.faded-image-wrapper-contact {
  margin: 0;
}
.faded-image-wrapper.faded-image-wrapper-contact .full {
  background: url("../img/_become-member/blade-6-1.jpg") no-repeat center center;
  background-size: cover;
  min-height: 650px;
  height: auto;
}
.faded-image-wrapper.faded-image-wrapper-not-full {
  padding-left: 2em;
  padding-right: 2em;
  width: calc(100% - 4em);
}
.faded-image-wrapper .white-content-wrapper {
  margin: auto 6em;
}
.faded-image-wrapper .white-content-wrapper h2,
.faded-image-wrapper .white-content-wrapper h3,
.faded-image-wrapper .white-content-wrapper h4,
.faded-image-wrapper .white-content-wrapper h5,
.faded-image-wrapper .white-content-wrapper h6,
.faded-image-wrapper .white-content-wrapper p {
  color: #fff;
  margin-top: 0;
}
.faded-image-wrapper .white-content-wrapper h6 {
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 1.75em;
}
.faded-image-wrapper .white-content-wrapper h5 {
  margin-bottom: 60px;
  font-size: 18px;
  line-height: 1.75em;
}

.video-wrapper .full {
  height: 600px;
}
.video-wrapper video,
.video-wrapper iframe {
  max-width: 100%;
  width: 100%;
}
.video-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
}

.the-club .faded-image-wrapper .full {
  background: url("../img/_the-club/blade-4-1.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.the-club .feature-image-2 {
  margin: 0;
}
.the-club .basic-content {
  padding-bottom: 6em;
}
.the-club .half.content-wrapper .btn {
  margin-top: 3em;
}

.employment .faded-image-wrapper .full {
  background: url("../img/_employment/blade-1-1.jpg") no-repeat center center;
  background-size: cover;
}
.employment .faded-image-wrapper-2 {
  margin: 0;
}
.employment .faded-image-wrapper-2 .full {
  background: url("../img/_employment/blade-4-1.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.visiting .hero {
  background: var(--dark-brown) url("../img/_visiting-the-dac/blade-1-1.jpg")
    no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}
.visiting .faded-image-wrapper .full {
  background: url("../img/_visiting-the-dac/blade-1-1.jpg") no-repeat center
    center;
  background-size: cover;
  background-attachment: fixed;
}
.visiting .faded-image-wrapper.faded-image-wrapper-contact .full {
  background: url("../img/_become-member/blade-6-1.jpg") no-repeat center center;
  background-size: cover;
}

.foundation .hero {
  background: var(--dark-brown) url("../img/_dac-foundation/blade-1-1.jpg")
    no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}
.foundation .faded-image-wrapper .full {
  background: url("../img/_dac-foundation/video-poster-1.jpg") no-repeat center
    center;
  background-size: cover;
}
.foundation .faded-image-wrapper.faded-image-wrapper-contact .full {
  background: url("../img/_become-member/blade-6-1.jpg") no-repeat center center;
  background-size: cover;
}
.foundation .faded-image-wrapper-2 {
  margin: 0;
}
.foundation .faded-image-wrapper-2 .full {
  background: url("../img/_dac-foundation/video-poster-2.jpg") no-repeat center
    center;
  background-size: cover;
}

.basic-content {
  padding: 0 0 3em 0;
}
.basic-content blockquote {
  display: block;
  width: 100%;
  flex-basis: 100%;
}
.basic-content blockquote table {
  border-collapse: collapse;
}
.basic-content blockquote table td:first-child {
  padding-right: 1.5em;
  font-weight: 600;
  vertical-align: top;
}
.basic-content.basic-content-large hr {
  margin: 6em auto;
}
.basic-content.basic-content-large h3 {
  margin-top: 3em;
}
.basic-content.basic-content-large .slash-divider {
  margin-top: 6em;
}

.employment .basic-content {
  padding: 0 0 14em 0;
}
.employment .basic-content .half {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-self: center;
}
.employment .basic-content .half p {
  margin-top: 0;
}
.employment .basic-content .half p:last-of-type {
  margin-bottom: 0;
}
.employment .max-width-container .half h3 {
  padding-top: 0.5em;
  padding-bottom: 0.25em;
}
.employment .max-width-container .half h6 {
  line-height: 1.5em;
}
.employment .max-width-container .half h6:first-of-type {
  margin-top: 0.5em;
}
.employment .max-width-container .half ul {
  padding-left: 2em;
  padding-bottom: 2em;
}

.single-image-wrapper img {
  max-height: 450px;
  object-fit: cover;
}

.offset-image-content {
  padding-bottom: 8em;
}
.offset-image-content.off-white-bg {
  padding-bottom: 8em;
}
.offset-image-content .row {
  gap: 6em;
}
.offset-image-content .row .image-wrapper {
  background: url("../img/_the-club/blade-2-1.jpg") no-repeat center center;
  background-size: cover;
  width: calc(50% - 3em);
  margin-bottom: 6em;
  height: 700px;
}
.offset-image-content .row .content-wrapper {
  width: calc(50% - 3em);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-self: flex-end;
}

.offset-content.basic-content {
  padding: 0 0 9em 0;
}
.offset-content .half {
  margin-bottom: 3em;
}
.offset-content .offset-content-text {
  align-self: flex-end;
  margin-bottom: 0;
}

/* -------------- intro-wrapper ------------------ */
.intro-wrapper .half {
  text-align: center;
}
.intro-wrapper .center-justify {
  margin: auto;
}

.featured-content-wrapper,
.featured-content-wrapper.max-width-container {
  margin: 3em auto;
}
.featured-content-wrapper .row,
.featured-content-wrapper.max-width-container .row {
  gap: 1em;
}
.featured-content-wrapper .row .half,
.featured-content-wrapper.max-width-container .row .half {
  width: calc(50% - 0.5em);
}

.off-white-bg {
  padding: 4em 0em;
  background: var(--light-neutral);
}

.off-white-bg-overlap {
  background: linear-gradient(to top, #f2f0e8 5%, transparent 5%);
}
.off-white-bg-overlap.large {
  background: linear-gradient(to top, #f2f0e8 15%, transparent 15%);
}

h2,
h3,
h4,
h5 {
  color: var(--light-brown);
}

h6 {
  font-size: 1em;
  color: var(--light-brown);
  display: block;
  font-weight: 700;
  margin-bottom: 1em;
  font-family: var(--sans);
  text-transform: uppercase;
}

.hero {
  background: var(--dark-brown) url("../img/the-dac-hero.jpg") no-repeat center
    center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--white);
  height: 50vh;
  position: relative;
  margin-top: 6em;
  margin-bottom: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  z-index: -100;
}
.hero iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: -100;
}
.hero.no-spacing {
  min-height: 700px;
  margin-top: 6em !important;
}
.hero hgroup {
  text-align: center;
  width: 90vw;
  margin: 0 auto;
}
.hero .color-divide {
  background: var(--light-brown);
  bottom: 0;
  height: 9px;
  position: absolute;
  top: auto;
  width: 100%;
  z-index: 3;
}
.hero .content-wrapper {
  background: rgba(34, 29, 25, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding: 6em;
  width: 35%;
}
.hero .content-wrapper hgroup {
  position: initial;
  transform: none;
  text-align: left;
  width: 100%;
  align-items: flex-start;
}
.hero .content-wrapper hgroup h2 {
  font-size: 75px;
  line-height: 106.278%;
}
.hero .content-wrapper hgroup p {
  margin-top: 0;
}

.dark-background-outer {
  margin: 4em auto;
  background: #dbdad6;
  padding: 20px;
  border: 1px solid #221d19;
}

.dark-background {
  background: #dbdad6;
  border: 1px solid #694f34;
  padding: 40px;
}

.values .hero {
  background: var(--dark-brown) url("../img/_club-values/blade-1-1.jpg")
    no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

.enrichment .hero {
  background: var(--dark-brown) url("../img/_enrichment-fund/blade-1-1.jpg")
    no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}
.enrichment .faded-image-wrapper {
  margin: 0;
}
.enrichment .faded-image-wrapper .full {
  background: url("../img/_enrichment-fund/blade-2-1.jpg") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}
.enrichment .faded-image-wrapper.faded-image-wrapper-contact .full {
  background: url("../img/_become-member/blade-6-1.jpg") no-repeat center center;
  background-size: cover;
}

.history .hero {
  background: var(--dark-brown) url("../img/_club-history/blade-1-1.jpg")
    no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.history .faded-image-wrapper {
  margin-bottom: 0;
}
.history .faded-image-wrapper .full {
  background: url("../img/_club-history/blade-3-1.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.history .four h3 {
  padding-top: 1em !important;
}

.home .hero {
  background: none;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  margin: 0;
}
.home .hero:after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  z-index: -99;
}
.home .two .half {
  box-sizing: border-box;
  padding: 0em 2em;
}
.home .two ul li {
  list-style: none;
  margin-top: 2em;
}
.home .faded-image-wrapper .full {
  background: url("../img/home-blade-3-1.jpg") no-repeat center top;
  background-size: cover;
  height: 788px;
  background-attachment: fixed;
}

hgroup {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
hgroup span {
  display: block;
  letter-spacing: 3px;
  margin-bottom: 2em;
  text-transform: uppercase;
}
hgroup h5 {
  font-size: 42px;
}
hgroup P {
  margin-top: 3em;
  color: var(--light-brown);
  margin-bottom: 0;
}
hgroup .btn {
  margin-top: 3em;
}

.side-by-side-content {
  padding: 6em 0;
}
.side-by-side-content .row {
  gap: 30px;
}
.side-by-side-content .row .half {
  width: calc(50% - 15px);
}
.side-by-side-content .row .half h4 {
  margin-bottom: 30px;
}
.side-by-side-content .row .half .text-wrapper {
  padding: 20px;
}
.side-by-side-content .row .half .text-wrapper h4 {
  margin-top: 30px;
}
.side-by-side-content .row .half .text-wrapper p:last-of-type {
  margin: 0;
}
.side-by-side-content .row .half .text-wrapper .btn {
  margin-top: 50px;
}
.side-by-side-content .row .half .image-wrapper {
  overflow: hidden;
  height: 500px;
  transition: all 1s ease;
}
.side-by-side-content .row .half .image-wrapper img {
  transition: all 1s ease;
  height: 100%;
}
.side-by-side-content .row .half .image-wrapper img:hover {
  transform: scale(1.1);
  transition: all 1s ease;
}

.image-wrapper {
  height: 700px;
  overflow: hidden;
  width: 100%;
}
.image-wrapper.parallax {
  clip-path: inset(0);
}
.image-wrapper.parallax img {
  object-fit: cover;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.feature-image-wrapper .half {
  position: relative;
  height: 699px;
}
.feature-image-wrapper .half .content-wrapper {
  bottom: 3em;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 90%;
  z-index: 2;
}
.feature-image-wrapper .half .content-wrapper strong {
  color: var(--light-neutral);
  display: block;
  font-family: var(--serif);
  font-weight: var(--normal);
  font-size: var(--font-size-medium-plus);
  line-height: 1em;
}
.feature-image-wrapper .half .content-wrapper p {
  color: var(--light-neutral);
  font-size: 14px;
  margin: 10px 0 10px 0;
  padding-top: 0;
  padding-bottom: 24px;
}
.feature-image-wrapper .half .content-wrapper p span {
  text-transform: uppercase;
}
.feature-image-wrapper .half .content-wrapper.invert strong,
.feature-image-wrapper .half .content-wrapper.invert p {
  color: var(--black);
}
.feature-image-wrapper .half .content-wrapper.invert p {
  border-bottom: 1px solid var(--black);
}

.feature-image {
  height: 755px;
  position: relative;
  text-indent: var(--indent);
  transition: all 1s ease;
  width: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.feature-image:hover {
  transform: scale(1.1);
  transition: all 1s ease;
}

.feature-image-1 {
  background-image: url("../img/home-blade-2-1.jpg");
}

.feature-image-2 {
  background-image: url("../img/home-blade-2-2.jpg");
  margin-top: 120px;
}

.home .feature-image-3 {
  background-image: url("../img/home-blade-4-1.jpg");
  margin-top: 0;
}
.home .feature-image-4 {
  background-image: url("../img/home-blade-4-2.jpg");
  margin-top: 0;
}

.the-club .feature-image-1 {
  background-image: url("../img/_the-club/blade-3-1.jpg");
}
.the-club .feature-image-2 {
  background-image: url("../img/_the-club/blade-3-2.jpg");
}

.visiting .feature-image-1 {
  background-image: url("../img/_visiting-the-dac/blade-2-1.jpg");
}
.visiting .feature-image-2 {
  background-image: url("../img/_visiting-the-dac/blade-2-2.jpg");
  margin-top: -75px;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.employment .feature-image-1 {
  background-image: url("../img/_employment/blade-2-1.jpg");
}
.employment .feature-image-2 {
  background-image: url("../img/_employment/blade-2-2.jpg");
}

.values .feature-image-1 {
  background-image: url("../img/_club-values/blade-2-1.jpg");
}
.values .feature-image-2 {
  background-image: url("../img/_club-values/blade-2-2.jpg");
}

.login {
  height: 100vh;
}
.login .login-image-wrapper,
.login .login-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.login .login-image-wrapper {
  height: 100vh;
  background: url(../img/_login/blade-1.jpg) no-repeat center center;
  position: relative;
}
.login .login-image-wrapper img {
  width: 30%;
  object-fit: contain;
}
.login .login-image-wrapper .copyright-text {
  position: absolute;
  bottom: 4em;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
}
.login .login-form-wrapper {
  height: 100vh;
  justify-content: space-between;
  gap: 20px;
}
.login .login-form-wrapper nav {
  width: 100%;
}
.login .login-form-wrapper nav ol {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 12em);
  padding: 4em 6em 0 6em;
}
.login .login-form-wrapper nav ol li a {
  text-decoration: none;
}
.login .login-form-wrapper .login-form {
  width: calc(100% - 12em);
  padding: 0 6em;
  display: flex;
  flex-direction: column;
}
.login .login-form-wrapper .login-form label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 4.07px;
  color: var(--dark-brown);
  text-transform: uppercase;
}
.login .login-form-wrapper .login-form label.checkbox {
  font-family: var(--serif);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
  text-transform: none;
  letter-spacing: 0px;
}
.login .login-form-wrapper .login-form input {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid black;
  font-family: var(--serif);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 2.16px;
  margin-bottom: 2em;
  background: transparent;
}
.login .login-form-wrapper .forgot-password {
  text-align: center;
  gap: 40px;
  width: calc(100% - 12em);
  padding: 0 6em 4em 6em;
  display: flex;
  flex-direction: column;
}
.login .login-form-wrapper .forgot-password p {
  margin: 0;
}

.max-width-container,
.max-width-container.flex-container {
  max-width: 1500px;
  margin: auto;
  position: relative;
  width: 93%;
}

.flex-container {
  width: 100%;
}
.flex-container .center-justify {
  justify-content: center;
}
.flex-container .center-justify.with-spacing {
  gap: 80px;
}
.flex-container .center-justify.with-spacing .half {
  width: calc(50% - 40px);
}
.flex-container .center-justify.margin-bottom {
  margin-bottom: 40px;
}
.flex-container .row {
  display: flex;
  flex-wrap: wrap;
}
.flex-container .row.content-row {
  margin: 6em 0;
  gap: 60px;
}
.flex-container .row.content-row.center-align {
  margin-left: auto;
  margin-right: auto;
}
.flex-container .row.content-row .third {
  width: calc(33.33% - 40px);
}
.flex-container .row.content-row .half {
  width: calc(50% - 30px);
}
.flex-container .row.images-wrapper {
  margin: 6em 0 9em 0;
  gap: 45px;
}
.flex-container .row.images-wrapper .third {
  width: calc(33.333% - 30px);
}
.flex-container .row.large-gap {
  gap: 12%;
}
.flex-container .row.large-gap .third {
  width: calc(33.33% - 8%);
}
.flex-container .row.large-gap .half {
  width: calc(50% - 6%);
}
.flex-container .tenth {
  width: 10%;
}
.flex-container .quarter {
  width: 25%;
}
.flex-container .third {
  width: 33.33%;
}
.flex-container .half {
  width: 50%;
}
.flex-container .forty {
  width: 40%;
}
.flex-container .twenty {
  width: 10%;
}
.flex-container .two-third {
  width: 66.66%;
}
.flex-container .three-quarter {
  width: 75%;
}
.flex-container .full {
  width: 100%;
}

.max-width-container.max-width-container-text-override-desktop,
.max-width-container.flex-container.max-width-container-text-override-desktop,
.max-width-container-text-override-desktop {
  width: 84%;
}

.bryan-special {
  width: 800px;
  max-width: 100%;
}

@media only screen and (max-width: 1024px) {
  .bryan-special {
    width: 575px;
  }

  h1 {
    font-size: 51px;
    line-height: 60px;
  }

  h2 {
    font-size: 42px;
    line-height: 51px;
  }

  h3 {
    font-size: 36px;
    line-height: 42px;
  }

  .offset-content.basic-content {
    padding: 0 0 6em 0;
    margin-top: 0 !important;
  }
  .offset-content .half {
    margin: 0;
  }

  .visiting .feature-image-2 {
    margin-top: 0;
  }

  .the-club .basic-content {
    padding-bottom: 6em;
  }

  .dress-code-wrapper .forty.content-wrapper {
    margin-top: 3em;
  }

  .inner-spacing {
    padding: 2em 0;
    text-align: center;
  }

  .history .off-white-bg {
    padding-top: 3em;
  }

  .max-width-container-text-override,
  .max-width-container-text-override.flex-container {
    width: 84%;
  }

  .basic-content .slash-divider {
    margin-top: 3em;
  }

  .desktop-only,
  .tenth {
    display: none !important;
  }

  .feature-image-2 {
    margin-top: 60px;
  }

  .faded-image-wrapper .full hgroup {
    width: 500px;
    max-width: 95%;
  }

  p {
    font-size: 16px;
    line-height: 24px;
  }
  p.large-text {
    font-size: 20px;
    line-height: 30px;
  }

  .login .login-image-wrapper {
    justify-content: flex-start;
  }
  .login .login-image-wrapper img {
    height: 75px;
    min-height: 75px;
    width: 20%;
    margin-top: 20px;
  }
  .login .login-image-wrapper .copyright-text {
    display: none;
  }
  .login .login-form-wrapper {
    position: absolute;
    top: 175px;
    bottom: 20px;
    height: auto;
  }
  .login .login-form-wrapper nav ol li a,
  .login .login-form-wrapper .login-form label,
  .login .login-form-wrapper .forgot-password p,
  .login .login-form-wrapper .forgot-password p a {
    color: var(--white);
  }
  .login .login-form-wrapper .forgot-password p:last-of-type {
    color: #8b8d94;
  }
  .login .login-form-wrapper nav ol,
  .login .login-form-wrapper .forgot-password,
  .login .login-form-wrapper .login-form {
    padding: 0 20px 0 20px;
    width: calc(100% - 40px);
  }
  .login .login-form-wrapper .login-form {
    align-items: center;
  }
  .login .login-form-wrapper .login-form label {
    margin-bottom: 1em;
  }
  .login .login-form-wrapper .login-form label.checkbox {
    display: none;
  }
  .login .login-form-wrapper .login-form .btn {
    background: transparent;
    border-color: #fff;
    max-width: 60%;
    margin-top: 3em;
    font-size: 18px;
  }
  .login .login-form-wrapper .login-form input {
    width: 90%;
    text-align: center;
    background: none;
    color: #fff;
    border-color: #fff;
  }
  .login .login-form-wrapper .login-form ::placeholder {
    color: #fff;
    opacity: 1;
    /* Firefox */
  }

  .texture-wrapper {
    display: none;
  }

  .featured-content-wrapper .row .half,
  .featured-content-wrapper.max-width-container .row .half {
    width: calc(100%);
  }

  .side-by-side-content .row .half {
    width: calc(100%);
  }
  .side-by-side-content .row .half .image-wrapper img,
  .side-by-side-content .row .half .image-wrapper {
    height: 300px;
  }

  .offset-image-content .row {
    gap: 3em;
    display: flex;
    flex-wrap: wrap;
  }
  .offset-image-content .row .image-wrapper {
    width: calc(100%);
    margin-bottom: 0em;
  }
  .offset-image-content .row .content-wrapper {
    width: calc(93%);
    margin: auto;
  }

  .employment .basic-content {
    padding: 0 0 3em 0;
  }

  .basic-content.basic-content-large hr {
    margin: 3em auto;
  }
  .basic-content.basic-content-large h3 {
    margin-top: 2em;
  }

  .feature-image-wrapper .half {
    height: 400px;
  }

  .feature-image {
    height: 500px;
    transform: none !important;
  }

  .off-white-bg {
    padding: 2em 0;
  }
  .off-white-bg.side-by-side-content {
    padding: 6em 0;
  }

  .basic-content {
    padding: 0 0 2em 0;
  }

  .faded-image-wrapper .full {
    height: 400px;
  }
  .faded-image-wrapper .full hgroup h5 {
    font-size: 40px;
    line-height: 50px;
  }
  .faded-image-wrapper .white-content-wrapper {
    margin: 110px auto 2em;
    width: 84%;
  }
  .faded-image-wrapper .white-content-wrapper h5 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .faded-image-wrapper .white-content-wrapper h6 {
    margin-top: 10px;
    font-size: 1em;
    margin-bottom: 10px;
  }
  .faded-image-wrapper .white-content-wrapper .slash-divider {
    margin: 2em 0 0 0;
  }
  .faded-image-wrapper.faded-image-wrapper-not-full {
    padding: 0;
    width: 100%;
    margin: 0;
  }

  .image-wrapper {
    height: 400px;
  }

  .double-line-divider {
    margin: 3em auto;
  }
  .double-line-divider.single-slash {
    margin: 3em auto;
  }

  .flex-container .center-justify {
    justify-content: center;
  }
  .flex-container .center-justify.with-spacing {
    gap: 40px;
  }
  .flex-container .center-justify.with-spacing .half {
    width: calc(100%);
  }
  .flex-container .quarter {
    width: 100%;
  }
  .flex-container .third {
    width: 100%;
  }
  .flex-container .tenth {
    width: 100%;
  }
  .flex-container .forty {
    width: 100%;
  }
  .flex-container .twenty {
    width: 100%;
  }
  .flex-container .half {
    width: 100%;
  }
  .flex-container .two-third {
    width: 100%;
  }
  .flex-container .three-quarter {
    width: 100%;
  }
  .flex-container .full {
    width: 100%;
  }
  .flex-container .row.large-gap {
    gap: 20px;
  }
  .flex-container .row.large-gap .half {
    width: 100%;
  }

  section.section img {
    min-height: 300px;
    height: 300px;
  }

  .dress-code-wrapper .row {
    gap: 20px;
  }
  .dress-code-wrapper .image-wrapper.forty {
    height: 300px;
  }
  .dress-code-wrapper .content-wrapper {
    margin-bottom: 20px;
  }
  .dress-code-wrapper .twenty .image-wrapper {
    position: relative;
    bottom: 0;
    right: 0;
    left: 0%;
    width: 100%;
    height: 300px;
  }
  .dress-code-wrapper + .basic-content {
    padding-top: 6em;
  }

  .flex-container {
    width: 100%;
  }
  .flex-container .row.content-row {
    margin: 3em 0;
    gap: 20px;
  }
  .flex-container .row.content-row .third {
    width: calc(100%);
  }
  .flex-container .row.content-row .half {
    width: calc(50% - 15px);
  }
  .flex-container .row.images-wrapper {
    margin: 3em 0 6em 0;
    gap: 20px;
  }
  .flex-container .row.images-wrapper .third {
    width: calc(100%);
  }

  .hero {
    height: 35vh;
    margin-bottom: 4em;
  }
  .hero.no-spacing {
    min-height: calc(100vh - 4em);
    margin-top: 4em !important;
  }
  .hero.no-spacing .content-wrapper {
    right: 0;
    align-items: center;
    text-align: center;
    top: 0;
    left: 0;
    bottom: 0;
    max-width: 100%;
  }
  .hero.no-spacing .content-wrapper hgroup,
  .hero.no-spacing .content-wrapper h2,
  .hero.no-spacing .content-wrapper p {
    text-align: center;
    width: 100%;
  }
  .hero .content-wrapper {
    width: auto;
    max-width: 50%;
    padding: 4em;
  }
  .hero .content-wrapper hgroup h2 {
    font-size: 55px;
  }

  #header.white-bg + article section.one:first-of-type {
    margin-top: 4em;
  }
  #header.white-bg + article section.one.basic-content {
    margin-top: 8em;
  }
  #header.white-bg + article section.one.basic-content:first-of-type {
    margin-top: 8em;
  }

  /* page specific overrides mobile */
  .pull {
    margin: auto;
    width: 84%;
  }

  .spaced {
    padding-bottom: 3em;
  }

  .home #two {
    padding: 4em 0em;
  }
  .home #two h2 {
    line-height: 45px;
  }
  .home #four.feature-image-wrapper .half {
    height: 500px;
  }
  .home #four .image-wrapper {
    height: 500px;
  }

  .the-club #one h5 {
    line-height: 51px;
  }
  .the-club #four.feature-image-wrapper .half {
    height: 500px;
  }
  .the-club #four .image-wrapper {
    height: 500px;
  }

  .visiting #three h2 {
    font-size: 45px;
  }
  .visiting h5 a {
    font-family: var(--serif);
    color: var(--white);
  }

  .employment #two {
    padding-top: 3em;
  }
  .employment #six {
    padding: 6em 0em;
  }
  .employment #six .two-third {
    padding: 2em 0em;
  }
  .employment #six .two-third h6 {
    font-size: 12px;
  }
  .employment #six .two-third h5 {
    font-size: 21px;
  }
  .employment #six .two-third h5 a {
    color: var(--dark-brown);
  }

  .enrichment #five h5 a {
    font-family: var(--serif);
    color: var(--white);
  }

  .foundation #seven h5 a {
    font-family: var(--serif);
    color: var(--white);
  }
}
.download span {
  background: url(../img/icon-chevrons.svg) no-repeat right center;
  background-size: 10.66px 12px;
  display: inline-block;
  padding-right: 24px;
}

p.last {
  padding-bottom: 3em;
}

@media only screen and (min-width: 1024px) {
  /*  quick last minute fix will need remedied */
  .center-text.quicklist {
    margin-top: 0em;
  }

  span.light {
    color: var(--dark-neutral);
  }
  span.remove {
    display: inline-block;
    text-indent: 0px;
    margin: auto 0.5m;
  }

  /* page specific overrides desktop*/
  .home .spaced {
    padding-bottom: 8em;
  }

  .the-club #two.section .full img {
    height: 700px;
    max-height: 700px;
  }

  .visiting #one hgroup {
    max-width: 1000px;
    width: 1000px;
  }
  .visiting #three h2 {
    font-size: 51px;
    line-height: 54px;
  }
  .visiting #three h3 {
    font-size: 45px;
    line-height: 54px;
  }
  .visiting h5 a {
    font-family: var(--serif);
    color: var(--white);
  }

  .employment #two {
    padding-top: 3em;
  }
  .employment #two h2 {
    font-size: 51px;
    line-height: 54px;
  }
  .employment #six {
    padding: 3em 0em;
  }
  .employment #six .two-third {
    padding: 2em 0em;
  }
  .employment #six .two-third h6 {
    font-size: 12px;
  }
  .employment #six .two-third h5 {
    font-size: 21px;
  }
  .employment #six .two-third h5 a {
    font-family: var(--serif);
    color: var(--dark-brown);
  }

  .enrichment #five h5 a {
    font-family: var(--serif);
    color: var(--white);
  }

  .foundation #seven h5 a {
    font-family: var(--serif);
    color: var(--white);
  }

  #header {
    height: 96px;
  }
  #header .nav-wrapper {
    max-width: 1500px;
    margin: auto;
    position: relative;
    width: 93%;
  }
  #header .nav-wrapper h1#logo {
    background: url(../img/dac-circle-emblem-white.webp) no-repeat left center;
    background-size: 75px 75px;
    cursor: pointer;
    float: left;
    height: 75px;
    left: auto;
    position: relative;
    transform: translateX(0%);
    width: 75px;
  }
  #header .nav-wrapper nav {
    box-sizing: border-box;
    height: 70px;
    left: 50%;
    position: absolute;
    transform: translateX(-47%);
    top: 10px;
    width: 595px;
  }
  #header .nav-wrapper nav .left-nav,
  #header .nav-wrapper nav .right-nav {
    display: block;
    float: left;
  }
  #header .nav-wrapper nav .right-nav li:first-child {
    margin-left: 3em;
  }
  #header .nav-wrapper nav .right-nav li:last-child {
    margin-right: 0em;
  }
  #header .nav-wrapper nav ol {
    list-style: none;
  }
  #header .nav-wrapper nav ol li {
    float: left;
    margin-right: 3em;
  }
  #header .nav-wrapper nav ol li a {
    color: var(--white);
    display: block;
    font-family: var(--serif);
    padding-top: 21px;
    text-decoration: none;
    transition: color 0.2s linear;
  }
  #header .nav-wrapper nav ol li a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  #header .nav-wrapper .toggle,
  #header .nav-wrapper .mobile-login {
    display: none;
  }
  #header.scroll h1#logo {
    background: url(../img/dac-circle-emblem-white.webp) no-repeat left center;
    background-size: 75px 75px;
    float: left;
    height: 75px;
    left: auto;
    position: relative;
    transform: translateX(0%);
    width: 75px;
  }

  hgroup h1,
  hgroup h2 {
    font-size: var(--font-size-large);
  }

  .player-modal {
    display: none;
  }

  footer .flex-container {
    margin: auto;
    max-width: 1500px;
    position: relative;
    text-align: center;
    width: 93%;
  }
  footer .flex-container ol {
    margin: auto auto 2em;
    list-style: none;
    max-width: 900px;
  }
  footer .flex-container ol li {
    float: left;
    font-size: 14px;
    margin: auto 1.5em;
  }
  footer .flex-container .full img {
    display: block;
    height: 169px;
    margin: auto;
    width: 277px;
  }
  footer .legal p {
    text-align: left;
    margin: 0;
    font-size: 14px;
  }
  footer .legal .third:last-child {
    text-align: right;
  }
  footer .legal a {
    display: inline-block;
    margin-top: 0;
    margin-right: 0.5em;
    text-align: right;
    font-size: 14px;
    text-decoration: none;
  }

  .texture-wrapper {
    display: block;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
  }
  .texture-wrapper .texture {
    position: absolute;
    text-indent: var(--indent);
  }
  .texture-wrapper .texture.texture-1 {
    background: url("../img/dac-card-black.webp") no-repeat center center;
    background-size: contain;
    height: 206px;
    left: 0px;
    top: 100px;
    width: 700px;
    z-index: 0;
  }
  .texture-wrapper .texture.texture-2 {
    background: url("../img/dac-card-square-black.webp") no-repeat center center;
    background-size: contain;
    height: 300px;
    right: 100px;
    top: 100px;
    width: 280.77px;
    z-index: 0;
  }
}
@media only screen and (min-width: 1300px) {
  .texture-wrapper .texture.texture-1 {
    background: url("../img/dac-illustration.webp") no-repeat center center;
    background-size: contain;
    height: 422px;
    left: 0px;
    top: 0px;
    width: 480px;
    z-index: 0;
  }
  .texture-wrapper .texture.texture-2 {
    background: url("../img/dac-card-square-black.webp") no-repeat center center;
    background-size: contain;
    height: 412px;
    right: 0;
    top: 30px;
    width: 400px;
    z-index: 0;
  }
}
@media only screen and (min-width: 1100px) {
  /* Style adjustments for viewports that meet the condition */
}
@media only screen and (min-width: 1500px) {
  /* Style adjustments for viewports that meet the condition */
}
/* ========================================================================== Helper classes ========================================================================== */
/* * Hide visually and from screen readers */
.hidden,
[hidden] {
  display: none !important;
}

/* * Hide only visually, but have it available for screen readers: * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility * * 1. For long content, line feeds are not interpreted as spaces and small width * causes content to wrap 1 word per line: * https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe */
.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/* * Extends the .visually-hidden class to allow the element * to be focusable when navigated to via the keyboard: * https://www.drupal.org/node/897638 */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/* * Hide visually and from screen readers, but maintain layout */
.invisible {
  visibility: hidden;
}

.center-text {
  text-align: center;
}

.center-align {
  margin: 3em auto 0 auto;
}

/* * Clearfix: contain floats * * The use of `table` rather than `block` is only necessary if using * `::before` to contain the top-margins of child elements. */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/*# sourceMappingURL=style.css.map */
