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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #19291b;
}

h2 {
 font-weight: normal;
  text-align: center;
  font-size: 36px;
  padding: 40px 0;

}

h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom:  30px;
}

/*.the-old-switcheroo {
  display: flex;
  flex-direction:  column;
}

.the-old-switcheroo *:nth-child(1) {
  order: 2;
}

.the-old-switcheroo *:nth-child(2) {
  order: 1;
}*/


.main {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #19291b;
  background-image: url('images/splash.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 100;
}

.splash.hide {
  opacity: 0;
  transform: translateY(-100vh);
  transition: all 0.4s;
}

.splash .enter {
  font-size: 1.6vw;
  text-align: center;
  margin: 2vw;
  letter-spacing: 0.2vw;
  cursor: pointer;
  transition: all 0.25s;
}

.splash .enter:hover {
  transform: scale(1.1);
}

.splash img {
  width: 30vw;
}

.nav {
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav .logo {
  height: 3vw;
}

.nav .emblem {
  height: 3.5vw;
}

.hero {
  width: 100%;
  margin-bottom: 30px;
}

.media {
  background: #F2F2F2;
}

.about {
  padding-bottom:  90px;
}

.grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.cell {
  margin-bottom: 30px;
  flex-basis: calc(50% - 20px);
}

.cell .embed {
  position: relative;
  width: 100%;
  padding-top: 56%;
  margin-bottom: 10px;
}

.cell .date {
  color: #777;
  font-weight: 600;
}

.cell .title {
  color: #777;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 5px;
}

.cell .desc {
  color: #444;
  line-height: 120%;
}

.cell iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  filter: grayscale(100%);
  transition: filter 0.4s;
}

.cell iframe:hover {
  filter: grayscale(0%);
}

.contact {
  background: #19291b;
  color: white;
  padding-bottom: 50px;
}

.form-row {
  margin-bottom: 10px;
}

.form-row.flex {
  display: flex;
  justify-content: space-between;
}

.form-cell {
  flex-basis: calc(50% - 30px);
}

.form-row.center {
  text-align: center;
}

button {
  display: inline-block;
  padding: 12px 60px;
  border: 1px solid white;
  background: none;
  color: white;
  font-size: 24px;
  letter-spacing: 1px;
}

label {
  font-size: 24px;
  display: block;
  margin-bottom: 5px;
}

input[type="text"] {
  border: 1px solid rgba(255,255,255,0.5);
  background: none;
  width: 100%;
  padding: 10px 4px;
  font-size: 22px;
  color: white;
}

textarea {
  display: block;
  border: 1px solid rgba(255,255,255,0.5);
  background: none;
  width: 100%;
  padding: 10px 4px;
  font-size: 22px;
  color: white;
  margin-bottom: 40px;
}

.footer img {
  margin: 60px auto;
  width: 100px;
  opacity: 0.5;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #19291b;
  z-index: 100;
}

.menu.hide {
  display: none;
}

.menu .nav {
  color: white;
}

.flex-v {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3vw;
}

.menu-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-container li {
  text-align: center;
  margin: 2vw;
}

.menu-container a {
  text-decoration: none;
  color: white;
}

.open-menu,
.close-menu {
  cursor: pointer;
}

.back-to-top {
  float: right;
  width:  70px;
  transform: translateY(-69px);
}

@media (max-width: 750px) {
  .cell {
    flex-basis: 100%;
  }

  .form-row.flex {
    display: block;
  }

  .form-cell {
    flex-basis: 100%;
  }

  .menu-container {
    font-size: 6vw;
  }

  .nav .logo,
  .nav .emblem {
    height: 10vw;
  }

  .splash img {
    width: 60vw;
  }

  .splash .enter {
    font-size: 7vw;
  }

  button {
    font-size: 15px;
  }

  .back-to-top {
    width:  50px;
    transform: translateY(-55px);
  }
}

