/* GLOBAL STYLES */

* {
  font-family: 'Lato', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

/* Remove Bootstrap 4's blue border when buttons are clicked: */
.btn:focus,
.btn:active,
.btn:visited,
button {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  outline: none !important;
}

button:hover {
  cursor: pointer;
}

.btn {
  background-color: #0075b7;
}

.btn:hover,
.btn:active {
  background-color: #005889;
}

.btn-enter:link,
.btn-enter:visited {  
  border: 5px #fff solid;
  border-radius: 0;
  -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, .5);
          box-shadow: 2px 2px 8px rgba(0, 0, 0, .5);
  font-size: 150%;
  text-shadow: 9px 9px 8px rgba(0, 0, 0, .5);
  z-index: 5;
}

.btn-enter:hover,
.btn-enter:active {
  border: 5px #ffd700 solid !important;
  border-radius: 0;
  color: #ffd700 !important;
}

/* HEADER */

header {
  height: 90vh;
}

.main-name {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.7rem;
  text-shadow: 20px 20px 8px rgba(0, 0, 0, .5);
  z-index: 10;
}

.main-name-bg {
  background-color: rgba(0, 0, 0, .5);
}

.main-subheading {
  z-index: 10;
}

.main-subheading-bg {
  background-color: rgba(255, 255, 255, .2);
}

.accord-logo {
  margin: 0 auto;
  max-width: 90%;
}

.heading-btn-ctr {
  margin-top: 25%;
}

#video-background {
  /* Makes the video fullscreen */
  height: auto;
  left: 0;
  min-height: 90vh;
  min-width: 100%; 
  position: fixed;
  top: 0;
  width: auto;
  z-index: -100;

  /* Background fallback in case of IE8 & down, or in case video doens't load, such as with slower connections */
  background: url(../img/ext-right-blue.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}


/* NAVBAR */

.navbar-brand {
  max-width: 75%;
}

.brand-banner {
  max-width: 100%;
}

.fa-map-marker {
  color: #0075b7;
  font-size: 20px !important;
}

.border-l {
  border-left: 2px solid #888;
}


/* ALL SECTIONS */

.section-header {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .3rem;
}


/* CONTACT SECTION */

#contact-section {
  background: url(../img/int-front/int-front-2040x1360-min.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Form */

.title-wrapper,
.form-wrapper {
  background-color: rgba(0, 0, 0, .55);
  border-radius: 10px;
}

.form-group label {
  color: #fff;
}

.preferences {
  width: 80%;
}

#comments {
  height: 75px;
}

.recaptcha {
  padding-top: 7px;
  width: 77%;
}

.btn-container {
  width: 100%;
}

.btn-submit {
  width: 75%;
}


/* EVOLUTION SECTION */

#evolution-section {
  background-attachment: fixed;
  background-image: -webkit-gradient( linear, left top, left bottom, from(rgba( 0, 0, 0, 0.75 )), to(rgba( 0, 0, 0, 0.75 )) ), url( ../img/hero/hero-2500x1315-min.jpg );
  background-image: -webkit-linear-gradient( rgba( 0, 0, 0, 0.75 ), rgba( 0, 0, 0, 0.75 ) ), url( ../img/hero/hero-2500x1315-min.jpg );
  background-image: -o-linear-gradient( rgba( 0, 0, 0, 0.75 ), rgba( 0, 0, 0, 0.75 ) ), url( ../img/hero/hero-2500x1315-min.jpg );
  background-image: linear-gradient( rgba( 0, 0, 0, 0.75 ), rgba( 0, 0, 0, 0.75 ) ), url( ../img/hero/hero-2500x1315-min.jpg );
  background-size: cover;
  color: #fff;
}

.card {
  border: none;
}

.card-title,
.card-subtitle {
  color: #0075b7 !important;
}


/* MEDIA QUERIES */

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {

  .main-name {
    letter-spacing: 1.3rem;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .section-header {
    font-size: 2rem;
  }
  
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {

  header {
    height: 75vh;
  }

  .heading-btn-ctr {
    margin-top: 15%;
  }

  #video-background {
    min-height: 75vh;
  }

  .section-header {
    font-size: 2.5rem;
  }

}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

  header {
    height: 83vh;
  }

  .heading-btn-ctr {
    margin-top: 25%;
  }

  #video-background {
    min-height: 83vh;
  }

  .navbar-brand {
    max-width: 25%;
  }

  #comments {
    height: 106px;
  }

  .section-header {  
    font-size: 3.5rem;
    font-weight: 400;
  }

}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {

  header {
    height: 80vh;
  }

  #video-background {
    min-height: 80vh;
  }

  .navbar-brand {
    max-width: 38%;
  }

  #comments {
    height: 128px;
  }

  .main-name {
    font-size: 2rem;
  }

  .section-header {
    font-size: 4rem;
  }

}