/* -------- IMPORT FONTS -------- */

@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* -------- VARIABLES -------- */

:root {
    --color-shadow-dark-button: #00000029;
    --color-black: #111;
    --color-dark-black-footer: #141414;
    --color-dark-gray: #212121;
    --color-gray-primary: #262626;
    --color-light-gray: #404040;
    --color-yellow-primary: #e7cb4f;
    --color-yellow-dark: #9d8743;
    --color-gray-dark-card: #828282;
    --color-gray-light-card: #cecece;
    --color-white: #fff;
    --color-div-icon-whats: #0d0d0d;
    --color-text-whats: #58d164;
    --color-bg-whats-pulse: rgba(87, 209, 99, 0.568);
    --color-transparent-whats-pulse: rgba(204, 19, 27, 0);
    --color-no-tap-color-mobile: rgba(0, 0, 0, 0);
    --color-gradient-button: transparent linear-gradient( to bottom, var(--color-yellow-dark) 5%, var(--color-yellow-primary) 95%) 0% 0% no-repeat padding-box;
    --color-input: #4d4d4d;
    --color-border-input: #828282;
    --color-text-input: #7d7d7d;
    --color-red-required: #e00e0e;
    --color-gray-light-bar: #444;
}


/* -------- RESET HTML -------- */

* {
    margin: 0;
    padding: 0;
    /*  remove touch effect in mobile */
    -webkit-tap-highlight-color: var(--color-no-tap-color-mobile);
    font-family: "Nunito";
}

*::-moz-selection {
    background: var(--color-yellow-primary);
}

*::selection {
    background: var(--color-yellow-primary);
    color: var(--color-input);
}

html,
body {
    width: 100%;
    height: 100%;
}

a {
    color: inherit;
}


/* CUSTOM SCROLL BAR */


/* width scroll */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

::-webkit-scrollbar-track {
    background: var(--color-gray-primary);
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--color-light-gray);
    border-radius: 5px;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-light-bar);
}


/* -------- RESET BUTTON -------- */

button {
    cursor: pointer;
}

button:focus {
    outline: none;
}


/* -------- CONFIG EFFECT NAVBAR GLOBAL AND BUTTON, IMG -------- */

nav {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.navbar-dark .navbar-toggler {
    border-color: transparent;
}

.navbar-toggler {
    outline: none;
}

nav .nav-item a.active::after {
    display: block;
    content: "";
    border-bottom: solid 3px var(--color-yellow-primary);
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    border-radius: 20px;
    -webkit-transition: -webkit-transform 100ms ease-in;
    transition: -webkit-transform 100ms ease-in;
    -o-transition: transform 100ms ease-in;
    transition: transform 100ms ease-in;
    transition: transform 100ms ease-in, -webkit-transform 100ms ease-in;
    margin-top: 5px;
}

.gallery-top{
    position: relative;
}

.gallery-top::after{
    position: absolute;
    width: 45px;
    height: 45px;
    bottom: 25px;
    left: 50%;
    background-image: url(/assets/images/arrasta.png);
    display: block;
    content: '';
    z-index: 5;
    background-size: cover;
    cursor: pointer;
    transform: translateX(-50%);
    pointer-events: none;
}



.active h1 {
    font-weight: 700;
}


/* WHATS ICON PULSE */

.div-icon-attendence-whats {
    position: fixed;
    right: 60px;
    bottom: 50px;
    z-index: 8;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.icon-attendence-whats {
    background: var(--color-div-icon-whats);
    height: 60px;
    width: 180px;
    padding: 10px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 0 var(--color-bg-whats-pulse);
    box-shadow: 0 0 0 var(--color-bg-whats-pulse);
    -webkit-animation: pulse_button 2s infinite;
    animation: pulse_button 2s infinite;
}

img.icon-whats {
    width: 68px;
    height: 68px;
    position: absolute;
    top: -5px;
    right: 125px;
}

.icon-attendence-whats span {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-left: 40px;
}

.icon-attendence-whats span b {
    font-size: 16px;
    color: var(--color-text-whats);
}

@-webkit-keyframes pulse_button {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--color-bg-whats-pulse);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px var(--color-transparent-whats-pulse);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 var(--color-transparent-whats-pulse);
    }
}

@keyframes pulse_button {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--color-bg-whats-pulse);
        box-shadow: 0 0 0 0 var(--color-bg-whats-pulse);
    }
    70% {
        -webkit-box-shadow: 0 0 0 20px var(--color-transparent-whats-pulse);
        box-shadow: 0 0 0 20px var(--color-transparent-whats-pulse);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 var(--color-transparent-whats-pulse);
        box-shadow: 0 0 0 0 var(--color-transparent-whats-pulse);
    }
}


/* MODAL FORM  */

#tab-navigation-form {
    cursor: pointer;
}

.modal-header,
.modal-footer {
    border: none;
}

.modal-content {
    background: var(--color-light-gray);
    padding: 10px;
}

.close {
    text-shadow: none;
    font-size: 18px;
}

