/* header_container */

#header_container
{
    width : 100%;
    height : 100px;

    margin : 0px;
    padding : 0px;

    display : flex;
    align-items : center;
    justify-content : center;
    font-family: 'Abel';
}

/* header_main */

#header_main
{
    width : 100%;
    height : 100%;

    margin : 0px;
    padding : 0px;

    display : flex;
    align-items : center;
    justify-content : space-between;
}

/* header_logo */

#header_logo
{
    width : 214px;
    height : 100%;

    margin : 0px;
    padding : 0px;

    margin-left : 10px;
    margin-right : 10px;

    display : flex;
    align-items : center;
    justify-content : center;
}

#header_logo img
{
    width : 100%;
    height : auto;

    margin : 0px;
    padding : 0px;
}

/* header_menu */

#header_menu
{   
    height : 100%;

    margin : 0px;
    padding : 0px;

    margin-right : 10px;

    display : flex;
    align-items : center;
    justify-content : start;
}

#header_menu ul
{
    width : 100%;
    height : 100%;

    margin : 0px;
    padding : 0px;

    display : flex;
    align-items : center;
    justify-content : start;

    list-style-type: none;
}

#header_menu ul li
{
    margin-left : 5px;
    margin-right : 5px;
    padding : 10px;

    display : flex;
    align-items : center;
    justify-content : center;
}

#header_menu ul li a
{

    width : 100%;
    height : 100%;

    color: #ffffff;
    text-decoration : none;
}

/* form searchbox */

form {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 1s;
    width: 50px;
    height: 50px;
    background: white;
    box-sizing: border-box;
    border-radius: 25px;
    border: 4px solid white;
    padding: 5px;
    margin-top : 50px;
}

input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;;
    height: 42.5px;
    line-height: 30px;
    outline: 0;
    border: 0;
    display: none;
    font-size: 1em;
    border-radius: 20px;
    padding: 0 20px;
}

.fa{
    box-sizing: border-box;
    padding: 10px;
    width: 42.5px;
    height: 42.5px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    color: #07051a;
    text-align: center;
    font-size: 1.2em;
    transition: all 1s;
}

form:hover{
    width: 200px;
    cursor: pointer;
}

form:hover input{
    display: block;
}

form:hover .fa{
    background: #07051a;
    color: white;
}