	/*box model*/

*,
*::before,
*::after {
    box-sizing: border-box; /*para respetar el ancho de los selectores a pesar del padding o el tamaño del contenido. border-content, para respetar el ancho del contenido*/
}
	/* general *************************************/
	
		body {
			width: 100%;
			height: 100%;
			margin: 0;
			padding: 0;
		}

    	ul, li, a { 
    		list-style: none; 
    		text-decoration: none; 
    		margin: 0; 
    		padding: 0; 
    	}
    
    	a { color: #FFF; }
    
    	a:visited {
    		color: #FFF;
    	}

    	.load {
    		width: 100%;
    		height: 100%;
    		position:fixed; 
    		background:url(../img/overdrivenLoad.gif) 97% 97% no-repeat #fbf9f3; 
    		background-size: 217px;
    		z-index:99; 
    		top:0; 
    		left:0	
    	}

	/* canvas **************************************/
	
		#top, #right, #bottom, #left {
	   		background: #FFF;
	   		position: fixed;
	   		z-index: 9999;
    	}

    	#right, #left {
	   		top: 0;
	   		bottom: 0;
	   		width: 5px;
    	}

		#right { right: 0; }	

		#left { 
			left: 0;
			height: calc(100% - 5px);
		 }

    	#top, #bottom {
	  		left: 0; 
			right: 0;
			height: 5px;
		}

    	#top { top: 0; }

    	#bottom { bottom: 0; }

    	#top { 
    		background: #008C5F;
    		z-index: 24;
    	}
    		
    	#right {
    		background: #FFD800;
    		z-index: 23;
		}

		#bottom {
    		background: #BC0000; 
    		z-index: 22;
		}
		
		#left {
    		background: #202DCE;
    		z-index: 24;
		}

    /* containers *****************************************/
	
		#mainContainer {
			width: 100%;
			height: 100%;
			position: fixed;
		}

		#mainHeader {
			top: 15px;
			left: 15px;
			position: absolute;
			z-index: 30;
		}

		.logo {
			width: 140px;
			margin-top: -5px;
		}

    /*flexslider titles*******************************************/

     	.slides a {
     		font-family: 'Montserrat', sans-serif;
			text-align: center;
			font-weight: 700;
			text-shadow: 1px 1px 15px #000;
		}

		.slide_title {
			font-size: 20px;
			width: 80%;
			height: 0;
			left: 0;
			right: 0;
			bottom: 0;
			top: 35%;
			margin: 0 auto;
			padding: 0;
			position: absolute;
			z-index: 3;
		}

		.slide_title span {
			top: -4px;
			font-size: 17px;
			position: relative;
		}  

    /* menu *********************************************/
    
    	#menuContainer {
			width: 100%;
			height: 100%;
			right: 0;
			top: 0;
			margin-right: -100%;
			color: #FFF;
			z-index: 20;
			overflow: auto;
			position: absolute;
			background-color: rgba(0,0,0,0.5);
			backdrop-filter: blur(10px);
			-webkit-backdrop-filter: blur(10px);
			-moz-backdrop-filter: blur(10px);
			-o-backdrop-filter: blur(10px);
			-webkit-transition: -webkit-transform 400ms ease-out;
        	-moz-transition: -moz-transform 400ms ease-out;
        	-o-transition: -o-transform 400ms easeout;
        	transition: transform 400ms ease-out;
        	-webkit-backface-visibility: hidden;
		}

		#button {
			top: 15px;
        	right: 15px;
        	float: right;
        	cursor: pointer;
        	position: absolute;
        	z-index: 999;
        	display: block;
			
		}

		.line1, .line2, .line3, .slash1, .line0, .slash2 {
			width: 31px;
			height: 2px;
			position: relative;
			background-color: #FFF;
			outline: none;
		}

		.line1 {
    		margin-top: 0;
    		-moz-transform: rotate(0deg); 
    		-moz-transform-origin: 0;
     		-moz-transition: 0.2s;
    		-webkit-transform: rotate(0deg); 
    		-webkit-transform-origin: 0;
     		-webkit-transition: 0.2s;
    		transition: 0.2s;
		}

    	.line2 {
    		margin-top: 5px;
    		position: relative;
    		-o-transition: 0.2s;
    		-ms-transition: 0.2s;
    		-moz-transition: 0.2s;
    		-webkit-transition: 0.2s;
    		transition: 0.2s;
		}

		.line3 {
    		margin-top: 5px;
    		-moz-transform: rotate(0deg); 
    		-moz-transform-origin: 0;
     		-moz-transition: 0.2s;
    		-webkit-transform: rotate(0deg); 
    		-webkit-transform-origin: 0;
     		-webkit-transition: 0.2s;
    		transition: 0.2s;
		}

		.slash1 {
    		margin-top: -2px;
    		-moz-transform: rotate3d(0, 0, 1, 45deg) translate(0, -2.5px);
    		-webkit-transform: rotate3d(0, 0, 1, 45deg) translate(0, -2.5px);
    		transform: rotate3d(0, 0, 1, 45deg) translate(0, -2.5px);
		}

		.line0 {
    		margin-top: 7px;
    		opacity: 0;
		}

		.slash2 {
    		margin-top: 7px;
    		-moz-transform: rotate3d(0, 0, 1, -45deg) translate(0, 2.5px);
    		-webkit-transform: rotate3d(0, 0, 1, -45deg) translate(0, 2.5px);
    		transform: rotate3d(0, 0, 1, -45deg) translate(0, 2.5px);
		}

		.active { 
			-webkit-transform: translateX(-100%);
			-moz-transform: translateX(-100%);
			-o-transform: translateX(-100%);
			transform: translateX(-100%);
			-webkit-transition: -webkit-transform 400ms ease;
        	-moz-transition: -moz-transform 400ms ease;
        	-o-transition: -o-transform 400ms ease;
        	transition: transform 400ms ease;
        	/*-webkit-backface-visibility: hidden;*/
	 	}

		#menuContainer ul {
			top: 28%;
			left: 0;
			right: 0;
			position: absolute;
		}

		.li1, .li2, .li3, .li4, .li5 {  
			border-bottom: 1px solid rgba(255, 255, 255, 0); 
			text-transform: uppercase;
			color: #FFF; 
			font-size: 23px;
			font-family: "Montserrat";
			font-weight: 200;
			text-align: center;
			left: 0;
			right: 0;
		}
		/******************Social Net*************************/
		.socialBttns{
			width: 200px;
			margin: 10px auto;
			position: relative;
			background-color: red;
		}

		.socialBttns ul{
			text-align: center;
		}

		.social li a {
			text-indent: -9999px; 
			display: block; 
			width: 80px;
			height: 40px;
			border-radius: 4px;
			border: 1px solid #FFF;
			-webkit-transition: all .3s ease; 
			-moz-transition: all .3s ease;
			-ms-transition: all .3s ease;
			-o-transition: all .3s ease; 
			transition: all .3s ease;
		}

		.facebook, .twitter {
			display: inline-block;
		}


		.facebook a {
			background: url(http://overdrivengamers.com/img/facebook.png) no-repeat;
			background-position: 23px -1.2px;
			background-size: 35px;

		}

		.facebook a:hover {background-color: #3b5998; border: 1px solid #ffffff; }

		.twitter a{
			background: url(http://overdrivengamers.com/img/x-logo/logo-white.png) no-repeat;
			background-position: center;
			background-size: 26px;
		}

		.twitter a:hover {background-color: #000000; border: 1px solid #ffffff; }

		/******************Social Net end*************************/
    
    	.li1:hover>.ac1 { color: #CD3500; }
		.li2:hover>.ac2 { color: #FFB10D; }
		.li3:hover>.ac3 { color: #014DA5; }
		.li4:hover>.ac4 { color: #107C10; }
		.li5:hover>.ac5 { color: #8285FF; }
	
    	.li1:hover { border-bottom: 1px solid rgba(205,53,0,1); }
		.li2:hover { border-bottom: 1px solid rgba(255,177,13,1); }
		.li3:hover { border-bottom: 1px solid rgba(1,77,165,1); }
		.li4:hover { border-bottom: 1px solid rgba(16,124,16,1); }
		.li5:hover { border-bottom: 1px solid rgba(130,133,255,1); }

	/* highlight images ***********************************************/
	
		.highLight1, .highLight2, .highLight3, .highLight4, .highLight5 {
			width: 100%; height: 100%; 
			min-width: 100%; min-height: 100%;
			background-size: cover !important;
			position: fixed;
		}	

	@media screen and (min-width: 480px){

	/*flexslider*******************************************/

		.slide_title {
			top: 38%;
			font-size: 25px;
		}

		.slide_title span {
			font-size: 22px;
		}

	}

	@media screen and (max-height: 320px) and (orientation:landscape){
	.slide_title{
		top: 20%;
	}
	
}

	@media screen and (min-width: 768px){

	/*flexslider*******************************************/

		.slide_title {
			top: 40.5%;
			font-size: 30px;
		}

		.slide_title span {
			font-size: 27px;
		}
	}

	@media screen and (min-width: 960px){

		/*flexslider*******************************************/

		.slide_title {
    		top: 42.5%
    	}

		/* menu *********************************************/
	
		#menuContainer {
	    	height: 45px;
			margin-right: 0;
			float: right;
			right: 0;
			background-color: rgba(0,0,0,0);
			-webkit-transition: -webkit-transform 0ms ease;
        	-moz-transition: -moz-transform 0ms ease;
        	-o-transition: -o-transform 0ms ease;
        	transition: transform 0ms ease;
        	-webkit-backface-visibility: hidden;
		}

		#button {
			display: none;
		}

		.active {
			-webkit-transform: translateX(0);
			-moz-transform: translateX(0);
			-o-transform: translateX(0);
			transform: translateX(0);
    	}

    	#menuContainer ul {
			float: right;
			top: 15px;
			margin-right: 20px;
			position: relative;
		}

		/******************Social Net*************************/

		.socialBttns {display: none;}

		/******************Social Net end*************************/

		.li1, .li2, .li3, .li4, .li5 {
			display: inline;
			margin-left: 8px;
			font-size: 17px;
			padding-bottom: 2px;
			border-bottom: 1px solid rgba(255,255,255,0);
		}	

		.li1:hover>.ac1, .li2:hover>.ac2, .li3:hover>.ac3, .li4:hover>.ac4, .li5:hover>.ac5 { 
			color: #FFF;  
		}
	
    	.li1:hover, .li2:hover, .li3:hover, .li4:hover, .li5:hover { 
        	border-bottom: 1px solid #FFF; 
        	-webkit-transition: all 200ms ease-out;
        	-moz-transition: all 200ms ease-out;
        	-o-transition: all 200ms ease-out;
        	transition: all 200ms ease-out;
    	}

	}

	@media screen and (min-width: 1920px){

		/* containers *****************************************/

		.logo {
			width: 200px;
		}

		 /*flexslider titles*******************************************/

			.slide_title {
			top: 44%;
			font-size: 45px;
		}

		.slide_title span {
			font-size: 42px;
		}

		/* menu *********************************************/
	
		#menuContainer {
	    	height: 58px;
		}

		#button {
			display: none;
		}

		/******************Social Net*************************/

		.socialBttns {display: none;}


		/******************Social Net end*************************/

		.li1, .li2, .li3, .li4, .li5 {
			font-size: 25px;
		}	

	}





