/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */


/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}


/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}


/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}


/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}


/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */


/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}


/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}


/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}


/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}


/* ==========================================================================
   Estilos de Página
   ========================================================================== */

html,
body {
    height: 100%;
    margin: 0;
    background-color: #000;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    font-family: 'Neue Helvetica W01', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    color: #fff;
}


/*Links*/

a:link {
    color: inherit;
}

a:-webkit-any-link {
    text-decoration: none;
}

a,
a:hover,
a:active,
a:focus {
    color: #fff;
    outline: none;
    -webkit-transition: all 190ms ease-in-out;
    transition: all 190ms ease-in-out;
}

a:hover {
    color: #ee2553;
}


/*Links*/


/*decorados*/

strong {
    font-weight: 700;
}

i {
    font-style: italic;
}


/*decorados*/


/*Formas*/

button::-moz-focus-inner {
    border: 0;
}

input::-moz-focus-inner {
    border: 0;
}

textarea::-moz-focus-inner {
    border: 0;
}

input: focus,
input:active {
    border: 0;
    outline: none;
}

textarea: focus,
input:active {
    border: 0;
    outline: none;
}

input[type='range'],
input[type='range']:focus,
input[type='range']:active,
input[type='range']::-moz-focus-inner,
input[type='range']:-moz-focusring {
    border: 0;
    outline: none;
}

input,
textarea {
    border: 0;
}

textarea {
    resize: none;
}

input {
    border-radius: 0;
}

input {
    -webkit-appearance: none;
}


/*Formas*/


/*Sombras para SVG*/

.sombraSVG {
    -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.3));
    /* Same syntax as box-shadow */
}


/*Sombras para SVG*/


/*Embedear Fuentes*/


/*Embedear Fuentes*/


/* ==========================================================================
   Layout
   ========================================================================== */


/*Esto es para evitar que se quede pegado en Chrome por estar Fixed*/

.fixed {
    position: fixed;
    -webkit-transform: translateZ(0);
}


/*Alinear Verticalmente*/

.verticalAlign {
    display: table;
}

.top,
.middle,
.bottom {
    display: table-cell;
}

.top {
    vertical-align: top;
}

.middle {
    vertical-align: middle;
}

.bottom {
    vertical-align: bottom;
}

.fill {
    width: 100%;
    height: 100%;
}

.width100 {
    width: 100%;
}

.height100 {
    height: 100%;
}

.rel {
    position: relative;
}


/*Padding y Márgenes*/

.paddingA {
    padding: 7.08vw 8.5vw;
}

.marginA {
    margin: 7.08vw 8.5vw;
}

.paddingB {
    padding: 4.25vw 5.666vw;
}

.marginB {
    margin: 4.25vw 5.666vw;
}

.paddingC {
    padding: 2.125vw;
}

.marginC {
    margin: 2.125vw;
}


/* ========================================
   Animaciones
   ======================================== */

.light {
    font-weight: 300;
}

.mayus {
    text-transform: uppercase;
}


/* ========================================
   Animaciones
   ======================================== */

.transition.all {
    -webkit-transition-property: all;
    transition-property: all;
}

.transition.in {
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}

.transition.out {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.transition.inOut {
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.transition.dur150 {
    -webkit-transition-duration: 150ms;
    transition-duration: 150ms;
}

.transition.dur200 {
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
}

.transition.dur250 {
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

.transition.dur300 {
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.transition.dur350 {
    -webkit-transition-duration: 350ms;
    transition-duration: 350ms;
}

.transition.dur400 {
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

.transition.dur450 {
    -webkit-transition-duration: 450ms;
    transition-duration: 450ms;
}


/*Transiciones*/

.ejemploDeTransformacion {
    -webkit-transform: translateY(6px) rotate(135deg);
    transform: translateY(6px) rotate(135deg);
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
}

.ejemploDeTransicion {
    -webkit-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
}


/*Transiciones*/


/* ==========================================================================
   Los estilos del sitio
   ========================================================================== */


/**** inicio ****/


/*precargar imágenes*/

body::after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(../img/m_bg_inicio-01.jpg) url(../img/m_bg_inicio-02.jpg) url(../img/m_bg_inicio-03.jpg) url(../img/m_bg_inicio-04.jpg);
}

#head {
    width: 100%;
    top: 0;
    z-index: 1000;
}

#header {
    width: 100%;
    padding: 10px 0;
    -webkit-transition: all 190ms ease-in-out;
    transition: all 190ms ease-in-out;
}

#header.scrollDown {
    background-color: rgba(0, 0, 0, 0.85);
}

.head-logo {
    padding-left: 24px;
}

.head-logo img {
    height: 41px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.head-drop .dropdown-menu {
    left: calc(100% - 206px);
    border-radius: 0;
    margin-top: 12px;
    padding: 15px 30px;
}

.head-drop .dropdown-menu li {
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    cursor: pointer;
}

#burger {
    position: absolute;
    z-index: 70;
    right: 0;
    top: 10px;
    width: 80px;
    padding: 0 24px;
    margin-top: 8px;
    background: none;
    border: none;
}

#burger div {
    background-color: #ee2553;
    height: 3px;
    margin-bottom: 6px;
    -webkit-transition: all 190ms ease-in-out;
    transition: all 190ms ease-in-out;
}

