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

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

:root {
  --offwhite-bg: #c3d0aa1a;
  --font--body-font: Montserrat, sans-serif;
  --font--heading-primary: "Nunito Sans", sans-serif;
  --dark-cyan: #009899;
  --pale-goldenrod: #c3d0aa;
  --green-yellow: #c1ff00;
  --dark-khaki: #98ac5a;
  --cyan: #07fdff;
  --font--heading-secondary: Merriweather, serif;
  --border-radius: .5rem;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  background-color: var(--offwhite-bg);
  font-family: var(--font--body-font);
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  font-family: var(--font--heading-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-family: var(--font--heading-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-family: var(--font--heading-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  font-family: var(--font--heading-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  font-family: var(--font--heading-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  font-family: var(--font--heading-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

a {
  padding: 0;
  text-decoration: underline;
  transition: all .35s;
}

.hero-section {
  justify-content: flex-end;
  align-items: center;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-section:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.hero-bg-image_wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-bg-image_wrap:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  z-index: 0;
}

.hero-heading-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.hero-heading-wrapper:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-column {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.hero-column:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  grid-template-rows: auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.grid-wrapper {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.grid-wrapper._20px-tmargin {
  margin-top: 1.04em;
}

.grid-wrapper._50px-bmargin {
  margin-bottom: 2.6em;
}

.grid-wrapper._50px-bmargin.flex-center {
  justify-content: center;
  align-items: center;
}

.grid-wrapper._50px-tmargin {
  margin-top: 2.6em;
}

.grid-wrapper._50px-tmargin.flex-center {
  justify-content: center;
  align-items: center;
}

.h1-hero {
  color: var(--dark-cyan);
  letter-spacing: 5px;
  font-family: Oswald, sans-serif;
  font-size: 6.25em;
  font-weight: 700;
  line-height: 1.2;
}

.h2-hero {
  color: #fff;
  letter-spacing: 5px;
  font-family: Lobster, sans-serif;
  font-size: 5.21em;
  font-weight: 400;
  line-height: 1.2;
}

.navbar {
  background-color: #0000;
  border-bottom: 1px solid #0000001c;
  justify-content: center;
  align-items: center;
  padding-top: .75rem;
  padding-bottom: .5rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  background-color: var(--pale-goldenrod);
}

.navbar.absolute {
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: .5rem;
  padding-right: .5rem;
  display: flex;
}

.nav-container:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  padding-left: 1rem;
  padding-right: 1rem;
}

.nav-logo {
  width: 100%;
}

.nav-logo:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb), .nav-logo.dark {
  display: none;
}

.nav-logo.dark:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  display: inline-block;
}

.logo-wrapper {
  color: var(--green-yellow);
  width: 7.81em;
}

.nav-menu-button {
  justify-content: center;
  align-items: center;
  padding: 0;
  line-height: 1;
  transition: all .35s;
}

.nav-menu-button:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  background-color: var(--dark-cyan);
  border-radius: .5rem;
  transition: opacity .2s;
}

.nav-menu-button:hover:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  background-color: var(--pale-goldenrod);
  color: #000;
}

.nav-menu-button.w--open {
  background-color: #98ac5a;
  border-radius: .5rem;
}

.nav-dropdown-link {
  color: #fff;
  text-align: center;
  letter-spacing: -.5px;
  padding-left: 0;
  padding-right: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: all .35s;
}

.nav-dropdown-link:hover {
  color: var(--dark-cyan);
}

.nav-dropdown-link:hover:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  color: var(--dark-khaki);
}

.nav-dropdown-link.w--current, .nav-dropdown-link.current {
  color: var(--dark-cyan);
}

.nav-menu-button-icon {
  color: #fff;
  width: 100%;
  height: 100%;
  padding: .5rem;
  font-size: 2rem;
  line-height: 1;
}

.nav-menu-button-icon:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  transition: all .35s;
}

.nav-menu-button-icon:hover:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  color: #000;
}

.section.donor-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/donor-image.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  display: flex;
}

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3.91em;
  padding-bottom: 3.91em;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.overlay {
  pointer-events: none;
  background-image: linear-gradient(#00000080, #00000080);
  display: flex;
  position: absolute;
  inset: 0%;
}

.column {
  height: 100%;
}

.column.flex-horizontal-center, .column.center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.block {
  width: 100%;
  height: 100%;
}

.block._50 {
  width: 50%;
  height: 100%;
}

.block._50.with-text {
  padding: 2.6em;
}

.block.flex-vertical-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.block._75 {
  width: 75%;
  height: 100%;
}

.map-embed {
  width: 100%;
  height: 75vh;
  max-height: 45rem;
}

.h2 {
  color: var(--dark-cyan);
  letter-spacing: 2px;
  font-family: Lobster, sans-serif;
  font-size: 5.21em;
  font-weight: 400;
  line-height: 1.2;
}

.h2._123 {
  color: var(--dark-cyan);
}

.body {
  background-color: #f2f2f2;
}

.h3-black {
  font-family: Oswald, sans-serif;
  font-size: 2.6em;
  font-weight: 400;
  line-height: 1.2;
}

.image-wrapper {
  position: relative;
}

.image-wrapper.center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image {
  width: 100%;
}

.image._30 {
  width: 30%;
}

.image._30.aboslute-bottom-left {
  position: absolute;
  inset: auto auto 0% 0%;
}

.image._30.aboslute-top-right {
  position: absolute;
  inset: 0% 0% auto auto;
}

.image.bg {
  object-fit: cover;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.social-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.social-wrapper:where(.w-variant-5b4b908b-0962-9566-1022-77d793a0983d) {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.social-wrapper.mobile-align-center {
  justify-content: center;
  align-items: center;
}

.social-link {
  border-radius: .75rem;
  width: 3rem;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.social-link:where(.w-variant-5b4b908b-0962-9566-1022-77d793a0983d) {
  width: 2rem;
}

.social-link:hover {
  box-shadow: 0 2px 8px 1px #0003;
}

.social-image {
  width: 100%;
}

.p-white {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-family: Oswald, sans-serif;
  font-size: 1.56em;
  line-height: 1.5;
}

.h3-white {
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 2.6em;
  font-weight: 400;
  line-height: 1.2;
}

.button-wrapper._20px-tmargin {
  margin-top: 1.04em;
}

.button {
  background-color: var(--dark-cyan);
  color: #fff;
  letter-spacing: 1px;
  border-radius: .5rem;
  padding: 1rem 1.5rem;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  transition: all .35s;
  box-shadow: 0 2px 5px #000;
}

.button:hover {
  background-color: var(--pale-goldenrod);
  color: #000;
  box-shadow: 2px 2px 10px 1px #000;
}

.button.is-small {
  text-align: center;
  padding: .75rem 1.125rem;
  font-size: 1.25rem;
}

.button.is-small:hover:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  background-color: var(--dark-khaki);
}

.button.is-large {
  padding: 1rem 2rem;
}

.button.is-secondary {
  color: #000;
  background-color: #0000;
  border: 1px solid #222;
}

.button.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button.is-alternate {
  color: var(--dark-cyan);
  background-color: #fff;
}

.button.is-alternate:hover {
  color: #000;
}

.button.is-tiny {
  padding: .75rem 1.25rem;
  font-size: 1rem;
}

.p-black {
  color: #000;
  letter-spacing: 1px;
  font-family: Oswald, sans-serif;
  font-size: 1.56em;
  line-height: 1.5;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.fs-styleguide_header {
  color: #fff;
  background-color: #000;
  background-image: radial-gradient(circle at 100% 100%, #dd23bb40, #0000 40%), radial-gradient(circle at 0 100%, #2d62ff4d, #0000 60%);
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.fs-styleguide_hero-label {
  color: #000;
  text-transform: uppercase;
  background-color: #eee;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.fs-styleguide_heading-header {
  font-size: 6rem;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.text-size-medium {
  font-size: 1.25rem;
}

.text-size-medium:where(.w-variant-65562b66-2184-6c4e-effe-007b2fd11009) {
  color: var(--cyan);
}

.text-size-medium:where(.w-variant-efa524c1-be44-7fb9-f946-71d9bb01a491), .text-size-medium:where(.w-variant-972b2ca5-75b2-6131-7f87-8121ffa51c72) {
  color: var(--dark-cyan);
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #eee;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.fs-styleguide_label {
  color: #fff;
  background-color: #2d62ff;
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: #dd23bb;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-style-h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h2:where(.w-variant-65562b66-2184-6c4e-effe-007b2fd11009) {
  color: var(--cyan);
}

.heading-style-h2:where(.w-variant-efa524c1-be44-7fb9-f946-71d9bb01a491), .heading-style-h2:where(.w-variant-972b2ca5-75b2-6131-7f87-8121ffa51c72) {
  color: var(--dark-cyan);
}

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-style-h4.dino-map {
  font-size: 1.25rem;
  line-height: 1.2;
  position: relative;
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.text-weight-semibold {
  font-weight: 600;
}

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

.text-size-large {
  font-size: 1.5rem;
}

.text-size-regular {
  font-size: 1rem;
}

.text-size-small {
  font-size: .875rem;
}

.text-size-tiny {
  font-size: .75rem;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.text-style-italic {
  font-style: italic;
}

.text-style-muted {
  opacity: .6;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.text-style-nowrap {
  white-space: nowrap;
}

.text-style-link {
  color: var(--dark-cyan);
  text-decoration: none;
}

.text-style-link:hover {
  color: var(--dark-khaki);
}

.text-style-link.light {
  color: var(--cyan);
}

.text-style-link.light:hover {
  color: var(--green-yellow);
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.fs-styleguide_message {
  color: #5e5515;
  background-color: #fcf8d8;
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-weight-bold {
  font-weight: 700;
}

.text-weight-medium {
  font-weight: 500;
}

.text-weight-normal {
  font-weight: 400;
}

.text-weight-light {
  font-weight: 300;
}

.text-align-left {
  text-align: left;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.text-color-primary {
  color: #000;
}

.text-color-secondary {
  color: #222;
}

.background-color-primary {
  color: #fff;
  background-color: #000;
}

.text-color-alternate {
  color: #fff;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.background-color-secondary {
  background-color: #2d62ff;
}

.background-color-tertiary {
  background-color: #dd23bb;
}

.background-color-alternate {
  background-color: #fff;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.padding-bottom, .padding-bottom.padding-xxlarge {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top, .padding-top.padding-medium {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical, .padding-vertical.padding-xxlarge {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

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

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

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .125rem;
}

.padding-xxsmall {
  padding: .25rem;
}

.padding-xsmall {
  padding: .5rem;
}

.padding-small {
  padding: 1rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 8rem;
}

.padding-xxhuge {
  padding: 12rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.padding-custom3 {
  padding: 3.5rem;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-0 {
  margin: 0;
}

.margin-tiny {
  margin: .125rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.margin-xsmall {
  margin: .5rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 8rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.margin-custom2 {
  margin: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1rem;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.spacer-large {
  padding-top: 3rem;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

.fs-styleguide_spacing-all {
  display: none;
}

.icon-height-small {
  height: 1rem;
}

.icon-height-medium {
  height: 2rem;
}

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

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.hide {
  display: none;
}

.overflow-visible {
  overflow: visible;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

.pointer-events-auto {
  pointer-events: auto;
}

.pointer-events-none {
  pointer-events: none;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.align-center.max-width-large.is-relative {
  position: relative;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.form_component {
  margin-bottom: 0;
}

.form_input {
  background-color: #0000;
  border: 1px solid #eee;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
  font-size: 1rem;
}

.form_input::placeholder {
  color: #222;
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
  font-size: 1rem;
}

.form_input.is-select-input {
  color: #222;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.form_message-success {
  color: #114e0b;
  background-color: #cef5ca;
  padding: 1.25rem;
}

.form_message-error {
  color: #3b0b0b;
  background-color: #f8e4e4;
  margin-top: .75rem;
  padding: .75rem;
}

.text-color-dark-cyan {
  color: var(--dark-cyan);
}

.heading-secondary {
  font-family: var(--font--heading-secondary);
}

.heading-primary {
  font-family: var(--font--heading-primary);
}

.text-color-white {
  color: #fff;
}

.text-color-green {
  color: #97ab5a;
}

.nav-menu_wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-color-cyan {
  color: var(--cyan);
}

.section_find-dino.donor-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/donor-image.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  display: flex;
}

.nav_button-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-menu-button_wrap {
  display: none;
}

.navbar_wrap.absolute {
  position: absolute;
  inset: 0% 0% auto;
}

.section_home-hero:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  max-height: 100vh;
  position: relative;
}

.home-hero_content {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  min-height: 80vh;
  display: flex;
}

.home-hero_content:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  z-index: 1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.padding-section-xlarge {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.padding-section-xxlarge {
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.footer_top-wrapper {
  grid-column-gap: 4vw;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center stretch;
  display: grid;
}

.footer_logo-link {
  max-width: 9.5rem;
  padding-left: 0;
}

.footer_link-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  white-space: normal;
  flex-flow: wrap;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  place-items: center;
  max-width: 17rem;
  display: grid;
}

.footer_link {
  color: var(--dark-cyan);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s;
}

.footer_link:hover, .footer_link.w--current {
  color: var(--dark-khaki);
}

.footer_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: flex;
}

.footer_social-link {
  color: var(--dark-cyan);
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer_social-link:hover {
  color: var(--dark-khaki);
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.divider-horizontal {
  height: var(--\<unknown\|relume-variable-divider-width\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-border\>);
  width: 100%;
}

.footer_bottom-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.footer_credit-text {
  font-size: .875rem;
}

.footer_legal-link {
  color: var(--dark-cyan);
  font-size: .875rem;
  text-decoration: underline;
}

.footer_legal-link:hover {
  color: var(--dark-khaki);
}

.footer_social-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer_mid-wrap {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer_dollar-matching {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer_left-column {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer_rbi-wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 8rem;
  text-decoration: none;
  display: flex;
}

.find-dino_content {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.instagram_content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}

.section_volunteer:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  max-height: 100vh;
  position: relative;
}

.volunteer_content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.volunteer_image-wrap {
  border-radius: .5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px 1px #0003;
}

.volunteer_image-wrap.center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.volunteer-small-image {
  border-radius: .5rem;
  width: 100%;
  max-width: 10rem;
  position: absolute;
  inset: auto auto .25rem .25rem;
}

.volunteer-small-image._30 {
  width: 30%;
}

.volunteer-small-image._30.aboslute-bottom-left {
  position: absolute;
  inset: auto auto 0% 0%;
}

.volunteer-small-image._30.aboslute-top-right {
  position: absolute;
  inset: 0% 0% auto auto;
}

.volunteer-small-image.top-right {
  inset: .25rem .25rem auto auto;
}

.chamber-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--dark-cyan);
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.chamber-link:hover {
  color: var(--dark-khaki);
}

.chamber-link_wrap {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.chamber-icon {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1;
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.about-hero_content {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  min-height: 40rem;
  max-height: 100vh;
  display: flex;
}

.about-hero_content:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  z-index: 1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.section_about-hero {
  background-image: linear-gradient(#00000080, #00000080), url('../images/curly.webp');
  background-position: 0 0, 50% 25%;
  background-size: auto, 100%;
}

.section_about-hero:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  max-height: 100vh;
  position: relative;
}

.social-wrapper-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.chamber-link-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #009899;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.chamber-link-2:hover {
  color: #98ac5a;
}

.social-link-2 {
  border-radius: .75rem;
  width: 3rem;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.social-link-2:hover {
  box-shadow: 0 2px 8px 1px #0003;
}

.text-style-link-2 {
  color: #009899;
  text-decoration: none;
}

.text-style-link-2:hover {
  color: #98ac5a;
}

.about_image-wrap {
  border-radius: .5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px 1px #0003;
}

.about_image-wrap.center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.about_content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.about_content.is-relative, .section_about.is-relative {
  position: relative;
}

.section_about.overflow-clip {
  overflow: clip;
}

.swiper-section {
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.swiper-section.overflow-none {
  font-size: 1.5rem;
  line-height: 1.2;
  overflow: hidden;
}

.swiper-container {
  width: 100%;
  max-width: 90rem;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.thumbnail-sliders-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.cover-image {
  z-index: 0;
  opacity: .8;
  pointer-events: none;
  object-fit: contain;
  object-position: 100% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% 10%;
}

.gallery-swiper {
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
}

.gallery-swiper.upc {
  max-width: 31.25rem;
}

.swiper-wrapper {
  flex: none;
  display: block;
}

.swiper-wrapper.gallery-list {
  align-items: center;
  display: flex;
}

.swiper-wrapper.gallery-list.upc {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.swiper-wrapper.thumbnails-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.swiper-slide {
  flex: none;
}

.swiper-slide.gallery-item {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: 31.25rem;
  display: flex;
}

.swiper-slide.gallery-item.upc {
  flex: none;
  width: 100%;
  max-height: none;
}

.swiper-slide.thumbnail-item {
  cursor: pointer;
  border-radius: 50%;
  width: 4.75rem;
  height: 4.75rem;
  overflow: hidden;
  box-shadow: 1px 1px 5px 1px #0003;
}

.swiper-slide.thumbnail-item.swiper-slide-thumb-active {
  box-shadow: 1px 1px 10px 2px #0000005c;
}

.swiper-slide.gallery-item-upc {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.swiper-slide.gallery-item-upc.upc {
  flex: none;
  width: 100%;
  max-height: none;
}

.thumbnail-slider-buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slider-button-left {
  text-align: center;
  cursor: pointer;
  background-image: url('../images/Group-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px 14px;
  border-radius: 50%;
  width: 3.125rem;
  height: 3.125rem;
  padding: .75rem;
  font-size: 0;
  font-weight: 400;
  line-height: 1em;
  transition: background-position .15s cubic-bezier(.47, 0, .745, .715), background-color .2s, color .2s;
}

.slider-button-left:hover {
  color: #fff;
  background-color: #c7cfff;
  background-position: 40%;
}

.slider-button-left:active {
  background-color: #657cff;
}

.slider-button-left.absolute-left {
  position: absolute;
  inset: 210px auto auto -100px;
}

.slider-button-left.absolute-left:hover {
  background-color: var(--pale-goldenrod);
}

.slider-button-right {
  color: #0000;
  text-align: center;
  cursor: pointer;
  background-color: #0000;
  background-image: url('../images/Group.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px 14px;
  border-radius: 100px;
  width: 3.125rem;
  height: 3.125rem;
  padding: .75rem;
  font-size: 0;
  font-weight: 400;
  line-height: 1em;
  transition: background-position .15s cubic-bezier(.47, 0, .745, .715), background-color .2s, color .2s;
}

.slider-button-right:hover {
  color: #fff;
  background-color: #c7cfff;
  background-position: 60%;
}

.slider-button-right:active {
  background-color: #657cff;
}

.slider-button-right.absolute-right {
  position: absolute;
  inset: 210px -100px auto auto;
}

.slider-button-right.absolute-right:hover {
  background-color: var(--pale-goldenrod);
}

.lightbox-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.lightbox-image.upc {
  width: auto;
}

.lightbox-image.upc-thum {
  object-position: 50% 0%;
}

.lightbox-link {
  width: 100%;
  height: 100%;
}

.lightbox-link.upc {
  width: auto;
}

.thumb-swiper-wrapper {
  width: 100%;
  max-width: 278.125rem;
  padding: .5rem;
}

.thumb-swiper {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: .625rem;
  padding-bottom: .625rem;
  display: flex;
  overflow: hidden;
}

.upc-swiper {
  width: 100%;
  max-width: 31.25rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.upc-swiper.upc {
  max-width: 31.25rem;
}

.upc-fight-card_wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.ufc-center_wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.upc-rich-text {
  text-align: center;
}

.upc-rich-text h2 {
  margin-bottom: .5rem;
}

.upc-rich-text h3 {
  color: var(--dark-cyan);
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}

.upc-rich-text h4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.excel-embed_wrap {
  width: 100%;
  max-width: 45rem;
  margin: 3rem auto;
}

.best-seats_content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}

.best-seats-rt {
  text-align: center;
}

.best-seats-rt h1 {
  margin-bottom: 1.5rem;
}

.best-seats-rt h2, .best-seats-rt h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.section_meet-dinos.overflow-clip {
  overflow: clip;
}

.dino-rt {
  font-size: 1rem;
  line-height: 1.25;
}

.dino-rt p {
  font-size: .9rem;
}

.dino-rt.dino-map {
  text-align: center;
  margin-top: .25rem;
  position: relative;
}

.meet-dino_cards {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.meet-dino_cards.new-slider {
  text-align: center;
  padding: 1rem;
  position: absolute;
  inset: 0%;
}

.dino-card_item {
  border-radius: 1rem;
  box-shadow: 2px 2px 5px 1px #0003;
}

.dino-card_list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.meet-dino-cards_information {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  opacity: 0;
  -webkit-backdrop-filter: brightness();
  backdrop-filter: brightness();
  pointer-events: auto;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 1rem;
  transition: all .3s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.meet-dino-cards_information:hover {
  opacity: 1;
  -webkit-backdrop-filter: brightness(50%);
  backdrop-filter: brightness(50%);
}

.dino-cards-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.dino-cards-image_wrap {
  aspect-ratio: 1;
  border-radius: 1rem;
  position: static;
  overflow: hidden;
}

.volunteer-info_wrap {
  text-align: center;
}

.home_hero-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  padding-top: 3rem;
  display: flex;
}

.home_hero-content:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
  z-index: 1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.home-hero_column-wrap {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.home_hero-3-col-grid-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hero-grid-image-item {
  border-radius: var(--border-radius);
  width: 100%;
  height: 100%;
  transition: all .3s;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.hero-grade-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-grid-info-item {
  border-radius: var(--border-radius);
  filter: brightness();
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.hero-grid-info_heading-wrap {
  position: relative;
}

.hero-grid-info-bg {
  background-color: var(--dark-cyan);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-grid-info-bg:where(.w-variant-65562b66-2184-6c4e-effe-007b2fd11009) {
  background-color: var(--dark-khaki);
}

.hero-grid-info-bg:where(.w-variant-efa524c1-be44-7fb9-f946-71d9bb01a491) {
  background-color: var(--pale-goldenrod);
}

.hero-grid-info-bg:where(.w-variant-972b2ca5-75b2-6131-7f87-8121ffa51c72) {
  background-color: var(--cyan);
}

._3-col-grid-col {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  filter: brightness(90%);
  flex-flow: column;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

._3-col-grid-col:hover {
  filter: brightness();
}

.hero-card-heading {
  color: var(--green-yellow);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-card-heading:where(.w-variant-65562b66-2184-6c4e-effe-007b2fd11009) {
  color: var(--cyan);
}

.hero-card-heading:where(.w-variant-efa524c1-be44-7fb9-f946-71d9bb01a491), .hero-card-heading:where(.w-variant-972b2ca5-75b2-6131-7f87-8121ffa51c72) {
  color: var(--dark-cyan);
}

.hero-card-text {
  color: var(--green-yellow);
  font-size: 1.25rem;
}

.hero-card-text:where(.w-variant-65562b66-2184-6c4e-effe-007b2fd11009) {
  color: var(--cyan);
}

.hero-card-text:where(.w-variant-efa524c1-be44-7fb9-f946-71d9bb01a491), .hero-card-text:where(.w-variant-972b2ca5-75b2-6131-7f87-8121ffa51c72) {
  color: var(--dark-cyan);
}

.section_cta {
  position: relative;
}

.cta_component {
  z-index: 1;
  position: relative;
}

.cta_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.heading-style-h2-2 {
  color: var(--green-yellow);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h2-2:where(.w-variant-65562b66-2184-6c4e-effe-007b2fd11009) {
  color: var(--cyan);
}

.heading-style-h2-2:where(.w-variant-efa524c1-be44-7fb9-f946-71d9bb01a491), .heading-style-h2-2:where(.w-variant-972b2ca5-75b2-6131-7f87-8121ffa51c72) {
  color: var(--dark-cyan);
}

.text-size-medium-2 {
  font-size: 1.25rem;
}

.text-size-medium-2:where(.w-variant-65562b66-2184-6c4e-effe-007b2fd11009) {
  color: var(--cyan);
}

.text-size-medium-2:where(.w-variant-efa524c1-be44-7fb9-f946-71d9bb01a491), .text-size-medium-2:where(.w-variant-972b2ca5-75b2-6131-7f87-8121ffa51c72) {
  color: var(--dark-cyan);
}

.button-2 {
  background-color: var(--dark-cyan);
  color: #fff;
  letter-spacing: 1px;
  border-radius: .5rem;
  padding: 1rem 1.5rem;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  transition: all .35s;
}

.button-2:hover {
  background-color: var(--pale-goldenrod);
  color: #000;
}

.button-2.is-secondary {
  color: #000;
  background-color: #0000;
  border: 1px solid #222;
}

.button-2.is-secondary.is-alternate {
  color: var(--dark-cyan);
  background-color: #fff;
}

.button-2.is-secondary.is-alternate:hover {
  color: #000;
}

.cta_background-wrapper {
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.video-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.cta_background-video {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cta-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cta_component-2 {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
  overflow: hidden;
}

.cta_background-wrapper-2 {
  z-index: 0;
  border-radius: var(--border-radius);
  pointer-events: none;
  background-image: linear-gradient(#00000080, #00000080);
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.cta_content-col {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  border-radius: var(--border-radius);
  background-color: var(--dark-cyan);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding: 2rem;
  display: grid;
}

.cta_content-col.no-bg {
  background-color: #00989900;
  position: relative;
}

.cta_background-wrapper-3 {
  z-index: 0;
  border-radius: var(--border-radius);
  pointer-events: none;
  background-image: linear-gradient(#00000080, #00000080);
  position: static;
  inset: 0%;
  overflow: hidden;
}

.is-hidden {
  display: none;
}

.slick-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.slick-list-wrapper {
  position: relative;
  left: auto;
}

.slick-image-wrapper {
  box-shadow: none;
  color: #fff;
  border-radius: 0;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  margin: 0;
  padding-top: 100%;
  font-size: 20px;
  line-height: 28px;
  text-decoration: none;
  transition: box-shadow .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.slick-image-wrapper:hover {
  box-shadow: inset 0 0 0 1px #fff0;
}

.slick-image {
  filter: brightness(60%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section_about-gallery.overflow-clip {
  overflow: clip;
}

@media screen and (max-width: 991px) {
  .navbar {
    background-color: var(--pale-goldenrod);
    border-bottom-style: none;
    border-bottom-color: #0000008c;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-container {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: .75rem 1rem;
  }

  .nav-menu-button:hover:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
    background-color: var(--dark-khaki);
  }

  .image {
    object-fit: cover;
  }

  .button.is-small {
    font-size: 1.25rem;
  }

  .button.is-small.is-nav:hover {
    background-color: var(--dark-khaki);
  }

  .button.is-tiny {
    font-size: 1.25rem;
  }

  .fs-styleguide_heading-header {
    font-size: 4rem;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

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

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

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .spacer-xlarge {
    padding-top: 3rem;
  }

  .spacer-xxlarge {
    padding-top: 4rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 8rem;
  }

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .hide-tablet {
    display: none;
  }

  .nav-menu_wrap {
    background-color: var(--pale-goldenrod);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding-bottom: 1.5rem;
  }

  .navbar-menu-button_wrap {
    display: block;
  }

  .nav-topbutton_wrap {
    display: none;
  }

  .padding-section-xlarge, .padding-section-xxlarge {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .footer_top-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

  .footer_link-list {
    grid-template-columns: max-content;
  }

  .footer_left-column {
    justify-content: center;
    align-items: center;
  }

  .volunteer_content {
    grid-template-columns: 1fr;
  }

  .about_image-wrap {
    max-height: 25rem;
  }

  .about_content {
    grid-template-columns: 1fr;
  }

  .swiper-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cover-image {
    object-fit: cover;
    object-position: 0% 50%;
    left: 50%;
  }

  .swiper-slide.gallery-item, .swiper-slide.gallery-item-upc {
    max-height: 27.5rem;
  }

  .slider-button-left:hover {
    background-position: 50%;
  }

  .slider-button-left.absolute-left {
    top: 130px;
    left: -70px;
  }

  .slider-button-right:hover {
    background-position: 50%;
  }

  .slider-button-right.absolute-right {
    top: 130px;
    right: -70px;
  }

  .dino-rt {
    font-size: .9rem;
  }

  .dino-rt p {
    font-size: 1rem;
  }

  .dino-card_list {
    grid-template-columns: 1fr 1fr;
  }

  .home_hero-content {
    width: 100%;
  }

  .home-hero_column-wrap {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
  }

  .home_hero-3-col-grid-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  ._3-col-grid-col {
    width: 100%;
  }

  .hero-card-heading {
    font-size: 2rem;
  }

  .cta_content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .cta-image.static {
    position: static;
  }

  .cta_component-2 {
    grid-template-columns: 1fr;
  }

  .cta_component-2.tablet-1col {
    position: static;
  }

  .cta_content-col {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .slick-image-wrapper {
    font-size: 17px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .heading-style-h5 {
    font-size: .875rem;
  }

  .heading-style-h6 {
    font-size: .75rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

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

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

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .spacer-medium {
    padding-top: 1.25rem;
  }

  .spacer-large {
    padding-top: 1.5rem;
  }

  .spacer-xlarge {
    padding-top: 2rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .spacer-xxhuge {
    padding-top: 4.5rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .home-hero_content {
    justify-content: center;
    align-items: flex-start;
    min-height: 0;
    max-height: none;
    padding-top: 20rem;
    padding-bottom: 3rem;
  }

  .padding-section-xlarge, .padding-section-xxlarge {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .footer_link-list {
    grid-column-gap: 0px;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    grid-auto-flow: row;
    justify-items: center;
  }

  .footer_bottom-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    text-align: center;
    flex-flow: column;
    grid-auto-flow: row;
    justify-content: space-around;
    place-items: center;
    padding-bottom: 1rem;
  }

  .footer_credit-text {
    margin-top: 1rem;
  }

  .find-dino_content {
    padding-top: 8rem;
  }

  .chamber-link_wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: wrap;
  }

  .about-hero_content {
    justify-content: center;
    align-items: flex-start;
    min-height: 0;
    max-height: none;
    padding-top: 20rem;
    padding-bottom: 3rem;
  }

  .section_about-hero {
    background-image: linear-gradient(#00000080, #00000080), url('../images/A-image-of-a-dinosaur.webp');
    background-position: 0 0, 50%;
  }

  .swiper-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

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

  .cover-image {
    object-fit: cover;
    object-position: 100% 50%;
    width: 120%;
    left: 0%;
  }

  .gallery-swiper {
    margin-bottom: 1rem;
  }

  .swiper-slide.gallery-item {
    max-height: 15rem;
  }

  .swiper-slide.thumbnail-item {
    width: 3rem;
    height: 3rem;
  }

  .swiper-slide.gallery-item-upc {
    max-height: 15rem;
  }

  .thumbnail-slider-buttons-wrapper {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .slider-button-left {
    background-size: 16px;
    width: 48px;
    height: 48px;
  }

  .slider-button-left.absolute-left {
    position: static;
  }

  .slider-button-right {
    background-size: 16px;
    width: 48px;
    height: 48px;
  }

  .slider-button-right.absolute-right {
    position: static;
  }

  .upc-swiper {
    margin-bottom: 1rem;
  }

  .upc-fight-card_wrap {
    grid-template-columns: 1fr 1fr;
  }

  .dino-rt {
    font-size: .85rem;
  }

  .dino-rt p {
    font-size: .9rem;
  }

  .meet-dino_cards.new-slider {
    height: 100%;
  }

  .dino-card_list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .dino-cards-image_wrap {
    width: 100%;
    height: 100%;
  }

  .home_hero-content {
    justify-content: center;
    align-items: flex-start;
    padding-top: 5rem;
  }

  .home_hero-3-col-grid-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .hero-grid-info-item {
    min-height: 8rem;
    padding: 1rem;
  }

  ._3-col-grid-col {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .hero-card-heading {
    font-size: 1.5rem;
  }

  .hero-card-text {
    font-size: 1rem;
  }

  .cta_content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h2-2 {
    font-size: 2rem;
  }

  .cta_content-col {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .slick-image-wrapper {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (max-width: 479px) {
  .nav-menu-button:hover:where(.w-variant-fa787ccf-2181-ba59-f565-f457ffaa93eb) {
    background-color: var(--dark-khaki);
  }

  .map-embed {
    height: 25rem;
    min-height: 25rem;
  }

  .social-wrapper.mobile-align-center {
    justify-content: center;
    align-items: center;
  }

  .button {
    padding: .75rem 1.25rem;
    font-size: 1.125rem;
  }

  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

  .heading-style-h1 {
    overflow-wrap: anywhere;
    font-size: 2.25rem;
  }

  .heading-style-h4.dino-map {
    font-size: 1rem;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

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

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

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .home-hero_content {
    padding-top: 10rem;
  }

  .footer_bottom-wrapper {
    text-align: center;
    justify-content: space-around;
    align-items: center;
  }

  .instagram_content {
    text-align: center;
    word-break: break-all;
    grid-template-columns: 1fr;
    place-items: center;
    width: 100%;
  }

  .instagram_column {
    width: 100%;
  }

  .volunteer_content {
    grid-template-columns: 1fr;
    justify-items: stretch;
    width: 100%;
  }

  .volunteer_image-wrap {
    width: 100%;
  }

  .chamber-link.wrap {
    word-break: break-all;
  }

  .chamber-link_wrap {
    flex-flow: wrap;
  }

  .about-hero_content {
    padding-top: 10rem;
  }

  .swiper-wrapper.thumbnails-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .swiper-slide.thumbnail-item {
    width: 1.5rem;
    height: 1.5rem;
  }

  .thumb-swiper-wrapper {
    padding: 0;
  }

  .upc-fight-card_wrap {
    grid-template-columns: 1fr;
  }

  .dino-rt p {
    font-size: .75rem;
    line-height: 1.125;
  }

  .meet-dino_cards.new-slider {
    width: 100%;
    padding: 1rem .5rem .5rem;
  }

  .volunteer-info_wrap {
    width: 100%;
  }

  .home_hero-3-col-grid-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-grid-image-item {
    aspect-ratio: auto;
    order: -1;
    max-height: 12rem;
  }

  .hero-grade-image {
    object-position: 50% 10%;
  }

  .hero-grid-info-item {
    min-height: 4rem;
  }

  ._3-col-grid-col {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    flex-flow: column;
  }

  .cta_content {
    grid-template-columns: 1fr;
  }

  .button-2 {
    padding: .75rem 1.25rem;
    font-size: 1.125rem;
  }

  .cta_content-col {
    grid-template-columns: 1fr;
  }

  .cta_content-col.tablet {
    padding: 1rem;
  }

  .slick-image-wrapper {
    height: 40vw;
  }
}

#w-node-_93224259-cd43-1a8b-02b8-ae5759260c1f-5319c80f {
  grid-area: span 5 / span 1 / span 5 / span 1;
}

#w-node-_3181f2ad-ceb1-3859-d3ae-319081e7c68e-5319c80f {
  grid-area: 5 / 1 / 6 / 2;
  align-self: stretch;
}

#w-node-d4054d09-9529-3517-6247-d6c56668562a-5319c80f {
  grid-area: span 5 / span 1 / span 5 / span 1;
}

#w-node-_8c6bb200-0f79-5ca7-b9e0-19070ada7170-5319c80f {
  grid-area: 1 / 2 / 2 / 3;
  align-self: stretch;
}

#w-node-ea45ff0d-3b39-d464-cde0-49558562edc4-5319c80f {
  grid-area: span 5 / span 1 / span 5 / span 1;
}

#w-node-e186d7aa-24c7-62d0-06c1-d135073f66d6-5319c80f {
  grid-area: 5 / 3 / 6 / 4;
  align-self: stretch;
}

#w-node-_2181af6e-ad9c-108b-81e9-c11db38bb5e5-5319c80f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6db79a9c-0521-b006-0d6a-49fc2e0fce23-2e0fce1a {
  justify-self: end;
}

#w-node-_6db79a9c-0521-b006-0d6a-49fc2e0fce37-2e0fce1a {
  justify-self: center;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82a2d-ccd46d7d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82a4c-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82a51-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82a56-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82a5b-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82a61-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82a67-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82a6d-ccd46d7d {
  justify-self: start;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82b4f-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82b57-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82b6e-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82b87-ccd46d7d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82b8a-ccd46d7d {
  justify-self: start;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82b8c-ccd46d7d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82b8f-ccd46d7d {
  justify-self: start;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82bdf-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82be9-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82bea-ccd46d7d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82c5c-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c61-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c66-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c6b-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c70-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c75-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c7f-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c84-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c89-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c8e-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c93-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c98-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82c9d-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82ca2-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82ca7-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82cac-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82cb1-ccd46d7d {
  justify-self: start;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82cb5-ccd46d7d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82cb6-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82cbb-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82cc0-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82cc5-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82cd9-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82cde-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82ce3-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82ce8-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82ced-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82cf2-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82cfc-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d01-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d06-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d0b-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d10-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d15-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d1a-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d1f-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d24-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d29-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d2e-ccd46d7d {
  justify-self: start;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82d32-ccd46d7d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82d33-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d38-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d3d-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d42-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d53-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d58-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d5d-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d62-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d67-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d6c-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d71-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d76-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d7b-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82d80-ccd46d7d {
  justify-self: start;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82d84-ccd46d7d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82d85-ccd46d7d {
  justify-self: start;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82d88-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82e09-ccd46d7d, #w-node-cedf8009-a19a-72db-ff05-5c5649b82e36-ccd46d7d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cedf8009-a19a-72db-ff05-5c5649b82e74-ccd46d7d {
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_2181af6e-ad9c-108b-81e9-c11db38bb5e5-5319c80f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6db79a9c-0521-b006-0d6a-49fc2e0fce20-2e0fce1a, #w-node-_6db79a9c-0521-b006-0d6a-49fc2e0fce23-2e0fce1a {
    justify-self: center;
  }

  #w-node-_213d9763-d983-7b3c-ffa6-fe771e61e4f1-d043174b {
    justify-self: stretch;
  }

  #w-node-f44659dd-8f02-d5ed-c54f-c4196d865aaa-d043174b {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_6db79a9c-0521-b006-0d6a-49fc2e0fce4c-2e0fce1a {
    grid-area: 4 / 1 / 5 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_93224259-cd43-1a8b-02b8-ae5759260c1f-5319c80f, #w-node-d4054d09-9529-3517-6247-d6c56668562a-5319c80f, #w-node-ea45ff0d-3b39-d464-cde0-49558562edc4-5319c80f {
    grid-row: span 1 / span 1;
  }

  #w-node-_6db79a9c-0521-b006-0d6a-49fc2e0fce20-2e0fce1a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Creepster';
  src: url('../fonts/Creepster-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Piedra';
  src: url('../fonts/Piedra-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}