header{

    background: rgba(251, 251, 251, 1);
    position: relative;
    
}
nav{
    max-width: 1687px;
    display: flex;
    justify-content:space-between;
    padding: 6px 30px 6px 68px;
    margin: auto;
    align-items: center;
}
.navRight{
    display: flex;
    gap: 38px;
}
#navCollapsable{
 display: none;
 flex-direction: column;
 align-items: flex-start;
 padding: 19px 19px 51px 19px;
 gap: 19px;
 position: absolute;
 top: 73px;
 background-color:rgba(251, 251, 251, 1);
 z-index: 10;
 width: 100%;
 
}
.navLinks{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.navLinksSmall{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-direction: column;

}
.navLinks li a:hover{
    font-weight: 700;
    transition: 0.3s ease-in-out;
}
.navLinks li a , .navLinksSmall li a{
    font-family: "Montserrat";
font-weight: 500;
font-style: Medium;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
color: rgba(4, 13, 9, 1);
}
.navBtnGroup{
    display: flex;
    gap: 11px;
}
.navBtnGroupSmall{
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.navBtn{
    
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
    height: 42px;
    width: 139px;
    line-height: 100%;
    letter-spacing: 0%;
    border-radius: 6px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-wrap: nowrap;
    transition: 0.5s ease-in-out;
    border: 1px solid rgba(70, 144, 229, 1);
}
#btnSignUp{
    background: #4690E5;
    color: rgba(255, 255, 255, 1);
}
#btnSignUp:hover{
    color: rgba(255, 255, 255, 1);
    transform: scale(103%);
}
#btnContactUs{
    background-color: transparent;
    color: rgba(70, 144, 229, 1);
}
#btnContactUs:hover{
    background-color: rgba(70, 144, 229, 1);
    color: white;
    transform: scale(103%);

}

#hamburger,#closeHamburger {
    display: none;
    cursor: pointer;
    padding-right: 16px;
}

.hidden{
    display: none;
}
.visible{
    display: none;
}
