nav ul {
  list-style: none; }
  nav ul li {
    margin-right: 10px;
    padding: 10px; }
    nav ul li a, nav ul li span {
      text-decoration: none;
      color: #25222C;
      text-transform: uppercase;
      font-weight: 500;
      font-size: .9rem;
      position: relative;
      cursor: pointer; }
    nav ul li a {
      transition: all 0.3s ease;
      position: relative; }
      nav ul li a:hover {
        color: inherit; }
      nav ul li a:after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: -1px;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        opacity: 0;
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        background-image: linear-gradient(135deg, #2293B6, #75BCD1, #3EA1BF); }
    nav ul li.parent {
      position: relative; }
      nav ul li.parent .children {
        display: none;
        position: absolute;
        background-color: #2293B6;
        border-bottom-left-radius: .375rem;
        border-bottom-right-radius: .375rem;
        border-top-right-radius: .375rem;
        margin: 0;
        padding: 5px 0;
        width: calc(100% + 40px);
        margin-left: -10px;
        box-sizing: border-box;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; }
        nav ul li.parent .children li {
          text-align: left;
          padding: 5px 10px; }
          nav ul li.parent .children li a, nav ul li.parent .children li a:hover {
            color: #E3F2F6 !important; }
            nav ul li.parent .children li a:after, nav ul li.parent .children li a:hover:after {
              content: none; }
      nav ul li.parent:hover {
        background-color: #2293B6;
        border-top-left-radius: .375rem;
        border-top-right-radius: .375rem;
        color: #E3F2F6 !important;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; }
        nav ul li.parent:hover span {
          color: #E3F2F6 !important; }
        nav ul li.parent:hover .children {
          display: block; }

nav .btn {
  color: #fff;
  background-color: #2293B6;
  -webkit-box-shadow: 5px 20px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 20px 30px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100; }

nav.mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  background-color: #2293B6;
  z-index: 105;
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  nav.mobile .container {
    display: flex;
    flex-direction: column;
    height: 100%; }
  nav.mobile button {
    color: #fff;
    align-self: flex-start; }
  nav.mobile .heading {
    display: flex;
    padding-top: 10px;
    margin-bottom: 20px; }
  nav.mobile ul {
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
    visibility: hidden; }
    nav.mobile ul li {
      padding-bottom: 20px;
      padding-right: 0; }
      nav.mobile ul li a, nav.mobile ul li a:visited, nav.mobile ul li a:hover, nav.mobile ul li a:active, nav.mobile ul li a:focus, nav.mobile ul li span, nav.mobile ul li svg {
        font-size: 1.25rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 1px;
        cursor: pointer; }
        nav.mobile ul li a:after, nav.mobile ul li a:visited:after, nav.mobile ul li a:hover:after, nav.mobile ul li a:active:after, nav.mobile ul li a:focus:after, nav.mobile ul li span:after, nav.mobile ul li svg:after {
          opacity: 0 !important; }
      nav.mobile ul li .mobile-children {
        display: none; }
        nav.mobile ul li .mobile-children.show {
          display: block;
          margin-top: 20px; }
  nav.mobile .social-links {
    padding-top: 60px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center; }
    nav.mobile .social-links a, nav.mobile .social-links a:visited, nav.mobile .social-links a:hover, nav.mobile .social-links a:active, nav.mobile .social-links a:focus {
      color: #fff;
      margin: 0 10px; }
      nav.mobile .social-links a svg, nav.mobile .social-links a:visited svg, nav.mobile .social-links a:hover svg, nav.mobile .social-links a:active svg, nav.mobile .social-links a:focus svg {
        font-size: 2rem;
        cursor: pointer; }
  nav.mobile .menu-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 155px);
    padding: 0 20px; }
  nav.mobile.nav-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto; }
    nav.mobile.nav-open ul {
      visibility: visible; }
  @media (min-width: 321px) {
    nav.mobile ul li a, nav.mobile ul li a:visited, nav.mobile ul li a:hover, nav.mobile ul li a:active, nav.mobile ul li a:focus, nav.mobile ul li span, nav.mobile ul li svg {
      font-size: 1.75rem; } }
  @media (min-width: 600px) {
    nav.mobile ul li a, nav.mobile ul li a:visited, nav.mobile ul li a:hover, nav.mobile ul li a:active, nav.mobile ul li a:focus, nav.mobile ul li span, nav.mobile ul li svg {
      font-size: 3rem; } }
  @media (min-width: 769px) {
    nav.mobile {
      opacity: 0; } }
  nav.mobile .logo {
    margin-left: calc(50% - 50px); }
    nav.mobile .logo svg {
      width: 100px;
      height: 100px; }

nav button {
  position: relative;
  border: 0;
  outline: 0;
  margin: 0 0 0 auto;
  padding: 0;
  color: #2293B6;
  background: none;
  margin-top: -10px; }
  nav button svg {
    font-size: 2rem !important;
    margin: 0 20px; }

nav.main-nav {
  padding-top: 30px;
  text-align: right;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  nav.main-nav .logo-short {
    text-align: left;
    padding-left: 20px; }
    nav.main-nav .logo-short svg {
      width: 40px; }
  nav.main-nav .contact-btn {
    display: none; }
  nav.main-nav ul {
    display: none; }
  @media (min-width: 769px) {
    nav.main-nav {
      padding-top: 20px;
      text-align: right;
      padding-right: 50px; }
      nav.main-nav .logo-short {
        padding-left: 30px; }
      nav.main-nav button {
        display: none; }
      nav.main-nav .contact-btn {
        display: inline-block; }
      nav.main-nav ul {
        display: inline-flex; } }

nav li a:hover:after, nav li.active a:after {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.breadcrumb {
  font-size: 1rem;
  white-space: nowrap;
  max-width: 810px;
  margin: 0 auto; }
  .breadcrumb ul {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0; }
    .breadcrumb ul li {
      align-items: center;
      display: flex; }
      .breadcrumb ul li a, .breadcrumb ul li a:visited, .breadcrumb ul li a:focus, .breadcrumb ul li a:active {
        align-items: center;
        color: #3273dc;
        display: flex;
        justify-content: center; }
      .breadcrumb ul li a, .breadcrumb ul li a:visited, .breadcrumb ul li a:focus, .breadcrumb ul li a:active, .breadcrumb ul li span {
        padding-right: .75em; }
      .breadcrumb ul li span {
        padding-left: .75em; }
    .breadcrumb ul li + li::before {
      content: "\0227B";
      color: #b5b5b5; }

.gallery {
  display: flex;
  flex-direction: column; }
  .gallery-text p {
    margin-bottom: 50px; }
  .gallery .thumbs {
    display: flex;
    flex-direction: row;
    width: 100%; }
    .gallery .thumbs .image {
      height: 150px;
      width: 100%;
      background-size: cover;
      background-position: center;
      box-shadow: -10px 10px 19px 5px rgba(0, 95, 177, 0.25);
      opacity: .25;
      z-index: 9; }
      .gallery .thumbs .image:first-child {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px; }
      .gallery .thumbs .image:last-child {
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px; }
      .gallery .thumbs .image.active {
        opacity: 1; }
  .gallery .main {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    margin-top: 30px; }
    .gallery .main .image {
      width: 0%;
      height: 0%;
      background-position: center;
      background-size: cover;
      box-shadow: 10px 10px 50px 5px rgba(0, 95, 177, 0.5);
      border-radius: 8px;
      opacity: 0;
      transition: opacity 200ms ease-in-out; }
      .gallery .main .image img {
        display: none; }
      .gallery .main .image.active {
        width: 100%;
        height: 300px;
        opacity: 1; }
        .gallery .main .image.active img {
          display: block; }
    .gallery .main .caption {
      margin-bottom: 0;
      font-size: 1rem;
      font-weight: 200; }
  @media (min-width: 769px) {
    .gallery {
      flex-direction: row; }
      .gallery .thumbs {
        flex-direction: column;
        width: 20%;
        margin-right: 30px; }
        .gallery .thumbs .image:first-child {
          border-top-left-radius: 8px;
          border-top-right-radius: 8px; }
        .gallery .thumbs .image:last-child {
          border-bottom-left-radius: 8px;
          border-bottom-right-radius: 8px; }
      .gallery .main {
        width: 80%;
        min-height: auto;
        margin-top: 0; }
        .gallery .main .image.active {
          height: 100%; } }
  @media (min-width: 500px) {
    .gallery .main .image.active {
      height: 350px; } }
  @media (min-width: 600px) {
    .gallery .main .image.active {
      height: 450px; } }

.video-comp {
  padding-top: 56.25%;
  position: relative;
  border-radius: 8px;
  box-shadow: -10px 10px 50px 5px rgba(0, 95, 177, 0.5); }
  .video-comp-text p {
    margin-bottom: 50px; }
  .video-comp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px; }

.carousel {
  display: flex;
  flex-direction: column; }
  .carousel-text p {
    margin-bottom: 50px; }
  .carousel .caption {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 200; }
  .carousel .image-container {
    padding-top: 56.25%;
    position: relative; }
    .carousel .image-container .image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: -10px 10px 50px 5px rgba(0, 95, 177, 0.5);
      border-radius: 8px;
      display: none;
      background-size: cover;
      background-position: center; }
      .carousel .image-container .image.active {
        display: block; }
    .carousel .image-container .dots {
      display: flex;
      height: 40px;
      width: 100%;
      position: absolute;
      bottom: 0;
      justify-content: center; }
      .carousel .image-container .dots .dot {
        background-color: #fff;
        width: 20px;
        height: 20px;
        border-radius: 100%;
        margin: 0 5px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); }
        .carousel .image-container .dots .dot.active {
          background-color: #005FB1; }

.image-and-text.right-aligned .image-and-text--text .bg-text {
  top: -30px;
  right: -30px;
  left: unset; }

.image-and-text.left-aligned .image-and-text--text .bg-text {
  top: -30px;
  right: unset;
  left: -12%; }

.services-intro-text p {
  margin-bottom: 50px; }

.services-icons {
  display: flex;
  justify-content: center;
  align-items: center; }
  .services-icons .services-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
    text-align: center;
    width: 33%; }
    .services-icons .services-item i {
      color: #005FB1;
      font-size: 6rem; }

.alt {
  background-color: #dfebf5;
  border-top-right-radius: 8% 60%;
  border-top-left-radius: 8% 60%;
  border-bottom-left-radius: 70% 20%;
  border-bottom-right-radius: 20% 25%;
  padding: 40px;
  font-weight: 400; }

h2 {
  font-size: 3rem;
  font-weight: 500;
  padding-top: 10px;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.25); }

