@charset "UTF-8";
/*
Theme Name: Visit Oakville
Description: Custom WordPress theme developed for Visit Oakville.
Author: BT/A Advertising
Version: 1.0.0
*/
/*-------------------------------
>>> VARIABLES:
-------------------------------*/
/*-------------------------------
>>> THEME SCSS:
-------------------------------*/
/*--------------------------------------------------------------
THEME / BOOTSTRAP
--------------------------------------------------------------*/
@import "css/bootstrap/bootstrap.min.css";
/*--------------------------------------------------------------
THEME / MIXINS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
THEME / TYPOGRAPHY
--------------------------------------------------------------*/
@import url("https://use.typekit.net/hol0frt.css");


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

h2,
h3,
h4,
h5,
h6 {
  font-family: montserrat, sans-serif;
  font-weight: 700;
}

h1,
h2 {
  font-family: minerva-modern, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-weight: bold;
  line-height: 1;
  color: #005587;
}

h1 {
  font-size: 68px;
  margin-bottom: 40px;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 62px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 56px;
  }
}

@media (max-width: 479px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 52px;
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {
  h2 {
    font-size: 48px;
  }
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 36px;
  }
}

@media (max-width: 479px) {
  h2 {
    font-size: 32px;
  }
}

h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 20px;
}

h3 {
  font-size: 48px;
  color: #005587;
}

@media (max-width: 991.98px) {
  h3 {
    font-size: 46px;
  }
}

@media (max-width: 767.98px) {
  h3 {
    font-size: 34px;
  }
}

@media (max-width: 479px) {
  h3 {
    font-size: 32px;
  }
}

* {
  font-family: montserrat, sans-serif;
  font-weight: 400;
}

p {
  line-height: 1.4;
  color: #333333;
}

p:last-child {
  margin-bottom: 0;
}

p,
li {
  color: #005587;
  line-height: 1.6;
  font-size: 18px;
}

@media (max-width: 767.98px) {

  p,
  li {
    font-size: 16.5px;
  }
}

ul {
  padding-left: 20px;
}

strong,
b {
  font-family: montserrat, sans-serif;
  font-weight: 700;
}

button {
  line-height: 1;
  letter-spacing: 0.05rem;
  color: #000000;
}

/*--------------------------------------------------------------
THEME / COMMON
--------------------------------------------------------------*/
.white-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 80px solid #ffffff;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .white-border {
    border: 45px solid #ffffff;
  }
}

@media (max-width: 991.98px) {
  .white-border {
    border: 30px solid #ffffff;
  }
}

@media (max-width: 767.98px) {
  .white-border {
    border: 15px solid #ffffff;
  }
}

.partnerCat {
  padding-top: 20px;
  padding-bottom: 20px;
}

.cat-tile, .media-tile {
  padding-top: 15px;
  padding-bottom: 15px;
}

.cat-tile a, .media-tile a {
  display: block;
  padding: 0;
  margin: 0 auto;
  width: 75%;
  height: 200px;
  background-color: #efefef;
  border: 2px solid #cccccc;
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #666666;
  text-align: center;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
}

.media-tile a {
  border-color: #004A7C;
  background-color: #004A7C;
  color: #ffffff;
}

.cat-tile a:hover {
  transform: scale(1.2);
  border-color: #004A7C;
  background-color: #004A7C;
  color: #ffffff;
}

.media-tile a:hover {
  transform: scale(1.2);
  border-color: #F1B434;
  background-color: #F1B434;
  color: #ffffff;
}


