@property --accent-color {
  syntax: "<color>";
  inherits: false;
  initial-value: #ff690e;
}

@property --highlight-color {
  syntax: "<color>";
  inherits: false;
  initial-value: #f43400;
}

body {
  font-family: 'Lora', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  color: white;
  background-color: black;
}

html {
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cabin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 25px;
}

@media (min-width: 768px) {
  p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 35px;
  }
}

img {
  width: 100%;
}

a {
  transition: all 0.2s ease-in-out;
  color: var(--accent-color);
}

a:focus, a:hover {
  text-decoration: none;
  color: var(--highlight-color)
}

/* Disable box shadow inherited from mdb.css */
.navbar {
  -webkit-box-shadow: 0 0px 0px 0 rgba(0,0,0,0) !important;
  box-shadow: 0 0px 0px 0 rgba(0,0,0,0) !important;
}

#mainNav {
  font-family: 'Cabin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: black;
}

#mainNav .navbar-toggler {
  font-size: 14px;
  padding: 11px;
  color: white;
  border: 1px solid white;
}

#mainNav .navbar-brand {
  font-weight: 700;
}

#mainNav a {
  color: white;
}

#mainNav .navbar-nav .nav-item {
  transition: background 0.3s ease-in-out;
  padding-left: 3px;
}

#mainNav .navbar-nav .nav-item:hover {
  color: fade(white, 80%);
  outline: none;
  background-color: transparent;
}

#mainNav .navbar-nav .nav-item:active, #mainNav .navbar-nav .nav-item:focus {
  outline: none;
  background-color: transparent;
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 20px;
    padding-bottom: 20px;
    transition: background 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-bottom 0.3s;
    letter-spacing: 1px;
    border-bottom: none;
    background: transparent;
  }
  #mainNav.navbar-shrink {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--accent-color);
    background: black;
  }
  #mainNav .nav-link.active {
    outline: none;
    background-color: var(--accent-color);
  }
  #mainNav .nav-link.active:hover {
    color: white;
  }
}

header {
  display: table;
  width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 1.669;
  margin-top: 75px;
  text-align: center;
  color: white;
  background: url("../img/section0-bg.jpg") no-repeat center scroll;
  background-color: black;
  background-size: cover;
  background-position: bottom;
}

#intro-body {
  display: table-cell;
  vertical-align: middle;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 6%;
  padding-bottom: 5%;
}

#intro-body img {
  max-height: 80vh;
  max-width: 80vw;
  width: auto;
}

header h1 {
  font-size: 50px;
}
header p {
  font-size: 18px;
}

.improve-contrast-box {
  background: rgba(0, 0, 0, .5);
  border-radius: 5px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
  padding: 25px;
}

@media (min-width: 768px) {
  header {
    margin-top: 0px;
  }
  header h1 {
    font-size: 100px;
  }
  header p {
    font-size: 22px;
  }
}

.btn-circle {
  font-size: 26px;
  width: 55px;
  height: 55px;
  margin-top: 15px;
  line-height: 45px;
  transition: background 0.3s ease-in-out;
  color: white;
  border: 2px solid white;
  border-radius: 100% !important;
  background: transparent;
}

.btn-circle:focus, .btn-circle:hover {
  color: white;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

.content-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-1 {
  padding-top: 50px !important;
}

.section-2 {
  color: white;
  background: url("../img/section2-bg.jpg") no-repeat center center scroll;
  background-color: black;
  background-size: cover;
}

.section-4 {
  color: white;
  background: url("../img/section4-bg.jpg") no-repeat center center scroll;
  background-color: black;
  background-size: cover;
}

.section-6 {
  border-top: 1px solid #fff;
}

#map {
  width: 100%;
  height: 300px;
}

@media (min-width: 992px) {
  .content-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #map {
    height: 350px;
  }
}

.btn {
  font-family: 'Cabin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  border-radius: 0;
  white-space: pre-wrap
}

.btn-default {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  background-color: transparent;
}

.btn-default:focus, .btn-default:hover {
  color: #fff;
  border: 1px solid #fff;
  outline: none;
  background-color: var(--accent-color);
}

ul.banner-social-buttons {
  margin-top: 0;
  font-size: 0;
}

@media (max-width: 1199px) {
  ul.banner-social-buttons {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  ul.banner-social-buttons li {
    display: block;
    margin-bottom: 20px;
    padding: 0;
  }
  ul.banner-social-buttons li:last-child {
    margin-bottom: 0;
  }
}

footer {
  padding: 50px 0;
}

footer p {
  font-size: 14px;
  margin: 0;
}

::selection {
  background: #fcfcfc;
  background: rgba(255, 255, 255, 0.2);
  text-shadow: none;
}

img::selection {
  background: transparent;
}


.frame_container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.frame_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 6px solid rgba(0, 0, 0, .2);
}

/* Custom class for adding icons to our nav bar*/
.nav-icon {
  font-size: 1.75em
}