h1 {
  font-family: montserrat, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 26px; }
  @media (min-width: 576px) {
    h1 {
      font-size: 42px; } }

h2 {
  font-family: montserrat, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 22px; }
  @media (min-width: 576px) {
    h2 {
      font-size: 30px; } }

h3 {
  font-family: montserrat, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px; }
  @media (min-width: 576px) {
    h3 {
      font-size: 24px; } }

h4 {
  font-family: montserrat, sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase; }

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s; }

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s; }

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s; }

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms; }

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms; }

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s; }

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important; } }
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .header .top-bar {
    background-color: #313131;
    padding: 10px 0;
    color: white;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .header .top-bar svg {
      color: #198ad4; }
    .header .top-bar a {
      color: white; }
  .header .main-bar {
    background-color: white;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  .header .logo img {
    padding: 20px 0;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  .header ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
    .header ul > li {
      display: none;
      margin-right: 30px; }
      @media screen and (min-width: 992px) {
        .header ul > li {
          display: inline-block; } }
      .header ul > li.menu-btn {
        display: inline-block; }
      .header ul > li:last-child {
        margin-right: 0; }
  .header .menu-toggle {
    color: #313131;
    font-size: 20px; }
  .header.scrolled {
    -webkit-box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137);
    -moz-box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137);
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137); }
    .header.scrolled .top-bar {
      padding: 5px 0; }
    .header.scrolled .logo img {
      padding: 15px 0; }

.mobile-menu {
  height: 100vh;
  position: fixed;
  right: -350px;
  width: 350px;
  background-color: white;
  top: 0;
  color: white;
  z-index: 15;
  border-left: 2px solid #198ad4;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .mobile-menu .inner {
    position: relative;
    padding: 60px 20px; }
    .mobile-menu .inner .menu-toggle {
      position: absolute;
      right: 20px;
      top: 20px;
      font-size: 20px;
      cursor: pointer;
      color: #6d6d6d; }
    .mobile-menu .inner ul {
      padding-left: 0;
      margin-bottom: 0;
      list-style: none;
      text-align: center; }
      .mobile-menu .inner ul li {
        margin-bottom: 30px; }
        .mobile-menu .inner ul li a {
          font-size: 18px; }
        .mobile-menu .inner ul li:last-child {
          margin-bottom: 0; }
        .mobile-menu .inner ul li.menu-btn {
          display: inline-block; }
  .mobile-menu.active {
    right: 0; }

.footer .main-bar {
  background-color: #313131;
  padding: 30px 0; }
  @media screen and (min-width: 992px) {
    .footer .main-bar {
      padding: 40px 0; } }
  .footer .main-bar .title {
    color: #198ad4; }
  .footer .main-bar .content {
    color: white; }
    .footer .main-bar .content p:last-child {
      margin-bottom: 0; }
    .footer .main-bar .content > ul {
      padding-left: 0;
      margin-bottom: 0;
      list-style: none; }
      .footer .main-bar .content > ul li {
        display: block;
        margin-bottom: 5px; }
        .footer .main-bar .content > ul li:last-child {
          margin-bottom: 0; }
      .footer .main-bar .content > ul .text-btn {
        color: white;
        font-weight: normal; }
.footer .bottom-bar {
  background-color: #1b1516;
  padding: 10px 0; }
.footer .site-notification {
  padding: 20px 0;
  background-color: #198ad4;
  font-size: 26px;
  text-transform: uppercase;
  color: white;
  -webkit-box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137);
  -moz-box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137);
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137);
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: none; }
  .footer .site-notification .text-btn {
    font-size: 26px;
    text-transform: uppercase;
    color: white; }
.footer.scrolled .site-notification {
  bottom: -100px; }