section h3 {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 900;
  text-shadow: none; }

section h2 {
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: none;
  padding-bottom: 20px; }

section p {
  line-height: 32px;
  font-size: 1.2rem;
  font-weight: 200;
  text-shadow: none; }

body {
  color: #25222C; }

.text {
  color: #25222C; }
  .text ul li {
    font-size: 1.2rem;
    line-height: 32px;
    font-weight: 200; }
  .text a, .text a:visited, .text a:focus, .text a:active {
    color: #2293B6;
    text-decoration: none; }
  .text p {
    line-height: 32px;
    font-size: 1.2rem;
    font-weight: 200;
    text-shadow: none; }
    .text p.alt {
      background-color: #dfebf5;
      border-top-right-radius: 8% 60%;
      border-top-left-radius: 8% 60%;
      border-bottom-left-radius: 70% 20%;
      border-bottom-right-radius: 20% 25%;
      padding: 40px;
      font-weight: 400; }
  .text .text--with-icon {
    display: flex;
    align-items: center; }
    .text .text--with-icon svg {
      width: 35px; }
    .text .text--with-icon h2 {
      margin-left: 8px;
      padding-bottom: 12px; }
  .text .bg-text {
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 145px;
    letter-spacing: .015em;
    white-space: nowrap;
    color: #E3F2F6;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    mix-blend-mode: multiply;
    position: absolute;
    top: -65px;
    left: -12%;
    opacity: 1;
    -webkit-transform: translateX(-3%);
    -ms-transform: translateX(-3%);
    transform: translateX(-3%); }

.list-flow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  text-align: center; }
  .list-flow .number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    font-weight: 900;
    color: #2293B6;
    padding: 0 50px; }
    .list-flow .number .container {
      display: inline-flex;
      width: 110px;
      height: 110px;
      border: 8px solid;
      border-radius: 100%;
      align-items: center;
      justify-content: center; }
      .list-flow .number .container p {
        line-height: 1;
        font-size: 6.5rem;
        font-weight: 900;
        margin: 0;
        margin-top: -18px; }
  .list-flow .content {
    margin-top: 20px; }
    .list-flow .content .title {
      text-transform: uppercase;
      font-weight: 700;
      font-size: 1rem; }
    .list-flow .content p {
      margin: 0; }
    .list-flow .content a, .list-flow .content a:visited, .list-flow .content a:focus, .list-flow .content a:active {
      color: #2293B6;
      text-decoration: none; }
  .list-flow.first {
    margin-top: 100px; }
  @media (min-width: 600px) {
    .list-flow {
      flex-direction: row;
      text-align: left;
      margin-bottom: 30px; }
      .list-flow .content {
        margin-top: 0; } }

