@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
  --green: hsla(93, 60%, 21%, 1);
  --smokeWhite: hsla(0, 0%, 60%, 1);
  --fontColor: hsla(0, 0%, 23%, 1);
  --black: #000;
  --white: #fff;
  --sectionColor: hsla(240, 31%, 6%, 1);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
html {
  font-size: 62.5%;
}
body {
  font-family: "Outfit", sans-serif;
  color: var(--fontColor);
  background: var(--White);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,
button,
textarea,
select {
  font: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
pre {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1;
}
@media screen and (max-width: 960px) {
  h1,
  h2,
  h3 {
    line-height: 1.3;
  }
}
section {
  width: 100%;
}

/* --------------- */
/* --- HEADER ---- */
/* --------------- */
.header {
  width: 100%;
  height: 100vh;
  background: url(assets/images/hero-section.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 641px) {
  .header {
    height: auto;
    padding-bottom: 16rem;
  }
}
.header-wrap {
  width: 100%;
  max-width: 116rem;
  padding: 0 2rem;
  margin: 0 auto;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}
.logo {
  width: 11rem;
  aspect-ratio: 110 /97;
}
.nav-items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 781px) {
  .nav-items {
    gap: 2rem;
  }
}
@media screen and (max-width: 641px) {
  .navdesk {
    display: none;
  }
}
.barholder {
  display: none;
  position: relative;
  z-index: 1000;
}
.bar {
  width: 35px;
  height: 3px;
  border-radius: 2px;
  background: var(--green);
  transition: all 0.3s ease-in-out;
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(0px, 6px);
  transform: rotate(-45deg) translate(-5px, 18px);
}
.change .bar2 {
  opacity: 0;
}
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(0px, -8px);
  transform: rotate(45deg) translate(1px, -11px);
}
.navmob {
  display: none;
}
@media screen and (max-width: 641px) {
  .barholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }
  .navmob {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 12rem 2rem 2rem 2rem;
    background-color: var(--white);
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 999;
    transition: all 0.3s ease-in-out;
  }
}
.toggle {
  right: 0;
}
.nav-item {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 781px) {
  .nav-item {
    font-size: 1.6rem;
  }
}
.nav-item:hover {
  color: var(--white);
}
.button {
  padding: 1rem 2rem;
  border: 2px solid var(--green);
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}
.button:hover {
  border-radius: unset;
  border: 2px solid var(--white);
}
.header-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 12rem;
  gap: 2.4rem;
}
.header-content-h1 {
  color: var(--white);
  width: 100%;
  max-width: 69rem;
  font-size: 7.2rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 641px) {
  .header-content-h1 {
    font-size: 4.2rem;
  }
}
.header-content-p {
  color: var(--white);
  font-size: 2.9rem;
  width: 100%;
  max-width: 61.6rem;
}
@media screen and (max-width: 641px) {
  .header-content-p {
    font-size: 2rem;
  }
}
.header-content-button {
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  padding: 2rem 5rem;
  text-transform: uppercase;
  border: 2px solid var(--white);
  background-color: transparent;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 641px) {
  .header-content-button {
    font-size: 1.6rem;
    padding: 1.6rem 3.2rem;
  }
}
.header-content-button:hover {
  border: 2px solid var(--green);
  background-color: var(--green);
  border-radius: unset;
}

/* ------------------ */
/* --- SECTION 2 ---- */
/* ------------------ */
.section-2 {
  background: url(assets/images/forest-background.png) no-repeat bottom right;
  background-size: cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1251px) {
  .section-2 {
    background: none;
  }
}
.section-2-wrap {
  width: 100%;
  max-width: 116rem;
  margin: 0 auto;
  padding: 7.1rem 2rem 40.6rem 2rem;
}
@media screen and (max-width: 1251px) {
  .section-2-wrap {
    padding: 7.1rem 2rem 2rem 2rem;
  }
}
.h2 {
  max-width: 67.1rem;
  font-size: 5.1rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 681px) {
  .h2 {
    font-size: 3.6rem;
    text-align: center;
  }
}
.divider {
  width: 6.5rem;
  height: 0.8rem;
  background-color: var(--green);
  border-radius: 10px;
}
.location-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6.3rem;
  margin: 3.2rem 0 1.8rem 0;
}
.height {
  position: relative;
  font-size: 1.6rem;
  font-weight: 300;
  padding-left: 2.8rem;
}
@media screen and (max-width: 681px) {
  .height {
    font-size: 1.4rem;
  }
}
.height::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(assets/images/triangle-icon.svg) no-repeat center center;
  background-size: contain;
  width: 2.4rem;
  aspect-ratio: 24 / 24;
}
.coordinates {
  position: relative;
  font-size: 1.6rem;
  font-weight: 300;
  padding-left: 2.8rem;
}
@media screen and (max-width: 681px) {
  .coordinates {
    font-size: 1.4rem;
  }
}
.coordinates::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(assets/images/compass-icon.svg) no-repeat center center;
  background-size: contain;
  width: 2.4rem;
  aspect-ratio: 24 / 24;
}
.location {
  position: relative;
  font-size: 1.6rem;
  font-weight: 300;
  padding-left: 2.8rem;
}
@media screen and (max-width: 681px) {
  .location {
    font-size: 1.4rem;
  }
}
.location::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(assets/images/location-icon.svg) no-repeat center center;
  background-size: contain;
  width: 2.4rem;
  aspect-ratio: 24 / 24;
}
.p {
  max-width: 54.6rem;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 300;
  margin-top: 4.6rem;
}
@media screen and (max-width: 681px) {
  .p {
    font-size: 1.6rem;
  }
}
.forest-2 {
  display: none;
}
@media screen and (max-width: 1251px) {
  .forest-2 {
    display: block;
    width: 100%;
    aspect-ratio: 1440 / 343;
  }
}

