@charset "UTF-8";

	.logo{
	    margin:10px 7px;width:75px;height:75px;float:left;
	}
    .headerContent{
        margin: 20px 25px;
        font-size:15px;
        font-weight:600;
        color:#939598;
        float:right;
        -webkit-animation:colorchange 20s infinite alternate;
    }

    @-webkit-keyframes colorchange {
          0% {
            color:#000;
          }
          50% {
            color:#939598;
          }
          100% {
            color:#FFF;
          }
        }
    @media screen and (max-width: 1024px) {
        .headerContent{
            margin: 40px 25px;
            font-size:14px;
        }
    }
     @media screen and (max-width: 550px) {
        .logo{
            width:60px;
            height:60px;
        }
        .headerContent{
            margin: 40px 15px;
            font-size:12px;
        }
     }
	/*end header*/
