/*========= Importando hojas de estilo =========*/


@import url('./materialize.min.css');
@import url('./w3.css');
@import url('./style.css');
@import url('./flexboxgrid.min.css');

@font-face {
    font-family: 'RobotoCondensedLight';
    src: url('../fonts/robotocondensed-light.eot');
    src: url('../fonts/robotocondensed-light.eot?#iefix') format('embedded-opentype'),
         url('../fonts/robotocondensed-light.woff2') format('woff2'),
         url('../fonts/robotocondensed-light.woff') format('woff'),
         url('../fonts/robotocondensed-light.ttf') format('truetype'),
         url('../fonts/robotocondensed-light.svg#roboto_condensedlight') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'RobotoCondensed';
    src: url('../fonts/robotocondensed-regular.eot');
    src: url('../fonts/robotocondensed-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/robotocondensed-regular.woff2') format('woff2'),
         url('../fonts/robotocondensed-regular.woff') format('woff'),
         url('../fonts/robotocondensed-regular.ttf') format('truetype'),
         url('../fonts/robotocondensed-regular.svg#roboto_condensedregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Light';
    src: url('../fonts/roboto/Roboto-Light.woff');
    
    
}

@font-face {
    font-family: 'Roboto-Regular';
    
    src: url('../fonts/roboto/Roboto-Regular.woff');
    
}
@font-face {
    font-family: 'Roboto-Bold';
    
    src: url('../fonts/roboto/Roboto-Bold.woff')
    
    
}


/*============ Estilos generales*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


.trekup:hover{
	background: rgba(255,255,200,0.5);
	padding: 2px;
	border-radius: 50px;
	color: #3d3d3d;
	box-sizing: border-box;

}

.trekup{
	background: rgba(10,25,2,0.4);
	padding: 2px;
	color: #fff;
	border-radius: 5px;
	box-sizing: border-box;

}

.side-bar{
	background: url(../img/bg.jpg) 50% 50% ;
	background-repeat: no-repeat;
	
	background-size: cover;
}

.bg-parallax{
	background-size: 100%;

}

.user{
	width: 100px;
	height: 100px;
}

.parallax-container {
      height: 400px;
    }

 .bar-icon{
 	font-size: 1-6rem;
 	color: white;
 }

 .font-title{
font-family: 'Roboto-Bold',san-serif;
font-weight: bold;
font-size: 1.5rem;

 }

  .font-titleI{
font-family: 'Roboto-Bold',san-serif;
font-weight: 900;
font-size: 2.9rem;

 }

 .font-titleH{
font-family: 'Roboto-Bold',san-serif;
font-weight: 500;
font-size: 2.7rem;

 }

 .font-title2{
font-family: 'Roboto-Regular',san-serif;

font-size: 1.1rem;

 }

 .font-titleE{
font-family: 'Roboto-Bold',san-serif;

font-size: 1.1rem;

 }

 .font-titleM{
font-family: 'Roboto-Bold',san-serif;

font-size: 1.4rem;

 }

 .font-titleP{
font-family: 'Roboto-Bold',san-serif;

font-size: 1.5rem;

 }


 .font-titleA{
font-family: 'Roboto-Light',san-serif;

font-size: 1.5rem;

 }



 .big{
 	font-size: 6.8rem;
 }

@media (min-width: 168px) and (max-width: 381px){
	.parallax-container{
		height: 200px;
	}
	.no-paddin-left{
		padding-left: 0;
	}

	.mafet{
		margin-top: ;
	}
}

@media (min-width: 381px) and (max-width: 498px){
	.parallax-container{
		height: 250px;
	}
	.no-paddin-left{
		padding-left: 0;
	}

	.mafet{
		margin-top: ;
	}
}

#contenedor_carga{
    background-color: rgba(250, 240, 245, 0.9);
    height: 100%;
    width: 100%;
    position: fixed;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10000;
}

#carga{
    border: 10px solid #ccc;
    border-top-color: #4CAF50;
    border-top-style: groove;
    height: 100px;
    width: 100px;
    border-radius: 100%;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin:auto;
    -webkit-animation: girar 1.5s linear infinite;
     -o-animation: girar 1.5s linear infinite;
      animation: girar 1.5s linear infinite;
    
}
@keyframes girar {
    from {transform: rotate(0deg); }
    to {transform: rotate(360deg); }
}