/* ------------------ */
/* --- SECTION 3 ---- */
/* ------------------ */
.section-3 {
  width: 100%;
  background: var(--black);
  padding-top: 10rem;
}
.section-3-wrap {
  width: 100%;
  max-width: 116rem;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, auto);
  margin-top: 10rem;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 3.6rem;
    margin-top: 6rem;
  }
}
@media screen and (max-width: 481px) {
  .services-grid {
    grid-template-columns: repeat(1, auto);
    justify-content: center;
    gap: 3.6rem;
    margin-top: 6rem;
  }
}
.grid-element {
  max-width: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 3.6rem;
}
@media screen and (max-width: 991px) {
  .grid-element {
    gap: 2rem;
  }
}
.grid-image {
  width: 100%;
  max-width: 20rem;
  aspect-ratio: 200 / 300;
}
.grid-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #999999;
}
@media screen and (max-width: 991px) {
  .grid-title {
    font-size: 2rem;
  }
}
.mountain-bottom {
  width: 100%;
  aspect-ratio: 1440 / 381;
  margin-top: 4.6rem;
}
.color-grey {
  color: #999999;
}

/* ------------------ */
/* --- SECTION 4 ---- */
/* ------------------ */
.section-4 {
  width: 100%;
  background-color: var(--black);
  padding: 5rem 0 6.4rem 0;
}
@media screen and (max-width: 781px) {
  .section-4 {
    padding: 5rem 0 12.8rem 0;
  }
}
.section-4-wrap {
  position: relative;
  width: 100%;
  max-width: 116rem;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.section-4-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 7rem;
}
@media screen and (max-width: 781px) {
  .section-4-flex {
    flex-direction: column;
    align-items: center;
    gap: 8rem;
    margin-top: 7rem;
  }
}
.guide-flex {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3.2rem;
  position: relative;
  z-index: 100;
}
.guide-top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3.2rem;
}
.guide-image {
  width: 100%;
  max-width: 10rem;
  aspect-ratio: 1 / 1;
}
@media screen and (max-width: 641px) {
  .guide-image {
    max-width: 8rem;
  }
}
.guide-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
.name {
  font-size: 2.2rem;
  color: var(--white);
  font-weight: normal;
}
@media screen and (max-width: 641px) {
  .name {
    font-size: 2rem;
  }
}
.guide-title {
  font-size: 2rem;
  color: #ffffff44;
  font-weight: normal;
}
@media screen and (max-width: 641px) {
  .guide-title {
    font-size: 1.8rem;
  }
}
.stars {
  width: 100%;
  max-width: 12.2rem;
  aspect-ratio: 122 / 18;
}
.guide-p {
  max-width: 30rem;
  font-size: 1.7rem;
  color: var(--white);
  font-weight: normal;
  line-height: 1.3;
}
@media screen and (max-width: 641px) {
  .guide-p {
    font-size: 1.6rem;
  }
}
.guide-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.2rem;
}
.phone {
  position: relative;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: normal;
  padding-left: 4.4rem;
}
.phone::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(assets/images/phone.svg) no-repeat center center;
  background-size: contain;
  width: 3.2rem;
  aspect-ratio: 32 / 32;
}
.email {
  position: relative;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: normal;
  padding-left: 4.4rem;
}
.email::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(assets/images/email.svg) no-repeat center center;
  background-size: contain;
  width: 3.2rem;
  aspect-ratio: 32 / 32;
}
.flying-bird-1 {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 12.8rem;
  aspect-ratio: 128 / 128;
}
@media screen and (max-width: 781px) {
  .flying-bird-1 {
    width: 8rem;
    left: 54%;
    top: 54%;
  }
}
.flying-bird-2 {
  position: absolute;
  top: 80%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 12.8rem;
  aspect-ratio: 128 / 128;
}
@media screen and (max-width: 781px) {
  .flying-bird-2 {
    top: unset;
    bottom: -7%;
    left: 66%;
    width: 8rem;
  }
}

/* --------------- */
/* --- FOOTER ---- */
/* --------------- */
.footer {
  width: 100%;
  background-color: var(--white);
  padding: 6.4rem 0 3.2rem;
}
.footer-wrap {
  position: relative;
  width: 100%;
  max-width: 116rem;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid #11ee1e;
}
@media screen and (max-width: 641px) {
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5.3rem;
}
@media screen and (max-width: 641px) {
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer-link {
  font-size: 1.8rem;
  color: var(--green);
  font-weight: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 641px) {
  .footer-link {
    font-size: 1.6rem;
  }
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.6rem;
}
@media screen and (max-width: 641px) {
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 3.6rem;
  }
}
.copyright {
  font-size: 1.8rem;
  font-weight: normal;
  color: var(--black);
}
@media screen and (max-width: 641px) {
  .copyright {
    font-size: 1.6rem;
  }
}
.socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.6rem;
}
@media screen and (max-width: 641px) {
  .socials {
    gap: 2.8rem;
  }
}
.social-link {
  width: 100%;
  max-width: 3.2rem;
  aspect-ratio: 32 / 32;
}
@media screen and (max-width: 641px) {
  .social-link {
    max-width: 2.4rem;
  }
}
