.phone {
    display: none;
}

@media only screen and (max-width: 767px) {
    .phone {
        display: block;
    }
    header~div{
        margin-top: 65px;
    }
    header.mobileHeader.phone {
        position: fixed;
        width: 100%;
        z-index: 100;
    }
    .nav-wrapper{
        display: none;
    }
    #main {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #main .content {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}


.mobileHeader a {
    text-decoration: none;
    color: #1E1E23;
    opacity: 1;
    font-family: Roboto Slab, sans-serif;
    font-size: 1em;
    font-weight: 400;
    transition: 200ms;
}

.mobileHeader a:hover {
    opacity: 0.5;
}

.mobileHeader img {
    height: 30px;
    position: absolute;
    right: 11px;
}
.mobileHeader ul {
    padding: 0;
    list-style-type: none;
}

.mobileHeader nav {
    background-color: #1E1E23;
    height: 65px;
}

.phone #menuToggle {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 25px;
    left: 25px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

.phone #menuToggle input[type=checkbox] {
    display: flex;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

.phone #menuToggle span {
    display: flex;
    width: 29px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
}

.phone #menuToggle span:first-child {
    transform-origin: 0% 0%;
}

.phone #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

.phone #menuToggle input[type=checkbox]:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-3px, -1px);
    background: #36383F;
}

.phone #menuToggle input[type=checkbox]:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

.phone #menuToggle input[type=checkbox]:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

.phone #menu {
    position: absolute;
    width: 80vw;
    height: 110vh;
    overflow: auto;
    min-height: 400px;
    box-shadow: 0 0 10px #85888C;
    margin: -50px 0 0 -50px;
    padding: 90px 30px 70px 50px;
    background-color: #F5F6FA;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.phone #menu li {
    padding: 7px 0;
    transition-delay: 2s;
}

.phone #menuToggle input:checked ~ ul {
    transform: none;
}

#search-form input {
    border: 1px solid #d3d2d2;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    width: 100%;
    border-radius: 35px;
    font-size: 12px;
    line-height: 2;
    margin: 0;
    display: block;
    text-indent: 10px;
}
#search-form .search-icon{
    width: 20px;
    display: inline-block;
    right: 0;
    height: 20px;
}

a.noma.icon.icon-before.icon-search.absolute {
    width: 20px;
    height: 26px;
    right: 0;
    margin: -27px 38px 0 0;
}

a.noma.icon.icon-before.icon-search.absolute svg{
    width: 20px;
    height: 20px;
}