@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --royal-blue: #1f6fff;
  --dark-slate-blue: #014d82;
  --medium-orchid: #b75dda;
  --lime-green: #5ec045;
  --cornflower-blue: #6aa6de;
  --dark-orange: #fe8a1c;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  background-color: #424549;
  height: 100%;
  font-family: Source Sans Pro, sans-serif;
  font-size: 15px;
  line-height: 23px;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 29px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  color: #1f6fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 15px;
}

a {
  color: #1f6fff;
  text-decoration: underline;
}

a:hover {
  color: #000;
}

li {
  margin-bottom: -3px;
  padding-left: 8px;
}

img {
  border-radius: 3px;
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 30px;
  padding: 0 20px;
  font-size: 20px;
  line-height: 29px;
}

figcaption {
  color: #9e9e9e;
  text-align: center;
  background-color: #0000000a;
  border-radius: 3px;
  margin-top: 5px;
  padding-top: 5px;
  padding-bottom: 2px;
  font-size: 12px;
  line-height: 18px;
}

.navbar {
  background-color: #014d82;
  border: 1px #000;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.nav-menu {
  z-index: 1;
  border-radius: 4px;
  flex-flow: row;
  flex: 0 auto;
  place-content: stretch center;
  align-self: center;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.nav-link {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 5px;
  margin-right: 3px;
  padding: 11px 15px;
  font-size: 13px;
  line-height: 12px;
  transition: background-color .2s, border .2s;
}

.nav-link:hover {
  background-color: #0000;
  border-color: #0003;
}

.nav-link.light {
  color: #fff;
  border-style: none;
  justify-content: center;
  align-self: auto;
  align-items: center;
  height: 35px;
  margin-top: 10px;
  margin-right: 2px;
  padding: 10px 12px 15px;
  transition: background-color .2s, border .2s;
  display: flex;
}

.nav-link.light:hover {
  border-color: #fff3;
}

.nav-link.light.w--current {
  border-color: #fff3;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 15px;
}

.container {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
  display: block;
  position: static;
}

.button {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #1f6fff;
  border-radius: 3px;
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 12px;
  font-weight: 600;
  transition: background-color .2s, background-position .2s, color .2s, border .2s, box-shadow .2s;
  display: none;
}

.button:hover {
  color: #fff;
  background-color: #0b4fc9;
  box-shadow: 0 8px 16px 4px #0000004d;
}

.home-body-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  position: static;
}

.home-body-section.tint {
  background-color: #f5f5f5;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 20px;
}

.section-title-wrapper {
  text-align: center;
  width: 100%;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 46px;
  font-weight: 400;
  line-height: 39px;
}

.bod-description {
  text-align: justify;
  width: auto;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}

.portfolio-overlay-block {
  background-color: #2c2d31cc;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  position: relative;
}

.portfolio-block-title {
  font-size: 18px;
  font-weight: 700;
}

.portfolio-block-subtitle {
  margin-top: 10px;
  font-size: 14px;
}

.footer-inline-link {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
  margin-right: 15px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
}

.footer-inline-link:hover {
  color: #fff6;
}

.text-column {
  padding-right: 20px;
}

.text-column-title {
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  display: inline-block;
}

.text-column-title.number {
  color: #1f6fff;
  margin-right: 10px;
}

.top-line-block {
  border-top: 1px solid #0000001a;
  margin-top: 35px;
  padding-top: 40px;
}

.process-tab-pane {
  padding-top: 60px;
}

.process-tab-col-left {
  padding-right: 40px;
}

.process-tab-button {
  color: #c7c7c7;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #f5f5f5;
  border: 0 solid #0000;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 20px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 13px;
  font-weight: 700;
  transition: box-shadow .2s;
  box-shadow: 0 0 30px #0000;
}

.process-tab-button:hover {
  color: #1f6fff;
  box-shadow: 0 0 30px #0000001a;
}