.cat-tile a span, .media-tile a span {
  display: block;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.link-arrow-wrap .link {
  float: left;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
}

.link-arrow-wrap .link span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

.link-arrow-wrap .link span {
  position: absolute;
  pointer-events: none;
  right: -15px;
  top: 9px;
  height: 2px;
  width: 0;
}

.link-arrow-wrap .link span:before,
.link-arrow-wrap .link span:after {
  content: "";
  position: absolute;
  background: #F1B434;
  right: 2px;
  height: 9px;
  width: 2px;
  -webkit-transition: right 300ms ease;
  -moz-transition: right 300ms ease;
  -ms-transition: right 300ms ease;
  -o-transition: right 300ms ease;
  transition: right 300ms ease;
}

.link-arrow-wrap .link span:before {
  top: -1px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.link-arrow-wrap .link span:after {
  bottom: -1px;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.link-arrow-wrap .link+span {
  position: relative;
  display: block;
  float: left;
  background: #F1B434;
  right: -15px;
  top: 9px;
  height: 2px;
  width: 0;
  -webkit-transition: width 300ms ease;
  -moz-transition: width 300ms ease;
  -ms-transition: width 300ms ease;
  -o-transition: width 300ms ease;
  transition: width 300ms ease;
}
#em-wrapper .em-pagination{clear:both;}
#em-wrapper .em-pagination .page-numbers{font-size:14px!important;;color:#005587!important;}
#em-wrapper .em-pagination .page-numbers.current{color:#8aabc3!important;}
#em-wrapper .em-pagination .page-numbers.current, #em-wrapper .em-pagination .page-numbers:hover{padding:6px 0!important;height:40px!important;text-decoration:none;}
#em-wrapper .em-pagination .page-numbers.next, #em-wrapper .em-pagination .page-numbers.prev, #em-wrapper .em-pagination .page-numbers.next:hover, #em-wrapper .em-pagination .page-numbers.prev:hover{padding:1px 0!important;height:25px!important;}

@media (min-width: 992px) {

  .link-arrow-wrap .link:hover span:before,
  .link-arrow-wrap .link:hover span:after {
    right: -42px;
  }

  .link-arrow-wrap .link:hover+span {
    width: 42px;
  }
}

.link-arrow-wrap a {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
}

.link-arrow-wrap a span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

.link-arrow-wrap.left .link {
  float: left;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
}

.link-arrow-wrap.left .link span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

.link-arrow-wrap.left .link span {
  position: absolute;
  pointer-events: none;
  left: -15px;
  top: 9px;
  height: 2px;
  width: 0;
}

.link-arrow-wrap.left .link span:before,
.link-arrow-wrap.left .link span:after {
  content: "";
  position: absolute;
  background: #F1B434;
  left: 2px;
  height: 9px;
  width: 2px;
  -webkit-transition: right 300ms ease;
  -moz-transition: right 300ms ease;
  -ms-transition: right 300ms ease;
  -o-transition: right 300ms ease;
  transition: right 300ms ease;
}

.link-arrow-wrap.left .link span:before {
  top: -1px;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.link-arrow-wrap.left .link span:after {
  bottom: -1px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.link-arrow-wrap.left .link+span {
  position: relative;
  display: block;
  float: left;
  background: #F1B434;
  right: -15px;
  top: 9px;
  height: 2px;
  width: 0;
  -webkit-transition: width 300ms ease;
  -moz-transition: width 300ms ease;
  -ms-transition: width 300ms ease;
  -o-transition: width 300ms ease;
  transition: width 300ms ease;
}

@media (min-width: 992px) {

  .link-arrow-wrap.left .link:hover span:before,
  .link-arrow-wrap.left .link:hover span:after {
    right: -42px;
  }

  .link-arrow-wrap.left .link:hover+span {
    width: 42px;
  }
}

.link-arrow-wrap.down .link {
  float: left;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
}

.link-arrow-wrap.down .link span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

.link-arrow-wrap.down .link span {
  position: absolute;
  pointer-events: none;
  right: -15px;
  top: 9px;
  height: 2px;
  width: 0;
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 12px;
}

.link-arrow-wrap.down .link span:before,
.link-arrow-wrap.down .link span:after {
  content: "";
  position: absolute;
  background: #F1B434;
  right: 2px;
  height: 9px;
  width: 2px;
  -webkit-transition: right 300ms ease;
  -moz-transition: right 300ms ease;
  -ms-transition: right 300ms ease;
  -o-transition: right 300ms ease;
  transition: right 300ms ease;
}

.link-arrow-wrap.down .link span:before {
  top: -1px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.link-arrow-wrap.down .link span:after {
  bottom: -1px;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.link-arrow-wrap.down .link+span {
  position: relative;
  display: block;
  float: left;
  background: #F1B434;
  right: -15px;
  top: 9px;
  height: 2px;
  width: 0;
  -webkit-transition: width 300ms ease;
  -moz-transition: width 300ms ease;
  -ms-transition: width 300ms ease;
  -o-transition: width 300ms ease;
  transition: width 300ms ease;
}

@media (min-width: 992px) {

  .link-arrow-wrap.down .link:hover span:before,
  .link-arrow-wrap.down .link:hover span:after {
    right: -42px;
  }

  .link-arrow-wrap.down .link:hover+span {
    width: 42px;
  }
}

.breadcrumbs-row {
  padding-top: 35px;
}

.breadcrumbs-row a {
  background-image: linear-gradient(#005587, #005587);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  -webkit-transition: background-size 500ms ease;
  -moz-transition: background-size 500ms ease;
  -ms-transition: background-size 500ms ease;
  -o-transition: background-size 500ms ease;
  transition: background-size 500ms ease;
  outline: none !important;
  padding-bottom: 3px;
  text-decoration: none;
  background-image: linear-gradient(#F1B434, #F1B434);
  background-size: 0% 1px;
  -webkit-transition: color 250ms ease, background-size 500ms ease;
  -moz-transition: color 250ms ease, background-size 500ms ease;
  -ms-transition: color 250ms ease, background-size 500ms ease;
  -o-transition: color 250ms ease, background-size 500ms ease;
  transition: color 250ms ease, background-size 500ms ease;
}

.breadcrumbs-row a:hover,
.breadcrumbs-row a:focus {
  background-size: 100% 2px;
}

.breadcrumbs-row a:hover {
  background-size: 100% 1px;
}

.blocks-row {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .blocks-row {
    margin-left: -60px;
    margin-right: -60px;
  }

  .blocks-row>.col {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.blocks-row .block {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  margin-bottom: 100px;
}

@media (max-width: 991.98px) {
  .blocks-row .block {
    margin-bottom: 60px;
  }
}

.blocks-row .block.animprep {
  opacity: 0;
}

.blocks-row .block.animprep.animtr {
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}

.blocks-row .block.animprep.animfinal {
  opacity: 1;
}

.blocks-row .block>.row {
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.blocks-row .block:only-child,
.blocks-row .block:last-child {
  margin-bottom: 0;
}

.blocks-row .block .image-col {
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

@media (max-width: 991.98px) {
  .blocks-row .block .image-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.blocks-row .block .image-col .image {
  height: 520px;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
}

@media (max-width:1199.98px) {
  .cat-tile a {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .blocks-row .block .image-col .image {
    height: 360px;
  }

  .cat-tile a {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .blocks-row .block .image-col .image {
    height: 300px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .cat-tile a {
    font-size: 20px;
    height: 150px;
  }

  .cat-tile a span {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .blocks-row .block .image-col .image {
    height: 280px;
  }
}

@media (max-width: 479px) {
  .blocks-row .block .image-col .image {
    height: 250px;
  }
}

@media (max-width: 349px) {
  .blocks-row .block .image-col .image {
    height: 220px;
  }
}

.blocks-row .block .image-col .image .date-box {
  position: absolute;
  bottom: 0;
  left: 15px;
  padding: 25px;
  min-width: none;
}

@media (max-width: 479px) {
  .blocks-row .block .image-col .image .date-box {
    padding: 15px;
  }
}

@media (max-width: 349px) {
  .blocks-row .block .image-col .image .date-box {
    padding: 10px;
  }
}

.blocks-row .block .content-col {
  -ms-flex: 0 0 39.5833333333%;
  flex: 0 0 39.5833333333%;
  max-width: 39.5833333333%;
  position: absolute;
  right: 45px;
  top: 50px;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .blocks-row .block .content-col {
    position: relative;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    top: 0;
    right: 0;
  }
}

.blocks-row .block .content-col .inner {
  background: #F1F2F2;
  padding: 40px 40px 90px;
}

@media (max-width: 991.98px) {
  .blocks-row .block .content-col .inner {
    padding: 40px 40px 60px;
  }
}

@media (max-width: 349px) {
  .blocks-row .block .content-col .inner {
    padding: 25px 25px 45px;
  }
}

.blocks-row .block .content-col .inner h2 {
  font-size: 36px;
  margin-bottom: 18px;
  font-family: minerva-modern, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  color: #005587;
}

@media (max-width: 991.98px) {
  .blocks-row .block .content-col .inner h2 {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  .blocks-row .block .content-col .inner h2 {
    font-size: 32px;
  }
}

@media (max-width: 479px) {
  .blocks-row .block .content-col .inner h2 {
    font-size: 28px;
  }
}

.blocks-row .block .content-col .inner .link-arrow-wrap {
  margin-top: 40px;
}

.blocks-row .block .content-col .inner * {
  color: #005587;
}

.blocks-row .block.small {
  padding-bottom: 40px;
  margin-bottom: 25px;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 1199.98px) {
  .blocks-row .block.small {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 100px;
  }

  .blocks-row .block.small:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .blocks-row .block.small {
    margin-bottom: 60px;
  }
}

.blocks-row .block.small>.row:before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 100%;
  width: -moz-calc(100% - 115px);
  width: -webkit-calc(100% - 115px);
  width: calc(100% - 115px);
  height: 100%;
  height: -moz-calc(100% - 40px);
  height: -webkit-calc(100% - 40px);
  height: calc(100% - 40px);
  bottom: 0;
  right: 15px;
}

.blocks-row .block.small .image-col {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 1199.98px) {
  .blocks-row .block.small .image-col {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (max-width: 991.98px) {
  .blocks-row .block.small .image-col {
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
}

.blocks-row .block.small .image-col .image {
  height: 290px;
}

@media (max-width: 1479px) {
  .blocks-row .block.small .image-col .image {
    height: 232px;
  }
}

@media (max-width: 1199.98px) {
  .blocks-row .block.small .image-col .image {
    height: 260px;
  }
}

@media (max-width: 991.98px) {
  .blocks-row .block.small .image-col .image {
    height: 240px;
  }
}

@media (max-width: 767.98px) {
  .blocks-row .block.small .image-col .image {
    height: 175px;
  }
}

@media (max-width: 479px) {
  .blocks-row .block.small .image-col .image {
    height: 140px;
  }
}

.blocks-row .block.small .content-col {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  right: 0;
}

@media (max-width: 1199.98px) {
  .blocks-row .block.small .content-col {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (max-width: 991.98px) {
  .blocks-row .block.small .content-col {
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%;
    top: 45px;
  }
}

@media (max-width: 575.98px) {
  .blocks-row .block.small .content-col {
    top: 30px;
  }
}

.blocks-row .block.small .content-col .inner {
  background: none !important;
  padding: 25px 0 60px 0;
}

@media (max-width: 991.98px) {
  .blocks-row .block.small .content-col .inner {
    padding: 25px 30px 60px 0;
  }
}

@media (max-width: 575.98px) {
  .blocks-row .block.small .content-col .inner {
    padding: 40px 30px 45px 0;
  }

  .blocks-row .block.small .content-col .inner p {
    display: none;
  }
}

.blocks-row .block.image-right .row {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.blocks-row .block.image-right .image-col {
  order: 2;
}

@media (max-width: 991.98px) {
  .blocks-row .block.image-right .image-col {
    order: 1;
  }
}

@media (min-width: 992px) {
  .blocks-row .block.image-right .image-col .image .date-box {
    left: unset;
    right: 15px;
  }
}

.blocks-row .block.image-right .content-col {
  order: 1;
  right: auto;
  left: 45px;
}

@media (max-width: 991.98px) {
  .blocks-row .block.image-right .content-col {
    left: 0;
    order: 2;
  }
}

.blocks-row .small-block {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 30px;
  min-height: 190px;
}

.blocks-row .small-block:first-child {
  margin-top: 0;
}

.blocks-row .small-block .image {
  background-color: #ffffff;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  float: left;
  width: 175px;
  height: 175px;
  position: relative;
  z-index: 1;
}

@media (max-width: 479px) {
  .blocks-row .small-block .image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 349px) {
  .blocks-row .small-block .image {
    width: 120px;
    height: 120px;
  }
}

.blocks-row .small-block .inner {
  float: left;
  position: relative;
  top: 30px;
  min-height: 180px;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 150px;
  padding-bottom: 64px;
  margin-bottom: 50px;
  width: -moz-calc(100% - 175px);
  width: -webkit-calc(100% - 175px);
  width: calc(100% - 175px);
}

@media (max-width: 1199.98px) {
  .blocks-row .small-block .inner {
    padding-right: 30px;
  }
}

@media (max-width: 479px) {
  .blocks-row .small-block .inner {
    width: -moz-calc(100% - 150px);
    width: -webkit-calc(100% - 150px);
    width: calc(100% - 150px);
    min-height: 150px;
    padding: 15px;
  }
}

@media (max-width: 349px) {
  .blocks-row .small-block .inner {
    width: -moz-calc(100% - 120px);
    width: -webkit-calc(100% - 120px);
    width: calc(100% - 120px);
  }
}

.blocks-row .small-block .inner:before {
  content: "";
  position: absolute;
  background: #F1F2F2;
  width: 100%;
  width: -moz-calc(100% + 100px);
  width: -webkit-calc(100% + 100px);
  width: calc(100% + 100px);
  height: 100%;
  top: 0;
  right: 0;
}

@media (max-width: 479px) {
  .blocks-row .small-block .inner p {
    display: none;
  }
}

.blocks-row .small-block .inner>* {
  position: relative;
  z-index: 1;
}

.blocks-row .small-block h3 {
  color: #005587;
  text-transform: uppercase;
  font-size: 18px;
  font-family: montserrat, sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 767.98px) {
  .blocks-row .small-block h3 {
    font-size: 16.5px;
  }
}

.blocks-row .small-block p {
  font-size: 16px;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .blocks-row .small-block p {
    font-size: 14px;
  }
}

.blocks-row .small-block .link-arrow-wrap {
  position: absolute;
  bottom: 20px;
  left: 30px;
}

@media (max-width: 479px) {
  .blocks-row .small-block .link-arrow-wrap {
    left: 15px;
  }
}

.blocks-row .small-block .date-box {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 25px;
  min-width: none;
}

@media (max-width: 479px) {
  .blocks-row .small-block .date-box {
    padding: 15px;
  }
}

@media (max-width: 349px) {
  .blocks-row .small-block .date-box {
    padding: 10px;
  }
}

.blocks-row .small-block.white .inner:before {
  background: #ffffff;
}

.blocks-row .small-block.white .inner .date-box {
  background: #F1F2F2;
}

.blocks-row.loaded-blocks {
  margin-top: 100px;
}

.caption-blocks-row .caption-block {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  margin-bottom: 100px;
}

@media (max-width: 767.98px) {
  .caption-blocks-row .caption-block {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .caption-blocks-row .caption-block {
    margin-bottom: 30px;
  }
}

.caption-blocks-row .caption-block .content {
  margin-top: 190px;
}

@media (max-width: 1199.98px) {
  .caption-blocks-row .caption-block .content {
    margin-top: 0;
  }
}

.caption-blocks-row .caption-block .content:before {
  content: "";
  position: absolute;
  background: #F1F2F2;
  width: 100%;
  width: -moz-calc(100% - 120px);
  width: -webkit-calc(100% - 120px);
  width: calc(100% - 120px);
  height: 100%;
  height: -moz-calc(100% - 175px);
  height: -webkit-calc(100% - 175px);
  height: calc(100% - 175px);
  bottom: 0;
  right: 60px;
}

@media (max-width: 1199.98px) {
  .caption-blocks-row .caption-block .content:before {
    background: #ffffff;
    width: 100%;
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    height: 100%;
    right: 15px;
  }
}

.caption-blocks-row .caption-block .content .image {
  width: 220px;
  height: 220px;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  position: absolute;
  top: 0;
  left: 15px;
}

@media (max-width: 1199.98px) {
  .caption-blocks-row .caption-block .content .image {
    position: relative;
    width: 100%;
    height: 320px;
    left: 0;
  }
}

@media (max-width: 767.98px) {
  .caption-blocks-row .caption-block .content .image {
    height: 380px;
  }
}

@media (max-width: 479px) {
  .caption-blocks-row .caption-block .content .image {
    height: 320px;
  }
}

.caption-blocks-row .caption-block .content .inner {
  padding-top: 60px;
  padding-left: 30px;
  padding-right: 60px;
  padding-bottom: 30px;
  position: relative;
  float: right;
  width: 100%;
  width: -moz-calc(100% - 60px);
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
  z-index: 1;
}

@media (max-width: 1479px) {
  .caption-blocks-row .caption-block .content .inner {
    padding-left: 15px;
    padding-right: 75px;
  }
}

@media (max-width: 1199.98px) {
  .caption-blocks-row .caption-block .content .inner {
    background: #ffffff;
    width: 100%;
    padding: 30px;
  }
}

.caption-blocks-row .caption-block .content h2 {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .caption-blocks-row .caption-block .content h2 {
    font-size: 22.5px;
  }
}

.grid-blocks-row .grid-block {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.grid-blocks-row .grid-block:nth-child(even) {
  float: right;
}

@media (max-width: 1199.98px) {
  .grid-blocks-row .grid-block:nth-child(even) .block-inner {
    float: right;
  }
}

.grid-blocks-row .grid-block .block-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

@media (max-width: 1199.98px) {
  .grid-blocks-row .grid-block .block-inner {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 320px;
  }
}

@media (max-width: 479px) {
  .grid-blocks-row .grid-block .block-inner {
    width: 260px;
  }
}

.grid-blocks-row .grid-block .image {
  position: relative;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  width: 320px;
  height: 320px;
  margin-right: 52px;
}

@media (max-width: 1199.98px) {
  .grid-blocks-row .grid-block .image {
    margin-right: 0;
  }
}

@media (max-width: 479px) {
  .grid-blocks-row .grid-block .image {
    width: 260px;
    height: 260px;
  }
}

.grid-blocks-row .grid-block .image .date-box {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px;
  min-width: none;
}

@media (max-width: 479px) {
  .grid-blocks-row .grid-block .image .date-box {
    padding: 15px;
  }
}

@media (max-width: 349px) {
  .grid-blocks-row .grid-block .image .date-box {
    padding: 10px;
  }
}

.grid-blocks-row .grid-block .content {
  max-width: 400px;
}

@media (max-width: 1199.98px) {
  .grid-blocks-row .grid-block .content {
    max-width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .grid-blocks-row .grid-block .content p {
    display: none;
  }
}

.grid-blocks-row .grid-block .content h2 {
  font-size: 36px;
  margin-bottom: 18px;
  font-family: minerva-modern, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  color: #005587;
}

@media (max-width: 991.98px) {
  .grid-blocks-row .grid-block .content h2 {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  .grid-blocks-row .grid-block .content h2 {
    font-size: 32px;
  }
}

@media (max-width: 479px) {
  .grid-blocks-row .grid-block .content h2 {
    font-size: 28px;
  }
}

.grid-blocks-row .grid-block .content .link-arrow-wrap {
  margin-top: 40px;
}

.grid-blocks-row .grid-block .content * {
  color: #005587;
}

.grid-blocks-row .grid-block:nth-child(even) .image {
  margin-left: 320px;
}

@media (max-width: 1479px) {
  .grid-blocks-row .grid-block:nth-child(even) .image {
    margin-left: 106px;
  }
}

@media (max-width: 1199.98px) {
  .grid-blocks-row .grid-block:nth-child(even) .image {
    margin-left: 0;
  }
}

.contact-info .info-item button {
  padding: 0;
  background: none;
  outline: none !important;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  display: inline-block;
  padding-right: 0;
  -webkit-transition: padding-right 300ms ease;
  -moz-transition: padding-right 300ms ease;
  -ms-transition: padding-right 300ms ease;
  -o-transition: padding-right 300ms ease;
  transition: padding-right 300ms ease;
}

.contact-info .info-item button span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

.contact-info .info-item button span {
  position: relative;
}

.contact-info .info-item button span div {
  position: absolute;
  pointer-events: none;
  background: #005587;
  right: -15px;
  top: 9px;
  height: 2px;
  width: 0;
  -webkit-transition: width 300ms ease, opacity 200ms ease;
  -moz-transition: width 300ms ease, opacity 200ms ease;
  -ms-transition: width 300ms ease, opacity 200ms ease;
  -o-transition: width 300ms ease, opacity 200ms ease;
  transition: width 300ms ease, opacity 200ms ease;
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 12px;
}

.contact-info .info-item button span div:before,
.contact-info .info-item button span div:after {
  content: "";
  position: absolute;
  background: #005587;
  right: 2px;
  height: 9px;
  width: 2px;
  -webkit-transition: right 250ms ease;
  -moz-transition: right 250ms ease;
  -ms-transition: right 250ms ease;
  -o-transition: right 250ms ease;
  transition: right 250ms ease;
  right: 2px !important;
}

.contact-info .info-item button span div:before {
  top: -1px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contact-info .info-item button span div:after {
  bottom: -1px;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.contact-info .info-item button:hover span div:before,
.contact-info .info-item button:hover span div:after {
  right: -32px;
}

.contact-info .info-item button>span {
  padding-right: 32px;
}

.contact-info .info-item button>span>div {
  pointer-events: unset;
  right: 15px;
  top: 11px;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}

.contact-info .info-item button+div {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 350ms ease;
  -moz-transition: height 350ms ease;
  -ms-transition: height 350ms ease;
  -o-transition: height 350ms ease;
  transition: height 350ms ease;
}

.contact-info .info-item button+div .inner>* {
  margin-top: 5px;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .contact-info .info-item button+div .inner>* {
    font-size: 13px;
  }
}

.contact-info .info-item .social-media .inner>div {
  display: block;
  margin-bottom: 0;
}

.contact-info .info-item .social-media .inner>div>div {
  display: inline-block;
  width: 100%;
  margin-bottom: 2px;
}

.contact-info .info-item .social-media a {
  position: relative;
  padding-left: 24px;
}

.contact-info .info-item .social-media a svg {
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 18px;
}

.contact-info .info-item.active button>span>div {
  -ms-transform: rotate(-90deg);
  /* IE 9 */
  -webkit-transform: rotate(-90deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  top: 5px;
}

.select-arrow-wrap {
  position: relative;
}

.select-arrow-wrap div {
  position: absolute;
  pointer-events: none;
  height: 2px;
  right: 6px;
  bottom: 2px;
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

.select-arrow-wrap div:before,
.select-arrow-wrap div:after {
  content: "";
  position: absolute;
  background: #F1B434;
  right: 2px;
  height: 9px;
  width: 2px;
  -webkit-transition: right 300ms ease;
  -moz-transition: right 300ms ease;
  -ms-transition: right 300ms ease;
  -o-transition: right 300ms ease;
  transition: right 300ms ease;
}

.select-arrow-wrap div:before {
  top: -1px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.select-arrow-wrap div:after {
  bottom: -1px;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.select-arrow-wrap select::-ms-expand {
  display: none;
}

.select-arrow-wrap select {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  position: relative;
  height: 34px;
  outline: none !important;
  -moz-appearance: window;
  -webkit-appearance: none;
}

.select-arrow-wrap select span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

.glide .glide__slides {
  margin-bottom: 0;
}

.glide .glide__arrow {
  padding: 0;
  border: none;
  font-size: 0;
}

.glide .glide__arrow svg {
  width: 50px;
}

.glide .glide__arrow svg polyline,
.glide .glide__arrow svg circle {
  fill: none;
  stroke: #005687;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

.glide .glide__arrow.glide__arrow--prev svg {
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.glide .glide__bullets {
  opacity: 0;
  bottom: -30px;
  left: 60px;
  width: 120px;
  height: 6px;
  position: relative;
  pointer-events: none;
  -webkit-transition: opacity 250ms ease;
  -moz-transition: opacity 250ms ease;
  -ms-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

@media (max-width: 991.98px) {
  .glide .glide__bullets {
    transform: none;
  }
}

.glide .glide__bullets.active {
  opacity: 1;
}

.glide .glide__bullets:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 85, 135, 0.3);
  width: 100%;
  height: 2px;
  top: 2px;
  left: 0;
}

.glide .glide__bullets .glide__bullet {
  background-color: transparent;
  background-image: linear-gradient(#005587, #005587);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin: 0;
  border-radius: 0;
  height: 6px;
  box-shadow: none;
  border: none;
  -webkit-transition: background-size 250ms ease;
  -moz-transition: background-size 250ms ease;
  -ms-transition: background-size 250ms ease;
  -o-transition: background-size 250ms ease;
  transition: background-size 250ms ease;
}

.glide .glide__bullets .glide__bullet.glide__bullet--active {
  background-size: 100% 100%;
}

.glide .glide__bullets .glide__bullet.glide__bullet--active~.glide__bullet {
  background-size: 0% 100%;
}

.mobile-controls {
  display: none;
  padding-top: 30px;
  width: 100%;
}

@media (min-width: 992px) {
  .mobile-controls {
    display: none;
  }
}

.mobile-controls .mobile-arrow {
  padding: 0;
  border: none;
  font-size: 0;
  cursor: pointer;
}

.mobile-controls .mobile-arrow svg {
  width: 44px;
}

.mobile-controls .mobile-arrow svg polyline,
.mobile-controls .mobile-arrow svg circle {
  fill: none;
  stroke: #005687;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

.mobile-controls .mobile-arrow.arrow-prev {
  float: left;
}

.mobile-controls .mobile-arrow.arrow-prev svg {
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mobile-controls .mobile-arrow.arrow-next {
  float: right;
}

.fullscreen-content-wrap {
  position: absolute;
  width: 100%;
  bottom: 78px;
  left: 0;
}

@media (max-width: 1199.98px) {
  .fullscreen-content-wrap {
    bottom: 43px;
  }
}

@media (max-width: 991.98px) {
  .fullscreen-content-wrap {
    bottom: 28px;
  }

  .fullscreen-content-wrap .container {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .fullscreen-content-wrap {
    bottom: 13px;
  }
}

.fullscreen-content-wrap .col {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

@media (max-width: 1479px) {
  .fullscreen-content-wrap .col {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (max-width: 1199.98px) {
  .fullscreen-content-wrap .col {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 991.98px) {
  .fullscreen-content-wrap .col {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (max-width: 767.98px) {
  .fullscreen-content-wrap .col {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (max-width: 991.98px) {
  .fullscreen-content-wrap .col {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (max-width: 479px) {
  .fullscreen-content-wrap .col {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.labels {
  color: #ffffff !important;
  font-size: 50px;
  position: relative;
  top: -20px;
}

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

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

.social-media a {
  width: 24px;
  height: 24px;
  line-height: 24px;
  float: left;
  text-align: center;
}

.social-media a:not(:last-child) {
  margin-right: 24px;
}

.social-media a svg {
  -webkit-transition: fill 500ms ease;
  -moz-transition: fill 500ms ease;
  -ms-transition: fill 500ms ease;
  -o-transition: fill 500ms ease;
  transition: fill 500ms ease;
  height: 100%;
  width: auto;
  fill: #ffffff;
}

.social-media a:hover svg {
  fill: #F1B434;
}

@media (max-width: 991.98px) {
  .share-links {
    position: unset;
    right: unset;
  }
}

.share-links>p {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: none;
}

@media (max-width: 767.98px) {
  .share-links>p {
    font-size: 18px;
  }
}

.share-links nav {
  margin-top: 60px;
  margin-top: unset;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.share-links nav .icon-link {
  width: 28px;
  height: 28px;
}

.share-links nav .icon-link:not(:first-child) {
  margin-left: 0;
  margin-left: 30px;
}

@media (max-width: 991.98px) {
  .share-links nav .icon-link:not(:first-child) {
    margin-top: unset;
    margin-left: 30px;
  }
}

.share-links nav .icon-link svg {
  height: 100%;
}

.share-links nav .icon-link svg path {
  fill: #861657;
  -webkit-transition: fill 500ms ease;
  -moz-transition: fill 500ms ease;
  -ms-transition: fill 500ms ease;
  -o-transition: fill 500ms ease;
  transition: fill 500ms ease;
}

.share-links nav .icon-link:hover svg path {
  fill: #036fd0;
}

.date-box {
  min-width: 106px;
  background: #ffffff;
  padding: 30px 30px 15px 15px;
}

@media (max-width: 479px) {
  .date-box {
    min-width: 88px;
    padding: 15px;
  }
}

@media (max-width: 349px) {
  .date-box {
    padding: 10px;
    min-width: 70px;
  }
}

.date-box * {
  color: #005587;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.date-box .day {
  font-size: 48px;
}

@media (max-width: 479px) {
  .date-box .day {
    font-size: 40px;
  }
}

@media (max-width: 349px) {
  .date-box .day {
    font-size: 37px;
  }
}

.date-box .month {
  font-size: 16px;
  text-transform: uppercase;
}

@media (max-width: 479px) {
  .date-box .month {
    font-size: 14px;
  }
}

@media (max-width: 349px) {
  .date-box .month {
    font-size: 13px;
  }
}

.editor-content * {
  font-size: 16px;
}

@media (max-width: 767.98px) {
  .editor-content * {
    font-size: 14px;
  }
}

.editor-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
  font-family: minerva-modern, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  color: #005587;
}

@media (max-width: 991.98px) {
  .editor-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  .editor-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 479px) {
  .editor-content h2 {
    font-size: 28px;
  }
}

.editor-content h3 {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .editor-content h3 {
    font-size: 22.5px;
  }
}

.editor-content h4,
.editor-content h5,
.editor-content h6 {
  font-size: 16px;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  color: #005587;
}

@media (max-width: 767.98px) {

  .editor-content h4,
  .editor-content h5,
  .editor-content h6 {
    font-size: 14px;
  }
}

.editor-content:not(.copy) p {
  margin-bottom: 30px;
}

.editor-content p:last-child {
  margin-bottom: 0;
}

.editor-content ul {
  margin-bottom: 30px;
}

.editor-content a {
  color: #005587;
  text-decoration: none !important;
  font-family: montserrat, sans-serif;
  font-weight: 600;
  background-image: linear-gradient(#005587, #005587);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  -webkit-transition: background-size 500ms ease;
  -moz-transition: background-size 500ms ease;
  -ms-transition: background-size 500ms ease;
  -o-transition: background-size 500ms ease;
  transition: background-size 500ms ease;
  outline: none !important;
  padding-bottom: 3px;
}

.editor-content a:hover,
.editor-content a:focus {
  background-size: 100% 2px;
}

.editor-content a.external {
  position: relative;
  margin-right: 22px;
  display: inline-block;
}

.editor-content a.external svg {
  position: absolute;
  right: -20px;
  bottom: 9px;
  width: 15px;
}

#pagination,
.em-pagination {
  text-align: center;
}

#pagination nav,
.em-pagination nav {
  display: inline-block;
}

#pagination .screen-reader-text,
.em-pagination .screen-reader-text {
  display: none;
}

#pagination a,
.em-pagination a {
  text-decoration: none !important;
}

#pagination .page-numbers,
.em-pagination .page-numbers {
  -webkit-transition: color 250ms ease;
  -moz-transition: color 250ms ease;
  -ms-transition: color 250ms ease;
  -o-transition: color 250ms ease;
  transition: color 250ms ease;
  color: #005587;
  cursor: pointer;
  padding: 8px 12px;
  font-size: 14px;
  font-family: montserrat, sans-serif;
  font-weight: 600;
}

#pagination .page-numbers:not(:first-child),
.em-pagination .page-numbers:not(:first-child) {
  position: relative;
}

#pagination .page-numbers:not(:first-child):after,
.em-pagination .page-numbers:not(:first-child):after {
  content: "";
  position: absolute;
  background: #005587;
  width: 2px;
  height: 14px;
  top: 10px;
  left: -1px;
}

#pagination .page-numbers.current,
.em-pagination .page-numbers.current {
  color: #8aabc3;
}

#pagination .page-numbers.next,
#pagination .page-numbers.prev,
.em-pagination .page-numbers.next,
.em-pagination .page-numbers.prev {
  font-size: 0;
  color: #F1B434;
  position: relative;
  top: -5px;
  padding: 8px;
}

#pagination .page-numbers.next svg,
#pagination .page-numbers.prev svg,
.em-pagination .page-numbers.next svg,
.em-pagination .page-numbers.prev svg {
  width: 8px;
}

#pagination .page-numbers.prev svg,
.em-pagination .page-numbers.prev svg {
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

#pagination .page-numbers.prev+.page-numbers:after,
.em-pagination .page-numbers.prev+.page-numbers:after {
  content: none;
}

#pagination .page-numbers.next:after,
.em-pagination .page-numbers.next:after {
  content: none;
}

#pagination .pagination,
.em-pagination .pagination {
  padding-bottom: 150px;
}

@media (max-width: 991.98px) {

  #pagination .pagination,
  .em-pagination .pagination {
    padding-bottom: 60px;
  }
}

@media (max-width: 575.98px) {

  #pagination .pagination,
  .em-pagination .pagination {
    padding-top: 30px;
  }
}

#pagination .pagination-small,
.em-pagination .pagination-small {
  display: none;
  padding-top: 30px;
  padding-bottom: 60px;
}

#pagination .pagination-small a.prev,
.em-pagination .pagination-small a.prev {
  float: left;
}

#pagination .pagination-small a.next,
.em-pagination .pagination-small a.next {
  float: right;
}

#pagination .page-numbers:only-child {
  display: none;
}

.em-pagination .page-numbers:first-child:not(.prev):not(.next):not(span) {
  position: relative;
}

.em-pagination .page-numbers:first-child:not(.prev):not(.next):not(span):after {
  content: "";
  position: absolute;
  background: #005587;
  width: 2px;
  height: 14px;
  top: 10px;
  left: -1px;
}

.em-pagination strong:not(:first-child) .page-numbers {
  position: relative;
}

.em-pagination strong:not(:first-child) .page-numbers:after {
  content: "";
  position: absolute;
  background: #005587;
  width: 2px;
  height: 14px;
  top: 10px;
  left: -1px;
}

.post-password-form {
  margin-top: 80px;
  min-height: 700px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

@media (max-width: 991.98px) {
  .post-password-form {
    margin-top: 75px;
  }
}

.post-password-form h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {
  .post-password-form h1 {
    font-size: 48px;
  }
}

@media (max-width: 767.98px) {
  .post-password-form h1 {
    font-size: 36px;
  }
}

@media (max-width: 479px) {
  .post-password-form h1 {
    font-size: 32px;
  }
}

.post-password-form p:last-child {
  margin-top: 60px;
}

.post-password-form p label {
  display: block;
  font-size: 0;
}

.post-password-form p input[type=submit] {
  outline: none !important;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid #005587;
  padding: 17px 16px 14px;
  background: #005587;
  color: #ffffff;
}

.post-password-form p input[type=submit] span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

.post-password-form p input[type=password] {
  width: 100%;
  border: 1px solid #005587;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 8px;
  min-height: 45px;
  border-radius: 0;
  max-width: 320px;
  margin-bottom: 15px;
  font-size: 18px;
}

.post-password-form p input[type=password][type=email] {
  border: 1px solid #005587;
}

.post-password-form p input[type=password]:focus {
  outline: none;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 85, 135, 0.1);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 85, 135, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 85, 135, 0.1);
}

@media (max-width: 767.98px) {
  .post-password-form p input[type=password] {
    font-size: 16.5px;
  }
}

button {
  cursor: pointer;
}

button.nostyle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

button.load-more,
button.show-less {
  display: block;
  border: none;
  background: none;
  outline: none !important;
  margin: 0 auto;
  padding: 0 20px 24px;
  position: relative;
}

button.load-more svg,
button.show-less svg {
  width: 50px;
  height: 50px;
}

button.load-more svg circle,
button.load-more svg line,
button.show-less svg circle,
button.show-less svg line {
  fill: none;
  stroke: #005587;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

button.load-more span,
button.show-less span {
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 12px;
  text-align: center;
  color: #005587;
  font-family: montserrat, sans-serif;
  font-weight: 600;
}

button.show-less svg {
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

img {
  width: 100%;
}

hr {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  margin-bottom: 30px;
}

table,
tr,
td {
  border: 1px solid #b1b2b7;
}

td {
  padding: 5px 10px;
}

p img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

p.embed-p {
  max-width: 1080px;
  margin-top: 60px;
  margin-bottom: 60px;
}

#em-wrapper .em-search-wrapper {
  display: none;
}

#em-wrapper .css-events-list+p {
  display: none;
}

div table.em-calendar {
  width: 100%;
  background: #ffffff;
  border: none;
  color: #005587;
  border: 10px solid #ffffff;
}

div table.em-calendar tr,
div table.em-calendar td,
div table.em-calendar a {
  border: none;
  font-family: montserrat, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

div table.em-calendar td {
  text-align: right;
  vertical-align: bottom;
  height: 48px;
  font-size: 16px;
}

@media (max-width: 1479px) {
  div table.em-calendar td {
    height: 42px;
  }
}

div table.em-calendar td.eventless-toda,
div table.em-calendar td.eventless-today {
  background-color: #F1B434;
  position: relative;
}

div table.em-calendar td.eventless-toda:before,
div table.em-calendar td.eventless-toda:after,
div table.em-calendar td.eventless-today:before,
div table.em-calendar td.eventless-today:after {
  content: "";
  position: absolute;
  background: #ffffff;
  top: 0;
  left: 0;
}

div table.em-calendar td.eventless-toda:before,
div table.em-calendar td.eventless-today:before {
  width: 100%;
  height: 6px;
}

div table.em-calendar td.eventless-toda:after,
div table.em-calendar td.eventless-today:after {
  width: 6px;
  height: 100%;
}

div table.em-calendar td.eventless-pre,
div table.em-calendar td.eventful-pre,
div table.em-calendar td.eventless-post,
div table.em-calendar td.eventful-post {
  color: #005587;
  opacity: 0.5;
}

div table.em-calendar td.eventful a {
  color: #F1B434;
  text-decoration: none;
}

div table.em-calendar thead tr {
  border-bottom: 2px solid #005587;
}

div table.em-calendar thead tr td {
  vertical-align: middle;
  height: auto;
  padding-bottom: 10px;
}

div table.em-calendar thead tr td:first-child {
  text-align: left;
}

div table.em-calendar thead tr td:nth-child(2) svg,
div table.em-calendar thead tr td:nth-child(3) svg {
  width: 10px;
}

div table.em-calendar thead tr td:nth-child(2) svg path,
div table.em-calendar thead tr td:nth-child(3) svg path {
  fill: #005587;
}

div table.em-calendar thead tr td:nth-child(2) svg {
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*div table.em-calendar tbody tr.days-names {
  display: none;
}*/

.b-lazy {
  -webkit-transition: opacity 350ms ease;
  -moz-transition: opacity 350ms ease;
  -ms-transition: opacity 350ms ease;
  -o-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
  opacity: 0;
}

.b-lazy.b-loaded {
  opacity: 1;
}

.grecaptcha-badge {
  visibility: hidden;
}

.qsm-quiz-container.qmn_quiz_container .qsm-pagination {
  border: none !important;
  justify-content: flex-start !important;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn,
.qsm-quiz-container.qmn_quiz_container .btn {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid #005587;
  padding: 17px 16px 14px;
  position: relative;
  padding-right: 40px;
  position: relative;
  overflow: hidden;
  outline: none !important;
  color: #005587 !important;
  background: #ffffff !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn span,
.qsm-quiz-container.qmn_quiz_container .btn span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn svg,
.qsm-quiz-container.qmn_quiz_container .btn svg {
  position: absolute;
  width: 14px;
  right: 16px;
  top: 20px;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn svg polyline,
.qsm-quiz-container.qmn_quiz_container .qmn_btn svg line,
.qsm-quiz-container.qmn_quiz_container .btn svg polyline,
.qsm-quiz-container.qmn_quiz_container .btn svg line {
  fill: none;
  stroke: #005587;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn span,
.qsm-quiz-container.qmn_quiz_container .btn span {
  position: relative;
  z-index: 1;
  -webkit-transition: color 150ms ease;
  -moz-transition: color 150ms ease;
  -ms-transition: color 150ms ease;
  -o-transition: color 150ms ease;
  transition: color 150ms ease;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn span div,
.qsm-quiz-container.qmn_quiz_container .btn span div {
  z-index: 1;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn span div:before,
.qsm-quiz-container.qmn_quiz_container .qmn_btn span div:after,
.qsm-quiz-container.qmn_quiz_container .btn span div:before,
.qsm-quiz-container.qmn_quiz_container .btn span div:after {
  z-index: 1;
  -webkit-transition: background 150ms ease;
  -moz-transition: background 150ms ease;
  -ms-transition: background 150ms ease;
  -o-transition: background 150ms ease;
  transition: background 150ms ease;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn svg,
.qsm-quiz-container.qmn_quiz_container .btn svg {
  z-index: 1;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn svg polyline,
.qsm-quiz-container.qmn_quiz_container .qmn_btn svg line,
.qsm-quiz-container.qmn_quiz_container .btn svg polyline,
.qsm-quiz-container.qmn_quiz_container .btn svg line {
  -webkit-transition: stroke 150ms ease;
  -moz-transition: stroke 150ms ease;
  -ms-transition: stroke 150ms ease;
  -o-transition: stroke 150ms ease;
  transition: stroke 150ms ease;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn:before,
.qsm-quiz-container.qmn_quiz_container .btn:before {
  content: "";
  position: absolute;
  background: #005587;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  -webkit-transition: left 300ms ease;
  -moz-transition: left 300ms ease;
  -ms-transition: left 300ms ease;
  -o-transition: left 300ms ease;
  transition: left 300ms ease;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn:hover:before,
.qsm-quiz-container.qmn_quiz_container .qmn_btn:focus:before,
.qsm-quiz-container.qmn_quiz_container .btn:hover:before,
.qsm-quiz-container.qmn_quiz_container .btn:focus:before {
  left: 0%;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn:hover span,
.qsm-quiz-container.qmn_quiz_container .qmn_btn:focus span,
.qsm-quiz-container.qmn_quiz_container .btn:hover span,
.qsm-quiz-container.qmn_quiz_container .btn:focus span {
  color: #ffffff;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn:hover span div:before,
.qsm-quiz-container.qmn_quiz_container .qmn_btn:hover span div:after,
.qsm-quiz-container.qmn_quiz_container .qmn_btn:focus span div:before,
.qsm-quiz-container.qmn_quiz_container .qmn_btn:focus span div:after,
.qsm-quiz-container.qmn_quiz_container .btn:hover span div:before,
.qsm-quiz-container.qmn_quiz_container .btn:hover span div:after,
.qsm-quiz-container.qmn_quiz_container .btn:focus span div:before,
.qsm-quiz-container.qmn_quiz_container .btn:focus span div:after {
  right: 2px;
  background: #ffffff;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn:hover svg polyline,
.qsm-quiz-container.qmn_quiz_container .qmn_btn:hover svg line,
.qsm-quiz-container.qmn_quiz_container .qmn_btn:focus svg polyline,
.qsm-quiz-container.qmn_quiz_container .qmn_btn:focus svg line,
.qsm-quiz-container.qmn_quiz_container .btn:hover svg polyline,
.qsm-quiz-container.qmn_quiz_container .btn:hover svg line,
.qsm-quiz-container.qmn_quiz_container .btn:focus svg polyline,
.qsm-quiz-container.qmn_quiz_container .btn:focus svg line {
  stroke: #ffffff;
}

.qsm-quiz-container.qmn_quiz_container .qmn_btn:hover,
.qsm-quiz-container.qmn_quiz_container .btn:hover {
  color: #ffffff !important;
  background: #005587 !important;
}

/*--------------------------------------------------------------
THEME / FORMS
--------------------------------------------------------------*/
.wpcf7 form div:nth-child(2) {
  padding-right: 15px;
}

.wpcf7 form div:nth-child(3) {
  padding-left: 15px;
}

.wpcf7 form p {
  margin-bottom: 30px;
  font-size: 16px;
}

@media (max-width: 767.98px) {
  .wpcf7 form p {
    font-size: 14px;
  }
}

.wpcf7 form input:not([type=submit]):not([type=checkbox]),
.wpcf7 form textarea,
.wpcf7 form select {
  width: 100%;
  border: 1px solid #005587;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 8px;
  min-height: 45px;
}

.wpcf7 form input:not([type=submit]):not([type=checkbox])[type=email],
.wpcf7 form textarea[type=email],
.wpcf7 form select[type=email] {
  border: 1px solid #005587;
}

.wpcf7 form input:not([type=submit]):not([type=checkbox]):focus,
.wpcf7 form textarea:focus,
.wpcf7 form select:focus {
  outline: none;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 85, 135, 0.1);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 85, 135, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 85, 135, 0.1);
}

.wpcf7 form textarea {
  max-height: 220px;
}

.wpcf7 form input[type=submit] {
  outline: none !important;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid #005587;
  padding: 17px 16px 14px;
  background: #005587;
  color: #ffffff;
}

.wpcf7 form input[type=submit] span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

.wpcf7 form input[type=submit]+.ajax-loader {
  display: none;
}

.wpcf7 form span.wpcf7-list-item:first-child {
  margin-left: 0;
}

.wpcf7 form span.wpcf7-list-item label span {
  font-size: 18px;
}

.wpcf7 form span.wpcf7-list-item label input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  position: relative;
  top: 1px;
}

#mc_embed_signup form#mc-embedded-subscribe-form {
  padding: 0;
}

@media (min-width: 480px) {
  #mc_embed_signup form#mc-embedded-subscribe-form .name-group .mc-field-group {
    width: 50%;
    float: left;
    clear: none;
  }

  #mc_embed_signup form#mc-embedded-subscribe-form .name-group .mc-field-group:first-child {
    padding-right: 15px;
  }

  #mc_embed_signup form#mc-embedded-subscribe-form .name-group .mc-field-group:last-child {
    padding-left: 15px;
  }
}

#mc_embed_signup form#mc-embedded-subscribe-form .mc-field-group {
  width: 100%;
  padding-bottom: 0;
  min-height: unset;
  margin-bottom: 15px;
}

#mc_embed_signup form#mc-embedded-subscribe-form input:not([type=submit]):not([type=checkbox]),
#mc_embed_signup form#mc-embedded-subscribe-form textarea,
#mc_embed_signup form#mc-embedded-subscribe-form select {
  width: 100%;
  border: 1px solid #005587;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 8px;
  min-height: 45px;
  border-radius: 0;
  margin-bottom: 0;
}

#mc_embed_signup form#mc-embedded-subscribe-form input:not([type=submit]):not([type=checkbox])[type=email],
#mc_embed_signup form#mc-embedded-subscribe-form textarea[type=email],
#mc_embed_signup form#mc-embedded-subscribe-form select[type=email] {
  border: 1px solid #005587;
}

#mc_embed_signup form#mc-embedded-subscribe-form input:not([type=submit]):not([type=checkbox]):focus,
#mc_embed_signup form#mc-embedded-subscribe-form textarea:focus,
#mc_embed_signup form#mc-embedded-subscribe-form select:focus {
  outline: none;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 85, 135, 0.1);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 85, 135, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 85, 135, 0.1);
}

#mc_embed_signup form#mc-embedded-subscribe-form textarea {
  max-height: 220px;
}

#mc_embed_signup form#mc-embedded-subscribe-form label,
#mc_embed_signup form#mc-embedded-subscribe-form .indicates-required {
  color: #005587;
}

#mc_embed_signup form#mc-embedded-subscribe-form div.mce_inline_error {
  padding: 0;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
}

@media (max-width: 767.98px) {
  #mc_embed_signup form#mc-embedded-subscribe-form div.mce_inline_error {
    font-size: 13px;
  }
}

#mc_embed_signup form#mc-embedded-subscribe-form .button {
  margin-bottom: 0;
  outline: none !important;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid #005587;
  padding: 17px 16px 14px;
  background: #005587;
  color: #ffffff;
  height: auto;
  border-radius: 0;
  margin-top: 15px;
  line-height: unset;
}

#mc_embed_signup form#mc-embedded-subscribe-form .button span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

/*--------------------------------------------------------------
THEME / LAYOUT
--------------------------------------------------------------*/
@media (min-width: 1480px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 479px) {
  .container {
    max-width: 460px;
  }
}

body {
  position: relative;
  -webkit-transition: top 500ms ease;
  -moz-transition: top 500ms ease;
  -ms-transition: top 500ms ease;
  -o-transition: top 500ms ease;
  transition: top 500ms ease;
}

main {
  overflow: hidden;
}

main section:first-child:not(.intro-section) {
  margin-top: 80px;
}

@media (max-width: 991.98px) {
  main section:first-child:not(.intro-section) {
    margin-top: 75px;
  }
}

footer {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #115487;
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 991.98px) {
  footer {
    padding-top: 45px;
    padding-bottom: 60px;
  }
}

footer * {
  color: #ffffff;
  font-size: 16px;
  font-family: montserrat, sans-serif;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  footer * {
    font-size: 14px;
  }
}

footer a {
  font-family: montserrat, sans-serif;
  font-weight: 600;
}

footer a:hover {
  color: #ffffff;
}

footer .signup-col {
  position: relative;
  -ms-flex: 0 0 45.8333333333%;
  flex: 0 0 45.8333333333%;
  max-width: 45.8333333333%;
}

@media (max-width: 991.98px) {
  footer .signup-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 100px;
  }
}

@media (max-width: 991.98px) {
  footer .signup-col .inner {
    position: relative;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 515px) {
  footer .signup-col .inner {
    padding: 0 20px;
  }
}

footer .signup-col .inner>*:not(.logo-badge):not(.logo) {
  position: relative;
  z-index: 1;
}

footer .signup-col .logo-badge {
  position: absolute;
  width: 100%;
  width: -moz-calc(100% - 20px);
  width: -webkit-calc(100% - 20px);
  width: calc(100% - 20px);
  left: -80px;
  bottom: -140px;
}

footer .signup-col .logo-badge:after {
  content: "";
  position: absolute;
  background: #14618f;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
}

@media (max-width: 1479px) {
  footer .signup-col .logo-badge {
    width: -moz-calc(100%);
    width: -webkit-calc(100%);
    width: calc(100%);
    left: -50px;
  }
}

@media (max-width: 1199.98px) {
  footer .signup-col .logo-badge {
    width: -moz-calc(100% + 30px);
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px);
    left: -30px;
  }
}

@media (max-width: 991.98px) {
  footer .signup-col .logo-badge {
    width: -moz-calc(100% + 60px);
    width: -webkit-calc(100% + 60px);
    width: calc(100% + 60px);
    bottom: -111px;
  }
}

@media (max-width: 515px) {
  footer .signup-col .logo-badge {
    width: 100%;
    left: 0;
    bottom: -86px;
  }
}

footer .signup-col .logo-badge path {
  fill: #14618f;
}

footer .signup-col .logo {
  position: absolute;
  top: -84px;
  width: 36px;
  left: 25px;
  z-index: 1;
}

@media (max-width: 991.98px) {
  footer .signup-col .logo {
    position: relative;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
  }
}

footer .signup-col .logo path {
  fill: #ffffff;
}

footer .signup-col .content {
  max-width: 420px;
  width: 100%;
}

@media (max-width: 1479px) {
  footer .signup-col .content {
    max-width: 390px;
  }
}

@media (max-width: 1199.98px) {
  footer .signup-col .content {
    max-width: 375px;
  }
}

@media (max-width: 991.98px) {
  footer .signup-col .content {
    max-width: 420px;
  }
}

footer .signup-col .content h2,
footer .signup-col .content h3 {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  text-transform: none;
  font-size: 25px;
  margin-bottom: 12px;
}

@media (max-width: 767.98px) {

  footer .signup-col .content h2,
  footer .signup-col .content h3 {
    font-size: 22.5px;
  }
}

footer .signup-col .content * {
  font-size: 18px;
}

@media (max-width: 767.98px) {
  footer .signup-col .content * {
    font-size: 16.5px;
  }
}

footer .signup-col #mc_embed_signup {
  background: none;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-top: 30px;
}

@media (max-width: 1479px) {
  footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form {
    max-width: 390px;
  }
}

@media (max-width: 1199.98px) {
  footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form {
    max-width: 375px;
  }
}

@media (max-width: 991.98px) {
  footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form {
    max-width: 420px;
  }
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form input[type=email],
footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form input[type=text] {
  border: none !important;
  background: none;
  border-bottom: 1px solid #ffffff !important;
  text-indent: 0;
  height: 40px;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

@media (max-width: 991.98px) {

  footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form input[type=email],
  footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form input[type=text] {
    width: 100%;
  }
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form input:focus {
  outline: none;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid #ffffff;
  padding: 17px 16px 14px;
  position: relative;
  overflow: hidden;
  outline: none !important;
  position: relative;
  top: 20px;
  margin-top: 0;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #ffffff;
  font-size: 14px;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button span {
  position: relative;
  z-index: 1;
  -webkit-transition: color 150ms ease;
  -moz-transition: color 150ms ease;
  -ms-transition: color 150ms ease;
  -o-transition: color 150ms ease;
  transition: color 150ms ease;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button span div {
  z-index: 1;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button span div:before,
footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button span div:after {
  z-index: 1;
  -webkit-transition: background 150ms ease;
  -moz-transition: background 150ms ease;
  -ms-transition: background 150ms ease;
  -o-transition: background 150ms ease;
  transition: background 150ms ease;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button svg {
  z-index: 1;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button svg polyline,
footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button svg line {
  -webkit-transition: stroke 150ms ease;
  -moz-transition: stroke 150ms ease;
  -ms-transition: stroke 150ms ease;
  -o-transition: stroke 150ms ease;
  transition: stroke 150ms ease;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  -webkit-transition: left 300ms ease;
  -moz-transition: left 300ms ease;
  -ms-transition: left 300ms ease;
  -o-transition: left 300ms ease;
  transition: left 300ms ease;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:hover:before,
footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:focus:before {
  left: 0%;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:hover span,
footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:focus span {
  color: #005587;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:hover span div:before,
footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:hover span div:after,
footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:focus span div:before,
footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:focus span div:after {
  right: 2px;
  background: #ffffff;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:hover svg polyline,
footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:hover svg line,
footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:focus svg polyline,
footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .button:focus svg line {
  stroke: #005587;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form .clear {
  text-align: center;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form div.mce_inline_error {
  background: none;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form ::-webkit-input-placeholder {
  color: #b2cbda;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form ::-moz-placeholder {
  color: #b2cbda;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form :-ms-input-placeholder {
  color: #b2cbda;
}

footer .signup-col #mc_embed_signup form#mc-embedded-subscribe-form :-moz-placeholder {
  color: #b2cbda;
}

footer .menu-col {
  -ms-flex: 0 0 27.0833333333%;
  flex: 0 0 27.0833333333%;
  max-width: 27.0833333333%;
}

@media (max-width: 991.98px) {
  footer .menu-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 45px;
    padding-bottom: 45px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  footer .menu-col {
    padding-bottom: 30px;
  }
}

@media (max-width: 991.98px) {
  footer .menu-col ul {
    padding-left: 0;
  }
}

footer .menu-col ul li:not(:last-child) {
  margin-bottom: 8px;
}

footer .contact-col {
  -ms-flex: 0 0 27.0833333333%;
  flex: 0 0 27.0833333333%;
  max-width: 27.0833333333%;
}

@media (max-width: 991.98px) {
  footer .contact-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
}

footer .contact-col .info p {
  font-family: montserrat, sans-serif;
  font-weight: 600;
}

footer .contact-col .info strong {
  font-family: montserrat, sans-serif;
  font-weight: 600;
}

footer .contact-col .social-media {
  margin-top: 30px;
}

@media (max-width: 991.98px) {
  footer .contact-col .social-media {
    display: inline-block;
  }
}

#cover {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 1000;
  opacity: 1;
}

#cover.fade-out {
  opacity: 0;
  -webkit-transition: opacity 100ms ease;
  -moz-transition: opacity 100ms ease;
  -ms-transition: opacity 100ms ease;
  -o-transition: opacity 100ms ease;
  transition: opacity 100ms ease;
}

#alert-banner,
#alert-bottom-banner,
#alert-corner-banner {
  background: #69b9ff;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
  position: fixed;
  left: 0;
  z-index: 9999;
  top: -300px;
  width: 100%;
  padding: 0 !important;
  -webkit-transition: top 500ms ease;
  -moz-transition: top 500ms ease;
  -ms-transition: top 500ms ease;
  -o-transition: top 500ms ease;
  transition: top 500ms ease;
}

#alert-banner .inner,
#alert-bottom-banner .inner,
#alert-corner-banner .inner {
  padding-top: 30px;
  padding-bottom: 14px;
  padding-left: 60px;
  padding-right: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#alert-banner .close-btn,
#alert-bottom-banner .close-btn,
#alert-corner-banner .close-btn {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  margin-top: -13.5px;
  right: 20px;
  cursor: pointer;
}

#alert-banner p,
#alert-banner span,
#alert-banner a,
#alert-bottom-banner p,
#alert-bottom-banner span,
#alert-bottom-banner a,
#alert-corner-banner p,
#alert-corner-banner span,
#alert-corner-banner a {
  color: #000000;
  font-size: 17px;
}

@media (max-width: 991.98px) {

  #alert-banner p,
  #alert-banner span,
  #alert-banner a,
  #alert-bottom-banner p,
  #alert-bottom-banner span,
  #alert-bottom-banner a,
  #alert-corner-banner p,
  #alert-corner-banner span,
  #alert-corner-banner a {
    font-size: 15px;
  }
}

#alert-banner h1,
#alert-banner h2,
#alert-banner h3,
#alert-banner h4,
#alert-banner h5,
#alert-banner h6,
#alert-bottom-banner h1,
#alert-bottom-banner h2,
#alert-bottom-banner h3,
#alert-bottom-banner h4,
#alert-bottom-banner h5,
#alert-bottom-banner h6,
#alert-corner-banner h1,
#alert-corner-banner h2,
#alert-corner-banner h3,
#alert-corner-banner h4,
#alert-corner-banner h5,
#alert-corner-banner h6 {
  color: #000000;
  font-family: montserrat, sans-serif;
  font-weight: 700;
}

#alert-banner h2,
#alert-bottom-banner h2,
#alert-corner-banner h2 {
  font-size: 28px;
}

@media (max-width: 767.98px) {

  #alert-banner h2,
  #alert-bottom-banner h2,
  #alert-corner-banner h2 {
    font-size: 26px;
  }
}

#alert-banner a,
#alert-bottom-banner a,
#alert-corner-banner a {
  color: #861657;
  border-bottom: 2px solid rgba(134, 22, 87, 0.25);
  -webkit-transition: color 500ms ease, border-bottom 500ms ease;
  -moz-transition: color 500ms ease, border-bottom 500ms ease;
  -ms-transition: color 500ms ease, border-bottom 500ms ease;
  -o-transition: color 500ms ease, border-bottom 500ms ease;
  transition: color 500ms ease, border-bottom 500ms ease;
}

#alert-banner a:hover,
#alert-bottom-banner a:hover,
#alert-corner-banner a:hover {
  color: #005587;
  border-bottom: 2px solid rgba(0, 255, 138, 0.25);
}

#alert-banner p,
#alert-bottom-banner p,
#alert-corner-banner p {
  text-align: center;
}

#alert-bottom-banner {
  z-index: 11;
  top: auto;
  bottom: -300px;
  background: none;
  -webkit-transition: bottom 500ms ease;
  -moz-transition: bottom 500ms ease;
  -ms-transition: bottom 500ms ease;
  -o-transition: bottom 500ms ease;
  transition: bottom 500ms ease;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

#alert-bottom-banner .col {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

#alert-bottom-banner .inner {
  background: #e5d3ef;
  width: 100%;
  border-left: 12px solid #65249a;
  overflow: hidden;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
}

#alert-bottom-banner .close-btn {
  right: 35px;
}

#alert-corner-banner {
  background: none;
  z-index: 10;
  max-width: 560px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: auto;
  top: auto;
  right: -1000px;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: right 500ms ease;
  -moz-transition: right 500ms ease;
  -ms-transition: right 500ms ease;
  -o-transition: right 500ms ease;
  transition: right 500ms ease;
}

#alert-corner-banner .inner {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #f2f7cb;
  border-left: 12px solid #c4d600;
  overflow: hidden;
  border-radius: 8px;
}

#alert-corner-banner .close-btn {
  top: 45px;
}

#skip-link-destination {
  position: relative;
  top: -80px;
}

@media (max-width: 991.98px) {
  #skip-link-destination {
    top: -75px;
  }
}

/*--------------------------------------------------------------
THEME / NAVIGATION
--------------------------------------------------------------*/
nav .site-nav .search-form form {
  background: #ffffff;
  position: absolute;
  right: 15px;
  top: 0;
  -webkit-transition: top 350ms ease;
  -moz-transition: top 350ms ease;
  -ms-transition: top 350ms ease;
  -o-transition: top 350ms ease;
  transition: top 350ms ease;
}

nav .site-nav .search-form form .inner {
  -webkit-transition: height 500ms ease;
  -moz-transition: height 500ms ease;
  -ms-transition: height 500ms ease;
  -o-transition: height 500ms ease;
  transition: height 500ms ease;
}

nav .site-nav .search-form form .inner .fields {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

nav .site-nav .search-form form .inner .fields input[type=text] {
  padding-left: 0;
  padding-right: 0;
  border: none;
  background: none;
  border-bottom: 1px solid #005587;
  height: 34px;
  min-width: 200px;
}

nav .site-nav .search-form form .inner .fields input[type=text]:focus {
  outline: none;
}

nav .site-nav .search-form form .inner .fields input[type=submit] {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  outline: none !important;
  margin-left: 15px;
  position: relative;
  top: 6px;
}

nav .site-nav .search-form form .inner .fields input[type=submit] span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

nav .site-nav .search {
  float: left;
  margin-left: 50px;
  position: relative;
  z-index: 3;
  text-align: left;
}

@media (max-width: 1199.98px) {
  nav .site-nav .search {
    margin-right: 0;
  }
}

nav .site-nav .search #search-toggle {
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  padding: 4px;
}

nav .site-nav .search #search-toggle svg {
  position: relative;
  top: 0;
  width: 20px;
  float: right;
}

@media (max-width: 1199.98px) {
  nav .site-nav .search #search-toggle svg {
    margin-left: 0;
  }
}

nav .site-nav .search #search-toggle svg .st0 {
  fill: none;
  stroke: #005587;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

nav .site-nav#desktop-nav {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0);
}

@media (max-width: 991.98px) {
  nav .site-nav#desktop-nav {
    display: none;
  }
}

nav .site-nav#desktop-nav.animprep {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 0;
}

nav .site-nav#desktop-nav.animprep.animtr {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

nav .site-nav#desktop-nav.animprep.animfinal {
  opacity: 1;
}

nav .site-nav#desktop-nav .logo {
  position: absolute;
  z-index: 3;
  top: 50%;
  margin-top: -20px;
  left: 80px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}

nav .site-nav#desktop-nav .logo svg {
  height: 40px;
  width: auto;
}

nav .site-nav#desktop-nav .logo svg .st0 {
  fill: #004A7C;
}

nav .site-nav#desktop-nav .logo.active {
  opacity: 1;
  pointer-events: unset;
}

nav .site-nav#desktop-nav>.container {
  height: 100%;
  max-width: 100%;
  padding: 0 80px;
}

nav .site-nav#desktop-nav .row.bar {
  position: relative;
  z-index: 1;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

nav .site-nav#desktop-nav .row.bar:before {
  content: "";
  position: absolute;
  background: #ffffff;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: -1px;
  right: 0;
}

nav .site-nav#desktop-nav .row.bar:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

nav .site-nav#desktop-nav .nav-col {
  position: relative;
  top: 4px;
  text-align: center;
}

nav .site-nav#desktop-nav .nav-col .nav-outer,
nav .site-nav#desktop-nav .nav-col .search {
  float: right;
}

nav .site-nav#desktop-nav .nav-col .nav-outer {
  display: inline-block;
}

nav .site-nav#desktop-nav .nav-col ul.menu {
  float: right;
  margin-bottom: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

@media (max-width: 1199.98px) {
  nav .site-nav#desktop-nav .nav-col ul.menu {
    width: 100%;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

nav .site-nav#desktop-nav .nav-col ul.menu>li {
  position: relative;
  float: left;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li:not(:last-child) {
  margin-right: 35px;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li.menu-item-has-children>a {
  position: relative;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li.current_page_item>button,
nav .site-nav#desktop-nav .nav-col ul.menu>li.current_page_parent>button {
  color: #036fd0 !important;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li a,
nav .site-nav#desktop-nav .nav-col ul.menu>li button {
  position: relative;
  z-index: 3;
  color: #005587;
  text-decoration: none;
  -webkit-transition: color 250ms ease;
  -moz-transition: color 250ms ease;
  -ms-transition: color 250ms ease;
  -o-transition: color 250ms ease;
  transition: color 250ms ease;
  cursor: pointer;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li a.menu-sep,
nav .site-nav#desktop-nav .nav-col ul.menu>li button.menu-sep {
  cursor: default;
  content: "";
  position: relative;
  display: block !important;
  width: 100%;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li a.menu-sep:after,
nav .site-nav#desktop-nav .nav-col ul.menu>li button.menu-sep:after {
  content: "";
  position: absolute;
  background: #036fd0;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li>a,
nav .site-nav#desktop-nav .nav-col ul.menu>li>button {
  border: none;
  outline: none !important;
  background: none;
  display: inline-block;
  position: relative;
  letter-spacing: unset;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  letter-spacing: 0.1rem;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li>a span,
nav .site-nav#desktop-nav .nav-col ul.menu>li>button span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li>button {
  position: relative;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li>button:after {
  content: "";
  position: absolute;
  background: #005587;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  -webkit-transition: width 350ms ease;
  -moz-transition: width 350ms ease;
  -ms-transition: width 350ms ease;
  -o-transition: width 350ms ease;
  transition: width 350ms ease;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li>button:hover:after {
  width: 100%;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap {
  position: fixed;
  left: 0;
  top: 80px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  text-align: right;
  -webkit-transition: top 500ms ease;
  -moz-transition: top 500ms ease;
  -ms-transition: top 500ms ease;
  -o-transition: top 500ms ease;
  transition: top 500ms ease;
  background-color: white;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap>.container {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 500ms ease, background-color 500ms ease;
  -moz-transition: height 500ms ease, background-color 500ms ease;
  -ms-transition: height 500ms ease, background-color 500ms ease;
  -o-transition: height 500ms ease, background-color 500ms ease;
  transition: height 500ms ease, background-color 500ms ease;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap p {
  font-size: 36px;
  margin-bottom: 18px;
  font-family: minerva-modern, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  color: #005587;
  font-size: 20px;
  position: relative;
  top: -7px;
}

@media (max-width: 991.98px) {
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap p {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap p {
    font-size: 32px;
  }
}

@media (max-width: 479px) {
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap p {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap p {
    font-size: 18px;
  }
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap a {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  display: inline-block;
  margin-top: 15px;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap a span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .row {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col {
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
  padding-top: 30px;
  padding-bottom: 60px;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item a {
  outline: none !important;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item a span {
  background-image: linear-gradient(#005587, #005587);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  padding-bottom: 3px;
  -webkit-transition: background-size 500ms ease;
  -moz-transition: background-size 500ms ease;
  -ms-transition: background-size 500ms ease;
  -o-transition: background-size 500ms ease;
  transition: background-size 500ms ease;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item a:hover span,
nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item a:focus span {
  background-size: 100% 2px;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item a span {
  background-position: 100% 100%;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links {
  width: 50%;
  padding-right: 40px;
  opacity: 0;
  -webkit-transition: opacity 750ms ease;
  -moz-transition: opacity 750ms ease;
  -ms-transition: opacity 750ms ease;
  -o-transition: opacity 750ms ease;
  transition: opacity 750ms ease;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links .inner {
  position: relative;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links .inner:after {
  content: "";
  position: absolute;
  background: #005587;
  width: 1px;
  height: 100%;
  height: -moz-calc(100% - 50px);
  height: -webkit-calc(100% - 50px);
  height: calc(100% - 50px);
  bottom: 0;
  right: -40px;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links .link {
  padding-left: 20px;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links .link.main a {
  text-decoration: none;
  margin-top: 0;
  width: 320px;
}

@media (max-width: 1479px) {
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links .link.main a {
    width: 300px;
  }
}

@media (max-width: 1199.98px) {
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links .link.main a {
    width: 220px;
  }
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links .link.main .b-lazy {
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  width: 320px;
  height: 320px;
  margin-bottom: 16px;
}

@media (max-width: 1479px) {
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links .link.main .b-lazy {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 1199.98px) {
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links .link.main .b-lazy {
    width: 220px;
    height: 220px;
  }
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links .link.social {
  display: inline-block;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links .link.social .social-media {
  float: right;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.primary {
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.secondary,
nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.primary:only-child {
  -webkit-transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  transition-delay: 400ms;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.secondary .link.main a,
nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.primary:only-child .link.main a {
  width: 220px;
}

@media (max-width: 1479px) {

  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.secondary .link.main a,
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.primary:only-child .link.main a {
    width: 200px;
  }
}

@media (max-width: 1199.98px) {

  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.secondary .link.main a,
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.primary:only-child .link.main a {
    width: 140px;
  }
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.secondary .link.main .b-lazy,
nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.primary:only-child .link.main .b-lazy {
  width: 220px;
  height: 220px;
}

@media (max-width: 1479px) {

  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.secondary .link.main .b-lazy,
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.primary:only-child .link.main .b-lazy {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 1199.98px) {

  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.secondary .link.main .b-lazy,
  nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .mega-menu-col .mega-menu-item .links.primary:only-child .link.main .b-lazy {
    width: 140px;
    height: 140px;
  }
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .sub-menu-col {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding-top: 30px;
  padding-bottom: 80px;
  opacity: 0;
  -webkit-transition: opacity 750ms ease;
  -moz-transition: opacity 750ms ease;
  -ms-transition: opacity 750ms ease;
  -o-transition: opacity 750ms ease;
  transition: opacity 750ms ease;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .sub-menu-col a {
  background-image: linear-gradient(#005587, #005587);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  -webkit-transition: background-size 500ms ease;
  -moz-transition: background-size 500ms ease;
  -ms-transition: background-size 500ms ease;
  -o-transition: background-size 500ms ease;
  transition: background-size 500ms ease;
  outline: none !important;
  padding-bottom: 3px;
  background-position: 100% 100%;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .sub-menu-col a:hover,
nav .site-nav#desktop-nav .nav-col ul.menu>li .sub-menu-wrap .sub-menu-col a:focus {
  background-size: 100% 2px;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li.active>button:after {
  width: 100%;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li.active .sub-menu-wrap .mega-menu-col .mega-menu-item .links {
  opacity: 1;
}

nav .site-nav#desktop-nav .nav-col ul.menu>li.active .sub-menu-col {
  opacity: 1;
}

nav .site-nav#mobile-nav {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

@media (max-width: 991.98px) {
  nav .site-nav#mobile-nav {
    display: block;
  }
}

nav .site-nav#mobile-nav .bar-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 101;
  -webkit-transition: top 500ms ease;
  -moz-transition: top 500ms ease;
  -ms-transition: top 500ms ease;
  -o-transition: top 500ms ease;
  transition: top 500ms ease;
}

nav .site-nav#mobile-nav .bar-wrap .logo {
  position: fixed;
  top: 20px;
  left: 30px;
  -webkit-transition: opacity 250ms ease;
  -moz-transition: opacity 250ms ease;
  -ms-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

nav .site-nav#mobile-nav .bar-wrap .logo svg {
  height: 36px;
  width: auto;
}

nav .site-nav#mobile-nav .bar-wrap .logo svg .st0 {
  fill: #005587;
}

nav .site-nav#mobile-nav .bar-wrap .back {
  display: none;
  position: fixed;
  top: 30px;
  left: 46px;
  color: #005587 !important;
  -webkit-transition: opacity 250ms ease;
  -moz-transition: opacity 250ms ease;
  -ms-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

nav .site-nav#mobile-nav .bar-wrap .controls {
  position: fixed;
  top: 20px;
  right: 30px;
  width: 100px;
}

nav .site-nav#mobile-nav .bar-wrap .controls .search {
  position: relative;
  top: 3px;
  margin-left: 0;
}

nav .site-nav#mobile-nav .bar-wrap .controls .search #search-toggle svg {
  width: 24px;
}

nav .site-nav#mobile-nav .bar-wrap .controls div.menu-toggle {
  position: relative;
  float: right;
  top: -8px;
}

nav .site-nav#mobile-nav .bar-wrap .controls div.menu-toggle button {
  width: 36px;
  height: 36px;
  position: relative;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  top: 10px;
}

nav .site-nav#mobile-nav .bar-wrap .controls div.menu-toggle button span {
  display: block;
  position: absolute;
  right: 0;
  background: #005587;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  top: 50%;
  -webkit-transition: width 250ms ease;
  -moz-transition: width 250ms ease;
  -ms-transition: width 250ms ease;
  -o-transition: width 250ms ease;
  transition: width 250ms ease;
}

nav .site-nav#mobile-nav .bar-wrap .controls div.menu-toggle button:before,
nav .site-nav#mobile-nav .bar-wrap .controls div.menu-toggle button:after {
  content: "";
  position: absolute;
  background: #005587;
  width: 100%;
  height: 2px;
  right: 0;
}

nav .site-nav#mobile-nav .bar-wrap .controls div.menu-toggle button:before {
  top: 7px;
  -webkit-transition: width 250ms ease, top 250ms ease, transform 250ms ease;
  -moz-transition: width 250ms ease, top 250ms ease, transform 250ms ease;
  -ms-transition: width 250ms ease, top 250ms ease, transform 250ms ease;
  -o-transition: width 250ms ease, top 250ms ease, transform 250ms ease;
  transition: width 250ms ease, top 250ms ease, transform 250ms ease;
}

nav .site-nav#mobile-nav .bar-wrap .controls div.menu-toggle button:after {
  bottom: 7px;
  -webkit-transition: top 250ms ease, transform 250ms ease;
  -moz-transition: top 250ms ease, transform 250ms ease;
  -ms-transition: top 250ms ease, transform 250ms ease;
  -o-transition: top 250ms ease, transform 250ms ease;
  transition: top 250ms ease, transform 250ms ease;
}

nav .site-nav#mobile-nav .bar-wrap .controls div.menu-toggle button.active span {
  width: 0;
}

nav .site-nav#mobile-nav .bar-wrap .controls div.menu-toggle button.active:before {
  width: 100%;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 17px;
}

nav .site-nav#mobile-nav .bar-wrap .controls div.menu-toggle button.active:after {
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 17px;
}

nav .site-nav#mobile-nav .bar-wrap .search-form {
  position: relative;
  top: -80px;
}

nav .site-nav#mobile-nav .bar-wrap .search-form form {
  right: 0;
}

nav .site-nav#mobile-nav .bar-wrap .row.bar {
  position: relative;
  z-index: 1;
  background-color: white;
  height: 75px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: background-color 500ms ease;
  -moz-transition: background-color 500ms ease;
  -ms-transition: background-color 500ms ease;
  -o-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
}

nav .site-nav#mobile-nav .nav-wrap {
  display: none;
  background: #F1F2F2;
  position: fixed;
  right: 0;
  top: 10px;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  opacity: 0;
  padding-bottom: 60px;
  text-align: center;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  max-width: 100% !important;
  overflow-x: hidden;
  -webkit-transition: top 200ms ease, opacity 200ms ease;
  -moz-transition: top 200ms ease, opacity 200ms ease;
  -ms-transition: top 200ms ease, opacity 200ms ease;
  -o-transition: top 200ms ease, opacity 200ms ease;
  transition: top 200ms ease, opacity 200ms ease;
}

nav .site-nav#mobile-nav .nav-wrap.active {
  opacity: 1;
  top: 0;
}

nav .site-nav#mobile-nav .nav-wrap .col {
  padding-left: 30px;
  padding-right: 30px;
}

nav .site-nav#mobile-nav .nav-wrap .top-level-menu .menu,
nav .site-nav#mobile-nav .nav-wrap .lower-level-menu .menu {
  margin-top: 105px;
  padding-left: 0;
  margin-bottom: 0;
}

nav .site-nav#mobile-nav .nav-wrap .top-level-menu .menu>li a,
nav .site-nav#mobile-nav .nav-wrap .lower-level-menu .menu>li a {
  position: relative;
  display: block;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  height: 60px;
  line-height: 60px;
  padding-left: 20px;
  text-align: left;
  background: #ffffff;
  margin-bottom: 6px;
}

nav .site-nav#mobile-nav .nav-wrap .top-level-menu .menu>li a span,
nav .site-nav#mobile-nav .nav-wrap .lower-level-menu .menu>li a span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

nav .site-nav#mobile-nav .nav-wrap .top-level-menu .menu>li a svg,
nav .site-nav#mobile-nav .nav-wrap .lower-level-menu .menu>li a svg {
  position: absolute;
  right: 20px;
  top: 22px;
  width: auto;
  height: 16px;
}

nav .site-nav#mobile-nav .nav-wrap .top-level-menu .menu>li a svg .st0,
nav .site-nav#mobile-nav .nav-wrap .lower-level-menu .menu>li a svg .st0 {
  fill: none;
  stroke: #F1B434;
  stroke-width: 1.942;
  stroke-miterlimit: 10;
}

nav .site-nav#mobile-nav .nav-wrap .top-level-menu .menu>li>a,
nav .site-nav#mobile-nav .nav-wrap .lower-level-menu .menu>li>a {
  font-family: montserrat, sans-serif;
  font-weight: 700;
}

nav .site-nav#mobile-nav .nav-wrap .top-level-menu {
  position: fixed;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 30px;
  -webkit-transition: left 350ms ease;
  -moz-transition: left 350ms ease;
  -ms-transition: left 350ms ease;
  -o-transition: left 350ms ease;
  transition: left 350ms ease;
}

nav .site-nav#mobile-nav .nav-wrap .top-level-menu .menu>li li {
  display: none;
}

nav .site-nav#mobile-nav .nav-wrap .lower-level-menu .menu>li {
  position: fixed;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 75px;
  bottom: 0;
  right: -100%;
  width: 100%;
  padding: 0 30px;
  -webkit-transition: right 350ms ease;
  -moz-transition: right 350ms ease;
  -ms-transition: right 350ms ease;
  -o-transition: right 350ms ease;
  transition: right 350ms ease;
  display: none;
}

nav .site-nav#mobile-nav .nav-wrap .lower-level-menu .menu>li>a {
  background: none;
  margin-top: 30px;
}

nav .site-nav#mobile-nav .nav-wrap .lower-level-menu .menu>li>a svg {
  display: none;
}

nav .site-nav#mobile-nav .nav-wrap .lower-level-menu .menu>li ul {
  padding-left: 0;
}

nav .site-nav#mobile-nav .nav-wrap .lower-level-menu .menu>li .sub-menu-wrap {
  margin-bottom: 60px;
}

nav .site-nav#mobile-nav .nav-wrap .contact {
  margin-top: 30px;
  margin-bottom: 60px;
  padding-left: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

nav .site-nav#mobile-nav .nav-wrap .contact .social-media {
  margin-top: 20px;
}

nav .site-nav#mobile-nav .nav-wrap .contact .social-media a svg {
  fill: #005587 !important;
}

nav .site-nav#mobile-nav .nav-wrap .contact .social-media a svg path {
  fill: #005587;
}

nav .site-nav#mobile-nav .nav-wrap.expanded .top-level-menu {
  left: -100%;
}

nav .site-nav#mobile-nav .nav-wrap.expanded .lower-level-menu .menu>li {
  right: 0;
}

nav #skip-link-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 99999;
}

nav #skip-link-wrap div {
  height: 0;
}

nav #skip-link-wrap #skip-link {
  position: relative;
  display: block;
  overflow: hidden;
  height: 50px;
  width: 200px;
  background: #ffffff;
  text-align: center;
  text-decoration: underline !important;
  padding-top: 14px;
  top: -50px;
  -webkit-transition: top 250ms ease;
  -moz-transition: top 250ms ease;
  -ms-transition: top 250ms ease;
  -o-transition: top 250ms ease;
  transition: top 250ms ease;
}

nav #skip-link-wrap #skip-link:focus {
  top: 0;
}

nav#breadcrumb {
  margin-bottom: 45px;
}

nav#breadcrumb a,
nav#breadcrumb span {
  color: #77787b;
  text-transform: uppercase;
  letter-spacing: 0.075rem;
  font-size: 12px;
}

nav#breadcrumb a {
  margin-right: 4px;
  font-family: montserrat, sans-serif;
  font-weight: 400;
}

nav#breadcrumb a:not(:first-child) {
  margin-left: 4px;
}

nav#breadcrumb a:hover {
  color: #F1B434;
}

nav#breadcrumb .breadcrumb_last {
  margin-left: 4px;
}

ul.menu li {
  list-style: none;
}

/*--------------------------------------------------------------
THEME / SECTIONS
--------------------------------------------------------------*/
section.intro-section {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: transparent;
  overflow: hidden;
}

@media (max-width: 1199.98px) {
  section.intro-section {
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

section.intro-section .logo {
  position: absolute;
  top: 80px;
  left: 160px;
  z-index: 1;
}

@media (max-width: 991.98px) {
  section.intro-section .logo {
    display: none;
  }
}

section.intro-section .logo .logo-image {
  width: 160px;
}

section.intro-section .intro-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  -webkit-transition: opacity 100ms ease;
  -moz-transition: opacity 100ms ease;
  -ms-transition: opacity 100ms ease;
  -o-transition: opacity 100ms ease;
  transition: opacity 100ms ease;
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

section.intro-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

section.intro-section .header-content {
  position: absolute;
  top: 30vh;
  left: 20vw;
}

@media (max-width: 1199.98px) {
  section.intro-section .header-content {
    position: relative;
    left: 0;
    top: 40vh;
  }
}

@media (max-width: 991.98px) {
  section.intro-section .header-content {
    top: 25vh;
  }

  section.intro-section .header-content .col {
    padding: 0 45px;
  }
}

section.intro-section .header-content header {
  text-align: center;
  position: relative;
  z-index: 1;
}

section.intro-section .header-content header h1 {
  color: #005587;
  margin-bottom: 0;
  color: #005587;
  font-size: 36px;
  line-height: 1.125;
  font-weight: 500;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  margin-bottom: 50px;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  section.intro-section .header-content header h1 {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  section.intro-section .header-content header h1 {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  section.intro-section .header-content header h1 {
    font-size: 23px;
  }
}

@media (max-width: 479px) {
  section.intro-section .header-content header h1 {
    font-size: 20px;
  }
}

@media (max-width: 349px) {
  section.intro-section .header-content header h1 {
    font-size: 18px;
  }
}

section.intro-section .header-content header h1 strong {
  font-family: minerva-modern, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 60px;
  display: block;
  width: 100%;
}

@media (max-width: 991.98px) {
  section.intro-section .header-content header h1 strong {
    font-size: 50px;
  }
}

@media (max-width: 767.98px) {
  section.intro-section .header-content header h1 strong {
    font-size: 44px;
  }
}

@media (max-width: 575.98px) {
  section.intro-section .header-content header h1 strong {
    font-size: 40px;
  }
}

@media (max-width: 479px) {
  section.intro-section .header-content header h1 strong {
    font-size: 35px;
  }
}

@media (max-width: 349px) {
  section.intro-section .header-content header h1 strong {
    font-size: 32px;
  }
}

section.intro-section .corner-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

section.intro-section .corner-content .col {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

@media (max-width: 1479px) {
  section.intro-section .corner-content .col {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (max-width: 1199.98px) {
  section.intro-section .corner-content .col {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 991.98px) {
  section.intro-section .corner-content .col {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (max-width: 767.98px) {
  section.intro-section .corner-content .col {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

section.intro-section .corner-content .inner {
  background: #ffffff;
  height: auto;
  padding-top: 80px;
  padding-bottom: 120px;
  padding-right: 50px;
  position: relative;
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  section.intro-section .corner-content .inner {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
  }
}

section.intro-section .corner-content .inner:before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 100vw;
  height: 100%;
  bottom: 0;
  left: -100vw;
}

section.intro-section .corner-content .inner h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {
  section.intro-section .corner-content .inner h1 {
    font-size: 41px;
  }
}

@media (max-width: 767.98px) {
  section.intro-section .corner-content .inner h1 {
    font-size: 32px;
  }
}

@media (max-width: 479px) {
  section.intro-section .corner-content .inner h1 {
    font-size: 28px;
  }
}

section.intro-section .corner-content .inner * {
  font-size: 22px;
}

@media (max-width: 767.98px) {
  section.intro-section .corner-content .inner * {
    font-size: 20px;
  }
}

section.intro-section .small-content {
  width: 100%;
}

@media (min-width: 992px) {
  section.intro-section .small-content {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 992px) {
  section.intro-section .small-content .outer-row {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  section.intro-section .small-content .outer-row .outer-col {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 992px) {
  section.intro-section .small-content .outer-row .outer-col .col.title-col {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (max-width: 991.98px) {
  section.intro-section .small-content>.container {
    max-width: 100%;
  }

  section.intro-section .small-content .outer-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 80px;
    padding-right: 80px;
  }

  section.intro-section .small-content .outer-col .col.title-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  section.intro-section .small-content .outer-col {
    padding-left: 45px;
    padding-right: 45px;
  }
}

@media (max-width: 575.98px) {
  section.intro-section .small-content .outer-col {
    padding-left: 30px;
    padding-right: 30px;
  }
}

section.intro-section .small-content header,
section.intro-section .small-content .intro-image {
  z-index: 1;
}

section.intro-section.large.animprep .white-border {
  border: 0px solid #ffffff;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

section.intro-section.large.animprep .white-border.animtr {
  -webkit-transition: border 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: border 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: border 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: border 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: border 250ms cubic-bezier(0.77, 0, 0.175, 1);
}

section.intro-section.large.animprep .white-border.animgrow {
  border: 80px solid #ffffff;
}

@media (max-width: 1199.98px) {
  section.intro-section.large.animprep .white-border.animgrow {
    border: 45px solid #ffffff;
  }
}

@media (max-width: 991.98px) {
  section.intro-section.large.animprep .white-border.animgrow {
    border: 30px solid #ffffff;
  }
}

@media (max-width: 767.98px) {
  section.intro-section.large.animprep .white-border.animgrow {
    border: 15px solid #ffffff;
  }
}

section.intro-section.large.animprep .intro-image {
  opacity: 0;
}

section.intro-section.large.animprep .intro-image.animtr {
  -webkit-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

section.intro-section.large.animprep .intro-image.animfade {
  opacity: 1;
}

section.intro-section.large.animprep .intro-image.animshrink {
  -ms-transform: scale(0.9);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

section.intro-section.large.animprep .logo {
  opacity: 0;
}

section.intro-section.large.animprep .logo.animtr {
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}

section.intro-section.large.animprep .logo.animfinal {
  opacity: 1;
}

section.intro-section.large.animprep .header-content header {
  opacity: 0;
  top: 10px;
}

section.intro-section.large.animprep .header-content header.animtr {
  -webkit-transition: opacity 500ms ease, top 300ms ease;
  -moz-transition: opacity 500ms ease, top 300ms ease;
  -ms-transition: opacity 500ms ease, top 300ms ease;
  -o-transition: opacity 500ms ease, top 300ms ease;
  transition: opacity 500ms ease, top 300ms ease;
}

section.intro-section.large.animprep .header-content header.animfinal {
  opacity: 1;
  top: 0;
}

section.intro-section.medium {
  max-height: 850px;
  min-height: 800px;
}

@media (max-width: 991.98px) {
  section.intro-section.medium {
    max-height: 100%;
    min-height: 0;
    height: 500px;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: unset;
  }
}

@media (max-width: 767.98px) {
  section.intro-section.medium {
    height: 360px;
  }
}

@media (max-width: 575.98px) {
  section.intro-section.medium {
    height: 320px;
  }
}

section.intro-section.small {
  overflow: unset;
  height: auto;
  min-height: 500px;
  background: #005587;
  border-bottom: 80px solid #ffffff;
}

@media (max-width: 1199.98px) {
  section.intro-section.small {
    border-bottom: 45px solid #ffffff;
  }
}

@media (max-width: 991.98px) {
  section.intro-section.small {
    border-bottom: 30px solid #ffffff;
  }
}

@media (max-width: 767.98px) {
  section.intro-section.small {
    border-bottom: 15px solid #ffffff;
  }
}

@media (max-width: 991.98px) {
  section.intro-section.small {
    min-height: unset !important;
    margin-top: 75px;
  }
}

section.intro-section.small .intro-image {
  display: none;
}

section.intro-section.small .white-border {
  border-bottom: none;
}

@media (max-width: 991.98px) {
  section.intro-section.small .white-border {
    border-top: none;
  }
}

section.intro-section.small h1 {
  color: #ffffff;
  position: relative;
  z-index: 1;
  font-size: 52px;
}

@media (max-width: 991.98px) {
  section.intro-section.small h1 {
    font-size: 48px;
  }
}

@media (max-width: 767.98px) {
  section.intro-section.small h1 {
    font-size: 36px;
  }
}

@media (max-width: 479px) {
  section.intro-section.small h1 {
    font-size: 32px;
  }
}

@media (max-width: 991.98px) {
  section.intro-section.small h1 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (max-width: 349px) {
  section.intro-section.small h1 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 479px) {
  section.intro-section.small h1 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}

@media (max-width: 575.98px) {
  section.intro-section.small h1 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

section.intro-section.small .image {
  position: absolute;
  width: 100%;
  max-width: 460px;
  bottom: -50px;
  right: 160px;
  min-height: 320px;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  z-index: 1;
}

@media (max-width: 1679px) {
  section.intro-section.small .image {
    min-height: 300px;
    width: -moz-calc(100% + 70px);
    width: -webkit-calc(100% + 70px);
    width: calc(100% + 70px);
  }
}

@media (max-width: 1599px) {
  section.intro-section.small .image {
    min-height: 250px;
    width: 250px;
    bottom: -30px;
  }
}

@media (max-width: 1199.98px) {
  section.intro-section.small .image {
    min-height: 200px;
    width: 200px;
    bottom: -30px;
    right: 90px;
  }
}

@media (max-width: 991.98px) {
  section.intro-section.small .image {
    min-height: 320px;
    right: 60px;
    max-width: unset;
    bottom: -30px;
    width: -moz-calc(100% - 120px);
    width: -webkit-calc(100% - 120px);
    width: calc(100% - 120px);
  }
}

@media (max-width: 767.98px) {
  section.intro-section.small .image {
    right: 30px;
    width: -moz-calc(100% - 60px);
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
  }
}

@media (max-width: 479px) {
  section.intro-section.small .image {
    min-height: 225px;
  }
}

@media (max-width: 349px) {
  section.intro-section.small .image {
    min-height: 200px;
  }
}

@media (max-width: 991.98px) {
  section.intro-section.small.image {
    margin-bottom: 30px;
  }

  section.intro-section.small.image h1 {
    margin-bottom: 0;
  }

  section.intro-section.small.image .small-content {
    margin-bottom: 320px;
  }
}

@media (max-width: 991.98px) and (max-width: 479px) {
  section.intro-section.small.image .small-content {
    margin-bottom: 225px;
  }
}

@media (max-width: 991.98px) and (max-width: 349px) {
  section.intro-section.small.image .small-content {
    margin-bottom: 200px;
  }
}

section.intro-section.small.short {
  min-height: 480px;
  border-bottom: none;
}

section.intro-section.small+.copy-section .breadcrumbs-row {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

section.intro-section.small+.copy-section .breadcrumbs-row .col {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

section.intro-section.small+.map-section,
section.intro-section.small+.resources-section {
  padding-top: 0;
}

section.intro-section.active header {
  opacity: 1;
}

@media (max-width: 991.98px) {
  section.intro-section+section.sidebar-section {
    padding-top: 50px;
  }
}

section.copy-section * {
  color: #005587;
  font-size: 16px;
}

@media (max-width: 767.98px) {
  section.copy-section * {
    font-size: 14px;
  }
}

section.copy-section .content-row {
  padding-top: 100px;
  padding-bottom: 30px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  section.copy-section .content-row {
    padding-top: 60px;
  }
}

section.copy-section .content-row .col {
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

@media (max-width: 991.98px) {
  section.copy-section .content-row .col {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (max-width: 767.98px) {
  section.copy-section .content-row .col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

section.copy-section .breadcrumbs-row .col {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

section.copy-section .breadcrumbs-row+.content-row {
  padding-top: 45px;
}

@media (max-width: 991.98px) {
  section.copy-section .breadcrumbs-row nav#breadcrumb {
    margin-bottom: 0;
  }
}

section.copy-section.grey {
  background: #F1F2F2;
}

section.copy-section.large * {
  font-size: 22px;
}

@media (max-width: 767.98px) {
  section.copy-section.large * {
    font-size: 20px;
  }
}

section.copy-section.left .content-row {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

section.copy-section.right .content-row {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

section.copy-section.last {
  padding-bottom: 70px;
}

section.copy-section+section.copy-section .content-row {
  padding-top: 0;
}

section.copy-section+section.image-link-section {
  padding-top: 0;
}

section.image-link-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 991.98px) {
  section.image-link-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  section.image-link-section>.container {
    padding-left: 15px;
    padding-right: 60px;
  }
}

section.image-link-section .load-more-row,
section.image-link-section .show-less-row {
  margin-top: 100px;
  opacity: 1;
  -webkit-transition: opacity 150ms ease;
  -moz-transition: opacity 150ms ease;
  -ms-transition: opacity 150ms ease;
  -o-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
}

section.image-link-section .load-more-row+.blocks-row,
section.image-link-section .show-less-row+.blocks-row {
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}

section.image-link-section .load-more-row.loaded,
section.image-link-section .show-less-row.loaded {
  opacity: 0;
}

section.image-link-section .load-more-row.loaded+.blocks-row,
section.image-link-section .show-less-row.loaded+.blocks-row {
  opacity: 1;
}

section.image-link-section .show-less-row {
  opacity: 0;
}

section.image-link-section .show-less-row.loaded {
  opacity: 1;
}

section.image-link-section.grey {
  background: #F1F2F2;
}

section.image-link-section.grey .blocks-row .block .content-col .inner {
  background: #ffffff;
}

section.image-caption-section {
  padding-top: 100px;
  padding-bottom: 50px;
}

section.image-caption-section.grey {
  background: #F1F2F2;
}

section.image-caption-section.grey .caption-blocks-row .caption-block .content:before {
  background: #ffffff;
}

section.image-grid {
  padding-top: 100px;
  padding-bottom: 70px;
}

section.image-grid .image-col {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  margin-bottom: 30px;
}

section.image-grid.cropped .image-col .image {
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  min-height: 280px;
}

section.image-grid:not(.cropped) .image-col .image {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

section.standard-carousel {
  margin-bottom: 100px;
}

@media (max-width: 991.98px) {
  section.standard-carousel {
    position: relative;
  }

  section.standard-carousel:before {
    content: "";
    position: absolute;
    background: #F1B434;
    width: 100%;
    height: -moz-calc(100% - 45px);
    height: -webkit-calc(100% - 45px);
    height: calc(100% - 45px);
    top: 0;
    left: 0;
  }

  section.standard-carousel>.container {
    max-width: unset;
    padding: none;
  }
}

section.standard-carousel .col.content {
  padding-top: 180px;
  padding-bottom: 180px;
  position: relative;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

@media (max-width: 991.98px) {
  section.standard-carousel .col.content {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 60px;
  }
}

@media (max-width: 767.98px) {
  section.standard-carousel .col.content {
    padding-top: 45px;
    padding-bottom: 155px;
  }
}

section.standard-carousel .col.content:before {
  content: "";
  position: absolute;
  background: #F1B434;
  width: 100%;
  width: -moz-calc(100% + 1000px);
  width: -webkit-calc(100% + 1000px);
  width: calc(100% + 1000px);
  height: 100%;
  top: 0;
  right: -150px;
}

section.standard-carousel .col.content .inner {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  top: -40px;
}

@media (min-width: 992px) {
  section.standard-carousel .col.content .inner {
    padding-right: 30px;
  }
}

@media (max-width: 991.98px) {
  section.standard-carousel .col.content .inner {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    top: 0;
  }
}

section.standard-carousel .col.content .inner .wrap {
  position: relative;
}

section.standard-carousel .col.content .inner h2 {
  font-size: 36px;
}

@media (max-width: 991.98px) {
  section.standard-carousel .col.content .inner h2 {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  section.standard-carousel .col.content .inner h2 {
    font-size: 32px;
  }
}

@media (max-width: 479px) {
  section.standard-carousel .col.content .inner h2 {
    font-size: 28px;
  }
}

section.standard-carousel .col.content .inner .glide__arrows {
  position: absolute;
  left: 0;
  bottom: -120px;
  font-size: 0;
}

@media (max-width: 991.98px) {
  section.standard-carousel .col.content .inner .glide__arrows {
    display: none;
  }
}

section.standard-carousel .col.content .inner .glide__arrows .glide__arrow {
  padding: 0;
  border: none;
}

section.standard-carousel .col.content .inner .glide__arrows .glide__arrow svg {
  width: 50px;
}

section.standard-carousel .col.content .inner .glide__arrows .glide__arrow svg polyline,
section.standard-carousel .col.content .inner .glide__arrows .glide__arrow svg circle {
  fill: none;
  stroke: #005687;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

section.standard-carousel .col.content .inner .glide__arrows .glide__arrow.glide__arrow--next {
  right: -120px;
}

section.standard-carousel .col.content .inner .glide__arrows .glide__arrow.glide__arrow--prev {
  left: 0;
}

section.standard-carousel .col.content .inner .glide__arrows .glide__arrow.glide__arrow--prev svg {
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

section.standard-carousel .col.slider {
  background: none !important;
  cursor: auto !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
  position: relative;
}

section.standard-carousel .col.slider:before {
  content: none !important;
}

@media (max-width: 991.98px) {
  section.standard-carousel .col.slider {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
}

section.standard-carousel .col.slider .glide {
  position: absolute;
  top: 50%;
  margin-top: -150px;
  left: 0;
}

@media (max-width: 991.98px) {
  section.standard-carousel .col.slider .glide {
    position: relative;
    top: unset;
    bottom: 0;
  }
}

section.standard-carousel .col.slider .glide .glide__slide .inner {
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.05);
}

section.standard-carousel .col.slider .glide .glide__slide .inner .wrap {
  overflow: hidden;
  position: relative;
  height: 300px;
}

@media (max-width: 991.98px) {
  section.standard-carousel .col.slider .glide .glide__slide .inner .wrap {
    height: 280px;
  }
}

@media (max-width: 479px) {
  section.standard-carousel .col.slider .glide .glide__slide .inner .wrap {
    height: 250px;
  }
}

section.standard-carousel .col.slider .glide .glide__slide .inner .image {
  height: 249px;
  background-color: #F1F2F2;
  position: relative;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  -webkit-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0);
}

@media (max-width: 1479px) {
  section.standard-carousel .col.slider .glide .glide__slide .inner .image {
    height: 250px;
  }
}

@media (max-width: 991.98px) {
  section.standard-carousel .col.slider .glide .glide__slide .inner .image {
    height: 232px;
  }
}

@media (max-width: 479px) {
  section.standard-carousel .col.slider .glide .glide__slide .inner .image {
    height: 202px;
  }
}

section.standard-carousel .col.slider .glide .glide__slide .inner .info {
  position: absolute;
  background: #005587;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
}

section.standard-carousel .col.slider .glide .glide__slide .inner .info h3 {
  color: #F1B434;
  text-transform: uppercase;
  font-family: montserrat, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  section.standard-carousel .col.slider .glide .glide__slide .inner .info h3 {
    font-size: 16.5px;
  }
}

section.standard-carousel .col.slider .glide .glide__slide .inner:hover .image {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

@media (min-width: 992px) {
  section.standard-carousel .col.slider .glide__bullets {
    display: none;
  }
}

section.image-carousel {
  padding-top: 80px;
  padding-bottom: 80px;
}

section.image-carousel.grey {
  background: #F1F2F2;
}

@media (max-width: 991.98px) {
  section.image-carousel .container:not(.controls) {
    max-width: 100%;
  }

  section.image-carousel .container:not(.controls) .col {
    padding-left: 0;
    padding-right: 0;
  }
}

section.image-carousel .glide.images .glide__slide .image {
  height: 280px;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 1479px) {
  section.image-carousel .glide.images .glide__slide .image {
    height: 230px;
  }
}

@media (max-width: 1199.98px) {
  section.image-carousel .glide.images .glide__slide .image {
    height: 200px;
  }
}

@media (max-width: 991.98px) {
  section.image-carousel .glide.images .glide__slide .image {
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  section.image-carousel .glide.images .glide__slide .image {
    height: 250px;
  }
}

@media (max-width: 479px) {
  section.image-carousel .glide.images .glide__slide .image {
    height: 220px;
  }
}

@media (max-width: 349px) {
  section.image-carousel .glide.images .glide__slide .image {
    height: 200px;
  }
}

@media (max-width: 991.98px) {
  section.image-carousel .glide.images .glide__arrow {
    display: none;
  }
}

section.image-carousel .glide.images .glide__arrow.glide__arrow--prev {
  left: -123px;
}

@media (max-width: 1199.98px) {
  section.image-carousel .glide.images .glide__arrow.glide__arrow--prev {
    left: -90px;
  }
}

section.image-carousel .glide.images .glide__arrow.glide__arrow--prev svg {
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

section.image-carousel .glide.images .glide__arrow.glide__arrow--next {
  right: -117px;
}

@media (max-width: 1199.98px) {
  section.image-carousel .glide.images .glide__arrow.glide__arrow--next {
    right: -84px;
  }
}

@media (max-width: 991.98px) {
  section.image-carousel .glide.images .glide__bullets {
    opacity: 1;
  }
}

section.fullscreen-carousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  section.fullscreen-carousel {
    height: 700px;
  }
}

@media (max-width: 767.98px) {
  section.fullscreen-carousel {
    height: 500px;
  }
}

section.fullscreen-carousel:after {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 100%;
  height: 80px;
  bottom: 0;
  left: 0;
}

@media (max-width: 1199.98px) {
  section.fullscreen-carousel:after {
    height: 45px;
  }
}

@media (max-width: 991.98px) {
  section.fullscreen-carousel:after {
    height: 30px;
  }
}

@media (max-width: 767.98px) {
  section.fullscreen-carousel:after {
    height: 15px;
  }
}

section.fullscreen-carousel .slick.fullscreen-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 80px;
}

@media (max-width: 1199.98px) {
  section.fullscreen-carousel .slick.fullscreen-image {
    padding: 45px;
  }
}

@media (max-width: 991.98px) {
  section.fullscreen-carousel .slick.fullscreen-image {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  section.fullscreen-carousel .slick.fullscreen-image {
    padding: 15px;
  }
}

section.fullscreen-carousel .slick.fullscreen-image .slick-slide {
  position: relative;
}

section.fullscreen-carousel .slick.fullscreen-image .slick-slide .inner {
  height: 100%;
  position: relative;
}

section.fullscreen-carousel .slick.fullscreen-image .slick-slide .inner .slick-fullscreen-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  opacity: 0;
}

section.fullscreen-carousel .slick.fullscreen-image.shown .slick-slide .inner .slick-fullscreen-image {
  opacity: 1;
}

section.fullscreen-carousel .slick.fullscreen-content {
  background: #ffffff;
  height: auto;
  padding-top: 80px;
  padding-bottom: 120px;
  padding-right: 50px;
  position: relative;
  padding-bottom: 100px;
}

@media (max-width: 991.98px) {
  section.fullscreen-carousel .slick.fullscreen-content {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
  }
}

section.fullscreen-carousel .slick.fullscreen-content:before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 100vw;
  height: 100%;
  bottom: 0;
  left: -100vw;
}

@media (max-width: 1479px) {
  section.fullscreen-carousel .slick.fullscreen-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 991.98px) {
  section.fullscreen-carousel .slick.fullscreen-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 479px) {
  section.fullscreen-carousel .slick.fullscreen-content {
    padding-left: 18px;
    padding-right: 30px;
  }
}

@media (max-width: 767.98px) {
  section.fullscreen-carousel .slick.fullscreen-content p {
    display: none;
  }
}

section.fullscreen-carousel .slick.fullscreen-content .upper-heading {
  color: #77787b;
  text-transform: uppercase;
  font-size: 16px;
  font-family: montserrat, sans-serif;
  font-weight: 600;
  letter-spacing: 0.125rem;
  margin-bottom: 2px;
}

@media (max-width: 767.98px) {
  section.fullscreen-carousel .slick.fullscreen-content .upper-heading {
    font-size: 14px;
  }
}

section.fullscreen-carousel .slick.fullscreen-content .main-heading {
  font-size: 36px;
  margin-bottom: 18px;
  font-family: minerva-modern, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  color: #005587;
  overflow-wrap: break-word;
}

@media (max-width: 991.98px) {
  section.fullscreen-carousel .slick.fullscreen-content .main-heading {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  section.fullscreen-carousel .slick.fullscreen-content .main-heading {
    font-size: 32px;
  }
}

@media (max-width: 479px) {
  section.fullscreen-carousel .slick.fullscreen-content .main-heading {
    font-size: 28px;
  }
}

section.fullscreen-carousel .slick.fullscreen-content * {
  font-size: 18px;
}

@media (max-width: 767.98px) {
  section.fullscreen-carousel .slick.fullscreen-content * {
    font-size: 16.5px;
  }
}

section.fullscreen-carousel .slick.fullscreen-content .link-arrow-wrap {
  margin-top: 40px;
}

section.fullscreen-carousel .slick.fullscreen-content .link-arrow-wrap a {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
}

section.fullscreen-carousel .slick.fullscreen-content .link-arrow-wrap a span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

section.fullscreen-carousel .slick.fullscreen-content .slick-arrow {
  color: #005587;
  position: absolute;
  background: #F1F2F2;
  top: auto;
  left: auto;
  bottom: -38px;
  right: 0;
  width: 80px;
  height: 80px;
}

@media (max-width: 479px) {
  section.fullscreen-carousel .slick.fullscreen-content .slick-arrow {
    width: 50px;
    height: 50px;
    bottom: -23px;
  }
}

section.fullscreen-carousel .slick.fullscreen-content .slick-arrow svg {
  width: 14px;
}

section.fullscreen-carousel .slick.fullscreen-content .slick-arrow svg polyline {
  fill: none;
  stroke: #005687;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

@media (max-width: 479px) {
  section.fullscreen-carousel .slick.fullscreen-content .slick-arrow svg {
    width: 10px;
  }
}

section.fullscreen-carousel .slick.fullscreen-content .slick-arrow.slick-prev svg {
  -ms-transform: rotate(-180deg);
  /* IE 9 */
  -webkit-transform: rotate(-180deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

section.fullscreen-carousel .slick.fullscreen-content .slick-arrow.slick-next {
  right: -80px;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.05);
}

@media (max-width: 479px) {
  section.fullscreen-carousel .slick.fullscreen-content .slick-arrow.slick-next {
    right: -50px;
  }
}

section.events-carousel {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: -moz-hidden-unscrollable;
}

@media (max-width: 991.98px) {
  section.events-carousel {
    padding-top: 0;
    padding-bottom: 60px;
    overflow: hidden;
  }
}

section.events-carousel .filter {
  margin-top: 30px;
}

section.events-carousel .filter .item:not(.all-events) {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  display: inline-block;
  padding-right: 0;
  -webkit-transition: padding-right 300ms ease;
  -moz-transition: padding-right 300ms ease;
  -ms-transition: padding-right 300ms ease;
  -o-transition: padding-right 300ms ease;
  transition: padding-right 300ms ease;
  margin-bottom: 16px;
  display: none;
}

section.events-carousel .filter .item:not(.all-events) span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

section.events-carousel .filter .item:not(.all-events) span {
  position: relative;
}

section.events-carousel .filter .item:not(.all-events) span div {
  position: absolute;
  pointer-events: none;
  background: #F1B434;
  right: -15px;
  top: 9px;
  height: 2px;
  width: 0;
  -webkit-transition: width 300ms ease, opacity 200ms ease;
  -moz-transition: width 300ms ease, opacity 200ms ease;
  -ms-transition: width 300ms ease, opacity 200ms ease;
  -o-transition: width 300ms ease, opacity 200ms ease;
  transition: width 300ms ease, opacity 200ms ease;
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 12px;
}

section.events-carousel .filter .item:not(.all-events) span div:before,
section.events-carousel .filter .item:not(.all-events) span div:after {
  content: "";
  position: absolute;
  background: #F1B434;
  right: 2px;
  height: 9px;
  width: 2px;
  -webkit-transition: right 250ms ease;
  -moz-transition: right 250ms ease;
  -ms-transition: right 250ms ease;
  -o-transition: right 250ms ease;
  transition: right 250ms ease;
  right: 2px !important;
}

section.events-carousel .filter .item:not(.all-events) span div:before {
  top: -1px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

section.events-carousel .filter .item:not(.all-events) span div:after {
  bottom: -1px;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

section.events-carousel .filter .item:not(.all-events):hover span div:before,
section.events-carousel .filter .item:not(.all-events):hover span div:after {
  right: -32px;
}

section.events-carousel .filter .item.all-events {
  margin-top: 35px;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  display: inline-block;
  padding-right: 0;
  -webkit-transition: padding-right 300ms ease;
  -moz-transition: padding-right 300ms ease;
  -ms-transition: padding-right 300ms ease;
  -o-transition: padding-right 300ms ease;
  transition: padding-right 300ms ease;
  border: 1px solid #005587;
  padding: 17px 16px 14px;
  padding: 17px 38px 14px 16px;
  position: relative;
  overflow: hidden;
  outline: none !important;
}

section.events-carousel .filter .item.all-events span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

section.events-carousel .filter .item.all-events span {
  position: relative;
}

section.events-carousel .filter .item.all-events span div {
  position: absolute;
  pointer-events: none;
  background: #F1B434;
  right: -15px;
  top: 9px;
  height: 2px;
  width: 0;
  -webkit-transition: width 300ms ease, opacity 200ms ease;
  -moz-transition: width 300ms ease, opacity 200ms ease;
  -ms-transition: width 300ms ease, opacity 200ms ease;
  -o-transition: width 300ms ease, opacity 200ms ease;
  transition: width 300ms ease, opacity 200ms ease;
}

section.events-carousel .filter .item.all-events span div:before,
section.events-carousel .filter .item.all-events span div:after {
  content: "";
  position: absolute;
  background: #F1B434;
  right: 2px;
  height: 9px;
  width: 2px;
  -webkit-transition: right 250ms ease;
  -moz-transition: right 250ms ease;
  -ms-transition: right 250ms ease;
  -o-transition: right 250ms ease;
  transition: right 250ms ease;
}

section.events-carousel .filter .item.all-events span div:before {
  top: -1px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

section.events-carousel .filter .item.all-events span div:after {
  bottom: -1px;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

section.events-carousel .filter .item.all-events:hover span div:before,
section.events-carousel .filter .item.all-events:hover span div:after {
  right: -32px;
}

section.events-carousel .filter .item.all-events span div {
  right: -22px;
}

section.events-carousel .filter .item.all-events span {
  position: relative;
  z-index: 1;
  -webkit-transition: color 150ms ease;
  -moz-transition: color 150ms ease;
  -ms-transition: color 150ms ease;
  -o-transition: color 150ms ease;
  transition: color 150ms ease;
}

section.events-carousel .filter .item.all-events span div {
  z-index: 1;
}

section.events-carousel .filter .item.all-events span div:before,
section.events-carousel .filter .item.all-events span div:after {
  z-index: 1;
  -webkit-transition: background 150ms ease;
  -moz-transition: background 150ms ease;
  -ms-transition: background 150ms ease;
  -o-transition: background 150ms ease;
  transition: background 150ms ease;
}

section.events-carousel .filter .item.all-events svg {
  z-index: 1;
}

section.events-carousel .filter .item.all-events svg polyline,
section.events-carousel .filter .item.all-events svg line {
  -webkit-transition: stroke 150ms ease;
  -moz-transition: stroke 150ms ease;
  -ms-transition: stroke 150ms ease;
  -o-transition: stroke 150ms ease;
  transition: stroke 150ms ease;
}

section.events-carousel .filter .item.all-events:before {
  content: "";
  position: absolute;
  background: #005587;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  -webkit-transition: left 300ms ease;
  -moz-transition: left 300ms ease;
  -ms-transition: left 300ms ease;
  -o-transition: left 300ms ease;
  transition: left 300ms ease;
}

section.events-carousel .filter .item.all-events:hover:before,
section.events-carousel .filter .item.all-events:focus:before {
  left: 0%;
}

section.events-carousel .filter .item.all-events:hover span,
section.events-carousel .filter .item.all-events:focus span {
  color: #ffffff;
}

section.events-carousel .filter .item.all-events:hover span div:before,
section.events-carousel .filter .item.all-events:hover span div:after,
section.events-carousel .filter .item.all-events:focus span div:before,
section.events-carousel .filter .item.all-events:focus span div:after {
  right: 2px;
  background: #ffffff;
}

section.events-carousel .filter .item.all-events:hover svg polyline,
section.events-carousel .filter .item.all-events:hover svg line,
section.events-carousel .filter .item.all-events:focus svg polyline,
section.events-carousel .filter .item.all-events:focus svg line {
  stroke: #ffffff;
}

@media (max-width: 991.98px) {
  section.events-carousel .filter .item.all-events {
    display: none;
  }
}

section.events-carousel .col.content {
  min-height: 700px;
  position: relative;
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

@media (max-width: 991.98px) {
  section.events-carousel .col.content {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    min-height: unset;
    text-align: center;
  }

  section.events-carousel .col.content:after {
    content: "";
    position: absolute;
    background: #F1F2F2;
    width: 1200px;
    height: 250px;
    bottom: -250px;
    left: 50%;
    margin-left: -600px;
  }
}

section.events-carousel .col.content:before {
  content: "";
  position: absolute;
  background: #F1F2F2;
  width: 100%;
  width: -moz-calc(100% + 1000px);
  width: -webkit-calc(100% + 1000px);
  width: calc(100% + 1000px);
  height: 100%;
  top: 0;
  right: -150px;
}

section.events-carousel .col.content .inner {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
}

@media (max-width: 991.98px) {
  section.events-carousel .col.content .inner {
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

section.events-carousel .col.slider {
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
  position: relative;
}

@media (max-width: 991.98px) {
  section.events-carousel .col.slider {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

section.events-carousel .col.slider .glide {
  position: absolute;
  top: 50%;
  margin-top: -247.5px;
  left: 0;
}

@media (max-width: 991.98px) {
  section.events-carousel .col.slider .glide {
    position: relative;
    top: 0;
    margin-top: 0;
  }
}

section.events-carousel .col.slider .glide .glide__slide {
  height: auto;
}

@media (max-width: 991.98px) {
  section.events-carousel .col.slider .glide .glide__slide {
    padding-right: 15px;
  }
}

section.events-carousel .col.slider .glide .glide__slide .inner {
  background: #005587;
}

section.events-carousel .col.slider .glide .glide__slide .inner .image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

section.events-carousel .col.slider .glide .glide__slide .inner .image .b-lazy {
  height: 100%;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  -webkit-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0);
}

section.events-carousel .col.slider .glide .glide__slide .inner .image .date-box {
  position: absolute;
  bottom: 0;
  left: 0;
}

section.events-carousel .col.slider .glide .glide__slide .inner .info {
  position: relative;
  background: #005587;
  padding: 30px 30px 60px;
  height: -moz-calc(100% - 250px);
  height: -webkit-calc(100% - 250px);
  height: calc(100% - 250px);
}

section.events-carousel .col.slider .glide .glide__slide .inner .info * {
  color: #ffffff;
}

section.events-carousel .col.slider .glide .glide__slide .inner .info .title {
  color: #F1B434;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 2px;
}

section.events-carousel .col.slider .glide .glide__slide .inner .info .location {
  color: #F1B434;
  font-size: 16px;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  margin-bottom: 8px;
}

section.events-carousel .col.slider .glide .glide__slide .inner .info p {
  font-size: 16px;
}

section.events-carousel .col.slider .glide .glide__slide .inner .info .link-arrow-wrap {
  position: absolute;
  bottom: 18px;
  left: 30px;
  margin-top: 24px;
  display: inline-block;
}

section.events-carousel .col.slider .glide .glide__slide .inner .info .link-arrow-wrap .link {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none !important;
}

section.events-carousel .col.slider .glide .glide__slide .inner .info .link-arrow-wrap .link span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #ffffff;
  font-size: 14px;
}

section.events-carousel .col.slider .glide .glide__slide .inner:hover .image .b-lazy {
  -ms-transform: scale(1.025);
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}

section.events-carousel .col.slider .glide .glide__slide .inner:hover .info .link-arrow-wrap span:before,
section.events-carousel .col.slider .glide .glide__slide .inner:hover .info .link-arrow-wrap span:after {
  right: -42px;
}

section.events-carousel .col.slider .glide .glide__slide .inner:hover .info .link-arrow-wrap span:last-child {
  width: 42px;
}

section.events-carousel .col.slider .glide__arrows {
  position: absolute;
  left: -100px;
  bottom: 50px;
  font-size: 0;
}

@media (max-width: 991.98px) {
  section.events-carousel .col.slider .glide__arrows {
    display: none;
  }
}

section.events-carousel .col.slider .glide__arrows .glide__arrow {
  padding: 0;
  border: none;
}

section.events-carousel .col.slider .glide__arrows .glide__arrow svg {
  width: 50px;
}

section.events-carousel .col.slider .glide__arrows .glide__arrow svg polyline,
section.events-carousel .col.slider .glide__arrows .glide__arrow svg circle {
  fill: none;
  stroke: #005687;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

section.events-carousel .col.slider .glide__arrows .glide__arrow.glide__arrow--prev {
  position: relative;
  bottom: -115px;
  left: -3px;
}

section.events-carousel .col.slider .glide__arrows .glide__arrow.glide__arrow--prev svg {
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

section.events-carousel .col.slider .no-events {
  position: absolute;
  top: 50%;
  left: 250px;
  margin-top: -14px;
}

@media (max-width: 1199.98px) {
  section.events-carousel .col.slider .no-events {
    left: 0;
    position: relative;
    text-align: center;
  }
}

section.events-carousel .col.mobile-content {
  display: none;
  text-align: center;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (max-width: 991.98px) {
  section.events-carousel .col.mobile-content {
    display: block;
  }

  section.events-carousel .col.mobile-content .item.all-events {
    display: inline-block;
  }
}

section.cta-section {
  background: #F1B434;
}

section.cta-section .content {
  padding-top: 60px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 991.98px) {
  section.cta-section .content {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 2 !important;
    text-align: center;
    padding-bottom: 45px;
  }
}

section.cta-section .content .inner * {
  color: #005587;
  font-size: 25px;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  section.cta-section .content .inner * {
    font-size: 22.5px;
  }
}

@media (max-width: 991.98px) {
  section.cta-section .content .inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
  }
}

section.cta-section .content .inner h2 {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  section.cta-section .content .inner h2 {
    font-size: 22.5px;
  }
}

section.cta-section .content .inner .links {
  margin-top: 30px;
}

@media (max-width: 991.98px) {
  section.cta-section .content .inner .links {
    margin-top: 45px;
    display: inline-block;
  }
}

section.cta-section .content .inner .links .link {
  margin-top: 30px;
  float: left;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid #005587;
  padding: 17px 16px 14px;
  position: relative;
  padding-right: 40px;
  position: relative;
  overflow: hidden;
  outline: none !important;
}

section.cta-section .content .inner .links .link span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

section.cta-section .content .inner .links .link svg {
  position: absolute;
  width: 14px;
  right: 16px;
  top: 20px;
}

section.cta-section .content .inner .links .link svg polyline,
section.cta-section .content .inner .links .link svg line {
  fill: none;
  stroke: #005587;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

section.cta-section .content .inner .links .link span {
  position: relative;
  z-index: 1;
  -webkit-transition: color 150ms ease;
  -moz-transition: color 150ms ease;
  -ms-transition: color 150ms ease;
  -o-transition: color 150ms ease;
  transition: color 150ms ease;
}

section.cta-section .content .inner .links .link span div {
  z-index: 1;
}

section.cta-section .content .inner .links .link span div:before,
section.cta-section .content .inner .links .link span div:after {
  z-index: 1;
  -webkit-transition: background 150ms ease;
  -moz-transition: background 150ms ease;
  -ms-transition: background 150ms ease;
  -o-transition: background 150ms ease;
  transition: background 150ms ease;
}

section.cta-section .content .inner .links .link svg {
  z-index: 1;
}

section.cta-section .content .inner .links .link svg polyline,
section.cta-section .content .inner .links .link svg line {
  -webkit-transition: stroke 150ms ease;
  -moz-transition: stroke 150ms ease;
  -ms-transition: stroke 150ms ease;
  -o-transition: stroke 150ms ease;
  transition: stroke 150ms ease;
}

section.cta-section .content .inner .links .link:before {
  content: "";
  position: absolute;
  background: #005587;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  -webkit-transition: left 300ms ease;
  -moz-transition: left 300ms ease;
  -ms-transition: left 300ms ease;
  -o-transition: left 300ms ease;
  transition: left 300ms ease;
}

section.cta-section .content .inner .links .link:hover:before,
section.cta-section .content .inner .links .link:focus:before {
  left: 0%;
}

section.cta-section .content .inner .links .link:hover span,
section.cta-section .content .inner .links .link:focus span {
  color: #ffffff;
}

section.cta-section .content .inner .links .link:hover span div:before,
section.cta-section .content .inner .links .link:hover span div:after,
section.cta-section .content .inner .links .link:focus span div:before,
section.cta-section .content .inner .links .link:focus span div:after {
  right: 2px;
  background: #ffffff;
}

section.cta-section .content .inner .links .link:hover svg polyline,
section.cta-section .content .inner .links .link:hover svg line,
section.cta-section .content .inner .links .link:focus svg polyline,
section.cta-section .content .inner .links .link:focus svg line {
  stroke: #ffffff;
}

section.cta-section .content .inner .links .link:not(:last-child) {
  margin-right: 50px;
}

section.cta-section .image {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 992px) {
  section.cta-section .image {
    min-height: 450px;
  }
}

@media (max-width: 991.98px) {
  section.cta-section .image {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 1 !important;
    min-height: 420px;
    margin-bottom: 45px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767.98px) {
  section.cta-section .image {
    min-height: 380px;
  }
}

@media (max-width: 479px) {
  section.cta-section .image {
    min-height: 300px;
  }
}

section.cta-section .image .cta-image {
  position: relative;
  float: right;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  width: 100%;
  max-width: 520px;
  height: -moz-calc(100% - 75px);
  height: -webkit-calc(100% - 75px);
  height: calc(100% - 75px);
}

@media (max-width: 991.98px) {
  section.cta-section .image .cta-image {
    max-width: 440px;
    float: none;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
  }
}

section.cta-section .image .cta-image .badge-negative {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

section.cta-section .image .cta-image .badge-negative path {
  fill: #F1B434;
}

section.cta-section.blue {
  background: #005587;
}

section.cta-section.blue .content * {
  color: #ffffff;
}

section.cta-section.blue .content .links .link {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid #ffffff;
  padding: 17px 16px 14px;
  padding: 17px 38px 14px 16px;
  position: relative;
  padding-right: 40px;
  position: relative;
  overflow: hidden;
  outline: none !important;
}

section.cta-section.blue .content .links .link span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #ffffff;
  font-size: 14px;
}

section.cta-section.blue .content .links .link span div {
  right: -22px;
}

section.cta-section.blue .content .links .link svg {
  position: absolute;
  width: 14px;
  right: 16px;
  top: 20px;
}

section.cta-section.blue .content .links .link svg polyline,
section.cta-section.blue .content .links .link svg line {
  fill: none;
  stroke: #005587;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

section.cta-section.blue .content .links .link svg polyline,
section.cta-section.blue .content .links .link svg line {
  stroke: #ffffff;
}

section.cta-section.blue .content .links .link span {
  position: relative;
  z-index: 1;
  -webkit-transition: color 150ms ease;
  -moz-transition: color 150ms ease;
  -ms-transition: color 150ms ease;
  -o-transition: color 150ms ease;
  transition: color 150ms ease;
}

section.cta-section.blue .content .links .link span div {
  z-index: 1;
}

section.cta-section.blue .content .links .link span div:before,
section.cta-section.blue .content .links .link span div:after {
  z-index: 1;
  -webkit-transition: background 150ms ease;
  -moz-transition: background 150ms ease;
  -ms-transition: background 150ms ease;
  -o-transition: background 150ms ease;
  transition: background 150ms ease;
}

section.cta-section.blue .content .links .link svg {
  z-index: 1;
}

section.cta-section.blue .content .links .link svg polyline,
section.cta-section.blue .content .links .link svg line {
  -webkit-transition: stroke 150ms ease;
  -moz-transition: stroke 150ms ease;
  -ms-transition: stroke 150ms ease;
  -o-transition: stroke 150ms ease;
  transition: stroke 150ms ease;
}

section.cta-section.blue .content .links .link:before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  -webkit-transition: left 300ms ease;
  -moz-transition: left 300ms ease;
  -ms-transition: left 300ms ease;
  -o-transition: left 300ms ease;
  transition: left 300ms ease;
}

section.cta-section.blue .content .links .link:hover:before,
section.cta-section.blue .content .links .link:focus:before {
  left: 0%;
}

section.cta-section.blue .content .links .link:hover span,
section.cta-section.blue .content .links .link:focus span {
  color: #005587;
}

section.cta-section.blue .content .links .link:hover span div:before,
section.cta-section.blue .content .links .link:hover span div:after,
section.cta-section.blue .content .links .link:focus span div:before,
section.cta-section.blue .content .links .link:focus span div:after {
  right: 2px;
  background: #ffffff;
}

section.cta-section.blue .content .links .link:hover svg polyline,
section.cta-section.blue .content .links .link:hover svg line,
section.cta-section.blue .content .links .link:focus svg polyline,
section.cta-section.blue .content .links .link:focus svg line {
  stroke: #005587;
}

section.cta-section.blue .image .cta-image .badge-negative path {
  fill: #005587;
}

@media (min-width: 992px) {
  section.cta-section.reversed .content {
    order: 2;
  }

  section.cta-section.reversed .image {
    order: 1;
  }

  section.cta-section.reversed .image .cta-image {
    float: left;
  }
}

section.cta-section.right-arrow .content .links .link {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none !important;
  display: inline-block;
  padding-right: 0;
  -webkit-transition: padding-right 300ms ease;
  -moz-transition: padding-right 300ms ease;
  -ms-transition: padding-right 300ms ease;
  -o-transition: padding-right 300ms ease;
  transition: padding-right 300ms ease;
  border: 1px solid #ffffff;
  padding: 17px 16px 14px;
  padding: 17px 38px 14px 16px;
  position: relative;
  padding-right: 40px;
}

section.cta-section.right-arrow .content .links .link span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #ffffff;
  font-size: 14px;
}

section.cta-section.right-arrow .content .links .link span {
  position: relative;
}

section.cta-section.right-arrow .content .links .link span div {
  position: absolute;
  pointer-events: none;
  background: #F1B434;
  right: -15px;
  top: 9px;
  height: 2px;
  width: 0;
  -webkit-transition: width 300ms ease, opacity 200ms ease;
  -moz-transition: width 300ms ease, opacity 200ms ease;
  -ms-transition: width 300ms ease, opacity 200ms ease;
  -o-transition: width 300ms ease, opacity 200ms ease;
  transition: width 300ms ease, opacity 200ms ease;
}

section.cta-section.right-arrow .content .links .link span div:before,
section.cta-section.right-arrow .content .links .link span div:after {
  content: "";
  position: absolute;
  background: #F1B434;
  right: 2px;
  height: 9px;
  width: 2px;
  -webkit-transition: right 250ms ease;
  -moz-transition: right 250ms ease;
  -ms-transition: right 250ms ease;
  -o-transition: right 250ms ease;
  transition: right 250ms ease;
}

section.cta-section.right-arrow .content .links .link span div:before {
  top: -1px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

section.cta-section.right-arrow .content .links .link span div:after {
  bottom: -1px;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

section.cta-section.right-arrow .content .links .link:hover span div:before,
section.cta-section.right-arrow .content .links .link:hover span div:after {
  right: -32px;
}

section.cta-section.right-arrow .content .links .link span div {
  right: -22px;
}

section.cta-section.right-arrow .content .links .link svg {
  position: absolute;
  width: 14px;
  right: 16px;
  top: 20px;
}

section.cta-section.right-arrow .content .links .link svg polyline,
section.cta-section.right-arrow .content .links .link svg line {
  fill: none;
  stroke: #005587;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

section.cta-section.right-arrow .content .links .link svg polyline,
section.cta-section.right-arrow .content .links .link svg line {
  stroke: #ffffff;
}

section.cta-section.right-arrow .content .links .link svg {
  display: none;
}

section.cta-section.right-arrow .content .links .link:hover span div {
  background: none;
}

section.cta-section.right-arrow .content .links .link:hover span div:before,
section.cta-section.right-arrow .content .links .link:hover span div:after {
  right: 2px !important;
  background: #005587;
  -webkit-transition: background 150ms ease;
  -moz-transition: background 150ms ease;
  -ms-transition: background 150ms ease;
  -o-transition: background 150ms ease;
  transition: background 150ms ease;
}

section.cta-section.right-arrow.yellow .content .links .link {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
  display: inline-block;
  padding-right: 0;
  -webkit-transition: padding-right 300ms ease;
  -moz-transition: padding-right 300ms ease;
  -ms-transition: padding-right 300ms ease;
  -o-transition: padding-right 300ms ease;
  transition: padding-right 300ms ease;
  border: 1px solid #005587;
  padding: 17px 16px 14px;
  padding: 17px 38px 14px 16px;
  position: relative;
  padding-right: 40px;
}

section.cta-section.right-arrow.yellow .content .links .link span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

section.cta-section.right-arrow.yellow .content .links .link span {
  position: relative;
}

section.cta-section.right-arrow.yellow .content .links .link span div {
  position: absolute;
  pointer-events: none;
  background: #005587;
  right: -15px;
  top: 9px;
  height: 2px;
  width: 0;
  -webkit-transition: width 300ms ease, opacity 200ms ease;
  -moz-transition: width 300ms ease, opacity 200ms ease;
  -ms-transition: width 300ms ease, opacity 200ms ease;
  -o-transition: width 300ms ease, opacity 200ms ease;
  transition: width 300ms ease, opacity 200ms ease;
}

section.cta-section.right-arrow.yellow .content .links .link span div:before,
section.cta-section.right-arrow.yellow .content .links .link span div:after {
  content: "";
  position: absolute;
  background: #005587;
  right: 2px;
  height: 9px;
  width: 2px;
  -webkit-transition: right 250ms ease;
  -moz-transition: right 250ms ease;
  -ms-transition: right 250ms ease;
  -o-transition: right 250ms ease;
  transition: right 250ms ease;
}

section.cta-section.right-arrow.yellow .content .links .link span div:before {
  top: -1px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

section.cta-section.right-arrow.yellow .content .links .link span div:after {
  bottom: -1px;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

section.cta-section.right-arrow.yellow .content .links .link:hover span div:before,
section.cta-section.right-arrow.yellow .content .links .link:hover span div:after {
  right: -32px;
}

section.cta-section.right-arrow.yellow .content .links .link span div {
  right: -22px;
}

section.cta-section.right-arrow.yellow .content .links .link svg {
  position: absolute;
  width: 14px;
  right: 16px;
  top: 20px;
}

section.cta-section.right-arrow.yellow .content .links .link svg polyline,
section.cta-section.right-arrow.yellow .content .links .link svg line {
  fill: none;
  stroke: #005587;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

section.cta-section.right-arrow.yellow .content .links .link svg {
  display: none;
}

section.cta-section.right-arrow.yellow .content .links .link:hover span div {
  background: none;
}

section.cta-section.right-arrow.yellow .content .links .link:hover span div:before,
section.cta-section.right-arrow.yellow .content .links .link:hover span div:after {
  right: 2px !important;
}

section.cta-section.right-arrow.yellow .content .links .link:hover span {
  color: #ffffff;
}

section.cta-section.right-arrow.yellow .content .links .link:hover div:before,
section.cta-section.right-arrow.yellow .content .links .link:hover div:after {
  background: #ffffff;
}

section.form-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 479px) {
  section.form-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

section.form-section .row {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

section.form-section .row.content {
  margin-bottom: 50px;
}

section.form-section .row.content .col {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 1199.98px) {
  section.form-section .row.content .col {
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
}

@media (max-width: 991.98px) {
  section.form-section .row.content .col {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (max-width: 767.98px) {
  section.form-section .row.content .col {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (max-width: 479px) {
  section.form-section .row.content .col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

section.form-section .row.content h2 {
  text-align: center;
}

section.form-section .row.form .col {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 1199.98px) {
  section.form-section .row.form .col {
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
}

@media (max-width: 991.98px) {
  section.form-section .row.form .col {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (max-width: 767.98px) {
  section.form-section .row.form .col {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (max-width: 479px) {
  section.form-section .row.form .col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

section.map-section {
  padding: 80px;
}

@media (min-width: 992px) {
  section.map-section {
    min-height: 420px;
  }
}

@media (max-width: 1199.98px) {
  section.map-section {
    padding: 45px;
  }
}

@media (max-width: 991.98px) {
  section.map-section {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  section.map-section {
    padding: 15px;
  }
}

section.map-section .inner {
  position: relative;
  height: 100vh;
  height: -moz-calc(100vh - 160px);
  height: -webkit-calc(100vh - 160px);
  height: calc(100vh - 160px);
}

section.map-section .inner .map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section.map-section.side-content {
  position: relative;
  background: #F1F2F2;
  padding-top: 60px !important;
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 45px;
}

@media (max-width: 767.98px) {
  section.map-section.side-content {
    padding-top: 45px;
    padding-bottom: 0;
  }
}

section.map-section.side-content .content {
  width: 100%;
}

section.map-section.side-content .content .col {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 991.98px) {
  section.map-section.side-content .content .col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 45px;
  }
}

@media (min-width: 768px) {
  section.map-section.side-content .inner {
    position: absolute;
    width: 50%;
    width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    left: unset;
    top: 0;
    right: 0;
    padding-left: 30px;
    height: 100%;
  }

  section.map-section.side-content .inner:before {
    content: "";
    position: absolute;
    background: #ffffff;
    width: 60px;
    height: 100%;
    bottom: 0;
    left: -30px;
  }
}

@media (max-width: 767.98px) {
  section.map-section.side-content .inner {
    border-top: 15px solid #ffffff;
  }
}

section.news-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 991.98px) {
  section.news-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

section.news-section .title {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 991.98px) {
  section.news-section .title {
    margin-bottom: 0;
  }
}

section.news-section .title h2 {
  color: #005587;
  margin-bottom: 0;
  color: #005587;
  font-size: 36px;
  line-height: 1.125;
  font-weight: 500;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  section.news-section .title h2 {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  section.news-section .title h2 {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  section.news-section .title h2 {
    font-size: 23px;
  }
}

@media (max-width: 479px) {
  section.news-section .title h2 {
    font-size: 20px;
  }
}

@media (max-width: 349px) {
  section.news-section .title h2 {
    font-size: 18px;
  }
}

section.news-section .title h2 strong {
  font-family: minerva-modern, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 60px;
  display: block;
  width: 100%;
}

@media (max-width: 991.98px) {
  section.news-section .title h2 strong {
    font-size: 50px;
  }
}

@media (max-width: 767.98px) {
  section.news-section .title h2 strong {
    font-size: 44px;
  }
}

@media (max-width: 575.98px) {
  section.news-section .title h2 strong {
    font-size: 40px;
  }
}

@media (max-width: 479px) {
  section.news-section .title h2 strong {
    font-size: 35px;
  }
}

@media (max-width: 349px) {
  section.news-section .title h2 strong {
    font-size: 32px;
  }
}

@media (max-width: 991.98px) {
  section.news-section .blocks {
    display: none;
  }
}

section.news-section .blocks .inner {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 378px;
  overflow: hidden;
}

@media (max-width: 1479px) {
  section.news-section .blocks .inner {
    height: 313px;
  }
}

@media (max-width: 1199.98px) {
  section.news-section .blocks .inner {
    height: 272px;
  }
}

section.news-section .blocks .inner .image-wrap {
  height: 100%;
  height: -moz-calc(100% - 50px);
  height: -webkit-calc(100% - 50px);
  height: calc(100% - 50px);
  position: relative;
}

section.news-section .blocks .inner .image-wrap .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  -webkit-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0);
}

section.news-section .blocks .inner .content {
  position: absolute;
  background: #115487;
  width: 100%;
  bottom: 0;
  left: 0;
  -webkit-transition: bottom 300ms ease;
  -moz-transition: bottom 300ms ease;
  -ms-transition: bottom 300ms ease;
  -o-transition: bottom 300ms ease;
  transition: bottom 300ms ease;
}

section.news-section .blocks .inner .content .link-text {
  padding: 15px;
  color: #F1B434;
  text-transform: uppercase;
  font-family: montserrat, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  section.news-section .blocks .inner .content .link-text {
    font-size: 16.5px;
  }
}

section.news-section .blocks .inner .content .extra {
  overflow: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: height 350ms ease, opacity 350ms ease;
  -moz-transition: height 350ms ease, opacity 350ms ease;
  -ms-transition: height 350ms ease, opacity 350ms ease;
  -o-transition: height 350ms ease, opacity 350ms ease;
  transition: height 350ms ease, opacity 350ms ease;
}

section.news-section .blocks .inner .content .extra .extra-inner p {
  padding: 0 15px 15px;
  color: #ffffff;
  font-size: 16px;
}

@media (max-width: 767.98px) {
  section.news-section .blocks .inner .content .extra .extra-inner p {
    font-size: 14px;
  }
}

section.news-section .blocks .inner:hover .image-wrap .image {
  -ms-transform: scale(1.025);
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}

section.news-section .blocks .inner:hover .content .extra {
  opacity: 1;
}

section.news-section .blocks .sm {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

@media (max-width: 991.98px) {
  section.news-section .blocks .sm {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

section.news-section .blocks .sm .inner:last-child {
  margin-top: 56px;
}

@media (max-width: 1199.98px) {
  section.news-section .blocks .sm .inner:last-child {
    margin-top: 26px;
  }
}

section.news-section .blocks .lg {
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

section.news-section .blocks .lg .inner {
  height: 819px;
}

@media (max-width: 1479px) {
  section.news-section .blocks .lg .inner {
    height: 690px;
  }
}

@media (max-width: 1199.98px) {
  section.news-section .blocks .lg .inner {
    height: 578px;
  }
}

section.news-section .blocks.norm {
  margin-bottom: 56px;
}

@media (max-width: 1199.98px) {
  section.news-section .blocks.norm {
    margin-bottom: 26px;
  }
}

section.news-section .blocks.norm .sm {
  padding-right: 30px;
}

@media (max-width: 1199.98px) {
  section.news-section .blocks.norm .sm {
    padding-right: 15px;
  }
}

section.news-section .blocks.norm .lg {
  padding-left: 30px;
}

@media (max-width: 1199.98px) {
  section.news-section .blocks.norm .lg {
    padding-left: 15px;
  }
}

section.news-section .blocks.rev .sm {
  padding-left: 30px;
}

@media (max-width: 1199.98px) {
  section.news-section .blocks.rev .sm {
    padding-left: 15px;
  }
}

section.news-section .blocks.rev .lg {
  padding-right: 30px;
}

@media (max-width: 1199.98px) {
  section.news-section .blocks.rev .lg {
    padding-right: 15px;
  }
}

section.news-section .blocks.mobile-row {
  display: none;
}

@media (max-width: 991.98px) {
  section.news-section .blocks.mobile-row {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

section.news-section .blocks.mobile-row .col {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 26px;
}

@media (max-width: 767.98px) {
  section.news-section .blocks.mobile-row .col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 449px) {
  section.news-section .blocks.mobile-row .col {
    margin-bottom: 11px;
  }
}

section.news-section .blocks.mobile-row .col .inner {
  height: 300px;
}

@media (max-width: 991.98px) {
  section.split-content .breadcrumbs-row {
    display: none;
  }
}

section.split-content .content-row {
  padding-top: 30px;
}

section.split-content .info-col {
  position: relative;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  section.split-content .info-col {
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%;
    padding-right: 40px;
  }
}

section.split-content .info-col .featured-image {
  max-width: 320px;
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  section.split-content .info-col .featured-image {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

section.split-content .info-col .contact-info {
  position: absolute;
  padding-top: 35px;
  padding-bottom: 30px;
  z-index: 1;
  width: 100%;
  padding-right: 90px;
}

@media (max-width: 991.98px) {
  section.split-content .info-col .contact-info {
    position: relative;
  }
}

@media (max-width: 479px) {
  section.split-content .info-col .contact-info {
    padding-right: 0;
  }
}

section.split-content .info-col .contact-info:after {
  content: "";
  position: absolute;
  background: #F1B434;
  width: 100vw;
  height: 100%;
  top: 0;
  right: 55px;
}

@media (max-width: 991.98px) {
  section.split-content .info-col .contact-info:after {
    width: -moz-calc(100vw + 200px);
    width: -webkit-calc(100vw + 200px);
    width: calc(100vw + 200px);
    right: -100px;
  }
}

section.split-content .info-col .contact-info .info-item {
  position: relative;
  z-index: 1;
}

section.split-content .info-col .contact-info .info-item * {
  font-family: montserrat, sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  section.split-content .info-col .contact-info .info-item * {
    font-size: 14px;
  }
}

section.split-content .info-col .contact-info .info-item a,
section.split-content .info-col .contact-info .info-item p {
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
  text-decoration: none !important;
}

section.split-content .info-col .contact-info .info-item a span,
section.split-content .info-col .contact-info .info-item p span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #005587;
  font-size: 14px;
}

section.split-content .info-col .contact-info .info-item a:hover,
section.split-content .info-col .contact-info .info-item p:hover {
  color: #005587;
}

section.split-content .info-col .contact-info .info-item p {
  cursor: unset;
}

section.split-content .info-col .contact-info .info-item.social {
  margin-top: 14px;
  display: inline-block;
  width: 100%;
}

section.split-content .info-col .contact-info .info-item.social a {
  margin-right: 10px;
}

section.split-content .info-col .contact-info button {
  margin-top: 20px;
  position: relative;
  z-index: 1;
  border: none;
  background: none;
  padding: 0;
  outline: none !important;
}

section.split-content .info-col .contact-info button svg {
  width: 30px;
  height: 30px;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}

section.split-content .info-col .contact-info button svg:nth-child(1) {
  opacity: 1;
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

section.split-content .info-col .contact-info button svg:nth-child(1) polyline {
  fill: none;
  stroke: #005587;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

section.split-content .info-col .contact-info button svg:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

section.split-content .info-col .contact-info button svg:nth-child(2) line {
  fill: none;
  stroke: #005587;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

section.split-content .info-col .contact-info button.active svg:nth-child(1) {
  opacity: 0;
}

section.split-content .info-col .contact-info button.active svg:nth-child(2) {
  opacity: 1;
}

section.split-content .description-col {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  section.split-content .description-col {
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%;
    padding-left: 40px;
  }
}

@media (max-width: 991.98px) {
  section.split-content .description-col {
    padding-top: 60px;
  }
}

section.split-content .description-col .featured-image {
  max-width: 420px;
}

@media (max-width: 991.98px) {
  section.split-content .description-col .featured-image {
    margin-bottom: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    top: -25px;
  }
}

section.split-content .description-col p {
  font-size: 16px;
}

@media (max-width: 767.98px) {
  section.split-content .description-col p {
    font-size: 14px;
  }
}

section.split-content .description-col p:first-child {
  font-size: 22px;
}

@media (max-width: 767.98px) {
  section.split-content .description-col p:first-child {
    font-size: 20px;
  }
}

section.split-content+.standard-carousel {
  padding-top: 100px;
}

section.partner-category-section {
  padding-top: 100px;
  padding-bottom: 160px;
}

@media (max-width: 767.98px) {
  section.partner-category-section {
    padding-top: 50px;
  }
}

@media (max-width: 399px) {
  section.partner-category-section {
    padding-bottom: 100px;
  }
}

section.partner-category-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

section.partner-category-section h2.mobile {
  display: none;
}

@media (max-width: 1199.98px) {
  section.partner-category-section h2.mobile {
    display: block;
    margin-top: 0;
  }

  section.partner-category-section h2.desktop {
    display: none;
  }
}

section.partner-category-section .container>.row {
  position: relative;
}

@media (max-width: 991.98px) {
  section.partner-category-section .container>.row h2 {
    text-align: left;
  }
}

@media (min-width: 992px) {
  section.partner-category-section .container>.row .col.filter-col {
    margin-bottom: 50px;
  }
  .followSocial{
    margin-top: 110px;
  }
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap {
  float: left;
  position: relative;
  max-width: 336px;
  width: 100%;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  section.partner-category-section .container>.row .col.filter-col .partner-search-wrap {
    margin-bottom: 0;
    margin-top: 30px;
  }
}

@media (max-width: 479px) {
  section.partner-category-section .container>.row .col.filter-col .partner-search-wrap {
    max-width: 100%;
  }
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap svg {
  position: absolute;
  width: 20px;
  right: 0;
  bottom: 8px;
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap svg circle,
section.partner-category-section .container>.row .col.filter-col .partner-search-wrap svg line {
  fill: none;
  stroke: #005587;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap input[type=text] {
  width: 100%;
  border: none;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  box-shadow: 0 0 0 0 rgba(0, 85, 135, 0);
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  border-radius: 4px;
  min-height: 34px;
  padding: 0;
  font-size: 20px;
  width: 270px;
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap input[type=text]:focus {
  border: none !important;
  background: none !important;
  outline: none;
  color: #005587;
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap input[type=text]:focus+hr {
  background: #036fd0;
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap button.clear {
  position: absolute;
  right: 30px;
  bottom: -4px;
  display: inline-block;
  display: none;
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap button.clear svg {
  width: 16px;
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap hr {
  position: absolute;
  border: none;
  background: #005587;
  margin: 0;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transition: background 250ms ease;
  -moz-transition: background 250ms ease;
  -ms-transition: background 250ms ease;
  -o-transition: background 250ms ease;
  transition: background 250ms ease;
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #005587;
  opacity: 0.5;
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap ::-moz-placeholder {
  /* Firefox 19+ */
  color: #005587;
  opacity: 0.5;
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap :-ms-input-placeholder {
  /* IE 10+ */
  color: #005587;
  opacity: 0.5;
}

section.partner-category-section .container>.row .col.filter-col .partner-search-wrap :-moz-placeholder {
  /* Firefox 18- */
  color: #005587;
  opacity: 0.5;
}

section.partner-category-section .container>.row .col.filter-col .partner-category-wrap {
  float: left;
  margin-right: 60px;
}

section.partner-category-section .container>.row .col.filter-col .partner-category-wrap select {
  top: 10px;
  padding-right: 20px;
}

section.partner-category-section .container>.row .col.filter-col .row-not-found {
  position: relative;
  width: 100%;
  left: 0;
  bottom: -60px;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}

section.partner-category-section .container>.row .col.filter-col .row-not-found.active {
  opacity: 1;
}

section.partner-category-section .container>.row .col.map-col {
  position: relative;
  -ms-flex: 0 0 41.6666666667%;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

@media (max-width: 1199.98px) {
  section.partner-category-section .container>.row .col.map-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
}

@media (max-width: 991.98px) {
  section.partner-category-section .container>.row .col.map-col {
    margin-bottom: 40px;
  }
}

section.partner-category-section .container>.row .col.map-col #map {
  position: absolute;
  top: 30px;
  left: 15px;
  width: 100%;
  height: 100%;
  max-height: 1000px;
}

@media (max-width: 1199.98px) {
  section.partner-category-section .container>.row .col.map-col #map {
    margin-bottom: 50px;
    position: relative;
    left: 0;
    height: 420px;
  }
}

section.partner-category-section .container>.row .col.map-col.stay #map {
  position: absolute !important;
  bottom: 0 !important;
  right: unset !important;
  top: unset !important;
  left: 15px !important;
}

section.partner-category-section .container>.row .col.map-col.stickied #map {
  position: fixed;
  left: unset;
  right: 0;
  top: 80px;
}

section.partner-category-section .container>.row .col.cards-col {
  position: unset;
  -ms-flex: 0 0 58.3333333333%;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

@media (min-width: 1200px) {
  section.partner-category-section .container>.row .col.cards-col {
    padding-right: 45px;
  }
  .followSocial{
    margin-top: 140px;
  }
}

@media (max-width: 1199.98px) {
  section.partner-category-section .container>.row .col.cards-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
}

section.partner-category-section .container>.row .col.cards-col .partner-col {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

section.partner-category-section .container>.row .col.cards-col .partner-col .inner h3 {
  cursor: pointer;
  -webkit-transition: color 350ms ease;
  -moz-transition: color 350ms ease;
  -ms-transition: color 350ms ease;
  -o-transition: color 350ms ease;
  transition: color 350ms ease;
}

section.partner-category-section .container>.row .col.cards-col .partner-col .inner h3:hover {
  color: #F1B434;
}

section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap {
  position: absolute;
  width: 100%;
  bottom: -80px;
  left: 0;
  text-align: center;
}

@media (max-width: 399px) {
  section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap {
    position: relative;
    bottom: 0;
    margin-top: 60px;
  }
}

section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap .row-partners-pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap .row-partners-pagination span {
  color: #005587;
  cursor: pointer;
  padding: 8px 12px;
  font-size: 14px;
  font-family: montserrat, sans-serif;
  font-weight: 600;
}

section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap .row-partners-pagination span.dots {
  cursor: default;
}

section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap .row-partners-pagination span.active {
  color: #8aabc3;
}

section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap .row-partners-pagination span.arrow {
  color: #F1B434;
  position: relative;
  padding: 8px;
}

section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap .row-partners-pagination span.arrow svg {
  width: 8px;
}

section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap .row-partners-pagination span.number:not(:first-child) {
  position: relative;
}

section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap .row-partners-pagination span.number:not(:first-child):after {
  content: "";
  position: absolute;
  background: #005587;
  width: 2px;
  height: 14px;
  top: 10px;
  left: -1px;
}

section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap .row-partners-pagination span.number:only-child {
  display: none;
}

section.partner-category-section .container>.row .col.cards-col .partners-pagination-wrap .row-partners-pagination .row-not-found {
  color: red;
  font-weight: bold;
  display: none;
}

section.partner-category-section.long {
  padding-bottom: 0;
}

@media (min-width: 992px) {
  section.partner-category-section.long .container>.row .col.map-col #map {
    height: -moz-calc(100vh - 80px);
    height: -webkit-calc(100vh - 80px);
    height: calc(100vh - 80px);
  }
}

section.partner-category-section.long .container>.row .col.cards-col {
  padding-bottom: 160px;
}

@media (max-width: 399px) {
  section.partner-category-section.long .container>.row .col.cards-col {
    padding-bottom: 100px;
  }
}

section.resources-section {
  padding-top: 100px;
  padding-bottom: 70px;
}

section.resources-section .header-row {
  margin-bottom: 100px;
}

section.resources-section .res-row .res-col {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  margin-bottom: 30px;
}

@media (max-width: 1479px) {
  section.resources-section .res-row .res-col {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (max-width: 991.98px) {
  section.resources-section .res-row .res-col {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 479px) {
  section.resources-section .res-row .res-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

section.resources-section .res-row .res-col .inner {
  background: #005587;
  position: relative;
  height: 100%;
  padding: 15px;
  padding-bottom: 110px;
}

section.resources-section .res-row .res-col .inner * {
  color: #ffffff;
}

section.resources-section .res-row .res-col .inner h3 {
  position: relative;
  padding-left: 36px;
}

section.resources-section .res-row .res-col .inner h3 svg {
  width: 24px;
  position: absolute;
  top: 0;
  left: 0;
  fill: #ffffff;
}

section.resources-section .res-row .res-col .inner h3 span {
  display: block;
  font-size: 22px;
}

@media (max-width: 767.98px) {
  section.resources-section .res-row .res-col .inner h3 span {
    font-size: 20px;
  }
}

section.resources-section .res-row .res-col .inner .link-wrap {
  position: absolute;
  bottom: 10px;
  left: 15px;
}

section.resources-section .res-row .res-col .inner .link-wrap .link {
  display: inline-block;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid #ffffff;
  padding: 17px 16px 14px;
  position: relative;
  padding-right: 40px;
  position: relative;
  overflow: hidden;
  outline: none !important;
}

section.resources-section .res-row .res-col .inner .link-wrap .link span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #ffffff;
  font-size: 14px;
}

section.resources-section .res-row .res-col .inner .link-wrap .link svg {
  position: absolute;
  width: 14px;
  right: 16px;
  top: 20px;
}

section.resources-section .res-row .res-col .inner .link-wrap .link svg polyline,
section.resources-section .res-row .res-col .inner .link-wrap .link svg line {
  fill: none;
  stroke: #005587;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

section.resources-section .res-row .res-col .inner .link-wrap .link svg polyline,
section.resources-section .res-row .res-col .inner .link-wrap .link svg line {
  stroke: #ffffff;
}

section.resources-section .res-row .res-col .inner .link-wrap .link span {
  position: relative;
  z-index: 1;
  -webkit-transition: color 150ms ease;
  -moz-transition: color 150ms ease;
  -ms-transition: color 150ms ease;
  -o-transition: color 150ms ease;
  transition: color 150ms ease;
}

section.resources-section .res-row .res-col .inner .link-wrap .link span div {
  z-index: 1;
}

section.resources-section .res-row .res-col .inner .link-wrap .link span div:before,
section.resources-section .res-row .res-col .inner .link-wrap .link span div:after {
  z-index: 1;
  -webkit-transition: background 150ms ease;
  -moz-transition: background 150ms ease;
  -ms-transition: background 150ms ease;
  -o-transition: background 150ms ease;
  transition: background 150ms ease;
}

section.resources-section .res-row .res-col .inner .link-wrap .link svg {
  z-index: 1;
}

section.resources-section .res-row .res-col .inner .link-wrap .link svg polyline,
section.resources-section .res-row .res-col .inner .link-wrap .link svg line {
  -webkit-transition: stroke 150ms ease;
  -moz-transition: stroke 150ms ease;
  -ms-transition: stroke 150ms ease;
  -o-transition: stroke 150ms ease;
  transition: stroke 150ms ease;
}

section.resources-section .res-row .res-col .inner .link-wrap .link:before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  -webkit-transition: left 300ms ease;
  -moz-transition: left 300ms ease;
  -ms-transition: left 300ms ease;
  -o-transition: left 300ms ease;
  transition: left 300ms ease;
}

section.resources-section .res-row .res-col .inner .link-wrap .link:hover:before,
section.resources-section .res-row .res-col .inner .link-wrap .link:focus:before {
  left: 0%;
}

section.resources-section .res-row .res-col .inner .link-wrap .link:hover span,
section.resources-section .res-row .res-col .inner .link-wrap .link:focus span {
  color: #005587;
}

section.resources-section .res-row .res-col .inner .link-wrap .link:hover span div:before,
section.resources-section .res-row .res-col .inner .link-wrap .link:hover span div:after,
section.resources-section .res-row .res-col .inner .link-wrap .link:focus span div:before,
section.resources-section .res-row .res-col .inner .link-wrap .link:focus span div:after {
  right: 2px;
  background: #ffffff;
}

section.resources-section .res-row .res-col .inner .link-wrap .link:hover svg polyline,
section.resources-section .res-row .res-col .inner .link-wrap .link:hover svg line,
section.resources-section .res-row .res-col .inner .link-wrap .link:focus svg polyline,
section.resources-section .res-row .res-col .inner .link-wrap .link:focus svg line {
  stroke: #005587;
}

section.sidebar-section {
  background: #F1F2F2;
  padding-bottom: 80px;
}

section.sidebar-section * {
  color: #005587;
  font-size: 16px;
}

@media (max-width: 767.98px) {
  section.sidebar-section * {
    font-size: 14px;
  }
}

section.sidebar-section .content-row {
  padding-top: 100px;
  padding-bottom: 30px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  section.sidebar-section .content-row {
    padding-top: 60px;
  }
}

section.sidebar-section .content-row .col.copy {
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
  padding-right: 100px;
}

@media (max-width: 1199.98px) {
  section.sidebar-section .content-row .col.copy {
    padding-right: 50px;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (max-width: 991.98px) {
  section.sidebar-section .content-row .col.copy {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
}

section.sidebar-section .content-row .col.copy h2 {
  font-size: 36px;
  margin-bottom: 18px;
  font-family: minerva-modern, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  color: #005587;
}

@media (max-width: 991.98px) {
  section.sidebar-section .content-row .col.copy h2 {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  section.sidebar-section .content-row .col.copy h2 {
    font-size: 32px;
  }
}

@media (max-width: 479px) {
  section.sidebar-section .content-row .col.copy h2 {
    font-size: 28px;
  }
}

section.sidebar-section .content-row .col.copy h2:not(:first-child) {
  margin-top: 30px;
}

section.sidebar-section .content-row .col.side-bar {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

@media (max-width: 1199.98px) {
  section.sidebar-section .content-row .col.side-bar {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (max-width: 991.98px) {
  section.sidebar-section .content-row .col.side-bar {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
    margin-bottom: 60px;
  }
}

section.sidebar-section .content-row .col.side-bar .inner {
  background-color: #ffffff;
  padding: 50px;
}

@media (max-width: 1199.98px) {
  section.sidebar-section .content-row .col.side-bar .inner {
    padding: 32px;
  }
}

section.sidebar-section .content-row .col.side-bar h2 {
  margin-bottom: 24px;
  font-size: 24px;
}

section.sidebar-section .content-row .col.side-bar .links div {
  position: relative;
}

section.sidebar-section .content-row .col.side-bar .links div:not(:last-child) {
  margin-bottom: 16px;
}

section.sidebar-section .content-row .col.side-bar .links div svg {
  display: none;
  position: absolute;
  width: 6px;
  left: -12px;
  top: 6px;
}

section.sidebar-section .content-row .col.side-bar .links div svg polyline {
  fill: none;
  stroke: #005687;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

section.sidebar-section .content-row .col.side-bar .links div a {
  text-decoration: none !important;
  background-image: linear-gradient(#005587, #005587);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  -webkit-transition: background-size 500ms ease;
  -moz-transition: background-size 500ms ease;
  -ms-transition: background-size 500ms ease;
  -o-transition: background-size 500ms ease;
  transition: background-size 500ms ease;
  outline: none !important;
  padding-bottom: 3px;
}

section.sidebar-section .content-row .col.side-bar .links div a:hover,
section.sidebar-section .content-row .col.side-bar .links div a:focus {
  background-size: 100% 2px;
}

section.sidebar-section .content-row .col.side-bar .links div.current svg {
  display: block;
}

section.sidebar-section .breadcrumbs-row .col {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

section.sidebar-section .breadcrumbs-row+.content-row {
  padding-top: 45px;
}

@media (max-width: 991.98px) {
  section.sidebar-section .breadcrumbs-row nav#breadcrumb {
    margin-bottom: 0;
  }
}

section.sidebar-section .accordion {
  margin-top: 40px;
}

section.sidebar-section .accordion .item:not(:last-child) {
  margin-bottom: 14px;
}

section.sidebar-section .accordion .label {
  position: relative;
  text-align: left;
  padding-right: 10px;
  background-color: none !important;
  border: none !important;
  display: inline-block;
  height: auto !important;
  padding-left: 0;
  padding-right: 0;
  font-family: montserrat, sans-serif;
  font-weight: 600;
  outline: none !important;
  background-image: linear-gradient(#005587, #005587);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  -webkit-transition: background-size 500ms ease;
  -moz-transition: background-size 500ms ease;
  -ms-transition: background-size 500ms ease;
  -o-transition: background-size 500ms ease;
  transition: background-size 500ms ease;
  outline: none !important;
  padding-bottom: 3px;
}

section.sidebar-section .accordion .label:hover,
section.sidebar-section .accordion .label:focus {
  background-size: 100% 2px;
}

section.sidebar-section .accordion .label h2 {
  position: relative;
  font-size: 22px;
  margin-bottom: 0;
  padding-right: 32px;
  -webkit-transition: color 500ms ease;
  -moz-transition: color 500ms ease;
  -ms-transition: color 500ms ease;
  -o-transition: color 500ms ease;
  transition: color 500ms ease;
}

section.sidebar-section .accordion .label img {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

section.sidebar-section .accordion .label.active img {
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

section.sidebar-section .accordion .content {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-right: 60px;
  -webkit-transition: height 750ms ease;
  -moz-transition: height 750ms ease;
  -ms-transition: height 750ms ease;
  -o-transition: height 750ms ease;
  transition: height 750ms ease;
}

section.sidebar-section .accordion .content ol,
section.sidebar-section .accordion .content ul {
  padding-left: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

section.sidebar-section .accordion .content ol li:not(:last-child),
section.sidebar-section .accordion .content ul li:not(:last-child) {
  margin-bottom: 10px;
}

section.sidebar-section .accordion .content>div>* {
  padding-bottom: 30px;
}

section.sidebar-section .accordion .content p:not(:last-child),
section.sidebar-section .accordion .content p:only-child {
  padding-top: 30px;
}

section.sidebar-section .accordion .item {
  position: relative;
}

section.sidebar-section .accordion .item:not(:first-child) .title {
  margin-top: 14px;
  position: relative;
}

section.sidebar-section .accordion .item:not(:first-child) .title:after {
  content: "";
  position: absolute;
  background: #000000;
  width: 100%;
  height: 1px;
  top: -9px;
  left: 0;
}

section.sidebar-section+section.copy-section .content-row {
  padding-top: 0;
}

section.sidebar-section+section.image-link-section {
  padding-top: 0;
}

section.testimonial {
  padding-top: 80px;
  padding-bottom: 40px;
}

section.testimonial.navy {
  background: #005587;
}

section.testimonial.navy * {
  color: #ffffff;
}

section.testimonial.orange {
  background: #F1B434;
}

section.testimonial.orange * {
  color: #005587;
}

section.testimonial figure blockquote {
  position: relative;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  section.testimonial figure blockquote {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

section.testimonial figure blockquote * {
  font-size: 32px;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  section.testimonial figure blockquote * {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  section.testimonial figure blockquote * {
    font-size: 28px;
  }
}

@media (max-width: 479px) {
  section.testimonial figure blockquote * {
    font-size: 26px;
  }
}

section.testimonial figure blockquote .content {
  padding-left: 80px;
  padding-right: 50px;
}

@media (max-width: 479px) {
  section.testimonial figure blockquote .content {
    padding-left: 64px;
    padding-right: 36px;
  }
}

@media (max-width: 375px) {
  section.testimonial figure blockquote .content {
    padding-left: 36px;
  }
}

section.testimonial figure blockquote .quote {
  position: absolute;
  width: 32px;
}

@media (max-width: 479px) {
  section.testimonial figure blockquote .quote {
    width: 25px;
  }
}

section.testimonial figure blockquote .quote:first-child {
  width: 50px;
  top: -10px;
  left: 0;
}

@media (max-width: 479px) {
  section.testimonial figure blockquote .quote:first-child {
    top: -8px;
    width: 44px;
  }
}

@media (max-width: 375px) {
  section.testimonial figure blockquote .quote:first-child {
    top: -5px;
    width: 25px;
  }
}

section.testimonial figure blockquote .quote:last-child {
  bottom: -6px;
  right: 0;
}

@media (max-width: 479px) {
  section.testimonial figure blockquote .quote:last-child {
    bottom: -5px;
  }
}

section.testimonial figure figcaption {
  padding-left: 80px;
  font-size: 18px;
}

@media (max-width: 767.98px) {
  section.testimonial figure figcaption {
    font-size: 16.5px;
  }
}

@media (max-width: 479px) {
  section.testimonial figure figcaption {
    padding-left: 64px;
  }
}

@media (max-width: 375px) {
  section.testimonial figure figcaption {
    padding-left: 36px;
  }
}

section.testimonial figure figcaption strong {
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  section.testimonial figure figcaption strong {
    font-size: 20px;
  }
}

section#coming-soon,
section#error-404 {
  text-align: center;
  height: 100vh;
}

section#coming-soon .container,
section#error-404 .container {
  height: 100%;
}

section#coming-soon .row,
section#error-404 .row {
  height: 100%;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

section#coming-soon .row .col,
section#error-404 .row .col {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}

section#coming-soon *,
section#error-404 * {
  color: #115487;
}

section#coming-soon h1,
section#error-404 h1 {
  font-size: 55px;
}

section#coming-soon .contnet,
section#error-404 .contnet {
  margin-bottom: 30px;
}

section#error-404 .contnet {
  margin-bottom: 30px;
}

section#posts .outer-row {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

section#posts .outer-row .outer-col {
  -ms-flex: 0 0 83.3333333333%;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

@media (max-width: 991.98px) {
  section#posts .outer-row .outer-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

section#posts .blocks-row-blog {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

section#posts .blocks-row-blog .block {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
}

section#posts .blocks-row-blog .block .content-col {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

section#posts .blocks-row-blog .block .content-col:before {
  content: "";
  position: absolute;
  background: #F1F2F2;
  width: 100%;
  width: -moz-calc(100% - 30px);
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
  height: 100%;
  bottom: 0;
  right: 15px;
}

section#posts .blocks-row-blog .block .content-col .inner {
  position: relative;
  z-index: 1;
  padding: 60px 60px 48px 60px;
}

@media (max-width: 991.98px) {
  section#posts .blocks-row-blog .block .content-col .inner {
    padding: 45px 45px 30px 45px;
  }
}

@media (max-width: 479px) {
  section#posts .blocks-row-blog .block .content-col .inner {
    padding: 30px 30px 15px 30px;
  }
}

section#posts .blocks-row-blog .block .content-col .inner h2 {
  font-family: montserrat, sans-serif;
  font-weight: 600;
  letter-spacing: 0rem;
  text-transform: none;
  font-size: 23px;
  line-height: 1.3;
}

@media (max-width: 479px) {
  section#posts .blocks-row-blog .block .content-col .inner h2 {
    font-size: 21px;
  }
}

@media (max-width: 479px) {
  section#posts .blocks-row-blog .block .content-col .inner h2 {
    font-size: 19px;
  }
}

section#posts .blocks-row-blog .block .content-col .inner .date {
  margin-bottom: 20px;
}

section#posts .blocks-row-blog .block .content-col .inner .link-arrow-wrap {
  margin-top: 25px;
  display: inline-block;
}

@media (max-width: 991.98px) {
  section#posts .blocks-row-blog .block .content-col .inner .content {
    display: none;
  }
}

section#posts .blocks-row-blog .block .content-col .inner * {
  color: #005587;
}

section#posts .blocks-row-blog .block.img {
  margin-bottom: 105px;
}

section#posts .blocks-row-blog .block.img .image-col {
  z-index: 1;
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

section#posts .blocks-row-blog .block.img .image-col .image {
  height: 340px;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 1479px) {
  section#posts .blocks-row-blog .block.img .image-col .image {
    height: 280px;
  }
}

@media (max-width: 1199.98px) {
  section#posts .blocks-row-blog .block.img .image-col .image {
    height: 230px;
  }
}

@media (max-width: 991.98px) {
  section#posts .blocks-row-blog .block.img .image-col .image {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  section#posts .blocks-row-blog .block.img .image-col .image {
    height: 150px;
  }
}

@media (max-width: 479px) {
  section#posts .blocks-row-blog .block.img .image-col .image {
    height: 125px;
    width: 125px;
  }
}

section#posts .blocks-row-blog .block.img .content-col {
  min-height: 340px;
  padding-left: 45px;
  padding-right: 75px;
  position: unset;
  height: 100%;
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

@media (max-width: 1479px) {
  section#posts .blocks-row-blog .block.img .content-col {
    min-height: 280px;
  }
}

@media (max-width: 991.98px) {
  section#posts .blocks-row-blog .block.img .content-col {
    min-height: 240px;
    padding-left: 35px;
    padding-right: 55px;
  }
}

section#posts .blocks-row-blog .block.img .content-col:before {
  top: 45px;
  width: -moz-calc(100% - 90px);
  width: -webkit-calc(100% - 90px);
  width: calc(100% - 90px);
}

@media (max-width: 991.98px) {
  section#posts .blocks-row-blog .block.img .content-col:before {
    top: 30px;
    width: -moz-calc(100% - 60px);
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
  }
}

section#posts .blocks-row-blog .block.img .content-col .inner {
  top: 45px;
  padding: 0;
}

@media (max-width: 991.98px) {
  section#posts .blocks-row-blog .block.img .content-col .inner {
    top: 30px;
  }
}

section#posts .blocks-row-blog .block.small {
  padding-bottom: 40px;
  margin-bottom: 25px;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 991.98px) {
  section#posts .blocks-row-blog .block.small {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

section#posts .blocks-row-blog .block.small>.row:before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 100%;
  width: -moz-calc(100% - 115px);
  width: -webkit-calc(100% - 115px);
  width: calc(100% - 115px);
  height: 100%;
  height: -moz-calc(100% - 40px);
  height: -webkit-calc(100% - 40px);
  height: calc(100% - 40px);
  bottom: 0;
  right: 15px;
}

section#posts .blocks-row-blog .block.small .image-col {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

section#posts .blocks-row-blog .block.small .image-col .image {
  height: 290px;
}

@media (max-width: 1479px) {
  section#posts .blocks-row-blog .block.small .image-col .image {
    height: 232px;
  }
}

section#posts .blocks-row-blog .block.small .content-col {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

section#posts .blocks-row-blog .block.small .content-col .inner {
  background: none !important;
  padding: 25px 0 60px 0;
}

section#posts .blocks-row-blog .block.image-right .row {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

section#posts .blocks-row-blog .block.image-right .image-col {
  order: 2;
}

section#posts .blocks-row-blog .block.image-right .content-col {
  order: 1;
  right: auto;
  left: 0;
}

section#posts .posts-row .post-col:nth-child(1),
section#posts .posts-row .post-col:nth-child(2),
section#posts .posts-row .post-col:nth-child(3),
section#posts .posts-row .post-col:nth-child(4),
section#posts .posts-row .post-col:nth-child(5),
section#posts .posts-row .post-col:nth-child(6),
section#posts .posts-row .post-col:nth-child(7),
section#posts .posts-row .post-col:nth-child(8),
section#posts .posts-row .post-col:nth-child(9) {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

section#posts .posts-row .post-col:nth-child(10),
section#posts .posts-row .post-col:nth-child(11),
section#posts .posts-row .post-col:nth-child(12),
section#posts .posts-row .post-col:nth-child(13),
section#posts .posts-row .post-col:nth-child(14),
section#posts .posts-row .post-col:nth-child(15) {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 991.98px) {

  section#posts .posts-row .post-col:nth-child(10),
  section#posts .posts-row .post-col:nth-child(11),
  section#posts .posts-row .post-col:nth-child(12),
  section#posts .posts-row .post-col:nth-child(13),
  section#posts .posts-row .post-col:nth-child(14),
  section#posts .posts-row .post-col:nth-child(15) {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block,
section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block,
section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block,
section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block,
section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block,
section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block {
  position: unset;
}

section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block .content-col .inner,
section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block .content-col .inner,
section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block .content-col .inner,
section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block .content-col .inner,
section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block .content-col .inner,
section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block .content-col .inner {
  padding: 30px;
}

section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .image-col,
section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .image-col,
section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .image-col,
section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .image-col,
section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .image-col,
section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .image-col {
  -ms-flex: 0 0 37.5%;
  flex: 0 0 37.5%;
  max-width: 37.5%;
}

@media (max-width: 991.98px) {

  section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .image-col,
  section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .image-col,
  section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .image-col,
  section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .image-col,
  section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .image-col,
  section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .image-col {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .image-col .image,
section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .image-col .image,
section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .image-col .image,
section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .image-col .image,
section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .image-col .image,
section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .image-col .image {
  height: 188px;
  position: relative;
  top: 34px;
}

@media (max-width: 1479px) {

  section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .image-col .image {
    height: 142px;
  }
}

@media (max-width: 1199.98px) {

  section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .image-col .image {
    height: 114px;
  }
}

@media (max-width: 991.98px) {

  section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .image-col .image {
    height: 200px;
    top: -30px;
  }
}

@media (max-width: 767.98px) {

  section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .image-col .image {
    height: 150px;
  }
}

@media (max-width: 479px) {

  section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .image-col .image,
  section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .image-col .image {
    height: 125px;
    width: 125px;
  }
}

section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .content-col,
section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .content-col,
section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .content-col,
section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .content-col,
section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .content-col,
section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .content-col {
  padding-left: 15px;
  padding-right: 45px;
  -ms-flex: 0 0 62.5%;
  flex: 0 0 62.5%;
  max-width: 62.5%;
}

@media (max-width: 991.98px) {

  section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .content-col,
  section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .content-col,
  section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .content-col,
  section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .content-col,
  section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .content-col,
  section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .content-col {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    padding-left: 35px;
  }
}

section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .content-col:before,
section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .content-col:before,
section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .content-col:before,
section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .content-col:before,
section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .content-col:before,
section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .content-col:before {
  top: 0;
  height: -moz-calc(100% - 90px);
  height: -webkit-calc(100% - 90px);
  height: calc(100% - 90px);
}

section#posts .posts-row .post-col:nth-child(10) .blocks-row-blog .block.img .content-col .inner,
section#posts .posts-row .post-col:nth-child(11) .blocks-row-blog .block.img .content-col .inner,
section#posts .posts-row .post-col:nth-child(12) .blocks-row-blog .block.img .content-col .inner,
section#posts .posts-row .post-col:nth-child(13) .blocks-row-blog .block.img .content-col .inner,
section#posts .posts-row .post-col:nth-child(14) .blocks-row-blog .block.img .content-col .inner,
section#posts .posts-row .post-col:nth-child(15) .blocks-row-blog .block.img .content-col .inner {
  top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

section#posts .posts-row .post-col:nth-child(10):not(.img),
section#posts .posts-row .post-col:nth-child(11):not(.img),
section#posts .posts-row .post-col:nth-child(12):not(.img),
section#posts .posts-row .post-col:nth-child(13):not(.img),
section#posts .posts-row .post-col:nth-child(14):not(.img),
section#posts .posts-row .post-col:nth-child(15):not(.img) {
  position: relative;
}

section#posts .posts-row .post-col:nth-child(10):not(.img):before,
section#posts .posts-row .post-col:nth-child(11):not(.img):before,
section#posts .posts-row .post-col:nth-child(12):not(.img):before,
section#posts .posts-row .post-col:nth-child(13):not(.img):before,
section#posts .posts-row .post-col:nth-child(14):not(.img):before,
section#posts .posts-row .post-col:nth-child(15):not(.img):before {
  content: "";
  position: absolute;
  background: #F1F2F2;
  width: 100%;
  width: -moz-calc(100% - 30px);
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
  height: 100%;
  height: -moz-calc(100% - 90px);
  height: -webkit-calc(100% - 90px);
  height: calc(100% - 90px);
  top: 0;
  right: 15px;
}

section#posts .posts-row .post-col:nth-child(10):not(.img) .blocks-row-blog .block .content-col:before,
section#posts .posts-row .post-col:nth-child(11):not(.img) .blocks-row-blog .block .content-col:before,
section#posts .posts-row .post-col:nth-child(12):not(.img) .blocks-row-blog .block .content-col:before,
section#posts .posts-row .post-col:nth-child(13):not(.img) .blocks-row-blog .block .content-col:before,
section#posts .posts-row .post-col:nth-child(14):not(.img) .blocks-row-blog .block .content-col:before,
section#posts .posts-row .post-col:nth-child(15):not(.img) .blocks-row-blog .block .content-col:before {
  content: none;
}

section#posts .posts-row .post-col:nth-child(10):not(.img) .blocks-row-blog .block .content-col .inner,
section#posts .posts-row .post-col:nth-child(11):not(.img) .blocks-row-blog .block .content-col .inner,
section#posts .posts-row .post-col:nth-child(12):not(.img) .blocks-row-blog .block .content-col .inner,
section#posts .posts-row .post-col:nth-child(13):not(.img) .blocks-row-blog .block .content-col .inner,
section#posts .posts-row .post-col:nth-child(14):not(.img) .blocks-row-blog .block .content-col .inner,
section#posts .posts-row .post-col:nth-child(15):not(.img) .blocks-row-blog .block .content-col .inner {
  padding-bottom: 60px;
}

@media (min-width: 992px) {

  section#posts .posts-row .post-col:nth-child(10),
  section#posts .posts-row .post-col:nth-child(12),
  section#posts .posts-row .post-col:nth-child(14) {
    padding-right: 30px;
  }
}

@media (min-width: 992px) {

  section#posts .posts-row .post-col:nth-child(11),
  section#posts .posts-row .post-col:nth-child(13),
  section#posts .posts-row .post-col:nth-child(15) {
    padding-left: 30px;
  }

  section#posts .posts-row .post-col:nth-child(11):not(.img):before,
  section#posts .posts-row .post-col:nth-child(13):not(.img):before,
  section#posts .posts-row .post-col:nth-child(15):not(.img):before {
    width: -moz-calc(100% - 45px);
    width: -webkit-calc(100% - 45px);
    width: calc(100% - 45px);
  }
}

section#post {
  padding-bottom: 100px;
}

@media (max-width: 991.98px) {
  section#post {
    padding-bottom: 60px;
  }
}

@media (max-width: 767.98px) {
  section#post {
    padding-bottom: 30px;
  }
}

section#post .date {
  margin-bottom: 30px;
}

section#post .date-row {
  margin-bottom: 15px;
}

section#post .date-row p {
  font-size: 16px;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  section#post .date-row p {
    font-size: 14px;
  }
}

section#post .date-row p svg {
  position: relative;
  top: -2px;
  width: 20px;
  margin-right: 10px;
}

section#post .date-row+.content-row {
  margin-top: 30px;
}

section#post .location-row {
  margin-bottom: 30px;
}

section#post .location-row svg {
  position: relative;
  top: -2px;
  width: 20px;
  margin-right: 10px;
}

section#post .content-row p:first-child {
  font-size: 22px;
}

@media (max-width: 767.98px) {
  section#post .content-row p:first-child {
    font-size: 20px;
  }
}

section#post .content-row p:first-child a {
  font-size: 22px;
}

@media (max-width: 767.98px) {
  section#post .content-row p:first-child a {
    font-size: 20px;
  }
}

section#post .content-row p:first-child a svg {
  bottom: 13px;
}

section#post .content-row img {
  height: auto;
  width: auto;
}

section#post+.events-carousel {
  padding-top: 0;
}

section#no-result {
  padding-top: 200px;
  padding-bottom: 200px;
}

section#no-result h2 {
  text-align: center;
  color: #005587;
  font-size: 52px;
}

@media (max-width: 991.98px) {
  section#no-result h2 {
    font-size: 48px;
  }
}

@media (max-width: 767.98px) {
  section#no-result h2 {
    font-size: 36px;
  }
}

@media (max-width: 479px) {
  section#no-result h2 {
    font-size: 32px;
  }
}

section#search {
  padding-top: 60px;
  padding-bottom: 100px;
}

section#search .title-row {
  margin-bottom: 30px;
}

section#search .title-row h2,
section#search .title-row i {
  font-family: montserrat, sans-serif;
  font-weight: 600;
  text-transform: none;
  font-size: 22px;
  letter-spacing: unset;
}

@media (max-width: 767.98px) {

  section#search .title-row h2,
  section#search .title-row i {
    font-size: 20px;
  }
}

section#search .title-row i {
  font-family: montserrat, sans-serif;
  font-weight: 400;
}

section#search .results-row .col {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

section#search .results-row .col.no-results {
  margin-bottom: 100px;
}

section#search .results-row .col:not(:last-child) {
  margin-bottom: 60px;
}

section#search .results-row .col:not(:last-child) article {
  position: relative;
  display: inline-block;
  width: 100%;
}

section#search .results-row .col:not(:last-child) article:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 1px;
  bottom: -29px;
  left: 0;
}

section#search .results-row .col h3 {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  section#search .results-row .col h3 {
    font-size: 22.5px;
  }
}

section#search .results-row .col .date {
  font-size: 16px;
  margin-bottom: 30px;
  text-transform: capitalize;
}

@media (max-width: 767.98px) {
  section#search .results-row .col .date {
    font-size: 14px;
  }
}

section#search .results-row .col .preview {
  font-size: 16px;
}

@media (max-width: 767.98px) {
  section#search .results-row .col .preview {
    font-size: 14px;
  }
}

section#search .results-row .col .link-arrow-wrap {
  margin-top: 30px;
}

section#modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
  max-width: 100%;
  z-index: -1;
  opacity: 0;
  background: rgba(0, 0, 0, 0.75);
  -webkit-transition: opacity 350ms ease;
  -moz-transition: opacity 350ms ease;
  -ms-transition: opacity 350ms ease;
  -o-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
}

section#modal .container,
section#modal .row {
  height: 100%;
}

@media (max-width: 991.98px) {
  section#modal {
    margin-bottom: 60px;
  }
}

@media (max-width: 767.98px) {
  section#modal .container>.row {
    padding-left: 15px;
    padding-right: 15px;
  }
}

section#modal .row {
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

section#modal .inside {
  display: inline-block;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

section#modal .main-col {
  -ms-flex: 0 0 91.6666666667%;
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 576px) {
  section#modal .main-col {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 992px) {
  section#modal .main-col {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 1480px) {
  section#modal .main-col {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .followSocial{
    margin-top: 170px;
  }
}

section#modal .main-col .col-inside {
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

section#modal .main-col .col-inside #mc_embed_signup h2 {
  color: #005587;
  font-size: 32px;
}

@media (max-width: 991.98px) {
  section#modal .main-col .col-inside #mc_embed_signup h2 {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  section#modal .main-col .col-inside #mc_embed_signup h2 {
    font-size: 28px;
  }
}

@media (max-width: 479px) {
  section#modal .main-col .col-inside #mc_embed_signup h2 {
    font-size: 26px;
  }
}

section#modal .main-col .col-inside .form-wrap {
  background: #ffffff;
  padding: 30px;
}

section#modal .main-col .col-inside .form-wrap:before {
  display: none;
}

section#modal .close-btn {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 72px;
  right: 28px;
  z-index: 100;
}

section#modal .close-btn span,
section#modal .close-btn span:after {
  display: block;
  background: #005587;
  width: 100%;
  height: 3px;
}

section#modal .close-btn span {
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

section#modal .close-btn span:after {
  content: "";
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  -o-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

section#modal .close-div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

section#modal.active {
  opacity: 1;
  -webkit-transition: opacity 350ms ease;
  -moz-transition: opacity 350ms ease;
  -ms-transition: opacity 350ms ease;
  -o-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
}

section#modal.active .main-col {
  top: 0;
  opacity: 1;
}

/*--------------------------------------------------------------
THEME / PAGES
--------------------------------------------------------------*/
body.page-template-events .outer-row {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

body.page-template-events .outer-row .outer-col {
  -ms-flex: 0 0 83.3333333333%;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

@media (max-width: 991.98px) {
  body.page-template-events .breadcrumbs-row #breadcrumb {
    display: none;
  }
}

body.page-template-events section.featured-events .blocks-row {
  padding-top: 60px;
  padding-bottom: 100px;
}

@media (max-width: 1479px) {
  body.page-template-events section.featured-events .blocks-row {
    padding-top: 30px;
  }
}

body.page-template-events section.featured-events .grid-blocks-row {
  padding-bottom: 100px;
}

@media (max-width: 991.98px) {
  body.page-template-events section.featured-events .grid-blocks-row {
    padding-bottom: 60px;
  }
}

@media (max-width: 479px) {
  body.page-template-events section.featured-events .grid-blocks-row {
    padding-bottom: 45px;
  }
}

body.page-template-events section#posts {
  background: #F1F2F2;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 991.98px) {
  body.page-template-events section#posts {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

body.page-template-events section#posts .title-row {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 1199.98px) {
  body.page-template-events section#posts .title-row {
    text-align: left;
  }
}

body.page-template-events section#posts .posts-row .col.posts {
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

@media (min-width: 1480px) {
  body.page-template-events section#posts .posts-row .col.posts {
    padding-right: 40px;
  }
}

@media (max-width: 1199.98px) {
  body.page-template-events section#posts .posts-row .col.posts {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }

  body.page-template-events section#posts .posts-row .col.posts .blocks-row {
    margin-left: 0;
    margin-right: 0;
  }

  body.page-template-events section#posts .posts-row .col.posts .blocks-row .col {
    padding-left: 0;
    padding-right: 0;
  }

  body.page-template-events section#posts .posts-row .col.posts .blocks-row .col .inner {
    padding-right: 150px;
  }
}

@media (max-width: 1199.98px) and (max-width: 479px) {
  body.page-template-events section#posts .posts-row .col.posts .blocks-row .col .inner {
    padding-right: 15px;
    padding-bottom: 84px;
  }
}

body.page-template-events section#posts .posts-row .col.posts .blocks-row .small-block .inner {
  margin-bottom: 80px;
}

body.page-template-events section#posts .posts-row .col.calendar {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

@media (max-width: 1199.98px) {
  body.page-template-events section#posts .posts-row .col.calendar {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
    margin-bottom: 60px;
  }

  body.page-template-events section#posts .posts-row .col.calendar div.em-calendar-wrapper {
    max-width: 320px;
  }
}

@media (min-width: 1480px) {
  body.page-template-events section#posts .posts-row .col.calendar {
    padding-left: 40px;
  }
}

@media (max-width: 1689px) {

  body.single-post nav .site-nav#desktop-nav .logo,
  body.single-event nav .site-nav#desktop-nav .logo,
  body.single-location nav .site-nav#desktop-nav .logo,
  body.page-template-default nav .site-nav#desktop-nav .logo,
  body.search nav .site-nav#desktop-nav .logo {
    opacity: 1 !important;
  }
}

@media (max-width: 1689px) {

  body.single-post section.intro-section .logo,
  body.single-event section.intro-section .logo,
  body.single-location section.intro-section .logo,
  body.page-template-default section.intro-section .logo,
  body.search section.intro-section .logo {
    display: none;
  }
}

body.single-post section.intro-section .small-content .outer-row .outer-col,
body.single-event section.intro-section .small-content .outer-row .outer-col,
body.single-location section.intro-section .small-content .outer-row .outer-col,
body.page-template-default section.intro-section .small-content .outer-row .outer-col,
body.search section.intro-section .small-content .outer-row .outer-col {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

@media (max-width: 991.98px) {

  body.single-post section.intro-section .small-content .outer-row .outer-col,
  body.single-event section.intro-section .small-content .outer-row .outer-col,
  body.single-location section.intro-section .small-content .outer-row .outer-col,
  body.page-template-default section.intro-section .small-content .outer-row .outer-col,
  body.search section.intro-section .small-content .outer-row .outer-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

body.single-post .outer-row,
body.single-event .outer-row,
body.single-location .outer-row,
body.page-template-default .outer-row,
body.search .outer-row {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

body.single-post .outer-row .outer-col,
body.single-event .outer-row .outer-col,
body.single-location .outer-row .outer-col,
body.page-template-default .outer-row .outer-col,
body.search .outer-row .outer-col {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

@media (max-width: 991.98px) {

  body.single-post .outer-row .outer-col,
  body.single-event .outer-row .outer-col,
  body.single-location .outer-row .outer-col,
  body.page-template-default .outer-row .outer-col,
  body.search .outer-row .outer-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  body.single-post section.post-content .breadcrumbs-row #breadcrumb {
    display: none;
  }
}

@media (min-width: 992px) {
  body.single-partner .outer-row {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  body.single-partner .outer-row .outer-col {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

body.single-partner section.image-carousel {
  padding-top: 0;
}

@media (max-width: 991.98px) {
  body.single-partner section.image-carousel {
    padding-top: 30px;
  }
}

body.single-partner section.map .inner {
  height: 700px;
}

@media (max-width: 1199.98px) {
  body.single-partner section.map .inner {
    margin-bottom: 30px;
  }
}

@media (max-width: 991.98px) {
  body.single-partner section.map .inner {
    height: 500px;
  }
}

@media (max-width: 479px) {
  body.single-partner section.map .inner {
    height: 420px;
  }
}

@media (max-width: 349px) {
  body.single-partner section.map .inner {
    height: 360px;
  }
}

body.page-template-default #post.default .featured-image {
  margin-bottom: 50px;
}

body.page-id-9181 section.intro-section .corner-content .col {
  -ms-flex: 0 0 41.6666666667%;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

@media (max-width: 1479px) {
  body.page-id-9181 section.intro-section .corner-content .col {
    -ms-flex: 0 0 54.1666666667%;
    flex: 0 0 54.1666666667%;
    max-width: 54.1666666667%;
  }
}

@media (max-width: 991.98px) {
  body.page-id-9181 section.intro-section .corner-content .col {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (max-width: 767.98px) {
  body.page-id-9181 section.intro-section .corner-content .col {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (max-width: 479px) {
  body.page-id-9181 section.intro-section .corner-content .col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
}

/*-------------------------------
>>> JS PLUGIN SCSS:
-------------------------------*/
/*--------------------------------------------------------------
JS PLUGIN / GLIDE
--------------------------------------------------------------*/
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide--rtl {
  direction: rtl;
}

/*--------------------------------------------------------------
JS PLUGIN / GLIDE / GLIDE THEME
--------------------------------------------------------------*/
.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: white;
}

.glide__arrow--left {
  left: 2em;
}

.glide__arrow--right {
  right: 2em;
}

.glide__arrow--disabled {
  opacity: 0.33;
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}

.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet:hover,
.glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}

.glide__bullet--active {
  background-color: white;
}

.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

/*--------------------------------------------------------------
JS PLUGIN / SLICK
--------------------------------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*--------------------------------------------------------------
JS PLUGIN / SLICK / SLICK THEME
--------------------------------------------------------------*/
/* Slider */
/* Icons 
@if $slick-font-family == "slick" {
    @font-face {
        font-family: "slick";
        src: slick-font-url("slick.eot");
        src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
        font-weight: normal;
        font-style: normal;
    }
}*/
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*--------------------------------------------------------------
JS PLUGIN / SLICK / CUSTOM STYLES
--------------------------------------------------------------*/
.slick:not(.vertical) .slick-track,
.slick:not(.vertical) .slick-list,
.slick:not(.vertical) .slick-slide {
  height: 100%;
}

.slick .vertical-dots {
  right: 10px;
  list-style: none;
  display: block;
  position: absolute;
  top: 50%;
  text-align: right;
  margin-top: -70px;
}

.slick .vertical-dots li {
  position: relative;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.slick .vertical-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 14px;
  height: 14px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  margin: 25px 0;
}

.slick .vertical-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  content: "•";
  text-align: center;
  background: rgba(255, 255, 255, 0);
  border: 1px solid #ffffff;
  border-radius: 50%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: background 250ms ease, border 250ms ease;
  -moz-transition: background 250ms ease, border 250ms ease;
  -ms-transition: background 250ms ease, border 250ms ease;
  -o-transition: background 250ms ease, border 250ms ease;
  transition: background 250ms ease, border 250ms ease;
}

.slick .vertical-dots li button:hover,
.slick .vertical-dots li button:focus {
  outline: none;
}

.slick .vertical-dots li button:hover:before,
.slick .vertical-dots li button:focus:before {
  background: rgba(255, 255, 255, 0.5);
}

.slick .vertical-dots li.slick-active button:before {
  border: 1px solid #009739;
  background: #009739;
}

.slick.slick-slider.slick-dotted {
  margin-bottom: 0;
}

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

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

.slick .youtube-embed-container .draggable {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}

.slick .slick-prev,
.slick .slick-next {
  opacity: 1;
  color: #ffffff;
  -webkit-transition: color 250ms ease;
  -moz-transition: color 250ms ease;
  -ms-transition: color 250ms ease;
  -o-transition: color 250ms ease;
  transition: color 250ms ease;
}

.slick .slick-prev svg,
.slick .slick-next svg {
  height: 30px;
}

.slick .slick-prev:before,
.slick .slick-next:before {
  content: none;
}

.slick .slick-prev:hover,
.slick .slick-next:hover {
  color: rgba(255, 255, 255, 0.7);
}

.slick-dots {
  bottom: 0;
}

.slick-dots li button {
  width: 15px;
  height: 15px;
}

.slick-dots li button:before {
  content: "";
  width: 15px;
  height: 15px;
  left: 50%;
  margin-left: -6px;
  top: 50%;
  margin-top: -6px;
  border-radius: 50%;
  border: 1px solid #036fd0;
  opacity: 1;
  -webkit-transition: background 200ms ease, border 200ms ease;
  -moz-transition: background 200ms ease, border 200ms ease;
  -ms-transition: background 200ms ease, border 200ms ease;
  -o-transition: background 200ms ease, border 200ms ease;
  transition: background 200ms ease, border 200ms ease;
}

.slick-dots li button:focus:before {
  background: #036fd0;
}

.slick-dots li.slick-active button:before {
  background: #005587;
  border: 1px solid #005587;
  opacity: 1;
}

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