@media only screen and (min-width: 700px) {
    #Header {
        position: absolute;
        z-index: 1;
        width: 100vw;
        height: 150px;
        margin: 0;
        /* background-color: aqua; */
    }

    #Header .phonelist {
        display: none;
    }

    #Header .menu {
        display: none;
    }

    #Header .logo {
        position: absolute;
        top: 40px;
        width: 30vw;
        left: 10vw;
    }
    #Header .logo img
    {
        width: 400px;
    }

    #Header .smalllogo {
        display: none;
    }

    #Header .list {
        position: absolute;
        top: 50px;
        right: 0vw;
        width: 50vw;
        z-index: 1;
        /* margin-top: 45px; */
        /* margin-right: 10vw; */
    }

    #Header .list ul {
        position: absolute;
        display: flex;

    }

    #Header .list li {
        /* display: inline; */
        text-decoration: none;
        list-style-type: none;
        color: #FEFEFE;
        width: 60px;
        margin-left: 2.5vw;
    }

    #Header .list li span {
        color: #FEFEFE;
        font-size: 15px;
    }

    #Header .list a {
        text-decoration: none;
    }

    #Header .list span:hover {
        color: #FFC001;
    }
}