/* WHATSAPP */
.float {
    position:fixed;
	width:50px;
	height:50px;
	bottom:40px;
	right:20px;
	background-color: var(--whatsapp);
	color: var(--just-white);
	border-radius:50px;
	text-align:center;
  	font-size:35px;
    box-shadow: 2px 2px 3px #222;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  	z-index:100;
}
.my-float {
    margin-top:0;
}
/* WHATSAPP */

header {
    width: 100%;
    min-width: 320px;
    max-width: 1200px;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    position: relative;
}
.homePortada {
    width: 100%;
    min-width: 320px;
    height: 100vh;
    max-height: 100vh;
    background-image: url("../assets/img/portada.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
    margin-top: 0;
}
.homeHeaderInfo {
    width: 100%;
    min-width: 320px;
    max-width: 1200px;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}
.homeHeaderInfo img {
    width: 404px;
    min-width: 130px;
    max-width: 288px;
}
.homeHeaderInfo h1 {
    color: var(--just-white);
    font-size: 2.8rem;
    line-height: 3.2rem;
    padding: 10px 50% 0;
    text-align: center;
}
.socialBar,
.socialBar--desktop {
    margin-top: 30px;
 }
 .socialBar--desktop {
    display: none;
 }
 .socialBar--footer {
    margin-bottom: 30px;
 }
 .socialBar--footer h5 {
    font-weight: 300;
    margin-bottom: 10px;
 }
 .socialBar a,
 .socialBar--desktop a,
 .socialBar--footer a {
     margin-right: 10px;
 }
 .socialBar--footer a {
    font-weight: 500;
 }
 .socialBar .fab,
 .socialBar--desktop .fab {
     font-size: 2.5rem;
     color: var(--gris);
 }
 .socialBar--footer .fab {
    font-size: 2rem;
    color: var(--just-white)
 }
.homeIntro, 
.homeLugar,
.homeExpositores,
.homeDatos,
.homeContacto,
.homeFotos,
footer {
    background-color: var(--just-white);
    padding: 40px 20px;
    width: 100%;
    min-width: 280px;
    max-width: 1200px;
    text-align: center;
}
.homeIntro {
    text-align: initial;
    padding: 40px 30px;
}
.homeIntro h2 {
    color: var(--azul-oscuro);
    margin-bottom: 30px;
}
.homeIntro--datos {
    background: var(--gris-claro);
    padding: 30px 0;
    border-radius: 12px;
}
.homeIntro--lugar {
    text-align: center;
}
.homeIntro p {
    font-size: 1.8rem;
    line-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10px;
    color: var(--azul-oscuro);
}
.homeIntro p .fas {
    margin-right: 10px;
    font-size: 2.5rem;
    margin-bottom: 7px;
    color: var(--rojo);
}
.homeIntro p.homeIntro--paragraph {
    font-size: 1.6rem;
    display: block;

}
.homeLugar {
    background-color: var(--gris-claro);
    padding: 0;
}
.homeLugar--bg,
.homeLugar--plano {
    width: 100%;
    min-width: 320px;
    max-width: 1200px;
    max-height: 800px;
    overflow: hidden;
}
.homeLugar--bg img,
.homeLugar--plano img {
    width: 100%;
}
.homeLugar--resumen {
    background: white;
    width: 100%;
    min-width: 280px;
    max-width: 800px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    top: -7px;
    padding: 30px 10px;
}
.resumen--item {
    width: 50%;
    margin-bottom: 20px;
}
.resumen--item span {
    font-size: 3rem;
    color: var(--rojo);
    font-weight: 600;
    margin-bottom: 7px;
}
.resumen--item p {
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
}
.resumen--masInfo {
    width: 80%;
    background-color: var(--rojo);
    color: var(--just-white);
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    animation: pulse 2s infinite;
    position: relative;
    top: 7px;
}
.resumen--masInfo:before
{
    width: 65px;
    height: 7.5px;
}
.resumen--masInfo:after
{
    width: 7.5px;
    height: 65px;
}
@keyframes pulse {
    0% {
        /* transform: scale(0.95); */
        box-shadow: 0 0 0 0 var(--rojoRGBA);
    }
    5% {
        transform: scale(1.05);
    }
    15% {
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(75, 163, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 25px rgba(75, 163, 235, 0);
    }
}
.resumen--masInfo:hover {
    background-color: var(--gris);
}
.homeLugar--datos {
    padding: 20px 40px;
}
.homeLugar section h3,
.homeLugar--datos h3 {
    font-size: 2.3rem;
    color: var(--azul-oscuro);
    margin-bottom: 20px;
}
.homeLugar--lugar {
    font-weight: 600;
}
.homeLugar--direccion {
    margin-bottom: 20px;
}
.homeLugar--plano {
    overflow: visible;
    cursor: pointer;
}
.homeLugar--plano img {
    margin-top: 0;
}
figcaption {
    font-size: 1.3rem;
}
.homeExpositores {
    background-color: var(--just-white);
}
.homeExpositores--1,
.homeExpositores--2,
.homeExpositores--3,
.homeExpositores--4 {
    margin-bottom: 40px;
}
.homeExpositores--4 {
    margin-bottom: 0;
}
.homeExpositores--1 h2,
.homeExpositores--2 h2,
.homeExpositores--3 h2,
.homeExpositores--4 h2 {
    color: var(--rojo);
    margin-bottom: 20px;
}
.homeExpositores--1 h2 {
    margin-bottom: 10px;
}
.homeExpositores--1 p {
    margin-bottom: 20px;
}
.homeExpositores--2 .expositoresGaleria img {
    width: auto;
    height: 78px;
    margin-bottom: 20px;
}
.expositoresGaleria {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.homeExpositores--1 a,
.homeExpositores--3 a {
    width: 40%;
    min-width: 130px;
    max-width: 150px;
}
.homeExpositores--3 a {
    margin-right: 10px;
}
.expositoresGaleria img {
    width: 100%;
    margin-bottom: 10px;
}
.homeExpositores--4 .expositoresGaleria {
    justify-content: center;
}
.homeDatos {
    background-color: var(--rojo);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--just-white);
}
.datosQue,
.datosCuando,
.datosDonde {
    width: 100%;
    min-width: 280px;
    max-width: 300px;
    margin-bottom: 20px;
}
.datosQue h3,
.datosCuando h3,
.datosDonde h3 {
    color: var(--gris-claro);
    margin-bottom: 7px;
}
.homeContacto {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--gris-claro);
}
.homeContacto .fab {
    margin-right: 10px;
    font-size: 2.2rem;
}
.homeContacto h2 {
    margin-bottom: 10px;
}
.homeContacto p {
    margin-bottom: 20px;
}
.homeContacto p span {
    color: var(--rojo);
    font-weight: 600;
}
.homeContacto a {
    text-decoration: none;
}
.homeMapa {
    background-color: var(--just-white);
    width: 100%;
    min-width: 280px;
    max-width: 1200px;
}
.homeMapa iframe {
    width: 100%;
    min-width: 320px;
    max-width: 1200px;
    height: 400px;
    vertical-align: bottom;
}
.homeFotos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.homeFotos h2 {
    color: var(--azul-oscuro);
}
.homeFotos .fas {
    margin-top: 20px;
    margin-bottom: 25px;
    font-size: 3rem;
    color: var(--rojo);
}
.homeFotos--galeria {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.homeFotos--galeriaBtn {
    margin-bottom: 20px;
}
.homeFotos--btn {
    width: 230px;
    background-color: var(--rojo);
    color: var(--just-white);
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
}
.homeFotos--btn:hover {
    background-color: var(--rojo);
}
.homeFotos--btn span {
    font-weight: 600;
    margin-left: 5px;
}
/* GALERIA DE FOTOS */
.galeria--header {
    background-color: var(--gris);
    width: 100%;
    min-width: 280px;
    max-width: 1200px;
    padding: 20px 40px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.galeria--header img {
    height: 60px;
    margin-right: 10px;
}
.galeria--header p {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--azul-oscuro);
}
.galeria--volver {
    width: 100%;
    min-width: 280px;
    max-width: 1200px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 40px;
}
.galeria--volver a {
    color: var(--azul-oscuro);
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.galeria--volver a:hover {
    color: var(--rojo);
}
.galeria--volver .fas {
    margin-right: 5px;
    border-radius: 50px;
    background-color: var(--rojo);
    padding: 5px;
    color: var(--just-white);
    width: 25px;
    height: 25px;
}
.galeria--volver .fas:hover {
    background-color: var(--azul-oscuro);
}
.galeria--album {
    background-color: var(--just-white);
    padding: 40px 20px;
    width: 100%;
    min-width: 280px;
    max-width: 1200px;
    text-align: center;
}
.galeria--album h2 {
    color: var(--azul-oscuro);
    margin-bottom: 40px;
}
.galeriaJS2019 {
    width: 100%;
}
.galeriaJS2019 img {
    width: 45%;
    margin-right: 5px;
}
/* GALERIA DE FOTOS */
footer {
    background-color: var(--rojo);
    color: var(--just-white);
}
footer a {
    text-decoration: none;
    color: var(--just-white);
    font-weight: 600;
}