:root{
    --black: #36383F;
    --grey: #85888C;
}


/* Header */
.hamb-wrap {
position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    height: 22vh;
    opacity: 0.9;
    transition: all 0.3s;
    text-align: center;
}

/* Logo */
.phone{
    position: absolute;
    display: inline-block;
    color: #591C1C;
    top: 35px;
    font-size: 60px;
    left: 35px;
    margin-left: 10px;
    z-index: 10;
}

/* Nav menu */
.nav-hamb{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #fff;
    overflow: hidden;
}
.menu-hamb{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    margin: 39px 0px;
}
.menu-hamb a{
    display: block;
    padding: 25px;
    color: #591C1C;
}

.nav-hamb{
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* Menu Icon */

.hamb{
    cursor: pointer;
    position: absolute;
    float: right;
    padding: 40px 20px;
    z-index: 10;
    right: 40px;
    top: 35px;
}


.hamb-line {
    background: #591C1C;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
    
}

.hamb-line::before,
.hamb-line::after{
    background: #591C1C;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before{
    top: 5px;
}

.hamb-line::after{
    top: -5px;
}


.side-menu {
    display: none;
}

/* Toggle menu icon */

.side-menu:checked ~ nav{
    max-height: 100%!important;
    z-index: 1;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;

}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}