:root {
  --navy-blue: #1c2341;
  --black: #000;
  --white: #fff;
  --red: #e21414;
  --dark-blue: #111833;
  --lighter-blue: #a8b5ec;
  --50-navy: #1c234180;
  --light-blue: #5866a2;
  --70-navy-blue: #1c2341b3;
}

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

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

.navbar-section {
  z-index: 200;
  background-color: var(--navy-blue);
  filter: drop-shadow(0 2px 5px #000000b3);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1260px;
  padding: 20px;
}

.nav-container {
  width: 100%;
  max-width: 1260px;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.navbar-brand {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  display: flex;
}

.nav-menu-wrapper {
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  display: flex;
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  display: flex;
}

.nav-link {
  color: #fff;
  letter-spacing: .25px;
  margin-left: 0;
  margin-right: 0;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: #1a1b1fbf;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  margin-left: 0;
  margin-right: 0;
  font-size: 16px;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide {
  background-color: var(--navy-blue);
  filter: drop-shadow(0px 2px 2px var(--black));
}

.nav-dropdown-link {
  color: var(--white);
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary {
  color: var(--navy-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #fff;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.text-block {
  color: #fff;
  font-size: 16px;
}

.hero-heading-left {
  background-color: #f5f7fa;
  padding: 180px 30px 378px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.footer-dark {
  background-color: #f5f7fa;
  padding: 50px 30px 15px;
  position: relative;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.logo-lin {
  width: 120px;
}

.logo-lin.w--current {
  width: 100px;
}

.heading {
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
  font-family: Oswald, sans-serif;
}

.section {
  background-color: var(--red);
}

.container-2 {
  justify-content: center;
  align-items: center;
  max-width: 1260px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.navbar-address {
  color: var(--white);
  font-family: myriad-pro, sans-serif;
}

.header-text {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link {
  color: var(--white);
  text-decoration: none;
}

.link-2 {
  color: #fff;
}

.link-2.w--current {
  filter: drop-shadow(0 2px #000);
  color: var(--white);
  font-size: 30px;
  line-height: 36px;
  text-decoration: none;
}

.image {
  filter: drop-shadow(2px 2px 2px #000000b3);
}

.body {
  background-color: var(--navy-blue);
}

.footer-light {
  border-top: 2px solid var(--red);
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 0 30px 40px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 200px;
}

.footer-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-brand-2 {
  width: 120px;
}

.footer-block-two {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-title {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.footer-link-two {
  color: #5866a2;
  margin-top: 10px;
  font-family: myriad-pro, sans-serif;
  text-decoration: none;
}

.footer-link-two:hover {
  color: #1a1b1fbf;
}

.footer-form {
  width: 250px;
  max-width: 100%;
  margin-bottom: 0;
  display: none;
}

.footer-form-container {
  background-color: var(--dark-blue);
  border-radius: 4px;
  padding-bottom: 10px;
}

.footer-form-block {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.footer-form-field {
  border: 1px solid #a6b1bf;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 22px;
  transition: all .2s;
}

.footer-form-field:hover, .footer-form-field:focus {
  border-color: #76879d;
}

.footer-form-field::placeholder {
  color: #1a1b1fcc;
  font-size: 14px;
  line-height: 22px;
}

.footer-form-submit {
  background-color: #1a1b1f;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 20px;
  height: 48px;
  transition: all .2s;
}

.footer-form-submit:hover {
  background-color: #3a4554;
}

.footer-divider-two {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: var(--white);
  font-family: Oswald, sans-serif;
}

.footer-social-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: -12px;
  display: flex;
}

.footer-social-link-2 {
  width: 35px;
  margin-left: 12px;
}

.hero-stack {
  background-color: var(--navy-blue);
  height: 100vh;
  padding: 200px 0 165px;
  position: relative;
}

.hero-text-holder {
  z-index: 100;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.margin-bottom-24px-2 {
  filter: drop-shadow(0px 2px 2px var(--black));
  color: var(--white);
  margin-bottom: 24px;
  font-family: myriad-pro, sans-serif;
  font-size: 18px;
  line-height: 22px;
}

.button-primary-3 {
  background-color: var(--red);
  filter: drop-shadow(0 2px 2px #000);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #fff0;
  border-radius: 4px;
  width: 50%;
  padding: 9px 15px;
  font-family: myriad-pro, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.hero-image {
  width: 100%;
  margin-top: 50px;
}

.image-2 {
  filter: drop-shadow(2px 2px 2px #000000b3);
}

.button {
  background-color: var(--red);
  filter: drop-shadow(0 2px 2px #000);
  width: 50%;
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #fff0;
  border-radius: 4px;
  font-family: myriad-pro, sans-serif;
  font-weight: 700;
}

.section-2 {
  background-image: url('../images/Flag.png');
  background-position: 50%;
  background-size: auto;
  width: 100%;
}

.section-3 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: auto;
}

.heading-2 {
  filter: drop-shadow(0 2px 2px #000);
  color: var(--white);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 42px;
  line-height: 48px;
}

.footer-container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
}

.left-link-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  display: flex;
}

.link-3 {
  color: var(--white);
  text-decoration: none;
}

.div-block {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.mobile-footer-button {
  width: 315px;
  max-width: 100%;
  margin-bottom: 0;
  display: none;
}

.div-block-2 {
  z-index: 50;
  position: absolute;
  inset: 0%;
}

.background-video {
  background-image: linear-gradient(180deg, #fff0, var(--navy-blue));
  height: 100%;
  padding-top: 0;
  position: absolute;
  inset: 0%;
}

.div-block-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
  display: flex;
}

.text-block-2 {
  color: var(--white);
  font-family: Oswald, sans-serif;
  text-decoration: none;
}

.footer-title-join-the-al {
  color: var(--red);
  text-align: center;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.hero-heading {
  filter: drop-shadow(0 2px 2px #000);
  color: var(--white);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 42px;
  line-height: 48px;
}

.hero-sub-text {
  filter: drop-shadow(0px 2px 2px var(--black));
  color: var(--white);
  margin-bottom: 24px;
  font-family: myriad-pro, sans-serif;
  font-size: 18px;
  line-height: 22px;
}

.hero-button {
  background-color: var(--red);
  filter: drop-shadow(0 2px 2px #000);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #fff0;
  border-radius: 4px;
  padding: 9px 15px;
  font-family: myriad-pro, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  transition: all .2s;
}

.hero-button:hover {
  color: #fff;
  background-color: #32343a;
}

.hero-button:active {
  background-color: #43464d;
}

.hero-background-video {
  background-image: linear-gradient(180deg, #fff0, var(--navy-blue));
  color: #333;
  height: 100%;
  padding-top: 0;
  position: absolute;
  inset: 0%;
}

.navigation {
  z-index: 200;
  background-color: var(--navy-blue);
  filter: drop-shadow(0 2px 5px #000000b3);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-info {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1260px;
  padding: 20px;
}

.navbar-info-content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.left-nav-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  display: flex;
}

.nav-address-link {
  color: var(--white);
  text-decoration: none;
}

.nav-home-link {
  color: #fff;
  font-size: 30px;
  line-height: 36px;
  text-decoration: none;
}

.nav-home-link.w--current {
  filter: drop-shadow(0 2px #000);
  color: var(--white);
  font-size: 30px;
  line-height: 36px;
  text-decoration: none;
}

.american-legion-logo {
  filter: drop-shadow(2px 2px 2px #000000b3);
}

.navigation-logo-link, .navigation-logo-link.w--current {
  width: 100px;
}

.footer-logo {
  filter: drop-shadow(2px 2px 2px #000000b3);
}

.footer-logo-link {
  width: 120px;
}

.footer-content-wrapper-1 {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  display: flex;
}

.footer-content-wrapper-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
  display: flex;
}

.footer-content-wrapper-2.mobile {
  display: none;
}

.footer-content-wrapper-3 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-split {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-facebook-link {
  width: 35px;
  margin-left: 12px;
}

.footer-facebook-logo-holder {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: -12px;
  display: flex;
}

.footer {
  border-top: 2px solid var(--red);
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 0 30px 40px;
  position: relative;
}

.footer-phone-number-link, .footer-adress-link {
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.footer-page-link {
  color: var(--lighter-blue);
  margin-top: 10px;
  font-family: myriad-pro, sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.footer-page-link:hover {
  color: #1a1b1fbf;
}

.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;
}

.section-4 {
  background-color: var(--dark-blue);
}

.info-heading {
  color: var(--white);
  margin-bottom: 0;
  padding-bottom: 30px;
  font-family: Oswald, sans-serif;
}

.paragraph {
  color: var(--lighter-blue);
  font-family: myriad-pro, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.container-4 {
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.div-block-4 {
  width: 50%;
}

.subheading {
  color: var(--red);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-family: Oswald, sans-serif;
}

.div-block-6 {
  width: 50%;
}

.div-block-7 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  display: flex;
}

.div-block-8 {
  border: 2px solid var(--red);
  border-radius: 5px;
  overflow: hidden;
}

.div-block-9 {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 40px;
  display: flex;
}

.div-block-10 {
  width: 300px;
}

.section-5 {
  background-color: var(--dark-blue);
  background-image: linear-gradient(to bottom, var(--50-navy), var(--50-navy)), url('../images/IMG_4673.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  height: 100vh;
}

.container-5 {
  z-index: 20;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 300px;
  padding-bottom: 300px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.heading-3 {
  filter: drop-shadow(0 0 5px #000000e6);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 45px;
  line-height: 48px;
}

.div-block-11 {
  justify-content: center;
  align-items: center;
  width: 250px;
  display: flex;
}

.image-4 {
  filter: drop-shadow(0 0 4px #000000e6);
  width: 100%;
}

.button-2 {
  background-color: var(--navy-blue);
  border-radius: 5px;
  font-family: myriad-pro, sans-serif;
}

.div-block-12 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-6 {
  background-color: var(--dark-blue);
}

.body-2 {
  background-color: var(--navy-blue);
}

.about-button, .scouts-button {
  background-color: var(--navy-blue);
  border-radius: 5px;
  font-family: myriad-pro, sans-serif;
}

.numbers {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-family: Oswald, sans-serif;
}

.div-block-13 {
  padding-top: 30px;
}

.link-4, .link-5, .link-6, .link-7 {
  color: var(--white);
  text-decoration: none;
}

.scouts-opening-background {
  background-color: var(--dark-blue);
  background-image: linear-gradient(to bottom, var(--50-navy), var(--50-navy)), url('../images/0f77915b-d0a6-44ba-8d97-1340d0f7b92e.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.bs-logo, .image-4-copy {
  filter: drop-shadow(0 0 4px #000000e6);
}

.container-6 {
  justify-content: space-between;
  align-items: center;
  max-width: 1260px;
  padding-top: 20px;
  padding-bottom: 100px;
  display: flex;
}

.emblem-holder {
  justify-content: center;
  align-items: center;
  width: 200px;
  display: flex;
}

.image-5, .image-6, .image-7 {
  filter: drop-shadow(0 0 6px #000000e6);
  width: 100%;
}

.main-post-link-holder {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-content-wrapper-4 {
  border-top: 2px solid var(--red);
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 5px;
  display: flex;
}

.main-footer-page-link {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 10px;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
}

.main-footer-page-link:hover {
  color: #1a1b1fbf;
}

.body-3 {
  background-color: var(--navy-blue);
}

.container-7 {
  padding-top: 0;
}

.section-7 {
  background-color: var(--dark-blue);
  padding-top: 20px;
}

.heading-4 {
  color: var(--white);
  text-align: left;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}

.heading-5 {
  color: var(--red);
  text-align: center;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 24px;
}

.text-block-3 {
  color: var(--light-blue);
  font-family: myriad-pro, sans-serif;
  font-size: 16px;
}

.link-8 {
  color: var(--red);
  text-decoration: none;
}

.hall-rental-image-holder {
  border: 2px solid var(--red);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 200px;
  display: flex;
  overflow: hidden;
}

.container-8 {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.section-8 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  background-color: var(--dark-blue);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 60px;
  display: flex;
}

.body-4 {
  background-color: var(--navy-blue);
}

.section-9 {
  background-color: var(--dark-blue);
  padding-bottom: 60px;
}

.container-9 {
  padding-top: 180px;
  padding-bottom: 20px;
}

.heading-6 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}

.list {
  color: var(--red);
  font-family: Oswald, sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.div-block-14 {
  width: 220px;
}

.image-8 {
  width: 100%;
}

.container-10 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-10 {
  background-image: linear-gradient(to bottom, var(--70-navy-blue), var(--70-navy-blue)), url('../images/FullSizeRender.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  height: 100%;
  padding-bottom: 50px;
}

.container-11 {
  padding-top: 220px;
}

.heading-7 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 60px;
  line-height: 65px;
}

.sponsor-logo {
  filter: drop-shadow(0 0 6px #000000e6);
  width: 100%;
}

.text-block-4 {
  color: var(--white);
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Oswald, sans-serif;
  font-size: 24px;
  line-height: 26px;
}

.div-block-15 {
  background-image: linear-gradient(to bottom, var(--navy-blue), var(--navy-blue));
  text-align: left;
  border-radius: 6px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px;
  display: flex;
}

.div-block-15.august {
  display: none;
}

.div-block-16 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
  display: flex;
}

.heading-8 {
  color: var(--red);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}

.div-block-17 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 10px;
  display: flex;
}

.div-block-18 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-9 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}

.text-block-5 {
  color: var(--lighter-blue);
  font-family: myriad-pro, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.local-meetings {
  border-top: 1px solid var(--red);
  background-color: var(--dark-blue);
  padding-top: 8px;
  padding-bottom: 40px;
}

.div-block-19 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.district-meetings {
  background-color: var(--dark-blue);
  padding-top: 8px;
  padding-bottom: 40px;
}

.text-block-6 {
  font-family: Oswald, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.heading-10 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}

.paragraph-2 {
  color: var(--lighter-blue);
  font-family: myriad-pro, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.div-block-20 {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-11 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}

.list-2 {
  color: var(--lighter-blue);
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.div-block-21 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.heading-12 {
  color: var(--white);
  text-align: center;
  font-family: Oswald, sans-serif;
}

.link-9 {
  color: var(--white);
  text-decoration: none;
}

.section-11 {
  padding-bottom: 60px;
}

.auxiliary-logo {
  filter: drop-shadow(0 0 4px #000000e6);
  width: 100%;
}

.heading-13 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}

.list-3 {
  color: var(--lighter-blue);
  text-transform: none;
  font-family: Oswald, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.contact-heading {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}

.link-10 {
  color: var(--white);
  text-decoration: none;
}

.sal-logo {
  filter: drop-shadow(0 0 4px #000000e6);
  width: 100%;
}

.body-2-copy {
  background-color: var(--navy-blue);
}

.auxiliary-body {
  background-color: var(--dark-blue);
  background-image: linear-gradient(to bottom, var(--50-navy), var(--50-navy)), url('../images/AdobeStock_308295094.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  height: 100vh;
}

.american-legion-riders-logo {
  filter: drop-shadow(0 0 4px #000000e6);
  width: 100%;
}

.heading-14 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 35px;
  font-family: Oswald, sans-serif;
}

.paragraph-3 {
  color: var(--lighter-blue);
  font-family: myriad-pro, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.heading-15 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}

.list-4 {
  color: var(--lighter-blue);
  text-align: left;
  font-family: Oswald, sans-serif;
  font-size: 16px;
}

.div-block-22 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-span, .text-span-2, .text-span-3 {
  color: var(--red);
}

.message-heading {
  color: var(--white);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-style: italic;
}

.distance-message {
  color: var(--red);
  font-family: myriad-pro, sans-serif;
  font-size: 16px;
  font-style: italic;
}

.honor-run-div {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-bottom: 1px solid var(--white);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.heading-16 {
  font-family: Oswald, sans-serif;
}

.container-12 {
  border-bottom: 1px solid var(--white);
  padding-bottom: 10px;
}

.heading-17 {
  color: var(--white);
  text-align: center;
  -webkit-text-decoration-skip-ink: auto;
  text-decoration-skip-ink: auto;
  font-family: adobe-caslon-pro, sans-serif;
  font-weight: 600;
  text-decoration: none;
  text-decoration-thickness: 2px;
}

.text-block-7 {
  color: var(--white);
  text-align: center;
  font-family: myriad-pro, sans-serif;
  font-size: 16px;
}

.section-12 {
  padding-bottom: 60px;
}

.text-block-8 {
  color: var(--white);
  text-align: center;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.div-block-23 {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-24 {
  grid-column-gap: 41px;
  grid-row-gap: 41px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-11 {
  color: var(--white);
  text-decoration: none;
}

.link-12, .link-13 {
  color: var(--red);
  text-decoration: none;
}

.container-13 {
  background-color: var(--dark-blue);
  border-radius: 7px;
  padding: 10px 10px 20px;
}

.button-3 {
  background-color: var(--red);
  filter: drop-shadow(0 2px 5px #000000b3);
  border-radius: 4px;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  line-height: 22px;
}

.slider {
  z-index: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  inset: 0% 0% auto auto;
  overflow: visible;
}

.slide {
  background-color: var(--dark-blue);
  height: 100%;
}

.div-block-25 {
  width: 100%;
}

.scout-slider-image-holder {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.scout-slider-image-holder-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.image-9 {
  width: 100%;
}

.slide-2 {
  height: 100%;
}

.section-13 {
  background-color: var(--dark-blue);
  padding-bottom: 30px;
}

.div-block-26 {
  overflow: hidden;
}

.grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: stretch stretch;
}

.scouts-photo-holder {
  border: 2px solid var(--light-blue);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 200px;
  display: flex;
  overflow: hidden;
}

.lightbox {
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 200px;
  display: flex;
  overflow: hidden;
}

.lightbox-cover {
  width: 100%;
  max-width: none;
}

.lightbox-cover-2 {
  max-width: none;
  height: 100%;
}

.text-block-9 {
  color: var(--lighter-blue);
  padding-bottom: 12px;
  font-family: myriad-pro, sans-serif;
  font-size: 16px;
}

.section-14 {
  justify-content: center;
  align-items: center;
}

.div-block-27 {
  z-index: 1;
  background-color: var(--red);
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  position: relative;
}

.div-block-28 {
  z-index: 2;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
}

.div-block-29 {
  width: 450px;
  padding-top: 10px;
  padding-right: 10px;
}

.image-11 {
  border: 2px solid var(--red);
  border-radius: 5px;
}

.div-block-30 {
  z-index: 100;
  justify-content: center;
  align-items: flex-end;
  padding-top: 220px;
  display: flex;
  position: relative;
}

.rental-lightbox {
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 200px;
  display: flex;
  overflow: visible;
}

.image-13 {
  max-width: none;
  height: 100%;
}

.rental-image.rental-image-width {
  width: 100%;
}

.rental-image.rental-image-height {
  max-width: none;
  height: 100%;
}

.text-block-10 {
  color: var(--white);
  text-align: center;
  padding-top: 4px;
  font-family: myriad-pro, sans-serif;
  font-size: 18px;
}

.riders-hero {
  background-color: var(--dark-blue);
  background-image: linear-gradient(to bottom, var(--50-navy), var(--50-navy)), url('../images/American-Legion-Riders-Background.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  height: 100vh;
}

.rider-image-holder {
  border: 2px solid var(--light-blue);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 200px;
  display: flex;
  overflow: hidden;
}

.rider-lightbox {
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 200px;
  display: flex;
  overflow: hidden;
}

.text-span-4, .text-span-5, .text-span-6, .text-span-7 {
  color: var(--red);
}

.footer-facebook-link-copy, .nav-facebook-link {
  width: 35px;
  margin-left: 12px;
}

.link-14, .link-15 {
  color: var(--white);
  text-decoration: none;
}

.text-span-8, .text-span-9, .text-span-10, .text-span-11, .link-16 {
  color: var(--red);
}

.container-14 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 40px;
  display: flex;
}

.heading-18 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
}

.div-block-31 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-11 {
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
}

.div-block-32 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.section-15 {
  background-color: var(--dark-blue);
}

.text-span-12, .text-span-13, .text-span-14 {
  color: var(--red);
}

.heading-19 {
  color: var(--red);
  text-align: center;
  font-family: myriad-pro, sans-serif;
}

.text-block-12 {
  display: none;
}

.div-block-33 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-span-15 {
  text-transform: uppercase;
}

.body-5 {
  background-color: var(--dark-blue);
}

.container-15 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 220px;
  padding-bottom: 220px;
  display: flex;
}

.div-block-35 {
  background-color: var(--dark-blue);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-20 {
  color: var(--red);
  text-align: center;
  font-family: Oswald, sans-serif;
  font-size: 60px;
  line-height: 60px;
}

.link-17, .link-18 {
  color: var(--lighter-blue);
  text-decoration: none;
}

.div-block-36 {
  background-color: var(--50-navy);
  border-radius: 7px;
  width: 70%;
}

.text-block-13 {
  color: var(--white);
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Oswald, sans-serif;
  font-size: 30px;
  line-height: 35px;
}

.heading-21 {
  color: var(--lighter-blue);
  font-family: myriad-pro-condensed, sans-serif;
  font-size: 24px;
  line-height: 26px;
}

@media screen and (max-width: 991px) {
  .nav-menu-wrapper {
    background-color: #0000;
    justify-content: flex-end;
    align-items: stretch;
    width: 70%;
    inset: 99% 0% auto auto;
  }

  .nav-menu {
    background-color: var(--navy-blue);
    border-bottom-left-radius: 4px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-left: 0;
    display: flex;
  }

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

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .container {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .heading {
    text-align: left;
  }

  .header-text {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
  }

  .container-3 {
    max-width: 728px;
  }

  .footer-wrapper-two {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-form {
    width: 100%;
    margin-top: 40px;
    display: none;
  }

  .footer-form-container {
    width: 100%;
    max-width: 350px;
  }

  .hero-stack {
    height: 100%;
    padding-bottom: 200px;
  }

  .footer-container {
    max-width: 728px;
  }

  .left-link-holder {
    width: 80%;
  }

  .mobile-footer-button {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    display: none;
  }

  .icon {
    color: var(--white);
  }

  .left-nav-holder {
    width: 80%;
  }

  .footer-content-wrapper-1 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-content-wrapper-2 {
    justify-content: center;
    align-items: center;
    padding-top: 35px;
  }

  .div-block-5 {
    width: 728px;
  }

  .div-block-7 {
    justify-content: space-between;
    align-items: flex-start;
  }

  .div-block-10 {
    width: 225px;
  }

  .emblem-holder {
    width: 150px;
  }

  .footer-content-wrapper-4 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .hall-rental-image-holder.not-full-row {
    width: 200px;
  }

  .container-10 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }

  .text-block-9 {
    padding-left: 30px;
  }

  .div-block-29 {
    width: 300px;
  }

  .rental-image.rental-image-width {
    width: auto;
    max-width: none;
    height: 100%;
  }
}

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

  .nav-menu-wrapper {
    flex-flow: row;
    justify-content: flex-end;
    align-items: stretch;
    width: 100%;
  }

  .nav-menu {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .hero-heading-left {
    padding: 60px 15px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .logo-lin.w--current {
    width: 50px;
  }

  .heading {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
  }

  .link {
    font-size: 10px;
    line-height: 12px;
  }

  .link-2.w--current {
    font-size: 16px;
    line-height: 22px;
  }

  .footer-light {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-3 {
    padding-top: 60px;
  }

  .footer-brand-2 {
    width: 50px;
  }

  .footer-link-two {
    margin-top: 5px;
  }

  .footer-form-container {
    max-width: none;
  }

  .footer-bottom {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copyright {
    font-size: 10px;
    line-height: 16px;
  }

  .footer-social-block-two {
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    margin-left: 0;
  }

  .footer-social-link-2 {
    margin-left: 20px;
  }

  .hero-stack {
    background-size: auto, cover;
    padding: 165px 15px 120px;
  }

  .margin-bottom-24px-2 {
    font-size: 16px;
    line-height: 20px;
  }

  .button-primary-3 {
    font-size: 12px;
    line-height: 18px;
  }

  .button {
    width: 175px;
    font-size: 12px;
    line-height: 18px;
  }

  .heading-2 {
    font-size: 36px;
    line-height: 38px;
  }

  .footer-container {
    padding-top: 40px;
  }

  .mobile-footer-button {
    margin-top: 20px;
  }

  .div-block-3 {
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }

  .hero-heading {
    font-size: 36px;
    line-height: 38px;
  }

  .hero-sub-text {
    font-size: 16px;
    line-height: 20px;
  }

  .hero-button {
    font-size: 12px;
    line-height: 18px;
  }

  .nav-address-link {
    font-size: 10px;
    line-height: 12px;
  }

  .nav-home-link {
    font-size: 22px;
    line-height: 24px;
  }

  .nav-home-link.w--current {
    font-size: 16px;
    line-height: 22px;
  }

  .navigation-logo-link, .navigation-logo-link.w--current {
    width: 50px;
  }

  .footer-logo-link {
    width: 100px;
  }

  .footer-content-wrapper-1 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .footer-content-wrapper-2 {
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }

  .footer-content-wrapper-3 {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-facebook-link {
    margin-left: 20px;
  }

  .footer-facebook-logo-holder {
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    margin-left: 0;
  }

  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-page-link {
    margin-top: 5px;
  }

  .container-4 {
    padding: 10px 20px 40px;
  }

  .div-block-6 {
    width: 100%;
  }

  .div-block-7 {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .div-block-9 {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
    flex-flow: column;
  }

  .div-block-10 {
    width: auto;
  }

  .image-3 {
    height: 300px;
  }

  .section-5 {
    height: 100%;
  }

  .container-5 {
    padding-top: 200px;
    padding-bottom: 100px;
    position: relative;
  }

  .heading-3 {
    font-size: 35px;
    line-height: 38px;
  }

  .div-block-11 {
    width: 150px;
  }

  .scouts-opening-background {
    height: 100%;
  }

  .emblem-holder {
    width: 100px;
  }

  .footer-content-wrapper-4 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .main-footer-page-link {
    margin-top: 5px;
  }

  .container-7 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .heading-4 {
    font-size: 24px;
    line-height: 26px;
  }

  .heading-5 {
    font-size: 18px;
    line-height: 24px;
  }

  .hall-rental-image-holder, .hall-rental-image-holder.not-full-row {
    width: 350px;
  }

  .container-8 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-8 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-top: 0;
  }

  .section-9 {
    padding-bottom: 40px;
  }

  .container-9 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-14 {
    width: 100px;
  }

  .container-11 {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .local-meetings, .district-meetings, .div-block-21 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .auxiliary-body {
    height: 100%;
  }

  .heading-14 {
    padding-top: 20px;
  }

  .container-12 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-12 {
    padding-bottom: 30px;
  }

  .div-block-24 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .container-13 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .grid {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .scouts-photo-holder.mobile-horizontal {
    display: none;
  }

  .text-block-9 {
    text-align: center;
    padding-left: 0;
  }

  .div-block-29 {
    width: 200px;
  }

  .rental-lightbox {
    width: 350px;
  }

  .rental-image.rental-image-width {
    width: 100%;
    height: auto;
  }

  .text-block-10 {
    font-size: 14px;
  }

  .riders-hero {
    height: 100%;
  }

  .rider-image-holder.mobile-horizontal {
    display: none;
  }

  .footer-facebook-link-copy {
    margin-left: 20px;
  }

  .nav-facebook-link {
    margin-left: 0;
    padding-top: 10px;
  }

  .container-14 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-18 {
    font-size: 28px;
    line-height: 30px;
  }

  .text-block-11, .heading-19 {
    font-size: 20px;
    line-height: 22px;
  }
}

@media screen and (max-width: 479px) {
  .nav-menu-wrapper {
    width: 50%;
  }

  .nav-menu {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-direction: column;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide, .nav-dropdown-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .container {
    max-width: none;
  }

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

  .container-3 {
    max-width: none;
  }

  .footer-wrapper-two {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-brand-2 {
    display: none;
  }

  .footer-block-two {
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
  }

  .footer-bottom {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-social-block-two {
    margin-top: 0;
  }

  .hero-stack {
    height: 100vh;
  }

  .heading-2 {
    font-size: 32px;
    line-height: 34px;
  }

  .footer-container {
    max-width: none;
  }

  .div-block {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
  }

  .hero-heading {
    font-size: 32px;
    line-height: 34px;
  }

  .nav-home-link {
    font-size: 16px;
    line-height: 22px;
  }

  .navigation-logo-link {
    width: 50px;
  }

  .footer-logo-link {
    display: none;
  }

  .footer-content-wrapper-1 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-content-wrapper-2 {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    padding-bottom: 15px;
    display: none;
  }

  .footer-content-wrapper-2.mobile {
    display: flex;
  }

  .footer-content-wrapper-3 {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-facebook-logo-holder {
    margin-top: 0;
  }

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

  .footer-phone-number-link {
    font-size: 14px;
    line-height: 16px;
  }

  .footer-adress-link {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
  }

  .info-heading {
    font-size: 32px;
    line-height: 36px;
  }

  .paragraph {
    line-height: 22px;
  }

  .container-4 {
    padding-top: 10px;
  }

  .container-5 {
    padding-top: 220px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-3 {
    font-size: 24px;
    line-height: 26px;
  }

  .div-block-11 {
    width: 200px;
  }

  .container-6 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .emblem-holder {
    width: 200px;
  }

  .main-post-link-holder {
    grid-column-gap: 23px;
    grid-row-gap: 23px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    display: grid;
  }

  .footer-content-wrapper-4 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: flex-start;
    place-items: center stretch;
    display: flex;
  }

  .main-footer-page-link, .main-footer-page-link.w--current {
    text-align: center;
  }

  .hall-rental-image-holder, .hall-rental-image-holder.not-full-row {
    width: 250px;
  }

  .container-8 {
    padding-bottom: 0;
  }

  .section-8 {
    padding-bottom: 20px;
  }

  .container-9 {
    padding-top: 100px;
  }

  .heading-6 {
    text-align: center;
    font-size: 22px;
    line-height: 24px;
  }

  .list {
    font-size: 16px;
    line-height: 18px;
  }

  .div-block-14 {
    justify-content: center;
    align-items: center;
    width: 200px;
    display: flex;
  }

  .container-10 {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    flex-flow: column;
  }

  .container-11 {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .local-meetings, .district-meetings {
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-6 {
    border-top: 1px solid var(--red);
    text-align: center;
    padding-top: 5px;
    font-size: 14px;
    line-height: 16px;
  }

  .div-block-21 {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .list-3 {
    text-align: left;
    flex-flow: column;
    display: flex;
  }

  .section-13 {
    padding-bottom: 10px;
  }

  .scouts-photo-holder {
    width: 250px;
    height: 150px;
  }

  .rental-image.rental-image-width {
    width: auto;
    height: 100%;
  }

  .rider-image-holder {
    width: 250px;
    height: 150px;
  }

  .container-14 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .heading-19 {
    display: none;
  }

  .text-block-12 {
    color: var(--red);
    font-family: myriad-pro, sans-serif;
    display: block;
  }

  .div-block-34 {
    text-align: center;
  }

  .text-span-16 {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 20px;
  }
}

#w-node-a4f06458-7c3a-5aa0-f0be-e5f5a9bff74e-6f5e5bc2, #w-node-b6542013-bc5a-3138-6d63-39ef131b58b3-0494ec1e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-e3bf5a25-38e2-7fd4-53ff-a1d27b6a2977-6f5e5bc2, #w-node-cc55edd9-1261-7cc6-96ae-af528a83eb81-6f5e5bc2, #w-node-_1576a112-e273-a6b5-4441-c85e18f69168-6f5e5bc2, #w-node-a5dd705c-f467-96bf-2d41-8b2927a777cd-6f5e5bc2, #w-node-b8683b2b-ce88-bc98-8279-7d12d5988080-6f5e5bc2, #w-node-b6542013-bc5a-3138-6d63-39ef131b58b6-0494ec1e, #w-node-b6542013-bc5a-3138-6d63-39ef131b58b9-0494ec1e, #w-node-b6542013-bc5a-3138-6d63-39ef131b58bc-0494ec1e, #w-node-b6542013-bc5a-3138-6d63-39ef131b58bf-0494ec1e, #w-node-b6542013-bc5a-3138-6d63-39ef131b58c2-0494ec1e {
    place-self: center;
  }
}


