/* DEFAULT
----------------------------------------------------- */
*, *:before, *:after {
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}
html {
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  height: 100%;
}
body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  margin: 0 auto;
  color: #889;
  background: #FFF;
  height: 100%;
}
hr {
  border-top: 1px solid #E5E5E5;
}

/* IMAGES
----------------------------------------------------- */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
img:not(:only-child) {
  margin-bottom: 20px;
}
.image-lighter {
  opacity: 0.9;
}
.image-press-logo {
  margin: 0 auto 10px auto;
}
.image-press-logo:hover {
  opacity: 0.7;
}

/* UTILITY
----------------------------------------------------- */
.disabled {
  pointer-events: none;
}
.display-none {
  display: none;
}
.link-list {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  text-decoration: underline;
  color: #9ECF75;
}
.auto-center {
  margin-left: auto;
  margin-right: auto;
}
.fullscreen-center {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.border-right {
  border-right: 1px solid #E5E5E5;
  padding-right: 40px;
}
.border-left {
  border-left: 1px solid #E5E5E5;
  padding-left: 40px;
}
.hover-scale {
  -webkittransition: all 250ms ease-out;
  transition: all 250ms ease-out;
}
.hover-scale:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.padding-left-BEST {
  padding-left: 3.5% !important;
}
.span-BEST {
  font-size: 18px;
  font-style: italic;
  color: #AAB;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #BBC;
}

/* TYPOGRAPHY
----------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 16px;
  color: #4D7DBE;
}
h1 {
  font-size: 44px;
  font-weight: 300;
  line-height: 1.3;
}
h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
}
h3 {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
}
h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
}
h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
p, ul, ol {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #889;
}
p:last-child {
  margin-bottom: 0;
}
p a {
  font-weight: 600;
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
  color: #4D7DBE;
}
a {
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
a:hover,
a:focus {
  /* opacity: 0.7; */
  text-decoration: none;
}
ul {
  padding-left: 40px;
  list-style: circle outside;
}
ol {
  padding-left: 40px;
  list-style: decimal outside;
}
blockquote {
  padding: 15px;
  border-left: 3px solid #5784C2;
  background: #EEE;
}
.text-bold, b {
  font-weight: 700;
}
.text-demi {
  font-weight: 500;
}
.text-italic, i {
  font-style: italic;
}
.text-center {
  text-align: center;
}
.text-upper {
  text-transform: uppercase;
  letter-spacing: 1px;
}
.text-large {
  font-size: 48px;
  line-height: 1.3;
}
.text-small {
  font-size: 13px;
  line-height: 1.4;
}
.text-gray {
  color: #AAA;
}
.text-white {
  color: #FFF;
}
.text-green {
  color: #9ECF75;
}
.text-red {
  color: #D25;
}
.text-width-420 {
  max-width: 420px;
}

/* TABLES
----------------------------------------------------- */
.table, table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
}
.table th {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  color: #FFFFFF;
  background: #5784C2;
  border: 1px solid rgba(255,255,255,0.1);
}
.table td {
  font-size: 16px;
  text-align: center;
  line-height: 1;
  padding: 12px 0;
  color: #4D7DBE;
  border: 1px solid #E0E0E0;
}
.table td:first-child {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  padding-left: 20px;
  color: #889;
}
.table tr:nth-child(odd) {
  background: #F6F6F6;
}

/* NAVIGATION
----------------------------------------------------- */
.nav {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  text-align: right;
  text-transform: uppercase;
  color: #FFF;
  height: 65px;
}

