.visible-xs {
    display: none !important;
}

.hidden-xs {
    display: block !important;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1;
    background-color: #000;
}

.main-container {
    padding: 70px 0px;
}

::-webkit-input-placeholder {
    color: #fff;
}

:-moz-placeholder { /* Firefox 18- */
    color: #fff;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
}

:-ms-input-placeholder {
    color: #fff;
}

.placeholder-ie {
    color: #fff;
}

/*SLICK*/
.slick-prev:before, .slick-next:before {
    content: none;
}

.slick-next {
    width: 22px;
    height: 38px;
    background-image: url("../img/arrow-right-m.png") !important;
}

.slick-prev {
    width: 22px;
    height: 38px;
    background-image: url("../img/arrow-left-m.png") !important;
}
/*SLICK*/

/*HEADER*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 20px 35px;
    background: rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
}

.header-left .logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .header-left .logo-brand img {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

.header-nav {
    display: flex;
    flex: 1;
    justify-content: right;
}

.nav-list {
    padding-top: 45px;
    display: flex;
    gap: 20px;
}

    .nav-list a {
        font-family: "CorporateSRegular";
        font-size: 16px;
        color: #FFF;
        text-decoration: none;
    }

        .nav-list a.selected {
            color: #00acec;
        }

.header-right img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.menu-icon {
    display: none;
    width: 40px;
    height: 40px;
    background: url('../img/icon-hambur.svg') no-repeat center center;
    background-size: 24px;
    cursor: pointer;
    z-index: 2001;
}

    .menu-icon.open {
        background: url('../img/icon-cross.svg') no-repeat center center;
        background-size: 22px;
    }

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
}

    .overlay.active {
        opacity: 1;
        pointer-events: all;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/*HEADER*/

/*FOOTER*/
.footer {
    background-color: rgba(0,0,0,0.5);
    padding: 30px 35px;
}

.footer-legals {
    text-align: justify;
    padding-bottom: 20px;
}

    .footer-legals span {
        font-family: "CorporateSRegular";
        font-size: 13px;
        line-height: 18px;
        color: #fff;
    }

.footer-conditions {
    text-align: justify;
}

    .footer-conditions span {
        font-family: "CorporateSRegular";
        font-size: 13px;
        line-height: 18px;
        color: #fff;
    }

.footer-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 35px;
}

