@font-face {
    font-family: OpenSans-Regular;
    src: url(../fonts/OpenSans/OpenSans-Regular.ttf)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    z-index: 10;
    background: #5b639c;
}
header .logo{
    position: relative;
    font-size: 1.5em;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    width: 200px;
    height: 50px;
}
header .navigation{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0;
}
header .navigation li{
    list-style: none;
    margin: 0 10px;
}
header .navigation li a{
    font: 15px Montserrat, sans-serif;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0px;
    cursor: auto;
}
/* header .backbtn{
    position: relative;
    width: 300px;
    height: 40px;
} */
.buttons  {
    display: flex;
    justify-content: space-between;
    margin: 0px;
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 10px;
}
.buttons  ul li {
    list-style: none;
    margin: auto; 
}
.dropdown-toggle {
   
    display: inline-block;
    text-align: center;
    margin: auto;
    justify-content:center;
    text-decoration: none;
   
}
.buttons .navuser .dropdown-toggle{
    display: grid;
    text-align: center;
    margin: auto;
    justify-content:center;
    text-decoration: none;
    text-decoration: none;
    background: #fff;
    border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
    width: 120px;
	height: 40px;
    border: none;
    margin: 10px 05px 10px 0px;
    cursor: pointer;
    color: #333;
    font-weight: 700;
    font-size: 15px; 
}
.backbtn {
    float: right;
    background: #fff;
    border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
    width: 120px;
	height: 40px;
    border: none;
    margin: 10px 05px 10px 0px;
    cursor: pointer;
    color: #333;
    font-weight: 700;
    font-size: 15px;
}
.buttons .navuser .dropdown-toggle:hover{
    background: #ccc;
}
 .backbtn:hover {
    background: #ccc;
}


@media (max-width:991px)
{
    header{
        padding: 10px 20px;
    
        flex-direction: column;
    }
    header .navigation{
        display: flex;
        justify-content: center;
        margin: 5px 0;
       
    }
    
    header .navigation li a{
        font: 10px Montserrat, sans-serif;
        color: #fff;
        text-decoration: none;
        font-weight: 300;
        
    }
    header .logo{
        position: relative;
        font-size: 1.5em;
        font-weight: 400;
        width: 100px;
        height: 40px;
    }
    .buttons .navuser .dropdown-toggle {
        width: 80px;
	    height: 25px;
        margin: 1px 0px 5px 0px;
        font-weight: 400;
        font-size: 13px;
    }
    .backbtn {
        width: 80px;
	    height: 25px;
        margin: 1px 0px 5px 0px;
        font-weight: 400;
        font-size: 13px;
    }

}

@media (max-width:600px)
{
    header {
        flex-direction: column;
        padding: 10px 20px;
       
    }
    header .navigation{
        display: flex;
        justify-content: center;
        margin: 5px 0;
       
    }
    
    header .navigation li a{
        font: 10px Montserrat, sans-serif;
        color: #fff;
        font-weight: 200;
        
    }
    header .logo{
        position: relative;
        font-size: 1.5em;
        font-weight: 400;
        width: 80px;
        height: 20px;
    }
    .buttons .navuser .dropdown-toggle {
        width: 80px;
	    height: 25px;
        margin: 1px 0px 5px 0px;
        font-weight: 400;
        font-size: 13px;
    }
    .backbtn {
        width: 80px;
	    height: 25px;
        margin: 1px 0px 5px 0px;
        font-weight: 400;
        font-size: 13px;
    }
}



