@charset "UTF-8";
/* CSS Document */
html {
  -webkit-text-size-adjust: 100%
}

@media (prefers-color-scheme: dark) {
  html {
    background: #000;
  }
}

body {
  box-sizing: border-box;
  margin: 0px;
  font:16px/22px;
  position: relative;
}

article {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  padding: 0px 35px;
}

@media all and (max-width: 480px) {
  article {
    padding: 0px 10px;
  }
}

a, article, body, div, h1, h2, h3, img, li, p, td, tr, ul {
  color: #3D3D3D;
  transition: 0.25s;
}

@media (prefers-color-scheme: dark) {
  a, article, body, div, h1, h2, h3, img, li, p, td, tr, ul {
    color: #eee;
  }
}

a img {
  border: 0px;
  outline: none;
}

/* FONTS */

@font-face {
  font-family: 'centurygothic';
  src: url('../fonts/century_gothic.eot');
  src: url('../fonts/century_gothic.eot?#iefix') format('embedded-opentype'),
     url('../fonts/century_gothic.woff') format('woff'),
     url('../fonts/century_gothic.ttf') format('truetype'),
     url('../fonts/century_gothic.svg#centurygothic') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'optima';
  src: url('../fonts/optima_regular-webfont.eot');
  src: url('../fonts/optima_regular-webfont.eot?#iefix') format('embedded-opentype'),
     url('../fonts/optima_regular-webfont.woff2') format('woff2'),
     url('../fonts/optima_regular-webfont.woff') format('woff'),
     url('../fonts/optima_regular-webfont.ttf') format('truetype'),
     url('../fonts/optima_regular-webfont.svg#optima') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'optima-bold';
  src: url('../fonts/optima_bold.eot');
  src: url('../fonts/optima_bold.eot?#iefix') format('embedded-opentype'),
     url('../fonts/optima_bold.woff') format('woff'),
     url('../fonts/optima_bold.ttf') format('truetype'),
     url('../fonts/optima_bold.svg#optima-bold') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* BASIC STYLES */

h1,
h2,
h3,
h4 {
  display: inline;
  font-family: 'optima', Optima, Candara, Calibri, Arial, sans-serif;
  font-weight: normal;
  margin: auto 0;
  text-align: left;
}

h1,
h2 {
  background: rgba(125,125,125,0.9);
  color: #fff;
}

h1 + h2,
h1 + h3,
h1 + h4,
h2 + h3,
h2 + h4,
h3 + h4 {
  margin-top: 10px;
}

h1 {
  font-size: 32px;
  line-height: 62px;
  padding: 10px 0;
}

h2 {
  font-size: 28px;
  line-height: 54px;
  padding: 0 8px;
}

h3 {
  font-size: 24px;
  line-height: 42px;
}

h4 {
  font-size: 20px;
  line-height: 26px;
}

p, a, li, table {
  font-family: 'centurygothic', CenturyGothic, Arial, AppleGothic, sans-serif;
}

p {
  margin: 25px 0;
}

table {
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

td {
  padding: 10px;
}


a, a:link, a:visited {
  color: #3C3B6E;
}

@media (prefers-color-scheme: dark) {
  a, a:link, a:visited {
    color: #7e7ce4;
  }
}

a:active, a:hover {
  color: #B22234;
}

@media (prefers-color-scheme: dark) {
  a:active, a:hover {
    color: #f13048;
  }
}

/* drop anchor below header */
a.anchor {
  display: inline-block;
  position: relative;
  top: -70px;
  visibility:hidden;
}

/* HEADER BAR */

.headerbar {
  background: rgba(0,0,0,0.9);
  box-sizing: border-box;
  height: 60px;
  margin: 0px;
  overflow: hidden;
  padding-left: 58px;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 10;
}

/* backdrop blur */
@supports ( (-ms-backdrop-filter: blur(5px)) or (-webkit-backdrop-filter: blur(5px)) or (-o-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px)) ) {
  .headerbar {
    background: rgba(0,0,0,0.25);
    -ms-backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    -o-backdrop-filter: blur(15px) saturate(150%);
    backdrop-filter: blur(15px) saturate(150%);
  }
}

@supports(padding: max(0px)) {
  ul.headerbar {
    padding-left: max(98px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }
}

.headerbar ul {
  margin-left: auto;
  margin-right: auto;
  min-width: 100px;
}

.headerbar li {
  display: table-cell;
  height: 100%;
  float: left;
  list-style: none;
  margin: 0px 20px 0px -20px;
  text-align: center;
}

.headerbar li a {
  color: #fff;
  display: inline-block;
  height: 100%;
  line-height: 58px;
  margin: 0px 20px;
  text-decoration: none;
  text-transform:uppercase;
  width: 100%;
}

.headerbar li a:hover {
  background: rgba(255,255,255,0.1);
}

.headerbar li:first-child a,
.footer-band a {
  padding-top: 5px;
}

.headerbar li:first-child a img {
  max-height: 50px;
  max-width: 90%;
}

@media all and (max-width: 575px) {
  .headerbar li:first-child {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(calc(-50% + 30px), -50%);
  }

  .headerbar li:first-child a {
    margin-left: auto;
    margin-right: auto;
    width: 340px;
  }

  .headerbar li {
    display: block;
    float: none;
    margin: auto;
  }

  .headerbar li:first-child a img {
    left: 50%;
    max-width: calc(100vw - 100px);
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
  }
}

@media all and (max-width: 400px) {
  .headerbar li:first-child a {
    width: calc(100vw - 58px);
    box-sizing: border-box;
  }
}

/* MENU */

/* control */
input.menu {
  cursor: pointer;
  left: -3px;
  position: fixed;
  opacity: 0;
  top: -3px;
  z-index: 12;
}

input.menu:after {
  content: "";
  cursor: pointer;
  height: 60px;
  width: 60px;
  position: fixed;
  z-index: 12;
}

input.menu + label {
  border-right: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  cursor: pointer;
  font-size: 34px;
  line-height: 60px;
  position: fixed;
  text-align: center;
  width: 58px;
  z-index: 11;
}

@supports(padding: max(0px)) {
  input.menu:after,
  input.menu + label {
    padding-left: max(1px, env(safe-area-inset-left));
  }
}

input.menu:checked {
}

input.menu:checked:after,
input.menu:checked ~ label {
  background: rgba(0,0,0,0.9);
  border: none;
  position: fixed;
  width: 275px;
}

input.menu:checked ~ label {
  font-size: 0;
}

input.menu:checked ~ label:after {
  content: "×";
  font-size: 34px;
}

input.menu:checked ~ ul.headerbar {
  background: rgba(0,0,0,0.9);
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  height: 100%;
  width: 275px;
  overflow: scroll;
  padding: 60px 0 0;
  position: fixed;
}

@supports(padding: max(0px)) {
  input.menu:checked ~ ul.headerbar {
    padding-left: max(1px, env(safe-area-inset-left));
    width: max(calc(275px + env(safe-area-inset-left)));
  }
}

input.menu:checked ~ ul.headerbar li {
  display: list-item;
  float: none;
  height: auto;
  margin: 0;
  text-align: left;
}

input.menu:checked ~ ul.headerbar li a {
  box-sizing: border-box;
  line-height: 20px;
  margin: 0;
  padding: 20px;
}

input.menu:checked ~ ul.headerbar li:first-child {
  display: none;
}

/* overlay */
input.menu:checked ~ label:before {
  background: rgba(0,0,0,0.5);
  -ms-backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  -o-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  content: "";
  cursor: pointer;
  height: 100vh;
  left: 275px;
  position: absolute;
  top: 0;
  width: calc(100vw - 275px);
}

@supports(padding: max(0px)) {
  input.menu:checked:before,
  input.menu:checked ~ label:before {
    left: max(calc(275px + env(safe-area-inset-left)));
  }
}

@media all and (max-width: 600px) {
  input.menu:not(:checked) ~ ul.headerbar li:nth-child(n+2) {
    display: none;
  }
}

/* FOOTER */

.footer {
  background-color: #12163f;
  box-sizing: border-box;
  display: inline-block;
  margin: 0px;
  padding: 0px 25px 25px;
  width: 100%;
}

.footer,
.footer p,
.footer a {
  color: #fff;
  text-decoration:none;
}

.footer a:hover {
  background-color: rgba(255,255,255,0.15);
}

.footer-links {
  display: inline-block;
  width: 100%;
}

.footer ul {
  float: left;
  padding-left: 0px;
  width: 33%;
}

.footer ul:first-child {
  text-align: right;
}

.footer ul:nth-child(2) {
  padding: 0px 4%;
  text-align: center;
  width: 25%;
}

.footer ul:nth-child(3) {
  text-align: left;
}

.footer ul p {
  font-weight: bold;
}

.footer li {
  list-style:none;
  box-sizing:border-box;
}

.footer .footer-links a {
  display: inline-block;
  padding: 3px 5px;
}

.footer-logos {
  float: left;
}

.footer-logos a:hover {
  background: none;
}

.footer-logos img {
  height: 100px;
  padding-right: 10px;
}

.footer-contact {
  display: inline-block;
  float: right;
  height: 100px;
  position: relative;
}

.footer-contact p {
  margin: 0px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.footer-contact a {
  padding: 3px 5px;
}

.footer-band {
  background-color: #c61f26;
  background-image:url(../images/flagblur.jpg);
  background-position: center center;
  background-size: cover;
  box-sizing: border-box;
  height: 75px;
  margin: 15px -25px 0px;
  padding: 5px;
  text-align:center;
  text-shadow: 0px 0px 10px #000;
  width: 100vw;
}

.footer-band a {
  display: block;
  margin: 0 auto;
}

.footer-band a:hover {
  background: none;
}

.footer-band a img {
  max-height: 55px;
  max-width: 90%;
}

@media all and (max-width: 850px) {
  .footer ul:first-child,
  .footer ul:nth-child(2),
  .footer ul:nth-child(3) {
    text-align: left;
  }

  .footer-band {
    clear: both;
    display:inline-block;
    margin: 20px -25px 0px;
  }
}

@media all and (max-width: 700px) {
  .footer ul,
  .footer ul:nth-child(2) {
    border-bottom: 1px solid #fff;
    margin: 0px 0px 5px;
    padding: 0px 0px 15px;
    width: 100%;
  }
}

@media all and (max-width: 480px) {
  .footer-logos img {
    height: 75px;
  }

  .footer-logos,
  .footer-contact {
    display: block;
    height: 75px;
    float: left;
    padding-top: 15px;
  }

  .footer-band a {
    width: 100%;
  }
}

@supports(padding: max(0px)) {
  .footer .socials,
  .footer-links,
  .footer-logos,
  .footer-contact {
    padding-left: max(env(safe-area-inset-left));
    padding-right: max(env(safe-area-inset-right));
  }
}

/* SOCIALS */

.socials {
  display: block;
  font-size: 32px;
  margin-left: auto;
  margin-right: auto;
  max-width: 525px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.socials,
.socials a {
  color: #fff;
}

.socials a {
  display: inline-block;
  margin-bottom: 5px;
  margin-top: 20px;
  padding: 5px 10px;
  text-decoration: none;
}

/* PAGE SHARE BUTTONS */

.social-share {
  float: right;
  padding: 5px 0px 0px 15px;
}

.ie .social-share .twitter-share-button {
  padding-bottom: 5px;
}

/* chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  .social-share .twitter-share-button {
    padding-bottom: 1px;
  }
}

@media all and (max-width: 480px) {
  .social-share {
    float: none;
    padding: 10px 0px 0px;
  }
}

/* FEATURE BLOCKS */

.feature-blocks {
  box-sizing:border-box;
  display: flex;
  flex-wrap: wrap;
}

.feature-blocks > li {
  align-items: flex-end;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0px 0px 10vw 0px rgba(0,0,0,0.25);
  box-sizing:border-box;
  display: flex;
  flex: 1 1 50%;
  height: auto;
  list-style: none;
  min-height: 33vw;
  position: relative;
  transition: 0.25s;
  z-index: 1;
}

@supports(padding: max(0px)) {
  .feature-blocks > li {
    padding-left: max(env(safe-area-inset-left));
    padding-right: max(env(safe-area-inset-right));
  }
}

.feature-blocks > li:first-of-type {
  flex: 1 1 100%;
  height: auto;
  min-height: calc(45vw + 75px);
}

.feature-blocks > li a {
  display: table;
  margin: 25px;
  text-decoration: none;
}

.feature-blocks > li:first-of-type a,
.feature-blocks > li:last-of-type:nth-of-type(even) a {
  margin: 100px 25px 25px;
}

.feature-blocks li a:after {
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: 0.2s;
  width: 100%;
  z-index: -1;
}

.feature-blocks li a:hover:after {
  background: rgba(0,0,0,0.2);
}

.feature-blocks > li .featured-block {
  display: flex;
  flex-flow: column wrap;
}

.feature-blocks > li:first-of-type .featured-block {
  max-width: 66vw;
}

.featured-block > span {
  margin: 25px 0 0;
}

.feature-blocks h1 {
  background: rgba(0,0,0,0.75);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: #fff;
  display: inline;
  font-size: 3vw;
  line-height: 4vw;
  margin: 0;
  padding: 0.1vw 1vw;
}

.feature-blocks h1 ~ h1 {
  margin-top: 0.5vw;
}

.feature-blocks p {
  background: rgba(0,0,0,0.75);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: #fff;
  display: inline;
  font-size: 1.5vw;
  line-height: 170%;
  margin: 2.5vw 0 0;
  max-width: 350px;
  padding: 0.25vw 1vw;
}

.feature-blocks table {
  background: rgba(0,0,0,0.75);
  color: #fff;
  margin: 2.5vw 0 0;
  max-width: 350px;
  padding: 0.25vw 1vw;
}

.feature-blocks table td {
  color: #fff;
}

.feature-blocks table td:first-of-type {
  padding-right: 0px;
  text-align: right;
  white-space: pre;
}

.feature-blocks table td:last-of-type {
  font-weight: bold;
}

.feature-blocks > li:first-of-type h1 {
  font-size: 5vw;
  line-height: 6.5vw;
}

.feature-blocks > li:first-of-type p {
  display: inline;
  font-size: 2vw;
  line-height: 165%;
  max-width: 33vw;
}

.feature-blocks > li:first-of-type table {
  font-size: 2vw;
  max-width: 33vw;
}

.feature-blocks li a:hover h1,
.feature-blocks li a:hover p {
  background: rgba(0,0,0,0.9);
}

.feature-blocks > li:nth-of-type(3n) {
  background-color: #696f65;
}

.feature-blocks > li:nth-of-type(3n+1) {
  background-color: #a29b89;
}

.feature-blocks > li:nth-of-type(3n+2) {
  background-color: #838378;
}

.feature-blocks > li:last-of-type:nth-of-type(even) {
  width: 100%;
  height: auto;
  padding-bottom: 0px;
}

.feature-blocks .darker {
  background: rgba(0,0,0,0.25);
}

/* backdrop blur */
@supports ( (-ms-backdrop-filter: blur(5px)) or (-webkit-backdrop-filter: blur(5px)) or (-o-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px)) ) {
  .featured-block > span {
    margin: 0;
  }

  .feature-blocks h1,
  .feature-blocks p,
  .feature-blocks table,
  .feature-blocks ul {
    background: rgba(0,0,0,0.5);
    -ms-backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    -o-backdrop-filter: blur(15px) saturate(150%);
    backdrop-filter: blur(15px) saturate(150%);
  }

  .feature-blocks h1 {
    display: inline-block;
    line-height: 3.5vw;
  }

  .feature-blocks > li:first-of-type h1 {
    font-size: 5vw;
    line-height: 5.5vw;
  }

  .feature-blocks p {
    display: inline-block !important;
    line-height: 150%;
    padding: 1vw;
  }

  .feature-blocks li a:hover:after {
    -ms-backdrop-filter: blur(5px) brightness(85%);
    -webkit-backdrop-filter: blur(5px) brightness(85%);
    -o-backdrop-filter: blur(5px) brightness(85%);
    backdrop-filter: blur(5px) brightness(85%);
  }

  .feature-blocks li a:hover h1,
  .feature-blocks li a:hover p {
    background: rgba(0,0,0,0.5);
  }
}

@media all and (max-width: 1024px) {
  .feature-blocks p,
  .feature-blocks table,
  .feature-blocks li:first-of-type p,
  .feature-blocks li:first-of-type table  {
    font-size: 18px;
  }
}

@media all and (max-width: 768px) {
  .feature-blocks h1 {
    font-size: 4vw;
    line-height: 4.5vw;
  }

  .feature-blocks li {
    flex: 1 1 100%;
    height: auto;
    padding-bottom: 0px;
  }

  .feature-blocks li:first-child {
    height: auto;
    min-height: 75vw;
    padding-bottom: 0;
  }

  .feature-blocks li:first-child p,
  .feature-blocks li:first-child table {
    font-size: 20px;
    max-width: inherit;
  }

  .feature-blocks li .featured-block,
  .feature-blocks li:last-child:nth-child(even) .featured-block {
    margin: 25px;
    position: initial;
  }
}

@media all and (max-width: 480px) {
  .feature-blocks h1 {
    font-size: 24px;
    line-height: 30px;
    padding: 5px 10px;
  }

  .feature-blocks p {
    padding: 2px 10px;
  }

  .feature-blocks li {
  }

  .feature-blocks li:first-child h1 {
    font-size: 36px;
    line-height: 48px;
    padding: 2px 10px;
  }

  .feature-blocks li:first-child .featured-block {
    margin: 100px 25px 25px;
    position: initial;
    width: auto;
  }
}

/* ARTICLES */

.article {
  box-sizing: border-box;
}

.headline {
  background-image: url('/images/flagblur.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.headline img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.headline div {
  margin: 75px auto 25px;
  max-width: 974px;
  position: relative;
  z-index: 2;
}

.no-image-article .headline div {
  background-image: none;
}

.no-image-article .headline h1 {
  background: rgba(0,0,0,0.9);
}

.big-image-article .headline div,
.gallery-article .headline div {
  margin: 350px auto 25px;
}

.small-image-article .headline div {
  margin: 75px auto 25px;
}

.headline h1 {
  background: rgba(0,0,0,0.75);
  font-size: 40px;
  line-height: 54px;
  margin: 0px 10px;
}

@supports ( (-ms-backdrop-filter: blur(5px)) or (-webkit-backdrop-filter: blur(5px)) or (-o-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px)) ) {
  .headline h1 {
    background: rgba(0,0,0,0.5);
    -ms-backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    -o-backdrop-filter: blur(15px) saturate(150%);
    backdrop-filter: blur(15px) saturate(150%);
    display: inline-block;
    padding: 5px 10px;
  }
}

article h1,
article h2,
article h3,
article h4 {
  display: table;
}

.article h1 {
  display: inline;
  padding: 2px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

article p,
article li,
article table {
  font-size: 18px;
  line-height: 1.5;
}

.article p.disclaimer {
  font-size: 12px;
  font-style: italic;
}

article p {
  position: relative;
}

@media (min-width: 480px) {
  article p > i {
    position: absolute;
    right: calc(100% + 8px);
    top: 3px;
  }
}

.author {
  font-size: 14px;
}

article img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  padding: 5px 0px;
  width: 100%;
}

article img.portrait {
  max-height: 600px;
  width:auto;
}

ul.army-links {
  padding-left: 15px;
}

.army-links li {
  margin-bottom: 10px;
}

@media all and (max-width: 1024px) {
  .no-image-article .headline h1 {
    background: rgba(0,0,0,0.9);
  }

  .headline div {
    margin-left: 25px;
    margin-right: 25px;
  }
}

@media all and (max-width: 480px) {
  .headline div {
    margin-left: 5px;
    margin-right: 5px;
  }

  .headline h1 {
    font-size: 32px;
    line-height: 44px;
  }

  .big-image-article .headline div,
  .gallery-article .headline div {
    margin: 200px 5px 25px;
  }
}

@supports(padding: max(0px)) {
  .headline div {
    padding-left: max(env(safe-area-inset-left));
    padding-right: max(env(safe-area-inset-right));
  }

  article {
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }
}

/* IMAGES */

.center-logo {
  margin: 25px auto;
  max-width: 75%;
  width: auto;
}

@media (prefers-color-scheme: dark) {
  .dark-logo {
    filter: invert(1);
  }
}

.float-left {
  float: left;
  margin: 10px 20px 10px 0px;
  max-width: 50%;
  width: auto;
}

.float-right {
  float: right;
  margin: 10px 0px 10px 20px;
  max-width: 50%;
  width: auto;
}

.twothirds {
  max-width: 66%;
}

.onethird {
  max-width: 33%;
}

.onequarter {
  max-width: 25%;
}

.mobile-wide {
}

.rightimageblock {
  clear: both;
  display: inline-block;
}

.float-right ~ h1,
.float-right ~ h2,
.float-right ~ h3,
.float-right ~ h4,
.float-left ~ h1,
.float-left ~ h2,
.float-left ~ h3,
.float-left ~ h4,
.rightimageblock h4 {
  clear: both;
  display:table;
}

.ie7 .rightimageblock h4,
.ie8 .rightimageblock h4,
.ie9 .rightimageblock h4 {
  display: inline-block;
  margin-top: 10px;
}

.rightimageblock img {
  float: right;
  margin: 10px 0px 10px 10px;
  max-width: 250px;
  width: 25%;
}

@media all and (max-width: 1024px) {
  .rightimageblock img {
    width: 33%;
  }
}

@media all and (max-width: 768px) {
  .mobile-wide {
    max-width: 66%
  }
}

@media all and (max-width: 480px) {
  article img.portrait {
    height: auto;
    max-height: 100%;
    width: 100%;
  }

  .mobile-wide {
    float: none;
    margin: 0px auto;
    max-width: 100%
  }

  .rightimageblock img {
    width: 50%;
  }
}

/* EMBEDS */

.instagram-media {
  margin: 0 auto !important;
}

/* TABLES */

.schedule {
}

.schedule tr:hover {
  background-color: rgba(0,0,0,0.1);
}

.schedule td {
  border-bottom: 1px solid #3D3D3D;
  vertical-align: top;
}

.schedule tr:last-child td {
  border-bottom: 0px;
}

.schedule tr td:nth-child(3) {
  font-weight: bold;
}

.schedule tr td:last-child {
  min-width: 200px;
}

.schedule tr td:nth-child(-n+3) {
  white-space: nowrap;
}

.schedule tr td:nth-child(4) a {
  display: block;
  max-width: 400px;
}

@media all and (max-width: 700px) {
  .schedule {
    position: relative;
  }

  .schedule tr {
    display: flex;
    flex-flow: row wrap;
  }

  .schedule tr td:nth-child(-n+3) {
    border: none;
    padding-bottom: 0;
  }

  .schedule tr td {
    box-sizing: border-box;
    display: inline-block;
  }

  .schedule tr td:nth-child(1) {
    flex: 0 0 190px;
    padding-left: 0;
  }

  .schedule tr td:nth-child(2) {
    flex: 0 0 100px;
  }

  .schedule tr td:nth-child(3) {
    flex: 0 0 auto;
    margin-left: auto;
    padding-right: 0;
    text-align: right;
  }

  .schedule tr td:nth-child(4) {
    flex: 1 1 100%;
    padding: 5px 0 10px;
    text-align: right;
  }

  .schedule tr td:nth-child(4) a {
    float: right;
  }
}

@media (max-width: 550px) {
  .schedule tr td:nth-child(3),
  .schedule tr td:nth-child(4) {
    flex: 1 1 100%;
    line-height: 1.2;
    padding: 5px 0;
    text-align: left;
  }

  .schedule tr td:nth-child(4) a {
    float: none;
  }
}

/* COLUMNS */

.columns {
	column-gap: 25px;
	margin: 0 0 25px;
}
.columns-2 {
	column-width: 400px;
}
.columns-3 {
	column-width: 300px;
}
.columns-4 {
	column-width: 200px;
}

.columns div {
	break-inside: avoid;
	display: block;
	padding: 25px 0 0;
}
.columns h3,
.columns p {
	margin: 0;
}


/* CONTACT BOX */

.contact-map {
  min-height: 470px;
}

.contact-map + p {
  clear:both;
}

.contact-alumni #contactForm {
  float: right;
}

.contact-map #contactForm {
  float: left;
}

#contactForm {
  margin: 0px auto;
  transition: 0.25s;
  width: 50%;
}

