@media (min-width: 768px) {
  body {
    line-height: 1.5;
  }
}

a {
  cursor: pointer;
}

.square-container {
  position: relative;

  padding-top: 100%;
}

.square-content {
  position: absolute;
  left: 0px;
  top: 0px;

  height: 100%;
  width: 100%;
  overflow: hidden;
}

.text-gold {
  color: gold;
}

.HeaderClass {
  position: relative;

  background-image: url('https://static.ct8.pl/codepen/jungle1.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;

  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding: 25px;
  padding-top: 75px;
}

.HeaderClass-title {
  position: absolute;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  z-index: 1;
}


@media (min-width: 992px) {
  .HeaderClass {
    padding: 100px;
    padding-top: 175px;
  }

  .HeaderClass-title-h1-title {
    font-size: 150%;
  }
}

@media (min-width: 1600px) {
  .HeaderClass-title-h1-title {
    font-size: 200%;
  }
}

.nav-link {
  color: #111;
  font-weight: bold;
  padding: 10 25px;
}

.nav-link:hover {
  color: var(--cor-primaria-yuppies);
  font-weight: bold;
  padding: 10 25px;
}

.nav-link-footer {
  color: #111;
  font-weight: normal;
  padding: 0;
}

.nav-link-footer:hover {
  color: var(--cor-primaria-yuppies);
  font-weight: normal;
  padding: 0;
}




.Navbar {
  position: fixed;
  left: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  width: 100%;
  z-index: 10;
}

.Navbar-menu {
  display: none;
}

.Navbar-modal {
  position: absolute;
  left: 0px;
  top: 0px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  height: 100vh;
  width: 100%;
  z-index: 9;
}

.Navbar-modal-input {
  opacity: 0;
}

.Navbar-modal-input,
.Navbar-modal-label {
  position: absolute;
  right: 0px;
  top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  height: 50px;
  width: 50px;
  color: var(--cor-primaria-yuppies);
}

.Navbar-modal-input:hover,
.Navbar-modal-label:hover {
  color: #fff;
  cursor: pointer;
}

.Navbar-modal-label::selection {
  background: transparent;
}

.Navbar-modal-input:checked+.Navbar-modal {
  display: flex;
}

.Navbar-modal-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-terciaria-yuppies);
  height: 50px;
  width: 100%;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 900;
}

.Navbar-modal-link:hover {
  color: var(--cor-primaria-yuppies);
  text-decoration: none;
}

.Navbar-modal-list {
  list-style: none;
  margin: 0px;
  padding: 0px;
  width: 100%;
  z-index: 1;
}

.Navbar-modal-title {
  position: absolute;
  left: 30px;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: bold;
  height: auto;
  width: 80px;
  line-height: 1;
  margin-left: 0;
}



@media (min-width: 992px) {
  .Navbar {
    height: 100px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .Navbar-menu {
    display: flex;
  }

  .Navbar-modal,
  .Navbar-modal-input,
  .Navbar-modal-label {
    display: none !important;
  }

  .Navbar-modal-link {
    padding-left: 25px;
    padding-right: 25px;
  }

  .Navbar-title {
    padding-left: 25px;
    padding-right: 25px;
  }

  .Navbar-title-long {
    display: flex;
  }

  .Navbar-title-short {
    display: none;
  }
}