body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10001;
  width: 100%;
  height: 125px;
}

.navbar.is_transparent {
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1245px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1245px;
  margin: 0 auto;
}

.list-home {
  border-radius: 4px;
  background-color: rgb(222, 255, 81);
  padding: 5px 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 16px, rgba(0, 0, 0, 0.19) 0px 6px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.house-icon {
  width: 30px;
  height: 30px;
}

.list-home-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.list-home-text {
  display: flex;
  flex-direction: column;
}

.list-home-title {
  font-size: 18px;
  font-weight: 600;
  color: rgb(77, 202, 210);
}

.list-home-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin-top: -4px;
}

.logo img {
  height: 125px;
  width: 125px;
  margin-bottom: -7px;
}

.auth_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 680px;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  margin-right: 15px;
}

.menu-item:last-child {
  margin-right: 0;
}

.menu-item a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}

.sign_up {
  background-color: rgb(77, 202, 210);
  transition: opacity 0.2s ease 0s;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 38px;
  border-radius: 3px;
}

.sign_up:hover {
  background-color: #ff8c5a;
}

.sign_in {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
}

/* Mobile Responsive */
@media (max-width: 1920px) and (min-width: 769px) {
  .navigation {
    display: none !important;
  }

  .auth_menu {
    display: flex;
  }
}

@media (max-width: 1245px) {
  .header .container {
    width: 95%;
  }
}

/* @media (max-width: 992px) {} */

/* For screens 768px or less */
@media (max-width: 992px) {
  .navigation {
    display: block !important;
  }

  .auth_menu {
    display: none;
  }

  .menu-item {
    margin-right: 0px;
  }
}



/* Quick css for presentation */
.navigation {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navigation__logo a {
  text-decoration: none;
}

.navigation__logo p {
  color: #ffffff;
  font-weight: bolder;
  text-transform: uppercase;
  text-decoration: none;
}

.navigation__links {
  position: absolute;
  width: 300px;
  height: 100vh;
  left: -1000px;
  top: 0;
  z-index: 2;
  transition: left 0.3s ease-in;
  background: rgb(77, 202, 210);
  color: #ffffff;
  list-style: none;
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.75);
  padding: 0;
  margin: 0;
}

.navigation__links li {
  padding: 5px 10px;
  text-alig: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navigation__links a {
  color: #ffffff;
  text-decoration: none;
}

#hamburger {
  visibility: hidden;
}

.navigation__button {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1px solid #ffffff;
  cursor: pointer;
}

.navigation__button span {
  position: absolute;
  left: 5px;
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #111;
  transform-origin: center;
  transition: opacity 0.2s linear, all 0.3s linear;
}

.navigation__button span:nth-of-type(1) {
  top: 10px;
}

.navigation__button span:nth-of-type(2) {
  top: 15px;
}

.navigation__button span:nth-of-type(3) {
  top: 20px;
}


/* Here comes the magic */

#hamburger:checked~.navigation__links {
  /* Or it can be "input[type="checkbox"] ~ .navigation__links" */
  left: 0;
}

/* Styles for our "close" button */
#hamburger:checked~.navigation__button span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 15px;
}

#hamburger:checked~.navigation__button span:nth-of-type(2) {
  opacity: 0;
}

#hamburger:checked~.navigation__button span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 15px;
}