/* ===============================
      >>> Etiquetas HTML <<<
=============================== */

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 1em;
}

h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: 3em;
}

h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 2em;    
}

h5 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.25em;
    
}

.modal-header {
    font-family: 'Syncopate', sans-serif;
    background-color: darkgray;
    color: white;
}

.modal-header :first-letter {
    font-size: 1.2em;    
}

.modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;    
}

.modal-footer {
    background-color: darkgray;    
}

/* =======================
      >>> Header <<<
======================= */
header {
    background-image: url(../imagenes/encabezado.jpg); 
    max-height: 910px;
    height: 100vh;
    padding-top: 50px;
	position:relative;    
    background-color: black;
}

header h2 {
    font-family: 'Syncopate', sans-serif;
    font-size: 4em;
    color: white;
    padding-top: 25px;
}

header h2:first-letter {
    font-size: 1.2em;    
}

/* =======================
      >>> QuienSoy <<<
======================= */
#quienSoy {
    padding: 25px 0 15px 0;
}

#quienSoy h3 {
    font-family: 'Syncopate', sans-serif;
    margin: 0;
    color: black;
}

#quienSoy h5 {
    color: gray;
}

/* =======================
      >>> Separador <<<
======================= */
#separador {	
    background-image: url(../imagenes/separador.jpg); 
    height: 500px;
	position:relative;    
    background-color: black;
}

/* =======================
      >>> Galerias <<<
======================= */
#galerias {	
    padding-bottom: 25px;
}


/* =======================
      >>> Contacto <<<
======================= */
#contacto {
    padding: 25px 0 15px 0;
    background-color: #000;    
    color: white;
}

#contacto h3 {
    font-family: 'Syncopate', sans-serif;
    margin: 0;
    color: white;
}

#contacto h5 {
    color: gray;
}

#contacto ul li a {
    text-decoration-line: none;
    color:white;
}

#contacto ul li a:hover,a:focus,a:active,a.active {
    font-weight:bold;
}


/* =======================
      >>> Footer <<<
======================= */

footer {
    padding: 25px 0 10px 0;
    background-color: #cccccc;
}

section#footer {
	padding: 50px 0px 5px 0px;
}

section#footer .copyleft {
    font-size: 10px;
}


/* ============================
      --- Mis estilos ---
============================ */
.separadores {
    padding: 0;
    
    background-color: black;
}

.logosPieDePagina div {
  display: inline-block;
  vertical-align: bottom;
  float: none;
}


/* =========================
      --- PARALLAX ---
========================= */
.parallax-imagen {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* ====================================
      --- embed-responsive ----
==================================== */
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
    padding-bottom: 75%;
}

/* =========================================
      --- GALERIA: Efecto hover  ----
========================================= */
#galerias a img  {
    opacity: 0.75;
}

#galerias a:hover img  {
    opacity: 1;
}

