header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /* background: transparent; */
    background-color: #ffffff;
    z-index: 100;
    display: flex;
    justify-content: center;
    transition: 0.1s;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
}

header:hover {
   opacity: 100%;
}

header .container
{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
    padding: 0 150px;
    width: 100%;
    height: 87.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid red; */
}

header .container .logo
{
    display: flex;
    position: relative;
    width: 150px;
    left: -90px;
    /* height: 130px; */
}

header .container .toggle
{
    position: relative;
    width: 30px;
    height: 30px;
    /* border: 1px solid red; */
    background: url('../icons/toggle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1);
    transform: translateX(55px);
    transition: 0.5s;
    
}

header .container .toggle.active
{
    background: url('../icons/close.png');
    
    background-size: cover;
    filter: invert(1);
}

header .container .toggle:hover
{
    cursor: pointer;
}

header .container .logo img
{
    position: relative;
    /* width: 100%; */
    height: 60px;
    margin: 0 10px;
    background-size: cover;
}