.btn, .header ul > li.menu-btn a, .mobile-menu .inner ul li.menu-btn a, .gform_wrapper .gform_footer .gform_button {
  background-color: #198ad4;
  padding: 10px 15px !important;
  color: #fff;
  border-radius: 4px !important;
  text-transform: uppercase;
  white-space: normal !important;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .btn:hover, .header ul > li.menu-btn a:hover, .mobile-menu .inner ul li.menu-btn a:hover, .gform_wrapper .gform_footer .gform_button:hover {
    background-color: #177cbf;
    color: #fff !important; }
  .btn.btn-orange, .header ul > li.menu-btn a, .mobile-menu .inner ul li.menu-btn a, .gform_wrapper .gform_footer .btn-orange.gform_button, .gform_wrapper .gform_footer .header ul > li.menu-btn a.gform_button, .header ul > li.menu-btn .gform_wrapper .gform_footer a.gform_button {
    background-color: #ff9800;
    color: white !important; }
    .btn.btn-orange:hover, .header ul > li.menu-btn a:hover, .mobile-menu .inner ul li.menu-btn a:hover, .gform_wrapper .gform_footer .btn-orange.gform_button:hover {
      background-color: #e68900;
      color: white !important; }
  .btn.btn-outline, .header ul > li.menu-btn a.btn-outline, .mobile-menu .inner ul li.menu-btn a.btn-outline, .gform_wrapper .gform_footer .btn-outline.gform_button {
    background-color: transparent !important;
    border: 2px solid #ff9800;
    color: #6d6d6d; }
    .btn.btn-outline:hover, .header ul > li.menu-btn a.btn-outline:hover, .mobile-menu .inner ul li.menu-btn a.btn-outline:hover, .gform_wrapper .gform_footer .btn-outline.gform_button:hover {
      background-color: #ff9800 !important;
      color: white !important; }

.text-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none; }
  .text-btn:after {
    content: '\f178';
    font-family: "Font Awesome 5 Pro";
    margin-left: 10px;
    color: #ff9800;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  .text-btn:hover {
    text-decoration: none; }
    .text-btn:hover:after {
      margin-left: 15px; }

#page {
  -webkit-transition: -webkit-transform .28s, opacity .28s;
  -ms-transition: -o-transform .28s, opacity .28s;
  -o-transition: -o-transform .28s, opacity .28s;
  transition: transform .28s, opacity .28s; }

.slide-out #page {
  -webkit-transform: translate3d(0, 100px, 0);
  -ms-transform: translate3d(0, 100px, 0);
  -o-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  opacity: 0; }

html {
  font-size: 16px; }

body {
  font-size: 1rem;
  font-family: pt-sans, sans-serif;
  color: #6d6d6d;
  font-weight: 400; }

img {
  height: auto;
  width: 100%; }

.lozad {
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0; }
  .lozad.done-loading {
    opacity: 1; }

p {
  line-height: 24px; }

@media screen and (min-width: 1200px) {
  .container.container-wide {
    max-width: 1366px !important; } }

