:root {
  --black-2: #141414;
  --royal-blue: #99823d;
  --black: black;
  --dark-slate-grey: #3d3d3d;
  --white: white;
  --white-smoke: #ebebeb;
  --light-grey: #c2c2c2;
  --steel-blue: #3f80b8;
  --dodger-blue: #c2a54e;
  --orange-highlight: #cf4f18;
  --midnight-blue: #172e42;
}

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

body {
  color: var(--black-2);
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
}

h1 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Teko, sans-serif;
  font-size: 3.696em;
  font-weight: 700;
  line-height: 1;
}

h2 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Teko, sans-serif;
  font-size: 2.92em;
  font-weight: 700;
  line-height: 1;
}

h3 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Teko, sans-serif;
  font-size: 2.306em;
  font-weight: 700;
  line-height: 1;
}

h4 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Teko, sans-serif;
  font-size: 1.823em;
  font-weight: 700;
  line-height: 1;
}

h5 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Teko, sans-serif;
  font-size: 1.44em;
  font-weight: 700;
  line-height: 1;
}

h6 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Teko, sans-serif;
  font-size: 1.138em;
  font-weight: 700;
  line-height: 1;
}

p {
  margin-bottom: 1em;
  font-size: 1em;
}

a {
  color: var(--black-2);
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--royal-blue);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 2em;
  font-size: 1em;
}

li {
  line-height: 175%;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 0 solid #000;
  margin-bottom: .8em;
  padding: 0;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.563;
}

.hero-link {
  width: 100%;
  color: var(--black);
  letter-spacing: .25em;
  text-indent: .25em;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-family: Open Sans, sans-serif;
  font-size: .7em;
  font-weight: 700;
  line-height: 5.71429;
  display: flex;
}

.hero-link:hover {
  color: var(--royal-blue);
  text-decoration: none;
}

.hero-link.hidden {
  display: none;
}

.info {
  border: 0 solid #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 1.5em;
  padding-bottom: 1em;
  display: flex;
  position: relative;
}

.info.accomodations {
  border-width: 0;
  flex-direction: column;
  padding-top: 1.5em;
}

.info.gallery {
  width: 104%;
}

.info.activity-destination {
  flex-flow: wrap;
  flex: 0 auto;
  align-content: stretch;
  align-self: flex-start;
  width: 100%;
  max-width: none;
  position: relative;
}

.info.no-space {
  z-index: auto;
  padding-top: .25em;
  padding-bottom: 0;
  position: relative;
}

.info.no-space.full-height {
  height: 100vh;
}

