@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;0,800;1,400;1,700&display=swap");
html, body {
  font-family: "Open Sans", sans-serif;
}

/*
@media (min-width: $xs) and (max-width: $sm - 1px){
  .row {
    margin-left: -25px;
    margin-right: -25px;
  }
  .row > .col,
  .row > [class*="col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media (min-width: $sm) {
  .row {
    margin-left: -25px;
    margin-right: -25px;
  }
  .row > .col,
  .row > [class*="col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
}
*/
.py-200px {
  padding-top: 200px;
  padding-bottom: 200px;
}

html, body {
  font-size: 14px;
}

.display-block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.up {
  text-transform: uppercase;
}

.clear {
  clear: both;
}

.font-active {
  color: #0077D4;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.font-active:hover, .font-active:focus {
  color: #003e6e;
}

.font-highlight {
  color: #880000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.font-highlight:hover, .font-highlight:focus {
  color: #0077D4;
}

.font-blue {
  color: #4c60a6;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.font-blue:hover, .font-blue:focus {
  color: #0077D4;
}

.serif {
  font-family: serif;
}

img {
  max-width: 100%;
}

header nav {
  padding: 4em 0;
}
header nav.open-navbar {
  background-color: #FF9E36 !important;
}
header nav.open-navbar li a.nav-link {
  color: #fff !important;
}
header nav.open-navbar li a.nav-link.btn.btn-primary {
  background-color: #fff !important;
  color: #64AEF9 !important;
}
header nav.open-navbar .navbar-collapse {
  padding-top: 60px;
}
header .navbar {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .navbar-brand-wrapper {
  position: relative;
  height: 45px;
}
header .navbar-brand-wrapper .navbar-brand {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 45px;
  padding: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header #menu-toggle-icon {
  z-index: 9999;
  background-color: transparent;
  outline: none;
  border: none;
  width: 30px;
  height: 15px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  margin: 1.2em 1.2em 0 0;
  padding: 1em 1em;
  -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;
}
header #menu-toggle-icon:hover {
  background-color: transparent;
}
@media screen and (min-width: 992px) {
  header #menu-toggle-icon {
    display: none;
  }
}
header #menu-toggle-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 9px;
  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;
}
header #menu-toggle-icon span:nth-child(1) {
  top: 0px;
}
header #menu-toggle-icon span:nth-child(2), header #menu-toggle-icon span:nth-child(3) {
  top: 16px;
}
header #menu-toggle-icon span:nth-child(4) {
  top: 32px;
}
header #menu-toggle-icon.open span:nth-child(1) {
  top: 16px;
  width: 0%;
  left: 50%;
}
header #menu-toggle-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header #menu-toggle-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header #menu-toggle-icon.open span:nth-child(4) {
  top: 16px;
  width: 0%;
  left: 50%;
}
header .main-navigation {
  z-index: 9999;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  padding: 1em;
  display: flex;
  align-items: start;
}
header .main-navigation ul.navbar-nav {
  list-style: none;
  margin: 0;
  padding-top: 1em;
  padding-left: 0;
}
header .main-navigation ul.navbar-nav li {
  position: relative;
}
header .main-navigation ul.navbar-nav li a.nav-link {
  display: inline-block;
  width: 100%;
  padding: 0.5em 1em 0.5em 0;
  text-decoration: none;
  color: #fff;
  border-bottom: 2px solid transparent;
}
header .main-navigation ul.navbar-nav li a.nav-link:hover, header .main-navigation ul.navbar-nav li a.nav-link:focus {
  text-decoration: none;
  border-bottom: 2px solid white;
}
header .main-navigation ul.navbar-nav li a.nav-link.btn.btn-primary {
  background-color: #fff;
  color: #64AEF9 !important;
  border: none;
  padding: 0.5em 1.5em !important;
  margin-top: 30px;
}
@media (min-width: 992px) {
  header .main-navigation ul.navbar-nav li a.nav-link.btn.btn-primary {
    margin-top: 0;
  }
}
header .main-navigation ul.navbar-nav li a.nav-link.btn.btn-primary:hover, header .main-navigation ul.navbar-nav li a.nav-link.btn.btn-primary:focus {
  border-bottom: none;
  color: #FF9E36 !important;
}
header .main-navigation ul.navbar-nav li.lang a.nav-link:hover, header .main-navigation ul.navbar-nav li.lang a.nav-link:focus {
  border-bottom: 2px solid transparent;
}
header .main-navigation ul.navbar-nav li.lang .dropdown-menu {
  min-width: 58px;
  text-align: center;
}
header .main-navigation ul.navbar-nav li.lang .dropdown-menu a.dropdown-item {
  border-bottom: none;
}
header .main-navigation ul.navbar-nav li.lang .dropdown-menu a.dropdown-item:hover, header .main-navigation ul.navbar-nav li.lang .dropdown-menu a.dropdown-item:focus {
  border-bottom: none;
}
@media screen and (max-width: 991px) {
  header .main-navigation ul.navbar-nav li.lang {
    text-align: center;
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  header .main-navigation {
    padding: 2em 2em;
  }
}
@media screen and (min-width: 992px) {
  header .menu-toggle {
    display: none;
  }
  header .main-navigation .menu-item-has-children > a,
header .main-navigation .page_item_has_children > a {
    padding-right: 2em;
    background: rgba(255, 255, 255, 0.1);
  }
  header .main-navigation ul {
    display: flex;
    flex-wrap: wrap;
  }
  header .main-navigation ul ul {
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 0;
  }
  header .main-navigation ul ul li {
    padding-left: 0;
  }
  header .main-navigation ul ul li a {
    width: 218px;
    background: none;
  }
  header .main-navigation ul li a {
    padding: 0.4em 1em !important;
  }
}
@media screen and (min-width: 992px) {
  header .main-navigation ul {
    justify-content: flex-end;
    padding-top: 0;
  }
}
header .navbar-brand img {
  width: 180px;
  height: 45px;
}
header.bg-transparent .navbar-brand.white {
  opacity: 1;
}
header.bg-transparent .navbar-brand.color {
  opacity: 0;
}
header.bg-white .navbar {
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.15);
}
header.bg-white .navbar.main-navigation ul li a {
  color: #64AEF9;
}
header.bg-white .navbar.main-navigation ul li a:hover, header.bg-white .navbar.main-navigation ul li a:focus {
  border-bottom: 2px solid #FF9E36;
}
header.bg-white .navbar.main-navigation ul li a.btn.btn-primary {
  background-color: #64AEF9;
  color: #fff !important;
}
header.bg-white .navbar.main-navigation ul li a.btn.btn-primary:hover, header.bg-white .navbar.main-navigation ul li a.btn.btn-primary:focus {
  border-bottom: none;
  background-color: #FF9E36 !important;
  color: #fff !important;
}
header.bg-white .navbar-brand.white {
  opacity: 0;
}
header.bg-white .navbar-brand.color {
  opacity: 1;
}