#contactForm fieldset {
  border: 0px;
  padding: 0px 10px;
}

#contactForm label {
  display: block;
}

#contactForm input,
#contactForm textarea {
  background-color: #eee;
  border: 1px solid #555;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 5px 0px 0px;
  padding: 5px;
  min-height: 25px;
  transition: 0.25s;
  width: 100%;
}

#contactForm input:hover,
#contactForm textarea:hover {
  background-color: #fff;
}

@media (prefers-color-scheme: dark) {
  #contactForm input,
  #contactForm input:hover,
  #contactForm textarea,
  #contactForm textarea:hover {
    background: #222;
    border-color: #000;
    color: #eee;
  }
}

#contactForm input[type="radio"] {
  margin-right: 5px;
  vertical-align: 2px;
  width:auto;
}

#contactForm fieldset p:last-child {
  text-align: center;
}

#contactForm #submit {
  background: #EEE; /* Old browsers */
  background: linear-gradient(to bottom,  #EEE 0%,#CCC 100%);
  font-size: 16px;
  height: 43px;
  padding: 0px;
  cursor: pointer;
  transition: 0.1s;
  width: 110px;
}

@media (prefers-color-scheme: dark) {
  #contactForm #submit {
    background: linear-gradient(to bottom, #444, #111);
  }
}

