body.page-template-page-anf-landing {
  background: #e8e4cf;
}

.page-template-page-anf-landing #top-header,
.page-template-page-anf-landing #main-header,
.page-template-page-anf-landing #main-footer,
.page-template-page-anf-landing footer,
.page-template-page-anf-landing .et-l--header,
.page-template-page-anf-landing .et-l--footer,
.page-template-page-anf-landing .et_builder_inner_content > .et_pb_section.et_pb_section_0_tb_header,
.page-template-page-anf-landing .et_builder_inner_content > .et_pb_section.et_pb_section_0_tb_footer {
  display: none !important;
}

.page-template-page-anf-landing #page-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
  min-height: 100vh;
}

.page-template-page-anf-landing #et-main-area,
.page-template-page-anf-landing #main-content,
.page-template-page-anf-landing .container,
.page-template-page-anf-landing .et_pb_section,
.page-template-page-anf-landing .et_pb_row {
  width: 100%;
  max-width: 100%;
}

.page-template-page-anf-landing #main-content .container {
  width: 100%;
  max-width: 100%;
  padding: 0 !important;
}

.page-template-page-anf-landing #left-area {
  width: 100%;
  float: none;
  padding: 0;
}

.page-template-page-anf-landing #sidebar {
  display: none;
}

.anf-landing-page {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: clip;
}

.anf-landing-shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
}

.anf-video-section {
  width: 100%;
  margin: 0 0 clamp(20px, 3vw, 40px);
}

.anf-video-wrap {
  width: 100%;
}

.anf-video-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.anf-video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.anf-scroll-prompt-section {
  display: flex;
  justify-content: center;
  margin: 0 0 clamp(20px, 3vw, 40px);
}

.anf-scroll-prompt {
  width: min(100%, 456px);
  padding: clamp(12px, 1.6vw, 20px);
  background: rgba(68, 105, 132, 0.82);
  text-align: center;
  box-sizing: border-box;
}

.anf-scroll-prompt img {
  display: block;
  width: 100%;
  max-width: 456px;
  height: auto;
  margin: 0 auto;
}

.anf-message-section {
  width: 100%;
}

.anf-message-grid {
  display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  align-items: stretch;
}

.anf-card {
  min-width: 0;
}

.anf-card-inner {
  height: 100%;
  padding: clamp(22px, 2.2vw, 34px);
  box-sizing: border-box;
}

.anf-card-light {
  background: rgba(255, 255, 255, 0.79);
}

.anf-card-blue {
  background: #002f49;
  color: #fff;
  display: flex;
}

.anf-card-blue .anf-card-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.anf-card-blue h1 {
  margin: 0 0 18px;
  color: #fff;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.anf-card-blue h4 {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.45;
  font-weight: 700;
}

.anf-card p {
  margin: 0 0 20px;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.65;
}

.anf-logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
  margin: 0 auto 24px;
}

.anf-logo-kiwanis {
  width: min(100%, 293px);
}

.anf-button-wrap {
  text-align: center;
  margin-top: 24px;
}

.anf-image-button img {
  display: inline-block;
  width: min(227px, 100%);
  height: auto;
}

@media (max-width: 1100px) {
  .anf-message-grid {
    grid-template-columns: 1fr;
  }

  .anf-card-blue {
    order: -1;
  }

  .anf-card-blue h1 {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .anf-landing-shell {
    padding: 12px;
  }

  .anf-scroll-prompt {
    width: 100%;
  }

  .anf-card-inner {
    padding: 20px 16px;
  }

  .anf-card p,
  .anf-card-blue h4 {
    text-align: center;
  }
}

.anf-animate {
  opacity: 0;
  transform: translateY(24px);
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.anf-animate-fade {
  animation-name: anfFadeUp;
}

.anf-animate-rise {
  animation-name: anfFadeUp;
  animation-delay: 0.12s;
}

.anf-animate-bounce {
  animation-name: anfBounceUp;
  animation-delay: 0.18s;
}

@keyframes anfFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anfBounceUp {
  0% {
    opacity: 0;
    transform: translateY(38px);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .anf-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
