/* ----------------------------------------------------
    SKELETON
------------------------------------------------------- */
body {
    background: #FFFFFF;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 1.85em;
    margin:0;
    padding:0;
}

*, *:after, *:before { 
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box; 
}

ul {
    padding-left: 2.5rem;
    margin: 2rem 0rem;
    list-style-type: square;
}

li.empty { opacity: 0 !important; }

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
 
.clearfix:after {
    clear: both;
}

header {
    position: relative;
    background-color: black;
    height: 95vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

header video, header #poster {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

header .d-flex {}

header .logo {
    position: absolute;
    padding: 1rem 4rem;
    bottom: 0;
    left: 0;
    height: auto;
    width: 100%;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(255,255,255,1) 100%);
    background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

header .logo img {
    height: 28rem;
}

header .buttons {
    position: absolute;
    right: 6rem;
    bottom: 1rem;
}

header .buttons button {
    border: 1px solid #999;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #555;
    font-size: 1.5rem;
    padding: 0rem 0.5rem 0.25rem 0.5rem;
    margin: 0;
    vertical-align: middle;
}

.listados {
    margin: 5rem 0rem;
}

.listados h2 {
    margin: 2rem;
}

.swiper-container {
    padding: 0.5rem;
    min-width: 100%;
}

.swiper-wrapper {
    overflow: hidden;
    min-width: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    width: 100%;
}

.swiper-slide img {
    width: 100%;
}

.mapa-ubicacion {
    max-width: 100%;
    overflow: hidden;
    padding: 5px;
}

.mapa-ubicacion a {
    width: inherit;
}

.mapa-ubicacion a img {
    border: 1px solid #ddd;
    width: 100%;
}

footer {
    border-top: 1px solid #ddd;
    padding: 5rem 0;
    background-color: #eee;
}

footer h1 { font-weight: bold; }

footer p {
    margin: 0;
}

// -eof-