#contactForm #submit:hover {
  background: #CCC; /* Old browsers */
  background: linear-gradient(to bottom,  #CCC 0%,#EEE 100%);
  box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  #contactForm #submit:hover {
    background: linear-gradient(to bottom, #111, #333);
  }
}


#contactForm #error,
#success {
  border-radius: 5px;
  box-shadow:  0px 0px 5px 0px rgba(0,0,0,0.5);
  margin: 0px auto;
  padding: 10px;
  text-align: center;
  transition: 0.25s;
}

#contactForm #error {
  background: #c00;
  color: #fff;
  width: 150px;
}

#success {
  background: #eee;
  border: 1px solid #bbb;
  clear: both;
  max-width: 400px;
}

.address {
  background-color: rgba(0,0,0,0.05);
  display: inline-block;
  margin: 0px 20px 20px;
  padding: 0.1px 20px;
}

.contactblock #contactForm {
  float: right;
  margin: 0px auto;
  position: relative;
  transition: 0.25s;
  width: 50%;
  z-index: 1;
}

.contacttext {
  float:left;
  width: 50%;
}

.alumnitext .totheright,
.contacttext .totheright {
  display: inline;
}

.alumnitext .tothebelow,
.contacttext .tothebelow {
  display: none;
}

@media all and (max-width: 768px) {
  .contact-alumni #contactForm,
  .contact-map #contactForm {
    float: none;
  }

  #contactForm {
    max-width: 500px;
    width: auto;
  }

  .contactblock #contactForm {
    float: none;
    width: auto;
  }

  #contactForm fieldset {
    padding: 0px;
  }

  .contacttext {
    float: none;
    width: auto;
  }

  .alumnitext .totheright,
  .contacttext .totheright {
    display: none;
  }

  .alumnitext .tothebelow,
  .contacttext .tothebelow {
    display: inline;
  }
}

