.globalheader{width: 100%; background-color: #145673; height: 400px; overflow:hidden; padding-top: 80px; }
.stars{width: 100%; height: 100%; background: url("../images/stars.svg") repeat-y scroll 0 0 / 100% auto rgba(0, 0, 0, 0) ;}

.toplogoanadore{float: left; margin-left: 20px;}
.toplogoulule{float: right; margin-right: 20px;}

.killerzone{margin: 0 auto; width: 80%; height: 100%; position: relative; min-width: 1000px;}
.center{height: 100%; margin: 0 auto; width: 1000px; text-align: center; color: #ffeccf;}

.rdvipresente{font-weight: 700; line-height: 1; letter-spacing: 0.5px; text-shadow: 1px 2px 1px #052b3c; font-size: 18px;}
.rdvipresente img{vertical-align: sub; height: 28px; margin-right: 3px;} 
.rdvilogo {margin: 7px 0px;}

.social {height: 30px; position: absolute; width: 170px; z-index: 1; font-family: 'Ubuntu', cursive; letter-spacing: 2px; color: #FFFFFF; text-transform: uppercase;}
.social img{height:100%;}
.social a{height: 30px; opacity: 0.3; display: block; text-decoration: none; color: #FFFFFF; transition: all 0.2s ease 0s;}
.social a:hover{opacity: 1;}
.social span{display: block; display: none;}

.facebook{float: left; bottom: 20px; left: 50%; margin-left: 10px;}
.facebook a{float: left;}
.facebook img{float: left;}
.facebook span{float: left; padding: 7px 10px; font-size: 13px;}
.facebook a:hover span{display: inline-block;}

.twitter{float: right; bottom: 20px; left: 50%; margin-left: -170px;}
.twitter a{float: right;}
.twitter img{float: right;}
.twitter span{float: right; padding: 7px 10px;font-size: 13px;}
.twitter a:hover span{display: inline-block;}

/*************/
/*ANIMATIONS*/
/***********/

/*STARS*/

@-moz-keyframes stars {
    0% { background-position: 0 0; }
    50% { background-position: 0 -4000px; }
    100% { background-position: 0 0; }
}
@-webkit-keyframes stars {
    0% { background-position: 0 0; }
    50% { background-position: 0 -4000px; }
    100% { background-position: 0 0; }
}
@keyframes stars {
    0% { background-position: 0 0; }
    50% { background-position: 0 -4000px; }
    100% { background-position: 0 0; }
}

.stars{
    -webkit-animation-name: stars;
    -webkit-animation-duration: 1300000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: stars;
    -moz-animation-duration: 1300000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: stars;
    -ms-animation-duration: 1300000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: stars;
    animation-duration: 1300000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