footer {
  overflow: hidden;
  color: white;
  background-color: #5B5B5B;
  border-top: 4px solid #F19532;
  padding: 40px 25px;
}
@media (max-width: 767px) {
  footer ul.list-group-horizontal {
    flex-direction: column;
  }
}
footer ul.list-group-horizontal .list-group-item {
  background-color: transparent;
  border: none;
}
footer ul.list-group-horizontal .list-group-item:last-child {
  margin-right: -1.25rem;
}
footer ul.list-group-horizontal .list-group-item a {
  color: #fff;
}
footer p {
  color: #fff;
  margin-bottom: 0;
}

.main {
  overflow: hidden;
}

section {
  overflow: hidden;
  padding: 10px;
}

section.hero {
  padding: 0;
}
section.hero img {
  border: 0;
  height: auto;
  max-width: 100%;
}
section.hero .jquery-background-video-wrapper {
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.hero .hero-container {
  width: 100%;
  height: 700px;
  overflow: hidden;
  background: url(/static/images/main-overlay_focuspoint_1400x742.jpg?key=b55aba58f46e2cdb0800e73844af04ec);
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 80px;
}
@media (max-width: 768px) {
  section.hero .hero-container {
    background: url(/static/images/main-overlay_focuspoint_700x371.jpg?key=c6d9eb2d89c3eb2792884d20639ba819);
    background-size: cover;
  }
}
@media screen and (max-width: 991px) {
  section.hero .hero-container {
    height: 800px;
  }
}
section.hero #particles-js {
  position: absolute;
  width: 100%;
  height: 1100px;
}
section.hero canvas {
  display: inline-block;
  vertical-align: baseline;
}
section.hero .hero-content {
  z-index: 8300;
  position: absolute;
  padding: 120px 4em;
  min-width: 100%;
  max-width: 900px;
  height: 600px;
}
@media screen and (max-width: 1199px) {
  section.hero .hero-content {
    padding: 60px 4em 120px;
  }
}
@media screen and (max-width: 991px) {
  section.hero .hero-content {
    padding: 20px 1em 120px;
    min-width: 0;
    max-width: inherit;
  }
}
section.hero .hero-content h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 36px;
  color: #fff;
  letter-spacing: 0.9px;
}
section.hero .hero-content h2 {
  max-width: 600px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  padding: 1em 1em 1em 0;
}
section.hero .hero-content ul {
  max-width: 600px;
  padding-left: 0;
}
section.hero .hero-content ul li {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1em;
}
section.hero .hero-content ul li span {
  padding-right: 20px;
}
section.hero .hero-content .btn {
  text-decoration: none;
  border: 1px solid;
  border-radius: 2px;
  border-color: #fff;
  color: white;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.75em 1em;
}
section.hero .hero-content .btn.btn-primary:hover, section.hero .hero-content .btn.btn-primary:focus {
  background: transparent;
}
section.hero .hero-content .btn.btn-outline-primary:hover, section.hero .hero-content .btn.btn-outline-primary:focus {
  background: #fff;
  color: #64AEF9;
}
section.hero .hero-content .btn .fa {
  padding-left: 10px;
  position: relative;
  top: 7px;
  font-size: 2em;
  line-height: 0;
}
section.hero .hero-elements {
  position: relative;
  height: 100%;
}
section.hero .hero-elements img {
  box-shadow: -4px 6px 5px 0px rgba(0, 0, 0, 0.17);
}
section.hero .hero-elements #win1 picture {
  transition: 0.4s;
  cursor: pointer;
  width: 27%;
  height: auto;
  max-width: 550px;
  position: absolute;
  bottom: -30px;
  right: 0px;
  z-index: 8500;
}
@media screen and (max-width: 991px) {
  section.hero .hero-elements #win1 picture {
    width: 40%;
  }
}
section.hero .hero-elements #win1 picture:hover, section.hero .hero-elements #win1 picture:focus {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
section.hero .hero-elements #win2 picture {
  transition: 0.4s;
  cursor: pointer;
  width: 27%;
  height: auto;
  position: absolute;
  bottom: -30px;
  right: 27%;
  z-index: 8400;
}
@media screen and (max-width: 991px) {
  section.hero .hero-elements #win2 picture {
    width: 40%;
    right: 40%;
  }
}
section.hero .hero-elements #win2 picture:hover, section.hero .hero-elements #win2 picture:focus {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.video-popup {
  display: none;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  min-width: 100%;
  height: 100vh;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.video-popup .demo-video {
  margin-top: 20px;
  width: 90%;
  height: 90vh;
}
.video-popup #demo-close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 40px;
  height: 43px;
  width: 45px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.video-popup #demo-close:hover {
  color: white;
  cursor: pointer;
  text-decoration: none;
}

