@font-face {
  font-family: "gotham-book";
  src: url("../fonts/gotham-book-webfont.woff"), url("../fonts/gotham-book-webfont.woff2");
  font-weight: normal;
}

@font-face {
  font-family: "gotham-book";
  src: url("../fonts/gotham-light-webfont.woff"), url("../fonts/gotham-light-webfont.woff2");
  font-weight: 300;
}

@font-face {
  font-family: "gotham-book";
  src: url("../fonts/gotham-medium-webfont.woff"), url("../fonts/gotham-medium-webfont.woff2");
  font-weight: 500;
}

body {
  font-family: "gotham-book";
}

p {
  font-size: 1rem;
  color: #000;
}

.btn {
  border: solid 1px;
  -webkit-transition: all ease-out 0.2s 0s;
  transition: all ease-out 0.2s 0s;
}

.btn.full {
  width: 100%;
}

.btn.round {
  border-radius: 50px;
}

.btn.yellow {
  background: #004880;
  border-color: #004880;
  color: #ffffff;
  font-size: 16px;
}

.btn.yellow:hover {
  background: #3399e8;
  border-color: #3399e8;
  color: #ffffff;
}

.btn.purple {
  color: #fff;
  background: #c88ec6;
  border-color: #c88ec6;
}

.btn.purple:hover {
  background: #fecc00;
  border-color: #fecc00;
}

.form-group {
  margin-bottom: 20px;
}

.form-group .form-control {
  border-radius: 0;
  color: #3b3b3b;
}

.form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-color: #000;
}

body.menu-open .nav-overlay {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

#mainNav {
  z-index: 2;
}

@media screen and (max-width: 991px) {
  #mainNav {
    -webkit-box-shadow: 0.3px 0.3px 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0.3px 0.3px 20px rgba(0, 0, 0, 0.2);
  }
}

#mainNav .navbar-toggler {
  height: 20px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  position: relative;
}

@media screen and (min-width: 991px) {
  #mainNav .navbar-toggler {
    display: none;
  }
}

#mainNav .navbar-toggler.open span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
}

#mainNav .navbar-toggler.open span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
}

#mainNav .navbar-toggler.open span:nth-child(2) {
  opacity: 0;
}

#mainNav .navbar-toggler span {
  height: 2px;
  width: 100%;
  background: #000;
  position: absolute;
  -webkit-transition: all ease-out 0.2s 0s;
  transition: all ease-out 0.2s 0s;
}

#mainNav .navbar-toggler span:first-child {
  top: 0;
  left: 0;
}

#mainNav .navbar-toggler span:nth-child(2) {
  top: 8px;
  left: 0;
}

#mainNav .navbar-toggler span:last-child {
  top: 16px;
  left: 0;
}

.accordion ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.accordion ul li .line {
  position: absolute;
  left: 0;
  top: 0;
}

.accordion .accordion-item {
  border-radius: 0;
  border-color: #000;
  border-left: none;
  border-right: none;
}

.accordion .accordion-button {
  color: #000;
  font-weight: 500;
  background: none;
  padding-left: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.accordion .accordion-button:not(.collapsed):after {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}

.accordion .accordion-button:after {
  background: none;
  height: 14px;
  width: 14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-left: 1px solid #004880;
  border-bottom: 1px solid #004880;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .accordion .accordion-button:after {
    height: 10px;
    width: 10px;
  }
}

.accordion .accordion-collapse {
  border-top: none;
}

.section {
  padding: 80px 0;
}

