
/*--- Nav Scrolling Offset --*/
.offset:before {
  height: 62px;
  margin-top: -62px;
  content: "";
  display: block;
}

.offset {
  /*border-bottom: #00B3FF solid 0.1rem;*/
}

/*--- Extra Bootstrap Column Padding --*/
[class*="col-"] {
  padding: 1rem;
}
/*============= LANDING PAGE =============*/

.home-inner {
  background-image: url('../img/landingpage.jpeg');
  background-color: rgb(0, 179, 255, 1);
}

.caption {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 40%;
  z-index: 1;

}

.caption .h3 {
  padding: 2rem 0;
  /* background-color: rgb(0, 179, 255, 0.5); */
  /* background-color: rgb(154,205,50, 0.5); */
  background-color: rgb(232,180,2, 0.5);
  text-shadow: 0px 0px 12px #080808;
}

.caption .h3 .large {
  color: white;
  font-size: 2.4rem;
  text-transform: uppercase;

}

.caption .h3 .small {
  color: yellow;
  font-size: 1.1rem;
  font-variant: small-caps;
}



.caption .btn {
  border-width: medium;
  border-radius: 0;
  padding: .5rem 1.1rem;
  font-size: .9rem;
  text-transform: uppercase;
}


/*============= ABOUT SECTION =============*/

.jumbotron {
  margin-bottom: 0;
  border-radius: 0;
  padding: 3rem 0 3rem;
}

.narrow {
  width: 85%;
  margin: 0 auto;
  padding-top: 1rem;
  max-width: 1024px;

}

h3.heading {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1.9rem;

}

p.heading {
  width: 80%;
  text-align: center;
  text-transform: none;
  font-variant: small-caps;
  padding-bottom: 1.9rem;
  max-width: 1024px;

}

.heading-underline {
  width: 3rem;
  height: .2rem;
  background-color: #00B3FF;
  margin: 0 auto 2rem;
}

.about svg.svg-inline--fa {
  color: #00B3FF;
  margin: 1rem auto;
}

.about h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  padding-bottom: .4rem;
}

.about p {
  font-size: 1.1rem;
}

/*============= TESTIMONIALS SECTION =============*/

.card {
  margin: 0 1rem;
}

.card-img-top {}

.card h4 {
  font-weight: 700;
}

.card h5 {
  color: #00B3FF;
}

.card p {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin: 1rem 0 1.5rem;
}


/*============= MEDIA QUERIES =============*/

/* Medium (md) devices (tablets, 768px and under) */
@media (max-width: 768px) {
  .caption {
      top: 35%;
  }

  .caption h3 {
      font-size: 1.8rem;
      padding-bottom: 1.2rem;
  }
}
/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/