#close-modal {
    position: absolute;
    right: 15px;
    top: 12px;
}

.modal-header {
    margin-top: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 2px solid var(--color-yellow-primary);
}

.modal-header,
.div-financing-type,
.modal-footer {
    color: var(--color-white);
}

.modal-title {
    font-size: 30px;
}

.div-financing-type {
    text-align: center;
    margin-top: 20px;
}

.div-financing-type h2 {
    font-size: 22px;
}

.modal-footer {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal-footer button {
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--color-white);
    width: 150px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.modal-footer button:hover {
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
}

#close-modal .fa-times {
    color: #fff;
}


/* INPUT, SELECT OF FORM FINANCING */

.select-financing-form,
.select-financing,
.input-financing-form {
    width: 100%;
    height: 40px;
    background: var(--color-input);
    border: 2px solid;
    border-color: var(--color-border-input);
    padding: 0 15px;
    font-size: 16px;
    border-radius: 5px;
    color: var(--color-text-input);
    outline: none;
}

.input-financing-form:focus {
    border-bottom: 3px solid var(--color-yellow-dark);
    color: var(--color-white);
}


/* REQUIRED COLOR  */

.required-color {
    color: var(--color-red-required);
}


/* MARGIN FOOTER */

.span-margin-address-footer {
    margin-left: 36px;
}


/* HOVER LINK EFFECT */

a:hover {
    color: inherit;
    text-decoration: none;
}

.hover-link {
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-link:hover {
    color: var(--color-yellow-primary);
}

.icon-location-header {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.icon-instagram-header {
    margin-left: 5px;
}

.icon-footer-social {
    color: var(--color-white);
    width: 30px;
    height: 30px;
}


/* MAP FOOTER */

.map-footer {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.map-mobile {
    display: none;
    width: 100%;
    border: 0;
    cursor: pointer;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}


/* -------- MEDIA QUERIES -------- */


/* Extra small devices (portrait phones, less than 576px) */

@media (max-width: 575.98px) {
    nav .nav-item a.active::after {
        display: none;
    }
    nav .nav-item a.active h1 {
        color: var(--color-yellow-primary);
    }
    /* PULSE ICON */
    .div-icon-attendence-whats {
        position: fixed;
        right: 10px;
        bottom: 15px;
    }
    img.icon-whats {
        width: 60px;
        height: 60px;
        top: -5px;
        right: 123px;
    }
    .icon-attendence-whats {
        height: 50px;
    }
    /* MODAL FORM MOBILE */
    .modal-title {
        font-size: 21px;
    }
    .div-financing-type h2 {
        font-size: 18px;
    }
    .modal-footer button {
        height: 40px;
        border: none;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        background: var(--color-white);
        width: 120px;
        -webkit-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
        transition: all 0.8s ease;
    }
    /* INPUT AND SELECT MOBILE */
    .select-financing-form,
    .input-financing-form {
        margin-bottom: 20px;
    }
    .text-muted {
        margin-top: -15px;
        margin-bottom: 20px;
    }
    .select-financing {
        margin-bottom: 20px;
    }
    .reset-margin-input-form {
        margin-bottom: -5px;
    }
    /* MAP FOOTER */
    .map-footer {
        display: none;
    }
    .map-mobile {
        display: inherit;
    }
    .swiper-pagination {
        display: none;
    }
    .div-gallery-main .swiper-div-view {
        height: 100%;
    }
    .swiper-button-next {
        right: -20px;
    }
    .swiper-button-prev {
        left: -17px;
    }
}

@media (max-height: 575.98px) {
    .div-gallery-main .swiper-div-view {
        height: 100%;
    }
    .div-info-gallery-main {
        padding-left: 5px;
        padding-right: 5px;
    }
    main .container .div-card-main {
        padding: 20px 10px 20px 10px;
    }
    .swiper-button-prev,
    .swiper-button-next {
        outline: none;
    }
    .swiper-button-next {
        right: -20px;
    }
    .swiper-button-prev {
        left: -17px;
    }
}

@media (min-height: 375px) and (max-height: 414px) {
    main .div-gallery-info .div-description-info p {
        font-size: 9px;
    }
    main .div-gallery-info .div-description-button button {
        margin-bottom: 10px;
    }
    main .div-gallery-main {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .modal-title {
        font-size: 16px;
    }
    .div-financing-type h2 {
        font-size: 16px;
    }
}


/* Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) and (max-width: 767.98px) {
    nav .nav-item a.active::after {
        display: none;
    }
    nav .nav-item a.active h1 {
        color: var(--color-yellow-primary);
    }
}


/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) and (max-width: 991.98px) {
    nav .nav-item a.active::after {
        display: none;
    }
    nav .nav-item a.active h1 {
        color: var(--color-yellow-primary);
    }
}

.div-description-info * {
    color: #fff;
}

.div-description-info li {
    list-style-position: inside;
}

.km{
    margin-bottom: 0;
    font-weight: 700 !important;
    font-size: 21px !important;
}