body {
  background: #fff;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.js body { 
  display: none;
}

a {
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

a:hover {
  text-decoration: none;
}

strong {
  font-weight: 500;
}

.text-dark {
  color: #000 !important;
}

.link {
  border-bottom: 2px solid transparent;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.link:hover, 
.link:focus,
.link:active {
  color: inherit;
  border-color: inherit;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
}

h1, .h1 {
  font-size: 3rem;
}

h2, .h2 {
  font-size: 2.25rem;
  font-weight: 400;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.btn {
  border: none;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  padding: .5em 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.btn span {
  transform: translateX(0);
  transition: transform .5s cubic-bezier(.15,.6,.14,.99);
}

.btn:hover span {
  transform: translateX(1em);
}

.btn:before {
  content: "";
  border: 1px solid;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  transition: opacity .5s cubic-bezier(.15,.6,.14,.99);
  position: absolute;
  left: .1em;
  top: 11px;
  opacity: 0;
}

.btn:hover:before {
  opacity: 1;
}

.btn.focus, .btn:focus {
  outline: none;
  box-shadow: none;
}

.header {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  z-index: 1030;
  -webkit-transition: background-color 200ms linear;
  -ms-transition: background-color 200ms linear;
  -o-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
}

.header.bg-white {
  background-color: #fff !important;
  position: fixed;
  top: 0;
  padding: 0.5rem 0;
}

.header.bg-dark .navbar {
  border-bottom: none;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-image: url(../img/bg-hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  overflow: hidden;
  z-index: 0;
}

.navbar {
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 0;
}

.nav-item {
  margin-left: 1rem;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: white !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: inherit;
  opacity: 0.5;
}

.bg-white .nav-link {
  color: #222 !important;
}

.navbar-toggler {
  border: none;
}

.display-1 {
  font-size: 4.5rem !important;
  font-weight: 600;
}

.display-2 {
  font-size: 2.625rem !important;
  font-weight: 600;
}

.display-3 {
  font-size: 2rem !important;
  font-weight: 600;
}

.section {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.title {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.title:before {
  content: "";
  border: 3px solid #2FA2F2;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  position: absolute;
  right: -.5em;
  top: 0;
}

.intro {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.750rem
}

.lead {
  font-family: 'Open Sans', sans-serif;
}

.card {
  border: none;
}

.card-body {
  padding: 3rem
}

.card-footer {
  background-color: white;
  border-top: none;
  padding: 0 0 3rem 3rem;
}

.footer {
  background-color: #000;
}

.legal {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.social-links {
  font-size: 1.5rem;
}

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url(../img/cd-top-arrow.svg) no-repeat center 50%;
  background-color: #2FA2F2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
}

.cd-top.cd-top--show,
.cd-top.cd-top--fade-out,
.cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
}

.cd-top.cd-top--show {
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-top--fade-out {
  opacity: .5;
}

.cd-top:hover {
  opacity: 1;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

@media (max-width: 991px) {
  .nav-item {
    margin: 1rem 0 !important;
  }
}

@media (max-width: 767px) {
  .card-deck {
    flex-flow: column;
  }
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 0.85rem;
  }
  .header {
    top: 0;
  }
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .display-1 {
    font-size: 2rem !important;
  }
  .display-2 { 
    font-size: 1.75rem !important;
  }
  .h2 {
    font-size: 2rem;
  }
  .lead, .intro {
    font-size: 1.125rem;
  }
  .btn {
    font-size: 0.75rem;
  }
  .card-body {
    padding: 2rem;
  }
  .card-footer {
    padding: 0 2rem 2rem;
  }
  small {
    font-size: 10px !important;
  }
}