*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h2--cream,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

button {
  border: none;
}

.bg--orange {
  background-color: #FAA521;
}

.bg--light-green {
  background-color: #C4D58F;
}

.bg--dark-green {
  background-color: #447C28;
}

.bg--cream {
  background-color: #FFEAC2;
}

.bg--black {
  background-color: #362822;
}

.text--orange {
  color: #FAA521;
}

.text--cream {
  color: #FFEAC2;
}

body {
  font-size: 1.125rem;
  font-family: "Karla", "Arial", sans-serif;
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

.brown-text {
  color: #7D6A58;
}

.line-clamp, .line-clamp-3, .line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}

.mb-24 {
  margin-bottom: 1.5rem;
}

.mb-36 {
  margin-bottom: 2.25rem;
}

.mb-48 {
  margin-bottom: 3rem;
}

.mb-60 {
  margin-bottom: 3.75rem;
}

.mt-24 {
  margin-top: 1.5rem;
}

.mt-36 {
  margin-top: 2.25rem;
}

.mt-48 {
  margin-top: 3rem;
}

.mt-60 {
  margin-top: 3.75rem;
}

.spacer {
  height: 1rem;
}

.fade-in {
  opacity: 0;
}
.fade-in--active {
  animation: fade-in 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-right {
  opacity: 0;
  transform: translateX(100px);
}
.fade-right--active {
  animation: fade-right 1s ease-out 0s 1 normal forwards;
}

.fade-left {
  opacity: 0;
  transform: translateX(-100px);
}
.fade-left--active {
  animation: fade-left 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(100px);
}
.fade-up--active {
  animation: fade-up 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoom-in-container {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.zoom-in {
  transform: scale(1);
  z-index: -1;
}
.zoom-in--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
    z-index: -1;
  }
  100% {
    transform: scale(1.075);
    z-index: -1;
  }
}
.zoom-out-container {
  overflow: hidden;
  max-width: 100%;
}

.zoom-out {
  transform: scale(1.075);
  z-index: -1;
}
.zoom-out--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-out {
  0% {
    transform: scale(1.075);
    z-index: -1;
  }
  100% {
    transform: scale(1);
    z-index: -1;
  }
}
.line-fade {
  width: 0px;
}
.line-fade--active {
  animation: line-fade 1s ease-out 1 normal forwards;
}

@keyframes line-fade {
  0% {
    width: 0px;
  }
  100% {
    width: 50px;
  }
}
.rotate-image {
  transform: rotate(180deg);
}
.rotate-image--active {
  animation: rotate 1s ease-out normal forwards;
}

@keyframes rotate {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.border, .border-bottom, .border-right, .border-left {
  position: absolute;
  z-index: 100;
}
.border-left {
  height: 0px;
  width: 15px;
  left: 0;
  top: 0;
}
.border-left--active {
  animation: border-up 1.5s ease-in-out normal forwards;
}
.border-right {
  height: 0px;
  width: 15px;
  right: 0;
  bottom: 0;
}
.border-right--active {
  animation: border-up 1.5s ease-in-out normal forwards;
}
.border-bottom {
  height: 15px;
  width: 0px;
  bottom: 0;
  left: 0;
}
.border-bottom--active {
  animation: border-left 1.5s ease-in-out normal forwards;
}

@keyframes border-up {
  0% {
    height: 0px;
  }
  100% {
    height: 100%;
  }
}
@keyframes border-left {
  0% {
    width: 0px;
  }
  100% {
    width: 100%;
  }
}
.delay {
  animation-delay: 0.25s;
}

.delay-long {
  animation-delay: 0.5s;
}

.delay-longer {
  animation-delay: 0.75s;
}

.border-left {
  height: 0px;
  width: 15px;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 100;
}

.border-bottom {
  height: 15px;
  width: 0px;
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 100;
}

.button, .button--orange, .button--white, .button--green {
  padding: 0.75rem 1.5rem;
  border: none;
  font-family: "Karla", "Arial", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.button:hover, .button--orange:hover, .button--white:hover, .button--green:hover {
  cursor: pointer;
}
.button--green {
  background-color: #C4D58F;
  color: #362822;
}
.button--white {
  background-color: #FFFFFF;
  color: #362822;
  padding: 0.3125rem 1.5rem;
  border: 3px solid #362822;
}
.button--orange {
  background-color: #FAA521;
  color: #362822;
}

h1,
h2,
h2--cream {
  font-family: "Playfair Display", "Karla", "Arial", sans-serif, serif;
  line-height: 1.2;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #FFEAC2;
}
@media (max-width: 599px) {
  h1 {
    font-size: 2.1875rem;
  }
}

h2, h2--cream {
  font-size: 2.5rem;
  font-weight: 800;
}
@media (max-width: 599px) {
  h2, h2--cream {
    font-size: 1.875rem;
  }
}
h2--cream {
  color: #FFEAC2;
}

.heading, .heading--bold {
  font-size: 1.5rem;
}
@media (max-width: 599px) {
  .heading, .heading--bold {
    font-size: 1.25rem;
  }
}
.heading--bold {
  font-weight: 800;
}

img {
  object-fit: cover;
}

.icon--small {
  width: 1.5rem;
}

.icon--large {
  width: 3rem;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

.container, .container--narrow, .container--small {
  margin-right: auto;
  margin-left: auto;
  max-width: 1090px;
  box-sizing: content-box;
  padding-left: 24px;
  padding-right: 24px;
}
.container--small {
  max-width: 896px;
}
.container--narrow {
  max-width: 650px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.fdc {
  flex-direction: column;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

.aife {
  align-items: flex-end;
}

.gap-12 {
  gap: 0.75rem;
}

.gap-24 {
  gap: 1.5rem;
}

.gap-36 {
  gap: 2.25rem;
}

.gap-48 {
  gap: 3rem;
}

.cards {
  gap: 1.5rem;
  margin-top: -4rem;
  position: relative;
}
.cards .eagle {
  position: absolute;
  bottom: -4.6875rem;
  right: 15%;
}
@media (max-width: 599px) {
  .cards {
    flex-direction: column;
  }
}

.card {
  flex: 1;
  padding: 1.875rem 1.25rem 2.5rem;
  text-align: center;
}
.card h1 {
  color: #362822;
}
.card .button, .card .button--green, .card .button--white, .card .button--orange {
  margin-top: 1.5rem;
}

.header {
  margin-top: 3.125rem;
}
.header h1 {
  max-width: 32.5rem;
  text-align: end;
}
.header img {
  margin-bottom: -1.5625rem;
}
.header .bg--black {
  margin-top: -1.5625rem;
  padding: 1.25rem 0px;
}
.header .bg--black .links {
  text-align: end;
  color: #FFEAC2;
  font-size: 1.25rem;
  font-weight: 500;
}
.header .bg--black .links a {
  padding-left: 1.5rem;
}
@media (max-width: 975px) {
  .header .header-flex {
    flex-direction: column-reverse;
  }
  .header .links {
    padding-top: 1.875rem;
    text-align: center !important;
  }
}
@media (max-width: 599px) {
  .header h1 {
    text-align: center;
  }
  .header .links a {
    padding-left: 1rem !important;
  }
}

.nav--active {
  font-weight: 800;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../../../img/WilliamO-Douglas-Wilderness.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 6.25rem 1.5rem 12.5rem;
}
.hero h1 {
  text-align: center;
  margin: auto;
  max-width: 64.0625rem;
}
@media (min-width: 900px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.callout {
  margin-top: 1.5rem;
}
.callout .bg--dark-green {
  padding: 3rem 1.5rem;
  gap: 1.5rem;
}
.callout p,
.callout h2,
.callout h2--cream {
  text-align: center;
  max-width: 37.5rem;
}
.callout p {
  color: #FFFFFF;
}
.callout h2, .callout h2--cream {
  color: #FFEAC2;
}

.homepage-callout {
  background-image: url("../img/Mountain_BG.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  margin-top: 6.25rem;
  padding-top: 10.9375rem;
  padding-bottom: 6.25rem;
  position: relative;
}
@media (max-width: 599px) {
  .homepage-callout {
    margin-top: 3.125rem;
  }
}
.homepage-callout .container--small {
  position: relative;
}
.homepage-callout h1 {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.homepage-callout h1::after {
  content: "";
  width: 5.5rem;
  height: 0.1875rem;
  background-color: #FAA521;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.homepage-callout p {
  text-align: center;
}
.homepage-callout .text--orange {
  text-align: center;
}
.homepage-callout .text-with-button p {
  max-width: 25.9375rem;
  text-align: left;
}
.homepage-callout .sun {
  position: absolute;
  z-index: -1;
  right: 5%;
  top: -9.375rem;
}
@media (max-width: 899px) {
  .homepage-callout .sun {
    right: 0;
  }
}

/* .footer {
  padding-top: rem(36);
  border-top: 1px solid $brown;
  .container--small {
    gap: rem(24);
    @include for-mobile-only {
      justify-content: center;
    }
  }
  .bg--orange {
    padding-top: rem(24);
    padding-bottom: rem(24);
    .container--narrow {
      gap: rem(24);
      line-height: normal;
      @include for-phone-only {
        text-align: center;
      }
    }
  }
} */
.footer {
  background-color: #FFEAC2;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: solid 15px #447C28;
}
@media (max-width: 599px) {
  .footer .container, .footer .container--small, .footer .container--narrow {
    flex-direction: column;
  }
}

.text-with-icon {
  gap: 0.75rem;
  line-height: normal;
}

.wod-logo-footer {
  width: 245px;
  padding-right: 24px;
  padding-bottom: 12px;
  border-right: 1px solid #707070;
}

.yvm-logo-footer {
  width: 150px;
  padding-left: 24px
}

@media (max-width:900px) {
  .wod-logo-footer, .yvm-logo-footer {
    width: 100%;
    padding: 0px;
    border: none;
  }

  .wod-logos {
    gap: 24px;
    justify-content: center;
    padding-bottom: 24px;
  }
}

.text-with-image {
  gap: 3rem;
}
.text-with-image .img-container {
  flex: 1;
}
.text-with-image .text-block {
  flex: 2;
}
@media (max-width: 599px) {
  .text-with-image {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}
.text-with-image--home, .text-with-image--about {
  padding-top: 4rem;
  padding-bottom: 3rem;
  position: relative;
}
.text-with-image--home::after, .text-with-image--about::after {
  position: absolute;
  content: "";
  width: 5.5rem;
  height: 0.1875rem;
  background-color: #FAA521;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.text-with-image--home .swirly-bg, .text-with-image--about .swirly-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 35%;
  z-index: -1;
}
@media (max-width: 599px) {
  .text-with-image--home .container, .text-with-image--about .container, .text-with-image--home .container--small, .text-with-image--about .container--small, .text-with-image--home .container--narrow, .text-with-image--about .container--narrow {
    flex-direction: column;
  }
}
.text-with-image--home .zoom-in-container, .text-with-image--about .zoom-in-container {
  flex: 1;
}
.text-with-image--home .text, .text-with-image--about .text {
  flex: 1;
}
.text-with-image--home h1, .text-with-image--about h1 {
  font-size: 2.25rem;
  color: #362822;
  margin-bottom: 2.25rem;
}
.text-with-image--home p, .text-with-image--about p {
  font-size: 1rem;
}

.text-with-image--about p {
  font-size: 1.125rem;
}
.text-with-image--about::after {
  display: none;
}

.honoree--left, .honoree--right {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.honoree--left h1, .honoree--right h1 {
  color: #362822;
  font-size: 1.875rem;
}
.honoree--left .zoom-in-container, .honoree--left img, .honoree--right .zoom-in-container, .honoree--right img {
  width: 100%;
  height: 23.125rem;
  border-radius: 50% 50% 0 0;
  object-position: top;
}

.honoree--right {
  background-color: #FFEAC2;
  padding-bottom: 6.25rem;
}
.honoree--right .container, .honoree--right .container--small, .honoree--right .container--narrow {
  flex-direction: row-reverse;
  align-items: flex-end;
}
@media (max-width: 599px) {
  .honoree--right .container, .honoree--right .container--small, .honoree--right .container--narrow {
    flex-direction: column-reverse;
  }
}
@media (max-width: 599px) {
  .honoree--right {
    padding-bottom: 3rem;
  }
}

.honoree--left {
  padding-top: 6.25rem;
}
.honoree--left .zoom-in-container {
  margin-top: -9.375rem;
}
@media (max-width: 599px) {
  .honoree--left .zoom-in-container {
    margin-top: 0px;
  }
}
@media (max-width: 599px) {
  .honoree--left {
    padding-top: 3rem;
  }
}
@media (max-width: 599px) {
  .honoree--left .container, .honoree--left .container--small, .honoree--left .container--narrow {
    flex-direction: column-reverse;
  }
}

.news-index {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
.news-index h1 {
  color: #362822;
  text-align: center;
  margin-bottom: 2.25rem;
}
.news-index .underline--green {
  padding-bottom: 1.5rem;
  position: relative;
}
.news-index .underline--green::after {
  position: absolute;
  content: "";
  background-color: #C4D58F;
  width: 5.5rem;
  height: 0.1875rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.news-preview {
  flex: 1;
  min-width: 21.875rem;
  max-width: 21.875rem;
}
@media (max-width: 599px) {
  .news-preview {
    min-width: 100%;
    max-width: 100%;
  }
}
.news-preview img {
  width: 100%;
  height: 16.5rem;
  object-fit: cover;
  border-bottom: solid 0.9375rem #FAA521;
}
.news-preview .zoom-in-container {
  height: 16.5rem;
}
.news-preview-content {
  min-height: 16.625rem;
  padding: 2rem;
}
.news-preview-content h3 {
  font-size: 1.5rem;
  font-family: "Playfair Display", "Karla", "Arial", sans-serif, serif;
}
.news-preview-content p {
  max-width: 18.75rem;
}

.freeform-row {
  align-items: flex-end;
  margin: 0px !important;
}
.freeform-row * {
  font-family: "Karla", "Arial", sans-serif;
}
@media (max-width: 599px) {
  .freeform-row {
    flex-direction: column;
  }
  .freeform-row .freeform-column {
    width: 95%;
    margin: 0px 1.5rem !important;
  }
}

.freeform-label {
  padding-bottom: 0.375rem;
}

.freeform-input, input {
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: solid 10px #C4D58F;
  padding: 0.375rem 0.375rem 0.375rem 0.75rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../img/form-arrow.svg");
  background-position: top 0.3125rem right 0.3125rem;
  background-repeat: no-repeat;
}

.freeform-button-submit {
  margin-top: 1.5rem;
  background-color: #C4D58F;
  padding: 0.75rem 1.5rem;
  font-family: "Karla", "Arial", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
}

.newsletter-sign-up h3 {
  font-family: "Playfair Display", "Karla", "Arial", sans-serif, serif;
  margin-bottom: 0.75rem;
}
.newsletter-sign-up form h3 {
  display: none;
}
.newsletter-sign-up form .section input {
  background-color: #FFFFFF;
  width: 100%;
  border-left: 10px solid #C4D58F;
}
.newsletter-sign-up form .btn-submit-email {
  padding: 0.75rem 1.5rem;
  border: none;
  background-color: #C4D58F;
  font-size: 1.125rem;
  font-weight: 700;
}
.newsletter-sign-up form label {
  font-weight: 700;
}

.contact-form {
  margin-bottom: 3rem;
}
.contact-form input, .contact-form textarea {
  background: #FFEAC2 !important;
}
.contact-form button {
  margin-left: 1rem;
}
.contact-form h1 {
  color: #362822;
  text-align: center;
  padding-bottom: 1.5rem;
  position: relative;
}
.contact-form h1::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  content: "";
  background-color: #C4D58F;
  width: 5.5rem;
  height: 0.1875rem;
}

/* .freeform-button-wrapper {
  .pink {
    background-color: $pink;
    margin-left: rem(16);
  }
} */
.article {
  margin-bottom: 6.25rem;
}
.article h1 {
  color: #362822;
}
.article--top {
  height: 18.75rem;
  width: 100%;
  position: relative;
}
.article--bottom {
  padding-bottom: 2.25rem;
}
.article-header {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 599px) {
  .article-header {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
.article-header .zoom-in-container {
  flex: 1;
}
.article-header .zoom-in-container img {
  object-fit: cover;
}
.article-header-column {
  flex: 1;
}
@media (max-width: 599px) {
  .article-header-column {
    gap: 1.5rem;
  }
}
.article-header h2, .article-header h2--cream {
  font-size: 1.5rem;
}
.article .back-button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.25rem;
}

.accordion {
  cursor: pointer;
  padding: 1.5rem;
  width: 100%;
  border: none;
  border-top: 1px solid #7D6A58;
  outline: none;
  transition: all 0.2s;
  position: relative;
  background-color: transparent;
}
.accordion h2, .accordion h2--cream {
  font-size: 1.25rem;
  text-align: left;
}
.accordion:last-of-type {
  border-bottom: 1px solid #7D6A58;
}
.accordion::after {
  content: url("../img/plus-sign.svg");
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media (max-width: 599px) {
  .accordion::after {
    display: none;
  }
}
.accordion--active::after {
  content: url("../img/minus-sign.svg");
}
.accordion--active:last-of-type {
  border-bottom: none;
}

.panel {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-container:first-child {
  background-color: #FFEAC2;
}

.accordion-block {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.accordion-block:nth-of-type(2n-1) {
  background-color: #FFEAC2;
}
.accordion-block .accordions {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.accordion-block h1 {
  color: #362822;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.accordion-block h1::after {
  content: "";
  background-color: #C4D58F;
  width: 5.5rem;
  height: 0.1875rem;
  left: 0;
  bottom: 0;
  position: absolute;
}

.text-block--honorees {
  padding-top: 3.125rem;
  padding-bottom: 6.25rem;
  background-color: #FFEAC2;
}
.text-block--honorees h1 {
  color: #362822;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.text-block--honorees h1::after {
  content: "";
  position: absolute;
  background-color: #C4D58F;
  width: 5.5rem;
  height: 0.1875rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.committee h1 {
  color: #362822;
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.committee h1::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  content: "";
  background-color: #C4D58F;
  width: 5.5rem;
  height: 0.1875rem;
}
.committee-member {
  padding: 0.1875rem 0.75rem;
  border-left: solid #FAA521 12px;
  margin-top: 1.5rem;
  width: 400px;
}
.committee-member p {
  font-family: "Playfair Display", "Karla", "Arial", sans-serif, serif;
  font-size: 1.5rem;
  font-weight: 600;
}

/*# sourceMappingURL=wodouglas.css.map */
