header {
    position: fixed;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    left: 250px; 
    width: 250px;
    height: 100%;
    margin-left: -250px;
    background-color: rgba(238,238,238, 0.65);  
    box-shadow: 0px 0px 3.5px black;
}


div#table {
  display: table;
  height: 100%;
}

div#row {
  display: table-cell;
  vertical-align: middle;
}



header a#a {
    display: block;
    line-height: 120px;
    font-size: 120px;
    font-weight: 300;
    text-decoration: none;
    color: rgba(21,195,154);
    text-align: center;
}
header a#a:hover {
    color: rgba(21,195,154, 0.8);
}



header h1 {
    margin: 0px auto 0px;    
    color: #444444;
    font-size: 28px;
    word-spacing: 5px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    font-weight: 400;
}

header span#moto {
    display: block;
    width: 250px;
    margin: auto;
    padding-bottom: 18px;
    font-size: 16px;
    color: #555555;
    text-align: center;
    font-weight: 300;
    border-bottom: 1px ridge white;
}



header p {
    font-size: 0.80em;  
    color: #555555;
    text-align: center;
}



header img#menu {
    display: none;
    float: right;
    width: 32px;
    height: 32px;
    padding: 8px 16px 8px 16px;
}
header img#menu:hover {
    cursor: pointer;
}



header ul#myMenu {
    width: 250px;
    margin: 0px 0px;
    padding: 0;
    list-style-type: none;
    z-index: 1000;
    border-bottom: 1px ridge white;
}

header ul#myMenu li {
    transition: background-color 0.4s;
}

header ul#myMenu li:hover {   
    background-color: #DEDEDE;  

}

header ul#myMenu li a {
    display: block;
    padding: 12px 8px 12px 40px;
    text-decoration: none;
    color: #555555;
    font-weight: 300;
    font-size: 18px;
}

header ul#myMenu li a:hover {
    color: black;
}

.icon { 
    font-size: 20px;
    margin-right: 20px;
}



header ul#socialMenu {
    margin: 16px 0px 0px;
    padding: 0px;
    text-align: center;
}

header ul#socialMenu li{
    display: inline;
    margin-right: 16px;
}
header ul#socialMenu li:last-child {
    margin-right: 0px;
}

header ul#socialMenu a {
    font-size: 28px;
    color: lightgray;
    transition: color 0.4s;
}

header ul#socialMenu li:nth-child(1) a {
    color: #3C5AA4;
}

header ul#socialMenu li:nth-child(2) a {
    color: black;
}

header ul#socialMenu li:nth-child(3) a {
    color: #FF0000;
}

header ul#socialMenu li:nth-child(4) a {
    color: #0077B5;
}

header ul#socialMenu li a:hover {
    opacity: 0.65;
}


@media only screen and (max-width: 767px) {

    header {
        width: 100%;
        height: auto;
        padding-top: 0px;
        background: #F4F4F4;
    }

    div#table {
        display: block;
    }

    div#row {
        display: block;
        padding-bottom: 0;
    }

    header a#a {
        display: inline-block;
        line-height: 32px;
        font-size: 32px;    
        color: black;
        padding: 8px 2.5% 8px;
}


    header img#menu {
        display: block;
        padding-left: 0%;
        padding-right: 2.5%;
    }

    header h1 {
        position: absolute;
        top: 0;
        width: 100%;
        margin: 0px;
        word-spacing: 8px;
        padding: 8px 8px 0px 0px;
        z-index: -1000;
    }

    header span#moto {
        display: none;
    }

    header nav {
        display: none;
    }

    header ul#myMenu {
        width: 95%;
        margin: 0px;
        padding: 8px 2.5% 0px;
        border-top: 1px solid gray;
        border-bottom: 0;
    }


    header ul#myMenu li {
        line-height: 16px;
    }

    header ul#myMenu li a {
        display: inline-block;
        padding-left: 2.5%;
        font-size: 17px;
    }
    

    header ul#socialMenu {
        margin: 8px 0px 16px;
        padding-bottom: 0px;
    }
    header ul#socialMenu a {
        font-size: 22px;
    }
}