#burger:hover div {
    background-color: #ab1739;
}

#burger:focus {
    outline: none;
}

#carruPadre {
    position: relative;
    padding: 0;
    height: calc(100% - 100px);
}

#carruPortada {
    height: 500px;
    height: 100vh;
}

#carruItem {
    height: calc(100% - 100px);
    background-size: cover;
    background-position: center top;
}

.carousel .fondo1 {
    background-image: url(../img/m_bg_inicio-01.jpg);
}

.carousel .fondo2 {
    background-image: url(../img/m_bg_inicio-02.jpg);
}

.carousel .fondo3 {
    background-image: url(../img/m_bg_inicio-03.jpg);
}

.carousel .fondo4 {
    background-image: url(../img/m_bg_inicio-04.jpg);
}

#carruBase {
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: -100px;
    background-color: #ee2553;
}

#carruBase span {
    color: #000;
}

#carruBase .base-text {
    margin: 18px 45px;
    width: 85%;
}

#copy {
    position: absolute;
    width: 80%;
    top: 36%;
    left: 50px;
    z-index: 2;
}

#copy img {
    height: 80px;
}

#bar {
    position: absolute;
    width: 70%;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 37px;
}

#bar span {
    color: #ee2553;
}

#bar div {
    width: 5px;
    background-color: #fff;
    height: 25vh;
}

#form {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background-color: #ee2553;
    width: 260px;
    height: 240px;
    z-index: 2;
    visibility: hidden;
    padding: 24px;
}

.head-end {
    margin-top: 100px;
}


/**** termina inicio ****/


/**** estilos generales ****/

.bloq {
    padding: 80px 0;
}

.bloq-leve {
    padding: 100px 0 0 0;
}

.bloq-socio {
    padding-left: 24px;
    padding-right: 24px;
}

.bloq-fondo {
    background-color: #222;
}

.bloq-socio img {
    width: 100%;
}

.text-title h2 {
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: #ee2553;
    font-size: 32px;
    letter-spacing: 1px;
    padding-bottom: 16px;
}

.text-sub {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.modal .text-sub {
    font-size: 28px;
    padding-bottom: 10px
}

.text-gral p {
    padding-bottom: 30px;
}

#sec-membresias .text-gral span {
    font-size: 9px;
    letter-spacing: 1px;
}

.text-others {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 1px;
    padding-bottom: 20px;
}

form {
    margin-top: 6px;
}

textarea,
input,
button {
    outline: none;
}

form input,
form textarea {
    width: 100%;
    background: none;
    padding: 12px 0;
    border-bottom: 1px solid #fff;
    color: #fff;
}

form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

form input::placeholder,
form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}


/*Error en formas*/

form input.error,
form textarea.error {
    border-bottom: 1px solid #000;
}

form input.error::-webkit-input-placeholder,
form textarea.error::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.85);
}

form input.error:-ms-input-placeholder,
form textarea.error:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.85);
}

form input.error::placeholder,
form textarea.error::placeholder {
    color: rgba(0, 0, 0, 0.85);
}

#formaContacto input.error,
#formaContacto textarea.error {
    border-bottom: 1px solid #ee2553;
}

#formaContacto input.error::-webkit-input-placeholder,
#formaContacto textarea.error::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#formaContacto input.error:-ms-input-placeholder,
#formaContacto textarea.error:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#formaContacto input.error::placeholder,
#formaContacto textarea.error::placeholder {
    color: rgba(255, 255, 255, 0.6);
}


