/***
*
*Hoja de Estilos Xima Distribuciones - 2019 V1.0
*Creado por Proyectos web.
*
* */

/**------------------------Inicio Generales--------------------------------------------**/

body {
  padding-top: 0px;
}

@media (min-width: 992px) {
  body {
    padding-top: 10px;
  }
}

body{
	background-color:white;
}

@font-face{
	font-family: SerifaLightItalicBT;
	src:url(../fonts/SerifaLightItalicBT.ttf);
}

@font-face{
	font-family: Aileron-Italic;
	src:url(../fonts/Aileron-Italic.ttf);
}

@font-face{
	font-family: Aileron-Black;
	src:url(../fonts/Aileron-Black.ttf);
}

@font-face{
	font-family:Playlist Script;
	src:url(../fonts/PlaylistScript.otf);
}

.colorText{
	color:#f41111;
}

.SerifaLight{
	font-family: SerifaLightItalicBT;
}

.AileronItalic{
	font-family: Aileron-Italic;
}

.AileronBlack{
	font-family: Aileron-Black;
}

.marginEspecialTop{
	margin-top: 95px;
}

/**-------------------------Fin de Generales-----------------------------------------**/


body {
  /* Aquí el origen de la imagen */
  background-image: url(../images/Under_Construction.png);

  /* Fijar la imagen de fondo este vertical y
    horizontalmente y centrado */
  background-position: center center;

  /* Esta imagen no debe de repetirse */
  background-repeat: no-repeat;

  /* COn esta regla fijamos la imagen en la pantalla. */
  background-attachment: fixed;

  /* La imagen ocupa el 100% y se reescala */
  background-size: cover;

  /* Damos un color de fondo mientras la imagen está cargando  */
  background-color: #464646;
}

/**---------------------------------Start Responsive Cels----------------------------------------**/

@media (min-width: 768px) and (min-width: 992px) {
	body {
  	background-image: url(../images/Under_Construction.png);
  	background-position: center center;
  	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: #464646;
	}
}

@media (min-width: 480px) and (max-width: 768px) {
	body {
  	background-image: url(../images/Under_Construction-767x720.png);
  	background-position: center center;
  	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: #464646;
	}
}

@media (min-width: 0px) and (max-width: 479px) {
	body {
  	background-image: url(../images/Under_Construction-425x720.png);
  	background-position: center center;
  	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: #464646;
	}
}


/**------------------------------------End Responsive Cels--------------------------------------------**/