@font-face {
  font-family: "Baloo2M";
  src: url("../assets/fonts/Baloo2-Medium.ttf");
}

@font-face {
  font-family: "Baloo2R";
  src: url("../assets/fonts/Baloo2-Regular.ttf");
}

@font-face {
  font-family: "Baloo2Bold";
  src: url("../assets/fonts/Baloo2-Bold.ttf");
}

h1,
h2 {
  font-family: "Baloo2M";
}

p {
  font-family: "Baloo2R" !important;
}

h1,
h2,
p {
  color: #4a683b;
}

.sticky {
  top: 0;
  display: flex;
  width: 100%;
  justify-content: space-around;
  background-color: white;
}

.header_menu_logo {
  display: flex;
  width: 32%;
  z-index: 10;
  justify-content: center;
  height: 100%;
}

header {
  z-index: 10;
}

.logo {
  border: none;
  background: transparent;
}

.logo img {
  height: 100px;
}

.show-menu-btn,
.hide-menu-btn {
  transition: 0.4s;
  font-size: 30px;
  cursor: pointer;
  display: none;
  z-index: 10;
}

.show-menu-btn i {
  color: #4a683b;
}

.header_menu {
  background-color: white;
  z-index: 10;
  font-family: "Baloo2" !important;
  flex-direction: column;
  align-items: center;
}

.links {
  display: flex;
  background-color: white;
  align-items: center;
  height: 250px;
  width: 100%;
  justify-content: space-between;
}

.contato-wrapper {
  background-color: white;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.contato {
  height: 100px;
  z-index: 1;
  width: 62%;
  background-color: white;
  align-items: center;
  display: flex;
  justify-content: flex-start;
}

.contato i {
  color: #9c9c9c;
  margin-right: 80px;
}

.contato p {
  color: #9c9c9c;
  margin: 0 50px 0 0;
}
.contato input {
  margin: 10px;
  padding: 8px;
  font-family: "Baloo2R";
  color: #9c9c9c;
  border-radius: 3em;
  border: 1px #9c9c9c solid;
  letter-spacing: 0.1em;
}
.search {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

#chk {
  position: absolute;
  visibility: hidden;
  z-index: -1111;
}

.header_menu a:hover {
  text-decoration: none;
}

.header-green {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 68%;
  background-image: white;
  height: 100%;
  position: relative;
}

.menu {
  display: flex;
  justify-content: space-evenly;
  width: 90%;
  padding-bottom: 60px;
}

.menu a {
  font-size: large;
  background-color: transparent;
  text-decoration: none;
  color: #4a683b;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0 10px 0 10px;
  text-align: center;
  transition: all 0.3s;
  z-index: 1;
  display: inline-block;
}

.basic:hover {
  cursor: pointer;
  color: #68db51;
}

.basic::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #68db51;
  transition: width 0.3s;
}

.active::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background: #dbcd51;
  transition: width 0.3s;
}

.basic:hover::after {
  width: 50%;
  transition: width 0.3s;
}

.headerOverlay {
  background-color: white;
  border-bottom: 2px solid #4a683b;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -100;
}

.menu a {
  padding-top: 5px;
  height: 50px;
}


@media only screen and (max-width: 1310px) {
  .menu a {
    font-size: 13px;
}

@media only screen and (max-width: 1088px) {
  #chk:checked ~ .header-green .menu {
    top: 200px;
  }

  .header_menu_logo {
    align-items: center;
  }

  .menu button {
    height: 60px;

    align-content: space-around;
  }
}

@media only screen and (max-width: 999px) {
  .contato {
    display: none;
  }
  .headerOverlay {
    opacity: 1;
    z-index: 3;
    height: 200px;
  }
  .header-green {
    overflow: unset;
    width: 0;
  }

  .links {
    height: 200px;
    justify-content: space-evenly;
  }

  .show-menu-btn,
  .hide-menu-btn {
    color: white;
    font-size: 20px;
    display: block;
  }
  .menu {
    border-top: 1px solid black;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: white;
    top: -200%;
    left: 0px;
    text-align: center;
    padding: 0;
    line-height: normal;
    transition: 0.7s;
  }

  .menu a {
    padding-top: 5px;
    height: 50px;
  }

  #chk:checked ~ .header-green .menu {
    top: 200px;
  }

  .header_menu {
    position: fixed;
  }

  .menu button {
    height: 60px;
    align-content: space-around;
  }
}

@media only screen and (max-width: 700px) {
  .header_menu,
  .sticky {
    height: 50px;
  }

  .headerOverlay {
    height: 50px;
  }

  #chk:checked ~ .header-green .menu {
    top: 50px;
  }

  .links {
    height: 50px;
  }
  .logo img {
    height: 30px;
  }
}
