@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:400, 100, 900");
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Cantata+One&display=swap");
@import url("https://fonts.googleapis.com/css?family=Crimson+Text&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

.sticky {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  border-top: 0;
}

.navbar {
  width: auto;
  position: fixed;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  background-color: white;
}

.navbar-brand img {
  height: 3.5rem;
}

.navbar-nav li {
  padding-right: 0.7rem;
}

.navbar-toggler {
  color: #ffffff;
}

.nav-link {
  color: #29518d;
  font-weight: 400;
}

.nav-link:hover {
  color: #29518d;
  font-weight: 800;
}

.navbar-dark .navbar-nav .nav-link {
  color: #29518d;
  padding-top: 0.8rem;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #000000;
}

.navbutton {
  background: #29518d;
  display: inline-block;
  border-radius: 0px;
  margin: 10px;
  position: relative;
  padding: 15px;
  cursor: pointer;
}

.circle {
  width: 15px;
  height: 15px;
  position: relative;
}

.line {
  position: absolute;
  height: 1px;
  width: 100%;
  background: #ffffff;
  border-radius: 0px;
  -webkit-transition: all cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.15s;
  transition: all cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.15s;
}

.top {
  top: 18%;
}

.middle {
  top: 48%;
}

.bottom {
  top: 78%;
}

.icon#close .top {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 48%;
}

.icon#close .middle,
.icon#close .bottom {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 48%;
}

#landingpage {
  position: relative;
  height: 100vh;
  background-color: #090420;
}

@media (max-width: 600px) {
  #landingpage {
    height: 50vh;
  }
}

#landingpage img {
  position: relative;
  height: 100%;
  width: 100%;
  opacity: 0.6;
}

#landingpage .greeting {
  position: absolute;
  color: #ffffff;
  font-size: 6rem;
  font-weight: 200;
  text-transform: uppercase;
  top: 80%;
  left: 0;
  -webkit-transform: translate(2%, -50%);
          transform: translate(2%, -50%);
  letter-spacing: 1.5rem;
  line-height: 5rem;
}

#landingpage .greeting .slogan {
  color: #ffffff;
  letter-spacing: 0.7rem;
  font-size: 1.5rem;
  font-weight: 200;
  text-transform: none;
}

@media (max-width: 600px) {
  #landingpage .greeting .slogan {
    font-size: 0.5rem;
    letter-spacing: 0.3rem;
  }
}

@media (max-width: 600px) {
  #landingpage .greeting {
    font-size: 2rem;
    top: 40%;
    left: 0;
    -webkit-transform: translate(0, -10%);
            transform: translate(0, -10%);
    letter-spacing: 0.5rem;
    line-height: 1.7rem;
  }
}

#services {
  background-color: #ffffff;
  background-size: cover;
  height: 100%;
}

#services .headliner {
  color: #ffffff;
  background-color: #29518d;
  padding-left: 20%;
  padding-right: 20%;
  padding: 1em;
  text-align: center;
  font-size: 3rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1rem;
  line-height: 2rem;
}

@media (max-width: 500px) {
  #services .headliner {
    font-size: 0.7rem;
    letter-spacing: 0.5rem;
    line-height: 1.7rem;
  }
}

#services .row {
  margin: 0;
  padding: 7%;
  position: relative;
  text-align: center;
}

#services .row .col-md-4 {
  padding-right: 5px;
  padding-left: 5px;
  padding: 5%;
}

#services .row .col-md-4 .card {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  line-height: 1rem;
  background-color: #29518d;
  height: 50vh;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
}

@media (max-width: 500px) {
  #services .row .col-md-4 .card {
    height: 40vh;
  }
}

#services .row .col-md-4 .card .card-body {
  padding-top: 2em;
}

@media (max-width: 500px) {
  #services .row .col-md-4 .card .card-body {
    padding-top: 0;
    height: 30vh;
  }
}

#services .row .col-md-4 .card hr.socketser {
  border-top: 0.2rem solid #ffffff;
  width: 100%;
}

#services .row img {
  background-color: #ffffff;
  position: relative;
  height: 20vh;
  margin: 0.5em;
}

@media (max-width: 500px) {
  #services .row img {
    height: 40%;
  }
}

#locations {
  height: 100vh;
  background-color: #ccc;
}

@media (max-width: 500px) {
  #locations {
    font-size: 0.7rem;
    letter-spacing: 0.5rem;
    line-height: 1.7rem;
    height: 70vh;
  }
}

#locations .headliner {
  height: 10%;
  color: #ffffff;
  background-color: #29518d;
  padding-left: 0%;
  padding-right: 0%;
  padding: 1em;
  text-align: center;
  font-size: 3rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1rem;
  line-height: 0rem;
}