.nav-wrap {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav.active {
  z-index: 5;
  border-bottom: 1px solid #E5E5E5;
}
.nav:hover,
.nav.active,
.header-nav-active .nav {
  color: #4D7DBE;
  background: #FFFFFF;
}
.nav:hover .nav-link-border,
.nav.active .nav-link-border,
.header-nav-active .nav-link-border {
  color: #FFFFFF;
  background: #5784C2;
  border: 2px solid #5784C2;
}
.nav:hover .nav-link-logo,
.nav.active .nav-link-logo,
.header-nav-active .nav-link-logo {
  /*background: url('../images/Simplified_Horizontal_Tagline.png') no-repeat center !important;*/
}
.nav-link-logo {
  position: absolute;
  left: 20px;
  top:6px;
  width: 170px;
  height: 45px;
  /*background: url('../images/Simplified_Horizontal_Tagline.png') no-repeat center;*/
}
.nav-link-border {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 40px;
  border: 2px solid #FFF;
  font-weight: 700;
}
.nav-link-border:hover {
  opacity: 1 !important;
  background-color: #A7D382 !important;
  border: 2px solid #A7D382 !important;
}
.nav-link {
  display: inline-block;
  padding: 30px 10px;
}
.nav-menu-wrap {
  position: relative;
  display: inline;
}
.nav-menu {
  position: absolute;
  display: none;
  z-index: 999;
  left: 0;
  min-width: 150px;
  padding: 10px 0;
  background: #F5F5F5;
  -webkit-animation: fadeIn 600ms ease;
  animation: fadeIn 600ms ease;
}
.nav-menu-wide {
  min-width: 300px;
}
.nav-menu-link {
  display: block;
  text-align: left;
  padding: 7px 15px;
}
.nav-menu:hover,
.nav-menu-wrap:hover > .nav-menu {
  display: block;
}
.nav-menu-sub {
  display: none;
  padding: 8px 0;
  text-indent: 15px;
  background: #DCE4E7;
}
.nav-menu-sub:hover,
.nav-menu-link:hover + .nav-menu-sub {
  display: block;
}
.nav a:hover {
  opacity: 0.6;
}


/* HEADER, FOOTER, SECTION
----------------------------------------------------- */
.header {
  position: relative;
  width: 100%;
  height: 60vw;
  max-height: 600px;
  margin-bottom: 20px;
  padding-top: 200px;
  background-color: #F0F2F4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.header-bottom {
  background-position: center bottom;
}
.header-nav-active {
  margin-top: 74px; /* navbar height */
  padding-top: 260px;
}
.header-empty {
  height: auto;
  padding: 100px 0;
}
.header-lighten * {
  z-index: 2;
}
.header-lighten:after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255,255,255,0.1);
}
.header-darken:after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0,0,0,0.1);
}
.footer a {
  float: left;
  clear: both;
  margin-bottom: 5px;
}
.footer,
.section {
  position: relative;
  width: 100%;
  padding: 60px 0;
}
.section-border:after {
  position: absolute;
  content:'';
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1180px;
  margin: 0 auto;
  border-bottom: 1px solid #E5E5E5;
}
.section-smoke {
  background: #E9EEF0;
}
.section-smoke .section-title {
  border: 0;
  margin-top: 0;
}
.section-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 0;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  max-width: 1180px;
  margin: 0 auto 60px auto;
  border-top: 1px solid #E5E5E5;
}
.section-title span {
  padding: 0 20px;
  background: #FFFFFF;
}

#home-page-logo-container {
  height: 80px;
  /* display: inline-block;
  position: relative;
  top: 26px; */
}

#home-page-logo-img {
  height: 100%;
  object-fit: cover;
}

#press-announcement-logo-container {
  height: 120px;
  margin-top: 15px;
}

#home-page-tagline {
  display: inline-block;
}

@media(max-width: 600px) {
  #home-page-logo-container {
    height: auto !important;
    /* position: inherit;
    top: 0px; */
  }

  /* #home-page-tagline-container {
    padding: 15px;
  } */

  #new-branding-section {
    padding: 25px;
  }

  #press-announcement-logo-container {
    height: auto;
  }

  #nav-image-logo-container {
    height: 50px;
  }

  #img-logo {
    height: 100% !important;
  }

  #home-page-logo-img {
    width: 100% !important;
  }
}