section.feature .content {
  padding: 4em 2em;
}
@media (min-width: 1200px) {
  section.feature .content {
    padding: 4em;
  }
}
section.feature .content h3 {
  font-size: 18px;
  color: #64AEF9;
  font-weight: bold;
}
section.feature .content h3 {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.feature .content p {
  font-size: 16px;
  color: #232323;
}
section.feature .content ul {
  padding-left: 0;
}
section.feature .content ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #232323;
  padding-top: 14px;
}
section.feature .content ul li span, section.feature .content ul li img, section.feature .content ul li .fa {
  padding-right: 20px;
}
section.feature .content ul li .fa {
  color: #FF9E36;
  font-size: 26px;
  line-height: 30px;
  width: 48px;
  text-align: center;
}
section.feature .content .lead p:last-child {
  margin-bottom: 0;
}
section.feature .content .lead ul:last-child {
  margin-bottom: 0;
}
section.feature > .text-center h3 {
  margin-bottom: 45px;
}
section.feature .feature-container .multiple-image {
  width: 100%;
  height: 300px;
  background-color: white;
  background-size: cover !important;
  background-position: center center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
section.feature .feature-container .multiple-image.bg-contain {
  height: 200px;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  transition: 0.8s;
}
section.feature .feature-container .multiple-icon {
  position: relative;
  top: -40px;
  transition: 0.3s;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.15);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: inline-flex;
  background-color: white;
  height: 60px;
  width: 60px;
  border-radius: 60px;
}
section.feature .feature-container .multiple-icon svg {
  margin-top: 30px;
  margin-bottom: 25px;
}
section.feature .feature-container:hover .multiple-icon, section.feature .feature-container:focus .multiple-icon {
  box-shadow: 0px 0px 43px 3px rgba(255, 158, 54, 0.55);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
}
section.feature .feature-container:hover .multiple-image.bg-contain, section.feature .feature-container:focus .multiple-image.bg-contain {
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
section.feature .feature-container:hover h3, section.feature .feature-container:focus h3 {
  color: #FF9E36;
}
section.feature.with-icons {
  min-height: 300px;
  font-size: 16px;
  color: #434343;
}
section.feature.with-icons .d-flex, section.feature.with-icons .d-md-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 991px) {
  section.feature.with-icons .feature-container {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}
@media (max-width: 767px) {
  section.feature.with-icons .feature-container {
    flex: 0 0 33.3333333333% !important;
    max-width: 33.3333333333% !important;
  }
}
@media (max-width: 575px) {
  section.feature.with-icons .feature-container {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}
section.feature.with-icons .content {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
section.feature.with-icons .content a {
  display: inline-block;
}
section.feature.with-icons .content img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(10px) scale(0.9, 0.9);
  -moz-transform: translateY(10px) scale(0.9, 0.9);
  -ms-transform: translateY(10px) scale(0.9, 0.9);
  -o-transform: translateY(10px) scale(0.9, 0.9);
  transform: translateY(10px) scale(0.9, 0.9);
}
section.feature.with-icons .content:hover img, section.feature.with-icons .content:focus img {
  -webkit-transform: translateY(0) scale(1, 1);
  -moz-transform: translateY(0) scale(1, 1);
  -ms-transform: translateY(0) scale(1, 1);
  -o-transform: translateY(0) scale(1, 1);
  transform: translateY(0) scale(1, 1);
}
section.feature.with-images {
  min-height: 300px;
  background-color: #fff;
  font-size: 16px;
  color: #434343;
}
section.feature.with-images .d-flex {
  display: flex;
  justify-content: space-around;
  align-items: start;
}
section.feature.with-images .content {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
section.feature.with-images .content h3 {
  margin-top: 20px;
  font-weight: 300;
  font-size: 18px;
}
section.feature.with-images.with-images-and-icons .content {
  padding-top: 0;
  position: relative;
  top: -20px;
}
section.feature.bg-dark .content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
section.feature.bg-dark .content h3 {
  margin-bottom: 30px;
  color: #fff;
}
section.feature.bg-dark .content p {
  color: #fff;
}
section.feature.bg-dark .content p:last-child {
  margin-bottom: 0;
}
section.feature .row.justify-content-center .content {
  text-align: center;
}
section.feature a:hover, section.feature a:focus {
  text-decoration: none;
}

.bg-lightgray {
  background-color: #f9f9f9;
}

.btn-primary {
  color: #fff;
  background-color: #FF9E36;
  border-color: #FF9E36;
}
.btn-primary:hover, .btn-primary:focus {
  color: #FF9E36;
  background-color: #fff;
  border-color: #FF9E36;
}

section.pricing.margin-top--130px {
  margin-top: -130px;
}
section.pricing > .text-center {
  padding: 4em 4em 4em 4em;
}
section.pricing > .text-center h3 {
  font-size: 18px;
  color: #64AEF9;
  margin-bottom: 45px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.pricing > .text-center p {
  font-size: 16px;
  color: #232323;
}
section.pricing .pricing-wrapper {
  width: 100%;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
section.pricing .pricing-wrapper .pricing-item {
  transition: 0.3s;
  margin: 20px 0;
  min-width: 300px;
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 2em;
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.27);
}
section.pricing .pricing-wrapper .pricing-item .pricing-text h5, section.pricing .pricing-wrapper .pricing-item .pricing-text h6 {
  font-size: 1.6em;
  font-weight: bold;
  color: #3d2a63;
  margin-bottom: 30px;
}
section.pricing .pricing-wrapper .pricing-item .pricing-text h4 {
  color: #3d2a63;
  font-weight: 300;
  font-size: 3em;
}
section.pricing .pricing-wrapper .pricing-item .pricing-text .pricing-subline {
  margin-top: -10px;
  color: #FF9E36;
}
section.pricing .pricing-wrapper .pricing-item .pricing-text .pricing-description {
  margin-top: 30px;
  padding: 2em 0;
  color: #717171;
}
section.pricing .pricing-wrapper .pricing-item .regular-button {
  text-decoration: none;
  border-radius: 2px;
  border-color: #fff;
  background: #FF9E36;
  color: #fff;
  border: 0px solid #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.5em 1em;
}
section.pricing .pricing-wrapper .pricing-item .regular-button a {
  color: #fff;
}
section.pricing .pricing-wrapper .pricing-item .regular-button:hover, section.pricing .pricing-wrapper .pricing-item .regular-button:focus {
  background: #64AEF9;
}
section.pricing .pricing-wrapper .pricing-item .regular-button:hover a, section.pricing .pricing-wrapper .pricing-item .regular-button:focus a {
  text-decoration: none;
}
section.pricing .pricing-wrapper .pricing-item:hover, section.pricing .pricing-wrapper .pricing-item:focus {
  box-shadow: 0 0 43px 3px rgba(255, 158, 54, 0.55);
  -webkit-transform: scale(1.005, 1.005);
  transform: scale(1.005, 1.005);
}
section.pricing .pricing-wrapper .pricing-item:hover .pricing-text h6, section.pricing .pricing-wrapper .pricing-item:focus .pricing-text h6 {
  color: #FF9E36;
}

@media (max-width: 768px) {
  section.carousel .carousel-item {
    padding-left: 10%;
    padding-right: 10%;
  }
}
section.carousel .carousel-content {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 16px;
}
section.carousel .carousel-content .quote-content-wrapper .quote-img {
  margin-left: -6px;
}
section.carousel .carousel-content .quote-content-wrapper .quote-img picture {
  display: block;
  width: 112px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}
section.carousel .carousel-content.has-image .quote-from {
  padding-left: 150px;
}
section.carousel .border-wide {
  border-top: 3px solid rgba(255, 255, 255, 0.5);
}

.custom-page-header {
  background-size: cover;
  background-position: center, center;
  background-attachment: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 4em 1em;
  min-height: 600px;
  width: 100%;
  min-height: 400px;
  background-color: white;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.custom-page-header h1 {
  padding: 2em 0 0 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 36px;
  color: #fff;
  letter-spacing: 0.9px;
}
.custom-page-header .custom-page-header-description {
  padding: 3em 0;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 300;
  font-size: 24px;
  color: #fff;
}
.custom-page-header .brackets-container {
  margin-top: -2em;
  width: 100%;
}
.custom-page-header .brackets-container .brackets-path {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 3;
  stroke-miterlimit: 3;
  stroke-dasharray: 500;
  -webkit-animation: dash 3s linear infinite;
  -o-animation: dash 3s linear infinite;
  animation: dash 3s linear infinite;
}
@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}
@media screen and (max-width: 600px) {
  .custom-page-header .brackets-container .brackets-path {
    stroke-width: 15;
    stroke-miterlimit: 15;
  }
}

.custom-page-header-landing {
  padding: 0 1em;
}
.custom-page-header-landing h1 {
  padding: 1em 0 0 0 !important;
}

.custom-page-header-description-landing {
  padding: 1.5em 0 !important;
}

.inner-multiple-wrapper {
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.inner-multiple-wrapper .inner-multiple-item {
  min-height: 200px;
  max-width: 100%;
  min-width: 33.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.inner-multiple-wrapper .inner-multiple-item .inner-multiple-image {
  width: 100%;
  height: 200px;
  background-color: white;
  background-size: cover !important;
  background-position: center center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.inner-multiple-wrapper .inner-multiple-item .inner-multiple-text {
  color: white;
  width: 300px;
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
}
.inner-multiple-wrapper .inner-multiple-item .inner-multiple-text h3 {
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
.inner-multiple-wrapper .inner-multiple-item .inner-multiple-text .inner-multiple-description {
  font-weight: 300;
  font-size: 16px;
  margin: 0 0 0 0;
  padding: 10px 0 0 0;
}
@media screen and (max-width: 600px) {
  .inner-multiple-wrapper .inner-multiple-item {
    min-width: 100%;
  }
}

.play-wrapper, .article-wrapper {
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.play-wrapper .play-item, .play-wrapper .article-item, .article-wrapper .play-item, .article-wrapper .article-item {
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 1200px) {
  .play-wrapper .play-item, .play-wrapper .article-item, .article-wrapper .play-item, .article-wrapper .article-item {
    max-width: 33.33%;
    min-width: 33.33%;
  }
}
.play-wrapper .play-item .img-wrapper, .play-wrapper .article-item .img-wrapper, .article-wrapper .play-item .img-wrapper, .article-wrapper .article-item .img-wrapper {
  margin-left: auto;
  margin-right: auto;
}
.play-wrapper .play-item .play-video, .play-wrapper .article-item .play-video, .article-wrapper .play-item .play-video, .article-wrapper .article-item .play-video {
  height: 300px;
  background-color: white;
  background-size: cover !important;
  background-position: center center !important;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
  line-height: 1;
  border: none;
}
.play-wrapper .play-item .play-image, .play-wrapper .article-item .play-image, .article-wrapper .play-item .play-image, .article-wrapper .article-item .play-image {
  border-bottom: none !important;
  width: 100%;
  height: 300px;
  background-color: white;
  background-size: cover !important;
  background-position: center center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.play-wrapper .play-item .play-image .play-icon, .play-wrapper .article-item .play-image .play-icon, .article-wrapper .play-item .play-image .play-icon, .article-wrapper .article-item .play-image .play-icon {
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(255, 255, 255, 0.35);
  height: 60px;
  width: 60px;
  border-radius: 60px;
}
.play-wrapper .play-item .play-image .play-icon svg, .play-wrapper .article-item .play-image .play-icon svg, .article-wrapper .play-item .play-image .play-icon svg, .article-wrapper .article-item .play-image .play-icon svg {
  margin-top: 10px;
  margin-left: 3px;
}
.play-wrapper .play-item .play-text, .play-wrapper .play-item .article-text, .play-wrapper .article-item .play-text, .play-wrapper .article-item .article-text, .article-wrapper .play-item .play-text, .article-wrapper .play-item .article-text, .article-wrapper .article-item .play-text, .article-wrapper .article-item .article-text {
  width: 300px;
  padding: 50px 0;
  margin: 0 auto;
}
.play-wrapper .play-item .play-text h3, .play-wrapper .play-item .article-text h3, .play-wrapper .article-item .play-text h3, .play-wrapper .article-item .article-text h3, .article-wrapper .play-item .play-text h3, .article-wrapper .play-item .article-text h3, .article-wrapper .article-item .play-text h3, .article-wrapper .article-item .article-text h3 {
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
.play-wrapper .play-item .play-text .lead, .play-wrapper .play-item .article-text .lead, .play-wrapper .article-item .play-text .lead, .play-wrapper .article-item .article-text .lead, .article-wrapper .play-item .play-text .lead, .article-wrapper .play-item .article-text .lead, .article-wrapper .article-item .play-text .lead, .article-wrapper .article-item .article-text .lead {
  font-weight: 400;
  font-size: 16px;
  margin: 0 0 0 0;
  padding: 10px 0 0 0;
}
.play-wrapper .play-item .play-f, .play-wrapper .article-item .play-f, .article-wrapper .play-item .play-f, .article-wrapper .article-item .play-f {
  fill: #fff;
}
.play-wrapper .play-item:hover .play-icon, .play-wrapper .article-item:hover .play-icon, .article-wrapper .play-item:hover .play-icon, .article-wrapper .article-item:hover .play-icon {
  border: 2px solid white;
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
.play-wrapper.play-hero-wrapper, .article-wrapper.play-hero-wrapper {
  min-height: 500px;
}
@media (min-width: 1200px) {
  .play-wrapper.play-hero-wrapper .play-item, .article-wrapper.play-hero-wrapper .play-item {
    max-width: 50%;
    min-width: 50%;
  }
}
.play-wrapper.play-hero-wrapper .play-item:hover .play-icon, .article-wrapper.play-hero-wrapper .play-item:hover .play-icon {
  border: 2px solid white;
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
.play-wrapper.play-hero-wrapper .play-item .play-video, .article-wrapper.play-hero-wrapper .play-item .play-video {
  height: 500px;
}
.play-wrapper.play-hero-wrapper .play-item .play-image, .article-wrapper.play-hero-wrapper .play-item .play-image {
  height: 500px;
}
.play-wrapper.play-hero-wrapper .play-item .play-image .play-icon svg, .article-wrapper.play-hero-wrapper .play-item .play-image .play-icon svg {
  margin-top: 10px;
  margin-left: 3px;
}

.attachments {
  margin-top: 30px;
}
.attachments .attachment {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.attachments .attachment .file-icon {
  width: 70px;
  text-align: center;
}
.attachments .attachment .file-icon .small {
  font-size: 7px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
}
.attachments .attachment .file-content {
  font-size: 16px;
  color: #232323;
  padding-left: 20px;
}
.attachments .attachment .file-content h4 {
  font-size: 16px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 2rem;
}

#map {
  width: 100%;
  height: 500px;
}

.btn-light-outline {
  border: 2px solid #fff;
  color: #fff;
}
.btn-light-outline:hover, .btn-light-outline:focus {
  background-color: #fff;
  color: #FF9E36;
}

section.contact .intro {
  margin-bottom: 24px;
}
section.contact h3 {
  margin-bottom: 24px;
}
section.contact p, section.contact label {
  font-size: 16px;
  color: #232323;
}
section.contact .contact-main {
  color: #232323;
}
section.contact .contact-main .icons {
  margin-top: 70px;
  margin-bottom: 70px;
}
section.contact .contact-main .icons .flex-fill {
  padding-left: 20px;
  padding-right: 20px;
}
section.contact .contact-main h3 {
  letter-spacing: 1px;
  font-weight: bold;
}
section.contact .contact-main img {
  margin-top: 30px;
  margin-bottom: 30px;
}
section.contact .contact-main h4 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
}
section.contact .contact-main p {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
}
section.contact .contact-main ul {
  list-style: none;
  padding-left: 90px;
  max-width: 670px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-top: 40px;
}
section.contact .contact-main ul li {
  position: relative;
  min-height: 44px;
  margin-bottom: 40px;
}
section.contact .contact-main ul li:before {
  content: "";
  background-image: url("/static/images/icon-check.png");
  background-size: 100%;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -90px;
  width: 44px;
  height: 44px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

html {
  width: 100%;
  height: 100%;
}

body {
  min-height: 100%;
}

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