/* HEADER */

header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    background: #f3edd7;
    height: 60px;
}

headerHeading{
    margin:0 auto;
    align-self:center;
}

header > .iconbox{
    z-index:2;
}

header > .icon{
    width:60px;
    height:60px;
    padding-top:10px;
}

header > .indx{
    height:100%;
    width:100%;
}

header > img{
    position:absolute;
    top: 2px;
    height:55px;
    left:50%;
    transform-origin: 50% 50%;
    -webkit-transform:translateX(-50%);
    -moz-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
    transform:translateX(-50%);
    z-index: 1;
}

.icon{
    position:relative;
    z-index: 5;
}

header > .icon:before{
    cursor:pointer;
    position:relative;
    width:auto;
    height:auto;
    margin:10px 16.25px;
    color:rgb(51,51,51);
    font-size:40px;
}

header > div > a > span{
    font-weight:300;
    margin-left:5px;
}

div > a{
    color:#333;
    margin: 15px;
    font-size:30px;
    z-index:5;
}


/* /HEADER */

@media all and (max-width: 845px){
    .m-hide-845{
        display:none;
    }
}
@media screen and (min-width: 310px) {
  div > a{
    font-size: calc(23px + 6 * ((100vw - 310px) / 680));
  }
}
@media screen and (min-width: 1000px) {
  div > a{
    font-size: 22px;
  }
}