@charset "utf-8";
/* CSS Document */

body{
	background:#000;
	color:#fff;
	font-size:20px;
	font-family: 'Lato';
	font-weight:400;
	margin:0;
	padding:0;
	line-height:1.5;
}

b{
	font-weight:900;
}

h1{
	font-size:72px;
	letter-spacing: 2px;
	font-family: 'Take Cover';
	color: #F84300;
}

.big{
	font-size:1.2em;
}

.small{
	font-size:17px;
}

a, a:visited, a:hover{
	color:#e8f331;
	text-decoration: underline;
	font-weight:700;
}

img{
	max-width: 100%;
}

img.border{
	border: 6px solid #F84300;
}

/* Blinking text */

.blinking-red{
    animation:blinkingText-red 1.2s infinite;
}
@keyframes blinkingText-red{
    0%{     color: #F84300;    }
    49%{    color: #F84300; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #F84300;    }
}

.blinking{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
    0%{     color: #fff !important;    }
    49%{    color: #fff !important; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #fff !important;    }
}

.red-text{
	color:#e51c38 !important;
	font-weight:900;
}

#myVideo {
 object-fit: cover;
 background-size: cover;
 width:100%;
 height: 100%; 
 position: fixed; 
 top: 0; 
 left: 0;
 right: 0;
 bottom: 0;
 opacity: .4;
}

.container {
    width: 100%;
	position: relative;
  	color: #fff;
 	padding: 0px 60px;
	text-align: center;
	border: 0px solid #e51c38;
	overflow:hidden;
	margin:0;
}

.full-content{
	width:100%;
}

.left-content{
	width:49%;
	float:left;
	border: 0px solid #e51c38;
	margin-right:2%;
}
.right-content{
	width:49%;
	float:right;
	border: 0px solid #e51c38;
}

img.float{
	float:left;
	margin:40px;
}

.clear{
	clear:both;
}

.container p {
	width: 100%;
	margin-left: auto;
}

/* RESPONSIVE */

@media (max-width: 1367px) {
	.container p {
		width: 48%;
		margin-left: auto;
	}
}

@media (max-width: 1199px){	
.container {
    width: 100%;
	position: relative;
  	color: #fff;
  	padding: 0px 20px;
	text-align: center;
	border: 0px solid #e51c38;
	overflow:hidden;
	margin:0;
}
	
	img.float{
	float:none;
	margin:0 auto;
		display:block;
		width:600px;

}

.container p {
	width: 100%;
	margin-left: unset;
}
	
}