/*Error en formas*/

.formaPass input:after {
    content: '!';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #000;
    border: 1px solid #fff;
    z-index: 10;
}

#formaContacto input:focus,
#formaContacto textarea:focus {
    outline: none;
}

form button {
    width: 100%;
    margin-top: 16px;
    border: 1px solid #fff;
    background-color: #ee2553;
    padding: 8px;
    font-size: 14px;
    letter-spacing: 1px;
    font-style: italic;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

form button:hover {
    background-color: #ab1739;
}

.formaPass+.formResult p {
    margin-top: 1em;
}

#formResult p {
    margin-top: 2em;
    text-align: center;
}

#pase {
    right: 0;
    width: 80px;
    height: 80px;
    z-index: 100;
    top: calc(82% - 40px);
    -webkit-transform: translateX(125px);
    transform: translateX(125px);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    cursor: pointer;
}

#pase.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#pase-bloc {
    text-align: center;
    background-color: #ee2553;
    padding: 20px 15px;
    line-height: 1.2;
    -webkit-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

#pase-bloc:hover {
    background-color: #ab1739;
}

#pase #pase-bloc.animated {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
}

#pase.active #pase-bloc.animated {
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    2.5% {
        -webkit-transform: scale3d(1.06, 1.06, 1.06);
        transform: scale3d(1.06, 1.06, 1.06);
    }
    5% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    2.5% {
        -webkit-transform: scale3d(1.06, 1.06, 1.06);
        transform: scale3d(1.06, 1.06, 1.06);
    }
    5% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

#modal-forma .modal-dialog {
    width: 280px;
    margin-left: auto;
    margin-right: auto;
}

#modal-forma .modal-content {
    border-radius: 0;
    margin-top: 60px;
    background-color: #ee2553;
}

#modal-forma .modal-content span,
.formMessage span {
    font-style: italic;
    font-size: 12px;
    letter-spacing: 1px;
}

#modal-forma .modal-body {
    padding: 36px;
}

#modal-forma .close img {
    position: absolute;
    margin-left: 5px;
    width: 30px;
}

#bar-red {
    position: absolute;
    top: 200px;
    right: 48px;
    z-index: 1;
}

#bar-red div {
    width: 5px;
    background-color: #ee2553;
    height: 100px;
}

#sec-beneficios #bar-red {
    position: absolute;
    top: 150px;
    left: 48px;
    z-index: 1;
}

#sec-beneficios #bar-red div {
    width: 5px;
    background-color: #ee2553;
    height: 100px;
}

#map-canvas {
    width: 100%;
    height: 380px;
    background-color: #000000;
}

.back-text {
    padding: 28px;
    color: #666;
    font-size: 16px;
    letter-spacing: 1px;
    -webkit-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

.back-text:hover {
    padding-left: 30px;
    color: #ee2553;
}

.back-text::before {
    content: "< ";
}


/**** estilos generales ****/


/**** instalaciones ****/

#sec-instalaciones {
    background-color: #333;
}

#sec-instalaciones span {
    text-decoration: underline;
}

.gale {
    margin: 40px 15px;
}

.gale a {}

.gale-img {
    width: 100%;
    height: 180px;
    margin-bottom: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.gale-img:hover {
    opacity: 0.8;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#gale-01 {
    background-image: url(../img/img_gale_1.jpg)
}

#gale-02 {
    background-image: url(../img/img_gale_2.jpg)
}

#gale-03 {
    background-image: url(../img/img_gale_3.jpg)
}

#gale-04 {
    background-image: url(../img/img_gale_5.jpg);
}

#gale-05 {
    background-image: url(../img/img_gale_6.jpg);
    background-position: center;
}

#gale-06 {
    background-image: url(../img/img_gale_7.jpg);
    background-position: center;
}

#gale-07 {
    background-image: url(../img/img_gale_8.jpg)
}


/**** instalaciones ****/


/**** horarios ****/

#sec-horarios {
    background-color: #fff;
    color: #000;
}

#sec-horarios h1 {
    margin: 0;
    font-weight: 700;
    color: #ee2553;
    font-size: 26px;
    padding-bottom: 10px;
}

#sec-horarios p {
    font-size: 16px;
}

.sec-head {
    text-align: center;
    padding-bottom: 10px;
}

