.menu-toggle {
    display: inline-flex;
    font-family: 'Open sans', sans-serif;
    padding: 0 30px 0 20px;
    background: #fc7903;
    border-radius: 26px;
    color: #fff;
    height: 55px;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    transition: all .3s ease;
}

.menu-toggle:hover {
    background-color: #c85e00;
    transition: all .3s ease;
}

.menu-toggle:focus {
    background: #fc7903;
    transition: all .3s ease;
}

.menu-toggle svg {
    margin-right: 15px;
    width: 34px;
    color: #ffffff;
}

@media screen and (max-width: 1600px) {
    .menu-toggle {
        padding: 0 25px 0 18px;
        height: 46px;
        font-size: 18px;
        margin-left: 18px;
    }
}

@media screen and (max-width: 1400px) {
    .menu-toggle {
        padding: 0 22px 0 16px;
        height: 40px;
        font-size: 16px;
        margin-left: 16px;
    }
}

@media screen and (max-width: 500px) {
    .menu-toggle {
        height: 40px;
        padding-right: 20px;
    }

    .menu-toggle span {
        display: none;
    }

    .menu-toggle svg {
        margin-right: 0;
        width: 20px
    }
}