.process-tab-button.w--current {
  color: #000;
  text-align: center;
  background-color: #fff;
  border-color: #0000001a;
  box-shadow: 0 0 30px #0000001a;
}

.process-tab-icon {
  height: 30px;
  margin-bottom: 6px;
}

.process-tab-menu {
  text-align: center;
  margin-top: -50px;
}

.process-tabs-line {
  background-color: #0000001a;
  width: 100%;
  height: 1px;
  margin-top: 80px;
}

.card-small-paragraph-dash {
  color: #838383;
  text-align: justify;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 3px;
  padding-right: 3px;
  font-family: Source Sans Pro, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.subpage-header {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#1f6fffe6, #1f6fffe6), none;
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 190px;
  padding-bottom: 90px;
}

.subpage-header.ui {
  background-color: #fff;
  background-image: none;
  padding-top: 210px;
  padding-bottom: 210px;
}

.contact-popup {
  z-index: 2000;
  background-color: #1f232ae6;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
}

.gallery-overlay-block {
  background-color: #0000;
  width: 100%;
  height: 100%;
  transition: background-color .2s;
  display: none;
}

.gallery-overlay-block:hover {
  background-color: #fff3;
}

.logo {
  color: #fff;
  align-items: center;
  height: 40px;
  margin-top: 3px;
  font-size: 21px;
  text-decoration: none;
  display: flex;
}

.blue-accent-header {
  opacity: 1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  height: 5px;
  display: block;
}

.blue-overlay {
  opacity: 1;
  color: #fff;
  text-align: center;
  background-color: #dc143c;
  width: 100%;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}

.sign-up-popup {
  z-index: 2000;
  background-color: #1f232ae6;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0;
}

.portfolio-lightbox-overlay {
  z-index: 5000;
  background-color: #0d192eb3;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0;
}

.cta-button {
  background-color: var(--dark-slate-blue);
  text-align: center;
  text-transform: uppercase;
  object-fit: fill;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 33%;
  height: auto;
  margin: 0 0 10px;
  padding: 5px;
  font-size: 13px;
  display: block;
}

.cta-button.register {
  display: none;
}

.cta-button.agenda, .cta-button.raffles {
  display: block;
}

.cta-button.hidden {
  display: none;
}

.blue-footer {
  text-align: center;
  background-color: #014d82;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-flex-container {
  text-align: left;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.footer-navigation-block {
  align-self: center;
}

.footer-white-text {
  color: #fff;
  text-align: left;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.body {
  color: #014d82;
}

.navigation-container {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.header-background {
  align-items: center;
  height: 75px;
  display: flex;
}

.standard-paragraph {
  text-align: justify;
  font-family: Source Sans Pro, sans-serif;
  font-size: 15px;
}

.cta-donate-button {
  text-align: center;
  text-transform: uppercase;
  object-fit: fill;
  background-color: #ff8c00;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 30px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Source Sans Pro, sans-serif;
  font-size: 13px;
  display: flex;
}

.logo-block-main {
  align-items: center;
  margin-right: 100px;
  display: flex;
}

.wgfrf-logo {
  margin-right: 15px;
}

.link-block-2 {
  align-items: center;
  text-decoration: none;
  display: flex;
}

.link-block-2.w--current {
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.header-hero-section {
  outline-offset: 0px;
  background-color: #d7e4ea;
  background-image: linear-gradient(#0000004a, #0000004a), url('../images/denim.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  outline: 0 #b8bcbe;
}

._404-title {
  color: var(--dark-slate-blue);
  text-transform: uppercase;
  object-fit: fill;
  flex-wrap: nowrap;
  place-content: flex-start center;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Cabin, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

.footer-text-block {
  display: block;
}

.search-button-blue {
  background-color: var(--dark-slate-blue);
  text-align: center;
  text-transform: uppercase;
  object-fit: fill;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: auto;
  margin: 0 0 10px;
  padding: 5px;
  font-size: 13px;
  display: block;
}

.standard-heading-h1 {
  color: var(--dark-slate-blue);
  text-transform: uppercase;
  font-size: 36px;
}

._404-home-button {
  background-color: var(--dark-slate-blue);
  text-align: center;
  text-transform: uppercase;
  object-fit: fill;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: auto;
  margin: 0 0 10px 10px;
  padding: 5px;
  font-size: 13px;
  display: inline-block;
}

._404-wgfrf-logo {
  margin-right: 0;
}

.meeting-request-button {
  background-color: var(--dark-slate-blue);
  text-align: center;
  text-transform: uppercase;
  object-fit: fill;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: auto;
  margin: 0;
  padding: 5px;
  font-size: 13px;
  display: block;
}

.callout-block {
  background-color: #dbdbdb;
  border: .25px solid #908f8f;
  border-radius: 9px;
  margin-bottom: 40px;
  margin-right: 0;
  padding: 20px;
}

.container-2 {
  display: none;
}

.footer-facebook-block {
  text-align: left;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

.footer-small-social-icon {
  height: auto;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 0;
}

.hero-container {
  object-fit: fill;
  display: block;
}

.hero-div-block {
  text-align: center;
  object-fit: cover;
  width: 100%;
  display: none;
}

.hero-heading {
  color: #fff;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: var(--dark-slate-blue);
  margin-top: 20px;
}

.hero-body {
  color: #014d82;
}

.hero-body.white {
  color: #fff;
  margin-bottom: 20px;
  font-size: 23px;
  line-height: 36px;
}

.home-agenda-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  position: static;
}

.home-agenda-section.tint {
  background-color: #f5f5f5;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 20px;
  display: block;
}

.home-agenda-section.tint.hidden {
  display: none;
}

.wine-order-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  position: static;
}

.bjb-sponsor-logo-section {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 80px;
  display: block;
  position: static;
}

.bjb-sponsor-logo-section.tint {
  background-color: #f5f5f5;
  padding-top: 40px;
  padding-bottom: 40px;
}

.bjb-heading-h1 {
  text-align: center;
}

.sponsor-cell {
  justify-content: center;
  align-items: center;
}

.sponsor-cell.padding-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.raffle-information-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  position: static;
}

.raffle-information-section.hidden {
  display: none;
}

.planning-committee-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  position: static;
}

.planning-committee-section.tint {
  background-color: #f5f5f5;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 20px;
}

.buttons-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  position: static;
}

.buttons-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.buttons-block._2.hidden {
  display: none;
}

.buttons-block._6, .buttons-block._8 {
  display: flex;
}

.buttons-block.hidden {
  display: none;
}

.scholars-information-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  position: static;
}

.link {
  color: var(--medium-orchid);
  font-weight: 700;
  text-decoration: none;
}

.raffle-items-text-block {
  margin-bottom: 10px;
  display: none;
}

.photos-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  position: static;
}

.photos-section.blue-tint {
  background-color: #dceeff;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 20px;
  display: block;
}

.boozy-ring-toss-sponsors-text {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.volunteers-text {
  display: block;
}

.game-donors-cell, .raffle-doners-cell {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.image-2 {
  display: block;
}

.squares {
  text-transform: uppercase;
  list-style-type: square;
}

.gallery-caption {
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  font-weight: 700;
  display: block;
}

.gallery-cell {
  justify-content: center;
  align-items: center;
}

.bjb-heading-h2 {
  text-align: center;
}

html.w-mod-js [data-ix="hide-block-title"] {
  opacity: 0;
  transform: translate(0, -10px);
}

html.w-mod-js [data-ix="hide-block-description"] {
  opacity: 0;
  transform: translate(0, 10px);
}

html.w-mod-js [data-ix="hide-block-button"] {
  opacity: 0;
}

html.w-mod-js [data-ix="hide-block-overlay"] {
  opacity: 0;
  display: none;
}

html.w-mod-js [data-ix="fade-in-on-load"] {
  opacity: 0;
  transform: translate(0, 30px);
}

html.w-mod-js [data-ix="fade-in-on-load-2"], html.w-mod-js [data-ix="fade-in-on-load-3"], html.w-mod-js [data-ix="fade-in-on-load-4"] {
  opacity: 0;
}

html.w-mod-js [data-ix="fade-in-on-scroll"], html.w-mod-js [data-ix="fade-in-on-scroll-2"], html.w-mod-js [data-ix="fade-in-on-scroll-3"], html.w-mod-js [data-ix="slide-title"], html.w-mod-js [data-ix="slide-title-2"], html.w-mod-js [data-ix="slide-title-3"], html.w-mod-js [data-ix="slide-title-4"] {
  opacity: 0;
  transform: translate(0, 20px);
}

html.w-mod-js [data-ix="mockup-fade-in"], html.w-mod-js [data-ix="mockup-fade-in-2"] {
  opacity: 0;
  transform: translate(-50px);
}

html.w-mod-js [data-ix="mockup-move"] {
  transform: translate(50px);
}

html.w-mod-js [data-ix="fade-in-zoom"], html.w-mod-js [data-ix="fade-in-zoom-2"], html.w-mod-js [data-ix="fade-in-zoom-3"] {
  opacity: 0;
  transform: scale(.9);
}

html.w-mod-js [data-ix="hide-popup"] {
  opacity: 0;
  display: none;
  transform: scale(1.1);
}

html.w-mod-js [data-ix="hide-gallery-overlay"] {
  opacity: 0;
  display: none;
}

html.w-mod-js [data-ix="fade-in-on-load-5"] {
  opacity: 0;
  transform: translate(0, 30px);
}

html.w-mod-js [data-ix="hide-lightbox"] {
  opacity: 0;
  display: none;
}

@media screen and (max-width: 991px) {
  li {
    font-size: 13px;
  }

  .navbar {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .nav-menu {
    background-color: #292c31;
    border-radius: 0;
    margin-top: 0;
  }

  .nav-link {
    color: #fff;
    border-radius: 0;
    width: 100%;
    max-width: 1200px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 35px;
  }

  .nav-link:hover {
    color: #fff;
    background-color: #000;
  }

  .nav-link.light {
    border-color: #0000;
    border-radius: 0;
    width: 100%;
    max-width: 1500px;
    margin-right: 0;
    padding-left: 35px;
    padding-right: 35px;
  }

  .nav-link.light:hover {
    background-color: #000;
  }

  .nav-link.light.w--current {
    border-color: #0000;
  }

  .container {
    display: block;
  }

  .home-body-section {
    padding: 45px;
  }

  .section-title-wrapper {
    width: 85%;
    margin-bottom: 40px;
  }

  .section-title {
    margin-bottom: 20px;
    font-size: 31px;
    line-height: 30px;
  }

  .bod-description {
    margin-top: 20px;
    font-size: 19px;
  }

  .portfolio-block-title {
    font-size: 16px;
    line-height: 19px;
  }

  .portfolio-block-subtitle {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 18px;
  }

  .footer-inline-link {
    margin-right: 9px;
    font-size: 12px;
  }

  .text-column {
    padding-bottom: 10px;
    padding-right: 10px;
  }

  .text-column-title {
    font-size: 13px;
  }

  .process-tab-col-left {
    padding-right: 30px;
  }

  .subpage-header {
    padding: 140px 45px 60px;
  }

  .subpage-header.ui {
    padding: 150px 45px 50px;
  }

  .logo {
    height: auto;
    margin-top: 10px;
  }

  .transparant-menu-button {
    background-color: var(--royal-blue);
    color: #fff;
    text-align: center;
    border-radius: 4px;
    width: 50px;
    height: 35px;
    margin-right: 0;
    padding: 6px 0;
  }

  .transparant-menu-button:hover {
    background-color: #0000004d;
  }

  .transparant-menu-button.w--open {
    background-color: #000;
  }

  .blue-overlay {
    padding-top: 170px;
    padding-bottom: 170px;
  }

  .blue-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navigation-container {
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
  }

  .header-background {
    height: auto;
    display: block;
  }

  .cta-donate-button {
    width: auto;
  }

  .logo-block-main {
    width: 100%;
    margin-right: 0;
    font-size: 21px;
    display: flex;
  }

  .donate-button-block {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
  }

  .meeting-request-button {
    width: 30%;
  }

  .home-agenda-section, .wine-order-section, .bjb-sponsor-logo-section, .raffle-information-section, .planning-committee-section, .buttons-section, .scholars-information-section, .photos-section {
    padding: 45px;
  }
}

@media screen and (max-width: 767px) {
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 10px;
  }

  .nav-link {
    padding-left: 25px;
  }

  .nav-link.light {
    padding-left: 25px;
    padding-right: 25px;
  }

  .home-body-section {
    padding: 25px;
  }

  .section-title-wrapper {
    width: 95%;
    margin-bottom: 40px;
  }

  .section-title {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 30px;
  }

  .portfolio-block-subtitle {
    font-size: 12px;
  }

  .text-column {
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .top-line-block {
    margin-top: 25px;
    padding-top: 30px;
  }

  .process-tab-pane {
    padding-top: 40px;
  }

  .process-tab-col-left {
    padding-left: 0;
    padding-right: 0;
  }

  .process-tab-col-right {
    padding-left: 0;
  }

  .process-tab-button {
    width: 80px;
    height: 80px;
    margin-left: 9px;
    margin-right: 9px;
    font-size: 10px;
    line-height: 12px;
  }

  .process-tab-icon {
    height: 23px;
  }

  .process-tab-menu {
    margin-top: -39px;
  }

  .subpage-header {
    padding: 110px 25px 40px;
  }

  .subpage-header.ui {
    padding-top: 110px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .contact-popup {
    overflow: auto;
  }

  .logo {
    height: 30px;
    margin-top: 7px;
  }

  .transparant-menu-button {
    background-color: var(--royal-blue);
    width: 50px;
    height: 35px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .blue-accent-header {
    height: 5px;
  }

  .blue-overlay {
    padding-top: 140px;
  }

  .blue-footer {
    padding: 40px 20px;
  }

  .navigation-container {
    padding-right: 10px;
  }

  .logo-block-main {
    margin-right: 0;
  }

  .meeting-request-button {
    width: 40%;
  }

  .home-agenda-section, .wine-order-section, .bjb-sponsor-logo-section, .raffle-information-section, .planning-committee-section, .buttons-section, .scholars-information-section, .photos-section {
    padding: 25px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 31px;
    line-height: 37px;
  }

  h2 {
    font-size: 24px;
    line-height: 29px;
  }

  blockquote {
    border-left-width: 3px;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 0;
    font-size: 17px;
    line-height: 23px;
  }

  .navbar {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 10px;
  }

  .container {
    padding-top: 0;
  }

  .button {
    margin-top: 10px;
    padding-left: 19px;
    padding-right: 19px;
    font-size: 11px;
    line-height: 21px;
  }

  .home-body-section {
    padding: 25px 15px;
  }

  .section-title-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 26px;
    line-height: 26px;
  }

  .bod-description {
    margin-top: 14px;
    font-size: 15px;
    line-height: 23px;
  }

  .footer-inline-link {
    margin-top: -1px;
    margin-right: 7px;
  }

  .top-line-block {
    margin-top: 20px;
    padding-top: 20px;
  }

  .process-tab-pane {
    padding-top: 20px;
  }

  .process-tab-button {
    border-width: 1px;
    border-color: #0000001a;
    width: 60px;
    height: 60px;
    margin-top: 19px;
    margin-left: 2px;
    margin-right: 2px;
    padding-top: 9px;
    display: inline-block;
  }

  .process-tab-icon {
    height: 13px;
  }

  .subpage-header {
    padding-top: 90px;
    padding-bottom: 20px;
  }

  .subpage-header.ui {
    padding: 94px 25px 30px;
  }

  .logo {
    text-align: left;
    flex: 0 auto;
    width: 100%;
    height: auto;
    margin-top: 10px;
    margin-right: 0;
    padding-bottom: 10px;
    font-size: 19px;
    display: block;
  }

  .transparant-menu-button {
    width: 50px;
    margin-right: 0;
  }

  .blue-accent-header {
    height: 5px;
  }

  .blue-overlay {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .icon {
    display: block;
  }

  .cta-button {
    width: 75%;
    margin-bottom: 20px;
  }

  .blue-footer {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .footer-navigation-block {
    text-align: center;
  }

  .footer-white-text {
    text-align: center;
    font-size: 11px;
  }

  .navigation-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .standard-paragraph {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 15px;
  }

  .cta-donate-button {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-bottom: 0;
    display: flex;
  }

  .logo-block-main {
    flex-wrap: nowrap;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-right: 0;
    display: flex;
  }

  .donate-button-block {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
  }

  .link-block-2.w--current {
    width: 100%;
    display: flex;
  }

  .header-hero-section {
    background-size: auto;
  }

  ._404-title {
    margin-bottom: 0;
    font-size: 19px;
  }

  .search-button-blue {
    width: 50%;
    margin-bottom: 20px;
  }

  .standard-heading-h1 {
    font-size: 28px;
  }

  ._404-home-button {
    width: 50%;
    margin-bottom: 20px;
  }

  .meeting-request-button {
    width: 80%;
    margin-bottom: 20px;
  }

  .footer-facebook-block {
    text-align: center;
  }

  .footer-guidestar-block {
    align-self: center;
    margin-top: 20px;
    margin-bottom: auto;
  }

  .hero-heading {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 43px;
  }

  .hero-body.white {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 17px;
  }

  .home-agenda-section, .wine-order-section, .bjb-sponsor-logo-section, .raffle-information-section, .planning-committee-section, .buttons-section, .scholars-information-section {
    padding: 25px 15px;
  }

  .list {
    padding-left: 20px;
  }

  .photos-section {
    padding: 25px 15px;
  }

  .volunteers-text {
    text-align: center;
    margin-bottom: 0;
  }
}

#w-node-f7a5ac51-14e9-3d3c-d4e5-e8da42b20794-25b3d54a {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_30466069-f831-4cb7-50ef-0c76adc77fd7-25b3d54a {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_30466069-f831-4cb7-50ef-0c76adc77fda-25b3d54a {
  grid-row: span 2 / span 2;
}

#w-node-_6a922917-ccf6-7121-e467-1d77c7a04d89-25b3d54a {
  grid-column: span 2 / span 2;
}

#w-node-_6cadf6f0-b30f-db86-2ced-8e8c9de6a5ff-25b3d54a {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_6cadf6f0-b30f-db86-2ced-8e8c9de6a610-25b3d54a {
  grid-row: span 2 / span 2;
}

#w-node-_9f7e4665-86ab-d64f-55d0-739b16092e6e-25b3d54a {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 479px) {
  #w-node-f7a5ac51-14e9-3d3c-d4e5-e8da42b20794-25b3d54a, #w-node-_30466069-f831-4cb7-50ef-0c76adc77fd7-25b3d54a {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_30466069-f831-4cb7-50ef-0c76adc77fda-25b3d54a, #w-node-_30466069-f831-4cb7-50ef-0c76adc77fe0-25b3d54a {
    grid-row: span 2 / span 2;
  }

  #w-node-_6cadf6f0-b30f-db86-2ced-8e8c9de6a5ff-25b3d54a, #w-node-_9f7e4665-86ab-d64f-55d0-739b16092e6e-25b3d54a {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}