@media screen and (max-width:600px) {
  
  /* Hamburguer close */
  
  .Navbar__hamburguer-close{
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .Navbar__hamburguer-close:hover{
    cursor: pointer;
  }
  .Navbar__hamburguer-close .line{
    height: 10px;
    z-index: 0;
    width: 100%;
    background-color: #053B50;
    border-radius: 20px;
  }
  /* .Navbar__hamburguer-close span:nth-child(2){
    z-index: 0;
    width: 100%;
    height: 5px;
    background-color: #053B50;
    border-radius: 20px;
  }
  .Navbar__hamburguer-close span:nth-child(3){
    z-index: 0;
    width: 100%;
    height: 5px;
    background-color: #053B50;
    border-radius: 20px;
  } */

  /* Hamburguer open*/

  .Navbar__hamburguer-open {
    position: relative;
    display: flex;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
  }

  .Navbar__hamburguer-open:hover {
    cursor: pointer;
  }

  .Navbar__hamburguer-open span:first-child {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #053B50;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    transform: rotate(-45deg);
  }

  .Navbar__hamburguer-open span:nth-child(2) {
    z-index: 1;
    display: none;
    width: 100%;
    height: 5px;
    background-color: #053B50;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
  }

  .Navbar__hamburguer-open span:nth-child(3) {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #053B50;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    transform: rotate(45deg);
  }
}
@media screen and (max-width:300px) {
  
  /* Hamburguer close */
  
  .Navbar__hamburguer-close{
    z-index: 1;
    width: 30px;
    height: 30px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }
  .Navbar__hamburguer-close:hover{
    cursor: pointer;
  }
  .Navbar__hamburguer-close span:first-child{
    z-index: 0;
    width: 100%;
    height: 5px;
    background-color: #053B50;
    border-radius: 20px;
  }
  .Navbar__hamburguer-close span:nth-child(2){
    z-index: 0;
    width: 100%;
    height: 5px;
    background-color: #053B50;
    border-radius: 20px;
  }
  .Navbar__hamburguer-close span:nth-child(3){
    z-index: 0;
    width: 100%;
    height: 5px;
    background-color: #053B50;
    border-radius: 20px;
  }

  /* Hamburguer open*/

  .Navbar__hamburguer-open {
    position: relative;
    display: flex;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
  }

  .Navbar__hamburguer-open:hover {
    cursor: pointer;
  }

  .Navbar__hamburguer-open span:first-child {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #053B50;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    transform: rotate(-45deg);
  }

  .Navbar__hamburguer-open span:nth-child(2) {
    z-index: 1;
    display: none;
    width: 100%;
    height: 5px;
    background-color: #053B50;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
  }

  .Navbar__hamburguer-open span:nth-child(3) {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #053B50;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    transform: rotate(45deg);
  }
}

