@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 {
    text-align: center;
    width: 150px;
    margin-right: auto;
    margin-left: auto;
    float: none;
    top: 10px;
    position: relative;
}

/* Safari 4.0 - 8.0 */


@media only screen and (min-width: 768px) {
    
#logo1 {
    display: inherit;
    z-index: 6;
    width: 18%;
    top: 5%;
    height: 10vw;
}
    
.logo1_go {
    left: 0%;
    width: 20%;
    position: absolute;
    -webkit-animation: mymove 5s 1; /* Safari 4.0 - 8.0 */
    animation: mymove 3s 1;
    top: auto;
}
}
@-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 {

}
}

@media only screen and (min-width: 1200px) {
.logo1_go {

}
}

@media only screen and (min-width: 1340px) {
#logo1 {
    width: 10% !important;
}
.logo1_go {
    left: 0%;
	bottom: 30% !important;
}
}

@media only screen and (min-width: 1700px) {
#logo1 {
    width: 10% !important;
}
.logo1_go {
	width: 20% !important;
    bottom: 30% !important;
}
}
