@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #0c1a1f;
}

img {
  max-width: 100%;
}
img.img-rounded {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

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

.text-weight-normal {
  font-weight: 400;
}

.pre-header {
  font-size: 20px;
  color: #68cdf0;
  text-transform: uppercase;
  margin-bottom: 35px;
  font-weight: 900;
  display: block;
  letter-spacing: 2px;
}

.image-left {
  padding-right: 90px;
}

.image-right {
  padding-left: 90px;
}

.text-col {
  padding-top: 60px;
}

.standard-btn {
  border: 1px solid #68cdf0;
  padding: 18px 45px 20px;
  text-transform: uppercase;
  color: #0c1a1f;
  font-weight: 900;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  display: inline-block;
  text-decoration: none;
  transition: 0.25s all linear;
  letter-spacing: 2px;
}
.standard-btn:hover {
  background: #68cdf0;
  color: #0c1a1f;
}

.arrow-link {
  font-weight: 900;
  color: #68cdf0;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.arrow-link i {
  margin-left: 15px;
  transition: 0.25s all linear;
}

p {
  line-height: 1.8;
  margin-bottom: 35px;
}

p.p-lg {
  font-size: 1.3em;
  margin-bottom: 50px;
}

h2 {
  font-size: 50px;
  color: #0c1a1f;
  font-weight: 900;
  margin-bottom: 35px;
}

h3 {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 25px;
}

.light-blue {
  font-weight: 400;
  color: #68cdf0;
  display: block;
}

/*-- HEADER --*/
.navbar {
  padding: 40px 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  position: fixed;
  z-index: 1000;
  transition: 0.25s all linear;
}
@media (min-width: 992px) {
  .navbar.scrolled {
    padding: 25px 0;
  }
}
@media (max-width: 991px) {
  .navbar {
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .navbar #navbarCollapse {
    width: 100%;
    float: left;
    border-top: 1px solid #efefef;
    background: #f8f8f8;
  }
}
.navbar .container-1300 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .navbar .container-1300 {
    width: 100%;
    display: block;
  }
}
.navbar .nav-link {
  font-size: 16px;
  font-weight: 600;
  margin-left: 40px;
  color: #0c1a1f;
}
.navbar .nav-link:hover {
  color: #68cdf0;
}
@media (max-width: 1199px) {
  .navbar .nav-link {
    margin-left: 25px;
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .navbar .nav-link {
    margin: 0;
    padding: 10px 20px;
    border-bottom: 1px solid #efefef;
    text-align: center;
  }
}
.navbar #contact-btn {
  background: #68cdf0;
  color: #fff;
  padding: 10px 25px 12px;
  font-size: 16px;
  margin-left: 50px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: 0.25s all linear;
}
.navbar #contact-btn:hover {
  background: #0c1a1f;
}
@media (max-width: 1199px) {
  .navbar #contact-btn {
    margin-left: 25px;
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .navbar #contact-btn {
    margin: 20px;
  }
}
.navbar .navbar-toggler {
  position: absolute;
  right: 4%;
  top: 21px;
  width: 40px;
  padding: 0;
  border: none;
}
.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar .dropdown-toggle::after {
  margin-left: 8px;
}
.navbar .animated-icon {
  width: 100%;
  height: 24px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.navbar .animated-icon span {
  display: block;
  position: absolute;
  background: #68cdf0;
  height: 4px;
  width: 100%;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.navbar .animated-icon span:nth-child(1) {
  top: 0px;
}
.navbar .animated-icon span:nth-child(2), .navbar .animated-icon span:nth-child(3) {
  top: 50%;
  margin-top: -2px;
}
.navbar .animated-icon span:nth-child(4) {
  bottom: 0px;
}
.navbar .animated-icon.open span:nth-child(1),
.navbar .animated-icon.open span:nth-child(4) {
  top: 50%;
  width: 0%;
  margin-top: -2px;
  left: 50%;
}
.navbar .animated-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar .animated-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navbar #logo {
  width: 285px;
  float: left;
  /*@include respond-below(lg){
      width:150px;
  }

  @include respond-below(md){
      margin:0 0 15px 4%;

  }*/
}
@media (max-width: 1199px) {
  .navbar #logo {
    width: 230px;
  }
}
@media (max-width: 991px) {
  .navbar #logo {
    margin: 0 0 25px 4%;
  }
}

/*-- BODY STYLES --*/
#wrapper {
  margin-top: 105px;
  float: left;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.top-banner {
  width: 100%;
  height: auto;
  background-color: #0c1a1f;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.top-banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0c1a1f;
  opacity: 0.55;
  z-index: 1;
}
.top-banner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: black;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}
.top-banner #vid1 {
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  z-index: 0;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .top-banner #vid1 {
    width: 120%;
  }
}
@media (max-width: 575px) {
  .top-banner #vid1 {
    height: 125%;
    width: auto;
  }
}
.top-banner .banner-content {
  position: relative;
  z-index: 10;
  margin: 180px auto;
}
.top-banner .banner-content .standard-btn {
  color: #fff;
}
.top-banner .banner-content .standard-btn:hover {
  color: #0c1a1f;
}
.top-banner .banner-content .pre-header {
  margin-bottom: 50px;
}
.top-banner .banner-content h1 {
  color: #fff;
  font-size: 55px;
  font-weight: 900;
  margin: 0 0 50px;
}
.top-banner .banner-content h1 .h1-sub {
  font-size: 0.55em;
  display: block;
  font-weight: 400;
  color: #68cdf0;
  margin-top: 10px;
}

section {
  padding: 110px 0;
}

.container-1300 {
  width: 92%;
  margin: 0 auto;
  max-width: 1300px;
}

.icon-col {
  background: #0c1a1f;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 60px 35px;
  color: #fff;
  margin-bottom: 30px;
}
.icon-col img {
  width: 75px;
  display: inline-block;
  margin-bottom: 25px;
}
.icon-col p {
  margin-bottom: 0;
  text-wrap: balance;
}
.icon-col.step-by-step {
  background: #fff;
  color: #0c1a1f;
}
.icon-col.step-by-step img {
  width: 105px;
}

.pillar-link {
  height: auto;
  background-color: #0c1a1f;
  background-size: cover;
  background-position: center center;
  margin-bottom: 30px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  color: #fff;
  display: block;
  text-decoration: none;
}
.pillar-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.25s all linear;
}
.pillar-link .icon-image {
  width: 80px;
  position: absolute;
  top: 45px;
  left: 45px;
  z-index: 5;
  transition: 0.25s all linear;
}
.pillar-link .pillar-content {
  margin: 200px 45px 45px;
  position: relative;
  z-index: 5;
}
.pillar-link .pillar-content h3 {
  font-size: 30px;
}
.pillar-link .pillar-content p {
  margin-bottom: 25px;
}
.pillar-link:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
}
.pillar-link:hover:after {
  background: rgba(0, 0, 0, 0.55);
}
.pillar-link:hover .arrow-link i {
  margin-left: 20px;
}
.pillar-link:hover .icon-image {
  transform: scale(1.1);
}

/*-- FOOTER --*/
footer {
  width: 100%;
  padding: 40px 0;
  background: #0c1a1f;
  text-align: center;
  float: left;
  color: #ccc;
}
footer #footer-logo {
  width: 225px;
  display: inline-block;
  margin-bottom: 25px;
}
footer .copyright {
  font-size: 11px;
  display: block;
}

.form-wrapper {
  padding: 50px;
  background: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=style.css.map */
