@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;
  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 {
  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 {
    box-shadow: 0.3px 0.3px 20px rgba(0, 0, 0, 0.2);
  }
}
#mainNav .navbar-toggler {
  height: 20px;
  width: 30px;
  display: flex;
  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 {
  transform: rotate(45deg);
  top: 10px;
}
#mainNav .navbar-toggler.open span:last-child {
  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;
  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;
  box-shadow: none;
  cursor: pointer;
  justify-content: space-between;
}
.accordion .accordion-button:not(.collapsed):after {
  transform: rotate(-225deg);
}
.accordion .accordion-button:after {
  background: none;
  height: 14px;
  width: 14px;
  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 .image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0.8;
  position: relative;
}
@media screen and (max-width: 992px) {
  .masthead .image-wrapper {
    height: calc(100vh - 95px);
    max-height: 470px;
  }
}
@media screen and (max-width: 768px) {
  .masthead .image-wrapper {
    max-width: 100%;
    height: auto;
  }
}
.masthead .image-wrapper .btn {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
.masthead .image-wrapper a, .masthead .image-wrapper img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1150px) {
  .masthead .image-wrapper a, .masthead .image-wrapper img {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .masthead .image-wrapper a, .masthead .image-wrapper img {
    height: auto;
  }
}
.masthead .image-wrapper .video-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all ease-out 0.2s 0s;
}
.masthead .image-wrapper.playing .video-wrapper {
  opacity: 1;
  pointer-events: all;
}
.masthead .image-wrapper iframe {
  height: 100% !important;
  width: 100% !important;
}

.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: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .banner-form {
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .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;
}

@media screen and (min-width: 767px) {
  .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.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: flex;
  align-items: 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;
  transform: translate(-50%, 100%);
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  transition: all ease-out 0.2s 0s;
}
footer .scroll-to.visible {
  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: inline-flex;
  align-items: center;
  position: relative;
  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;
  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: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -45px;
  top: -45px;
}
@media screen and (max-width: 991px) {
  .video-modal .close {
    right: 0;
  }
}

.loader-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  background: #d7d7d7;
  height: 100%;
  width: 100%;
  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 #004880;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error {
  font-size: 0.8125rem;
  color: #CC0000;
}

.flex-container {
  display: flex;
  flex-direction: row;
  padding-top: 50px;
}
.flex-container .flex-left {
  width: 50%;
  padding: 16px;
}
.flex-container .flex-left img {
  width: 100%;
  height: auto;
}
.flex-container .flex-right {
  padding: 16px;
  width: 50%;
}
.flex-container .flex-right ul {
  padding: 0;
  list-style: none;
}
.flex-container .flex-right ul li {
  line-height: 1.75rem;
  padding-bottom: 10px;
}
.flex-container .flex-right p {
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .flex-container {
    flex-direction: column;
  }
  .flex-container .flex-left, .flex-container .flex-right {
    width: 100%;
    padding: 0;
  }
}

/*# sourceMappingURL=landing.css.map */
