/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.nav {
  width: 100%; }
  .nav__top {
    width: 100%;
    background-color: #FFFFFF;
    padding: 0 20px; }
  .nav__bottom {
    width: 100%;
    background-color: #0d2340; }
  .nav__inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 0 20px; }
    @media screen and (min-width: 1024px) {
      .nav__inner {
        padding: 0 0px; } }
    .nav__inner--padding {
      padding: 20px 0; }
  .nav__logo {
    display: inline-block;
    max-width: 150px; }
    @media screen and (max-width: 480px) {
      .nav__logo {
        max-width: 150px; } }
    @media screen and (min-width: 768px) {
      .nav__logo {
        max-width: 250px; } }
  .nav__hamburger {
    display: inline-block;
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0;
    cursor: pointer;
    appearance: none;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none !important; }
    @media screen and (min-width: 1024px) {
      .nav__hamburger {
        display: none; } }
    .nav__hamburger span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      background: #FFFFFF;
      border-radius: 4px;
      opacity: 1;
      left: 0; }
      .nav__hamburger span:nth-child(1) {
        top: 0px; }
      .nav__hamburger span:nth-child(2) {
        top: 9px; }
      .nav__hamburger span:nth-child(3) {
        top: 18px; }
  .nav__list {
    display: none;
    padding: 0;
    margin: 0; }
    @media screen and (min-width: 1024px) {
      .nav__list {
        display: inline-block; } }
  .nav__item {
    display: inline-block;
    list-style-type: none;
    font-size: 17px;
    font-family: "BentonSans-Regular";
    color: #FFFFFF;
    cursor: pointer;
    padding: 17px 10px;
    margin: 0 10px;
    /*border-bottom: 3px solid $dark-blue;*/
    line-height: 28px; }
    .nav__item:first-child {
      margin-left: 0; }
    .nav__item:last-child {
      margin-right: 0; }
    .nav__item:hover {
      background-color: #4c586e; }
      .nav__item:hover > .nav__dropdown {
        display: block; }
    .nav__item a {
      color: #FFFFFF;
      text-decoration: none; }
      .nav__item a:hover {
        color: #FFFFFF;
        text-decoration: none; }
  .nav__link {
    display: block;
    font-size: 16px;
    font-family: "BentonSans-Light";
    color: #FFFFFF;
    text-decoration: none; }
    .nav__link:hover {
      color: #FFFFFF; }
  .nav__dropdown {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #FFFFFF;
    left: 0;
    right: 0;
    top: 100%;
    -webkit-box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
    min-height: 420px; }
  .nav__dropdown-inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    height: 100%;
    clear: both;
    min-height: 420px; }
  .nav__level1 {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 50%;
    background-color: #efefef;
    height: 100%;
    min-height: 520px; }
  .nav__level1-item {
    display: block;
    list-style-type: none;
    padding: 10px;
    color: #4a4a4a;
    transition: all 0.25s ease;
    cursor: pointer; }
    @media screen and (min-width: 1024px) {
      .nav__level1-item {
        padding: 15px; } }
    .nav__level1-item a {
      text-decoration: none;
      color: #4a4a4a; }
    .nav__level1-item:hover {
      background-color: #b66733;
      color: #FFFFFF; }
      .nav__level1-item:hover a {
        color: #FFFFFF; }
      .nav__level1-item:hover > .nav__level2 {
        display: block; }
  .nav__level2 {
    display: none;
    margin: 0;
    padding: 0;
    width: 110%;
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    color: #4a4a4a !important;
    /*overflow: scroll;*/ }
  .nav__level2-item {
    display: block;
    list-style-type: none;
    padding: 10px;
    color: #4a4a4a !important;
    transition: all 0.25s ease;
    cursor: pointer;
    height: 58px; }
    @media screen and (min-width: 1024px) {
      .nav__level2-item {
        padding: 20px; } }
    .nav__level2-item a {
      text-decoration: none;
      color: #4a4a4a !important; }
    .nav__level2-item:hover {
      background-color: #efefef;
      color: #4a4a4a; }
      .nav__level2-item:hover a {
        color: #4a4a4a; }
      .nav__level2-item:hover > .nav__level3 {
        display: block; }
  .nav__level3 {
    display: none;
    margin: 20px;
    padding: 0;
    width: 100%;
    position: relative;
    left: 100%;
    top: 0;
    bottom: 0;
    color: #4a4a4a !important;
    /*overflow: scroll;*/
    margin-top: -48px; }
  .nav__level3-item {
    display: block;
    list-style-type: none;
    padding: 10px;
    color: #4a4a4a !important;
    transition: all 0.25s ease;
    cursor: pointer;
    height: 58px; }
    @media screen and (min-width: 1024px) {
      .nav__level3-item {
        padding: 20px; } }
    .nav__level3-item a {
      text-decoration: none;
      color: #4a4a4a !important; }
    .nav__level3-item:hover {
      background-color: #efefef;
      color: #4a4a4a; }
      .nav__level3-item:hover a {
        color: #4a4a4a; }
  .nav__search {
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding: 5px 0; }
    @media screen and (min-width: 768px) {
      .nav__search {
        padding: 0; } }
  .nav__promo {
    display: block;
    position: relative;
    padding: 20px 0; }
  .nav__promo-image {
    display: block;
    width: 100%; }
  .nav__promo-content {
    padding: 40px 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .nav__promo-content .button {
      position: absolute;
      bottom: 40px;
      left: 20px; }
  .nav__mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #0d2340;
    z-index: 9999;
    transition: left 0.25s ease;
    padding: 20px 0; }
    .nav__mobile--open {
      left: 0; }
  .nav__mobile-header {
    padding: 0 20px 20px 20px;
    width: 100%; }
  .nav__mobile-close {
    color: #FFFFFF;
    font-size: 50px;
    line-height: 50px;
    float: right;
    appearance: none;
    background-color: transparent;
    border: none;
    box-shadow: none; }
  .nav__mobile-list {
    padding: 20px;
    display: block;
    margin: 0;
    height: 100%;
    overflow-y: scroll; }
  .nav__mobile-item {
    display: block;
    list-style-type: none;
    padding: 10px 0;
    font-size: 18px;
    font-family: "BentonSans-Light";
    color: #FFFFFF;
    text-decoration: none; }
    .nav__mobile-item a {
      font-size: 18px;
      font-family: "BentonSans-Light";
      color: #FFFFFF;
      text-decoration: none; }
      .nav__mobile-item a:hover {
        color: #FFFFFF; }
  .nav__mobile-level1-item {
    display: block;
    list-style-type: none;
    padding: 10px 0;
    font-size: 16px;
    font-family: "BentonSans-Light";
    color: #f3f3f3;
    text-decoration: none; }
    .nav__mobile-level1-item a {
      font-size: 16px;
      font-family: "BentonSans-Light";
      color: #f3f3f3;
      text-decoration: none; }
      .nav__mobile-level1-item a:hover {
        color: #f3f3f3; }
  .nav__mobile-level2-item {
    display: block;
    list-style-type: none;
    padding: 10px 0;
    font-size: 14px;
    font-family: "BentonSans-Light";
    color: #7c858c;
    text-decoration: none; }
    .nav__mobile-level2-item a {
      font-size: 14px;
      font-family: "BentonSans-Light";
      color: #7c858c;
      text-decoration: none; }
      .nav__mobile-level2-item a:hover {
        color: #7c858c; }
  .nav__mobile-level3-item {
    display: block;
    list-style-type: none;
    padding: 10px 0;
    font-size: 14px;
    font-family: "BentonSans-Light";
    color: #7c858c;
    text-decoration: none; }
    .nav__mobile-level3-item a {
      font-size: 14px;
      font-family: "BentonSans-Light";
      color: #7c858c;
      text-decoration: none; }
      .nav__mobile-level3-item a:hover {
        color: #7c858c; }
  .nav__mobile-level1 {
    display: block;
    padding-left: 15px; }
  .nav__mobile-level2 {
    display: block;
    padding-left: 15px; }
  .nav__mobile-level3 {
    display: block;
    padding-left: 15px; }

/*****************
Search
*****************/
.search__input {
  font-family: "BentonSans-Light";
  display: inline-block;
  background: #efefef;
  border: none;
  padding: 10px 60px 10px 20px;
  color: #7c858c;
  font-size: 14px;
  appearance: none;
  width: 65px;
  transition: all 0.5s ease;
  outline: none;
  border-radius: 0; }
  .search__input ~ .search__button {
    background-image: url(/assets/icons/SVG/icon-search.dfdc019d792f4f32904f62d6df785667.svg); }
  @media screen and (min-width: 768px) {
    .search__input {
      font-size: 19px;
      color: #7c858c; } }
  .search__input:focus {
    width: 100%;
    background-color: #FFFFFF;
    color: #0d2340; }
    .search__input:focus ~ .search__button {
      background-image: url(/assets/icons/SVG/icon-search.dfdc019d792f4f32904f62d6df785667.svg); }

.search__button {
  display: inline-block;
  background-color: transparent;
  border: none;
  appearance: none;
  position: absolute;
  right: 7px;
  top: 12px;
  height: 21px;
  width: 23px;
  background-image: url(/assets/icons/SVG/icon-search.dfdc019d792f4f32904f62d6df785667.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s ease; }
  @media screen and (min-width: 768px) {
    .search__button {
      top: 7px;
      right: 7px;
      height: 22px;
      width: 22px; } }
  @media screen and (min-width: 1024px) {
    .search__button {
      right: 7px;
      top: 7px;
      height: 22px;
      width: 25px; } }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.button {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  font-size: 19px;
  font-family: "BentonSans-Regular";
  text-decoration: none;
  appearance: none; }
  @media screen and (min-width: 768px) {
    .button {
      line-height: 28px;
      min-height: 48px;
      min-width: 263px; } }
  .button--blue {
    background-color: #0d2340;
    color: #FFFFFF; }
    .button--blue:hover {
      color: #FFFFFF; }
  .button--orange {
    background-color: #b66733;
    color: #FFFFFF; }
    .button--orange:hover {
      color: #FFFFFF; }
  .button--accounts {
    padding-right: 45px; }
    .button--accounts:after {
      content: '';
      position: absolute;
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      width: 22px;
      height: 22px;
      right: 23px;
      top: 12px; }
  .button--arrow {
    padding-right: 60px; }
    .button--arrow:after {
      content: '';
      position: absolute;
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      width: 20px;
      height: 18px;
      right: 15px;
      top: 10px; }

.button-short {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  font-size: 19px;
  font-family: "BentonSans-Regular";
  text-decoration: none;
  appearance: none; }
  @media screen and (min-width: 768px) {
    .button-short {
      line-height: 28px;
      min-height: 48px;
      min-width: 166px; } }
  .button-short--blue {
    background-color: #0d2340;
    color: #FFFFFF; }
    .button-short--blue:hover {
      color: #FFFFFF; }
  .button-short--orange {
    background-color: #b66733;
    color: #FFFFFF; }
    .button-short--orange:hover {
      color: #FFFFFF; }
  .button-short--accounts {
    padding-right: 45px; }
    .button-short--accounts:after {
      content: '';
      position: absolute;
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      width: 22px;
      height: 22px;
      right: 23px;
      top: 12px; }
  .button-short--arrow {
    padding-right: 60px; }
    .button-short--arrow:after {
      content: '';
      position: absolute;
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      width: 20px;
      height: 18px;
      right: 15px;
      top: 10px; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.banner {
  width: 100%;
  background-color: #f3f3f3; }
  .banner__inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1920px;
    margin: 0 auto; }
    .banner__inner--hero {
      max-width: 1920px; }
      @media screen and (min-width: 768px) {
        .banner__inner--hero {
          height: 470px; } }
      @media screen and (max-width: 768px) {
        .banner__inner--hero {
          height: auto;
          /*max-height: 420px;*/
          overflow: hidden;
          display: flex;
          flex-flow: column; } }
    .banner__inner--mini {
      max-width: 1140px; }
  .banner__half {
    width: 100%; }
    @media screen and (min-width: 768px) {
      .banner__half {
        width: 50%; } }
    @media screen and (max-width: 768px) {
      .banner__half:nth-child(1) {
        order: 2; } }
  .banner__thumbnail {
    width: 100%;
    /*height: 100%;*/
    padding-right: 20px;
    max-width: 555px;
    float: right; }
    @media screen and (max-width: 320px) {
      .banner__thumbnail {
        height: 190px; } }
  .banner__content {
    padding: 0 15px;
    margin: 33px 0 0px 0px; }
    .banner__content h1 {
      max-width: 535px; }
    .banner__content span {
      max-width: 535px; }
    .banner__content p {
      max-width: 535px; }
    .banner__content__center {
      vertical-align: middle;
      display: inline-block;
      margin: 10% auto; }
      .banner__content__center h1 {
        max-width: 535px; }
      .banner__content__center span {
        max-width: 535px; }
      .banner__content__center p {
        max-width: 535px; }
  .banner__date-cat {
    color: #0d2340;
    font-family: "BentonSans-Light";
    font-size: 16px;
    font-weight: 300 !important;
    line-height: 1.4; }
    @media screen and (min-width: 768px) {
      .banner__date-cat {
        font-size: 20px; } }
  .banner__author {
    display: flex;
    width: 100%; }
  .banner__author-image {
    display: inline-block;
    height: 70px;
    border-radius: 50%; }
  .banner__author-content {
    display: inline-block;
    padding-left: 20px; }
  .banner__author-job {
    font-family: "BentonSans-Regular", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.63;
    letter-spacing: 0.5px;
    color: #7c858c; }
  .banner__author-name {
    font-family: "BentonSans-Light";
    font-size: 20px;
    font-weight: 300 !important;
    line-height: 1.4;
    color: #0d2340; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.image-banner {
  width: 100%;
  display: block;
  position: relative; }
  .image-banner__image {
    display: block;
    width: 100%;
    max-width: 1980px;
    margin: 0 auto;
    min-height: 130px; }
  .image-banner__content {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    margin: 0 auto;
    padding: 40px;
    max-width: 1140px;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .image-banner__content {
        padding: 60px;
        /*max-width: 800px;*/ } }
  .image-banner__title-main {
    font-family: "BentonSans-Regular", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 10px;
    display: block; }
    @media screen and (min-width: 768px) {
      .image-banner__title-main {
        font-size: 60px; } }
  .image-banner__title-sub {
    font-family: "BentonSans-Regular", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.1;
    color: #FFFFFF;
    display: block; }
    @media screen and (min-width: 768px) {
      .image-banner__title-sub {
        font-size: 28px; } }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.footer {
  width: 100%; }
  .footer__top {
    width: 100%;
    background-color: rgba(128, 128, 128, 0.2); }
  .footer__bottom {
    width: 100%; }
  .footer__inner {
    padding: 40px 20px;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto; }
    @media screen and (min-width: 768px) {
      .footer__inner {
        padding: 40px 0px; } }
  .footer__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
  .footer__content-item {
    width: 100%;
    padding: 10px 0; }
    @media screen and (min-width: 768px) {
      .footer__content-item {
        width: 50%;
        padding: 10px; } }
    @media screen and (min-width: 1024px) {
      .footer__content-item {
        width: 25%;
        padding: 10px; } }
    .footer__content-item:first-child {
      padding-left: 0; }
    .footer__content-item:last-child {
      padding-right: 0; }
  .footer__content-item1 {
    width: 100%;
    padding: 10px 0; }
    @media screen and (min-width: 768px) {
      .footer__content-item1 {
        width: 50%;
        padding: 10px; } }
    @media screen and (min-width: 1024px) {
      .footer__content-item1 {
        width: 24%;
        padding: 10px; } }
    .footer__content-item1:first-child {
      padding-left: 0; }
    .footer__content-item1:last-child {
      padding-right: 0; }
  .footer__content-item2 {
    width: 100%;
    padding: 10px 0; }
    @media screen and (min-width: 768px) {
      .footer__content-item2 {
        width: 50%;
        padding: 10px; } }
    @media screen and (min-width: 1024px) {
      .footer__content-item2 {
        width: 25.5%;
        padding: 10px; } }
    .footer__content-item2:first-child {
      padding-left: 0; }
    .footer__content-item2:last-child {
      padding-right: 0; }
  .footer__content-item3 {
    width: 100%;
    padding: 10px 0; }
    @media screen and (min-width: 768px) {
      .footer__content-item3 {
        width: 50%;
        padding: 10px; } }
    @media screen and (min-width: 1024px) {
      .footer__content-item3 {
        width: 25%;
        padding: 10px; } }
    .footer__content-item3:first-child {
      padding-left: 0; }
    .footer__content-item3:last-child {
      padding-right: 0; }
  .footer__content-half {
    width: 100%;
    padding: 10px 0; }
    @media screen and (min-width: 768px) {
      .footer__content-half {
        width: 50%;
        padding: 10px; } }
    .footer__content-half:first-child {
      padding-left: 0; }
    .footer__content-half:last-child {
      padding-right: 0; }
  .footer__logo {
    display: inline-block;
    max-width: 180px;
    margin-bottom: 0px;
    margin-top: 10px;
    margin-left: 0px; }
  .footer__list {
    display: block;
    margin: 0;
    padding: 0; }
  .footer__item {
    display: block;
    list-style-type: none;
    margin: 10px 0;
    font-family: "BentonSans-Light";
    font-size: 14px; }
    @media screen and (min-width: 768px) {
      .footer__item {
        font-size: 18px; } }
  .footer__number {
    color: #7c858c;
    border-bottom: 1px solid #7c858c;
    font-family: "BentonSans-Light";
    font-size: 14px; }
    @media screen and (min-width: 768px) {
      .footer__number {
        font-size: 18px; } }
  .footer__link {
    font-family: "BentonSans-Light";
    color: #FFFFFF;
    text-decoration: none;
    margin-top: 2px;
    font-size: 14px; }
    @media screen and (min-width: 768px) {
      .footer__link {
        font-size: 16px; } }
    .footer__link:hover {
      color: #7c858c; }
  .footer__social {
    display: inline-block;
    margin: 0;
    padding: 0; }
  .footer__social-item {
    display: inline-block;
    list-style-type: none; }
    .footer__social-item a {
      display: block;
      padding: 0 5px; }
    .footer__social-item:first-child a {
      padding-left: 0px; }
  .footer__social-icon {
    display: block;
    max-width: 40px; }
  .footer__app-icon {
    display: block;
    max-width: 120px; }
  .footer .content-bold {
    font-family: "BentonSans-Bold";
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 0.5;
    font-weight: 300;
    margin-top: 10px; }
    @media screen and (min-width: 768px) {
      .footer .content-bold {
        margin-bottom: 5px;
        font-size: 29px; } }
    .footer .content-bold--small {
      font-size: 14px; }
      @media screen and (min-width: 768px) {
        .footer .content-bold--small {
          font-size: 16px; } }
    .footer .content-bold--extra-small {
      font-size: 10px; }
      @media screen and (min-width: 768px) {
        .footer .content-bold--extra-small {
          font-size: 10.3px; } }
  .footer .content {
    font-family: "BentonSans-Light";
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300; }
    @media screen and (min-width: 768px) {
      .footer .content {
        margin-bottom: 20px;
        font-size: 20px; } }
    .footer .content--small {
      font-size: 14px; }
      @media screen and (min-width: 768px) {
        .footer .content--small {
          font-size: 16px; }
          .footer .content--small p {
            font-size: 16px; } }
    .footer .content--extra-small {
      font-size: 10px;
      margin-bottom: 10px;
      line-height: 2.5;
      font-weight: 700; }
      @media screen and (min-width: 768px) {
        .footer .content--extra-small {
          font-size: 10.3px; } }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.meet-the-team .content {
  max-width: 750px; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.promotion .heading {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .promotion .heading {
      width: 75.665%; } }

.promotion__text-container {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  flex-direction: column; }
  @media screen and (min-width: 768px) {
    .promotion__text-container {
      width: 60%;
      padding: 40px 60px 40px 20px; } }

.promotion__image-container {
  width: 100%;
  padding: 40px 20px; }
  @media screen and (min-width: 768px) {
    .promotion__image-container {
      width: 40%;
      padding: 70px 20px 70px 60px; } }
  .promotion__image-container--green {
    background-color: #85b099; }
  .promotion__image-container--pattern {
    background-color: #FFFFFF;
    background-image: url(/assets/img/md-pattern-bg.674428239c2bbdd601ee84aa3efa00b9.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }

.promotion__thumbnail {
  width: 100%;
  height: auto;
  border: 30px solid #FFFFFF;
  position: relative;
  left: 0;
  margin: 0px; }
  @media screen and (min-width: 768px) {
    .promotion__thumbnail {
      left: -188px;
      width: 555px; } }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.accordion {
  overflow: hidden; }
  .accordion__item {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px; }
  .accordion__title {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #ebebeb;
    font-family: "BentonSans-Light";
    color: #0d2340;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    cursor: pointer; }
    @media screen and (min-width: 768px) {
      .accordion__title {
        font-size: 20px; } }
    .accordion__title:after {
      content: "\276F";
      color: #0d2340;
      width: 1em;
      height: 1em;
      text-align: center;
      transition: all .35s;
      transform: rotate(90deg); }
  .accordion__content {
    max-height: 0;
    padding: 0 1em;
    color: #0d2340;
    background: #FFFFFF;
    transition: all .35s;
    font-family: "BentonSans-Light";
    color: #0d2340;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300; }
    @media screen and (min-width: 768px) {
      .accordion__content {
        font-size: 20px; } }
    .accordion__content .table {
      border-collapse: collapse;
      width: 100%; }
      .accordion__content .table th {
        font-family: "BentonSans-Bold", Arial, sans-serif;
        font-size: 16px;
        line-height: 1.4;
        text-transform: uppercase; }
        @media screen and (min-width: 768px) {
          .accordion__content .table th {
            font-size: 20px; } }
      .accordion__content .table td {
        font-family: "BentonSans-Light";
        font-size: 16px;
        line-height: 1.4;
        min-width: 160px; }
        @media screen and (min-width: 768px) {
          .accordion__content .table td {
            font-size: 20px; } }
      .accordion__content .table__cell {
        border-spacing: 0;
        margin: 0;
        padding: 10px;
        border: none; }
        .accordion__content .table__cell--dark-blue {
          background-color: #0d2340;
          color: #FFFFFF; }
        .accordion__content .table__cell--medium-blue {
          background-color: #4c586e;
          color: #FFFFFF; }
        .accordion__content .table__cell--light-blue {
          background-color: #9a9fa5;
          color: #FFFFFF; }
        .accordion__content .table__cell--dark-orange {
          background-color: #b66733;
          color: #FFFFFF; }
        .accordion__content .table__cell--light-orange {
          background-color: #c99777;
          color: #FFFFFF; }
        .accordion__content .table__cell--white {
          background-color: #FFFFFF;
          color: #0d2340; }
        .accordion__content .table__cell--light-grey {
          background-color: #f3f3f3;
          color: #0d2340; }
        .accordion__content .table__cell--border {
          border-top: 1px solid #0d2340;
          border-bottom: 1px solid #0d2340; }
      .accordion__content .table__caption {
        font-size: 16px;
        line-height: 1.4;
        text-align: left; }
        @media screen and (min-width: 768px) {
          .accordion__content .table__caption {
            font-size: 20px; } }
        .accordion__content .table__caption--main {
          text-transform: uppercase;
          font-family: "BentonSans-Regular", Arial, sans-serif; }
        .accordion__content .table__caption--sub {
          text-transform: capitalize;
          font-family: "BentonSans-Light"; }
  .accordion__close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer; }
    .accordion__close:hover {
      background: #040c16; }
  .accordion input {
    position: absolute;
    opacity: 0;
    z-index: -1; }
  .accordion input:checked + .accordion__title::after {
    transform: rotate(-90deg); }
  .accordion input:checked ~ .accordion__content {
    max-height: 100vh;
    padding: 1em;
    overflow-y: scroll; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.contact-modal .form__field {
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin: 0 0 10px 0; }
  @media screen and (min-width: 768px) {
    .contact-modal .form__field {
      margin: 0 0 20px 0;
      flex-direction: row; } }
  .contact-modal .form__field--submit {
    justify-content: space-between;
    align-items: center;
    align-content: flex-end;
    margin-top: 30px; }

.contact-modal .form__group {
  width: 100%;
  flex: 2; }
  .contact-modal .form__group ul {
    margin: 10px 20px 25px 20px; }

.contact-modal .form__label {
  font-family: "BentonSans-Bold";
  font-size: 16px;
  color: #000000;
  flex: 1;
  margin: 12px 0; }
  .contact-modal .form__label--alt {
    color: #0d2340; }

.contact-modal .form__select {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #4a4a4a;
  border-radius: 20px;
  overflow: hidden; }
  .contact-modal .form__select--sml {
    width: 30%; }
  .contact-modal .form__select:after {
    width: 35px;
    height: 26px;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: url(/assets/icons/icon-arrow-dropdown-blue.png) no-repeat;
    background-position: center center;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease; }
    @media screen and (min-width: 768px) {
      .contact-modal .form__select:after {
        width: 45px;
        height: 40px; } }
  .contact-modal .form__select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #FFFFFF;
    background-image: none;
    flex: 1;
    -webkit-box: 1;
    -moz-box: 1;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-flex-basis: auto;
    -ms-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    font-family: "BentonSans-Regular", Arial, sans-serif;
    font-size: 10px;
    line-height: 10px;
    color: #000000;
    padding: 8px 10px;
    cursor: pointer; }
    @media screen and (min-width: 768px) {
      .contact-modal .form__select select {
        font-size: 16px;
        line-height: 16px;
        padding: 12px 20px; } }
  .contact-modal .form__select select::-ms-expand {
    display: none; }

.contact-modal .form__radio {
  margin: 0.5rem;
  display: flex;
  align-items: center; }
  .contact-modal .form__radio input[type="radio"] {
    position: absolute;
    opacity: 0; }
    .contact-modal .form__radio input[type="radio"] + .form__radio-label {
      font-family: "BentonSans-Bold", Arial, sans-serif;
      font-size: 16px;
      line-height: 18px;
      color: #000000; }
      .contact-modal .form__radio input[type="radio"] + .form__radio-label:before {
        content: '';
        background: #F0F0F0;
        border-radius: 100%;
        border: 1px solid #4a4a4a;
        display: inline-block;
        width: 16px;
        height: 16px;
        position: relative;
        top: 0;
        margin-right: 10px;
        vertical-align: top;
        cursor: pointer;
        text-align: center;
        transition: all 250ms ease; }
    .contact-modal .form__radio input[type="radio"]:checked + .form__radio-label:before {
      border: 5px solid #0d2340; }
    .contact-modal .form__radio input[type="radio"]:focus + .form__radio-label:before {
      outline: none; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.card__item {
  margin: 10px 0; }
  @media screen and (min-width: 768px) {
    .card__item {
      margin: 15px 0; } }

.card__link {
  display: block;
  position: relative; }
  .card__link:hover .card__title:after {
    right: 5px; }
  @media screen and (min-width: 768px) {
    .card__link:hover .card__title:after {
      right: 10px; } }

.card__image {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 20px; }
  @media screen and (min-width: 768px) {
    .card__image {
      padding-bottom: 40px; } }

.card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
  font-family: "BentonSans-Regular";
  font-size: 16px;
  line-height: 1.2em;
  color: #FFFFFF; }
  @media screen and (min-width: 768px) {
    .card__title {
      font-size: 20px;
      padding: 18px 0 18px 23px;
      line-height: 28px; } }
  .card__title:after {
    content: '';
    position: absolute;
    background-image: url(/assets/icons/svg/iconfinder-icon-arrow-white.4840f72c4cbd9cd1399604886b25b21f.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 18px;
    right: 10px;
    top: 8px;
    transition: right 0.25s ease; }
    @media screen and (min-width: 768px) {
      .card__title:after {
        width: 25px;
        height: 22px;
        right: 20px;
        top: 18px; } }
  .card__title--orange {
    background-color: #b66733; }
  .card__title--dark-blue {
    background-color: #0d2340; }
  .card__title--green {
    background-color: #85b099; }
  .card__title--pink {
    background-color: #cb1f3f; }
  .card__title--yellow {
    background-color: #dca900; }
  .card__title--turquoise {
    background-color: #02bcb4; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.filter-checkbox {
  width: 100%;
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */ }
  .filter-checkbox--orange {
    background-color: #b66733; }
  .filter-checkbox--pink {
    background-color: #cb1f3f; }
  .filter-checkbox--dark-blue {
    background-color: #0d2340; }
  .filter-checkbox__inner {
    max-width: 1140px;
    padding: 20px;
    margin: 0 auto; }
    .filter-checkbox__inner .large-content {
      max-width: 400px;
      margin: 0 auto; }
  .filter-checkbox__list {
    margin: 0;
    padding: 0;
    display: block; }
  .filter-checkbox__item {
    display: block;
    list-style-type: none;
    margin: 10px 0; }
    .filter-checkbox__item:first-child {
      margin-top: 0; }
    .filter-checkbox__item:last-child {
      margin-bottom: 0; }
  .filter-checkbox__number {
    font-family: "BentonSans-Light";
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.17;
    border-bottom: 1px solid #FFFFFF;
    margin-right: 10px; }
    @media screen and (min-width: 768px) {
      .filter-checkbox__number {
        font-size: 24px;
        margin-right: 20px; } }
  .filter-checkbox__label {
    display: inline-block;
    font-family: "BentonSans-Light";
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.8;
    text-decoration: none;
    margin-left: 40px; }
    @media screen and (min-width: 768px) {
      .filter-checkbox__label {
        font-size: 22px; } }
  .filter-checkbox__arrow {
    margin-left: 10px;
    display: inline-block;
    width: 30px; }
    @media screen and (min-width: 768px) {
      .filter-checkbox__arrow {
        width: 50px;
        margin-left: 20px; } }
  .filter-checkbox__check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .filter-checkbox__check-container input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
  .filter-checkbox__checkmark {
    position: absolute;
    top: 8px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 2px solid #FFFFFF; }
  .filter-checkbox__check-container:hover input ~ .filter-checkbox__checkmark {
    background-color: transparent;
    border: 2px solid #FFFFFF; }
  .filter-checkbox__check-container input:checked ~ .filter-checkbox__checkmark {
    background-color: #0d2340;
    border: 2px solid #FFFFFF; }
  .filter-checkbox__checkmark:after {
    content: "";
    position: absolute;
    display: none; }
  .filter-checkbox__check-container input:checked ~ .filter-checkbox__checkmark:after {
    display: block; }
  .filter-checkbox .filter-checkbox__check-container.filter-checkbox__checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.inner-nav {
  width: 100%; }
  .inner-nav--orange {
    background-color: #b66733; }
  .inner-nav--pink {
    background-color: #cb1f3f; }
  .inner-nav--yellow {
    background-color: #dca900; }
  .inner-nav--dark-blue {
    background-color: #0d2340; }
  .inner-nav__inner {
    max-width: 1140px;
    padding: 20px;
    margin: 0 auto; }
    .inner-nav__inner .large-content {
      max-width: 400px;
      margin: 0 auto; }
  .inner-nav__list {
    margin: 0;
    padding: 0;
    display: block; }
  .inner-nav__item {
    display: block;
    list-style-type: none;
    margin: 10px 0; }
    .inner-nav__item:first-child {
      margin-top: 0; }
    .inner-nav__item:last-child {
      margin-bottom: 0; }
  .inner-nav__number {
    font-family: "BentonSans-Light";
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.17;
    border-bottom: 1px solid #FFFFFF;
    margin-right: 10px; }
    @media screen and (min-width: 768px) {
      .inner-nav__number {
        font-size: 24px;
        margin-right: 20px; } }
  .inner-nav__link {
    display: inline-block;
    font-family: "BentonSans-Light";
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.8;
    text-decoration: none; }
    @media screen and (min-width: 768px) {
      .inner-nav__link {
        font-size: 24px; } }
    .inner-nav__link:hover {
      color: #FFFFFF; }
      .inner-nav__link:hover .inner-nav__arrow {
        opacity: 1; }
  .inner-nav__arrow {
    margin-left: 10px;
    display: inline-block;
    width: 30px;
    opacity: 0.4;
    transition: opacity 0.25s ease; }
    @media screen and (min-width: 768px) {

      .inner-nav__arrow {
        width: 50px;
        margin-left: 20px; } }
  .inner-nav__fullNavWidth {
    max-width: 362px;
    display: inline-table; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.inner-nav-half {
  width: 100%; }
  .inner-nav-half--orange {
    background-color: #b66733; }
  .inner-nav-half--pink {
    background-color: #cb1f3f; }
  .inner-nav-half--dark-blue {
    background-color: #0d2340; }
  .inner-nav-half__inner {
    max-width: 1140px;
    padding: 20px;
    margin: 0 auto; }
    .inner-nav-half__inner .large-content {
      max-width: 400px;
      margin: 0 auto; }
  .inner-nav-half__writeup {
    display: block;
    font-family: "BentonSans-Regular", Arial, sans-serif;
    font-size: 28px;
    line-height: 1.18;
    padding: 75px 0px 40px 40px; }
  .inner-nav-half__list {
    margin: 0;
    padding: 0;
    display: block; }
  .inner-nav-half__item {
    display: block;
    list-style-type: none;
    margin: 10px 0; }
    .inner-nav-half__item:first-child {
      margin-top: 0; }
    .inner-nav-half__item:last-child {
      margin-bottom: 0; }
  .inner-nav-half__number {
    font-family: "BentonSans-Light";
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.17;
    border-bottom: 1px solid #FFFFFF;
    margin-right: 10px; }
    @media screen and (min-width: 768px) {
      .inner-nav-half__number {
        font-size: 24px;
        margin-right: 20px; } }
  .inner-nav-half__link {
    display: inline-block;
    font-family: "BentonSans-Light";
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.8;
    text-decoration: none; }
    @media screen and (min-width: 768px) {
      .inner-nav-half__link {
        font-size: 24px; } }
    .inner-nav-half__link:hover {
      color: #FFFFFF; }
      .inner-nav-half__link:hover .inner-nav__arrow {
        opacity: 1; }
  .inner-nav-half__arrow {
    margin-left: 10px;
    display: inline-block;
    width: 30px;
    opacity: 0.4;
    transition: opacity 0.25s ease; }
    @media screen and (min-width: 768px) {
      .inner-nav-half__arrow {
        width: 50px;
        margin-left: 20px; } }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.carousel-nav {
  display: block;
  width: 100%;
  /*.owl-theme .owl-nav {
		margin-top: 10px
	}

	.owl-theme .owl-nav [class*=owl-] {
		color: #FFF;
		font-size: 14px;
		margin: 5px;
		padding: 4px 7px;
		background: #D6D6D6;
		display: inline-block;
		cursor: pointer;
		border-radius: 3px
	}

	.owl-theme .owl-nav [class*=owl-]:hover {
		background: #869791;
		color: #FFF;
		text-decoration: none
	}

	.owl-theme .owl-nav .disabled {
		opacity: .5;
		cursor: default
	}*/ }
  .carousel-nav__inner {
    display: block;
    width: 100%;
    margin: 0 auto;
    position: relative; }
  .carousel-nav__link {
    display: block;
    text-decoration: none !important; }
  .carousel-nav__image {
    display: block;
    width: 100%;
    height: 325px; }
  .carousel-nav__date {
    font-family: "BentonSans-Light";
    color: #0d2340;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4; }
    @media screen and (min-width: 768px) {
      .carousel-nav__date {
        font-size: 20px; } }
  .carousel-nav__category {
    font-family: "BentonSans-Light";
    color: #0d2340;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4; }
    @media screen and (min-width: 768px) {
      .carousel-nav__category {
        font-size: 20px; } }
  .carousel-nav__caption {
    padding: 10px 0; }
  .carousel-nav .owl-dots {
    /*display: none;*/ }
  .carousel-nav .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%); }
    .carousel-nav .owl-nav button {
      position: relative;
      outline: none !important; }
      .carousel-nav .owl-nav button span {
        font-size: 75px;
        line-height: 75px;
        color: #0d2340;
        font-weight: bolder;
        /*
				background-image: url('../assets/icons/chevron-right.png');
				background-position: center center;
				background-size: 100% 100%;
				background-repeat: no-repeat;
				width: 25px;
				height: 40px;
				*/ }
      .carousel-nav .owl-nav button.disabled {
        opacity: 0.4;
        cursor: not-allowed; }
  .carousel-nav .owl-prev {
    left: -26px; }
  .carousel-nav .owl-next {
    left: calc(100% - 32px); }
  .carousel-nav .owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent; }
  .carousel-nav .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px; }
  .carousel-nav .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    outline: none; }
  .carousel-nav .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    width: 30px;
    height: 5px;
    margin-left: 2px;
    margin-right: 2px;
    background: #D6D6D6;
    border: none; }
    @media screen and (min-width: 768px) {
      .carousel-nav .owl-theme .owl-dots .owl-dot span {
        width: 100px; } }
  .carousel-nav .owl-theme .owl-dots .owl-dot.active span, .carousel-nav .owl-theme .owl-dots .owl-dot:hover span {
    background: #0d2340; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.breakdown {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: repeat(1, 1fr); }
  @media screen and (min-width: 768px) {
    .breakdown {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (min-width: 1024px) {
    .breakdown {
      grid-template-columns: repeat(3, 1fr); } }
  .breakdown__item {
    display: block;
    width: 100%;
    background-color: #FFFFFF; }
    .breakdown__item h2 {
      padding: 20px; }
  .breakdown__image {
    display: block;
    height: auto;
    width: 100%; }
  .breakdown__title {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px; }
    .breakdown__title h3 {
      margin: 0; }
    .breakdown__title--dark-blue {
      background-color: #0d2340; }
      .breakdown__title--dark-blue h3 {
        color: #FFFFFF; }
    .breakdown__title--turquoise {
      background-color: #02bcb4; }
      .breakdown__title--turquoise h3 {
        color: #FFFFFF; }
    .breakdown__title--orange {
      background-color: #b66733; }
      .breakdown__title--orange h3 {
        color: #FFFFFF; }
    .breakdown__title--pink {
      background-color: #cb1f3f; }
      .breakdown__title--pink h3 {
        color: #FFFFFF; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.alternate-split__row {
  padding: 20px 0; }

.alternate-split__image-container {
  display: none; }
  @media screen and (min-width: 768px) {
    .alternate-split__image-container {
      display: inline-block; } }

.alternate-split__image {
  display: block;
  width: 100%;
  /*max-width: 450px;*/ }

.alternate-split__text-container ul {
  font-family: "BentonSans-Light";
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  padding-left: 20px; }
  @media screen and (min-width: 768px) {
    .alternate-split__text-container ul {
      font-size: 20px; } }
  .alternate-split__text-container ul li {
    list-style-type: disc; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.numbered-list--dark-blue {
  background-color: #0d2340; }
  .numbered-list--dark-blue h1,
  .numbered-list--dark-blue h2,
  .numbered-list--dark-blue h3,
  .numbered-list--dark-blue p {
    color: #FFFFFF; }
  .numbered-list--dark-blue .numbered-list__number {
    color: #b66733; }
  .numbered-list--dark-blue .numbered-orange {
    color: #b66733; }
  .numbered-list--dark-blue .numbered-yellow {
    color: #dca900; }
  .numbered-list--dark-blue .numbered-blue {
    color: #25428b; }
  .numbered-list--dark-blue .numbered-dark-blue {
    color: #0d2340; }
  .numbered-list--dark-blue .numbered-turquoise {
    color: #02bcb4; }

.numbered-list--white {
  background-color: #FFFFFF; }
  .numbered-list--white h1,
  .numbered-list--white h2,
  .numbered-list--white h3,
  .numbered-list--white p {
    color: #0d2340; }
  .numbered-list--white .numbered-list__number {
    color: #1f9bde; }
  .numbered-list--white .numbered-orange {
    color: #b66733; }
  .numbered-list--white .numbered-yellow {
    color: #dca900; }
  .numbered-list--white .numbered-blue {
    color: #25428b; }
  .numbered-list--white .numbered-dark-blue {
    color: #0d2340; }
  .numbered-list--white .numbered-turquoise {
    color: #02bcb4; }

.numbered-list__item {
  padding: 20px 0; }

.numbered-list__number {
  font-family: "BentonSans-Regular", Arial, sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 0.85;
  display: block;
  margin-bottom: 10px; }
  @media screen and (min-width: 768px) {
    .numbered-list__number {
      font-size: 40px;
      margin-bottom: 20px; } }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.checker-grid__grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr); }
  @media screen and (min-width: 768px) {
    .checker-grid__grid-container {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (min-width: 1024px) {
    .checker-grid__grid-container {
      grid-template-columns: repeat(3, 1fr); } }

.checker-grid__grid-item {
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible; }
  .checker-grid__grid-item--title {
    color: #FFFFFF;
    padding: 20px; }
  .checker-grid__grid-item--text {
    background-color: #FFFFFF;
    color: #0d2340;
    padding: 20px; }
  .checker-grid__grid-item--dark-blue {
    background-color: #0d2340; }
  @media screen and (min-width: 768px) {
    .checker-grid__grid-item--triangle-dark-blue:after {
      content: '';
      width: 0;
      height: 0;
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      border-left: 15px solid #0d2340;
      position: absolute;
      top: 40px;
      left: 0; } }
  .checker-grid__grid-item--image {
    display: none; }
    @media screen and (min-width: 1024px) {
      .checker-grid__grid-item--image {
        display: inline-block; } }

.checker-grid__item-inner {
  width: 100%; }

.checker-grid__number {
  font-family: "BentonSans-Regular", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.17; }

.checker-grid__title {
  font-family: "BentonSans-Regular", Arial, sans-serif;
  margin: 0;
  font-size: 30px;
  line-height: 1.33;
  font-weight: normal; }
  @media screen and (min-width: 768px) {
    .checker-grid__title {
      font-size: 34px; } }

.checker-grid__image {
  display: block;
  width: 100%;
  /*height: 100%;*/ }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.three-col__item {
  height: auto; }
  @media screen and (min-width: 768px) {
    .three-col__item {
      height: 545px; } }
  @media screen and (min-width: 1024px) {
    .three-col__item {
      height: auto; } }

.three-col__image-container {
  position: relative;
  padding-bottom: 40px; }
  @media screen and (min-width: 768px) {
    .three-col__image-container {
      padding-bottom: 60px; } }

.three-col__image {
  display: block;
  width: 100%; }

.three-col__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
  color: #FFFFFF; }
  .three-col__title--dark-blue {
    background-color: #0d2340; }
  .three-col__title span {
    font-family: "BentonSans-Regular", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.63;
    text-transform: uppercase;
    margin-bottom: 5px; }
    @media screen and (min-width: 768px) {
      .three-col__title span {
        font-size: 16px; } }
  .three-col__title p {
    margin: 0; }

.three-col__caption {
  padding: 20px 0; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.three-block {
  display: grid;
  grid-template-columns: repeat(1, 1fr); }
  @media screen and (min-width: 768px) {
    .three-block {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (min-width: 1024px) {
    .three-block {
      grid-template-columns: repeat(3, 1fr); } }
  .three-block__item {
    padding: 20px; }
    @media screen and (min-width: 1024px) {
      .three-block__item {
        padding: 30px; } }
    .three-block__item--dark-blue {
      background-color: #0d2340; }
      .three-block__item--dark-blue h4,
      .three-block__item--dark-blue p {
        color: #FFFFFF; }
    .three-block__item--turquoise {
      background-color: #02bcb4; }
      .three-block__item--turquoise h4,
      .three-block__item--turquoise p {
        color: #FFFFFF; }
    .three-block__item--orange {
      background-color: #b66733; }
      .three-block__item--orange h4,
      .three-block__item--orange p {
        color: #FFFFFF; }
    .three-block__item--pink {
      background-color: #cb1f3f; }
      .three-block__item--pink h4,
      .three-block__item--pink p {
        color: #FFFFFF; }
    .three-block__item--white {
      background-color: #FFFFFF; }
      .three-block__item--white h4,
      .three-block__item--white p {
        color: #0d2340; }
    .three-block__itemp:nth-child(1) {
      font-weight: bold !important; }
  .three-block__image {
    display: block;
    height: auto;
    width: auto;
    max-height: 50px;
    margin-bottom: 20px;
    height: 50px; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.archive-table a {
  text-decoration: none;
  color: #0d2340; }
  .archive-table a:hover {
    color: #0d2340; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.note ul {
  padding-left: 20px;
  font-family: "BentonSans-Light";
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  color: #FFFFFF; }
  @media screen and (min-width: 768px) {
    .note ul {
      margin-bottom: 20px;
      font-size: 20px; } }
  .note ul li {
    list-style-type: disc; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.updates-promo h4 {
  font-weight: normal !important; }

.updates-promo p {
  font-family: "BentonSans-Regular", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.26; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.graph .content {
  max-width: 750px; }

.graph .table-responsive {
  max-width: 750px;
  margin: 0 auto;
  padding-bottom: 40px; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.overview__facts {
  display: grid;
  grid-template-columns: repeat(1, 1fr); }
  @media screen and (min-width: 768px) {
    .overview__facts {
      grid-template-columns: repeat(2, 1fr); } }

.overview__middle {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start; }

.overview__fact-item {
  padding: 15px 10px; }
  .overview__fact-item--pink {
    background-color: #FFFFFF;
    color: #cb1f3f;
    border-right: 1px solid #7c858c; }
  .overview__fact-item--light-blue {
    background-color: #FFFFFF;
    color: #1f9bde;
    border-right: 1px solid #7c858c; }
  .overview__fact-item--yellow {
    background-color: #dca900;
    color: #FFFFFF; }
  .overview__fact-item--dark-blue {
    background-color: #0d2340;
    color: #FFFFFF; }
  .overview__fact-item--grey {
    background-color: #d1d4d6;
    color: #0d2340; }
  .overview__fact-item--white {
    background-color: #FFFFFF;
    color: #0d2340; }

.overview__fact-title {
  font-family: "BentonSans-Light";
  font-size: 18px;
  font-weight: 300;
  line-height: 1.44;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start; }

.overview__fact-currency {
  font-family: "BentonSans-Light";
  font-size: 14px;
  font-weight: normal;
  line-height: 1.71;
  position: relative;
  top: -10px; }

.overview__fact-amount {
  font-family: "BentonSans-Regular", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.31; }

.overview__fact-text {
  display: block;
  font-family: "BentonSans-Light";
  font-size: 16px;
  font-weight: 300;
  line-height: 1.63; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.downloads__table-cell {
  border-spacing: 0;
  margin: 0;
  padding: 10px;
  border: none;
  font-family: "BentonSans-Light";
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  min-width: 160px; }
  @media screen and (min-width: 768px) {
    .downloads__table-cell {
      font-size: 20px; } }
  .downloads__table-cell--dark-blue {
    background-color: #0d2340;
    color: #FFFFFF; }
  .downloads__table-cell--medium-blue {
    background-color: #4c586e;
    color: #FFFFFF; }
  .downloads__table-cell--light-blue {
    background-color: #9a9fa5;
    color: #FFFFFF; }
  .downloads__table-cell--dark-orange {
    background-color: #b66733;
    color: #FFFFFF; }
  .downloads__table-cell--light-orange {
    background-color: #c99777;
    color: #FFFFFF; }
  .downloads__table-cell--white {
    background-color: #FFFFFF;
    color: #0d2340; }
  .downloads__table-cell--light-grey {
    background-color: #f3f3f3;
    color: #0d2340; }
  .downloads__table-cell--border {
    border-top: 1px solid #0d2340;
    border-bottom: 1px solid #0d2340; }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
.pagination {
  display: block;
  width: 100%;
  padding: 20px 0 0 0; }
  .pagination__inner {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center; }
  .pagination__arrow {
    display: inline-block;
    margin: 0 10px;
    cursor: pointer; }
    .pagination__arrow img {
      display: block;
      width: 14px; }
      @media screen and (min-width: 768px) {
        .pagination__arrow img {
          width: 25px; } }
    .pagination__arrow--disabled {
      opacity: 0.4;
      cursor: not-allowed; }
    .pagination__arrow--prev {
      transform: rotate(180deg); }
  .pagination__number {
    display: inline-block;
    margin: 0 10px;
    font-family: "BentonSans-Regular", Arial, sans-serif;
    color: #0d2340;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;
    border-bottom: 2px solid #0d2340;
    text-decoration: none;
    cursor: pointer .pagination__number; }
    .pagination__number :hover {
      color: #0d2340; }
    .pagination__number--active {
      color: #b66733;
      border-color: #b66733; }
    @media screen and (min-width: 768px) {
      .pagination__number {
        font-size: 34px; } }
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
@font-face {
  font-family: 'BentonSans-Regular';
  src: url("/assets/fonts/bentonsans-regular-webfont.eot");
  src: url("/assets/fonts/bentonsans-regular-webfont.ttf") format("truetype"), url("/assets/fonts/bentonsans-regular-webfont.woff") format("woff"), url("/assets/fonts/bentonsans-regular-webfont.woff2") format("woff2"); }

@font-face {
  font-family: 'BentonSans-Book';
  src: url("/assets/fonts/bentonsans-book-webfont.eot");
  src: url("/assets/fonts/bentonsans-book-webfont.ttf") format("truetype"), url("/assets/fonts/bentonsans-book-webfont.woff") format("woff"), url("/assets/fonts/bentonsans-book-webfont.woff2") format("woff2"); }

@font-face {
  font-family: 'BentonSans-Medium';
  src: url("/assets/fonts/bentonsans-medium-webfont.eot");
  src: url("/assets/fonts/bentonsans-medium-webfont.ttf") format("truetype"), url("/assets/fonts/bentonsans-medium-webfont.woff") format("woff"), url("/assets/fonts/bentonsans-medium-webfont.woff2") format("woff2"); }

@font-face {
  font-family: 'BentonSans-Bold';
  src: url("/assets/fonts/bentonsans-bold-webfont.eot");
  src: url("/assets/fonts/bentonsans-bold-webfont.ttf") format("truetype"), url("/assets/fonts/bentonsans-bold-webfont.woff") format("woff"), url("/assets/fonts/bentonsans-bold-webfont.woff2") format("woff2"); }

@font-face {
  font-family: 'BentonSans-Light';
  src: url("/assets/fonts/bentonsans-light-webfont.otf") format("opentype"); }


/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html,
body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  font-family: "BentonSans-Light", "BentonSans-Regular", Arial, sans-serif;}

html,
body {
  /*overflow-x: hidden;*/ }

.main {
  /*max-width: 1440px;
	margin: 0 auto;*/ }

.clear {
  clear: both; }

h1 {
  font-family: "BentonSans-Regular", Arial, sans-serif;
  margin: 0 0 20px 0;
  font-size: 36px;
  line-height: 1.33;
  font-weight: normal; }
  @media screen and (min-width: 768px) {
    h1 {
      margin: 0 0 20px 0;
      font-size: 40px; } }

h2 {
  font-family: "BentonSans-Bold", Arial, sans-serif;
  margin: 0 0 20px 0;
  font-size: 22px;
  line-height: 1.31;
  font-weight: 500; }
  @media screen and (min-width: 768px) {
    h2 {
      margin: 0 0 20px 0;
      font-size: 26px; } }

h3 {
  font-family: "BentonSans-Light", Arial, sans-serif;
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 1.42;
  font-weight: normal; }
  @media screen and (min-width: 768px) {
    h3 {
      margin: 0 0 10px 0;
      font-size: 20px;
      font-family: "BentonSans-Bold", Arial, sans-serif; } }

h4 {
  font-family: "BentonSans-Light";
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold; }
  @media screen and (min-width: 768px) {
    h4 {
      margin-bottom: 20px;
      font-size: 20px; } }

p {
  font-family: "BentonSans-Light";
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300; }
  @media screen and (min-width: 768px) {
    p {
      margin-bottom: 20px;
      font-size: 16px; } }

b {
  font-family: "BentonSans-Bold"; }

.close {
  top: -7px;
  position: relative;
  right: -5px; }

.heading {
  font-family: "BentonSans-Regular";
  /*max-width: 750px;*/ }

.heading--main {
  font-size: 35px;
  line-height: 53px; }

.heading--mini {
  font-size: 24px; }

.content {
  font-family: "BentonSans-Light";
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
  /*font-weight: 300;*/ }
  @media screen and (min-width: 768px) {
    .content {
      margin-bottom: 20px;
      font-size: 16px; } }
  .content--small {
    font-size: 16px; }
    @media screen and (min-width: 768px) {
      .content--small {
        font-size: 16px; } }
  .content--social {
    font-size: 14px; }
    @media screen and (min-width: 768px) {
      .content--social {
        font-size: 16px; } }

.content-bold {
  font-family: "BentonSans-Bold";
  margin-bottom: 10px;
  font-size: 29px;
  line-height: 1.4;
  font-weight: 300; }
  @media screen and (min-width: 768px) {
    .content-bold {
      margin-bottom: 20px;
      font-size: 20px; } }
  .content-bold--small {
    font-size: 14px; }
    @media screen and (min-width: 768px) {
      .content-bold--small {
        font-size: 18px; } }

.content-benton {
  font-family: "BentonSans-Regular", Arial, sans-serif;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500; }
  @media screen and (min-width: 768px) {
    .content-benton {
      margin-bottom: 20px;
      font-size: 16px; } }
  .content-benton--small {
    font-size: 14px; }
    @media screen and (min-width: 768px) {
      .content-benton--small {
        font-size: 16px; } }

.content-benton-book {
  font-family: "BentonSans-Regular", Arial, sans-serif;
  margin: 10px 0;
  font-size: 16px;
  line-height: 33px;
  font-weight: 300; }
  @media screen and (min-width: 768px) {
    .content-benton-book {
      font-size: 28px; } }
  .content-benton-book--small {
    font-size: 14px; }
    @media screen and (min-width: 768px) {
      .content-benton-book--small {
        font-size: 18px; } }

.content-benton-book-28 {
  font-family: "BentonSans-Regular", Arial, sans-serif;
  margin: 10px 0;
  font-size: 28px;
  line-height: 33px;
  font-weight: 300; }
  @media screen and (min-width: 768px) {
    .content-benton-book-28 {
      font-size: 28px; } }
  .content-benton-book-28--small {
    font-size: 14px; }
    @media screen and (min-width: 768px) {
      .content-benton-book-28--small {
        font-size: 18px; } }

.content-list {
  padding-left: 20px; }
  .content-list li {
    list-style-type: disc; }

.subContenttext {
  position: relative;
  top: 50px;
  color: #0c223f; }

.line-list {
  padding-left: 45px; }
  .line-list li {
    list-style-image: url("/assets/img/linebullet-6.png"); }

.large-content {
  font-family: "BentonSans-Bold", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.18; }

.text-white {
  color: #FFFFFF; }

.text-muted {
  color: #4a4a4a; }

.text-orange {
  color: #b66733; }

.text-turquoise {
  color: #02bcb4; }

.text-green {
  color: #85b099; }

.text-blue {
  color: #25428b; }

.text-dark-blue {
  color: #0d2340; }

.text-yellow {
  color: #dca900; }

.text-dark {
  color: #0d2340; }

.text-grey {
  color: #d1d4d6; }

.text-pink {
  color: #cb1f3f; }

.text-light-blue {
  color: #1799d6; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-light {
  font-weight: 300px; }

.limit-lines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis; }

.link {
  font-family: "BentonSans-Light";
  font-weight: 100 !important;
  font-size: 16px;
  line-height: 1.4em;
  text-decoration: none;
  transition: all 0.25s ease;
  color: #FFFFFF;
  margin-right: 10px; }
  @media screen and (min-width: 768px) {
    .link {
      line-height: 28px;
      font-size: 20px; } }
  .link--small {
    font-size: 14px; }
    @media screen and (min-width: 768px) {
      .link--small {
        font-size: 18px; } }
  .link--underline {
    border-bottom: 1px solid #FFFFFF; }
    .link--underline:hover {
      border-color: #7c858c;
      color: #7c858c; }
    .link--underline--dark {
      border-bottom: 1px solid #25428B;
      margin-right: 5px; }
    .link--underline--dark:hover {
      border-color: #7c858c; }
    .link--underline--light-blue {
      color: #1799d6; }
      .link--underline--light-blue:hover {
        color: #7c858c; }
  .link--white {
    color: #FFFFFF; }
    .link--white:hover {
      color: #7c858c; }
  .link--dark {
    color: #25428B; }
    .link--dark:hover {
      color: #7c858c; }
  .link--blue {
    color: #25428b; }
    .link--blue:hover {
      color: #7c858c; }
  .link--light-blue {
    color: #1799d6; }
    .link--light-blue:hover {
      color: #7c858c; }
  .link--bold {
    font-family: "BentonSans-Bold";
    font-weight: 200 !important;
    font-size: 18px !important; }

.hide-mobile {
  display: none; }
  @media screen and (min-width: 768px) {
    .hide-mobile {
      display: block; } }

.show-mobile {
  display: block; }
  @media screen and (min-width: 768px) {
    .show-mobile {
      display: none; } }

.page-title {
  width: 100%; }
  .page-title__inner {
    padding: 20px;
    max-width: 1140px;
    margin: 0 auto; }
    .page-title__inner span {
      font-family: "BentonSans-Regular", Arial, sans-serif;
      font-size: 26px;
      line-height: 1.31; }

.pull-right {
  float: right; }

.img-responsive {
  display: block;
  width: 100%; }

/*****************
Sections
*****************/
.section {
  width: 100%;
  min-height: 200px; }
  .section--orange {
    background-color: #b66733;
    color: #FFFFFF; }
  .section--pink {
    background-color: #cb1f3f;
    color: #FFFFFF; }
  .section--turquoise {
    background-color: #02bcb4;
    color: #FFFFFF; }
  .section--yellow {
    background-color: #dca900;
    color: #FFFFFF; }
  .section--orange-pattern {
    background-color: #b66733;
    background-image: url(/assets/img/text-bg-orange_V2.8415e32d63e0ba200c654105f3034c32.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFFFFF; }
  .section--light-orange {
    background-color: #c99777; }
  .section--lighter-orange {
    background-color: #e7d0c1; }
  .section--light-grey {
    background-color: #f3f3f3;
    color: #0d2340; }
  .section--grey {
    background-color: #d1d4d6;
    color: #FFFFFF; }
  .section--dark-blue {
    background-color: #0d2340;
    color: #FFFFFF; }
  .section--morning-blue {
    background-color: #006098;
    color: #FFFFFF; }
  .section--white {
    background-color: #FFFFFF;
    color: #0d2340; }
  .section--light-blue {
    background-color: #1799d6;
    color: #FFFFFF; }
  .section--text p {
    font-size: 28px;
    text-align: center; }
  .section__inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    clear: both; }
    .section__inner--small {
      max-width: 750px; }
    .section__inner--padding {
      padding: 40px 20px; }
      @media screen and (min-width: 768px) {
        .section__inner--padding {
          padding: 60px 20px; } }
    .section__inner--padding-70 {
      padding: 40px 20px; }
      @media screen and (min-width: 768px) {
        .section__inner--padding-70 {
          padding: 70px 20px; } }
    .section__inner--padding-100 {
      padding: 40px 20px; }
      @media screen and (min-width: 768px) {
        .section__inner--padding-100 {
          padding: 100px 20px; } }
    .section__inner--padding-100-0 {
      padding: 40px 20px; }
      @media screen and (min-width: 768px) {
        .section__inner--padding-100-0 {
          padding: 100px 0px; } }
    .section__inner--flex {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap; }
  .section__inner2 {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    clear: both; }
    .section__inner2--small {
      max-width: 750px; }
    .section__inner2--padding {
      padding: 40px 20px; }
      @media screen and (min-width: 768px) {
        .section__inner2--padding {
          padding: 60px 20px; } }
    .section__inner2--flex {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap; }
  .section__half {
    width: 100%;
    padding: 40px 20px; }
    @media screen and (min-width: 768px) {
      .section__half {
        width: 50%;
        padding: 60px 20px; } }
    .section__half:first-child {
      padding-right: 20px; }
      @media screen and (min-width: 768px) {
        .section__half:first-child {
          padding-right: 40px; } }
    .section__half:last-child {
      padding-left: 20px; }
      @media screen and (min-width: 768px) {
        .section__half:last-child {
          padding-left: 40px; } }
  .section__half2 {
    width: 100%;
    padding: 40px 20px; }
    @media screen and (min-width: 768px) {
      .section__half2 {
        width: 50%;
        padding: 100px 20px; } }
    .section__half2:first-child {
      padding-right: 20px; }
      @media screen and (min-width: 768px) {
        .section__half2:first-child {
          padding-right: 112px; } }
    .section__half2:last-child {
      padding-left: 20px; }
      @media screen and (min-width: 768px) {
        .section__half2:last-child {
          padding-left: 15px; } }
  .section__thumbnail {
    width: 100%;
    height: auto; }
  .section__thumbnail2 {
    width: 100%;
    height: 100%; }
  @media screen and (min-width: 768px) {
    .section__thumbnail2 {
      width: 555px;
      height: 100%;
      padding-bottom: 10px;
      max-height: 472px; } }
  .section__image-container {
    display: block;
    width: 100%;
    max-width: 750px;
    margin: 0 auto 40px auto; }
  .section__image {
    display: block;
    width: 100%;
    margin: 0 auto 10px auto;
    max-width: 750px; }
    @media screen and (min-width: 768px) {
      .section__image {
        margin: 0 auto 20px auto; } }
  .section__profile {
    max-height: 270px;
    height: 270px; }
  .section__captioned-image {
    display: block;
    margin: 0 auto;
    max-width: 750px;
    width: 100%; }
  .section .person-name {
    margin: 0px !important;
    font-size: 20pt; }
  .section .person-title {
    font-size: 17pt; }
  .section__image-caption {
    display: block;
    width: 100%;
    padding: 20px;
    font-family: "BentonSans-Light";
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0 auto;
    max-width: 750px; }
    @media screen and (min-width: 768px) {
      .section__image-caption {
        font-size: 20px; } }
    .section__image-caption--orange {
      background-color: #b66733; }
    .section__image-caption--dark-blue {
      background-color: #0d2340; }
    .section__image-caption--turquoise {
      background-color: #02bcb4; }
    .section__image-caption--pink {
      background-color: #cb1f3f; }
  .section__item {
    margin-bottom: 10px; }
    .section__item ul {
      padding-left: 20px;
      font-family: "BentonSans-Light";
      margin-bottom: 10px;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 300; }
      @media screen and (min-width: 768px) {
        .section__item ul {
          margin-bottom: 20px;
          font-size: 20px; } }
      .section__item ul li {
        list-style-type: disc; }

.management-team .section__item {
  height: 280px; }
  @media screen and (min-width: 768px) {
    .management-team .section__item {
      height: 430px; } }

.management-team a {
  text-decoration: none; }

progress {
  background-color: #d1d4d6;
  height: 30px;
  position: relative; }
  progress:before {
    content: attr(value);
    color: #FFFFFF;
    position: absolute;
    top: 2px;
    left: 5px;
    font-family: "BentonSans-Light";
    font-size: 17px;
    line-height: 1.59; }
  progress:after {
    content: attr(max);
    color: #0d2340;
    position: absolute;
    top: 2px;
    right: 5px;
    font-family: "BentonSans-Light";
    font-size: 17px;
    line-height: 1.59; }

progress::-webkit-progress-bar {
  background-color: #d1d4d6; }

progress::-moz-progress-bar {
  background-color: #d1d4d6; }

progress::-webkit-progress-value {
  background-color: #0d2340; }

.single-manager__progress-bar {
  width: 100%;
  max-width: 750px; }

.square {
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 10px; }
  .square--dark-blue {
    background-color: #0d2340; }
  .square--grey {
    background-color: #d1d4d6; }
  .square--pink {
    background-color: #cb1f3f; }
  .square--pink3 {
    background-color: #F19DB2; }
  .square--pink2 {
    background-color: #E15D7D; }
  .square--pink1 {
    background-color: #E43F64; }
  .square--pink0 {
    background-color: #D51544; }

.modal {
  position: fixed;
  background-color: #f3f3f3;
  z-index: 999999999999999999999999999999;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease;
  top: -100%;
  visibility: hidden;
  opacity: 0;
  overflow-x: hidden; }
  .modal--show {
    top: 0;
    opacity: 1;
    visibility: visible; }
  .modal__inner {
    padding: 40px;
    max-width: 750px;
    margin: 0 auto;
    position: relative; }
  .modal__item {
    padding-top: 20px;
    padding-bottom: 20px; }
  .modal__open {
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: #b66733;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(/assets/icons/svg/iconfinder-icon-comment.fd71d21b7c58bb0da9669d39cc9dc5fd.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    appearance: none;
    border: none;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
    outline: none !important;
    z-index: 999; }
    @media screen and (min-width: 768px) {
      .modal__open {
        bottom: 25px;
        right: 55px;
        width: 70px;
        height: 70px; } }
  .modal__close {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #4a4a4a;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    appearance: none;
    border: none;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
    outline: none !important; }
    @media screen and (min-width: 768px) {
      .modal__close {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px; } }
    .modal__close span {
      color: #FFFFFF;
      font-size: 20px;
      line-height: 20px;
      top: -2px;
      position: relative; }
      @media screen and (min-width: 768px) {
        .modal__close span {
          font-size: 30px;
          line-height: 30px;
          top: -2px; } }
    .modal__close--login {
      top: 10px;
      bottom: auto; }
      @media screen and (min-width: 768px) {
        .modal__close--login {
          bottom: auto;
          top: 20px; } }

.input {
  appearance: none;
  border: solid 1px #d1d4d6;
  background-color: #efefef;
  width: 100%;
  padding: 10px 20px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 10px;
  font-family: "BentonSans-Light";
  font-size: 16px;
  line-height: 1.4;
  color: #0d2340; }
  @media screen and (min-width: 768px) {
    .input {
      font-size: 20px;
      margin-bottom: 20px; } }
  .input--select {
    appearance: none;
    max-width: 215px;
    margin: 0 15px 10px 15px;
    height: 44px;
    border-radius: 0 !important; }
    @media screen and (min-width: 768px) {
      .input--select {
        height: 50px;
        margin: 0 15px 20px 15px;
        max-width: 300px; } }

.checkbox {
  border: solid 2px #d1d4d6;
  appearance: none;
  background-color: #FFFFFF;
  box-shadow: none;
  border-radius: 0;
  margin-right: 10px; }

.filter-container {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  width: 100%; }

.filter-label {
  font-family: "BentonSans-Regular", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-right: 20px; }
  @media screen and (min-width: 768px) {
    .filter-label {
      font-size: 20px; } }

.ghost-input {
  font-family: "BentonSans-Light";
  color: #0d2340;
  appearance: none;
  border: none;
  border-bottom: 1px solid #0d2340;
  background-color: transparent;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  border-radius: 0 !important;
  box-shadow: none;
  outline: none;
  min-width: 200px; }
  @media screen and (min-width: 768px) {
    .ghost-input {
      font-size: 20px; } }

.line--dark-blue {
  border-color: #0d2340; }

.login {
  position: fixed;
  background-color: #f3f3f3;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0; }
  .login__inner {
    padding: 40px;
    max-width: 1140px;
    margin: 0 auto; }
  .login__header {
    padding: 0 0 20px 0; }
  .login__close {
    float: right; }
  .login__item {
    margin: 10px 0; }
    @media screen and (min-width: 768px) {
      .login__item {
        margin: 40px 0; } }
  .login__link {
    display: block;
    position: relative;
    cursor: pointer; }
    .login__link:hover .login-overlay__button:after {
      right: 5px; }
    @media screen and (min-width: 768px) {
      .login__link:hover .login-overlay__button:after {
        right: 10px; } }
  .login__image {
    display: block;
    width: 100%;
    height: auto; }
  .login__title {
    position: absolute;
    text-align: center;
    width: 100%;
    padding: 20px 20px 60px 20px;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
    @media screen and (min-width: 1024px) {
      .login__title {
        padding: 40px 40px 80px 40px; } }
    .login__title h2 {
      margin: 0;
      position: relative;
      top: 50%;
      transform: translateY(-50%); }
  .login__button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    font-family: "BentonSans-Light";
    font-size: 16px;
    line-height: 1.2em;
    color: #FFFFFF; }
    @media screen and (min-width: 768px) {
      .login__button {
        font-size: 18px;
        padding: 20px; } }
    .login__button:after {
      content: '';
      position: absolute;
      /*background-image: url('../assets/icons/icon-arrow.png');*/
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      width: 20px;
      height: 18px;
      right: 10px;
      top: 8px;
      transition: right 0.25s ease; }
      @media screen and (min-width: 768px) {
        .login__button:after {
          width: 25px;
          height: 22px;
          right: 20px;
          top: 18px; } }
    .login__button--orange {
      background-color: #b66733; }
    .login__button--dark-blue {
      background-color: #0d2340; }
    .login__button--green {
      background-color: #85b099; }
    .login__button--off-green {
      background-color: #7a868b; }
    .login__button--pink {
      background-color: #cb1f3f; }
    .login__button--yellow {
      background-color: #dca900; }
    .login__button--turquoise {
      background-color: #02bcb4; }

.table-responsive {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0; }

table {
  margin: 0 !important;
  padding: 0;
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%; }

.table {
  border-collapse: collapse;
  width: 100%; }
  .table th {
    font-family: "BentonSans-Regular", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    text-transform: uppercase; }
    @media screen and (min-width: 768px) {
      .table th {
        font-size: 20px; } }
  .table td {
    font-family: "BentonSans-Light";
    font-size: 12px;
    line-height: 1.4; }
    @media screen and (min-width: 768px) {
      .table td {
        font-size: 20px; } }
  .table__cell {
    border-spacing: 0;
    margin: 0;
    padding: 10px;
    border: none; }
    .table__cell--morning-blue {
      background-color: #006098;
      color: #FFFFFF; }
    .table__cell--dark-blue {
      background-color: #0d2340;
      color: #FFFFFF; }
    .table__cell--medium-blue {
      background-color: #4c586e;
      color: #FFFFFF; }
    .table__cell--light-blue {
      background-color: #9a9fa5;
      color: #FFFFFF; }
    .table__cell--dark-orange {
      background-color: #b66733;
      color: #FFFFFF; }
    .table__cell--light-orange {
      background-color: #c99777;
      color: #FFFFFF; }
    .table__cell--white {
      background-color: #FFFFFF;
      color: #0d2340; }
    .table__cell--light-grey {
      background-color: #f3f3f3;
      color: #0d2340; }
    .table__cell--border {
      border-top: 1px solid #0d2340;
      border-bottom: 1px solid #0d2340; }
  .table__caption {
    font-size: 14px;
    line-height: 1.4;
    text-align: left; }
    @media screen and (min-width: 768px) {
      .table__caption {
        font-size: 20px; } }
    .table__caption--main {
      text-transform: uppercase;
      font-family: "BentonSans-Regular", Arial, sans-serif; }
    .table__caption--sub {
      text-transform: capitalize;
      font-family: "BentonSans-Light"; }

.dots {
  display: block;
  width: 100%; }
  .dots__dot {
    display: inline-block;
    background-color: #e1e3e5;
    border-radius: 50%;
    margin: 0 1px;
    width: 15px;
    height: 15px; }
    @media screen and (min-width: 768px) {
      .dots__dot {
        margin: 0 1px;
        width: 20px;
        height: 20px; } }
    .dots__dot:first-child {
      margin-left: 0; }
    .dots__dot:last-child {
      margin-right: 0; }
    .dots__dot--dark-blue {
      background-color: #0d2340; }
    .dots__dot--medium-blue {
      background-color: #4c586e; }
    .dots__dot--morning-blue {
      background-color: #006098; }
    .dots__dot--blue {
      background-color: #25428b; }
    .dots__dot--dark-orange {
      background-color: #b66733; }
    .dots__dot--light-orange {
      background-color: #c99777; }

.simple-col__image-container {
  position: relative; }

.simple-col__image {
  display: block;
  width: 100%; }

.simple-col__caption {
  padding: 20px 0; }

.awards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px; }
  @media screen and (min-width: 768px) {
    .awards {
      grid-template-columns: repeat(2, 1fr); } }
  .awards__item {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    flex-grow: 1; }
  .awards__head {
    display: block;
    width: 100%;
    padding: 20px;
    background-image: url(/assets/img/award-header-bg.852b3f04971dfc8c3490778505cad03d.jpg);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #0d2340; }
    .awards__head h2 {
      margin-bottom: 5px; }
    .awards__head p {
      margin: 0; }
  .awards__body {
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    padding: 20px; }
    .awards__body p {
      font-weight: 300; }
  .awards__footer {
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    padding: 20px;
    position: relative;
    align-self: baseline;
    margin-top: auto; }
    .awards__footer span {
      font-family: "BentonSans-Light";
      font-size: 18px;
      font-weight: bold; }
  .awards__logo {
    display: inline-block;
    width: auto;
    max-height: 60px;
    position: absolute;
    bottom: 20px;
    right: 20px; }

.articles__item {
  margin-bottom: 40px;
  display: flex; }

.articles h3 {
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis; }

.articles__link {
  display: block;
  text-decoration: none !important;
  color: #0d2340; }
  .articles__link:hover {
    color: #0d2340; }

/*!
 * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/)
 */
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 768px) {
  .container {
    width: 750px; } }

@media (min-width: 992px) {
  .container {
    width: 970px; } }

@media (min-width: 1140px) {
  .container {
    width: 1170px; } }

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.row {
  margin-right: -15px;
  margin-left: -15px; }

.row-no-gutters {
  margin-right: 0;
  margin-left: 0; }

.row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0%; } }

@media (min-width: 1140px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }

  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0%; } }

/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
/*****************
Buttons
*****************/
.button {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  font-size: 16px;
  font-family: "BentonSans-Regular";
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 15px; }
  @media screen and (min-width: 768px) {
    .button {
      font-size: 19px; } }
  .button--blue {
    border: 2px solid #0d2340;
    background-color: #0d2340;
    color: #FFFFFF; }
    .button--blue:hover {
      color: #FFFFFF; }
  .button--pink {
    border: 2px solid #cb1f3f;
    background-color: #cb1f3f;
    color: #FFFFFF; }
    .button--pink:hover {
      color: #FFFFFF; }
  .button--grey {
    border: 2px solid #4a4a4a;
    background-color: #4a4a4a;
    color: #FFFFFF; }
    .button--grey:hover {
      color: #FFFFFF; }
  .button--light-blue {
    border: 2px solid #25428b;
    background-color: #25428b;
    color: #FFFFFF; }
    .button--light-blue:hover {
      color: #FFFFFF; }
  .button--light-blue2 {
    border: 2px solid #1f9bde;
    background-color: #1f9bde;
    color: #FFFFFF; }
    .button--light-blue2:hover {
      color: #FFFFFF; }
  .button--orange {
    border: 2px solid #b66733;
    background-color: #b66733;
    color: #FFFFFF; }
    .button--orange:hover {
      color: #FFFFFF; }
  .button--yellow {
    border: 2px solid #dca900;
    background-color: #dca900;
    color: #FFFFFF; }
    .button--yellow:hover {
      color: #FFFFFF; }
  .button--green {
    border: 2px solid #85b099;
    background-color: #85b099;
    color: #FFFFFF; }
    .button--green:hover {
      color: #FFFFFF; }
  .button--turquoise {
    border: 2px solid #02bcb4;
    background-color: #02bcb4;
    color: #FFFFFF; }
    .button--turquoise:hover {
      color: #FFFFFF; }
  .button--ghost {
    border: 2px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF; }
    .button--ghost:hover {
      color: #FFFFFF; }
  .button--ghost-blue {
    border: 2px solid #0d2340;
    background-color: transparent;
    color: #0d2340; }
    .button--ghost-blue:hover {
      color: #0d2340; }
  .button--accounts {
    padding-right: 30px;
    min-height: 43px; }
    @media screen and (min-width: 768px) {
      .button--accounts {
        padding-right: 50px; } }
    .button--accounts:after {
      content: '';
      position: absolute;
      background-image: url(/assets/icons/svg/icon-user.9fe5eb3c9ab53c1a92ea0b33af1ebf58.svg);
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      width: 20px;
      height: 20px;
      right: 23px;
      top: 12px; }
      @media screen and (min-width: 768px) {
        .button--accounts:after {
          top: 12px; } }
  .button--arrow {
    padding-right: 60px; }
    .button--arrow:after {
      content: '';
      position: absolute;
      background-image: url(/assets/icons/svg/iconfinder-icon-arrow-white.4840f72c4cbd9cd1399604886b25b21f.svg);
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      width: 20px;
      height: 18px;
      right: 15px;
      top: 10px;
      transition: right 0.25s ease; }
      @media screen and (min-width: 768px) {
        .button--arrow:after {
          top: 16px; } }
    .button--arrow:hover:after {
      right: 10px; }
  .button--arrow-blue:after {
    background-image: url(/assets/icons/svg/iconfinder-icon-arrow-blue.a88c59b1556a5bf799e379c36990b61c.svg); }
  .button--full-width {
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px; }

/*!
 * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/)
 */
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* Breakpoints
===========================================*/
/*Fonts
===========================================*/
/*Colors
===========================================*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

/*b,
strong {
	font-weight: bold;
}*/
dfn {
  font-style: italic; }

/*h1 {
	font-size: 2em;
	margin: 0.67em 0;
}*/
mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

/*table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

/*a {
	color: #337ab7;
	text-decoration: none;

}*/
/*a:hover,
a:focus {
	color: #23527c;
	text-decoration: underline;
}

a:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

figure {
	margin: 0;
}

img {
	vertical-align: middle;
}*/
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  height: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  /*border-radius: 4px;*/
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  max-width: 880px; }

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease; }

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #5cb85c; }

.progress-bar-pink {
  background-color: #cb1f3f;
  color: #FFFFFF;
  text-align: right;
  padding-right: 10px; }

.progress-bar-pink3 {
  background-color: #F19DB2;
  color: #FFFFFF;
  text-align: right;
  padding-right: 10px; }

.progress-bar-pink2 {
  background-color: #E15D7D;
  color: #FFFFFF;
  text-align: right;
  padding-right: 10px; }

.progress-bar-pink1 {
  background-color: #E43F64;
  color: #FFFFFF;
  text-align: right;
  padding-right: 10px; }

.progress-bar-pink0 {
  background-color: #D51544;
  color: #FFFFFF;
  text-align: right;
  padding-right: 10px; }

.progress-bar-dark-blue {
  background-color: #0d2340;
  color: #FFFFFF;
  text-align: right;
  padding-right: 10px; }

.progress-bar-grey {
  background-color: #d1d4d6;
  color: #0d2340;
  text-align: right;
  padding-right: 10px; }

.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
  background-color: #5bc0de; }

.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
  background-color: #f0ad4e; }

.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
  background-color: #d9534f; }

.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.clearfix:before,
.clearfix:after {
  display: table;
  content: " "; }

.clearfix:after {
  clear: both; }

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

/*
    @include flexbox();
    @include inline-flex();
    @include flex-direction(row);
    @include flex-wrap(nowrap);
    @include flex-flow(row nowrap);
    @include order(0);
    @include box-flex(1);
    @include flex-grow(1);
    @include flex-shrink(1);
    @include flex-basis(auto);
    @include flex(1, 1, auto);
    @include justify-content(flex-start);
    @include align-items(stretch);
    @include align-self(auto);
    @include align-content(stretch);
*/
/**
 * 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: 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 {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  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;
  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 {
  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(/_/node_modules/owl.carousel/dist/assets/owl.video.play.4a37f8008959c75f619bf0a3a4e2d7a2.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-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;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*# sourceMappingURL=main.bundle.css.map*/