/* Header */
#header{
    height: 100px;
    padding: 12px 0px;

}
 #header .logo{
    width: 193px;
    height: auto;
    outline: none;
} 
#header .nav-items{
    display: flex;
    justify-content: center;
    align-items: center;

}

 #header .nav-items > .nav-item a{
         text-decoration: none;
 }
 .nav-title{
        padding: 0px 20px;
        color: white;
        font-size: 18px;
        font-weight: 400;
    }
    .nav-title:hover{
       color: rgb(15, 15, 15);
       /* font-weight: 500; */
       -webkit-text-stroke-width: 0.4px;
        -webkit-text-stroke-color: black; 
       transition: ease-in-out 0.4s;
    }
 #header .logo img{
    padding: 4px;
    width: 95%;
    height: 95%;
} 

#header .my-btn{
    width: 140px;
    height: 36px;
    font-weight: 600;
}

#header  .sign-in{
    border-radius: 20px;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color:rgb(0, 0, 0) !important;
    display:  flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}
#header  .sign-in:hover{
    background-color: #000000 !important;
    border-color: #000000 !important;
    color:rgb(255, 255, 255) !important
}
#header .book-a-demo{
    margin-left: 20px;
}
#header  .book-a-demo{
    border: 1px solid #29BA89;
}


/* Menu Css */
#menu-handler{
    display: none;
}
.open{
    width: 25px;
    height: auto;
}
.close{
    width: 18px;
    height: auto;
}



@media screen and (min-width: 1700px){
    #header{
        height: 120px;
    }
    #header .logo{
        width: 290px;
    }
    
    #header .my-btn{
        width: 180px;
        height: 40px;    
    }
    #header .book-a-demo{
        margin-right: 30px;
    }  
}

/* Mobile CSS */
@media screen and (max-width: 800px) {

    /* Header */
    #header{
        height: 60px;
        align-items: center;
        padding: 12px 10px;
        position: absolute;
        z-index: 2;
        
    }
    #header .logo img{
        width: 120px;

    }
    #header .nav-items {
        background-color: white;
        border-radius: 5px;
        color: black;
        flex-direction: column;
        display: flex;
        justify-content: left;
        align-items: flex-start;
        padding: 10px;
        position: relative;
        top: 5px;
    }
    .nav-title{
        color: black;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 500;
    }
    #header .my-btn {
        width: 125px;
        height: 30px;
        font-weight: 600;
    }
    #header .sign-in {
       background-color: black !important;
       border-color: black !important;
       color: white !important;
       margin: 10px 20px !important;
    }
    #header .book-a-demo{
        margin-left: 20px;
    }

    /* Menu CSS */
    #menu-handler{
        display: block;  
    }
    #menu{
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0px;
        padding: 5px 10px 10px;
    }

}

@media screen and (min-width: 600px) and (max-width: 800px){
    #header{
        height: 70px;
        position: absolute;
        z-index: 2;

    }
    
    #header .logo{
        width: 150px;
    }
    #header .my-btn{
        width: 120px;
        height: 36px;
        font-weight: 600;
    }
}
@media screen and (min-width: 800px) and (max-width: 1000px){
    /* Header */
    #header{
        height: 70px;
        position: absolute;
    }
  
}

@media screen and (min-width:1700px) {
    #header .logo img{
        width: 65%;
    } 
    
}