.social-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .social-left img {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

.social-right a {
    font-family: "MBCorpoSTextReg";
    font-size: 16.57px;
    color: #fff;
    text-decoration: none;
}
/*FOOTER*/

/*FONDOS*/
.bgReserva {
    background-image: url(../img/bkg-reserva.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.bgReserva2 {
    background-image: url(../img/bkg-reserva-2.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.bgReserva3 {
    background-image: url(../img/bkg-reserva-3.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 850px;
}

.bgLocalizacion {
    background-image: url(../img/bkg-localizacion.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 890px;
}

.bgVisitas {
    background-image: url(../img/bkg-visitas.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 900px;
}

.bgComentarios {
    background-image: url(../img/bkg-comentarios.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 900px;
}

.bgReglamento {
    background-image: none;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
/*FONDOS*/

/*RESERVA*/
.booking {
    display: flex;
    justify-content: flex-end;
    padding: 0px 35px;
}

.booking-content {
    width: 650px;
    padding: 50px 50px 70px;
    background-color: rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
}

.booking-content-title span {
    font-family: "MBCorpoSTitleCondOfficeBold";
    font-size: 42px;
    line-height: 28.08px;
    color: #fff;
}

.booking-content-subtitle {
    padding-top: 20px;
}

    .booking-content-subtitle span {
        font-family: "CorporateSLight";
        font-size: 22px;
        line-height: 24px;
        letter-spacing: -.8px;
        color: #fff;
    }

.booking-content-description {
    padding-top: 40px;
}

    .booking-content-description span {
        font-family: "CorporateSLight";
        font-size: 30px;
        line-height: 28.08px;
        color: #fff;
    }

.booking-content-calendar {
    padding-top: 20px;
}

.booking-content-calendar-wrap {
    display: flex;
    gap: 40px;
}

.calendar-month-title span {
    font-family: 'CorporateSLight';
    font-size: 18px;
    color: #fff;
}

.calendar-month-content {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .calendar-month-content .week-item {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

        .calendar-month-content .week-item .day {
            position: relative;
            width: 25px;
            height: 25px;
            line-height: 25px;
            border-radius: 15px;
            background-color: #fff;
            text-align: center;
            box-sizing: border-box;
            cursor: pointer;
        }

            .calendar-month-content .week-item .day span {
                font-family: "CorporateSLight";
                font-size: 13px;
                color: #414042;
            }

            .calendar-month-content .week-item .day.selected {
                background-color: #414042 !important;
                background-image: none !important;
            }

                .calendar-month-content .week-item .day.selected span {
                    color: #fff;
                }

            .calendar-month-content .week-item .day .day-content {
                display: none;
            }

            .calendar-month-content .week-item .day:hover .day-content {
                display: block; /* se fuerza a mostrar el bloque */
                position: absolute; /* se fuerza a que se ubique en un lugar de la pantalla */
                top: -60px; /* donde va a estar */
                left: -30px;
                width: 102px; /* el ancho por defecto que va a tener */
                padding: 0px; /* la separación entre el contenido y los bordes */
                height: 58px;
                padding-top: 5px;
                background-image: url(../img/alt.png);
                background-repeat: no-repeat;
            }

            .calendar-month-content .week-item .day .day-content .day-description {
                width: 102px;
                font-family: "CorporateSLight";
                font-size: 16px;
                line-height: 16px;
                color: #6d6d6d;
                text-align: center;
            }

            .calendar-month-content .week-item .day .day-content .day-slots {
                width: 103px;
                font-family: "CorporateSLight";
                font-size: 12px;
                line-height: 12px;
                color: #6d6d6d;
                margin-top: 10px;
                text-align: center;
            }

            .calendar-month-content .week-item .day.legend {
                background-color: transparent;
                cursor: default;
            }

                .calendar-month-content .week-item .day.legend span {
                    font-size: 14.82px;
                    color: #fff;
                }

            .calendar-month-content .week-item .day.empty {
                background-color: transparent;
                cursor: default;
            }

            .calendar-month-content .week-item .day.disabled {
                background-color: #807f7f;
                cursor: default;
            }

                .calendar-month-content .week-item .day.disabled span {
                    color: #fff;
                }

.booking-content-calendar-legends {
    display: flex;
    gap: 20px;
    padding-top: 50px;
}

    .booking-content-calendar-legends .legend-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .booking-content-calendar-legends .legend-item span {
            font-family: 'CorporateSLight';
            font-size: 11px;
            color: #fff;
        }

.booking-content-calendar-btn {
    padding-top: 50px;
}

    .booking-content-calendar-btn button {
        width: 181px;
        height: 35px;
        background-color: #0080ef;
        font-family: "MBCorpoSTextReg";
        font-size: 18.41px;
        color: #fff;
        border: none;
        border-radius: 7px;
        cursor: pointer;
    }

.booking-content-form {
    padding-top: 30px;
}

    .booking-content-form .form-group {
        margin-bottom: 10px;
    }

        .booking-content-form .form-group input, .booking-content-form .form-group select {
            width: 100%;
            height: 33px;
            padding: 0px 8px;
            background-color: transparent;
            border: 1px solid #fff;
            font-family: "CorporateSLight";
            font-size: 18px;
            color: #fff;
            box-sizing: border-box;
            display: block;
        }

        .booking-content-form .form-group textarea {
            width: 100%;
            height: 100px;
            padding: 8px;
            background-color: transparent;
            border: 1px solid #fff;
            font-family: "CorporateSLight";
            font-size: 18px;
            color: #fff;
            box-sizing: border-box;
            resize: none;
            display: block;
        }

    .booking-content-form .assistants-qty {
        padding: 10px 0 20px;
    }

        .booking-content-form .assistants-qty span {
            font-family: "CorporateSLight";
            font-size: 18px;
            color: #fff;
        }

    .booking-content-form .assistants-type {
        padding: 10px 0 20px;
    }

        .booking-content-form .assistants-type span {
            font-family: "CorporateSLight";
            font-size: 18px;
            color: #fff;
        }

    .booking-content-form .required-fields span {
        font-family: "CorporateSLight";
        font-style: italic;
        font-size: 18px;
        color: #fff;
    }

    .booking-content-form .assistants-legals {
        padding-top: 10px;
    }

        .booking-content-form .assistants-legals span {
            font-family: "CorporateSLight";
            font-style: italic;
            font-size: 18px;
            color: #fff;
        }

    .booking-content-form .vehicle-type {
        padding: 40px 0px 20px;
    }

        .booking-content-form .vehicle-type span {
            font-family: "CorporateSLight";
            font-size: 18px;
            color: #fff;
        }

    .booking-content-form .vehicle-vin span {
        font-family: "CorporateSLight";
        font-style: italic;
        font-size: 18px;
        color: #fff;
    }

    .booking-content-form .vehicle-owner {
        padding: 20px 0px;
    }

        .booking-content-form .vehicle-owner span {
            font-family: "CorporateSLight";
            font-size: 18px;
            color: #fff;
        }

.booking-content-form-btn {
    padding-top: 40px;
}

    .booking-content-form-btn button {
        width: 181px;
        height: 35px;
        background-color: #0080ef;
        font-family: "MBCorpoSTextReg";
        font-size: 18.41px;
        color: #fff;
        border: none;
        border-radius: 7px;
        cursor: pointer;
    }

.booking-confirmation-title span {
    font-family: "MBCorpoSTitleCondOfficeBold";
    font-size: 34px;
    line-height: 30.08px;
    color: #fff;
}

.booking-confirmation-subtitle {
    padding-top: 30px;
}

    .booking-confirmation-subtitle span {
        font-family: "CorporateSLight";
        font-size: 22px;
        line-height: 23px;
        color: #fff;
    }

.booking-confirmation-btn {
    padding-top: 80px;
}

    .booking-confirmation-btn a {
        width: 181px;
        line-height: 35px;
        background-color: #0080ef;
        font-family: "MBCorpoSTextReg";
        font-size: 18.41px;
        color: #fff;
        border-radius: 7px;
        cursor: pointer;
        display: block;
        text-align: center;
        text-decoration: none;
    }
/*RESERVA*/

/*BENEFICIOS*/
.benefits {
    padding-left: 35px;
    padding-right: 35px;
}

.benefits-title {
    padding-bottom: 60px;
}

    .benefits-title span {
        font-family: "MBCorpoSTitleCondOfficeBold";
        font-size: 34px;
        line-height: 28.08px;
        color: #fff;
    }

.benefits-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 170px;
    row-gap: 30px;
    max-width: 1090px;
}

.benefits-content-item {
    flex: 1 1 calc(25% - 170px);
    box-sizing: border-box;
}

    .benefits-content-item img {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
/*BENEFICIOS*/

/*GALERIA*/
.gallery-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    padding-top: 50px;
}

.gallery {
    width: 100%;
    position: relative;
}

.gallery-thumbs {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 35px;
    padding-right: 35px;
}

    .gallery-thumbs .slick-prev {
        left: 5px;
    }

    .gallery-thumbs .slick-next {
        right: 5px;
    }

.gallery-thumb-item {
    padding: 0px 15px;
}

    .gallery-thumb-item img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

        .gallery-thumb-item img:hover {
            transform: scale(1.03);
        }

.gallery-zoom {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

.gallery-zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    z-index: 1010;
}

    .gallery-zoom-close span {
        font-family: "MBCorpoSTitleCondOfficeBold";
        font-size: 40px;
        color: #fff;
        cursor: pointer;
        display: inline-block;
        padding: 4px 10px;
        border-radius: 50%;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

.gallery-zoom-content {
    width: 80%;
    max-width: 800px;
    padding-left: 15px;
    padding-right: 15px;
}

.gallery-zoom-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.gallery-share {
    text-align: center;
    padding: 50px 35px;
}

.gallery-share-description {
    margin-bottom: 25px;
    line-height: 36px;
}

    .gallery-share-description span {
        font-family: "MBCorpoSTitleCondOfficeBold";
        font-size: 36px;
        color: #fff;
    }

.gallery-share-networks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.gallery-share-item {
    display: flex;
    align-items: center;
}

.social-network {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon img {
    max-width: 100%;
    display: block;
}

.social-text span {
    font-family: "MBCorpoSTextLight";
    font-size: 24px;
    color: #fff;
}
/*GALERIA*/

/*LOCALIZACION*/
.location {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0;
    padding: 0px 35px;
    gap: 70px;
}

.location-info {
    flex: 1 1 40%;
    max-width: 40%;
    height: 410px;
    padding: 50px;
    background-color: #000;
    box-sizing: border-box;
}

.location-info-title span {
    font-family: 'MBCorpoSTitleCondOfficeBold';
    font-size: 35px;
    color: #fff;
}

.location-info-subtitle {
    padding-top: 30px;
}

    .location-info-subtitle span {
        font-family: 'CorporateSLight';
        font-size: 22px;
        line-height: 23px;
        color: #fff;
    }

.location-info-coordinates {
    padding-top: 30px;
}

    .location-info-coordinates span {
        font-family: 'CorporateSLight';
        font-size: 22px;
        line-height: 23px;
        color: #fff;
    }

.location-info-phone span {
    font-family: 'CorporateSLight';
    font-size: 22px;
    line-height: 23px;
    color: #fff;
}

.location-map {
    flex: 1 1 60%;
    max-width: 60%;
    height: 410px;
    box-sizing: border-box;
}

    .location-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
/*LOCALIZACION*/

/*COMENTARIOS*/
.comments {
    padding: 0 35px;
}

.comments-slider {
    max-width: 1370px;
    height: 750px;
    overflow-y: scroll;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 80px;
}

    .comments-slider::-webkit-scrollbar-track {
        box-shadow: inset 0 0 10px 10px #eee;
        border: solid 11px transparent;
        border-radius: 50px;
    }

    .comments-slider::-webkit-scrollbar-thumb {
        box-shadow: inset 0 0 10px 10px #fff;
        border: solid 9px transparent;
        border-radius: 50px;
    }

    .comments-slider::-webkit-scrollbar {
        width: 25px;
    }

.comment-item {
    margin-top: 35px;
}

    .comment-item:first-child {
        margin-top: 0px;
    }

.comment-inner {
    display: flex;
    flex-direction: column;
}

.comment-name span {
    font-family: 'CorporateSBoldItalic';
    font-size: 24.6px;
    color: #fff;
    text-transform: capitalize;
}

.comment-location {
    padding-top: 10px;
    opacity: 0.8;
}

    .comment-location span {
        font-family: 'CorporateSLightItalic';
        font-size: 24.6px;
        color: #fff;
    }

.comment-text {
    padding-top: 35px;
    line-height: 21.15px;
}

    .comment-text span {
        font-family: 'CorporateSLightItalic';
        font-size: 19.68px;
        color: #fff;
    }
/*COMENTARIOS*/

/*VISITAS*/
.visits {
    display: flex;
    gap: 180px;
    padding: 0px 35px;
}

.visits-content,
.visits-slider {
    flex: 0 1 50%;
    background: rgba(0,0,0,0.7);
    box-sizing: border-box;
    padding: 60px;
    height: 750px;
}

.visits-slider {
    overflow-y: scroll;
}

    .visits-slider::-webkit-scrollbar-track {
        box-shadow: inset 0 0 10px 10px #eee;
        border: solid 11px transparent;
        border-radius: 50px;
    }

    .visits-slider::-webkit-scrollbar-thumb {
        box-shadow: inset 0 0 10px 10px #fff;
        border: solid 9px transparent;
        border-radius: 50px;
    }

    .visits-slider::-webkit-scrollbar {
        width: 25px;
    }

.visits-title span {
    font-family: 'MBCorpoSTitleCondOfficeBold';
    font-size: 34px;
    color: #fff;
}

.visits-subtitle {
    padding-top: 20px;
}

    .visits-subtitle span {
        font-family: 'CorporateSLight';
        font-size: 22px;
        line-height: 23px;
        color: #fff;
        letter-spacing: -.5px;
    }

.visits-form {
    padding-top: 20px;
}

    .visits-form .form-group {
        margin-bottom: 15px;
    }

    .visits-form textarea {
        width: 100%;
        height: 215px;
        border: 1px solid #fff;
        padding: 10px;
        resize: none;
        background-color: transparent;
        font-family: "CorporateSLight";
        font-size: 18px;
        color: #fff;
        box-sizing: border-box;
        display: block;
    }

    .visits-form input,
    .visits-form select {
        width: 100%;
        height: 33px;
        padding: 0px 10px;
        border: 1px solid #fff;
        border-radius: 5px;
        background-color: transparent;
        font-family: "CorporateSLight";
        font-size: 18px;
        color: #fff;
        box-sizing: border-box;
        display: block;
    }

    .visits-form .btn-send button {
        width: 181px;
        height: 35px;
        background-color: #0080ef;
        font-family: "MBCorpoSTextReg";
        font-size: 18.41px;
        color: #fff;
        border: none;
        border-radius: 7px;
        cursor: pointer;
    }

    .visits-form .legal-note span {
        font-family: "CorporateSLightItalic";
        font-size: 18px;
        color: #fff;
    }

.visits-item {
    padding-top: 35px;
}

    .visits-item:first-child {
        padding-top: 0px;
    }

.visits-item-name span {
    font-family: 'CorporateSBoldItalic';
    font-size: 24.6px;
    color: #fff;
    text-transform: capitalize;
}

.visits-item-location {
    padding-top: 10px;
}

    .visits-item-location span {
        font-family: 'CorporateSLightItalic';
        color: #fff;
        font-size: 24.6px;
    }

.visits-item-text {
    padding-top: 35px;
    line-height: 21.15px;
}

    .visits-item-text span {
        font-family: 'CorporateSLightItalic';
        font-size: 19.68px;
        color: #fff;
    }

.visits-confirm-title span {
    font-family: "MBCorpoSTitleCondOfficeBold";
    font-size: 42px;
    line-height: 28.08px;
    color: #fff;
}

.visits-confirm-subtitle {
    padding-top: 20px;
}

    .visits-confirm-subtitle span {
        font-family: "CorporateSLight";
        font-size: 18px;
        color: #fff;
    }

.visits-confirm-legals {
    padding-top: 20px;
}

    .visits-confirm-legals span {
        font-family: "CorporateSLight";
        font-size: 18px;
        color: #fff;
    }

.visits-confirm-btn {
    padding-top: 40px;
}

    .visits-confirm-btn a {
        width: 210px;
        line-height: 35px;
        background-color: #fff;
        cursor: pointer;
        display: block;
        text-align: center;
        font-family: "CorporateSLight";
        font-size: 22.6px;
        color: #000;
        text-decoration: none;
    }

.visits-result span {
    font-family: "CorporateAReg";
    font-size: 24px;
    color: #fff;
}

    .visits-result span a {
        font-family: "MBCorpoSTitleCondOfficeBold";
        color: #fff;
        text-decoration: none;
    }

.visits-error-title span {
    font-family: "CorporateAReg";
    font-size: 24px;
    color: #fff;
}

.visits-error-btn {
    padding-top: 20px;
}

    .visits-error-btn a {
        width: 210px;
        line-height: 35px;
        background-color: #fff;
        cursor: pointer;
        display: block;
        text-align: center;
        font-family: "CorporateSLight";
        font-size: 22.6px;
        color: #000;
        text-decoration: none;
    }
/*VISITAS*/

/*REGLAMENTO*/
.regulation-wrap {
    padding: 0px 35px;
}

.regulation-title span {
    font-family: "MBCorpoSTitleCondOfficeBold";
    font-size: 34px;
    line-height: 28.08px;
    color: #fff;
}

.regulation-content {
    display: flex;
    justify-content: space-between;
    gap: 55px;
    flex-wrap: wrap;
    padding-top: 35px;
}

.regulation-column {
    flex: 1 1 calc(50% - 55px);
}

.regulation-item {
    padding-top: 25px;
    text-align: justify;
}

    .regulation-item:first-child {
        padding-top: 0px;
    }

    .regulation-item span {
        font-family: "CorporateSLight";
        font-size: 20px;
        line-height: 20px;
        color: #fff;
    }

        .regulation-item span a {
            font-family: "CorporateSRegular";
            font-weight: bold;
            color: #fff;
            text-decoration: none;
        }

.regulation-footer {
    padding: 50px 35px;
    margin-top: 60px;
    background-color: #0080ef;
}

.regulation-footer-title span {
    font-family: "MBCorpoSTitleCondOfficeBold";
    font-size: 26.79px;
    line-height: 27.9px;
    color: #fff;
}

.regulation-footer-subtitle {
    padding-top: 20px;
}

    .regulation-footer-subtitle span {
        font-family: "CorporateSLight";
        font-size: 17px;
        line-height: 19px;
        color: #fff;
    }
/*REGLAMENTO*/

/*MEDIA PANTALLAS GRANDES*/
@media (max-width: 1870px) {
    /*VISITAS*/
    .visits {
        gap: 80px;
    }
    /*VISITAS*/
}

/*MEDIA PANTALLAS MEDIANAS*/
@media (max-width: 1440px) {
    /*VISITAS*/
    .visits-title span {
        font-size: 30px;
    }

    .visits-subtitle span {
        font-size: 18px;
        line-height: 18px;
    }

    .visits-item-name span {
        font-size: 22.6px;
    }

    .visits-item-location span {
        font-size: 22.6px;
    }

    .visits-item-text span {
        font-size: 17.68px;
    }
    /*VISITAS*/
}

/*MEDIA PANTALLAS CHICAS*/
@media (max-width: 1200px) {
    /*HEADER*/
    .header {
        gap: 30px;
    }

    .nav-list {
        gap: 15px;
    }

        .nav-list a {
            font-size: 14px;
        }
    /*HEADER*/

    /*RESERVA*/
    .booking-content-title span {
        font-size: 38px;
        line-height: 24.08px;
    }

    .booking-content-subtitle span {
        font-size: 18px;
        line-height: 20px;
    }

    .booking-content-description span {
        font-size: 24px;
        line-height: 26.08px;
    }

    .calendar-month-content {
        padding-top: 20px;
    }

    .booking-content-form .form-group input, .booking-content-form .form-group select, .booking-content-form .form-group textarea {
        font-size: 16px;
    }

    .booking-content-form .vehicle-type {
        padding-top: 20px;
    }

        .booking-content-form .assistants-qty span, .booking-content-form .assistants-type span, .booking-content-form .required-fields span, .booking-content-form .assistants-legals span, .booking-content-form .vehicle-type span, .booking-content-form .vehicle-vin span, .booking-content-form .vehicle-owner span {
            font-size: 16px;
        }

    .booking-confirmation-title span {
        font-size: 30px;
        line-height: 26.08px;
    }

    .booking-confirmation-subtitle span {
        font-size: 18px;
        line-height: 19px;
    }

    .booking-confirmation-btn {
        padding-top: 60px;
    }
    /*RESERVA*/

    /*BENEFICIOS*/
    .benefits-title span {
        font-size: 32px;
    }

    .benefits-content {
        column-gap: 70px;
    }

    .benefits-content-item {
        flex: 1 1 calc(25% - 70px);
    }
    /*BENEFICIOS*/

    /*GALERIA*/
    .gallery-container {
        padding-top: 30px;
    }
    /*GALERIA*/

    /*LOCALIZACION*/
    .location {
        gap: 30px;
    }

    .location-info {
        padding: 30px;
    }

    .location-info-title span {
        font-size: 25px;
    }

    .location-info-subtitle span {
        font-size: 18px;
        line-height: 19px;
    }

    .location-info-coordinates span {
        font-size: 18px;
        line-height: 19px;
    }

    .location-info-phone span {
        font-size: 18px;
        line-height: 19px;
    }
    /*LOCALIZACION*/

    /*COMENTARIOS*/
    .comments-slider {
        padding: 40px;
    }

    .comment-name span {
        font-size: 22px;
    }

    .comment-location span {
        font-size: 20px;
    }

    .comment-text span {
        font-size: 18px;
        line-height: 21px;
    }
    /*COMENTARIOS*/

    /*VISITAS*/
    .visits {
        gap: 40px;
    }

    .visits-content, .visits-slider {
        height: 700px;
        padding: 30px;
    }

    .visits-title span {
        font-size: 26px;
    }

    .visits-subtitle span {
        font-size: 14px;
        line-height: 14px;
    }

    .visits-item-name span {
        font-size: 18.6px;
    }

    .visits-item-location span {
        font-size: 18.6px;
    }

    .visits-item-text {
        padding-top: 25px;
    }

        .visits-item-text span {
            font-size: 15.68px;
        }

    .visits-form .legal-note span {
        font-size: 17px;
    }
    /*VISITAS*/

    /*REGLAMENTO*/
    .regulation-title span {
        font-size: 28px;
        line-height: 22.08px;
    }

    .regulation-item span {
        font-size: 16px;
        line-height: 16px;
    }

    .regulation-footer {
        padding: 35px;
    }

    .regulation-footer-title span {
        font-size: 22.79px;
        line-height: 23.9px;
    }

    .regulation-footer-subtitle span {
        font-size: 15px;
        line-height: 17px;
    }
    /*REGLAMENTO*/
}

/*MEDIA TABLET*/
@media (max-width: 991px) {
    .main-container {
        padding: 30px 0px;
    }

    /*HEADER*/
    .header {
        gap: 10px;
        padding: 20px 15px;
    }

    .header-left .logo-brand img {
        max-width: 200px;
    }

    .nav-list {
        padding-top: 25px;
        gap: 10px;
    }

        .nav-list a {
            font-size: 13px;
        }

    .header-right img {
        max-width: 70px;
    }
    /*HEADER*/

    /*FONDOS*/
    .bgReserva3 {
        min-height: auto;
    }
    /*FONDOS*/

    /*RESERVA*/
    .booking {
        justify-content: center;
        padding: 0px 15px;
    }
    /*RESERVA*/

    /*GALERIA*/
    .gallery-thumb-item {
        padding: 10px;
    }

    .gallery-zoom-content {
        width: 90%;
    }
    /*GALERIA*/

    /*LOCALIZACION*/
    .location {
        padding: 0px 35px;
    }
    /*LOCALIZACION*/

    /*COMENTARIOS*/
    .comment-name span {
        font-size: 20px;
    }

    .comment-location span {
        font-size: 18px;
    }

    .comment-text {
        line-height: 22px;
    }

        .comment-text span {
            font-size: 16px;
        }
    /*COMENTARIOS*/
}

/*MEDIA MOBILE*/
@media (max-width : 767px) {
    .visible-xs {
        display: block !important;
    }

    .hidden-xs {
        display: none !important;
    }

    /*SLICK*/
    .slick-next {
        right: 10px;
    }

    .slick-prev {
        left: 10px;
    }
    /*SLICK*/

    /*HEADER*/
    .header-nav {
        gap: 10px;
    }

    .menu-icon {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        height: 100vh;
        width: 320px;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        padding: 30px;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        z-index: 2002;
        gap: 20px;
        box-sizing: border-box;
    }

        .nav-list a {
            color: #fff;
            font-size: 16px;
            text-decoration: none;
            font-family: "CorporateSRegular";
        }

        .nav-list.open {
            transform: translateX(0);
        }

    body.no-scroll {
        overflow: hidden;
    }
    /*HEADER*/

    /*FOOTER*/
    .footer {
        padding: 20px 15px;
    }

    .footer-social {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-top: 20px;
    }

    .social-left {
        justify-content: center;
        gap: 20px;
    }

    .social-right a {
        font-size: 12.57px;
    }
    /*FOOTER*/

    /*FONDOS*/
    .bgReserva {
        background-image: url(../img/bkg-reserva-xs.jpg);
    }

    .bgReserva2 {
        background-image: url(../img/bkg-reserva-2-xs.jpg);
    }

    .bgReserva3 {
        background-image: url(../img/bkg-reserva-3-xs.jpg);
    }

    .bgLocalizacion {
        background-image: url(../img/bkg-localizacion-xs.jpg);
        min-height: auto;
    }

    .bgVisitas {
        background-image: url(../img/bkg-visitas-xs.jpg);
    }

    .bgComentarios {
        background-image: url(../img/bkg-comentarios-xs.jpg);
        min-height: 380px;
    }

    .bgReglamento {
        background-image: none;
        background-color: #000;
    }
    /*FONDOS*/

    /*RESERVA*/
    .booking-content {
        max-width: 100%;
        height: 400px;
        padding: 25px;
    }

    .booking-content-calendar-wrap {
        flex-direction: column;
    }

    .booking-content-calendar-legends {
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
        margin-top: 30px;
        border-top: 2px solid #fff;
    }

        .booking-content-calendar-legends .legend-item {
            justify-content: normal;
        }

    .booking-content-title span {
        font-size: 28px;
        line-height: 24.08px;
    }

    .booking-content-subtitle span {
        font-size: 14px;
        line-height: 16px;
    }

    .booking-content-description {
        padding-top: 20px;
    }

        .booking-content-description span {
            font-size: 16px;
            line-height: 18.08px;
        }

    .booking-content-calendar-btn {
        padding-top: 30px;
    }

        .booking-content-calendar-btn button {
            width: 240px;
        }

    .booking-content-form .form-group input, .booking-content-form .form-group select, .booking-content-form .form-group textarea {
        font-size: 14px;
    }

    .booking-content-form .assistants-qty span, .booking-content-form .assistants-type span, .booking-content-form .required-fields span, .booking-content-form .assistants-legals span, .booking-content-form .vehicle-type span, .booking-content-form .vehicle-vin span, .booking-content-form .vehicle-owner span {
        font-size: 14px;
    }

    .booking-content-form-btn {
        padding-top: 20px;
    }

        .booking-content-form-btn button {
            width: 240px;
        }

    .booking-confirmation-title span {
        font-size: 26px;
    }

    .booking-confirmation-subtitle span {
        font-size: 14px;
        line-height: 14px;
    }

    .booking-confirmation-btn {
        padding-top: 40px;
    }

        .booking-confirmation-btn a {
            width: 240px;
        }
    /*RESERVA*/

    /*BENEFICIOS*/
    .benefits {
        padding-left: 15px;
        padding-right: 15px;
    }

    .benefits-title {
        padding-bottom: 20px;
    }

        .benefits-title span {
            font-size: 17px;
            line-height: 17px;
            color: #fff;
        }

    .benefits-content {
        column-gap: 0px;
        row-gap: 0px;
    }

    .benefits-content-item {
        flex: 1 1 50%;
    }
    /*BENEFICIOS*/

    /*GALERIA*/
    .gallery-container {
        padding: 30px 0;
    }

    .gallery-thumbs .gallery-thumb-item {
        padding: 0;
    }

    .gallery-thumb-item img:hover {
        transform: none;
    }

    .gallery-zoom-content {
        width: 100%;
        max-width: none;
        padding: 0 40px;
    }

    .gallery-share {
        padding: 30px 15px;
    }

    .gallery-share-description {
        line-height: 18px;
    }

        .gallery-share-description span {
            font-size: 18px;
        }

    .gallery-share-networks {
        gap: 20px;
    }

    .social-icon img {
        height: 30px;
    }

    .social-text span {
        font-size: 14px;
    }
    /*GALERIA*/

    /*LOCALIZACION*/
    .location {
        padding: 0px 15px;
        flex-direction: column;
        gap: 0px;
    }

    .location-info,
    .location-map {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100vw;
        height: auto;
        box-sizing: border-box;
    }

    .location-info {
        padding: 20px;
    }

    .location-info-title span {
        font-size: 17px;
        text-shadow: 1px 1px #000;
    }

    .location-info-subtitle {
        padding-top: 20px;
    }

        .location-info-subtitle span {
            font-size: 13px;
            text-shadow: 1px 1px #000;
        }

    .location-info-coordinates {
        padding-top: 15px;
    }

        .location-info-coordinates span {
            font-size: 13px;
            line-height: 14px;
            text-shadow: 1px 1px #000;
        }

    .location-info-phone span {
        font-size: 13px;
        line-height: 14px;
        text-shadow: 1px 1px #000;
    }

    .location-map {
        margin-top: 30px;
    }

        .location-map iframe {
            height: 240px;
        }
    /*LOCALIZACION*/

    /*COMENTARIOS*/
    .comments {
        padding: 0px 15px;
    }

    .comments-slider {
        padding: 20px;
        height: 350px;
    }

    .comment-name span {
        font-size: 16px;
    }

    .comment-location span {
        font-size: 14px;
    }

    .comment-text {
        line-height: 14px;
    }

        .comment-text span {
            font-size: 14px;
        }
    /*COMENTARIOS*/

    /*VISITAS*/
    .visits {
        flex-direction: column;
        padding: 0px 15px;
        column-gap: 0;
        row-gap: 20px;
    }

    .visits-content,
    .visits-slider {
        width: 100%;
        max-width: 100%;
        flex: none;
        height: auto;
        padding: 30px 20px;
        box-sizing: border-box;
    }

    .visits-slider {
        overflow-y: auto;
        padding: 20px 40px;
    }

        .visits-slider .slick-prev {
            left: 7px;
        }

        .visits-slider .slick-next {
            right: 7px;
        }

    .visits-item {
        padding-top: 0px;
    }

    .visits-title span {
        font-size: 22px;
    }

    .visits-subtitle span {
        font-size: 13px;
        line-height: 13px;
    }

    .visits-item-name span {
        font-size: 16.6px;
    }

    .visits-item-location span {
        font-size: 14.6px;
    }

    .visits-item-text {
        padding-top: 10px;
        height: 130px;
        overflow: hidden;
    }

        .visits-item-text span {
            font-size: 13.68px;
        }

    .visits-form textarea {
        font-size: 16px;
    }

    .visits-form input,
    .visits-form select {
        font-size: 16px;
    }

    .visits-form .btn-send button {
        width: 250px;
        margin: 0 auto;
    }

    .visits-form .legal-note span {
        font-size: 15px;
    }

    .visits-confirm-title span {
        font-size: 25px;
        line-height: 25px;
    }

    .visits-confirm-subtitle {
        padding-top: 10px;
    }

        .visits-confirm-subtitle span {
            font-size: 16px;
        }

    .visits-confirm-legals span {
        font-size: 12px;
    }

    .visits-confirm-btn a {
        width: 250px;
        font-size: 18.6px;
        margin: 0 auto;
    }

    .visits-result span {
        font-size: 16px;
    }

    .visits-error-title span {
        font-size: 16px;
    }

    .visits-error-btn a {
        width: 250px;
        font-size: 18.6px;
        margin: 0 auto;
    }
    /*VISITAS*/

    /*REGLAMENTO*/
    .regulation-wrap {
        padding: 0px 15px;
    }

    .regulation-title span {
        font-size: 22px;
        line-height: 16.08px;
    }

    .regulation-content {
        flex-direction: column;
        column-gap: 0px;
        row-gap: 15px;
        padding-top: 20px;
    }

    .regulation-item {
        padding-top: 15px;
    }

        .regulation-item span {
            font-size: 14px;
            line-height: 14px;
        }

    .regulation-footer {
        padding: 30px;
        margin-top: 30px;
    }

    .regulation-footer-title span {
        font-size: 16.79px;
        line-height: 17.9px;
    }

    .regulation-footer-subtitle span {
        font-size: 13px;
        line-height: 15px;
    }
    /*REGLAMENTO*/
}