.noscroll {
  overflow: hidden; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.vpc-init {
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0; }
  .vpc-init.vpc-visible {
    opacity: 1;
    animation-duration: 500ms;
    animation-name: fadeInUp; }

.gform_wrapper img.gform_ajax_spinner {
  display: none !important; }
.gform_wrapper .top_label div.ginput_container {
  margin-top: 0 !important; }
.gform_wrapper .hidden_label .gfield_label {
  display: none !important; }
.gform_wrapper ul.gform_fields {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .gform_wrapper ul.gform_fields > li {
    margin-top: 15px !important; }
    .gform_wrapper ul.gform_fields > li:first-child {
      margin-top: 0 !important; }
    .gform_wrapper ul.gform_fields > li.hidden_label input {
      margin-top: 0 !important; }
    .gform_wrapper ul.gform_fields > li .ginput_container input, .gform_wrapper ul.gform_fields > li .ginput_container textarea {
      width: 100%;
      border: none;
      border-radius: 3px;
      outline: none;
      padding: 10px 15px !important;
      -moz-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
    .gform_wrapper ul.gform_fields > li .ginput_container input[type=radio] {
      margin-top: 0;
      margin-right: 10px; }
    .gform_wrapper ul.gform_fields > li .ginput_container .gfield_radio {
      margin: 0; }
      .gform_wrapper ul.gform_fields > li .ginput_container .gfield_radio li {
        display: inline-block;
        margin-right: 15px; }
        .gform_wrapper ul.gform_fields > li .ginput_container .gfield_radio li:last-child {
          margin-right: 0; }
    .gform_wrapper ul.gform_fields > li .ginput_container textarea {
      max-height: 120px; }
.gform_wrapper .gform_footer {
  margin-top: 0 !important; }
  .gform_wrapper .gform_footer .gform_button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    cursor: pointer; }

.home-head {
  padding: 60px 0;
  position: relative; }
  @media screen and (min-width: 992px) {
    .home-head {
      padding: 80px 0; } }
  .home-head .title {
    color: #198ad4; }
  .home-head .subtitle {
    font-size: 18px;
    font-family: montserrat, sans-serif;
    color: #434242; }
  .home-head .home-head-slider-wrapper {
    position: relative; }
    .home-head .home-head-slider-wrapper .home-head-slider-prev, .home-head .home-head-slider-wrapper .home-head-slider-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      font-size: 22px;
      color: #313131;
      -moz-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      .home-head .home-head-slider-wrapper .home-head-slider-prev:hover, .home-head .home-head-slider-wrapper .home-head-slider-next:hover {
        color: #198ad4; }
    .home-head .home-head-slider-wrapper .home-head-slider-prev {
      left: -15px; }
    .home-head .home-head-slider-wrapper .home-head-slider-next {
      right: -15px; }
    .home-head .home-head-slider-wrapper .slick-dots {
      padding-left: 0;
      margin-bottom: 0;
      list-style: none;
      text-align: center; }
      .home-head .home-head-slider-wrapper .slick-dots > li {
        display: inline-block;
        cursor: pointer;
        margin-right: 10px; }
        .home-head .home-head-slider-wrapper .slick-dots > li:before {
          content: '\f111';
          font-family: "Font Awesome 5 Pro";
          color: #ff9800; }
        .home-head .home-head-slider-wrapper .slick-dots > li.slick-active:before {
          font-weight: bold; }
        .home-head .home-head-slider-wrapper .slick-dots > li:last-child {
          margin-right: 0; }
        .home-head .home-head-slider-wrapper .slick-dots > li button {
          display: none; }

.home-slider-wrapper {
  position: relative; }
  .home-slider-wrapper .home-slider-prev, .home-slider-wrapper .home-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 22px;
    z-index: 11;
    color: #313131;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .home-slider-wrapper .home-slider-prev:hover, .home-slider-wrapper .home-slider-next:hover {
      color: #198ad4; }
  .home-slider-wrapper .home-slider-prev {
    left: 15px; }
  .home-slider-wrapper .home-slider-next {
    right: 15px; }

.home-repeat {
  background-color: #ededed;
  padding: 60px 0;
  position: relative; }
  @media screen and (min-width: 992px) {
    .home-repeat {
      padding: 80px 0; } }
  .home-repeat .home-repeat-back {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8; }
  .home-repeat .title {
    color: #198ad4; }
  .home-repeat .item .inner {
    padding: 20px;
    background-color: white; }

.content-page {
  padding: 60px 0; }
  @media screen and (min-width: 992px) {
    .content-page {
      padding: 100px 0; } }
  .content-page .repeat-item {
    margin-bottom: 60px; }
    @media screen and (min-width: 992px) {
      .content-page .repeat-item {
        margin-bottom: 100px; } }
    .content-page .repeat-item .title {
      color: #198ad4; }
    .content-page .repeat-item .subtitle {
      font-size: 18px;
      font-family: montserrat, sans-serif;
      color: #434242; }
    .content-page .repeat-item:last-child {
      margin-bottom: 0; }
    @media screen and (min-width: 992px) {
      .content-page .repeat-item:nth-child(even) .textside {
        padding-left: 3rem; } }
    @media screen and (min-width: 992px) {
      .content-page .repeat-item:nth-child(even) .mediaside {
        padding-right: 3rem; } }
    @media screen and (min-width: 992px) {
      .content-page .repeat-item:nth-child(odd) {
        flex-direction: row-reverse; } }
    @media screen and (min-width: 992px) {
      .content-page .repeat-item:nth-child(odd) .textside {
        padding-right: 3rem; } }
    @media screen and (min-width: 992px) {
      .content-page .repeat-item:nth-child(odd) .mediaside {
        padding-left: 3rem; } }

.home-content .content-page .repeat-item {
  margin-bottom: 60px; }
  .home-content .content-page .repeat-item:last-child {
    margin-bottom: 0 !important; }
  @media screen and (min-width: 992px) {
    .home-content .content-page .repeat-item:nth-child(odd) {
      flex-direction: row; } }
  @media screen and (min-width: 992px) {
    .home-content .content-page .repeat-item:nth-child(odd) .textside {
      padding-left: 3rem; } }
  @media screen and (min-width: 992px) {
    .home-content .content-page .repeat-item:nth-child(odd) .mediaside {
      padding-right: 3rem; } }
  @media screen and (min-width: 992px) {
    .home-content .content-page .repeat-item:nth-child(even) {
      flex-direction: row-reverse; } }
  @media screen and (min-width: 992px) {
    .home-content .content-page .repeat-item:nth-child(even) .textside {
      padding-right: 3rem; } }
  @media screen and (min-width: 992px) {
    .home-content .content-page .repeat-item:nth-child(even) .mediaside {
      padding-left: 3rem; } }

.faq-block {
  background-color: #ededed;
  padding: 60px 0; }
  @media screen and (min-width: 992px) {
    .faq-block {
      padding: 100px 0; } }
  .faq-block .title {
    color: #198ad4; }
  .faq-block .faq-category {
    margin-bottom: 60px; }
    .faq-block .faq-category:last-child {
      margin-bottom: 0; }
    .faq-block .faq-category .faq-item {
      border-bottom: 1px solid #ededed;
      background-color: white; }
      .faq-block .faq-category .faq-item .question {
        font-size: 20px;
        padding: 20px 20px;
        cursor: pointer;
        position: relative;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
        .faq-block .faq-category .faq-item .question:after {
          content: "\f13a";
          font-family: "Font Awesome 5 Pro";
          position: absolute;
          right: 20px;
          top: 50%;
          color: #ff9800;
          transform: translateY(-50%);
          -moz-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out; }
      .faq-block .faq-category .faq-item .answer {
        overflow: hidden;
        max-height: 0;
        padding: 0 20px;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
      .faq-block .faq-category .faq-item.active .question {
        color: #198ad4; }
        .faq-block .faq-category .faq-item.active .question:after {
          content: "\f139"; }
      .faq-block .faq-category .faq-item.active .answer {
        max-height: 1000px; }

.presskit-block {
  background-color: #ededed;
  padding: 60px 0; }
  @media screen and (min-width: 992px) {
    .presskit-block {
      padding: 100px 0; } }
  .presskit-block .title {
    color: #198ad4; }

.press-list li {
  padding-left: 50px;
  position: relative;
  margin-bottom: 25px; }
  .press-list li a {
    font-size: 18px; }
    @media screen and (min-width: 768px) {
      .press-list li a {
        font-size: 22px; } }
  .press-list li .svg-icon {
    position: absolute;
    left: 0;
    width: 25px;
    top: 0;
    text-align: center;
    color: #198ad4;
    font-size: 22px; }
  .press-list li:last-child {
    margin-bottom: 0; }

.gallery-block {
  background-color: #ededed;
  padding: 60px 0; }
  @media screen and (min-width: 992px) {
    .gallery-block {
      padding: 100px 0; } }
  .gallery-block .title {
    color: #198ad4; }

.normal-page {
  background-color: #ededed;
  padding: 60px 0; }
  @media screen and (min-width: 992px) {
    .normal-page {
      padding: 100px 0; } }
  .normal-page .title {
    color: #198ad4; }
  .normal-page.form ul.gform_fields li {
    margin-top: 30px !important; }
  .normal-page.form .gform_footer {
    margin-top: 30px !important; }

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