@media all and (max-width: 480px) {
  .address {
    display: block;
  }
}

/* MAPS */

.map-wide {
  height: 0;
  overflow: hidden;
  padding-bottom: 75%;
  position: relative;
  transition: 0.25s;
}

.map-wide iframe {
  left: 0;
  position: absolute;
  top: 0;
  width: 100% !important;
  height: 100% !important;
}

.contact-page .maps-wide{
  float: right;
  width: 50%;
}

@media all and (max-width: 768px) {
  .contact-page .maps-wide{
    float: none;
    width: 100%;
  }
}

/* VIDEO */

.video-frame {
  padding-bottom: 56.25%;
  height: 0;
  margin: 25px auto;
  position: relative;
  width: 100%;
}

.video-frame iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width:100%;
}

.feature-block--video {
  background-image: url(http://122ndarmyband.com/images/flagblur.jpg) !important;
}

.feature-blocks .feature-block--video:first-child {
  min-height: 0;
}

.feature-block--video:first-of-type .video-frame {
  margin: 50px 0 0;
}

.feature-block--video .video-frame {
  margin: 0;
}

@media (min-width: 768px) {
  .feature-block--video .video-frame {
    height: 100%;
    padding: 0;
  }

  .feature-block--video:first-of-type .video-frame,
  .feature-block--video:last-of-type:nth-of-type(even) .video-frame {
    height: 0;
    padding-bottom: 56.25%;
  }
}

/* GUARD VALUES */

.values {
  display: inline-block;
}

.values div {
  float: left;
  padding: 0 1%;
  width: 31%;
}

.values div:nth-child(4) {
  clear: both;
}

.values ul {
  padding-left: 15px;
  padding-right: 15px;
}

.values li {
  list-style:disc;
}

@media all and (max-width: 768px) {
  .values div {
    width: 48%;
  }

  .values div:nth-child(4) {
    clear: none;
  }
}

@media all and (max-width: 480px) {
  .values div {
    padding: 0;
    width: 100%;
  }
}

/* ALUMNI */

@media (min-width: 769px) {
  .alumnitext {
    float: left;
    width: calc(50% - 20px);
    margin-right: 20px;
  }
}

.alumni-logos {
  padding-bottom: 10px;
  margin-left: 5%;
  width: 40%;
}

@media all and (max-width: 768px) {
  .alumnitext {
    float: none;
    width: auto;
  }

  
  .alumni-logos {
    margin-left: auto;
    width: 66%;
  }
}

@media all and (max-width: 480px) {
  .alumni-logos {
    width: 90%
  }
}

/* NEWS */

.news article a {
  display: block;
  font-size: 22px;
}

.news article p:nth-child(odd) {
  margin: 25px 0 10px;
}

.news article p:nth-child(even) {
  margin: 10px 0 25px;
}

/* GALLERY */

.promos h1,
.promos h2,
.promos h3,
.promos h4 {
  background: none;
  box-shadow: none;
  color: #3D3D3D;
  display: block;
  font-family: 'optima', Optima, Candara, Calibri, Arial, sans-serif;
  font-weight: bold;
  line-height: normal;
  margin: 0px;
  padding: 0px;
}

@media (prefers-color-scheme: dark) {
  .promos h1,
  .promos h2,
  .promos h3,
  .promos h4 {
    color: #eee;
  }
}

.promos a {
  background-position: center-center;
  background-size: cover;
}

/* legacy images */

.threewide-header,
.threewide-images {
  clear: both;
  display: block;
  overflow: auto;
}

.threewide-header div,
.threewide-images a {
  background: #ccc;
  background-position: center center;
  background-size: cover;
  box-sizing: border-box;
  float: left;
  height: 0px;
  margin: 1%;
  position: relative;
  text-decoration: none;
  width: 31%;
}

.threewide-header div {
  padding: 5px 5px 30%;
}

.threewide-header div:hover,
.threewide-images a:hover {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.threewide-header div a {
  display: block;
  height: 100%;
  position: absolute;
  text-decoration: none;
  width: 100%;
}

.threewide-header div a p {
  background: rgba(0,0,0,0.75);
  bottom: 0;
  color: #fff;
  font-family: 'optima', Optima, Candara, Calibri, Arial, sans-serif;
  font-size: 24px;
  margin: 10px 20px 20px 10px;
  padding: 5px;
  position: absolute;
  text-decoration: none;
}

.threewide-images a {
  padding-bottom: 31%;
}

@media all and (max-width: 600px) {
  .threewide-header {
    overflow: hidden;
  }

  .threewide-header div {
    box-sizing: content-box;
    float: none;
    height: 60px;
    overflow: hidden;
    padding: 5px;
    width: 100%;
  }
}

/* new images */

div.images {
  font-size: 0;
  margin: 25px 0;
}

div.images > div,
div.images > a {
  background-position: center center;
  background-size: cover;
  box-sizing: border-box;
  display: inline-block;
  margin: 0 5px 10px;
  position: relative;
}

div.images a:hover {
  background-color: rgb(125 125 125 / 0.75);
  box-shadow: 0px 10px 15px 0px rgb(0 0 0 / 0.5);
  transform: translate(0,-2px);
}

div.images.download-jpg {
}

div.images .download-options {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: flex;
}

.download-options a.download-jpg,
.download-options a.download-png,
.download-options a.download-svg {
  background: rgb(125 125 125 / 0.5);
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 12px;
  height: auto;
  line-height: 1.5;
  margin-left: 5px;
  padding: 3px 5px 8px;
  text-align: center;
  text-decoration: none;
  width: auto;
  z-index: 1;
}

.download-options a.download-jpg i,
.download-options a.download-png i,
.download-options a.download-svg i {
  display: block;
}

/* 1-wide */

div.images > a:only-child,
div.images > div:only-child {
  padding-bottom: 66%;
  width: 100%;
}

/* 2-wide */
div.images > a:nth-last-of-type(n+2),
div.images > a:nth-last-of-type(n+2) ~ a,
div.images > div:nth-last-of-type(n+2),
div.images > div:nth-last-of-type(n+2) ~ div {
  padding-bottom: calc(50% - 10px);
  width: calc(50% - 10px);
}

/* 3-wide */
div.images > a:nth-of-type(odd):nth-last-of-type(3n),
div.images > a:nth-of-type(odd):nth-last-of-type(3n) ~ a,
div.images > div:nth-of-type(odd):nth-last-of-type(3n),
div.images > div:nth-of-type(odd):nth-last-of-type(3n) ~ div {
  padding-bottom: calc(100% / 3 - 10px);
  width: calc(100% / 3 - 10px);
}

/* lightbox */

div.images.lightbox {
  display: grid;
  grid-auto-rows: 1fr;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  position: relative;
}

div.images input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

div.images.lightbox label {
  cursor: pointer;
}

div.images.lightbox label img { /* lightbox thumb */
  height: 100%;
  margin: 0;
  object-fit: cover;
  padding: 0;
  width: 100%;
}

div.images.lightbox img.fullsize { /* lightbox image */
  display: none;
  left: 50%;
  max-height: calc(100vh - 20px);
  max-width: calc(100vw - 20px);
  object-fit: contain;
  position: fixed;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 101;
}

div.images.lightbox input:checked + label:before { /* lightbox background */
  background: rgba(0,0,0,0.9);
  bottom: 0;
  content: "";
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

@supports ( (-ms-backdrop-filter: blur(5px)) or (-webkit-backdrop-filter: blur(5px)) or (-o-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px)) ) {
  div.images.lightbox input:checked + label:before {
    background: rgba(0,0,0,0.75);
    -ms-backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    -o-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
  }
}

div.images.lightbox input:checked + label:after { /* lightbox close button */
  color: #fff;
  content: "×";
  display: block;
  font-size: 50px;
  height: 20px;
  position: fixed;
  right: 25px;
  top: 0;
  text-shadow: 0 0 10px #000;
  width: 20px;
  z-index: 102;
}

div.images.lightbox input:checked + label + img.fullsize { /* lightbox image */
  display: block;
}


/* Text */

div.images a div,
div.images a span {
  background: rgba(0,0,0,0.5);
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  padding: 10px;
  position: absolute;
  text-align: center;
  width: 100%;
}

/* PROGRAM NOTES */

.programnotes h3 {
  background: none;
  box-shadow: none;
  color: inherit;
  line-height: initial;
  margin: 25px 0 0;
  padding: 0;
}

.programnotes h3 + p {
  margin-top: -5px;
}

/* EVENT PAGE */

.event {
}

.event-info {
  text-align: center;
}

.event-info .date {
  font-size: 24px;
}

.event-info .venue {
  font-size: 32px;
}

.event-info .date,
.event-info .venue,
.event-info .event-address {
  line-height: 1;
  margin: 5px 0;
}

.event iframe {
  float: right;
  margin-left: 20px;
  width: calc(100% - 370px);
}

.event img.poster {
  height: 450px;
  margin-bottom: 10px;
  padding:0;
  width: auto;
}

@media all and (max-width: 900px) {
  .event iframe {
    float: none;
    margin-left: 0;
    width: 100%;
  }

  .event img.poster {
    height: auto;
    max-width: 600px;
    padding: 5px 0;
    width: 100%;
  }
}