body{
    margin: 0;
}
.supertek-header{
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #414141 0%, #414141 40%, #F5F5F5 30%, #F5F5F5 100%);

}
.supertek-header-top-row{
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.supertek-header-contact{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width:45%;
    
}
.supertek-header-single-contact{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 500;
    line-height: 21px;
    color: white;
    text-decoration: none;
}
.supertek-header-img{
    width: 15px;
    height: 15px;
}
.supertek-header-order{
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    color:white;
    line-height: 21px;
    text-decoration: none;
}
.supertek-header-bottom-row{
    padding-top:15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.supertek-navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 50%;
}
.supertek-navbar-link{
    text-decoration: none;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color:black;
}
.supertek-header-button{
    border: 1px solid #006B4D;
    padding:10px 30px;
    color:#006B4D;
    font-size: 16px;
    font-weight: 600;
    font-family: Montserrat;
    line-height: 22px;
    border-radius: 24px;
    text-decoration: none;
}
.hamburger-menu {
    display: none; /* Oculto por defecto */
    font-size: 24px;
    background: none;
    border: none;
    color: #006B4D;
    cursor: pointer;
}
@media (max-width: 1023px) {
    .hamburger-menu {
        display: block; 
        z-index: 1100; 
    }
    .supertek-header-contact{
      width:70%;
    }
    .supertek-navbar {
        display: none; 
        flex-direction: column;
        width: 100%;
        background-color: #414141; 
        position: absolute;
        top: 50px; 
        left: 0;
        padding: 10px 0;
        z-index: 1000; 
    }

    .supertek-navbar.active {
        display: flex; 
        flex-direction:column;
        top: 18%;
        left:40%;
        width:20%;
    }

    .supertek-navbar-link {
        padding: 10px;
        color: white;
        text-align: left;
        width: 100%; /
        box-sizing: border-box; 
    }
}
@media (max-width:768px){
  .supertek-header-bottom-row{
    flex-direction:column;
    gap:15px;
  }
  .supertek-header-top-row{
    justify-content:center;
  }
  .supertek-header-contact{
    display:none;
  }
  .supertek-header{
    background: linear-gradient(to bottom, #414141 0%, #414141 22%, #F5F5F5 22%, #F5F5F5 100%);
   }
}