.horario {
    border-bottom: 5px solid #ee2553;
    padding: 15px;
}

.horario:nth-child(3) {
    border: none;
}


/**** horarios ****/


/**** beneficios ****/

.beneficios {
    padding: 50px 15px 0px 15px;
}

.beneficios h2 {
    margin: 0;
    font-size: 55px;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 2.1;
}

.beneficios .bene-mark a {
    margin-top: 30px;
    padding: 10px 30px;
    border: 2px solid #fff;
    cursor: pointer;
}

.beneficios .bene-mark a:hover {
    border: 2px solid #ee2553;
    color: #fff;
    background-color: #ee2553;
}

.beneficios .bene-img {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    background-size: cover;
}

.beneficios .bene-mark {
    position: absolute;
    top: 65px;
    top: 12vh;
    width: 100%;
    text-align: center;
}

.beneficios #bene-01 {
    background-image: url(../img/img_bene_socio.png);
    background-position: center top;
}

.beneficios #bene-02 {
    background-image: url(../img/img_bene-efit.png);
    background-position: center bottom;
}

.beneficios #bene-03 {
    background-image: url(../img/img_bene-inbody.png);
    background-position: center center;
}

.bene-otros {
    margin-top: 70px;
}

.bene-otros span {
    text-decoration: underline;
}

.bene-ul {
    margin-top: 10px;
}

.bene-otros ul {
    margin: 0;
    line-height: 1.6;
}


/**** beneficios ****/


/**** membresías ****/

#sec-membresias {
    background-color: #333;
}

.member-group {
    background-color: #000;
    margin-top: 70px;
    height: 200px;
    padding: 25px
}

.member-price {
    position: absolute;
    right: 0;
    top: 200px;
    background-color: #ab1739;
    width: 135px;
    text-align: center;
    padding: 12px;
    font-size: 20px;
    letter-spacing: 1px;
    margin-top: 40px;
}


/**** membresías ****/


/**** socios ****/

#sec-socios .bold {
    margin-top: 40px;
}

#sec-socios .boldred {
    color: #ee2553;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 20px;
}

#sec-socios .text-gral {
    padding-top: 24px;
}

#sec-socios h1 {
    position: absolute;
    top: -90%;
    left: -5px;
    color: #ee2553;
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2px;
}

.even-more {
    font-size: 2em !important;
}

#sec-socios .bar {
    position: absolute;
    background-color: #ee2553;
    width: 5px;
    height: 45px;
    left: 65px;
}


/**** socios ****/


/**** e-fit ****/

#sec-efit span {
    color: #d3d3d3;
    font-weight: 700;
    text-decoration: underline;
}

#sec-efit .bold {
    margin-top: 40px;
}

#sec-efit .boldred {
    color: #ee2553;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
}

#sec-efit .boldred span {
    color: #fff;
    text-decoration: none;
}

#sec-efit .bold-list {
    padding: 0 15px;
    border-left: 5px solid #ee2553;
}

.bloq-e {
    padding: 0 20px 40px 20px;
}

.e-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
}

#e-pic1 {
    background-image: url(../img/img_efit_1.jpg);
}

#e-pic2 {
    background-image: url(../img/img_efit_2.jpg);
    background-position: bottom;
}


/**** e-fit ****/


/**** inbody ****/

#sec-inbody .inbody-list {
    list-style: none;
    margin: 40px 0;
    padding: 0 25px;
    line-height: 1.8;
    border-left: 5px solid #ee2553;
}


/**** inbody ****/


/**** footer ****/

.footer-square {
    margin-bottom: 70px;
}

.footer-info {
    border-left: 5px solid #ee2553;
    padding-left: 40px;
}

.footer-info img {
    margin-top: 24px;
    height: 20px;
    padding-right: 4px;
    margin-right: 16px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    cursor: pointer;
}

.footer-info img:hover {
    opacity: 0.6;
}

.footer-form {
    margin-bottom: 30px
}

.footer-form form button {
    width: 100%;
    margin-top: 24px;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 8px;
    font-size: 14px;
    letter-spacing: 1px;
    font-style: italic;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    margin-bottom: 60px;
}

