* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 80px;
  -webkit-tap-highlight-color: transparent;
}

html {
  background-color: white;
}

body {
  color: #313031;
  line-height: 1.2;
}

/* -------------------------------------- HEADER -------------------------------------- */
header {
  background-color: white;
  position: sticky;
  top: 0;
  height: 80px;
  z-index: 100;
  -webkit-box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.445);
          box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.445);
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}
header .header-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
header .header-content nav a {
  text-decoration: none;
  color: #313031;
  font-weight: 500;
  position: relative;
}
header .header-content nav a.active::after {
  opacity: 1;
}
header .header-content nav a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2.2px;
  left: 0;
  bottom: -3px;
  background-color: rgb(0, 0, 0);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header-content nav a.contact {
  background-color: #567757;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}
header .header-content nav a.contact:hover {
  background-color: #3a4a3a;
}

#close-menu,
#open-menu {
  display: none;
  cursor: pointer;
}

/* -------------------------------------- Typography -------------------------------------- */
h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 60px;
  color: white;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
}
h1 span {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 5px;
}

h2 {
  font-size: 22px;
}

h2.title {
  font-size: 48px;
  color: #313031;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 60px;
}
h2.title.light {
  color: white;
}
h2.title.start {
  text-align: start;
  margin-bottom: 20px;
}

ul {
  margin-left: 30px;
}

.text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding: 20px 0;
}
.text h2 {
  font-size: 24px;
}
.text p {
  max-width: 768px;
}

/* -------------------------------------- Buttons -------------------------------------- */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #567757;
  color: white;
  padding: 10px 30px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: auto;
  letter-spacing: 0.5px;
  gap: 5px;
  line-height: 27px;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}
.btn img {
  height: auto;
  width: 24px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn:hover {
  background-color: #3a4a3a;
}

/* -------------------------------------- Containers -------------------------------------- */
main {
  opacity: 0;
  -webkit-animation: 0.3s ease-in fadeIn forwards;
          animation: 0.3s ease-in fadeIn forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  background-color: white;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.container-full {
  background-size: cover;
}
.container-full.bg1 {
  background-image: url("../assets/images/IMG_0450.webp");
  background-position: center;
  background-size: cover;
}
.container-full.bg2 {
  background-color: white;
}
.container-full.bg3 {
  background-image: url("../assets/images/IMG_0235.webp");
  background-position: bottom;
  background-size: cover;
}

.container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* -------------------------------------- Banner -------------------------------------- */
.banner {
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  text-align: center;
  height: 400px;
  padding: 20px;
}
.banner h2 {
  color: white;
  font-size: 60px;
}
.banner p {
  font-size: 32px;
  color: white;
}
.banner.bear {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../assets/images/bear/18.webp");
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/bear/18.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner.whitetail {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../assets/images/whitetail/2.webp");
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/whitetail/2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* -------------------------------------- Home Grid -------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.grid-2 .grid-2-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  background-color: white;
  padding: 30px;
  text-align: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.grid-2 .grid-2-item .cover {
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

/* -------------------------------------- Subpages -------------------------------------- */
.subpage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  gap: 45px;
}
.subpage-grid .gallery {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}

.images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.images img {
  width: 100%;
}

.legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* -------------------------------------- Gallery -------------------------------------- */
.gallery {
  -webkit-columns: 3;
     -moz-columns: 3;
          columns: 3;
}
.gallery img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 5px rgba(100, 100, 100, 0.2);
          box-shadow: 0 0 5px rgba(100, 100, 100, 0.2);
}

/* -------------------------------------- Form -------------------------------------- */
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding: 40px;
  background-color: white;
  max-width: 900px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}
form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
form .form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
form label {
  font-weight: 600;
}
form label span {
  color: red;
}
form input,
form textarea {
  outline: none !important;
  padding: 15px;
  width: 100%;
  border: none;
  font-family: inherit;
  font-size: 15px;
  background: #f2f2f2;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
form button {
  display: block;
  background-color: #567757;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: auto;
  font-size: 18px;
  font-family: inherit;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}
form button:hover {
  background-color: #3a4a3a;
}
form p {
  font-size: 14px;
  font-weight: 600;
}
form p span {
  color: red;
}
form .checkbox-label {
  display: block;
  margin: 10px 0;
  font-weight: 400;
}
form .checkbox-label input {
  width: auto;
  padding-left: 10px;
}
form .checkbox-label a {
  color: black;
  font-weight: 600;
}

/* -------------------------------------- Footer -------------------------------------- */
footer {
  background-color: black;
  color: white;
}
footer .footer-content {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
footer .footer-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}
footer .footer-col h4 {
  margin-bottom: 5px;
}
footer .logo {
  max-width: 200px;
  border-radius: 8px;
  width: 100%;
  background-color: white;
  padding: 10px;
}
footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 16px;
}
footer .social img {
  -webkit-filter: brightness(0) saturate(100%) invert(98%) sepia(98%) saturate(8%) hue-rotate(144deg) brightness(103%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(98%) sepia(98%) saturate(8%) hue-rotate(144deg) brightness(103%) contrast(102%);
}
footer .copyright {
  font-size: 14px;
  padding: 20px;
  text-align: center;
}
footer a {
  color: white;
  text-decoration: none;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.socials a {
  font-size: 0;
}

/* -------------------------------------- Media Queries -------------------------------------- */
@media only screen and (max-width: 992px) {
  .container {
    padding: 20px;
  }
  h1 {
    margin-top: 40px;
    font-size: 50px;
  }
  .banner h2 {
    font-size: 42px;
  }
  h2.title {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 32px;
  }
  .text h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  p,
  label,
  a {
    font-size: 15px;
  }
  form input,
  form textarea,
  form button {
    font-size: 15px;
  }
  form input,
  form textarea {
    padding: 10px;
  }
  header .header-content nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  header .header-content nav.active {
    opacity: 1;
    pointer-events: all;
  }
  header .header-content nav a {
    font-size: 16px;
  }
  header .header-content nav .separator {
    display: none;
  }
  #close-menu,
  #open-menu {
    display: block;
  }
  #close-menu {
    position: absolute;
    top: 27px;
    right: 20px;
  }
  footer .footer-content {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-2 .grid-2-item {
    padding: 20px;
    gap: 15px;
  }
  .subpage-grid {
    gap: 15px;
    grid-template-columns: 1fr;
  }
  .text {
    padding: 0;
  }
}
@media only screen and (max-width: 600px) {
  .gallery {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
  form {
    padding: 25px;
  }
  form .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 400px) {
  h1 {
    font-size: 30px;
  }
  .banner {
    height: 260px;
  }
  .banner h2 {
    font-size: 34px;
  }
  h2.title {
    font-size: 26px;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .gallery {
    -webkit-columns: 1 !important;
       -moz-columns: 1 !important;
            columns: 1 !important;
  }
}/*# sourceMappingURL=styles.css.map */