/* FUENTES */
@font-face
{
	font-family: Roboto;
	src: url(fuentes/Roboto-Regular.ttf);
}

@font-face
{
	font-family: RobotoSlab;
	src: url(fuentes/RobotoSlab-Regular.ttf);
}
/* FUENTES */

/* GENERALES BODY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.elemento1 {
  font-size: 50px;
  color: #5b3131;
}

body, html
{
  background: #FCFCFC;
  font-family: Roboto;
  color: #404040;
}

h1, h2, h3, h4, h5, h6
{
  font-family: RobotoSlab;
}

a
{
  text-decoration: none;
}

.contenedor
{
  width: 95%;
  margin: auto;
}

.text_center
{
  text-align: center;
}

.line
{
  width: 100%;
  height: 2px;
  background: #404040;
  box-shadow: 0 1px 3px rgba(0.24, 0.22, 0.19, 0.5);
  margin-bottom: 15px;
}

i[class^='icon']
{
  margin-right: 5px;
  display: flex;
  align-items: center;
}

.top10
{
  margin-top: 10px;
}

.top10 i
{
  font-weight: bold;
}

.contacto
{
  font-size: small;
}

section
{
  margin-bottom: 55px;
}

section .encabezado
{
  border-bottom: 2px solid rgba(0.24, 0.22, 0.19, 0.5);
  border-bottom-style: dashed;
  margin-bottom: 15px;
}
/* GENERALES BODY */

/* HEADER */
header
{
  background: #333333;
}

header .contenedor
{
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_se, .logo_cosicam
{
  height: 45px;
}

.line_header
{
  width: 100%;
  height: 3px;
  background: #A41E48;
}

.header_user
{
  width: 100%;
  height: 27px;
  background: #B9A56D;
  display: flex;
  align-items: center;
  /* margin-bottom: 5px; */
  position: sticky;
  top: 0;
  z-index: 20;
}

.sicav
{
  display: none;
}

.contenedor_usuario
{
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.usuario
{
  display: flex;
}
/* HEADER */

/* NAVEGACION */
.position_nav
{
  position: sticky;
  top: 27px;
  z-index: 20;
  padding-top: 4px;
  background-color: #FCFCFC;
}

.icon-menu
{
  cursor: pointer;
}

.nav
{
	width: 100%;
	position: absolute;
	top: 26px;
  left: -100%;
  z-index: 100;
	transition: all 0.4s;
}

.nav .contenedor
{
  width: auto;
  margin-right: auto;
}

.menu
{
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-link
{
  width: 100%;
  border: none;
  font-size: 15px;
  text-align: center;
	padding: 15px 2.5%;
	background: #B9A56D;
  color: #404040;
  cursor: pointer;
}

button.menu-link:hover
{
  /* background: #CABC92; */
  color: black;
}

.mostrar
{
	left: 0;
}

li button.activo
{
  color: white;
  /* text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.8); */
  letter-spacing: 1px;
  /* padding: 10px; */
  background-color: #B9A56D;
  border-radius: 3px;
  box-shadow: 0 5px 8px -3px rgba(0, 0, 0, 0.5);
  /* text-decoration: underline; */
  /* border: 1px solid red; */
}
/* NAVEGACION */

/* FOOTER */
/* footer
{
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #621132;
  color: #F9F9F9;
  font-size: small;
  border-top: 3px solid #B9A56D;
} */

footer
{
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  background: #621132;
  color: #F9F9F9;
  font-size: small;
  border-top: 3px solid #B9A56D;
}
/* FOOTER */
/* ------------------------------------------------------------ */
/* RESPONSIVE */
@media (min-width: 480px)
{
  header .contenedor
  {
    height: 70px;
  }

  .logo_se, .logo_cosicam
  {
    height: 55px;
  }

  .contenedor_usuario
  {
    font-size: 15px;
  }
}

@media (min-width: 576px)
{
  h1
  {
    font-size: 22px;
  }

  p.top10
  {
    font-size: 18px;
  }

  p.contacto
  {
    font-size: 15px;
  }

  header .contenedor
  {
    height: 80px;
  }

  .logo_se, .logo_cosicam
  {
    height: 65px;
  }

  .contenedor_usuario
  {
    justify-content: flex-end;
  }
}

@media (min-width: 768px)
{
  h1
  {
    font-size: 24px;
  }

  p.top10
  {
    font-size: 19px;
  }

  p.contacto
  {
    font-size: 16px;
  }

  header .contenedor
  {
    height: 90px;
  }

  .logo_se, .logo_cosicam
  {
    height: 75px;
  }

  .sicav
  {
    display: block;
  }

  .header_user .contenedor
  {
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .icon-menu
	{
		display: none;
	}

  .nav
	{
    position: static;
  }

  .nav .contenedor
  {
    width: 95%;
  }

  .icon-home
  {
    padding-top: 1px;
    font-size: 20px;
  }
  
  .menu
	{
		display: flex;
  }
  
  .menu-link
  {
    background: none;
    padding: 0%;
    margin-right: 15px;
    font-size: 17px;
  }

  .menu-link:hover
  {
    background: none;
    color: #A41E48;
  }
}

@media (min-width: 992px)
{
  h1
  {
    font-size: 26px;
  }

  p.top10
  {
    font-size: 20px;
  }

  p.contacto
  {
    font-size: 17px;
  }

  header .contenedor
  {
    width: 90%;
    height: 100px;
  }

  .logo_se, .logo_cosicam
  {
    height: 85px;
  }

  .contenedor, .header_user .contenedor, .nav .contenedor
  {
    width: 90%;
  }
}

@media (min-width: 1200px)
{
  h1
  {
    font-size: 28px;
  }

  p.top10
  {
    font-size: 21px;
  }

  p.contacto
  {
    font-size: 18px;
  }

  header .contenedor
  {
    height: 110px;
  }

  .logo_se, .logo_cosicam
  {
    height: 95px;
  }
}

@media (min-width: 1300px)
{
  h1
  {
    font-size: 30px;
  }

  p.top10
  {
    font-size: 22px;
  }

  p.contacto
  {
    font-size: 19px;
  }
}
/* RESPONSIVE */