/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
   html {
    color: #222;
    font-size: 1em;
    line-height: 1.4; }
  
  /*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Vendor-prefixed and regular ::selection selectors cannot be combined:
   * https://stackoverflow.com/a/16982510/7133471
   *
   * Customize the background color to match your design.
   */
  ::-moz-selection {
    background: #b3d4fc;
    text-shadow: none; }
  
  ::selection {
    background: #b3d4fc;
    text-shadow: none; }
  
  /*
   * A better looking default horizontal rule
   */
  hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0; }
  
  /*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */
  audio,
  canvas,
  iframe,
  img,
  svg,
  video {
    vertical-align: middle; }
  
  /*
   * Remove default fieldset styles.
   */
  fieldset {
    border: 0;
    margin: 0;
    padding: 0; }
  
  /*
   * Allow only vertical resizing of textareas.
   */
  textarea {
    resize: vertical; }
  
  /*********************
  BREAKPOINTS
  *********************/
  /*********************
   BOOTSTRAP BREAKPOINTS
   *********************/
  /*********************
   BREAKPOINTS: Usage
   *********************/
  /*
   @include breakpoint(breakpointname) {
       ==== STYLES ====    
   }
   */
  .table {
    display: table; }
    .table-full {
      width: 100%;
      height: 100%;
      min-height: inherit;
      position: relative; }
      .table-full:after {
        content: "";
        display: table; }
  
  .table-row {
    display: table-row; }
  
  .table-cell {
    display: table-cell;
    vertical-align: middle; }
  
  .align-center {
    text-align: center; }
  
  .align-left {
    text-align: left; }
  
  .align-right {
    text-align: right; }
  
  .v-align-top {
    vertical-align: top; }
  
  .v-align-middle {
    vertical-align: middle; }
  
  .v-align-bottom {
    vertical-align: bottom; }
  
  .clearfix {
    overflow: auto; }
  
  .clearfix::after {
    content: "";
    clear: both;
    display: table; }
  
  .float-left {
    float: left; }
  
  .float-right {
    float: right; }
  
  .inline {
    display: inline; }
  
  .inline-block {
    display: inline-block; }
  
  .block {
    display: block; }
  
  ul.inline-block-group {
    list-style: none;
    padding-left: initial; }
    ul.inline-block-group li {
      display: inline-block;
      vertical-align: middle; }
  
  .case-upper {
    text-transform: uppercase; }
  
  .case-lower {
    text-transform: lowercase; }
  
  .case-proper {
    text-transform: capitalize; }
  
  .m-auto {
    margin: auto; }
  
  .img-responsive {
    width: 100%;
    height: auto; }
  
  .center-block {
    display: block;
    margin: 0 auto; }
  
  .bp-rel {
    position: relative; }
  
  .o-hidden {
    overflow: hidden; }
  
  .w100 {
    width: 100%; }
  
  .h100 {
    height: 100%; }
  
  .relative {
    position: relative; }
  
  .absolute {
    position: absolute; }
  
  .mobile-only {
    display: block; }
  
  .tablet-up {
    display: none; }
  
  .overflow-hidden {
    overflow: hidden;
    position: relative;
    height: 100%; }
  
  /* ==========================================================================
     Helper classes
     ========================================================================== */
  /*
   * Hide visually and from screen readers
   */
  .hidden {
    display: none !important; }
  
  /*
  * Hide only visually, but have it available for screen readers:
  * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
  *
  * 1. For long content, line feeds are not interpreted as spaces and small width
  *    causes content to wrap 1 word per line:
  *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
  */
  .visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    /* 1 */ }
  
  /*
  * Extends the .visuallyhidden class to allow the element
  * to be focusable when navigated to via the keyboard:
  * https://www.drupal.org/node/897638
  */
  .visuallyhidden.focusable:active,
  .visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit; }
  
  /*
  * Hide visually and from screen readers, but maintain layout
  */
  .invisible {
    visibility: hidden; }
  
  /*
  * Clearfix: contain floats
  *
  * For modern browsers
  * 1. The space content is one way to avoid an Opera bug when the
  *    `contenteditable` attribute is included anywhere else in the document.
  *    Otherwise it causes space to appear at the top and bottom of elements
  *    that receive the `clearfix` class.
  * 2. The use of `table` rather than `block` is only necessary if using
  *    `:before` to contain the top-margins of child elements.
  */
  .clearfix:before,
  .clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  
  .clearfix:after {
    clear: both; }
  
  /* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
  @media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */ }
  
  @media print, (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */ }
  
  /* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
  @media print {
    *,
    *:before,
    *:after {
      background: transparent !important;
      color: #000 !important;
      /* Black prints faster */
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      text-shadow: none !important; }
    a,
    a:visited {
      text-decoration: underline; }
    a[href]:after {
      content: " (" attr(href) ")"; }
    abbr[title]:after {
      content: " (" attr(title) ")"; }
    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
      content: ""; }
    pre {
      white-space: pre-wrap !important; }
    pre,
    blockquote {
      border: 1px solid #999;
      page-break-inside: avoid; }
    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
      display: table-header-group; }
    tr,
    img {
      page-break-inside: avoid; }
    p,
    h2,
    h3 {
      orphans: 3;
      widows: 3; }
    h2,
    h3 {
      page-break-after: avoid; } }
  
  b, strong {
    font-weight: bold; }
  
  * {
    outline: none !important;
    font-family: 'Montserrat', sans-serif; }
  
  /**
   * Owl Carousel v2.3.4
   * Copyright 2013-2018 David Deutsch
   * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
   */
  /*
   *  Owl Carousel - Core
   */
  .owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1; }
  
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  
  .owl-carousel.owl-loaded {
    display: block; }
  
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  
  .owl-carousel.owl-hidden {
    opacity: 0; }
  
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab; }
  
  .owl-carousel.owl-rtl {
    direction: rtl; }
  
  .owl-carousel.owl-rtl .owl-item {
    float: right; }
  
  /* No Js */
  .no-js .owl-carousel {
    display: block; }
  
  /*
     *  Owl Carousel - Animate Plugin
     */
  .owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  
  .owl-carousel .owl-animated-in {
    z-index: 0; }
  
  .owl-carousel .owl-animated-out {
    z-index: 1; }
  
  .owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut; }
  
  @-webkit-keyframes fadeOut {
    0% {
      opacity: 1; }
    100% {
      opacity: 0; } }
  
  @keyframes fadeOut {
    0% {
      opacity: 1; }
    100% {
      opacity: 0; } }
  
  /*
     * 	Owl Carousel - Auto Height Plugin
     */
  .owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out; }
  
  /*
     * 	Owl Carousel - Lazy Load Plugin
     */
  .owl-carousel .owl-item {
    /**
                This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
                calculation of the height of the owl-item that breaks page layouts
             */ }
  
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease; }
  
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  
  .owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d; }
  
  /*
     * 	Owl Carousel - Video Plugin
     */
  .owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000; }
  
  .owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    -o-transition: transform 100ms ease;
    transition: transform 100ms ease;
    transition: transform 100ms ease, -webkit-transform 100ms ease; }
  
  .owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3); }
  
  .owl-carousel .owl-video-playing .owl-video-tn,
  .owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none; }
  
  .owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease; }
  
  .owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%; }
  
  .container__two-col-carousel {
    position: relative;
    width: 100%;
    font-size: 0.938vw; }
    .container__two-col-carousel .two-col-carousel-wrapper {
      width: 100%;
      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;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; }
      @media only screen and (max-width: 767px) {
        .container__two-col-carousel .two-col-carousel-wrapper {
          display: block; } }
    .container__two-col-carousel .col {
      position: relative;
      width: 50%; }
      .container__two-col-carousel .col::before {
        display: block;
        content: '';
        padding-bottom: 100%; }
      @media only screen and (max-width: 767px) {
        .container__two-col-carousel .col {
          width: 100%; }
          .container__two-col-carousel .col:last-child::before {
            display: none; }
          .container__two-col-carousel .col:last-child .content-wrapper {
            height: auto;
            position: relative;
            background-color: #1954cf; } }
    .container__two-col-carousel .content-wrapper {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0; }
    .container__two-col-carousel .content {
      position: relative;
      width: 100%;
      height: 100%; }
    .container__two-col-carousel .column-carousel, .container__two-col-carousel .column-text-carousel {
      width: 100%;
      height: 100%;
      position: relative; }
    .container__two-col-carousel .item-wrapper {
      width: 100%;
      height: 100%; }
    .container__two-col-carousel .item-img {
      height: 100%;
      width: 100%; }
    .container__two-col-carousel .owl-stage-outer {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden; }
    .container__two-col-carousel .owl-stage, .container__two-col-carousel .owl-item {
      height: 100%; }
    .container__two-col-carousel .owl-item {
      display: inline-block; }
    .container__two-col-carousel .text-content {
      width: 100%;
      height: 100%;
      position: relative;
      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;
      background-color: #1954cf;
      color: #ffffff; }
      .container__two-col-carousel .text-content-wrapper {
        display: block;
        width: 100%;
        padding: 0 1.667em; }
        @media only screen and (max-width: 767px) {
          .container__two-col-carousel .text-content-wrapper {
            padding: 30px; } }
    .container__two-col-carousel .line-separator {
      width: 4.444em;
      height: 1px;
      margin: 2.778em 0px 3.333em 0px;
      background-color: #ffffff; }
      @media only screen and (max-width: 767px) {
        .container__two-col-carousel .line-separator {
          width: 80px; } }
    .container__two-col-carousel .text-title h4 {
      font-size: 2.000em;
      line-height: 1.2;
      letter-spacing: 3.2px !important;
      font-weight: 500 !important;
      margin: 0;
      color: #ffffff; }
      @media only screen and (max-width: 767px) {
        .container__two-col-carousel .text-title h4 {
          font-size: 36px; } }
    .container__two-col-carousel .text-paragraph p {
      font-weight: 400;
      color: #ffffff;
      font-size: 1em;
      line-height: 1.7;
      margin: 0 !important; }
      @media only screen and (max-width: 767px) {
        .container__two-col-carousel .text-paragraph p {
          font-size: 18px; } }
    .container__two-col-carousel .owl-nav {
      display: none; }
    .container__two-col-carousel .column-text-carousel .owl-dots {
      position: absolute;
      bottom: 1.556em;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
      .container__two-col-carousel .column-text-carousel .owl-dots .owl-dot {
        width: 0.556em;
        height: 0.556em;
        border-radius: 50%;
        border: 1px solid white;
        margin: 0 0.278em; }
        .container__two-col-carousel .column-text-carousel .owl-dots .owl-dot.active {
          background-color: white; }
        @media (max-width: 767px) {
          .container__two-col-carousel .column-text-carousel .owl-dots .owl-dot {
            margin: 0 5px; } }
      @media (max-width: 767px) {
        .container__two-col-carousel .column-text-carousel .owl-dots {
          bottom: 20px;
          display: none !important; } }
  