@media (max-width: 500px) {
  #locations .headliner {
    font-size: 0.7rem;
    letter-spacing: 0.5rem;
    line-height: 1rem;
  }
}

#locations .row {
  margin: 0;
  padding: 0px;
  position: relative;
  text-align: center;
  height: 80%;
  width: 100%;
}

#locations .row .col-md-12 {
  padding-right: 0px;
  padding-left: 0px;
  height: 100%;
  width: 100%;
}

#locations .row .col-md-12 .us {
  padding: 5%;
  height: 100%;
  width: 100%;
}

#locations .row .col-md-12 .us img {
  height: 100%;
  width: 100%;
}

.footer {
  height: 40vh;
}

.footer .footer-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 500px) {
  .footer .footer-content {
    display: block;
  }
}

.footer .footer-content .footer-about {
  height: 100%;
  background-color: #363636;
  text-align: center;
  padding: 2%;
}

.footer .footer-content .footer-about .about-text {
  color: #ffffff;
  height: 50%;
  padding: 5%;
}

.footer .footer-content .footer-about .about-text p {
  letter-spacing: 0.5rem;
  line-height: 2rem;
  font-size: x-large;
}

@media (max-width: 500px) {
  .footer .footer-content .footer-about .about-text {
    font-size: x-large;
  }
}

.footer .footer-content .footer-about .social-s {
  height: 25%;
  width: 100%;
}

.footer .footer-content .footer-about .social-s svg {
  height: 30px;
  width: 30px;
  padding: 1%;
  color: #29518d;
  border-radius: 500px solid #960404;
}

.footer .footer-content .footer-about .social-s a :hover {
  background-color: #fff;
}

.footer .footer-content .footer-about .social-s a svg {
  height: 50px;
  width: 50px;
}

.footer .footer-content .footer-about .footer-logo {
  height: 25%;
}

.footer .footer-content .footer-about .footer-logo img {
  height: 100%;
}

.footer .footer-content .footer-links {
  height: 100%;
  background-color: #363636;
  padding: 1%;
}

.footer .footer-content .footer-links .links {
  text-align: center;
}

.footer .footer-content .footer-links .links p {
  color: #fff;
  letter-spacing: 0.5rem;
  line-height: 5rem;
  font-size: x-large;
}

@media (max-width: 500px) {
  .footer .footer-content .footer-links .links p {
    line-height: 3rem;
  }
}

.footer .footer-content .footer-links .links a {
  color: #fff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.footer .footer-content .footer-links .links a :hover {
  color: #fff;
  font-size: larger;
  font-weight: bolder;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.footer .footer-content .footer-contact {
  height: 100%;
  display: block;
  background-color: #363636;
  text-align: center;
  padding: 2%;
  color: #fff;
}

.footer .footer-content .footer-contact p {
  letter-spacing: 0.5rem;
  line-height: 2rem;
  font-size: x-large;
}

.footer .footer-content .footer-contact form {
  width: 100%;
  padding: 5% 2.5%;
}

.footer .footer-content .footer-contact form input {
  width: 100%;
  margin-bottom: 10px;
  color: #fff;
  background-color: #272727;
}

.footer .footer-content .footer-contact form textarea {
  width: 100%;
  color: #fff;
  background-color: #272727;
}

.footer .footer-content .footer-contact form button {
  width: 20%;
  color: #fff;
  background-color: #272727;
  float: right;
}

#contact {
  background-color: #29518d;
  color: #fff;
  height: 10vh;
}

#contact .ft .spacer {
  height: 3vh;
  background-color: #29518d;
}

#contact hr.socket {
  margin: 0;
  border-top: 0.2rem solid #ffffff;
  width: 100%;
}

#fleet {
  color: #000000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#fleet .fleetheader {
  color: #ffffff;
  background-color: #29518d;
  padding-left: 20%;
  padding-right: 20%;
  padding: 1em;
  text-align: center;
  font-size: 3rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1rem;
  line-height: 5rem;
}

@media (max-width: 500px) {
  #fleet .fleetheader {
    font-size: 0.7rem;
    letter-spacing: 0.5rem;
    line-height: 1.7rem;
  }
}

#fleet .backtohome {
  width: 100%;
  text-align: center;
}

#fleet .backtohome img {
  height: 50px;
}

#fleet .card {
  margin: 5%;
  text-align: center;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#fleet .card .card-title {
  padding: 2vh;
}

#fleet .card img {
  height: 35vh;
}
/*# sourceMappingURL=style.css.map */