@media screen and (max-width: 1600px) {
  .section {
    padding: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}

.section + .section {
  padding-top: 0;
}

.section .points-list {
  padding-top: 50px;
}

.section .points-list .title {
  font-size: 1.125rem;
  color: #000;
  font-weight: 500;
}

.section .points-list .icon {
  height: auto;
  width: auto;
  max-width: 95px;
  display: block;
  margin: auto;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .section .points-list .icon {
    max-width: 70px;
  }
}

.section .points-list .fig {
  margin-bottom: 40px;
  padding: 0 25px;
}

@media screen and (max-width: 767px) {
  .section .points-list .fig {
    padding: 0 15px;
  }
}

.section-heading {
  font-size: 1.75rem;
  line-height: inherit;
  font-weight: 500;
  margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .section-heading {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .section-heading {
    font-size: 1.375rem;
  }
}

.masthead {
  position: relative;
  padding-top: 75px;
}

@media screen and (max-width: 991px) {
  .masthead {
    padding-top: 72px;
  }
}

.masthead .banner-video {
  width: 100%;
  height: calc(100vh - 95px);
  max-height: 470px;
  max-width: calc(100% - 350px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.8;
  background: url("../img/desktop-banner.png") no-repeat left;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 767px) {
  .masthead .banner-video {
    max-width: 100%;
    height: 400px;
  }
}

@media screen and (max-width: 380px) {
  .masthead .banner-video {
    height: 300px;
  }
}

.masthead .banner-video .btn {
  background: none;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.masthead .banner-video img {
  height: 80px;
  width: 80px;
}

@media screen and (max-width: 767px) {
  .masthead .banner-video img {
    height: 50px;
    width: 50px;
  }
}

.masthead .banner-video .video-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all ease-out 0.2s 0s;
  transition: all ease-out 0.2s 0s;
}

.masthead .banner-video.playing .video-wrapper {
  opacity: 1;
  pointer-events: all;
}

.banner-form {
  background: #E3F2FF;
  width: 100%;
  height: 100%;
  max-width: 350px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 20px;
  z-index: 1;
  padding-top: 115px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 991px) {
  .banner-form {
    padding-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .banner-form {
    position: static;
    max-width: 450px;
    margin: auto;
    padding-top: 20px;
  }
}

.banner-form h2 {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
}

.banner-form p {
  font-size: 0.875rem;
}

.banner-form .form-group {
  position: relative;
}

.banner-form .form-group .error {
  position: absolute;
  bottom: -19px;
  left: 0;
}

.swiper-button-next,
.swiper-button-prev {
  height: 30px;
  width: 30px;
  background: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.25rem;
  color: #000;
}

.swiper-button-prev {
  left: -8px;
}

.swiper-button-next {
  right: -8px;
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  height: 12px;
  width: 12px;
  background: #fecc00;
}

footer {
  position: relative;
  padding-bottom: 55px;
}

@media screen and (max-width: 767px) {
  footer {
    padding-top: 40px;
  }
}

footer .scroll-to {
  font-size: 1.125rem;
  white-space: nowrap;
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 10px 10px 0 0;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  -webkit-transition: all ease-out 0.2s 0s;
  transition: all ease-out 0.2s 0s;
}

footer .scroll-to.visible {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media screen and (max-width: 767px) {
  footer .scroll-to {
    padding: 10px 40px;
  }
}

footer .footer-links {
  background: #E3F2FF;
  padding: 10px 0;
  margin-bottom: 25px;
}

footer .footer-links li + li {
  padding-left: 20px;
}

footer .footer-links a {
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  padding: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: all ease-out 0.2s 0s;
  transition: all ease-out 0.2s 0s;
}

footer .footer-links a:hover {
  color: #004880;
}

footer .footer-links a:hover:after {
  border-color: #004880;
}

footer .footer-links a:after {
  content: " ";
  height: 8px;
  width: 8px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-left: 10px;
}

footer p {
  color: #434343;
  font-size: 0.875rem;
}

.video-modal .modal-header {
  padding: 0;
  border: none;
}

.video-modal .modal-body {
  padding: 0;
}

.video-modal .close {
  font-size: 1.75rem;
  height: 40px;
  width: 40px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: -45px;
  top: -45px;
}

@media screen and (max-width: 991px) {
  .video-modal .close {
    right: 0;
  }
}

.loader-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  background: #d7d7d7;
  height: 100%;
  width: 100%;
  -webkit-transition: all ease-out 0.2s 0s;
  transition: all ease-out 0.2s 0s;
}

.loader-wrapper.loaded {
  opacity: 0;
  pointer-events: none;
}

.loader-wrapper .loader {
  width: 48px;
  height: 48px;
  border: 5px solid #3399E8;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.error {
  font-size: 0.8125rem;
  color: #CC0000;
}
/*# sourceMappingURL=landing.css.map */