/* BOXES & CARDS
----------------------------------------------------- */
.box-white,
.box-smoke {
  max-width: calc(50% - 20px);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.05);
}
.box-white {
  background: #FFFFFF;
}
.box-smoke, .moves-box-smoke {
  background: #FAFAFA;
}
.box-wide {
  max-width: 100%;
}
.card {
  position: relative;
  display: block;
  padding-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 600;
  color: #FFF;
  background: #5784C2;
  box-shadow: 0 4px 4px 0 rgba(0,0,0,0.1);
}
/* .card:after {
  position: absolute;
  right: 30px;
  content: '→';
  transition: all 300ms ease;
}
.card:hover:after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
} */
.card:hover {
  background: #A7D382;
}
.card img {
  width: 100%;
  margin-bottom: 20px;
  height: 200px;
  object-fit: cover;
}
.card.icon img {
  height: 160px;
}

/* LAYOUT
----------------------------------------------------- */
.row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 1220px;
  margin: 0 auto;
}
.row + .row {
  margin-top: 40px;
}
.row-top {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.row-bottom {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.row-center {
  -webkit-align-items: center;
  -webkit-justify-content: center;
  align-items: center;
  justify-content: center;
}
.row-center-x {
  -webkit-justify-content: center;
  justify-content: center;
}
.row-center-y {
  -webkit-align-items: center;
  align-items: center;
}
.row-center-x {
  -webkit-justify-content: center;
  justify-content: center;
}
.row-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.column {
  -webkit-flex: 1;
  flex: 1;
  margin: 0 20px;
}
.column-top {
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.column-bottom {
  -webkit-align-self: flex-end;
  align-self: flex-end;
}
.column-center-y {
  -webkit-align-self: center;
  align-self: center;
}
.column-center-x {
  margin: 0 auto;
}
.column-center {
  margin: auto;
}
.column-right {
  margin-left: auto;
}
.column-100 {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.column-80 {
  -webkit-flex-basis: 80%;
  flex-basis: 80%;
  max-width: 80%;
}
.column-75 {
  -webkit-flex-basis: 75%;
  flex-basis: 75%;
  max-width: 75%;
}
.column-70 {
  -webkit-flex-basis: 70%;
  flex-basis: 70%;
  max-width: 70%;
}
.column-66 {
  -webkit-flex-basis: 66.666%;
  flex-basis: 66.666%;
  max-width: 66.666%;
}
.column-60 {
  -webkit-flex-basis: 60%;
  flex-basis: 60%;
  max-width: 60%;
}
.column-55 {
  -webkit-flex-basis: 55%;
  flex-basis: 55%;
  max-width: 55%;
}
.column-50 {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  max-width: 50%;
}
.column-45 {
  -webkit-flex-basis: 45%;
  flex-basis: 45%;
  max-width: 45%;
}
.column-40 {
  -webkit-flex-basis: 40%;
  flex-basis: 40%;
  max-width: 40%;
}
.column-33 {
  -webkit-flex-basis: 33.333333%;
  flex-basis: 33.333333%;
  max-width: 33.333333%;
}
.column-30 {
  -webkit-flex-basis: 30%;
  flex-basis: 30%;
  max-width: 30%;
}
.column-25 {
  -webkit-flex-basis: 25%;
  flex-basis: 25%;
  max-width: 25%;
}
.column-20 {
  -webkit-flex-basis: 20%;
  flex-basis: 20%;
  max-width: 20%;
}

/* BUTTONS
----------------------------------------------------- */
.button {
  display: table;
  padding: 0 45px;
  height: 48px;
  line-height: 48px;
  /* font-family: FiniFont; */
  font-family: 'Source Sans Pro';
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 48px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.button:hover {
  color: #FFFFFF;
  background: #A7D382;
  opacity: 1;
}
.button-green {
  color: #FFFFFF;
  background: #A7D382;
}
.button-blue {
  color: #FFFFFF;
  background: #5784C2;
}
.button-white {
  color: #4D7DBE;
  background: #FFFFFF;
}
.button-wide {
  width: 100%;
}
.button-center {
  margin: auto;
}

/* FORMS
----------------------------------------------------- */
.form {
/*   display: flex;
  flex-wrap: wrap;
  justify-content: space-between; */
}
.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  height: 50px;
  margin: 0 0 10px 0;
  padding: 15px;
  font-size: 15px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  background-color: #FFF;
  color: #4D7DBE;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-select {
  color: #999;
  background: #FFF url('../images/icon-form-select.svg') no-repeat right 15px center;
}
/* .form-input.email {
  background: #FFF url('../images/icon-form-email.svg') no-repeat right 15px center;
}
.form-input.phone {
  background: #FFF url('../images/icon-form-phone.svg') no-repeat right 15px center;
}
.form-input.location {
  background: #FFF url('../images/icon-form-location.svg') no-repeat right 15px center;
} */
.form-input:focus,
.form-textarea:focus {
  color: #5784C2;
  border-color: #5784C2;
}
.form-textarea {
  min-height: 150px;
  resize: none;
}
.form label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin: 15px 0 10px 0;
  padding-top: 15px;
  border-top: 1px solid #E0E0E0;
}

/** additions **/
.moves-checkbox-label {
  border-top: 0px !important;
  display: inline !important;
  font-weight: normal !important;
}

.date-label {
  margin-top: 0px !important;
  margin-bottom: 5px !important;
  border-top: 0px !important;
}

.moves-box-smoke {
  max-width: calc(100% - 20px);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.05);
}

.moves-checkbox-div {
  margin-bottom: 5px;
}

.moves-checkbox-div:last-of-type {
  margin-bottom: 20px;
}

.form .required {
  border: 1px solid #B76768;
}
::placeholder {
  color: #999;
  opacity: 1; /* Firefox */
}
input[type=checkbox] {
  display: inline-block;
  vertical-align: -2px;
  width: 13px;
  height: 13px;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
input[type=checkbox]:before {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url('../images/icon-form-check.png') no-repeat 0 0;
  background-size: 26px 13px;
  content:'';
}
input[type=checkbox]:checked:before {
  background-position: -13px 0;
  background-size: 26px 13px;
  content:'';
}
input, textarea {
  font-family: 'Source Sans Pro', sans-serif !important;
}

/* MOBILE
----------------------------------------------------- */

@media(max-width: 800px) {
  .header {
    height: 120vw;
    padding-top: 22vh;
  }
  .header-nav-active {
    margin-top: 51px; /* navbar height */
  }
  .nav-link-logo {
    position: fixed;
    top: 2px;
    left: 10px;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
  .nav {
    height: 50px;
    padding: 50px 0 0 0;
    text-align: left;
    overflow: hidden;
  }
  .nav:after {
    position: absolute;
    right: 8%;
    top: 18px;
    color: inherit;
    content: 'Menu';
  }
  .nav.open {
    z-index: 9999;
    height: 100vh;
    color: #4D7DBE;
    background: #FFF;
  }
  .nav.open:after {
    content: 'Close';
  }
  .nav.open .nav-link-border {
    text-align: center;
    margin-top: 10px;
    color: #FFF;
    background: #5784C2;
    border: 2px solid #5784C2;
  }
  .nav-link,
  .nav-link-border,
  .nav-menu-link {
    display: block;
    padding: 15px 8%;
    border: 0;
    border-top: 1px solid #E5E5E5;
  }
  .nav-menu-link {
    text-indent: 20px;
  }
  .nav-menu {
    position: static;
    padding: 0;
    -webkit-animation: none;
    animation: none;
  }
  .section, .footer {
    padding: 40px 0;
  }
  .row {
    margin-top: 0 !important;
  }
  .column {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .box-white, .box-smoke, .moves-box-smoke {
    padding: 40px 20px;
  }
  .no-mobile {
    display: none;
  }
}
@media(max-width: 600px) {
  .border-right {
    display: none;
  }
  .column {
    margin-bottom: 20px;
  }
  .footer a,
  .footer p {
    width: 100%;
    margin: 0;
    padding: 10px 20px;
    border-top: 1px solid #E5E5E5;
  }
  .button {
    width: 100%;
  }
  h1 {
    font-size: 32px;
  }
}

