@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/

.logo1_go {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    /* float: none; */
    top: 170px;
    position: absolute;
    text-align: left;
    z-index: 2;
    left: 0px;
}

/* Safari 4.0 - 8.0 */
@media only screen and (min-width: 481px) {
.logo1_go {
    width: 37%;
    position: absolute;
    z-index: 1;
    top: 169px;
    left: 0;
}
}

@media only screen and (min-width: 768px) {
    
#logo1 {
    display: inherit;
    z-index: 6;
    width: 18%;
    top: 5%;
	left: auto;
	left: 0px;
}
    
.logo1_go {
    left: 0%;
    width: 22%;
    position: absolute;
    -webkit-animation: mymove 5s 1;
    animation: mymove 3s 1;
    top: 35%;
}
}
@-webkit-keyframes mymove {
    0%   {left: -50%;
/*          background: rgba(78, 210, 78, 0.52);*/
    }
}

@keyframes mymove {
    0%   {left:-50%;
/*          background: rgba(94, 169, 177, 0.59);*/
    }

}

@media only screen and (min-width: 1024px) {
#logo1 {
    width: 10%;
    top: 10%;
    z-index: 1;

}
.logo1_go {
    left: 0%;
    width: 39%;
    position: absolute;
    -webkit-animation: mymove 5s 1;
    animation: mymove 3s 1;
    top: 30%;
}
}

@media only screen and (min-width: 1200px) {
.logo1_go {
	text-align: left;
    top: 38%;
	width: 22%
}
}

@media only screen and (min-width: 1340px) {
#logo1 {
    width: 10% !important;
}
.logo1_go {
    left: 0%;
	top: 35% !important;
}
}

@media only screen and (min-width: 1700px) {
#logo1 {
    width: 10% !important;
}
.logo1_go {
    top: 46% !important;
}
}

