/* Some util stuff */
.cf {
  clear:both;
  width:100%;
  display:block;
}
.mobile-only {
  display:none;
}
img {
  width:100%;
  max-width:100%;
}
html.noscroll {
  overflow:hidden;
  max-height:100vh;
}

.bg-cover {
  background-size:cover;
  background-position:50% 50%;
  background-repeat:no-repeat;
}
.bg-contain {
  background-size:contain;
  background-position:50% 50%;
  background-repeat:no-repeat;
}
.text-center {
	text-align:center;
}


.terms {
  display:flex;
  align-items:center;
  margin-bottom:20px;
  color:var(--color-lt-gray);
}
.terms input {
  display:inline-block;
  width:12px;
  height:12px;
  margin-right:12px;
  padding:8px;
  margin-bottom:0;
  -webkit-appearance:none;
  border:1px solid var(--color-lt-gray);
  cursor:pointer;
  background:transparent;
  position:relative;
  display:flex;
  justify-content: center;
  align-items:center;
}
.terms input:checked:after {
  display:block;
  content:'×';
  line-height: 2px;
  height: 100%;
}
.terms label {
  display:inline-block;
  font-size:12px;
  width:100%;
}
.terms label a {
  text-decoration:underline;
}


form .post-submit {
  display:none;
}
form .pre-submit {
  display:block;
}
form.after .post-submit {
  display:block;
}
form.after .pre-submit {
  display:none;
}

.full-screen {
  height:100vh;
  width:100%;
  position:relative;
}
.full-screen:after {
  content:' ';
  display:block;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:black;
  opacity:0.3;
  z-index:-1;
}
.full-screen a {
  font-weight:800;
}
.full-screen .bg-video {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  z-index:0;
  display:flex;
  background:black;
}
.full-screen .bg-video video {
  min-width: 100vw;
  min-height: 100vh;
  flex: 1 1 auto;
  object-fit: cover;
  transition: opacity 0.8s ease;
  z-index: 1;
  position: relative;
}
.container {
  padding:0 60px;
  position:relative;
  max-width:1400px;
  z-index:1;
  margin:0 auto;
}
.container.pad-none {
  padding:0;
}
.container.inner {
  padding:0 120px;
}
.text-container {
  max-width:800px;
  margin:0 auto;
  padding:0 30px;
}
.pad {
	padding:40px;
}


.pad.vertical {
  padding-left:0;
  padding-right:0;
  padding-top: 40px;
  padding-bottom: 40px;
}
.pad.horizontal {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 40px;
  padding-left: 40px;
}
.pad.bottom {
  padding: 0 0 30px 0;
}
.pad.less {
	padding:30px;
}
.pad.extra {
	padding:60px;
}
.pad.more {
	padding:120px;
}
.forceCaps {
  text-transform: uppercase;
}





/* Define other global UI elements here */
.button {
	border-width:1px;
	border-style:solid;
	cursor:pointer;
	padding:10px 28px;
	display:inline-block;
  position:relative;
  z-index:1;
  text-decoration:none;
  border-color:var(--color-gold);
  color:var(--color-white);
  background-color:var(--color-gold);
  text-transform: uppercase;
  font-family: "GrosaBold", serif;
  font-size: 3px;
}








/* Container widths, etc */

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}
.grid.margins {
  margin-top:1em;
  margin-bottom:1em;
}
.grid.seamless {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
  height:100%;
}
.grid .span-1 {
  grid-column: span 1;
}
.grid .span-2 {
  grid-column: span 2;
}
.grid .span-3 {
  grid-column: span 3;
}
.grid .span-4 {
  grid-column: span 4;
}
.grid .span-6 {
  grid-column: span 6;
}
.grid .span-8 {
  grid-column: span 8;
}
.grid .span-10 {
  grid-column: span 10;
}
.grid .span-12 {
  grid-column: span 12;
}
.grid > div {
  position:relative;
  z-index:1;
}
.grid > .image {

}
.grid .ratio-5-9 {
  padding-bottom:180%;
}
.grid .ratio-5-7 {
  padding-bottom:140%;
}
.grid .ratio-1-1 {
  padding-bottom:100%;
}
.grid > div .content {

}
.grid > div .content.bottom {
  position:absolute;
  bottom:0;
}


.flex {
	display:flex;
  flex-wrap:wrap;
}
.flex.nowrap {
  display: flex;
  flex-wrap: nowrap;
}
.flex.full {
  height:100%;
  width:100%;
}
.flex.center {
	align-items:center;
  justify-content:center;
}
.flex.between {
	align-items:center;
  justify-content:space-between;
}
.flex.end {
  align-content:flex-end;
}
.flex > div {
  position:relative;
  z-index:1;
}
.flex.column {
  flex-direction: column;
}
.flex.row {
  flex-direction: row;
}

.inline-block {
  display: inline-block;
}

.image-bg{
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -2;
}

.gradientOverlay{
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}



main {
  padding-top:0px;
  position:relative;
  z-index:1;
}


input, textarea, select {
  width:100%;
  display:block;
  border-radius:0;
  border:none;
  outline:none;
  font-size:16px;
  padding:16px;
  margin-bottom:18px;
  background:var(--color-lt-gray);
  box-sizing:border-box;
  resize:vertical;
}
button {
  background:inherit;
  border-radius:0;
  outline:none;
}

#shortHero {
  height:30vw;
  width: 100%;
}

#homeHeader{
  margin: 0 auto;
  height: 100%;
  justify-content: center;
  align-items: center;
  width: 70%;
}

.standardInput{
  padding-left: 0;
  background-color: white;
  border-bottom: 3px solid var(--color-lt-gray);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  color: var(--color-lt-gray);
  -webkit-appearance:none;
}
.standardInput.full{
  width:100%;
}


.textAreaInput{
  padding-left: 0;
  background-color: white;
  border-bottom: 3px solid var(--color-lt-gray);
  font-family: "Arial";
}

.text strong {
  font-family: 'Termina';
}
.text p a {
  text-decoration:underline;
}

.standardInput {
  font-family: "Arial";
  color:black;
}
.standardInput::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-lt-gray);
  opacity: 1; /* Firefox */
  font-size: 17px;
  font-family: "Arial";
}

.standardInput:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--color-lt-gray);
  font-size: 17px;
    font-family: "Arial";
}

.standardInput::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--color-lt-gray);
  font-size: 17px;
    font-family: "Arial";
}

.textAreaInput::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-lt-gray);
  opacity: 1; /* Firefox */
  font-size: 17px;
  font-family: "Arial";
}

.textAreaInput:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--color-lt-gray);
  font-size: 17px;
    font-family: "Arial";
}

.textAreaInput::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--color-lt-gray);
  font-size: 17px;
    font-family: "Arial";
}



@media screen and (max-width:800px) {
  .container {
    padding:0 24px;
  }
  .pad.more {
    padding:30px;
  }
  .pad.extra {
    padding:30px;
  }
  .mobile-only {
    display:block;
  }
  .desktop-only {
    display:none;
  }
  .full-screen .bg-video video {
    height:100vh;
  }

  #shortHero {
    height: 30vh;
    width: 100%;
  }

  #homeHeader{
    margin: 0 auto;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    display: flex;
  }
  .hero-cta{
    padding: 0;
    padding-top: 20px;
    text-align: left;
    align-content: flex-start;
  }

  main {
    padding-top:0px;
  }
}
