/**
Testimonial componennt
*/
.testimonial__inner-wrapper {
    background: #003C76;
    color: white;
    padding: 2.5rem 0;
    position: relative;
    font-family: proxima-nova, sans-serif;
  }

  .testimonial__decoration {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }

  .testimonial__background-shape {
    background-color: #3376B8;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -4rem;
    right: 0;
    transform: rotate(35deg) scale(1000%);
    transform-origin: bottom left;
  }

  .testimonial__quote-mark {
    position: absolute;
    width: 11rem;
    height: 8rem;
    top: 0;
    left: .75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='176' height='128' viewBox='0 0 176 128' fill='none'%3E%3Cpath d='M80.4493 -4.825C69.1004 2.875 61.3209 11.125 57.1108 19.925C52.9007 28.5417 50.7956 36.7917 50.7956 44.675C50.7956 53.1083 53.0837 60.625 57.6599 67.225C62.4191 73.6417 67.636 79.2333 73.3105 84C75.8731 86.75 77.1544 89.775 77.1544 93.075C77.1544 96.925 75.8731 100.867 73.3105 104.9C70.7478 108.933 67.3614 112.692 63.1513 116.175C58.9412 119.658 53.999 122.5 48.3245 124.7C42.8331 126.9 37.0671 128 31.0265 128C25.169 128 20.2267 126.533 16.1997 123.6C12.3557 120.667 9.24389 117.092 6.86427 112.875C4.48466 108.658 2.74571 104.258 1.64743 99.675C0.549142 94.9083 0 90.6917 0 87.025C0 76.3917 1.922 66.2167 5.76599 56.5C9.60998 46.6 14.8268 37.3417 21.4165 28.725C28.0062 20.1083 35.6942 12.225 44.4805 5.075C53.2668 -2.25833 62.5107 -8.76667 72.2122 -14.45L80.4493 -4.825ZM176 -5.375C164.834 2.325 157.055 10.575 152.661 19.375C148.451 27.9917 146.346 36.2417 146.346 44.125C146.346 52.5583 148.634 60.075 153.211 66.675C157.97 73.0917 163.187 78.6833 168.861 83.45C171.424 86.2 172.705 89.225 172.705 92.525C172.705 96.375 171.424 100.317 168.861 104.35C166.298 108.383 162.912 112.142 158.702 115.625C154.492 119.108 149.55 121.95 143.875 124.15C138.384 126.35 132.618 127.45 126.577 127.45C120.72 127.45 115.869 125.983 112.025 123.05C108.181 120.117 104.978 116.542 102.415 112.325C100.035 108.108 98.2964 103.708 97.1981 99.125C96.2829 94.3583 95.8253 90.1417 95.8253 86.475C95.8253 75.8417 97.7473 65.6667 101.591 55.95C105.435 46.05 110.652 36.7917 117.242 28.175C123.832 19.5583 131.428 11.675 140.031 4.525C148.817 -2.80833 158.061 -9.31667 167.763 -15L176 -5.375Z' fill='%232275B2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transform-origin: top left;
    transform: scale(.5);
  }

  .testimonial__darkener {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 60, 118, 1), rgba(0, 60, 118, 0));
  }

  .testimonial__content {
    position: relative;
    height: 100%;
  }

  .testimonial__text-wrapper {
    height: 100%;
  }

  .testimonial__text {
    height: 100%;
    max-width: 56.25rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .testimonial__figure {
    margin-bottom: 0;
  }

  .testimonial__quote {
    font-family: nocturne-serif, serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    padding-bottom: .625rem;
    margin-bottom: 0;
  }

  .testimonial__quote::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    bottom: 0;
    width: 3.125rem;
    background-color: #019CDB;
  }

  .testimonial__attribution {
    margin-top: 1.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .375rem;
  }

  .testimonial__attribution * {
    margin-top: 0;
    margin-bottom: 0;
  }

  .testimonial__attribution-name {
    font-size: 1.125rem;
    line-height: 1.1;
    font-weight: 600;
  }

  .testimonial__attribution-title {
    font-size: .875rem;
    line-height: 1.4;
    font-weight: 300;
  }

  .testimonial__attribution-title > * + * {
    margin-top: .15rem;
  }

  .testimonial__cta-link-wrapper {
    margin-top: 1.5rem;
    line-height: 1;
  }

  .testimonial__cta-link {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
  }

  .testimonial__cta-link:hover,
  .testimonial__cta-link:focus {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
  }

  .testimonial__cta-link::before {
    content: '';
    display: inline-block;
    width: .75em;
    height: .75em;
    margin-right: .375em;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cg clip-path='url(%23clip0_2505_329)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.692 0.807983L3.808 1.69198L8.616 6.49998L3.808 11.308L4.692 12.192L10.384 6.49998L4.692 0.807983Z' fill='white' stroke='white' stroke-width='0.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2505_329'%3E%3Crect width='12' height='12' fill='white' transform='matrix(-1 0 0 1 12.5 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat 50% 50%;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cg clip-path='url(%23clip0_2505_329)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.692 0.807983L3.808 1.69198L8.616 6.49998L3.808 11.308L4.692 12.192L10.384 6.49998L4.692 0.807983Z' fill='white' stroke='white' stroke-width='0.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2505_329'%3E%3Crect width='12' height='12' fill='white' transform='matrix(-1 0 0 1 12.5 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat 50% 50%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: currentColor;
    position: relative;
    left: 0;
    transition: left 150ms;
  }

  .testimonial__cta-link:hover::before,
  .testimonial__cta-link:focus::before {
    left: .1875em;
  }

  .testimonial--image-left,
  .testimonial--image-right {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .testimonial--image-left .testimonial__image-wrapper :not(span),
  .testimonial--image-right .testimonial__image-wrapper :not(span) {
    width: 100%;
    height: 100%;
  }

  .testimonial--image-left img,
  .testimonial--image-right img {
    object-fit: cover;
  }

  @media (min-width: 576px) {
    .testimonial__quote-mark {
      transform: scale(1);
    }

    .testimonial__background-shape {
      left: 6.25rem;
    }

    .testimonial__quote {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 768px) {
    .testimonial--image-left .testimonial__quote-mark,
    .testimonial--image-right .testimonial__quote-mark {
      transform: scale(.75);
    }

    .testimonial--image-left .testimonial__quote,
    .testimonial--image-right .testimonial__quote {
      font-size: 1.75rem;
    }

    .testimonial--image-left .testimonial__text,
    .testimonial--image-right .testimonial__text {
      max-width: 33rem;
    }

    .testimonial--image-left,
    .testimonial--image-right {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial--image-left .testimonial__image-wrapper {
      order: -1;
    }
  }

  @media (min-width: 992px) {
    .testimonial__inner-wrapper {
      padding: 4rem 0;
    }

    .testimonial--image-left .testimonial__quote-mark,
    .testimonial--image-right .testimonial__quote-mark {
      transform: scale(1);
    }

    .testimonial--image-left .testimonial__quote,
    .testimonial--image-right .testimonial__quote {
      font-size: 2.25rem;
    }
  }

  .testimonial .paragraph--type--paragraph-video {
    padding: 0;
    margin: 0;
    max-width: none;
  }


  /* WYSIWYG-embed Testimonial styles */

  .align-right .wysiwyg-testimonial {
    margin-top: .5rem;
    margin-bottom: 1.5rem;
  }

  .align-left .wysiwyg-testimonial {
    margin-top: .5rem;
    margin-bottom: 1.5rem;
  }

  .wysiwyg-testimonial {
    width: 100%;
  }

  .wysiwyg-testimonial img {
    margin: 0 !important;
    max-width: 100% !important;
  }

  .wysiwyg-testimonial__text {
    padding: 1.875rem;
    background-color: #F4FBFE;
    color: #272A2C;
  }

  .wysiwyg-testimonial__figure {
    margin-bottom: 0;
  }

  .wysiwyg-testimonial__quote {
    font-family: nocturne-serif, serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    padding-bottom: .625rem;
    margin-bottom: 0;
  }

  .wysiwyg-testimonial__quote::after {
    content: '';
    position: absolute;
    left: 0;
    height: 5px;
    bottom: 0;
    width: 3.125rem;
    background-color: #019CDB;
  }

  .wysiwyg-testimonial__attribution {
    margin-top: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: .375rem;
  }

  .wysiwyg-testimonial__attribution * {
    margin-top: 0;
    margin-bottom: 0;
  }

  .wysiwyg-testimonial__attribution-name {
    font-size: 1.125rem;
    line-height: 1.1;
    font-weight: 600;
  }

  .wysiwyg-testimonial__attribution-title {
    font-size: .875rem;
    line-height: 1.4;
    font-weight: 300;
  }

  .wysiwyg-testimonial__attribution-title > * + * {
    margin-top: .15rem;
  }

  .wysiwyg-testimonial__cta-link-wrapper {
    margin-top: 1.5rem;
    line-height: 1;
  }

  .wysiwyg-testimonial__cta-link {
    font-size: 1rem;
    color: #0054A6;
    font-weight: 600;
    text-decoration: none;
  }

  .wysiwyg-testimonial__cta-link:hover,
  .wysiwyg-testimonial__cta-link:focus {
    color: #0032a0;
    text-decoration: none;
  }

  .wysiwyg-testimonial__cta-link::before {
    content: '';
    display: inline-block;
    width: .75em;
    height: .75em;
    margin-right: .375em;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cg clip-path='url(%23clip0_2505_329)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.692 0.807983L3.808 1.69198L8.616 6.49998L3.808 11.308L4.692 12.192L10.384 6.49998L4.692 0.807983Z' fill='white' stroke='white' stroke-width='0.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2505_329'%3E%3Crect width='12' height='12' fill='white' transform='matrix(-1 0 0 1 12.5 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat 50% 50%;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cg clip-path='url(%23clip0_2505_329)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.692 0.807983L3.808 1.69198L8.616 6.49998L3.808 11.308L4.692 12.192L10.384 6.49998L4.692 0.807983Z' fill='white' stroke='white' stroke-width='0.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2505_329'%3E%3Crect width='12' height='12' fill='white' transform='matrix(-1 0 0 1 12.5 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat 50% 50%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: currentColor;
    position: relative;
    left: 0;
    transition: left 150ms;
  }

  .wysiwyg-testimonial__cta-link:hover::before,
  .wysiwyg-testimonial__cta-link:focus::before {
    left: .1875em;
  }

  @media (min-width: 576px) {
    .align-right .wysiwyg-testimonial {
      margin-left: 2rem;
      margin-bottom: 1.25rem;
    }

    .align-left .wysiwyg-testimonial {
      margin-right: 2rem;
      margin-bottom: 1.25rem;
    }

    .wysiwyg-testimonial {
      width: 17.5rem;
    }
  }
/**
New Sidebar
*/
@media only screen and (min-width: 992px) {
  .department-menu {
    margin-top: 34px;
  }
}
  
  .department-menu ul.dept li a {
    padding-left: .75rem;
  }
  
  .department-menu ul.dept li a[aria-current="page"] {
    color: rgb(0, 50, 160);
    background-color: #F4FBFE;
  }
  
  .department-menu ul.dept li a[aria-current="page"]::after {
    background-image: url("../images/chevron-right-dark.png");
  }

  @media only screen and (min-width: 992px) {
    .node-flexible_page .node-body {
      margin-top: 0px;
    }
  }

  @media only screen and (min-width: 768px) {
    .node-flexible_page .node-header {
        min-height: 400px;
    }
    .node-flexible_page .node-header .container {
        min-height: 400px;
    }
  }