.footer-form form button {
    width: 100%;
    margin-top: 24px;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 8px;
    font-size: 14px;
    letter-spacing: 1px;
    font-style: italic;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.footer-form form button:hover {
    background-color: #ee2553;
}

.footer-form textarea {
    height: 80px;
}

.footer-form .w-50 {
    width: 46% !important;
}

.footer-form .w-50:nth-child(3) {
    margin-left: 6.5%;
    width: 46% !important;
}


/**** footer ****/


/* ==========================================================================
   Los Media Queries
   ========================================================================== */


/********** Tablet Vertical **********/

@media (min-width:768px) {
    /*precargar imágenes*/
    body::after {
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
        z-index: -1;
        content: url(../img/bg_inicio-01.jpg) url(../img/bg_inicio-02.jpg) url(../img/bg_inicio-03.jpg) url(../img/bg_inicio-04.jpg);
    }
    .carousel .fondo1 {
        background-image: url(../img/bg_inicio-01.jpg);
    }
    .carousel .fondo2 {
        background-image: url(../img/bg_inicio-02.jpg);
    }
    .carousel .fondo3 {
        background-image: url(../img/bg_inicio-03.jpg);
    }
    .carousel .fondo4 {
        background-image: url(../img/bg_inicio-04.jpg);
    }
    #copy img {
        height: 150px;
        height: 20vh;
    }
    #form {
        visibility: visible;
    }
    #bar-red {
        top: 80px;
        left: 25%;
    }
    #bar-red div {
        height: 150px;
    }
    #sec-beneficios #bar-red {
        top: 80px;
        left: inherit;
        right: 10%;
    }
    #sec-beneficios #bar-red div {
        height: 130px;
    }
    .gale-img {
        height: 250px;
    }
    #modal-forma .modal-dialog {
        width: 400px;
    }
    .horario {
        border-bottom: 0;
        border-right: 5px solid #ee2553;
        padding-top: 0;
        padding-left: 30px;
        height: 170px
    }
    #map-canvas {
        height: 450px;
    }
    #sec-socios .text-gral {
        padding-top: 32%;
    }
    #sec-socios h1 {
        top: 0%;
        left: -100px;
        font-size: 50px;
    }
    .more-left {
        left: -3em !important;
    }
}


/********** Tablet Horizontal **********/

@media (min-width: 992px) {
    #carruBase .base-text {
        margin: 26px 100px;
        width: 60%;
    }
    #bar {
        left: 50px;
        font-size: 37px
    }
    #form {
        width: 340px;
        height: 270px;
        padding: 36px;
        visibility: visible;
    }
    #pase {
        width: 125px;
        height: 125px;
        top: calc(50% - 63px);
    }
    #pase-bloc {
        padding: 42px 15px;
    }
    .beneficios .bene-img {
        height: 350px;
    }
    #sec-socios .bar {
        height: 100px;
        left: 100px;
    }
}


/********** Escritorio 0 **********/

@media (min-width: 1025px) {
    #sec-socios .text-gral {
        padding-top: 55%;
    }
    #sec-socios h1 {
        top: 10%;
        left: -100px;
        font-size: 60px;
        letter-spacing: 3px;
    }
}


/********** Escritorio 1 **********/

@media (min-width: 1200px) {
    .text-title h2 {
        font-size: 40px;
    }
    .text-gral {
        font-size: 16px;
        line-height: 1.45;
    }
    .gale-img {
        height: 300px;
    }
    .beneficios .bene-mark {
        top: 100px;
        top: 15vh;
    }
    .beneficios .bene-img {
        height: 400px;
    }
    .even-more {
        font-size: 3em !important;
        left: -6em !important;
    }
}


/********** Escritorio 2 **********/

@media (min-width: 1380px) {}


/********** Escritorio 3 **********/

@media (min-width: 1540px) {
    .gale-img {
        height: 400px;
    }
    .beneficios .bene-mark {
        top: 170px;
        top: 16vh;
    }
    .beneficios .bene-img {
        height: 460px;
    }
    #map-canvas {
        height: 650px;
    }
    #sec-socios h1 {
        top: 10%;
        left: -250px;
        font-size: 90px;
        letter-spacing: 3px;
    }
    .even-more {
        font-size: 4em !important;
        left: -6em !important;
    }
    #sec-socios .bar {
        height: 150px;
        left: 120px;
    }
}


/********** Escritorio 4 **********/

@media (min-width: 1850px) {}


/********** Escritorio 5 **********/

@media (min-width: 2000px) {}


/************** Portrait **************/

@media (orientation: portrait) {}