.hero, .staff-hero {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 40px 80px; }
  .hero img, .staff-hero img {
    width: 100%; }
  .hero span.highlight, .staff-hero span.highlight {
    color: #2293B6; }
  .hero h3, .staff-hero h3 {
    font-size: 2rem;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    margin-top: -1rem; }
  .hero h1, .staff-hero h1 {
    color: #25222C;
    font-size: 5rem;
    font-weight: 700;
    line-height: 4.75rem;
    margin-bottom: 2rem; }
  .hero .more-site, .staff-hero .more-site {
    font-size: 5.5rem;
    margin-top: 0px;
    color: #2293B6;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.25); }
  .hero.has-title .more-site, .staff-hero.has-title .more-site {
    color: #25222C; }
  .hero .svgs, .staff-hero .svgs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .hero .svgs .lottery-logo, .staff-hero .svgs .lottery-logo {
      height: 70px;
      width: 80%; }
  @media (min-width: 321px) {
    .hero h3, .staff-hero h3 {
      font-size: 1.65rem; }
    .hero img, .staff-hero img {
      width: 80%; }
    .hero .lottery-logo, .staff-hero .lottery-logo {
      margin-bottom: 30px; } }
  @media (min-width: 769px) {
    .hero, .staff-hero {
      padding-top: 40px;
      padding-bottom: 80px; }
      .hero img, .staff-hero img {
        width: 450px; }
      .hero h3, .staff-hero h3 {
        font-size: 2rem;
        font-weight: 500;
        padding-top: 10px;
        -webkit-font-smoothing: antialiased;
        text-shadow: 0 0 3px rgba(0, 0, 0, 0.25); } }

.bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -9999; }
  .bg img {
    position: absolute;
    top: -250px;
    left: 50%;
    width: 2345px;
    height: auto;
    -webkit-transform: translateX(-42%);
    -ms-transform: translateX(-42%);
    transform: translateX(-42%);
    top: -350px;
    left: 50%;
    width: 2345px;
    height: auto;
    -webkit-transform: translateX(-42%);
    -ms-transform: translateX(-42%);
    transform: translateX(-42%); }
  .bg svg {
    transform: rotate(180deg);
    margin-top: -1px; }
  .bg div {
    height: 550px;
    background-color: #E3F2F6; }

.staff-hero {
  display: flex;
  flex-direction: column;
  text-align: center; }
  @media (min-width: 769px) {
    .staff-hero {
      justify-content: center;
      align-items: center; } }
  .staff-hero .profile--image {
    width: 300px;
    height: auto; }
  .staff-hero h2 {
    margin: 0; }
  .staff-hero p {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 20px; }
  .staff-hero .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 40px; }
    .staff-hero .logos .logo {
      width: 250px; }

.quote {
  position: relative;
  padding-bottom: 20px;
  text-align: center;
  width: 80%;
  margin: 0 auto; }
  .quote .credit {
    font-size: .9rem;
    font-weight: 500;
    padding-top: 5px;
    padding-bottom: 20px; }
  .quote:before {
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 10rem;
    content: '\201C';
    letter-spacing: .025em;
    white-space: nowrap;
    color: #2293B6;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    mix-blend-mode: multiply;
    position: absolute;
    top: -50px;
    left: -60px;
    opacity: .04;
    -webkit-transform: translateX(-3%);
    -ms-transform: translateX(-3%);
    transform: translateX(-3%); }
  .quote:after {
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 10rem;
    content: '\201D';
    letter-spacing: .025em;
    white-space: nowrap;
    color: #2293B6;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: -10px;
    right: -60px;
    opacity: .04;
    -webkit-transform: translateX(-3%);
    -ms-transform: translateX(-3%);
    transform: translateX(-3%); }
  .quote blockquote {
    margin: 0;
    line-height: 32px;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: none;
    font-style: italic;
    position: relative;
    color: #2293B6; }
    .quote blockquote:before {
      font-weight: 900;
      content: '\201C';
      font-size: 3em;
      display: block;
      height: .55em;
      position: absolute;
      top: 0;
      left: -28px;
      font-style: normal; }
    .quote blockquote:after {
      font-weight: 900;
      content: '\201D';
      font-size: 3em;
      display: block;
      height: .55em;
      position: absolute;
      bottom: -10px;
      right: -23px;
      font-style: normal; }
  @media (min-width: 769px) {
    .quote {
      text-align: left;
      width: 100%; }
      .quote:before {
        left: -90px; }
      .quote:after {
        right: -90px; } }

.btn, input[type=submit] {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .225em;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0 solid transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 14px 28px;
  font-size: .875rem;
  line-height: 32px;
  border-radius: 100px;
  text-decoration: none;
  background-image: linear-gradient(135deg, #2293B6, #3EA1BF); }
  .btn:hover, input[type=submit]:hover {
    -webkit-transform: scale(1.075);
    -ms-transform: scale(1.075);
    transform: scale(1.075); }

.single-image {
  text-align: center; }
  .single-image.rotate-right {
    transform: rotate(4deg); }
  .single-image.rotate-left {
    transform: rotate(-4deg); }
  .single-image img {
    width: 80%;
    border-radius: 8px;
    box-shadow: -10px 10px 50px 5px rgba(0, 95, 177, 0.5); }
  @media (min-width: 769px) {
    .single-image {
      text-align: left; }
      .single-image img {
        width: 100%; } }

.pdList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .pdList .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
    text-align: center;
    width: 33%; }
    .pdList .item a, .pdList .item a:visited, .pdList .item a:focus, .pdList .item a:active {
      color: #25222C;
      text-decoration: none; }
  @media (min-width: 600px) {
    .pdList {
      flex-direction: row; } }

.profile {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .profile--image {
    width: 80%;
    margin-right: 30px;
    height: 100%;
    min-height: 250px;
    border-top-left-radius: 88% 85%;
    border-top-right-radius: 72% 96%;
    border-bottom-left-radius: 62% 80%;
    border-bottom-right-radius: 95% 76%;
    transform: rotate(-2deg);
    background-size: cover;
    background-position: center; }
  .profile--text {
    flex: 1;
    text-align: center;
    margin-top: 30px; }
    .profile--text .bg-text {
      top: 245px;
      left: -10%;
      font-size: 8rem; }
    .profile--text p {
      font-weight: 400; }
  @media (min-width: 600px) {
    .profile {
      flex-direction: row; }
      .profile--image {
        width: 33%; }
      .profile--text {
        text-align: left;
        margin-top: 0; }
        .profile--text .bg-text {
          font-size: 8rem;
          top: -30px;
          left: 30%; } }

.card {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 10px 50px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 100%;
  justify-content: stretch; }
  .card--image {
    background-position: center;
    background-size: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    padding: 30px 30px;
    background-color: #2293B6;
    flex-direction: column;
    position: relative;
    min-height: 150px; }
    .card--image:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(135deg, #2293B6, #3EA1BF, #D175BC, #F6E3F2);
      opacity: 0.65;
      content: '';
      border-top-left-radius: 8px;
      border-top-right-radius: 8px; }
    .card--image h2 {
      z-index: 9;
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center; }
    .card--image-category {
      text-align: left;
      align-self: flex-start;
      margin-left: -30px;
      margin-bottom: -15px;
      z-index: 9; }
      .card--image-category span {
        padding: 8px 20px;
        background-color: #25222C;
        color: #fff;
        font-weight: 400;
        text-shadow: none;
        font-size: 0.8rem;
        text-transform: uppercase;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.25);
        z-index: 9; }
        .card--image-category span svg {
          padding-right: 5px; }
  .card--summary {
    padding: 20px; }
    .card--summary p {
      font-size: 1rem;
      line-height: 28px; }
  .card--footer {
    padding: 0 10px 40px;
    flex: 1;
    display: flex;
    align-items: flex-end; }
    .card--footer .btn {
      color: #fff;
      -webkit-box-shadow: 5px 10px 20px 0 rgba(0, 0, 0, 0.15);
      box-shadow: 5px 10px 20px 0 rgba(0, 0, 0, 0.15);
      background-image: linear-gradient(135deg, #2293B6, #75BCD1, #3EA1BF);
      border-radius: 80px;
      width: calc(100% - 60px); }
    .card--footer a, .card--footer a:hover, .card--footer a:active, .card--footer a:visited {
      color: #fff;
      text-decoration: none;
      max-width: 200px;
      margin: 0 auto; }

.content-wrapper--cards {
  max-width: 1200px !important;
  margin-top: 10px !important; }
  .content-wrapper--cards .column {
    padding: 0 0px !important; }
    @media (min-width: 600px) {
      .content-wrapper--cards .column {
        padding: 0 15px !important; } }

.article-list {
  display: flex;
  flex-direction: column; }
  .article-list .article-row {
    display: flex;
    flex-direction: column; }
    .article-list .article-row .card {
      margin: 30px 0 0 0;
      width: 100%; }
      .article-list .article-row .card--image:before {
        background-image: linear-gradient(135deg, #000, #222, #333, #ccc); }
      .article-list .article-row .card--image.no-image:before {
        background-image: none; }
    @media (min-width: 768px) {
      .article-list .article-row {
        flex-direction: row;
        flex-wrap: wrap; }
        .article-list .article-row .card {
          width: calc(33% - 30px);
          margin: 30px 15px 0; } }

.footer-content {
  background-color: #2293B6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  margin-top: -10px; }
  .footer-content img, .footer-content svg.logo {
    width: 100px;
    height: 100px; }
  .footer-content .social-links {
    padding-top: 60px;
    padding-bottom: 40px;
    display: flex; }
    .footer-content .social-links a, .footer-content .social-links a:visited, .footer-content .social-links a:hover, .footer-content .social-links a:active, .footer-content .social-links a:focus {
      color: #fff;
      margin: 0 10px; }
      .footer-content .social-links a svg, .footer-content .social-links a:visited svg, .footer-content .social-links a:hover svg, .footer-content .social-links a:active svg, .footer-content .social-links a:focus svg {
        font-size: 2rem;
        cursor: pointer; }
  .footer-content .social-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px; }
    .footer-content .social-contact a, .footer-content .social-contact a:visited, .footer-content .social-contact a:hover, .footer-content .social-contact a:active, .footer-content .social-contact a:focus {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      font-size: 1.125rem; }
    @media (min-width: 769px) {
      .footer-content .social-contact {
        flex-direction: row; }
        .footer-content .social-contact a, .footer-content .social-contact a:visited, .footer-content .social-contact a:hover, .footer-content .social-contact a:active, .footer-content .social-contact a:focus {
          margin: 0 15px;
          letter-spacing: 0.7px; } }
  .footer-content .site-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px; }
    .footer-content .site-navigation ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 10px; }
      .footer-content .site-navigation ul li {
        padding-bottom: 12px;
        text-align: center; }
        .footer-content .site-navigation ul li a, .footer-content .site-navigation ul li a:visited, .footer-content .site-navigation ul li a:hover, .footer-content .site-navigation ul li a:active, .footer-content .site-navigation ul li a:focus {
          color: #fff;
          text-decoration: none;
          font-weight: 500;
          font-size: 1.125rem;
          text-transform: uppercase;
          letter-spacing: 4px; }
        .footer-content .site-navigation ul li span {
          display: none; }
      @media (min-width: 960px) {
        .footer-content .site-navigation ul {
          flex-direction: row; }
          .footer-content .site-navigation ul a, .footer-content .site-navigation ul a:visited, .footer-content .site-navigation ul a:hover, .footer-content .site-navigation ul a:active, .footer-content .site-navigation ul a:focus {
            margin: 0 15px;
            letter-spacing: 0.7px; }
          .footer-content .site-navigation ul li span {
            display: inline;
            color: #fff; } }
  .footer-content .footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px; }
    .footer-content .footer-links p, .footer-content .footer-links p a {
      margin: 0;
      color: #ACD7E4;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: .05em;
      text-decoration: none; }
    .footer-content .footer-links .links {
      margin: 10px 0;
      display: flex;
      flex-direction: row; }
      .footer-content .footer-links .links p {
        margin: 2px 0; }
        .footer-content .footer-links .links p span {
          margin: 0 10px; }

.form {
  /* enable absolute positioning */
  /* style icon */
  /* align icon */
  /* add padding  */ }
  .form .inner-addon {
    position: relative; }
  .form label {
    font-weight: 400;
    font-size: 1rem; }
  .form .form-row {
    margin-bottom: 20px; }
    .form .form-row div {
      margin-top: 4px; }
  .form textarea {
    margin-top: 4px; }
  .form input[type=submit] {
    color: #fff;
    background-color: #2293B6;
    -webkit-box-shadow: 5px 20px 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 5px 20px 30px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    margin-top: 12px;
    cursor: pointer; }
  .form .inner-addon svg {
    position: absolute;
    padding: 14px;
    pointer-events: none;
    color: #2293B6; }
  .form .left-addon svg {
    left: 0px; }
  .form .right-addon svg {
    right: 0px; }
  .form .form-row input {
    padding-left: 1rem;
    width: 100%;
    margin-bottom: 8px;
    border-radius: 8px;
    height: 42px;
    box-shadow: inset 0px 1px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.25);
    font-family: sofia-pro, sans-serif;
    font-size: 1.125rem; }
  .form .form-row.left-addon input {
    padding-left: 40px;
    width: calc(100% - 40px); }
  .form .right-addon input {
    padding-right: 30px; }
  .form textarea {
    border-radius: 8px;
    box-shadow: inset 0px 1px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.25);
    width: calc(100% - 40px);
    height: 200px;
    padding: 20px;
    font-family: sofia-pro, sans-serif;
    font-size: 1.125rem; }
  .form .btn {
    margin-top: 20px; }

.staff-list {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .staff-list--featured {
    margin-top: 80px; }
    @media (min-width: 769px) {
      .staff-list--featured {
        margin-top: 200px; } }
  .staff-list .text {
    text-align: center;
    margin-bottom: 40px;
    max-width: 810px; }
  .staff-list__slideover .heading {
    display: flex;
    flex-direction: column;
    text-align: center; }
    @media (min-width: 769px) {
      .staff-list__slideover .heading {
        flex-direction: row;
        text-align: left; } }
    .staff-list__slideover .heading .profile--image {
      width: 300px; }
    .staff-list__slideover .heading .details h2 {
      margin: 0;
      font-size: 2.25rem; }
    .staff-list__slideover .heading .details p {
      font-size: 1.5rem;
      font-weight: 400;
      margin: 0 0 20px; }
  .staff-list .row {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column; }
    @media (min-width: 769px) {
      .staff-list .row {
        flex-direction: row; } }
    .staff-list .row .staff {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 60px; }
      @media (min-width: 769px) {
        .staff-list .row .staff {
          width: calc(100%/3); } }
      .staff-list .row .staff .details {
        text-align: center;
        margin-top: 15px; }
        .staff-list .row .staff .details h2, .staff-list .row .staff .details p {
          margin: 0;
          padding: 0; }
        .staff-list .row .staff .details p {
          margin-bottom: 10px; }
        .staff-list .row .staff .details .btn {
          background-image: none;
          color: #3EA1BF;
          margin-top: 10px;
          border: 2px solid #3EA1BF;
          padding: 12px 22px; }
          .staff-list .row .staff .details .btn:hover, .staff-list .row .staff .details .btn:visited, .staff-list .row .staff .details .btn:focus, .staff-list .row .staff .details .btn:active {
            color: #3EA1BF; }
      .staff-list .row .staff .profile--image {
        width: 300px;
        height: 260px;
        margin-right: 0;
        position: relative;
        filter: grayscale(100%); }
        .staff-list .row .staff .profile--image::before {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-image: linear-gradient(135deg, #75BCD1, #3EA1BF);
          opacity: 0.35;
          content: '';
          border-top-left-radius: 88% 85%;
          border-top-right-radius: 72% 96%;
          border-bottom-left-radius: 62% 80%;
          border-bottom-right-radius: 95% 76%; }
        .staff-list .row .staff .profile--image .read-more {
          border-top-left-radius: 88% 85%;
          border-top-right-radius: 72% 96%;
          border-bottom-left-radius: 62% 80%;
          border-bottom-right-radius: 95% 76%;
          position: absolute;
          width: 100%;
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          background: rgba(0, 0, 0, 0.75);
          opacity: 0;
          transition: opacity .3s ease-in-out; }
          .staff-list .row .staff .profile--image .read-more a, .staff-list .row .staff .profile--image .read-more a:hover, .staff-list .row .staff .profile--image .read-more a:visited, .staff-list .row .staff .profile--image .read-more a:active, .staff-list .row .staff .profile--image .read-more a:focus {
            color: #75BCD1;
            font-size: 1.25rem;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 400;
            text-decoration: none; }
            .staff-list .row .staff .profile--image .read-more a span, .staff-list .row .staff .profile--image .read-more a:hover span, .staff-list .row .staff .profile--image .read-more a:visited span, .staff-list .row .staff .profile--image .read-more a:active span, .staff-list .row .staff .profile--image .read-more a:focus span {
              border: 2px solid #75BCD1;
              padding: 10px 20px;
              border-radius: 10px;
              box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); }
        .staff-list .row .staff .profile--image:hover .read-more {
          opacity: 1; }
  .staff-list .featured .staff .profile--image {
    filter: none; }
    .staff-list .featured .staff .profile--image::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(135deg, #2293B6, #3EA1BF, #D175BC, #F6E3F2);
      opacity: 0.5;
      content: '';
      border-top-left-radius: 88% 85%;
      border-top-right-radius: 72% 96%;
      border-bottom-left-radius: 62% 80%;
      border-bottom-right-radius: 95% 76%; }
  .staff-list .featured .staff .details .btn {
    color: white;
    padding: 12px 22px;
    background-image: linear-gradient(135deg, #2293B6, #3EA1BF);
    border: none; }
    .staff-list .featured .staff .details .btn:hover, .staff-list .featured .staff .details .btn:visited, .staff-list .featured .staff .details .btn:focus, .staff-list .featured .staff .details .btn:active {
      color: white; }

.staff-page .content-wrapper {
  margin-top: -50px; }
  @media (min-width: 769px) {
    .staff-page .content-wrapper {
      margin-top: 100px; } }

.logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px; }
  .logos .row {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 10px 0;
    flex-direction: column;
    flex-wrap: wrap; }
    @media (min-width: 769px) {
      .logos .row {
        flex-direction: row; } }
    .logos .row .logo {
      width: 100%;
      margin: 10px; }
      @media (min-width: 769px) {
        .logos .row .logo {
          width: calc(100% / 3.5); } }

.overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  background-color: rgba(227, 242, 246, 0.75);
  transition: all .3s ease-in-out;
  z-index: 9999; }
  @media (min-width: 769px) {
    .overlay {
      transition: all .8s ease-in-out; } }
  .overlay.show {
    opacity: 1;
    width: 100vw;
    height: 100vh;
    right: 0; }
  .overlay .drawer {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    background-color: #FEFEFE;
    z-index: 99999;
    height: 100vh;
    overflow: scroll;
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column; }
    @media (min-width: 769px) {
      .overlay .drawer {
        width: calc(2 * (100% / 3));
        transition: all 1s ease-in-out; } }
    .overlay .drawer.show {
      right: 0;
      transition: all .3s ease-in-out; }
    .overlay .drawer .body {
      padding: 20px 50px;
      margin-bottom: 70px; }
    .overlay .drawer .toolbar {
      position: relative; }
      .overlay .drawer .toolbar svg {
        transform: rotate(-180deg); }
      .overlay .drawer .toolbar .fa-times {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 3.5rem;
        cursor: pointer; }
    .overlay .drawer .footer {
      position: fixed;
      bottom: 0;
      background-color: white;
      width: calc(70% - 40px);
      padding: 20px;
      text-align: right;
      box-shadow: 1px 0 7px rgba(0, 0, 0, 0.5); }
      .overlay .drawer .footer a, .overlay .drawer .footer a:hover, .overlay .drawer .footer a:visited, .overlay .drawer .footer a:active {
        color: white; }

.cta-component {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #dfebf5;
  border-top-right-radius: 8% 60%;
  border-top-left-radius: 8% 60%;
  border-bottom-left-radius: 70% 20%;
  border-bottom-right-radius: 20% 25%;
  padding: 40px;
  font-weight: 400;
  text-align: center; }
  .cta-component h2 {
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: inherit;
    text-shadow: none;
    margin: 5px 0;
    padding: 0; }
  .cta-component a {
    color: #fff;
    background-color: #2293B6;
    -webkit-box-shadow: 5px 20px 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 5px 20px 30px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100; }

.modal-wrapper {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow-y: auto;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75); }
  .modal-wrapper .container {
    display: flex;
    align-items: center;
    padding: 1rem;
    height: 100%;
    justify-content: center;
    text-align: center; }
    @media (min-width: 640px) {
      .modal-wrapper .container {
        padding: 0px;
        align-items: center; } }
    .modal-wrapper .container .modal {
      transition-property: all;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
      box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
      background-color: white;
      border-radius: 0.5rem;
      padding: 1rem; }
      @media (min-width: 640px) {
        .modal-wrapper .container .modal {
          padding: 2rem;
          max-width: 32rem;
          margin-top: 2rem;
          margin-bottom: 2rem; } }
      .modal-wrapper .container .modal .text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; }
        .modal-wrapper .container .modal .text .icon svg {
          width: 3.5rem;
          height: 3.5rem;
          color: #005FB1; }
      .modal-wrapper .container .modal .buttons {
        display: flex;
        margin-top: 1.25rem; }
        .modal-wrapper .container .modal .buttons button {
          padding-left: 1rem;
          padding-right: 1rem;
          display: inline-flex;
          justify-content: center;
          border-radius: 0.375rem;
          font-family: sofia-pro, sans-serif;
          font-weight: 500;
          font-size: 0.875rem;
          line-height: 1.25rem;
          box-sizing: border-box;
          border: 1px solid #DFEBF5;
          height: 40px;
          align-items: center;
          width: 100%;
          margin: 0 0.25rem;
          cursor: pointer;
          box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
          .modal-wrapper .container .modal .buttons button.primary {
            background-color: #005FB1;
            border-color: #005FB1;
            color: white; }

section.cm {
  margin-top: -100px; }

section.cm2 {
  margin-top: -100px; }
  @media (min-width: 769px) {
    section.cm2 {
      margin-top: -200px; } }

html, body {
  height: 100%;
  margin: 0; }

body {
  background-color: #FEFEFE;
  font-family: sofia-pro, sans-serif;
  font-weight: 100;
  font-style: normal; }

.main-wrapper {
  position: relative;
  overflow: hidden; }

.content-wrapper {
  padding: 20px 30px;
  max-width: 810px;
  margin: 0 auto;
  margin-top: 80px; }
  @media (min-width: 769px) {
    .content-wrapper {
      margin-top: 200px; } }

section {
  position: relative;
  margin-bottom: 80px; }
  @media (min-width: 769px) {
    section {
      margin-bottom: 100px; } }

.two-column {
  display: flex;
  flex-direction: column; }
  .two-column .column {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; }
  @media (min-width: 600px) {
    .two-column {
      flex-direction: row; }
      .two-column .column {
        width: 50%;
        padding: 0 50px;
        margin-bottom: 0; } }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.hidden {
  display: none !important; }