.button-dark {
  background-color: var(--black-2);
  text-align: center;
  letter-spacing: .25em;
  text-indent: .25em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  height: 5.71429em;
  padding: 1.25em 2.5em;
  font-size: .7em;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.button-dark:hover {
  background-color: var(--dark-slate-grey);
  color: var(--white);
}

.hunting-section {
  z-index: 128;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -8em;
  margin-bottom: 100px;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.projects-list {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 100%;
  display: grid;
}

.projects-list-wrapper {
  z-index: 2;
  flex-flow: wrap;
  place-content: flex-start center;
  width: 100%;
  display: flex;
  position: relative;
}

.projects-item {
  position: relative;
}

.projects-item-block {
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.projects-item-block:hover {
  box-shadow: none;
  color: var(--white);
  text-decoration: none;
}

.contact-form-block {
  z-index: 8;
  background-color: var(--royal-blue);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 33.3333%;
  min-width: 32em;
  min-height: 24em;
  margin-bottom: 0;
  padding: 4em;
  display: flex;
  position: relative;
}

.utility-text-field {
  background-color: var(--white-smoke);
  color: #131313;
  border: 0 #000;
  height: 4em;
  margin-bottom: 1em;
  padding: 1em;
  font-size: 1em;
  transition: background-color .2s;
}

.utility-text-field:focus {
  background-color: var(--light-grey);
}

.utility-text-field::placeholder {
  color: var(--dark-slate-grey);
}

.utility-page-wrap {
  border: 0 solid #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

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

.navbar {
  z-index: 256;
  background-color: var(--black-2);
  color: #fff;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-brand {
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  left: 4em;
}

.nav-brand:hover {
  text-decoration: none;
}

.nav-brand.w--current {
  z-index: 2;
}

.nav-menu {
  flex-flow: wrap;
  justify-content: flex-end;
  max-width: 600px;
  display: flex;
}

.nav-link {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 0;
  font-family: Oswald, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
  display: flex;
}

.nav-link:hover {
  color: var(--royal-blue);
  text-decoration: none;
}

.nav-link.w--current {
  background-color: var(--steel-blue);
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
}

.button {
  z-index: 50;
  background-color: var(--steel-blue);
  height: 5.71429em;
  color: var(--white);
  text-align: center;
  letter-spacing: .25em;
  text-indent: .25em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 1.25em 2.5em;
  font-size: .7em;
  font-weight: 700;
  transition: color .2s, border-color .2s, background-color .2s;
  display: flex;
  position: relative;
}

.button:hover {
  color: #fff;
  background-color: #4b99dc;
  text-decoration: none;
}

.button.section {
  width: 33.3333%;
}

.button._2 {
  text-align: center;
  letter-spacing: 0;
  width: 300px;
  height: 3em;
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
  font-family: Oswald, sans-serif;
  font-size: 1.5em;
}

.utility-hero-title-text {
  z-index: 0;
  text-transform: capitalize;
  max-width: 66.6666%;
  margin-bottom: 0;
}

.hero-grid {
  z-index: 32;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 96em;
  display: grid;
  position: relative;
}

.about-grid {
  grid-column-gap: 0em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 62.5% 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 96em;
  margin-bottom: 4em;
  display: grid;
}

.footer-section {
  width: 100%;
  color: var(--white);
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.success-message-block {
  background-color: var(--black-2);
  width: 100%;
  padding: 0;
}

.error-message-block {
  background-color: var(--black-2);
  color: #fff;
  text-align: center;
  width: 100%;
  margin-top: 1em;
  padding: 0;
}

.contact-form {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  width: 100%;
  color: var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-form-text-area {
  color: #131313;
  border-style: solid;
  border-width: 0;
  min-height: 8em;
  margin-bottom: 0;
  padding: 1em;
  font-size: 1em;
  transition: background-color .2s;
}

.contact-form-text-area:focus {
  background-color: var(--white-smoke);
}

.contact-form-text-area::placeholder {
  color: var(--dark-slate-grey);
}

.error-message-text {
  justify-content: center;
  align-items: center;
  min-height: 4em;
  padding: 1em 2em;
  display: flex;
}

.success-message-text {
  height: 4em;
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  display: flex;
}

.caption-text {
  color: var(--steel-blue);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.42em;
  font-size: .7em;
  font-weight: 700;
}

.section-title-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 48em;
  margin-bottom: 3em;
  display: flex;
}

.section-title-block.about {
  text-align: left;
  align-items: flex-start;
  width: auto;
  margin-bottom: 0;
  padding-left: 0%;
  padding-right: 0%;
}

.about-column-1 {
  text-align: left;
  padding-left: 4em;
  padding-right: 4rem;
  position: relative;
}

.super-button {
  z-index: 8;
  text-align: center;
  align-self: center;
  width: 75%;
  margin-bottom: 1.5em;
  position: relative;
}

.super-button.space-below {
  flex-direction: column;
  align-items: center;
  margin-bottom: 4em;
  display: flex;
}

.hero-section {
  background-color: var(--black-2);
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.hero-background-stripe-2 {
  background-color: var(--white-smoke);
  width: 50%;
  height: 8em;
  position: absolute;
  inset: auto 0 0 auto;
}

.navbar-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  display: grid;
  position: relative;
}

.hero-contact-grid {
  z-index: 32;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: min-content min-content min-content min-content;
  grid-auto-columns: 1fr;
  width: 83.3334%;
  max-width: 96em;
  padding-left: 4em;
  display: grid;
  position: relative;
}

.nav-menu-links-grid {
  flex-wrap: wrap;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-end;
  justify-items: end;
  display: flex;
}

.utility-section {
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.utility-block {
  z-index: 32;
  background-color: var(--white);
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: 100%;
  max-width: 88em;
  padding: 8em 4em;
  display: flex;
  position: relative;
}

.utility-hero-section {
  background-color: var(--black-2);
  width: 100%;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.licensing-title-text {
  margin-bottom: 0;
}

.licensing-grid {
  grid-column-gap: 2em;
  grid-row-gap: 1px;
  background-color: var(--white-smoke);
  background-image: linear-gradient(to right, var(--royal-blue), var(--royal-blue) 33.165%, var(--light-grey) 33.165%, var(--light-grey) 66.825%, var(--royal-blue) 66.825%, var(--royal-blue));
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  padding-top: 1px;
  padding-bottom: 1px;
}

.licensing-buttons-grid {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
}

.licensing-block {
  background-color: var(--white);
  justify-content: space-between;
  align-items: center;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
  position: relative;
}

.form {
  flex-direction: column;
  display: flex;
}

.form-text-field {
  color: #131313;
  border-style: none;
  border-width: 0;
  height: 4em;
  margin-bottom: 0;
  padding: 1em;
  font-size: 1em;
  transition: background-color .2s;
}

.form-text-field:focus {
  border-style: solid;
  border-color: var(--black-2);
  background-color: var(--white-smoke);
}

.form-text-field::placeholder {
  color: var(--dark-slate-grey);
}

.form-text-field.newsletter {
  margin-right: 1em;
}

.hero-column-1 {
  background-color: var(--white-smoke);
  flex-direction: column;
  margin-right: -50%;
  display: flex;
}

.hero-slider {
  background-color: #0000;
  flex-direction: column;
  height: 100%;
  display: flex;
  position: static;
}

.hero-slider-right-arrow {
  z-index: 48;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 8em;
  padding-left: 2em;
  padding-right: 2em;
  font-size: 1em;
  transition: opacity .2s;
  display: none;
  top: auto;
  bottom: 0;
  left: auto;
}

.hero-slider-right-arrow:hover {
  opacity: .5;
}

.hero-slider-left-arrow {
  z-index: 48;
  width: auto;
  height: 8em;
  padding-left: 2em;
  padding-right: 2em;
  font-size: 1em;
  transition: opacity .2s;
  display: none;
  inset: auto auto 0 62.5%;
}

.hero-slider-left-arrow:hover {
  opacity: .5;
}

.hero-slider-mask, .hero-slide {
  height: 100%;
}

.hero-column-2 {
  background-image: linear-gradient(to top, transparent, transparent 40%, var(--steel-blue) 40%, var(--steel-blue) 100%, var(--royal-blue));
  padding-top: 4em;
  padding-bottom: 8em;
  padding-right: 4em;
  position: relative;
}

.hero-text-block {
  z-index: 32;
  background-color: var(--white);
  flex-direction: column;
  padding: 4em;
  display: flex;
  position: relative;
}

.hero-slide-image {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.buttons-hero-grid {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
}

.hero-column-2-background-stripe {
  z-index: 16;
  background-color: var(--steel-blue);
  height: 50%;
  position: absolute;
  inset: auto 0% 0% 25%;
}

.hero-slide-nav {
  z-index: 32;
  justify-content: center;
  align-items: center;
  width: 37.5%;
  height: 12.504em;
  padding-top: .5em;
  font-size: .64em;
  display: flex;
  inset: auto 0% 0 auto;
}

.hero-vertical-lines-block {
  z-index: 8;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  justify-items: end;
  display: none;
  position: absolute;
  inset: 0%;
}

.light-vertical-line {
  background-color: var(--white);
  opacity: .32;
  width: 1px;
  height: 100%;
}

.home-news-list-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  display: none;
}

.home-news-item {
  flex: 1;
  margin-top: .5px;
  margin-bottom: .5px;
  display: flex;
}

.home-news-list {
  background-image: linear-gradient(270deg, var(--royal-blue), var(--royal-blue) 33.3333%, var(--light-grey) 33.3333%, var(--light-grey) 66.6666%, var(--royal-blue) 66.6666%, var(--royal-blue));
  flex-direction: column;
  flex: 1;
  padding-top: .5px;
  padding-bottom: .5px;
  display: flex;
}

.about-column-2 {
  background-image: url('../images/Salt-Creek-Ranch---08.05.22---260.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 4em;
  display: flex;
}

.home-news-link-block {
  background-color: var(--white-smoke);
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 2em 2em 1em;
  display: flex;
}

.home-news-link-block:hover {
  color: var(--royal-blue);
  text-decoration: none;
}

.projects-item-image {
  background-image: url('../images/Billiards.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 33.33%;
  padding-bottom: 33.33%;
  display: flex;
  position: relative;
}

.projects-item-image._1 {
  background-image: url('../images/Archery.jpg');
  background-position: 0 0;
  background-size: cover;
}

.projects-item-image._2 {
  background-image: url('../images/Skeet-Shooting.jpg');
}

.projects-item-image._4 {
  background-image: url('../images/Swimming.jpg');
}

.projects-item-image._5 {
  background-image: url('../images/Shuffleboard.jpg');
}

.projects-item-image._6 {
  background-image: url('../images/AdobeStock_319646423.jpeg');
}

.projects-item-image._7 {
  background-image: url('../images/Polaris-Offroading.jpg');
}

.projects-item-title-block {
  z-index: 32;
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  padding: 1em 2em;
  display: flex;
  position: relative;
}

.projects-item-title-block:hover {
  color: var(--white);
}

.item-image-light-overlay {
  z-index: 8;
  background-color: #ffffff29;
  position: absolute;
  inset: 0%;
}

.item-image-light-overlay:hover {
  color: var(--white);
}

.projects-item-label-text {
  z-index: 16;
  background-color: var(--steel-blue);
  width: 100%;
  color: var(--white);
  letter-spacing: .25em;
  text-indent: .25em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding-left: 1.563em;
  padding-right: 1.563em;
  font-size: .75em;
  font-weight: 700;
  line-height: 3.07692;
  display: flex;
}

.facts-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: 191px;
  grid-template-columns: 1fr .25fr 1fr .25fr 1fr;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  place-content: start space-between;
  place-items: center;
  width: 100%;
  max-width: 96em;
  padding-left: 4em;
  padding-right: 4em;
  display: grid;
}

.facts-grid.second-level {
  grid-template-columns: .25fr 1fr .25fr 1fr;
  margin-top: 49px;
}

.projects-item-title-text {
  text-align: left;
  text-transform: none;
  align-items: center;
  min-height: 1.29em;
  margin-bottom: 0;
  font-family: Teko, sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  display: flex;
}

.projects-item-title-text:hover {
  color: var(--white);
}

.facts-block {
  background-color: var(--white-smoke);
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.facts-block.old-home {
  width: 100%;
  height: 90%;
  margin: 10px;
  padding: 10px;
}

.facts-title-text {
  max-width: 300px;
  color: var(--black-2);
  text-transform: none;
  margin-right: 0;
  font-family: Teko, sans-serif;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1;
}

.facts-caption-text {
  color: var(--steel-blue);
  text-align: left;
  letter-spacing: .25em;
  text-indent: .25em;
  text-transform: uppercase;
  font-size: .7em;
  font-weight: 700;
}

.projects-slider {
  background-color: #0000;
  width: 100%;
  max-width: 96em;
  height: auto;
}

.projects-slider-mask {
  margin-left: -1em;
  margin-right: -1em;
}

.projects-slider-left-arrow {
  width: auto;
  height: 4em;
  color: var(--black-2);
  padding-left: 2em;
  padding-right: 2em;
  font-size: 1em;
  display: none;
  inset: auto auto 0% 0%;
}

.projects-slider-right-arrow {
  width: auto;
  height: 4em;
  color: var(--black-2);
  padding-left: 2em;
  padding-right: 2em;
  font-size: 1em;
  display: none;
  position: absolute;
  inset: auto 0% 0% auto;
}

.projects-slider-nav {
  justify-content: center;
  align-items: center;
  height: 12.504em;
  padding-top: .5em;
  font-size: .64em;
  display: flex;
  position: relative;
}

.projects-slide {
  width: 33.3333%;
  padding-left: 1em;
  padding-right: 1em;
}

.image-vertical-lines-block {
  z-index: 8;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  justify-items: end;
  display: none;
  position: absolute;
  inset: 0%;
}

.nav-brand-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.nav-brand-image.mobile {
  display: none;
}

.nav-tagline-block {
  align-items: center;
  padding-left: 2em;
  display: flex;
}

.nav-tagline-text {
  font-size: .6em;
}

.text-alpha-3-4 {
  opacity: .5;
  color: #ffffffbf;
}

.nav-tagline-icon {
  width: 1em;
  height: 1em;
  margin-left: .25em;
}

.frequenty-asked-questions {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.services-list-wrapper {
  width: 100%;
  max-width: 96em;
}

.services-list {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-image: linear-gradient(to right, var(--royal-blue), var(--royal-blue) 33.165%, var(--light-grey) 33.165%, var(--light-grey) 66.825%, var(--royal-blue) 66.825%, var(--royal-blue));
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1px;
  padding-bottom: 1px;
  display: grid;
}

.services-item {
  background-color: var(--white);
  justify-content: center;
  display: flex;
}

.services-item-block {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 2em;
  font-size: 1em;
  font-weight: 400;
  display: flex;
  position: relative;
}

.footer-block {
  z-index: 8;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
  place-content: start center;
  place-items: stretch stretch;
  width: 100%;
  max-width: 96em;
  position: relative;
}

.newsletter-form-block {
  z-index: 8;
  background-color: var(--royal-blue);
  margin-bottom: 0;
  margin-left: 4em;
  margin-right: 4em;
  padding: 4em;
  display: none;
  position: relative;
}

.newsletter-form {
  display: flex;
}

.footer-background-stripe-2 {
  z-index: 0;
  background-color: var(--black-2);
  width: 50%;
  position: absolute;
  inset: 12em 0% 0% auto;
}

.footer-background-stripe-1 {
  z-index: 0;
  background-color: var(--black-2);
  width: 50%;
  position: absolute;
  inset: 8em auto 0% 0%;
}

.footer-nav-brand {
  justify-content: center;
  align-items: center;
  min-height: 2em;
  padding-left: 0;
  display: flex;
}

.footer-nav-brand:hover {
  text-decoration: none;
}

.footer-nav-brand.w--current {
  font-size: 1em;
}

.footer-navbar {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  background-color: var(--black);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center stretch;
  min-height: 2em;
  margin-bottom: 0;
  padding: 2em 4em;
}

.footer-nav-brand-image {
  object-fit: contain;
  width: auto;
  height: 14em;
}

.footer-links-grid {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-items: center;
}

.footer-nav-link {
  color: #fff;
  letter-spacing: .25em;
  text-indent: .25em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  font-size: .7em;
  font-weight: 700;
  line-height: 2.85714;
}

.footer-nav-link:hover {
  color: var(--royal-blue);
  text-decoration: none;
}

.footer-nav-link.w--current {
  color: #fff;
}

.hero-background-stripe-1 {
  background-color: var(--white-smoke);
  width: 50%;
  height: 12em;
  position: absolute;
  inset: auto auto 0% 0%;
}

.footer-copyright {
  z-index: 0;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  background-color: var(--black-2);
  grid-template-rows: auto;
  grid-template-columns: auto;
  margin-top: 0;
  padding: .5em 4em;
  position: relative;
}

.empty-state {
  background-color: var(--white-smoke);
  justify-content: center;
  align-items: center;
  min-height: 4em;
  padding: 0;
  display: flex;
}

.section-button-block {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 96em;
  margin-top: 4em;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
}

.services-item-icon {
  z-index: 0;
  height: 4em;
}

.services-item-title {
  z-index: 8;
  margin-bottom: 0;
  position: relative;
}

.services-item-title-grid {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-bottom: 1em;
}

.clients-section {
  background-color: var(--white-smoke);
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -12em;
  padding-bottom: 12em;
  display: flex;
}

.clients-grid {
  flex-wrap: wrap;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  max-width: 104em;
  padding: 4em;
  display: none;
}

.client-image {
  z-index: 16;
  width: auto;
  height: 2em;
}

.projects-item-label-block {
  z-index: 16;
  background-color: var(--steel-blue);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  min-width: 50%;
  min-height: 6em;
  margin-bottom: -3em;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.navbar-block {
  justify-content: space-between;
  width: 100%;
  max-width: 96em;
  display: flex;
}

.square-dot {
  background-color: var(--steel-blue);
  border-radius: 100%;
  width: .5em;
  height: .5em;
}

.new-projects-item-label-text {
  z-index: 16;
  background-color: var(--black-2);
  min-width: 25%;
  height: 3.125em;
  color: var(--white);
  letter-spacing: .25em;
  text-indent: .25em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding-left: 1.563em;
  padding-right: 1.563em;
  font-size: .64em;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.utility-section-backgroung-stripe-1 {
  z-index: 0;
  background-color: var(--black-2);
  width: 50%;
  height: 8em;
  position: absolute;
  inset: 0% auto auto 0%;
}

.utility-section-backgroung-stripe-2 {
  z-index: 0;
  background-color: var(--black-2);
  width: 50%;
  height: 12em;
  position: absolute;
  inset: 0% 0% auto auto;
}

.utility-section-block {
  border-top: 1px solid #ffffff29;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 96em;
  padding: 8em 4em;
  display: flex;
}

.contact-block {
  z-index: 8;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 88em;
  padding: 8em 4em;
  display: flex;
  position: relative;
}

.map-block {
  z-index: 0;
  background-image: url('../images/image-map.png');
  background-position: 0 0;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.contact-buttons-grid {
  z-index: 16;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  margin-top: 1em;
}

.button-social-icon-light {
  z-index: 0;
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: relative;
}

.button-social {
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  display: flex;
  position: relative;
}

.button-social-icon-color {
  z-index: 8;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: opacity .2s;
  position: absolute;
}

.button-social-icon-color:hover {
  opacity: 0;
}

.home-projects-list {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 40%;
  margin-top: 40px;
  margin-right: 40px;
}

.home-services-list-wrapper {
  width: 100%;
  max-width: 96em;
  padding-left: 4em;
  padding-right: 4em;
  display: none;
}

.caption-grid {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
}

.news-list-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.news-list {
  background-image: linear-gradient(270deg, var(--royal-blue), var(--royal-blue) 33.3333%, var(--light-grey) 33.3333%, var(--light-grey) 66.6666%, var(--royal-blue) 66.6666%, var(--royal-blue));
  flex-direction: column;
  flex: 1;
  padding-top: .5px;
  padding-bottom: .5px;
  display: flex;
}

.home-news-item-copy {
  flex: 1;
  margin-top: .5px;
  margin-bottom: .5px;
  display: flex;
}

.news-link-block {
  background-color: var(--white);
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 2em;
  display: flex;
}

.news-link-block:hover {
  color: var(--royal-blue);
  text-decoration: none;
}

.news-item-grid {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 33.3333% 1fr;
  align-items: start;
  width: 100%;
}

.news-item-image {
  background-image: url('../images/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 33.3333%;
  padding-bottom: 33.3333%;
  position: relative;
}

.news-item-block {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  font-weight: 400;
  display: flex;
}

.dots-grid {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
}

.news-item-text-block {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.description-block {
  text-align: left;
  flex: 1;
  width: 100%;
  margin-bottom: -1em;
}

.description-image-block {
  float: left;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin-bottom: 1em;
  margin-right: 2em;
  padding-top: 16.6666%;
  padding-bottom: 16.6666%;
  display: flex;
  position: relative;
}

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

.project-gallery-lightbox {
  background-color: var(--royal-blue);
  padding: 1em;
  transition: background-color .2s, color .2s;
}

.project-gallery-lightbox:hover {
  background-color: var(--dodger-blue);
}

.project-gallery-list-wrapper {
  z-index: 16;
  position: absolute;
}

.project-gallery-list {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 4em;
  height: 4em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.project-gallery-item {
  min-width: 4em;
  min-height: 4em;
}

.black-bar-bottom {
  color: var(--white);
  background-color: #000;
  margin-right: 2em;
  padding: 1em 2em;
  position: relative;
}

.text-block {
  width: 25%;
}

.container {
  flex-direction: row;
}

.quotes {
  color: var(--steel-blue);
  margin-top: 35px;
  font-family: Oswald, sans-serif;
  font-size: 125px;
  font-weight: 700;
  line-height: .5;
}

.testimonies-wrapper {
  flex-direction: column;
  align-items: center;
  margin-top: 5%;
  display: flex;
}

.testimonies-text {
  text-align: center;
  margin-top: -85px;
  margin-bottom: 25px;
  padding-left: 30%;
  padding-right: 30%;
}

.testimony-name {
  text-transform: capitalize;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  padding-left: 35%;
  padding-right: 35%;
  font-size: 12px;
}

.slider {
  background-color: #ddd0;
  height: 35em;
}

.slide-nav {
  background-color: var(--white-smoke);
}

.right-arrow, .left-arrow {
  color: var(--steel-blue);
}

.slide {
  background-color: #0000;
}

.call-to-action-wrapper {
  background-color: var(--black);
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 65px;
  display: flex;
}

.text-block-2 {
  text-align: left;
  font-weight: 700;
}

.text-block-2.call-to-action {
  color: var(--white);
}

.text-block-2.old-home {
  color: #fff;
}

.call-to-action-h {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 2em;
  font-weight: 500;
}

.small-line-div {
  background-color: var(--steel-blue);
  width: 50px;
  height: 3.5px;
  margin-bottom: 10px;
}

.right-divider {
  align-items: center;
  width: 30%;
  display: flex;
}

.left-div {
  width: 65%;
}

.container-2 {
  justify-content: space-around;
  display: flex;
}

.subscription-section {
  background-color: var(--steel-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 400px;
  padding-top: 150px;
  display: flex;
}

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

.large-image-section {
  background-image: url('../images/Salt-Creek-Ranch---08.05.22---197.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: flex-end;
  width: 100%;
  margin-top: 125px;
  margin-bottom: 26px;
  padding-top: 100px;
  padding-bottom: 0;
  display: flex;
}

.large-image-section.bigintro {
  background-image: url('../images/IMG-98.webp');
  margin-top: 125px;
}

.heading {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}

.white-header {
  color: var(--white);
  text-transform: uppercase;
  font-family: Open Sans, sans-serif;
  font-size: 2em;
  font-weight: 400;
  line-height: 1.25em;
}

.cta-section {
  background-image: url('../images/IMG_5138.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.white-paragraph {
  color: var(--white);
  font-size: 2em;
}

.white-paragraph.small {
  padding-top: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 1em;
}

.no-style-link {
  color: var(--white);
}

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

.social-link.hidden {
  display: none;
}

.hc {
  flex-flow: column;
  flex: 0 auto;
  align-items: center;
  padding-bottom: 40px;
  display: flex;
}

.image {
  width: 100%;
  height: 50vw;
}

.image.with-background {
  background-image: url('../images/Salt-Creek-Ranch--SCR---236.jpg');
  background-position: 50%;
  background-size: cover;
}

.image.with-background.scr-difference {
  background-image: url('../images/Salt-Creek-Ranch-032-1.webp');
  background-position: 50%;
  background-size: cover;
  height: 50vh;
}

.t {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  display: flex;
}

.t.sb {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  font-family: Montserrat, sans-serif;
}

.t.sb.move-left {
  margin-left: -10px;
}

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

.t.sb.justified {
  text-align: justify;
}

.t.no-space {
  margin-bottom: 0;
}

.slider-2 {
  width: 80%;
  height: 45vw;
  margin-top: -71px;
  margin-bottom: 67px;
  display: none;
  overflow: visible;
}

.activities-slider.archery {
  background-image: url('../images/Archery.jpg');
  background-position: 0 0;
  background-size: cover;
}

.activities-slider.billiards {
  background-image: url('../images/Billiards.jpg');
  background-position: 0 0;
  background-size: cover;
}

.activities-slider.swimming {
  background-image: url('../images/Swimming.jpg');
  background-position: 0 0;
  background-size: cover;
}

.activities-slider.shuffelboard {
  background-image: url('../images/Shuffleboard.jpg');
  background-position: 0 0;
  background-size: cover;
}

.activities-slider.target {
  background-image: url('../images/AdobeStock_319646423.jpeg');
  background-position: 0 0;
  background-size: cover;
}

.activities-slider.polaris-offroading {
  background-image: url('../images/Polaris-Offroading.jpg');
  background-position: 0 0;
  background-size: cover;
  margin-bottom: 7em;
}

.slide-2 {
  background-image: url('../images/Skeet-Shooting.jpg');
  background-position: 0 0;
  background-size: cover;
}

.slider-3 {
  width: 100%;
  height: 30em;
  display: none;
}

.hunting-slider.texas {
  background-image: url('../images/texas-wildlife-hunting.jpg');
  background-position: 50%;
  background-size: 250%;
}

.hunting-slider.seasonal {
  background-image: url('../images/mourning_dove.jpg');
  background-position: 50%;
  background-size: cover;
}

.hunting-slider.night-vision {
  background-image: url('../images/night-vision-hunts.jpg');
  background-position: 50%;
  background-size: 100%;
}

.image-2 {
  object-fit: cover;
  background-image: url('../images/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  max-height: 500px;
  padding-top: 0;
  display: block;
  overflow: visible;
}

.heading-2 {
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-weight: 400;
}

.heading-3 {
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 2.5em;
}

.highlight-wrapper {
  border: 6px solid var(--steel-blue);
  object-fit: cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 30%;
  height: 500px;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.highlight-wrapper.full-width {
  width: 90%;
}

.highlight-wrapper.special {
  border-style: none;
}

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

.image-background.unskewed {
  perspective: 1000px;
  transform: perspective(1000px);
}

.highlight-text {
  z-index: 5;
  background-color: var(--steel-blue);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 10px 40px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  position: relative;
}

.highlight-text.small {
  font-size: 2em;
}

.highlight-text.small.unskewed {
  font-size: 1.4em;
}

.image-3 {
  width: 240px;
  max-width: none;
  height: 160px;
}

.image-4, .image-5 {
  height: 160px;
}

.image-6 {
  object-fit: cover;
  width: 250px;
  max-width: none;
  height: 160px;
  padding-left: 10px;
  padding-right: 10px;
}

.gallery-lightbox {
  object-fit: cover;
  width: 100%;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.column, .lightbox-column {
  padding-left: 0;
  padding-right: 0;
}

.columns {
  width: 100%;
}

.gallery-image-background {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.gallery-image-background.doveimage {
  flex: 0 auto;
  order: 0;
  align-self: auto;
}

.gallery-wrapper {
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gallery-wrapper.no-space {
  cursor: pointer;
  background-color: #354050;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
}

.gallery-wrapper.space {
  width: 28%;
  height: 350px;
  margin: 2.5%;
  overflow: hidden;
}

.gallery-wrapper.modal-header {
  height: 250px;
}

.gallery-wrapper.full-width {
  width: 100%;
  height: 450px;
}

.heading-4 {
  z-index: 5;
  color: var(--white);
  position: relative;
}

.header-2 {
  text-align: center;
  text-transform: uppercase;
  margin-top: 2em;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
}

.header-2.overlay {
  z-index: 5;
  color: var(--white);
  background-color: #0000;
  background-image: linear-gradient(to top, #000000a8, #fff0);
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 30px;
  position: relative;
}

.header-2.white {
  color: var(--white);
  font-size: 16px;
}

.header-2.white.large {
  font-size: 5em;
}

.header-2.white.large.less-space {
  margin-top: -25px;
  margin-bottom: -25px;
  padding-top: 0;
  padding-bottom: 0;
}

.header-2.overlay-2 {
  z-index: 5;
  color: var(--white);
  position: relative;
}

.header-2.overlay-header {
  z-index: 5;
  color: var(--white);
  background-color: #0000;
  background-image: linear-gradient(to top, #000000a8, #fff0);
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 84px;
  font-family: Open Sans, sans-serif;
  font-size: 1em;
  line-height: 1;
  position: relative;
}

.header-2.overlay-header.smaller {
  font-family: Oswald, sans-serif;
  font-size: 3em;
}

.header-2.information-box {
  width: auto;
  height: auto;
  color: var(--white);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 2em;
  font-weight: 500;
}

.header-2.information-box.small {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.6em;
}

.header-2.information-box.space {
  margin-top: 35px;
  margin-bottom: 25px;
}

.header-2.left-align {
  text-align: left;
  margin-top: .1em;
}

.header-1 {
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}

.header-1.white {
  color: var(--white);
}

.call-to-action {
  background-color: var(--white-smoke);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 6em;
  padding-bottom: 6.1em;
  display: flex;
  position: relative;
}

.call-to-action.gallery {
  width: 104%;
}

.gallery-section {
  background-color: var(--white-smoke);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 6.1em;
  display: flex;
  position: relative;
}

.gallery-section.gallery {
  width: 104%;
}

.info-copy {
  background-color: var(--white-smoke);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 2.1em;
  padding-bottom: 6.1em;
  display: flex;
  position: relative;
}

.info-copy.gallery {
  width: 104%;
}

.header-3 {
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 1.5em;
  font-weight: 500;
}

.header-3.white {
  color: var(--white);
}

.header-3.white.centered {
  text-align: center;
}

.header-3.overlay {
  z-index: 5;
  color: var(--white);
  text-align: center;
  position: relative;
}

.title {
  flex: 0 auto;
  align-self: center;
  width: 75%;
  margin-top: -45px;
  padding-top: 0;
}

.html-embed {
  width: 90%;
  margin-top: 20px;
}

.highlight-wrapper-copy {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header {
  background-color: var(--white-smoke);
  background-image: url('../images/bison.webp');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.header.gallery {
  width: 104%;
}

.header.addax {
  background-image: url('../images/ADDAX.webp');
}

.bold {
  font-family: Oswald, sans-serif;
  font-size: 2.5em;
  font-weight: 500;
}

.activity-destination {
  max-width: 75%;
}

.header-4 {
  font-family: Oswald, sans-serif;
  font-size: 2.5em;
  font-weight: 500;
}

.header-4.white {
  color: var(--white);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 2em;
  font-weight: 500;
}

.header-4.overlay {
  z-index: 6;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: -316px;
  font-family: Open Sans, sans-serif;
  font-size: 2em;
  position: relative;
}

.wrapper {
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: relative;
}

.gallery-wrapper-copy {
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.gallery-wrapper-copy.no-space {
  margin-bottom: 0;
}

.header-wrapper {
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.header-wrapper.no-space {
  height: 60vw;
  margin-bottom: 0;
  overflow: hidden;
}

.header-wrapper.no-space.image-background {
  object-fit: fill;
  background-image: url('../images/Salt-Creek-Ranch-140.webp');
  background-position: 50% 60%;
  background-size: cover;
}

.header-image-background {
  text-align: right;
  object-fit: cover;
  align-self: center;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: scroll;
}

.ic {
  width: 400px;
  height: 350px;
  color: var(--white);
  text-align: left;
  background-color: #354050;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  font-weight: 300;
  transition: all .2s ease-in-out;
  display: flex;
}

.ic.amenities {
  text-align: center;
  width: 332px;
  height: auto;
  padding: 0 0 10px;
}

.ic.package {
  flex: 0 270px;
  width: auto;
  padding: 20px;
  box-shadow: 4px 4px 20px -6px #000;
}

.ic.hunting {
  justify-content: flex-end;
  width: 300px;
  height: 300px;
  position: relative;
}

.image-7 {
  object-fit: cover;
  width: 400px;
}

.paragraph-2 {
  text-align: left;
  background-color: #0000;
  height: 300px;
  margin-bottom: 0;
  padding: 10px;
}

.paragraph-2.information-box {
  width: auto;
  height: auto;
  color: var(--white);
  text-align: center;
  margin: 0 0 20px;
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  overflow: hidden;
}

.paragraph-2.information-box.centered {
  text-align: center;
}

.learn-more {
  border: 1px solid var(--white);
  text-align: center;
  text-transform: uppercase;
  background-color: #3898ec00;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 300;
  display: block;
}

.learn-more.private-retreats {
  color: #e54418;
  border-color: #e54418;
  width: 75%;
  font-weight: 700;
}

.gallery-text {
  z-index: 5;
  background-color: var(--steel-blue);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 10px 40px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  position: relative;
}

.accommodations-highlights {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.left-aligned-bg-text {
  z-index: 5;
  color: var(--white);
  text-transform: uppercase;
  background-color: #354050;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  position: relative;
}

.image-8 {
  object-fit: cover;
  width: 100%;
  height: 40vw;
  overflow: visible;
}

.accommodations-header {
  text-align: center;
  background-color: #354050;
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  width: 90%;
  margin-top: 100px;
  padding-right: 20px;
  display: flex;
  overflow: hidden;
}

.block {
  background-color: #354050;
  width: 300px;
}

.b {
  flex-wrap: wrap;
  justify-content: center;
  align-self: center;
  width: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.b.private-retreats {
  margin-top: 0;
}

.b.hunting {
  margin-top: 10px;
  margin-bottom: 10px;
}

.gallery-wrapper-header {
  z-index: 5;
  width: 100%;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  background-image: linear-gradient(#0000, #0000006e);
  align-self: center;
  margin-bottom: 0;
  padding-top: 140px;
  padding-bottom: 16px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  position: relative;
}

.gallery-wrapper-header.overlay {
  z-index: 5;
  color: var(--white);
  background-color: #0000;
  background-image: linear-gradient(to top, #000000a8, #fff0);
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 30px;
  position: relative;
}

.gallery-wrapper-header.white {
  color: var(--white);
  font-size: 16px;
}

.gallery-wrapper-header.white.large {
  font-size: 5em;
}

.gallery-wrapper-header.white.large.less-space {
  margin-top: -25px;
  margin-bottom: -25px;
  padding-top: 0;
  padding-bottom: 0;
}

.gallery-wrapper-header.overlay-2 {
  z-index: 5;
  color: var(--white);
  position: relative;
}

.gallery-wrapper-header.overlay-header {
  z-index: 5;
  color: var(--white);
  background-color: #0000;
  background-image: linear-gradient(to top, #000000a8, #fff0);
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 84px;
  font-size: 4em;
  position: relative;
}

.gallery-wrapper-header.information-box {
  width: auto;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.5em;
}

.image-9 {
  object-fit: cover;
  width: 100%;
  height: 50vw;
}

.afc {
  padding-top: 0;
}

.section-3 {
  padding-top: 6em;
}

.slider-header {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 20px;
  font-family: Oswald, sans-serif;
  position: static;
  inset: auto 0% 0%;
}

.slider-header.text {
  width: 75%;
  font-size: 1.3em;
  font-weight: 400;
}

.slider-header.text.no-space-below {
  padding-top: 10px;
}

.slider-header.small {
  padding-bottom: 10px;
  font-size: 2em;
}

.slider-header.text-small {
  width: 100%;
  padding-bottom: 0;
  font-size: 1.2em;
  font-weight: 400;
}

.slider-header.no-space-below {
  padding-bottom: 0;
}

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

.white-space {
  width: 100%;
  height: 50px;
}

.white-space.small {
  height: 25px;
}

.white-space.large {
  height: 100px;
}

.lightbox-wrapper {
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  max-width: 1200px;
  display: flex;
}

.lightbox-wrapper.under-main-image {
  width: 100%;
  max-width: 90%;
  margin-top: 20px;
}

.lightbox-link {
  max-width: 25%;
  max-height: 200px;
}

.image-10 {
  width: 100%;
}

.sub-heading {
  color: var(--steel-blue);
  text-align: left;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.italics-text {
  font-family: Montserrat, sans-serif;
  font-size: .9em;
  font-style: italic;
}

.dove-hunting-wrapper {
  flex-direction: column;
  width: 100%;
  padding-left: 0;
  display: flex;
}

.text-wrapper {
  margin-top: 20px;
  padding-left: 40px;
}

.information-content {
  flex-direction: column;
  align-items: center;
  height: auto;
  padding-left: 20px;
  padding-right: 20px;
  transition: all .2s ease-in-out;
  display: flex;
}

.more-info {
  background-color: #0000;
  flex: 0 auto;
  width: 100%;
  transition: all .25s ease-in-out;
  display: block;
  position: static;
  overflow: hidden;
}

.more-info.hunting {
  z-index: 0;
  width: 75%;
  height: auto;
  color: var(--white);
  margin-top: 2em;
  margin-bottom: 2em;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.callout-title {
  font-family: Oswald, sans-serif;
  font-size: 3em;
  line-height: 1.1;
}

.button-2 {
  position: relative;
}

.gallery-wrapper-button {
  z-index: 5;
  width: 100%;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  background-image: linear-gradient(#0000, #0000006e);
  align-self: center;
  margin-top: -171px;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 3em;
  font-weight: 500;
  position: static;
  overflow: visible;
}

.gallery-wrapper-button.overlay {
  z-index: 5;
  color: var(--white);
  background-color: #0000;
  background-image: linear-gradient(to top, #000000a8, #fff0);
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 30px;
  position: relative;
}

.gallery-wrapper-button.white {
  color: var(--white);
  font-size: 16px;
}

.gallery-wrapper-button.white.large {
  font-size: 5em;
}

.gallery-wrapper-button.white.large.less-space {
  margin-top: -25px;
  margin-bottom: -25px;
  padding-top: 0;
  padding-bottom: 0;
}

.gallery-wrapper-button.overlay-2 {
  z-index: 5;
  color: var(--white);
  position: relative;
}

.gallery-wrapper-button.overlay-header {
  z-index: 5;
  color: var(--white);
  background-color: #0000;
  background-image: linear-gradient(to top, #000000a8, #fff0);
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 84px;
  font-size: 4em;
  position: relative;
}

.gallery-wrapper-button.information-box {
  width: auto;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.5em;
}

.full-width-information-box {
  background-color: #354050;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 500px;
  display: flex;
  position: static;
  overflow: visible;
}

.image-11 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: static;
  overflow: visible;
}

.blue-heading {
  color: var(--steel-blue);
  text-align: center;
  margin-bottom: 10px;
  font-family: Oswald, sans-serif;
  font-size: 3em;
  font-weight: 700;
}

.heading-5 {
  text-align: center;
  text-transform: uppercase;
}

.submit-button {
  background-color: var(--steel-blue);
  text-transform: uppercase;
  width: 20%;
  font-weight: 700;
}

.phone-number-link-block {
  text-align: center;
  justify-content: center;
  display: flex;
}

.highlight-container {
  flex-wrap: wrap;
  width: 90%;
  display: flex;
}

.gallery-container {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  display: flex;
}

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

.swash {
  background-image: url('../images/Asset-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20em;
  height: 50px;
}

.slider-header-container-2 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  background-image: linear-gradient(#3f80b880, #3f80b880), linear-gradient(#fff0, #00000087 83%);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Oswald, sans-serif;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.slider-header-container-2.text {
  font-size: 1.5em;
}

.gallery-block {
  width: 50%;
}

.paragraph-3, .paragraph-4 {
  font-family: Montserrat, sans-serif;
}

.header-wrapper-gradient {
  background-image: linear-gradient(#0000, #000);
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 100px;
  display: block;
}

.image-12 {
  text-align: center;
  width: 20em;
  margin-bottom: 20px;
  display: block;
}

.social-footer-icon {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

.footer-big-text {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 3em;
  font-weight: 600;
}

.footer-big-text.smaller {
  margin-bottom: 0;
  font-size: 2em;
}

.footer-highlight-text {
  color: var(--orange-highlight);
  text-transform: uppercase;
  margin-bottom: 0;
}

.banner {
  z-index: 10;
  background-color: var(--orange-highlight);
  width: 100%;
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: sticky;
  bottom: 0;
}

.banner:hover {
  color: var(--light-grey);
}

.banner-text {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
}

.form-block {
  justify-content: center;
  align-self: center;
  width: 75%;
  display: flex;
}

.modal {
  z-index: 1000;
  opacity: 0;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

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

.modal-content {
  z-index: 2;
  background-color: var(--midnight-blue);
  width: 75%;
  height: 75%;
  position: relative;
  box-shadow: 14px 14px 20px #00000080;
}

.close-button {
  z-index: 5;
  position: absolute;
  inset: 0% 0% auto auto;
}

.close-button.invert {
  filter: invert();
  cursor: pointer;
}

.modal-text {
  color: var(--white);
  margin-left: 20px;
  margin-right: 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.flex-wrapper {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.flex-image {
  width: 250px;
  height: 300px;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
}

.hero-container {
  background-color: var(--black);
  flex: 0 auto;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 80vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.full-size-contain {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-text-container {
  z-index: 1;
  background-color: #3f80b8bf;
  flex-direction: column;
  flex: 0 auto;
  align-self: center;
  align-items: center;
  width: 60%;
  padding: 50px;
  display: flex;
  position: relative;
  bottom: 50px;
}

.container-3 {
  flex-direction: column;
  display: flex;
}

.infobox-paragraph {
  text-align: center;
  width: 90%;
  font-family: Montserrat, sans-serif;
  font-size: .9em;
  font-weight: 500;
}

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

.infobox-text {
  z-index: 5;
  background-image: linear-gradient(#0000, #000000a6);
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.paragraph-5 {
  text-align: left;
  text-transform: capitalize;
  width: 60%;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.bold-text {
  text-transform: capitalize;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}

.subtitle {
  font-size: 2em;
  font-weight: 400;
}

.list {
  text-align: left;
}

.list.numbered {
  list-style-type: decimal;
}

.section-4 {
  width: 100%;
}

.infobox-image {
  object-fit: cover;
  width: 100%;
  height: 250px;
}

.question-container {
  width: 100%;
  transition: all .2s ease-in-out;
}

.question-header {
  cursor: pointer;
  border-bottom: 1px solid #000;
  width: 100%;
  font-family: Montserrat, sans-serif;
  font-size: 1.5em;
  font-weight: 800;
}

.answer {
  text-transform: none;
}

.paragraph-6 {
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.cta-text {
  color: var(--steel-blue);
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  display: block;
}

.cta-text.overlay {
  z-index: 5;
  color: var(--white);
  background-color: #0000;
  background-image: linear-gradient(to top, #000000a8, #fff0);
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 30px;
  position: relative;
}

.cta-text.white {
  color: var(--white);
  font-size: 16px;
}

.cta-text.white.large {
  font-size: 5em;
}

.cta-text.white.large.less-space {
  margin-top: -25px;
  margin-bottom: -25px;
  padding-top: 0;
  padding-bottom: 0;
}

.cta-text.overlay-2 {
  z-index: 5;
  color: var(--white);
  position: relative;
}

.cta-text.overlay-header {
  z-index: 5;
  color: var(--white);
  background-color: #0000;
  background-image: linear-gradient(to top, #000000a8, #fff0);
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 84px;
  font-family: Open Sans, sans-serif;
  font-size: 2em;
  line-height: 1;
  position: relative;
}

.cta-text.overlay-header.smaller {
  font-family: Oswald, sans-serif;
  font-size: 3em;
}

.cta-text.information-box {
  width: auto;
  height: auto;
  color: var(--white);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 2em;
  font-weight: 500;
}

.cta-text.information-box.small {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.6em;
}

.cta-text.information-box.space {
  margin-top: 35px;
  margin-bottom: 25px;
}

.cta-text.left-align {
  text-align: left;
  margin-top: .1em;
}

.linktobutton {
  text-align: center;
}

.video {
  z-index: auto;
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  display: block;
}

.video-2 {
  object-fit: contain;
  flex: 0 auto;
  align-self: auto;
  position: absolute;
}

.background-video {
  z-index: 0;
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.background-video-2 {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 70vh;
}

.link {
  text-transform: none;
}

.vimeo-container {
  max-width: 1200px;
}

.full-size-wrapper {
  width: 100%;
  height: 100%;
}

.volume-toggle {
  z-index: 100;
  background-color: var(--white);
  opacity: .4;
  cursor: pointer;
  background-image: url('../images/volume-mute.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  position: absolute;
  inset: 20px 20px auto auto;
}

.image-fill {
  z-index: 0;
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.header-animal {
  text-align: center;
  text-transform: uppercase;
  margin-top: 2em;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
}

.header-animal.overlay {
  z-index: 5;
  color: var(--white);
  background-color: #0000;
  background-image: linear-gradient(to top, #000000a8, #fff0);
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 30px;
  position: relative;
}

.header-animal.white {
  color: var(--white);
  font-size: 16px;
}

.header-animal.white.large {
  font-size: 5em;
}

.header-animal.white.large.less-space {
  margin-top: -25px;
  margin-bottom: -25px;
  padding-top: 0;
  padding-bottom: 0;
}

.header-animal.overlay-2 {
  z-index: 5;
  color: var(--white);
  position: relative;
}

.header-animal.overlay-header {
  z-index: 5;
  color: var(--white);
  background-color: #0000;
  background-image: linear-gradient(to top, #000000a8, #fff0);
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 84px;
  font-family: Open Sans, sans-serif;
  font-size: 1em;
  line-height: 1;
  position: relative;
}

.header-animal.overlay-header.smaller {
  font-family: Oswald, sans-serif;
  font-size: 3em;
}

.header-animal.information-box {
  width: auto;
  height: auto;
  color: var(--white);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 2em;
  font-weight: 500;
}

.header-animal.information-box.small {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.6em;
}

.header-animal.information-box.space {
  margin-top: 35px;
  margin-bottom: 25px;
}

.header-animal.left-align {
  text-align: left;
  margin-top: .1em;
}

.animal-header {
  background-color: var(--white-smoke);
  background-image: url('../images/bison.webp');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60vh;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.animal-header.gallery {
  width: 104%;
}

.animal-header.addax {
  background-image: url('../images/ADDAX.webp');
}

.section {
  width: 100%;
}

.content-section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 50px;
  display: flex;
}

.animal-gallery {
  aspect-ratio: 1;
  object-fit: cover;
  width: auto;
  height: 100%;
}

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

.animal-gallery-wrapper {
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.animal-gallery-lightbox {
  flex: 1;
}

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

.detail-image {
  height: 80px;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 17px;
  }

  h1 {
    margin-bottom: 17px;
    font-size: 3.943em;
  }

  h2 {
    margin-bottom: 17px;
    font-size: 3.115em;
  }

  h3 {
    margin-bottom: 17px;
    font-size: 2.46em;
  }

  h4 {
    margin-bottom: 17px;
    font-size: 1.945em;
  }

  h5 {
    margin-bottom: 17px;
    font-size: 1.536em;
  }

  h6 {
    margin-bottom: 17px;
    font-size: 1.214em;
  }

  .info {
    padding-left: 0;
    padding-right: 0;
    font-size: 25px;
  }

  .info.activity-destination {
    padding-top: 4em;
  }

  .hunting-section {
    margin-top: -8em;
    padding-left: 4em;
    padding-right: 4em;
  }

  .navbar {
    justify-content: center;
    padding-left: 4em;
    padding-right: 4em;
  }

  .nav-menu {
    max-width: 1000px;
    padding-right: 0;
  }

  .nav-link {
    font-size: 1em;
    line-height: 1.25em;
  }

  .about-grid {
    grid-column-gap: 0em;
    grid-template-columns: 62.5% 1fr;
  }

  .footer-section {
    background-color: var(--black);
    padding-left: 4em;
    padding-right: 4em;
  }

  .caption-text {
    margin-bottom: 1.53em;
    font-size: .65em;
  }

  .about-column-1 {
    flex-direction: column;
    justify-content: flex-start;
    display: flex;
  }

  .hero-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 4em;
    padding-right: 4em;
  }

  .hero-contact-grid {
    padding-left: 0;
  }

  .utility-section {
    background-color: var(--white-smoke);
    margin-bottom: -12em;
    padding-bottom: 20em;
    padding-left: 4em;
    padding-right: 4em;
  }

  .utility-block {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .utility-hero-section {
    padding-left: 4em;
    padding-right: 4em;
  }

  .licensing-block {
    position: relative;
  }

  .facts-title-text.old-home {
    font-size: 1.25em;
  }

  .projects-slider-nav {
    height: 12.504em;
  }

  .nav-brand-image {
    object-fit: fill;
  }

  .frequenty-asked-questions {
    padding-left: 0;
    padding-right: 0;
  }

  .services-list {
    grid-auto-columns: 1fr;
  }

  .footer-background-stripe-2, .footer-background-stripe-1 {
    z-index: 0;
  }

  .footer-nav-brand-image {
    object-fit: fill;
  }

  .footer-nav-link {
    font-size: .65em;
    line-height: 3.07692;
  }

  .clients-grid {
    padding-left: 8em;
    padding-right: 8em;
  }

  .client-image {
    height: 2.25em;
  }

  .contact-block {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .contact-buttons-grid {
    top: 4em;
  }

  .large-image-section {
    height: 500px;
  }

  .highlight-text {
    font-size: 2.7em;
  }

  .highlight-text.small {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.7em;
  }

  .gallery-wrapper.no-space {
    width: 100%;
  }

  .header-2.overlay-header {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .header-2.information-box {
    width: auto;
    color: var(--white);
    margin-bottom: 0;
    padding: 10px 10px 0;
    font-size: 1.4em;
  }

  .header-2.information-box.small {
    font-size: 1.2em;
  }

  .call-to-action, .gallery-section, .info-copy {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .header {
    height: 40vw;
    padding-left: 0;
    padding-right: 0;
  }

  .header-4.overlay {
    text-transform: uppercase;
    margin-bottom: -273px;
  }

  .ic {
    background-color: #354050;
    width: 400px;
    overflow: visible;
  }

  .image-7 {
    width: 400px;
  }

  .paragraph-2 {
    margin-bottom: 1em;
    padding: 0;
  }

  .paragraph-2.information-box {
    width: auto;
    height: auto;
    color: var(--white);
    margin-bottom: 0;
    padding: 0 20px 20px;
    font-size: .8em;
    font-weight: 300;
  }

  .learn-more {
    border: 1px solid var(--white);
    background-color: #3898ec00;
    margin-bottom: 40px;
    font-weight: 300;
  }

  .gallery-wrapper-header {
    font-size: 2.5em;
  }

  .gallery-wrapper-header.overlay-header {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .gallery-wrapper-header.information-box {
    width: auto;
    color: var(--white);
    margin-bottom: 0;
    padding: 10px;
    font-size: 1.5em;
  }

  .slider-header.text-small {
    font-size: 1.2em;
  }

  .white-space.medium {
    height: 70px;
  }

  .gallery-wrapper-button.overlay-header {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .gallery-wrapper-button.information-box {
    width: auto;
    color: var(--white);
    margin-bottom: 0;
    padding: 10px;
    font-size: 1.5em;
  }

  .highlight-container {
    width: 80%;
  }

  .header-wrapper-gradient {
    padding-bottom: 130px;
  }

  .form-block {
    width: 65%;
  }

  .cta-text.overlay-header {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .cta-text.information-box {
    width: auto;
    color: var(--white);
    margin-bottom: 0;
    padding: 10px 10px 0;
    font-size: 1.4em;
  }

  .cta-text.information-box.small {
    font-size: 1.2em;
  }

  .header-animal.overlay-header {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .header-animal.information-box {
    width: auto;
    color: var(--white);
    margin-bottom: 0;
    padding: 10px 10px 0;
    font-size: 1.4em;
  }

  .header-animal.information-box.small {
    font-size: 1.2em;
  }

  .animal-header {
    height: 40vw;
    padding-left: 0;
    padding-right: 0;
  }
}

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

  h1 {
    margin-bottom: 15px;
    font-size: 3.464em;
  }

  h2 {
    margin-bottom: 15px;
    font-size: 2.737em;
  }

  h3 {
    margin-bottom: 15px;
    font-size: 2.162em;
  }

  h4 {
    margin-bottom: 15px;
    font-size: 1.709em;
  }

  h5 {
    margin-bottom: 15px;
    font-size: 1.35em;
  }

  h6 {
    margin-bottom: 15px;
    font-size: 1.067em;
  }

  blockquote {
    margin-bottom: .4em;
  }

  .hero-link {
    font-size: .568em;
  }

  .info {
    padding: 4em 0 8em;
  }

  .button-dark {
    height: 5.33333em;
    font-size: .75em;
  }

  .hunting-section {
    margin-top: -4em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .projects-list {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr 1fr;
    width: auto;
  }

  .contact-form-block {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: auto;
    padding-left: 2em;
    padding-right: 2em;
  }

  .navbar {
    background-color: var(--white);
    justify-content: space-between;
  }

  .nav-brand {
    z-index: 8;
    background-color: #0000;
    flex: none;
    justify-content: flex-start;
    width: auto;
    min-width: auto;
    height: 4em;
    margin-bottom: 0;
    margin-left: 1em;
    padding: 5px 0;
    left: auto;
  }

  .nav-brand.w--current {
    align-self: center;
    width: 8em;
    height: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    left: 0;
  }

  .nav-menu {
    background-color: var(--white);
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    margin-bottom: 0;
    padding-right: 0;
    overflow: auto;
  }

  .nav-menu-button {
    justify-content: center;
    align-items: center;
    width: 4em;
    height: 4em;
    padding: 0;
    font-size: 15px;
    display: flex;
  }

  .nav-menu-button:hover {
    background-color: var(--dark-slate-grey);
  }

  .nav-menu-button.w--open {
    background-color: var(--dark-slate-grey);
    color: #151515;
  }

  .nav-link {
    height: 11.1%;
    color: var(--dark-slate-grey);
    margin: 0;
    font-size: 2.9em;
    font-weight: 500;
  }

  .nav-link:hover {
    background-color: var(--steel-blue);
    color: #dbc994;
  }

  .button {
    height: 5.33333em;
    font-size: .75em;
  }

  .button.section {
    width: 50%;
  }

  .utility-hero-title-text {
    max-width: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .about-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    margin-bottom: 2em;
    padding-left: 2em;
    padding-right: 2em;
  }

  .footer-section {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding-left: 10px;
    padding-right: 10px;
  }

  .error-message-text, .success-message-text {
    padding-left: 1em;
    padding-right: 1em;
  }

  .section-title-block {
    text-align: left;
    align-items: flex-start;
    max-width: none;
    margin-bottom: 1.5rem;
  }

  .about-column-1 {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-grid {
    z-index: 4;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    height: 64px;
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .hero-contact-grid {
    display: none;
  }

  .nav-menu-links-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-auto-columns: auto;
    justify-content: space-between;
    width: 100%;
    padding: 1em 2em;
    display: grid;
  }

  .nav-menu-button-icon {
    filter: invert();
    object-fit: contain;
    width: 4em;
    height: 4em;
    padding: 1em;
  }

  .utility-block {
    padding: 4em 2em;
  }

  .licensing-buttons-grid {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
  }

  .licensing-block {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .hero-column-1 {
    margin-right: 0%;
  }

  .hero-slider {
    position: relative;
  }

  .hero-slider-right-arrow {
    height: 4em;
    right: 2em;
  }

  .hero-slider-left-arrow {
    height: 4em;
    left: 2em;
  }

  .hero-slide {
    padding-top: 33.3333%;
    padding-bottom: 33.3333%;
  }

  .hero-column-2 {
    padding: 0 2em 4em;
  }

  .hero-text-block {
    margin-top: -4em;
    padding: 2em;
  }

  .buttons-hero-grid {
    margin-top: .5em;
  }

  .hero-column-2-background-stripe {
    left: 0%;
  }

  .hero-slide-nav {
    justify-content: center;
    height: 6.252em;
    padding-left: 0;
    padding-right: 0;
    bottom: 6.252em;
    left: 0;
    right: 0;
  }

  .hero-vertical-lines-block {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    inset: 0%;
  }

  .home-news-list {
    grid-column-gap: 1px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .about-column-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .home-news-link-block {
    justify-content: flex-start;
  }

  .projects-item-title-block {
    font-size: 1em;
  }

  .facts-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 0;
    padding-left: 2em;
    padding-right: 2em;
  }

  .facts-grid.second-level {
    grid-template-columns: 1fr 1fr;
  }

  .facts-title-text {
    font-size: 2em;
  }

  .facts-title-text.old-home {
    font-size: 1.5em;
  }

  .projects-slider-mask {
    margin-left: 0;
    margin-right: 0;
  }

  .projects-slider-nav {
    height: 6.252em;
  }

  .projects-slide {
    width: 50%;
  }

  .image-vertical-lines-block {
    inset: 0%;
  }

  .nav-brand-image {
    height: 3em;
    display: none;
  }

  .nav-brand-image.mobile {
    height: 100%;
    display: block;
  }

  .nav-tagline-block {
    display: none;
  }

  .frequenty-asked-questions {
    padding-bottom: 4em;
    padding-left: 2em;
    padding-right: 2em;
  }

  .services-list-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .services-list {
    grid-template-columns: 1fr 1fr;
  }

  .footer-block {
    background-color: var(--dark-slate-grey);
  }

  .newsletter-form-block {
    margin-bottom: 0;
    margin-left: 2em;
    margin-right: 2em;
    padding: 2em;
  }

  .footer-nav-brand {
    justify-content: flex-start;
  }

  .footer-navbar {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 2em;
  }

  .footer-links-grid {
    grid-column-gap: 1em;
    grid-row-gap: 0em;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-nav-link {
    font-size: .75em;
    line-height: 2.66667;
  }

  .footer-copyright {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    grid-template-columns: auto;
    justify-items: end;
    margin-top: 0;
    padding: .5em 2em .25em;
  }

  .section-button-block {
    margin-top: 2em;
    padding-left: 0;
    padding-right: 0;
  }

  .services-item-icon {
    height: 3em;
  }

  .services-item-title-grid {
    margin-bottom: .5em;
  }

  .clients-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-wrap: wrap;
    padding: 2em;
  }

  .client-image {
    height: 1.77em;
  }

  .navbar-block {
    justify-content: center;
    align-items: center;
  }

  .square-dot {
    display: none;
  }

  .utility-section-block {
    padding: 4em 2em;
  }

  .contact-block {
    flex-direction: column;
    padding: 0;
  }

  .map-block {
    width: 100%;
    padding-top: 33.3333%;
    padding-bottom: 33.3333%;
    position: relative;
  }

  .contact-buttons-grid {
    margin-top: .5em;
    top: 2em;
    left: 2em;
  }

  .home-projects-list {
    grid-column-gap: 2em;
    grid-template-columns: 1fr 1fr;
    width: auto;
  }

  .home-services-list-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .caption-grid {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
  }

  .news-list {
    grid-column-gap: 1px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .news-link-block {
    justify-content: flex-start;
    padding: 1em;
  }

  .news-item-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .dots-grid {
    margin-top: .5em;
    display: none;
  }

  .description-block {
    margin-bottom: -.5em;
  }

  .description-image-block {
    margin-bottom: 1em;
    margin-right: 1em;
  }

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

  .t.sb {
    padding-left: 0;
    padding-right: 0;
  }

  .slider-2 {
    display: block;
  }

  .activities-slider.archery {
    background-image: url('../images/Salt-Creek-Ranch---June-2026--10.avif');
  }

  .activities-slider.billiards {
    background-image: url('../images/billiards-mobile.webp');
  }

  .activities-slider.swimming {
    background-image: url('../images/Swimming.webp');
  }

  .activities-slider.shuffelboard {
    background-image: url('../images/Shuffleboard.webp');
  }

  .activities-slider.polaris-offroading {
    background-image: url('../images/Polaris-offroading.webp');
  }

  .slide-2 {
    background-image: url('../images/Skeet-Shooting.webp');
  }

  .slider-3 {
    display: block;
  }

  .hunting-slider.seasonal {
    background-image: url('../images/Salt-Creek-Ranch---08.05.22---205.jpg');
  }

  .hunting-slider.night-vision {
    background-image: url('../images/Salt-Creek-Ranch---08.05.22---099.jpg');
  }

  .hunting-slider.predator {
    background-image: url('../images/Predator-imge.jpg');
    background-position: 50%;
    background-size: cover;
    background-attachment: scroll;
  }

  .hunting-slider.shootingrange {
    background-image: url('../images/IMG_5136.jpg');
    background-position: 50%;
    background-size: auto;
  }

  .highlight-wrapper {
    width: 100%;
    margin-bottom: 2em;
  }

  .highlight-wrapper.full-width {
    width: 100%;
  }

  .gallery-wrapper.space {
    width: 45%;
    margin: 2.5%;
  }

  .header-2.white.large.less-space {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
  }

  .header-2.overlay-header {
    margin-bottom: 0;
  }

  .header-2.overlay-header.smaller {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-2.information-box.space {
    margin-bottom: 15px;
  }

  .header-2.information-box.fixed-height {
    height: 4em;
  }

  .call-to-action, .gallery-section, .info-copy {
    padding: 4em 0 8em;
  }

  .header-3.white {
    text-align: center;
  }

  .header {
    background-color: var(--white);
    background-image: none;
  }

  .header-4.overlay {
    margin-bottom: -312px;
  }

  .header-image-background {
    text-align: center;
    position: absolute;
    overflow: visible;
  }

  .gallery-wrapper-header.overlay-header {
    margin-bottom: -124px;
  }

  .lightbox-link {
    max-width: 50%;
    max-height: 300px;
    margin-top: 17px;
  }

  .callout-title {
    font-size: 2.5em;
  }

  .gallery-wrapper-button.overlay-header {
    margin-bottom: -124px;
  }

  .image-12 {
    width: 15em;
  }

  .form-block {
    align-self: center;
    width: 85%;
  }

  .flex-wrapper {
    display: none;
  }

  .hero-container {
    height: 50vh;
  }

  .cta-text {
    width: 100%;
    color: var(--steel-blue);
    margin-top: 1em;
    font-size: 1.5em;
  }

  .cta-text.white.large.less-space {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
  }

  .cta-text.overlay-header {
    margin-bottom: 0;
  }

  .cta-text.overlay-header.smaller {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-text.information-box.space {
    margin-bottom: 15px;
  }

  .linktobutton {
    width: 100%;
  }

  .background-video-2 {
    height: 50vh;
  }

  .header-animal.white.large.less-space {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
  }

  .header-animal.overlay-header {
    margin-bottom: 0;
  }

  .header-animal.overlay-header.smaller {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-animal.information-box.space {
    margin-bottom: 15px;
  }

  .header-animal.information-box.fixed-height {
    height: 4em;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 3.247em;
  }

  h2 {
    margin-bottom: 14px;
    font-size: 2.566em;
  }

  h3 {
    margin-bottom: 14px;
    font-size: 2.027em;
  }

  h4 {
    margin-bottom: 14px;
    font-size: 1.602em;
  }

  h5 {
    margin-bottom: 14px;
    font-size: 1.266em;
  }

  h6 {
    margin-bottom: 14px;
    font-size: 1em;
  }

  .button-dark {
    height: 5em;
    font-size: .8em;
  }

  .projects-list {
    flex-flow: wrap;
  }

  .projects-item {
    flex: none;
    display: block;
  }

  .nav-brand.w--current {
    height: 4em;
  }

  .nav-menu {
    justify-content: center;
  }

  .nav-menu-button {
    font-size: 14px;
  }

  .nav-link {
    font-size: 2.7em;
  }

  .button {
    height: 5em;
    font-size: .8em;
  }

  .button.section {
    width: 100%;
  }

  .utility-hero-title-text {
    font-size: 3.052em;
  }

  .hero-grid {
    align-items: center;
  }

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

  .contact-form {
    width: 100%;
  }

  .caption-text {
    margin-bottom: .625em;
    font-size: .8em;
  }

  .navbar-grid {
    height: 60px;
  }

  .nav-menu-links-grid {
    flex-wrap: wrap;
    grid-template-rows: auto auto auto auto auto auto;
    justify-content: space-between;
    display: flex;
  }

  .licensing-title-text {
    margin-bottom: .2em;
  }

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

  .hero-slider-right-arrow {
    right: 2em;
  }

  .hero-slider-left-arrow {
    left: 2em;
  }

  .facts-grid {
    justify-content: center;
  }

  .facts-block {
    flex: 1;
  }

  .facts-title-text.old-home {
    font-size: 1.25em;
  }

  .projects-slider-left-arrow {
    left: 0%;
  }

  .projects-slider-right-arrow {
    right: 0%;
  }

  .projects-slide {
    width: 100%;
  }

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

  .footer-navbar {
    flex-direction: column;
    place-content: center;
    align-items: center;
    display: flex;
  }

  .footer-links-grid {
    justify-content: flex-start;
    display: flex;
  }

  .footer-nav-link {
    font-size: .8em;
    line-height: 2.5;
  }

  .footer-copyright {
    flex-flow: column wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .clients-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .client-image {
    flex: 1;
    height: 1.573em;
  }

  .home-projects-list {
    flex-flow: wrap;
    grid-template-columns: 1fr;
  }

  .image.with-background {
    background-image: url('../images/Salt-Creek-Ranch-236.webp');
    background-position: 50%;
    background-size: cover;
  }

  .image.with-background.scr-difference {
    background-image: url('../images/Salt-Creek-Ranch-169.webp');
    background-position: 50%;
    background-size: auto;
  }

  .slider-2 {
    width: 90%;
  }

  .hunting-slider.seasonal {
    background-image: url('../images/Morning-Dove.webp');
  }

  .hunting-slider.night-vision {
    background-image: url('../images/Night-Vision-Hunting.webp');
  }

  .gallery-wrapper {
    height: 250px;
  }

  .header-2 {
    font-size: 2em;
  }

  .header-2.overlay-header {
    margin-bottom: 0;
  }

  .header-4.overlay {
    margin-bottom: -304px;
  }

  .header-wrapper.no-space.image-background {
    background-image: url('../images/Salt-Creek-Ranch-270.webp');
    background-position: 50% 60%;
    background-size: cover;
  }

  .ic.package {
    flex: 0 auto;
  }

  .gallery-wrapper-header.overlay-header {
    margin-bottom: -115px;
  }

  .slider-header.text.no-space-below {
    font-size: 1.2em;
  }

  .slider-header.no-space-below {
    margin-bottom: 0;
    font-size: 2em;
  }

  .callout-title {
    font-size: 2em;
  }

  .gallery-wrapper-button.overlay-header {
    margin-bottom: -115px;
  }

  .slider-header-container-2 {
    padding-bottom: 20px;
  }

  .form-block {
    width: 90%;
  }

  .cta-text.overlay-header {
    margin-bottom: 0;
  }

  .header-animal {
    font-size: 2em;
  }

  .header-animal.overlay-header {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  .info {
    padding-bottom: 4em;
  }

  .projects-list {
    grid-template-columns: 1fr;
  }

  .projects-item {
    width: 100%;
  }

  .nav-brand {
    width: auto;
  }

  .nav-link {
    font-size: 2.4em;
  }

  .button {
    min-width: 8em;
  }

  .button._2 {
    justify-content: center;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }

  .utility-hero-title-text {
    font-size: 2.441em;
  }

  .contact-form {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .super-button {
    column-count: 1;
  }

  .nav-menu-links-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-auto-columns: auto;
    grid-auto-flow: row;
    justify-content: center;
    place-items: center;
    display: grid;
  }

  .licensing-buttons-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .licensing-block {
    flex-flow: column wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .form-text-field.newsletter {
    margin-bottom: 1em;
    margin-right: 0;
  }

  .buttons-hero-grid, .home-news-list {
    grid-template-columns: 1fr;
  }

  .about-column-2 {
    background-image: none;
  }

  .facts-grid, .facts-grid.second-level {
    grid-template-columns: 1fr;
  }

  .facts-title-text.old-home {
    font-size: 1.5em;
  }

  .frequenty-asked-questions {
    width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-nav-brand {
    width: auto;
  }

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

  .clients-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .contact-buttons-grid {
    flex-wrap: wrap;
    grid-auto-flow: column;
    justify-content: center;
    display: flex;
  }

  .home-projects-list, .news-list {
    grid-template-columns: 1fr;
  }

  .news-item-grid {
    grid-template-columns: auto;
  }

  .description-image-block {
    width: 100%;
    margin-right: 0;
    padding-top: 33.3333%;
    padding-bottom: 33.3333%;
  }

  .call-to-action-wrapper {
    justify-content: center;
    align-items: center;
    width: 98%;
    height: 250px;
    padding: 0;
  }

  .large-image-section {
    background-image: url('../images/IMG-197.webp');
  }

  .no-style-link {
    line-height: 1.5;
  }

  .image.with-background.scr-difference {
    background-size: cover;
  }

  .slider-2 {
    width: 95%;
    height: 20em;
  }

  .hunting-slider.texas {
    background-image: none;
  }

  .hunting-slider.predator {
    background-image: url('../images/predator.webp');
  }

  .hunting-slider.shootingrange {
    background-image: url('../images/Salt-Creek-Ranch-5136.webp');
  }

  .gallery-lightbox, .gallery-wrapper.no-space {
    width: 100%;
  }

  .gallery-wrapper.space {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .header-2 {
    padding-left: 0;
    padding-right: 0;
    font-size: 1.5em;
  }

  .header-2.white {
    margin-top: 20px;
  }

  .header-2.white.large.less-space {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3em;
    line-height: 1;
  }

  .header-2.overlay-header {
    margin-bottom: 0;
    padding-bottom: 50px;
    font-size: 1.4em;
  }

  .header-2.overlay-header.smaller {
    font-size: 2em;
  }

  .header-2.information-box.space {
    margin-bottom: 10px;
  }

  .header-1.white {
    font-size: 2em;
  }

  .header-3.white {
    font-size: 1em;
  }

  .header {
    background-image: url('../images/bison.webp');
  }

  .header-4.white {
    font-size: 1.5em;
  }

  .header-4.overlay {
    margin-bottom: -318px;
    font-size: 1em;
    line-height: 2;
  }

  .header-wrapper.no-space {
    object-fit: cover;
    height: 100%;
  }

  .header-image-background {
    overflow: hidden;
  }

  .ic.amenities {
    width: 95%;
    margin-left: 0;
    margin-right: 0;
  }

  .learn-more {
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .image-8 {
    height: 6%;
  }

  .gallery-wrapper-header.overlay-header {
    margin-bottom: -114px;
    font-size: 3.5em;
  }

  .slider-header.text.no-space-below {
    font-size: .9em;
  }

  .slider-header.no-space-below {
    font-size: 1.5em;
  }

  .white-space.small.mobile {
    height: 0;
  }

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

  .sub-heading {
    font-weight: 600;
  }

  .callout-title {
    font-size: 1.7em;
  }

  .gallery-wrapper-button.overlay-header {
    margin-bottom: -114px;
    font-size: 3.5em;
  }

  .blue-heading {
    font-weight: 600;
  }

  .submit-button {
    width: 40%;
  }

  .swash {
    width: 15em;
  }

  .footer-big-text.smaller {
    font-size: 1.5em;
  }

  .hero-text-container {
    width: 90%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cta-text {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cta-text.white {
    margin-top: 20px;
  }

  .cta-text.white.large.less-space {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3em;
    line-height: 1;
  }

  .cta-text.overlay-header {
    margin-bottom: 0;
    padding-bottom: 50px;
    font-size: 1.4em;
  }

  .cta-text.overlay-header.smaller {
    font-size: 2em;
  }

  .cta-text.information-box.space {
    margin-bottom: 10px;
  }

  .header-animal {
    padding-left: 0;
    padding-right: 0;
    font-size: 1.5em;
  }

  .header-animal.white {
    margin-top: 20px;
  }

  .header-animal.white.large.less-space {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3em;
    line-height: 1;
  }

  .header-animal.overlay-header {
    margin-bottom: 0;
    padding-bottom: 50px;
    font-size: 1.4em;
  }

  .header-animal.overlay-header.smaller {
    font-size: 2em;
  }

  .header-animal.information-box.space {
    margin-bottom: 10px;
  }

  .animal-header {
    background-image: url('../images/bison.webp');
  }
}

#w-node-ed86496d-909d-dd0d-7622-4a97d53a4925-9a37d8c0, #w-node-_7b082d69-ce27-64f1-b0e3-691e9fcf2921-9a37d8c0, #w-node-_86cde96f-acc0-7e9b-d220-c008b82e5dc7-9a37d8c0, #w-node-_373e0df4-c11c-7640-19cd-8b5b4aa4dc7d-9a37d8c0, #w-node-c2652b67-705f-2e3a-c7b0-025b776cfe7a-9a37d8c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83945e0f-3e4a-d68d-ffd5-4aebf38058aa-efba9f2e {
  align-self: center;
}

#w-node-_286fb7f3-ef6a-e6c8-9c72-d49eefba9f34-efba9f2e {
  place-self: center end;
}

#w-node-_9632bed4-1893-5852-36ae-f9600d787890-0d870de7, #w-node-_9632bed4-1893-5852-36ae-f9600d787897-0d870de7 {
  align-self: center;
}

#w-node-_9632bed4-1893-5852-36ae-f9600d78789e-0d870de7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4ea4c837-36a1-59de-b0fe-7f7597accdbf-0d870de7, #w-node-_4ea4c837-36a1-59de-b0fe-7f7597accdc5-0d870de7, #w-node-_4ea4c837-36a1-59de-b0fe-7f7597accdcd-0d870de7, #w-node-d32f2d01-371c-8125-9ab7-6e87302a86e4-302a86de, #w-node-d32f2d01-371c-8125-9ab7-6e87302a86e5-302a86de {
  align-self: center;
}

#w-node-_96b50fb7-9f9c-582f-92a2-28eed6adca77-9a870df1 {
  place-self: center;
}

#contact-form.w-node-_96b50fb7-9f9c-582f-92a2-28eed6adca78-9a870df1, #w-node-_96b50fb7-9f9c-582f-92a2-28eed6adca7f-9a870df1, #w-node-_96b50fb7-9f9c-582f-92a2-28eed6adca82-9a870df1 {
  align-self: center;
}

@media screen and (min-width: 1280px) {
  #w-node-cbad3863-8c60-752e-329f-191803180f05-0d870de7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d3364e26-40dd-8ebf-ed28-d939ac04e0d4-0d870de7, #w-node-_64fcc26d-33ef-e2a6-8de0-863b2a18bce8-92870e16 {
    align-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_286fb7f3-ef6a-e6c8-9c72-d49eefba9f2f-efba9f2e {
    justify-self: start;
  }

  #w-node-_286fb7f3-ef6a-e6c8-9c72-d49eefba9f41-efba9f2e {
    justify-self: end;
  }

  #w-node-d32f2d01-371c-8125-9ab7-6e87302a86e0-302a86de {
    justify-self: start;
  }

  #w-node-d32f2d01-371c-8125-9ab7-6e87302a86e7-302a86de {
    justify-self: end;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_96b50fb7-9f9c-582f-92a2-28eed6adca79-9a870df1, #contact-message-2.w-node-_96b50fb7-9f9c-582f-92a2-28eed6adca7d-9a870df1, #w-node-_96b50fb7-9f9c-582f-92a2-28eed6adca7e-9a870df1 {
    grid-column: span 1 / span 1;
  }
}


