@import url("https://fonts.googleapis.com/css2?family=Nunito&family=Nunito+Sans&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

html {
  font-size: 62.5%;
}

.header.header-active {
  background-color: #fff;
}

.header.header-active .navbar {
  padding: 0.2rem 0;
}

.header.header-active .nav-menu .nav-item .nav-link {
  color: gray;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}

.navbar {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 0;
  font-size: 1.7rem;
}

.nav-logo {
  color: #fbaf32;
  font-weight: 700;
  font-size: 4.5rem;
}

.nav-logo span {
  color: var(--green);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.nav-logo span:hover {
  color: #fbaf32;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.5rem;
}

.nav-item {
  margin-right: 2rem;
}

.nav-link {
  color: white;
  font-weight: 600;
}

.nav-link:hover {
  color: #fbaf32;
}

.page-menu {
  position: absolute;
  background-color: white;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pages:hover .page-menu {
  opacity: 1;
  display: block;
}

.page-item {
  margin: 1.5rem;
  margin-right: 4rem;
}

.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #c8c2c2;
  padding: 1rem;
  border-radius: 0.5rem;
}

.bar {
  width: 25px;
  height: 4px;
  background-color: gray;
  margin: 2px;
  border-radius: 2rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.home {
  margin-top: -10.2rem;
  width: 100%;
  height: 100vh;
}

.carousel {
  opacity: 0;
  width: 100%;
  height: 100vh;
  position: absolute;
  -webkit-transition: all 3s ease;
  transition: all 3s ease;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: 100%;
  -webkit-filter: brightness(0.3);
          filter: brightness(0.3);
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: none;
  transition: none;
}

.active {
  opacity: 1;
}

.carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.carousel .text {
  color: #fff;
  text-align: center;
  position: absolute;
  z-index: 1;
}

.carousel .text .button1 {
  border: 2px solid #fbaf32;
  color: white;
  background-color: #fbaf32;
  padding: 1.5rem 3rem;
  font-size: 1.5rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
}

.carousel .text .button1:hover {
  background-color: transparent;
  color: #fbaf32;
}

.carousel .text .button2 {
  border: 2px solid #fbaf32;
  color: white;
  background-color: #fbaf32;
  padding: 1.5rem 3rem;
  font-size: 1.5rem;
  border-radius: 0.5rem;
  background-color: #719a0a;
  border-color: #719a0a;
}

.carousel .text .button2:hover {
  background-color: transparent;
  color: #719a0a;
}

.carousel .text p {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.carousel .text h1 {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.carousel .text h1 span {
  color: #fbaf32;
}
/*# sourceMappingURL=style.css.map */