@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,700;1,400&family=Playfair+Display:wght@400;700;900&display=swap");
body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 16px; }

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900; }

h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; }

p
p {
  margin-bottom: 0.5rem; }

header {
  background: #fff; }

.hero {
  margin-bottom: 60px;
  min-height: 500px;
  background: transparent;
  display: flex;
  align-items: center;
  position: relative; }
  .hero div {
    width: 60%;
    text-align: center;
    margin: auto;
    position: relative;
    z-index: 1; }
    .hero div h1 {
      font-size: 3.25rem;
      color: #fff; }
    .hero div p {
      color: #fff;
      font-size: 22px; }
    @media (max-width: 768px) {
      .hero div {
        width: 90%; } }
  .hero span {
    display: none; }
  .hero::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.25);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }

.navbar-brand img {
  max-width: 250px; }

.homepage .hero {
  min-height: 600px; }
  .homepage .hero p {
    color: #fff;
    font-size: 24px;
    line-height: 1.2; }

* {
  box-sizing: border-box; }

.notice {
  display: block;
  width: 100%;
  padding: 5px;
  text-align: center;
  background: #163977; }
  .notice a {
    color: #fff;
    text-decoration: underline; }
    .notice a:hover {
      color: #fff;
      text-decoration: none; }

.masonry-container {
  margin-bottom: 60px; }
  .masonry-container .grid {
    margin: 0 auto; }
    .masonry-container .grid:after {
      content: '';
      display: block;
      clear: both; }
    .masonry-container .grid .grid-item {
      width: 285px;
      height: 250px;
      padding: 15px;
      color: #fff; }
      @media (max-width: 540px) {
        .masonry-container .grid .grid-item {
          padding: 15px 0;
          max-width: 285px;
          height: auto;
          min-height: 250px; } }
      .masonry-container .grid .grid-item .grid-item-content {
        padding: 20px 25px;
        border-radius: 3px;
        height: 100%;
        width: 100%;
        position: relative;
        overflow: hidden; }
        .masonry-container .grid .grid-item .grid-item-content::before {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          z-index: 0;
          background-color: rgba(0, 0, 0, 0.1);
          transition: 0.25s ease all; }
        .masonry-container .grid .grid-item .grid-item-content .grid-item-bg {
          position: absolute;
          top: 0;
          left: 0;
          background-size: cover;
          background-position: center center;
          background-repeat: no-repeat;
          height: 100%;
          width: 100%;
          transform: scale(1);
          transition: 0.25s ease all;
          z-index: -1; }
        .masonry-container .grid .grid-item .grid-item-content p {
          display: block;
          font-size: 18px;
          position: relative;
          z-index: 1;
          line-height: 1.2; }
        .masonry-container .grid .grid-item .grid-item-content a {
          position: relative;
          z-index: 1;
          font-size: 14px; }
        .masonry-container .grid .grid-item .grid-item-content h2 {
          position: relative;
          z-index: 1; }
      .masonry-container .grid .grid-item.grid-item--width2 {
        width: 570px; }
      .masonry-container .grid .grid-item.grid-item--width3 {
        width: 855px; }
      .masonry-container .grid .grid-item.grid-item--height2 {
        height: 500px; }
      .masonry-container .grid .grid-item.grid-item--height2.grid-item--width2 h2 {
        font-size: 2.5rem; }
      .masonry-container .grid .grid-item.grid-item--height2.grid-item--width3 h2 {
        font-size: 2.5rem; }
      .masonry-container .grid .grid-item:hover .grid-item-bg {
        transform: scale(1.1);
        transition: 0.75s ease all; }
      .masonry-container .grid .grid-item:hover .grid-item-content::before {
        background-color: rgba(0, 0, 0, 0.2);
        transition: 0.25s ease all; }
      @media (max-width: 540px) {
        .masonry-container .grid .grid-item.grid-item--width2 {
          width: 350px; }
        .masonry-container .grid .grid-item.grid-item--width3 {
          width: 350px; }
        .masonry-container .grid .grid-item.grid-item--height2 {
          height: auto;
          min-height: 250px; }
        .masonry-container .grid .grid-item.grid-item--height2.grid-item--width2 h2 {
          font-size: 1.5rem; }
        .masonry-container .grid .grid-item.grid-item--height2.grid-item--width3 h2 {
          font-size: 1.5rem; } }

.img-grid:after {
  content: '';
  display: block;
  clear: both; }
.img-grid .img-grid-sizer, .img-grid .img-grid-item {
  width: 33.333%; }
  @media (max-width: 575px) {
    .img-grid .img-grid-sizer, .img-grid .img-grid-item {
      width: 100%; } }
  @media (min-width: 576px) and (max-width: 767px) {
    .img-grid .img-grid-sizer, .img-grid .img-grid-item {
      width: 50%; } }
.img-grid .img-grid-item {
  float: left;
  padding: 10px; }
.img-grid .img-grid-item img {
  display: block;
  max-width: 100%; }

.btn {
  color: #fff;
  text-transform: uppercase;
  padding: 5px 15px;
  border: 2px solid #fff;
  border-radius: 4px;
  font-weight: 700;
  transition: 0.25s ease all; }
  .btn:hover {
    background: #fff;
    transition: 0.25s ease all;
    color: #1a3d79;
    text-decoration: none; }

.btn-dark {
  color: #1a3d79;
  text-transform: uppercase;
  padding: 5px 15px;
  border: 2px solid #1a3d79;
  border-radius: 4px;
  background: transparent;
  font-weight: 700;
  transition: 0.25s ease all; }
  .btn-dark:hover {
    background: #1a3d79;
    border: 2px solid #1a3d79;
    transition: 0.25s ease all;
    color: #fff;
    text-decoration: none; }

.banner {
  min-height: 400px;
  /*margin-bottom: 60px;*/
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  /*&::before {
      content: "";
      position: absolute;
      width:100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: rgba(245,130,31,0.75);
  }*/ }
  .banner::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; }
  .banner div {
    width: 65%;
    position: relative;
    z-index: 2;
    text-align: center;
    margin: auto; }
    .banner div h3 {
      font-size: 4.75rem;
      color: #fff;
      line-height: 1;
      text-transform: capitalize !important;
      font-weight: 900;
      font-family: 'Playfair Display', serif; }
      .banner div h3 span {
        font-family: 'Nunito', sans-serif;
        font-size: 1.5rem;
        display: block; }
    .banner div p {
      color: #fff;
      font-size: 22px;
      margin-bottom: 10px; }
    @media (max-width: 540px) {
      .banner div h3 {
        font-size: 2.75rem; } }

.event-wrap {
  width: 100%;
  display: flex;
  background-color: #f4f4f4;
  border-radius: 6px;
  margin-bottom: 20px; }
  @media (max-width: 768px) {
    .event-wrap {
      flex-direction: column; } }
  .event-wrap .event-image {
    width: 35%;
    object-fit: cover;
    object-position: center center;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px; }
    @media (max-width: 768px) {
      .event-wrap .event-image {
        width: 100%;
        height: 200px;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 0px;
        border-top-right-radius: 6px; } }
  .event-wrap .event-content {
    padding: 24px 30px; }
    @media (max-width: 768px) {
      .event-wrap .event-content {
        width: 100%; } }
    .event-wrap .event-content h2 {
      color: #163977; }
    .event-wrap .event-content span {
      display: block;
      margin-bottom: 10px;
      font-size: 20px; }
    .event-wrap .event-content button {
      color: #163977;
      text-transform: uppercase;
      padding: 5px 15px;
      border: 2px solid #163977;
      border-radius: 4px;
      font-weight: 700;
      transition: 0.25s ease all; }
      .event-wrap .event-content button:hover {
        background: #163977;
        transition: 0.25s ease all;
        color: #fff; }
      @media (max-width: 768px) {
        .event-wrap .event-content button {
          width: 100%; } }

.event-modal .modal-content .modal-body {
  position: relative;
  padding: 0; }
  .event-modal .modal-content .modal-body .close {
    position: absolute;
    top: 5px;
    right: 5px; }
  .event-modal .modal-content .modal-body .event-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center center; }
  .event-modal .modal-content .modal-body .event-content {
    padding: 20px;
    display: flex; }
    @media (max-width: 768px) {
      .event-modal .modal-content .modal-body .event-content {
        flex-direction: column; } }
    .event-modal .modal-content .modal-body .event-content .copy {
      width: 60%; }
      @media (max-width: 768px) {
        .event-modal .modal-content .modal-body .event-content .copy {
          width: 100%; } }
      .event-modal .modal-content .modal-body .event-content .copy h3 {
        color: #163977; }
      .event-modal .modal-content .modal-body .event-content .copy h4 {
        font-size: 1.25rem; }
    .event-modal .modal-content .modal-body .event-content .form {
      width: 40%;
      padding-left: 15px; }
      @media (max-width: 768px) {
        .event-modal .modal-content .modal-body .event-content .form {
          width: 100%;
          padding-left: 0; } }
      .event-modal .modal-content .modal-body .event-content .form .form-inner {
        background: #f4f4f4;
        padding: 15px;
        border-radius: 5px; }
        .event-modal .modal-content .modal-body .event-content .form .form-inner form .gform_button {
          color: #163977;
          width: 100%;
          text-transform: uppercase;
          padding: 5px 15px;
          border: 2px solid #163977;
          border-radius: 4px;
          font-weight: 700;
          transition: 0.25s ease all; }
          .event-modal .modal-content .modal-body .event-content .form .form-inner form .gform_button:hover {
            background: #163977;
            transition: 0.25s ease all;
            color: #fff; }
        .event-modal .modal-content .modal-body .event-content .form .form-inner form .gform_footer {
          margin: 0 !important;
          padding: 16px 0 0 !important; }

.events {
  margin-bottom: 60px; }
  .events h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.75rem !important;
    text-transform: capitalize !important;
    color: #163977;
    font-weight: 900; }
  .events .slick-slide {
    padding: 20px; }
    .events .slick-slide img {
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
      transform: scale(1);
      transition: 0.25s ease all; }
      .events .slick-slide img:hover {
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
        transition: 0.75s ease all; }
  .events .carousel-btn {
    width: 32px;
    height: 55px;
    opacity: 1;
    border: 0;
    position: absolute;
    top: 45%;
    transition: 0.25s ease all; }
    .events .carousel-btn:hover {
      opacity: 0.65;
      transition: 0.25s ease all; }
  .events .carousel-btn-prev {
    background: url("../img/arrow-left.png") no-repeat center center/contain;
    left: -45px; }
  .events .carousel-btn-next {
    background: url("../img/arrow-right.png") no-repeat center center/contain;
    right: -45px; }

footer .footer-top {
  padding: 30px 0 20px;
  background: #163977;
  font-size: 14px;
  color: #fff; }
  footer .footer-top .footer-logo img {
    max-width: 210px; }
  footer .footer-top .copyright {
    color: #fff;
    font-size: 12px; }
  footer .footer-top h4 {
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 700; }
  footer .footer-top .gfield_label {
    display: none !important; }
  footer .footer-top .gform_wrapper .gform_footer {
    padding: 0 !important;
    margin: 5px 0 !important; }
  footer .footer-top .gform_wrapper input[type="text"] {
    border: none;
    border-radius: 4px; }
  footer .footer-top .gform_wrapper input[type="submit"] {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    padding: 3px 10px;
    border: 2px solid #fff;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.25s ease all;
    background: transparent; }
    footer .footer-top .gform_wrapper input[type="submit"]:hover {
      background: #fff;
      transition: 0.25s ease all;
      color: #1a3d79;
      text-decoration: none; }
footer .footer-bottom {
  background: #0054a6;
  font-size: 12px;
  padding: 10px 0;
  color: #fff; }
  footer .footer-bottom .inner {
    align-items: center; }
    footer .footer-bottom .inner img {
      max-width: 125px;
      width: 100%;
      height: auto;
      display: inline-block;
      margin-right: 10px; }
@media (max-width: 540px) {
  footer .hours {
    margin-top: 20px;
    margin-bottom: 20px; }
  footer .locations {
    margin-bottom: 20px; } }

.action-wrapper {
  margin-top: -50px;
  padding: 100px 0;
  background: #f2f2f2; }
  .action-wrapper.no-photos {
    margin-top: 50px; }

.single-service h2 {
  color: #1a3d79;
  font-size: 2rem;
  font-family: 'Nunito', sans-serif; }
.single-service h3 {
  font-family: 'Nunito', sans-serif;
  color: #1a3d79;
  font-size: 1.5rem;
  text-transform: uppercase; }
.single-service h4 {
  color: #1a3d79;
  font-size: 2.75rem;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; }
.single-service .sidebar {
  font-size: 14px; }

hr {
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-top: 1px solid #f2f2f2;
  margin-top: 50px;
  margin-bottom: 50px; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }
  .embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.about-page .hero {
  margin-bottom: 0; }
  .about-page .hero span {
    display: block;
    color: #fff;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif; }
.about-page .subhero {
  background: #1a3d79;
  color: #fff;
  margin-bottom: 60px; }
  @media (max-width: 990px) {
    .about-page .subhero .row {
      flex-direction: column; } }
  .about-page .subhero .row .col {
    text-align: center;
    line-height: 1.1;
    padding: 10px 50px;
    align-self: center;
    font-size: 14px; }
    @media (max-width: 1200px) {
      .about-page .subhero .row .col {
        padding: 10px 30px; } }
  .about-page .subhero .row .col:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 30px;
    background: #fff;
    position: absolute;
    right: 0;
    top: calc(50% - 15px); }
    @media (max-width: 990px) {
      .about-page .subhero .row .col:not(:last-child)::after {
        display: none; } }
.about-page h2 {
  font-family: 'Nunito', sans-serif;
  color: #1a3d79;
  font-size: 2rem;
  font-weight: 700; }
.about-page h3 {
  font-family: 'Nunito', sans-serif;
  color: #1a3d79;
  font-size: 1.5rem;
  font-weight: 700; }
.about-page .sidebar {
  font-size: 14px; }
  .about-page .sidebar div {
    padding: 15px;
    color: #fff;
    background: #f5821f;
    border-radius: 5px; }
    .about-page .sidebar div a {
      color: #fff; }
    .about-page .sidebar div ul {
      list-style: disc; }
      .about-page .sidebar div ul li {
        display: list-item;
        margin-left: 20px;
        margin-bottom: 5px; }
        .about-page .sidebar div ul li a {
          color: #fff;
          text-decoration: none;
          line-height: 1.2;
          display: block; }
          .about-page .sidebar div ul li a:hover {
            text-decoration: underline;
            color: #fff; }
.about-page .about-photos {
  margin-top: -100px;
  margin-bottom: 50px; }
.about-page .quote-wrapper {
  margin-top: 50px;
  background: #f2f2f2;
  padding-top: 50px;
  padding-bottom: 150px; }
  .about-page .quote-wrapper .quote {
    position: relative;
    z-index: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1a3d79;
    font-size: 2.25rem;
    text-align: center; }
    .about-page .quote-wrapper .quote span {
      font-family: 'Nunito', sans-serif;
      font-size: 16px;
      color: #000;
      display: block; }
    .about-page .quote-wrapper .quote::before {
      content: "“";
      font-size: 190px;
      line-height: 80px;
      position: absolute;
      left: 0;
      right: 0;
      margin: auto;
      z-index: -1;
      color: #aad2c0; }

.single-event .poster {
  margin-top: -150px;
  margin-bottom: 50px;
  text-align: center; }
  .single-event .poster img {
    height: auto;
    width: 100%;
    max-width: 200px;
    margin: auto;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); }
.single-event .datetime {
  color: #1a3d79;
  font-size: 2rem;
  font-family: 'Nunito', sans-serif;
  text-align: center;
  padding-bottom: 50px; }
.single-event .description {
  background: #f2f2f2;
  padding: 50px 0;
  text-align: center; }
.single-event .logos {
  padding: 50px 0;
  font-size: 12px;
  text-align: center; }
  .single-event .logos img {
    display: inline-block;
    padding: 10px; }
  .single-event .logos p {
    margin-top: 20px; }

.contact-page h2 {
  font-size: 1.75rem;
  font-family: 'Nunito', sans-serif;
  color: #1a3d79;
  margin-top: 15px;
  margin-bottom: 0; }
.contact-page .form-wrapper {
  background: #f2f2f2;
  padding: 50px 0;
  margin-top: 50px; }
  .contact-page .form-wrapper h3 {
    font-size: 2.5rem;
    font-family: 'Nunito', sans-serif;
    color: #1a3d79; }
.contact-page .acf-map {
  width: 100%;
  height: 450px;
  margin-top: 15px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); }
  .contact-page .acf-map img {
    max-width: inherit !important; }

.donate-wrapper {
  margin-bottom: 50px; }
  @media (max-width: 540px) {
    .donate-wrapper iframe {
      width: 330px; } }
  .donate-wrapper .modal .modal-dialog .modal-content .modal-body a {
    color: #1a3d79;
    text-transform: uppercase;
    padding: 5px 15px;
    border: 2px solid #1a3d79;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.25s ease all; }
    .donate-wrapper .modal .modal-dialog .modal-content .modal-body a:hover {
      background: #1a3d79;
      transition: 0.25s ease all;
      color: #fff;
      text-decoration: none; }
  .donate-wrapper .donate-item {
    height: 300px;
    color: #fff;
    border-radius: 3px;
    padding: 20px 25px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px; }
    .donate-wrapper .donate-item .btn {
      display: inline-block;
      margin-bottom: 10px; }
    .donate-wrapper .donate-item::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0;
      background-color: rgba(0, 0, 0, 0.3);
      transition: 0.25s ease all; }
    .donate-wrapper .donate-item p a {
      color: #fff;
      text-transform: uppercase;
      margin-top: 10px;
      display: inline-block;
      padding: 5px 15px;
      border: 2px solid #fff;
      border-radius: 4px;
      font-weight: 700;
      transition: 0.25s ease all; }
      .donate-wrapper .donate-item p a:hover {
        background: #fff;
        transition: 0.25s ease all;
        color: #1a3d79;
        text-decoration: none; }
    .donate-wrapper .donate-item .donate-item-bg {
      position: absolute;
      top: 0;
      left: 0;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      height: 100%;
      width: 100%;
      transform: scale(1);
      transition: 0.25s ease all;
      z-index: -1; }
    .donate-wrapper .donate-item p {
      display: block;
      font-size: 18px;
      position: relative;
      z-index: 1;
      line-height: 1.2; }
    .donate-wrapper .donate-item a {
      position: relative;
      z-index: 1;
      font-size: 14px; }
    .donate-wrapper .donate-item h2 {
      position: relative;
      z-index: 1; }
    .donate-wrapper .donate-item:hover .donate-item-bg {
      transform: scale(1.1);
      transition: 0.75s ease all; }
    .donate-wrapper .donate-item:hover::before {
      background-color: rgba(0, 0, 0, 0.2);
      transition: 0.25s ease all; }

.nav-link {
  color: #163977;
  text-transform: uppercase;
  font-weight: 700; }
  @media (min-width: 992px) {
    .nav-link {
      padding-right: 1rem !important;
      padding-left: 1rem !important; } }

.dropdown-item {
  font-size: 14px; }

.attachment-photo {
  width: auto;
  height: auto; }

.about-video {
  display: inline-block;
  transform: scale(1);
  transition: 0.2s ease all;
  -webkit-box-shadow: 0 0 0px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0px 0 rgba(0, 0, 0, 0.25); }
  .about-video:hover {
    transform: scale(1.05);
    transition: 0.2s ease all;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25); }

.mental-health-members a {
  color: #3d4045; }
  .mental-health-members a:hover {
    text-decoration: none; }
  .mental-health-members a .photo {
    position: relative;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    max-height: 100%;
    overflow: hidden; }
    .mental-health-members a .photo::before {
      opacity: 0;
      content: "";
      background-color: #1a3d79;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      transition: 0.25s ease all; }
    .mental-health-members a .photo .photo-hover {
      width: 75%;
      opacity: 0;
      color: #fff;
      font-size: 24px;
      line-height: 1.1;
      text-align: center;
      position: absolute;
      top: 30%;
      margin: auto;
      left: 0;
      right: 0; }
      .mental-health-members a .photo .photo-hover span {
        line-height: 1;
        font-size: 55px;
        color: #fff;
        font-weight: 500;
        display: block; }
    .mental-health-members a .photo:hover {
      text-decoration: none; }
      .mental-health-members a .photo:hover::before {
        text-decoration: none;
        opacity: 0.75;
        transition: 0.25s ease all; }
      .mental-health-members a .photo:hover .photo-hover {
        text-decoration: none;
        opacity: 1;
        transition: 0.25s ease all; }
  .mental-health-members a h3 {
    text-transform: capitalize;
    margin-bottom: 0;
    margin-top: 10px; }
.mental-health-members .bio h4 {
  text-transform: capitalize;
  font-size: 30px; }
.mental-health-members .bio p {
  color: #494d54; }

@media (min-width: 769px) {
  .modal-dialog {
    max-width: 750px; } }
@media (max-width: 768px) {
  .modal-dialog {
    max-width: 600px; } }
@media (max-width: 375px) {
  .modal-dialog {
    max-width: 370px; } }
#gala-modal h5 {
  margin: auto; }
#gala-modal button.close {
  position: absolute;
  right: 20px; }
#gala-modal form {
  text-align: center; }
  #gala-modal form label {
    display: none !important; }

/* .page-dinner {
    .honoree-section {
        .btn-dark {
            @media (max-width:440px) {                
                margin-bottom: 40px;
                display: inline-block;
            }
        }
    }
    .honoree {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        width:100%;
        height: 350px;
        border-radius: 20px;
        margin-bottom:10px;
        transform: scale(1);
        transition: transform 0.2s ease;
        &:hover {
            transform: scale(1.05);
            transition: transform 0.2s ease;
        }
        @media (max-width:768px) {
            height: 180px;
            border-radius: 50%;
            width: 180px;
            margin: auto;
        }
    }
    .cameos-wrap {
        padding:50px 0;
        h3 {
            margin-bottom: 15px;
        }
        .cameos {
            padding-bottom: 10px;
            margin-bottom: 30px;
            .cameo-wrap {
                @media (max-width:990px) {
                    margin-bottom: 20px;
                }
                .cameo {
                    background-repeat: no-repeat;
                    background-position: center center;
                    background-size: cover;
                    border-radius: 50%;
                    width:150px;
                    height: 150px;
                    margin: 15px auto;
                    @media (max-width:768px) {
                        width: 150px;
                        height: 150px;
                    }
                }
                p {
                    line-height: 1.2;
                    span {
                        display: block;
                        font-style: italic;
                        margin-top: 5px;
                    }
                }
            }
        }
    }
    .prizes-wrap {
        padding:25px 0 50px;
        .prizes {
            // background-color: #eee;
            border-radius: 20px;
            width: 100%;
            // padding: 20px;
            text-align: center;
            // height: 450px;
            @media (max-width:440px) {
                margin-bottom: 20px;
                height: auto;
            }
            marquee {
                text-align: center;
            }
            h4 {
                font-weight: 900
            }
            h5 {
                margin-top: 15px;
                font-weight: 700;
                font-size: 1.5rem;
            }
            em {
                font-style: italic;
                font-weight: 200;
            }
            hr {
                margin: auto auto 20px;
                border-color: #cccccc;
                width: 100%;
            }
            p {
                font-weight: 700;
                span {
                    display: block;
                    font-style: italic;
                    font-size: 13px;
                }
            }
        }
        .sponsor-list {
            background-color: #eee;
            border-radius: 20px;
            width: 100%;
            padding: 20px;
            text-align: center;
            height: 450px;
            font-weight: 700;
            marquee {
                text-align: center;
            }
            h4 {
                font-weight: 900
            }
            h5 {
                font-weight: 700;
                font-size: 1.75rem;
            }
            div {
                border-bottom: 1px solid #ddd;
                margin-bottom: 20px;
                padding-bottom: 5px;
            }
            em {
                font-style: italic;
                font-weight: 200;
            }
            hr {
                margin: auto auto 20px;
                border-color: #cccccc;
                width: 100%;
            }
            span {
                display: block;
                font-style: italic;
                font-size: 13px;
                font-weight: 200;
            }
            .marquee {
                height: 350px;
                overflow: hidden;
                border-bottom: 0;
            }
        }
    }

    .name {
        min-height: 120px;
        h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        @media (max-width:420px) {
            min-height: auto;
            margin-bottom: 20px;
        }
    }
    .action-wrapper {
        background-color: #f5821f;
        margin-top: 0;
        padding: 50px 0;
        h4 {
            color: #fff;
            font-weight: 900;
        }
    }
    .donation-wrapper {
        padding: 50px 0;
        h3 {
            margin-bottom: 10px;
        }
        ul {
            margin: 10px auto;
            column-count: 4;
            column-gap: 20px;
            list-style: none;
            text-align: center;
            li {
                font-size: 14px;
                line-height: 1.2;
                margin: 8px auto;
                a {
                    color: #1a3d79;
                }
            }
            @media (max-width:768px) {
                column-count: 3;
            }
            @media (max-width:440px) {
                column-count: 2;
            }
        }
    }
    .sponsor-wrapper {
        padding: 50px 0;
        margin-top: 30px;
        background-color: #eee;
        .sponsor-row {
            margin-bottom: 30px;
            a {
                display: block;
                transform: scale(1);
                transition: transform .2s ease;
                &:hover {
                    transform: scale(1.05);
                    transition: transform .2s ease;
                    text-decoration: none;
                    h4, p {
                        text-decoration: none;
                    }
                }
                .sponsor {
                    margin: auto;
                    text-align: center;
                    width: 150px;
                    height: 150px;
                    display: flex;
                    align-items: center;
                    border-radius: 50%;
                    background:#1a3d79;
                    margin-bottom: 15px;
                    div {
                        margin: auto;
                        h4 {
                            color: #fff;
                            font-weight: 700;
                            margin: 0;
                        }
                        p {
                            color: #fff;
                            margin: 0;
                        }
                    }
                    @media (max-width:768px) {
                        width: 120px;
                        height: 120px;
                        h4 {
                            font-size: 1.1rem;
                        }
                    }
                }
            }
        }
    }
    .modal {
        button {
            color: #000;
            position: absolute;
            right: 0;
            top: 0;
            font-size: 24px;
            &:hover {
                color: #ccc;
            }
        }
    }
    .banner {
        display: none;
    }
    .dinner-hero {
        min-height: 500px;
        background: transparent;
        position: relative;
        text-align: center;
        div {
            width: 80%;
            
            text-align: center;
            margin: auto;
            position: relative;
            z-index: 1;
            h1 {
                font-size: 3.25rem;
                color: #fff;
            }
            p {
                color: #fff;
                font-size: 22px;
            }
            @media (max-width:768px) {
                width: 95%;
            }
        }
        span {
            display: none;
        }
        &::after {
            content: "";
            background-color: rgba(0,0,0,0.25);
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }
    }
} 
} */
.gala-dinner {
  margin-top: -60px; }
  .gala-dinner .hero div p {
    font-size: 26px; }
  @media (max-width: 440px) {
    .gala-dinner .honoree-section .btn-dark {
      margin-bottom: 40px;
      display: inline-block; } }
  .gala-dinner .honoree {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 250px;
    border-radius: 20px;
    margin-bottom: 10px;
    transform: scale(1);
    transition: transform 0.2s ease; }
    .gala-dinner .honoree:hover {
      transform: scale(1.05);
      transition: transform 0.2s ease; }
    @media (max-width: 768px) {
      .gala-dinner .honoree {
        height: 180px;
        border-radius: 50%;
        width: 180px;
        margin: auto; } }
  .gala-dinner .cameos-wrap {
    padding: 50px 0; }
    .gala-dinner .cameos-wrap h3 {
      margin-bottom: 15px; }
    .gala-dinner .cameos-wrap .cameos {
      padding-bottom: 10px;
      margin-bottom: 30px; }
      @media (max-width: 990px) {
        .gala-dinner .cameos-wrap .cameos .cameo-wrap {
          margin-bottom: 20px; } }
      .gala-dinner .cameos-wrap .cameos .cameo-wrap .cameo {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        border-radius: 50%;
        width: 150px;
        height: 150px;
        margin: 15px auto; }
        @media (max-width: 768px) {
          .gala-dinner .cameos-wrap .cameos .cameo-wrap .cameo {
            width: 150px;
            height: 150px; } }
      .gala-dinner .cameos-wrap .cameos .cameo-wrap p {
        line-height: 1.2; }
        .gala-dinner .cameos-wrap .cameos .cameo-wrap p span {
          display: block;
          font-style: italic;
          margin-top: 5px; }
  .gala-dinner .prizes-wrap h4 {
    font-weight: 900; }
    .gala-dinner .prizes-wrap h4 span {
      display: block;
      font-style: italic;
      font-size: 16px; }
  .gala-dinner .prizes-wrap .prizes {
    border-radius: 20px;
    width: 100%;
    text-align: center; }
    @media (max-width: 440px) {
      .gala-dinner .prizes-wrap .prizes {
        margin-bottom: 20px;
        height: auto; } }
    .gala-dinner .prizes-wrap .prizes marquee {
      text-align: center; }
    .gala-dinner .prizes-wrap .prizes h4 {
      font-weight: 900; }
      .gala-dinner .prizes-wrap .prizes h4 span {
        display: block;
        font-style: italic;
        font-size: 16px; }
    .gala-dinner .prizes-wrap .prizes h5 {
      margin-top: 15px;
      font-weight: 700;
      font-size: 1.5rem; }
    .gala-dinner .prizes-wrap .prizes em {
      font-style: italic;
      font-weight: 200; }
    .gala-dinner .prizes-wrap .prizes hr {
      margin: auto auto 20px;
      border-color: #cccccc;
      width: 100%; }
    .gala-dinner .prizes-wrap .prizes p {
      font-weight: 700; }
      .gala-dinner .prizes-wrap .prizes p span {
        display: block;
        font-style: italic;
        font-size: 13px; }
    .gala-dinner .prizes-wrap .prizes div div {
      font-weight: 900;
      font-size: 18px;
      color: #FF0004;
      line-height: 1.2; }
  .gala-dinner .prizes-wrap .sponsor-list {
    background-color: #eee;
    border-radius: 20px;
    width: 100%;
    padding: 20px;
    text-align: center;
    height: 700px;
    font-weight: 700; }
    .gala-dinner .prizes-wrap .sponsor-list marquee {
      text-align: center; }
    .gala-dinner .prizes-wrap .sponsor-list h4 {
      font-weight: 900; }
    .gala-dinner .prizes-wrap .sponsor-list h5 {
      font-weight: 700;
      font-size: 1.75rem; }
    .gala-dinner .prizes-wrap .sponsor-list div {
      border-bottom: 1px solid #ddd;
      margin-bottom: 20px;
      padding-bottom: 5px; }
    .gala-dinner .prizes-wrap .sponsor-list em {
      font-style: italic;
      font-weight: 200; }
    .gala-dinner .prizes-wrap .sponsor-list hr {
      margin: auto auto 20px;
      border-color: #cccccc;
      width: 100%; }
    .gala-dinner .prizes-wrap .sponsor-list span {
      display: block;
      font-style: italic;
      font-size: 13px;
      font-weight: 200; }
    .gala-dinner .prizes-wrap .sponsor-list .marquee {
      height: 680px;
      overflow: hidden;
      border-bottom: 0; }
  .gala-dinner .name h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700; }
  @media (max-width: 420px) {
    .gala-dinner .name {
      min-height: auto;
      margin-bottom: 20px; } }
  .gala-dinner .action-wrapper {
    background-color: #f5821f;
    margin-top: 0;
    padding: 50px 0; }
    .gala-dinner .action-wrapper h4 {
      color: #fff;
      font-weight: 900; }
  .gala-dinner .donation-wrapper {
    padding: 50px 0; }
    .gala-dinner .donation-wrapper h3 {
      margin-bottom: 10px; }
    .gala-dinner .donation-wrapper ul {
      margin: 10px auto;
      column-count: 4;
      column-gap: 20px;
      list-style: none;
      text-align: center; }
      .gala-dinner .donation-wrapper ul li {
        font-size: 14px;
        line-height: 1.2;
        margin: 8px auto; }
        .gala-dinner .donation-wrapper ul li a {
          color: #1a3d79; }
      @media (max-width: 768px) {
        .gala-dinner .donation-wrapper ul {
          column-count: 3; } }
      @media (max-width: 440px) {
        .gala-dinner .donation-wrapper ul {
          column-count: 2; } }
  .gala-dinner .sponsor-wrapper {
    padding: 50px 0;
    margin-top: 30px;
    background-color: #eee; }
    .gala-dinner .sponsor-wrapper .sponsor-row {
      margin-bottom: 30px; }
      .gala-dinner .sponsor-wrapper .sponsor-row a {
        display: block;
        transform: scale(1);
        transition: transform .2s ease; }
        .gala-dinner .sponsor-wrapper .sponsor-row a:hover {
          transform: scale(1.05);
          transition: transform .2s ease;
          text-decoration: none; }
          .gala-dinner .sponsor-wrapper .sponsor-row a:hover h4, .gala-dinner .sponsor-wrapper .sponsor-row a:hover p {
            text-decoration: none; }
        .gala-dinner .sponsor-wrapper .sponsor-row a .sponsor {
          margin: auto;
          text-align: center;
          width: 200px;
          height: 200px;
          display: flex;
          align-items: center;
          border-radius: 50%;
          background: #1a3d79;
          margin-bottom: 15px; }
          .gala-dinner .sponsor-wrapper .sponsor-row a .sponsor div {
            margin: auto; }
            .gala-dinner .sponsor-wrapper .sponsor-row a .sponsor div h4 {
              color: #fff;
              font-weight: 700;
              margin: 0; }
            .gala-dinner .sponsor-wrapper .sponsor-row a .sponsor div p {
              color: #fff;
              margin: 0; }
          @media (max-width: 768px) {
            .gala-dinner .sponsor-wrapper .sponsor-row a .sponsor {
              width: 120px;
              height: 120px; }
              .gala-dinner .sponsor-wrapper .sponsor-row a .sponsor h4 {
                font-size: 1.1rem; } }
    .gala-dinner .sponsor-wrapper .asterisks {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center; }
      .gala-dinner .sponsor-wrapper .asterisks li {
        display: block; }
        @media (min-width: 992px) {
          .gala-dinner .sponsor-wrapper .asterisks li {
            display: inline-block; }
            .gala-dinner .sponsor-wrapper .asterisks li:not(:last-child):after {
              content: "|";
              margin: 0 8px 0 12px; } }
  .gala-dinner .modal button {
    color: #000;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px; }
    .gala-dinner .modal button:hover {
      color: #ccc; }
  .gala-dinner .banner {
    display: none; }
  .gala-dinner .dinner-hero {
    min-height: 500px;
    background: transparent;
    position: relative;
    text-align: center;
    margin: auto;
    width: 100%; }
    .gala-dinner .dinner-hero .inner {
      display: flex;
      padding: 20px;
      z-index: 1;
      position: relative; }
      @media (max-width: 600px) {
        .gala-dinner .dinner-hero .inner {
          flex-direction: column; } }
    .gala-dinner .dinner-hero h1 {
      font-size: 3.25rem;
      color: #fff;
      position: relative;
      z-index: 1; }
    .gala-dinner .dinner-hero p {
      color: #fff;
      font-size: 22px;
      position: relative;
      z-index: 1; }
    .gala-dinner .dinner-hero span {
      display: none; }
    .gala-dinner .dinner-hero::after {
      content: "";
      background-color: rgba(0, 0, 0, 0.25);
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0; }
    .gala-dinner .dinner-hero .video-wrap {
      width: 70%;
      padding-right: 20px; }
    .gala-dinner .dinner-hero .prizes-wrap {
      width: 30%; }
      .gala-dinner .dinner-hero .prizes-wrap h3 {
        color: #fff; }
      .gala-dinner .dinner-hero .prizes-wrap p {
        color: #000; }
  .gala-dinner .hero {
    display: none; }
    .gala-dinner .hero .btn {
      display: none; }

.past-dinners {
  padding-bottom: 50px; }
  .past-dinners .row {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 40px; }
  .past-dinners h2 {
    font-size: 50px;
    color: #0a3f7a;
    margin-bottom: 0; }
  .past-dinners h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    color: #424242;
    font-size: 20px;
    margin-bottom: 20px; }
  .past-dinners h4 {
    font-size: 20px;
    color: #0a3f7a;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin-bottom: 0; }
  .past-dinners ul {
    padding: 0;
    list-style: disc;
    margin: 0 0 0 15px; }
    .past-dinners ul li {
      color: #424242; }

.see-past-dinners .row {
  border-top: 1px solid #eee;
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 30px; }
  .see-past-dinners .row h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 40px;
    color: #0a3f7a; }
  .see-past-dinners .row ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right; }
    .see-past-dinners .row ul li {
      display: inline-block;
      margin-left: 20px; }
      .see-past-dinners .row ul li a {
        font-family: 'Playfair Display', serif;
        font-weight: 400;
        font-size: 40px;
        color: #0a3f7a;
        border-bottom: 2px #0a3f7a solid;
        text-decoration: none; }
        .see-past-dinners .row ul li a:hover {
          color: #999;
          border-bottom: 2px #999 solid;
          text-decoration: none; }

/**** 5 columns ****/
.col-2dot4,
.col-sm-2dot4,
.col-md-2dot4,
.col-lg-2dot4,
.col-xl-2dot4 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col-2dot4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%; }

@media (min-width: 540px) {
  .col-sm-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; } }
@media (min-width: 720px) {
  .col-md-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; } }
@media (min-width: 960px) {
  .col-lg-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; } }
@media (min-width: 1140px) {
  .col-xl-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; } }
