﻿
.placeholder {
    background-color: transparent !important;
    transition: opacity .3s .03s ease !important;
    opacity: .8 !important;
}

a {
    color: var(--color_header);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}
/*--------------------------------------------------------------
# Navegacion de escritrio - Header
--------------------------------------------------------------*/
.header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 70px;
    border-bottom: 0.5px solid var(--color-e4e4e4);
}

.header .logo img {
    max-height: 55px;
    max-width: 80px;
    margin-right: 6px;
}

/*--------------------------------------------------------------
# Navegacion Movil - Header
--------------------------------------------------------------*/
@media (min-width: 375px) and (max-width: 576px) {
    .header {
        height: 50px;
    }

    .header .logo img {
        max-height:30px;
        margin-right: 6px;
    }
}

/*--------------------------------------------------------------
# Navegacion de escritrio -  navbar
--------------------------------------------------------------*/
@media(min-width: 1400px) {
    .navbar a,
    .navbar a:focus {
        font-size: 19px;
    }
}


@media(min-width: 992px) {
    .navbar {
        padding-top: 5px;
    }

    .navbar ul {
        margin: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        white-space: nowrap;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: Arboria-Book;
        font-weight: lighter;
        color: var(--color_header);
        transition: 0.3s;
        position: relative;
    }

    .navbar a i
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 6px;
    }

    .navbar > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover > a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    /*--------------------------------------------------------------
    # Navegacion de escritrio -  navbar dropdown
    --------------------------------------------------------------*/
    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px
    }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 5px 10px;
        font-size: 15px;
        text-transform: none;
        font-weight: 600;
    }

    .navbar .dropdown ul a i {
            
        font-size: 12px;
    }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

    .dropdown-indicator {
        margin-top: 6px;
        font-size: 12px;  
        -webkit-text-stroke: 1px;
    }

    /*--------------------------------------------------------------
    # Navegacion de escritrio - boton "Ingreso / Registro
    --------------------------------------------------------------*/
    .navbar .btn-registro-ingreso,
    .navbar .btn-registro-ingreso:focus {
        font-family: Arboria-Book;
        font-weight: lighter;
        color: #fff;
        background: var(--color-boton-ingresar);
        transition: 0.3s;
        border-radius: 10px;
    }

    .navbar .btn-registro-ingreso:hover,
    .navbar .btn-registro-ingreso:hover {
        border: 0.5px solid var(--color-boton-ingresar);
        color: #007D9C;
        background: #FFFFFF;
    }

     .navbar .btn-registro-ingreso:active {
        color: #FFFFFF;
        background: var(--color-4c968c);
    }
}

@media (max-width: 992px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

@media (min-width: 992px) {
    .mobile-nav-show,
    .mobile-nav-hide,
    .btn-registro-ingreso-movil {
        display: none;
    }
}

/*--------------------------------------------------------------
# Navegacion Movil -  navbar dropdown
--------------------------------------------------------------*/
section {
    scroll-margin-top: 90px;
}


@media (max-width: 992px) {

    .header .btn-registro-ingreso .select-idioma {
        right: -100%;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        border-left: 1px solid #666;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(255, 255, 255, 0.9);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: Arboria-Book;
        border-bottom: 2px solid rgba(255, 255, 255, 0.8);
        font-size: 16px;
        font-weight: lighter;
        color: var(--color_header);
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a i,
    .navbar .fa-home:focus i {
        margin-top: 10px;
        font-size: 20px !important;
        line-height: 0;
        margin-left: 5px;
    }
 
    .navbar .active,
    .navbar .active:focus {
        border-color: var(--color_line_navbar);
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid #eee;
    }

    .navbar .dropdown > .dropdown-active,
    .navbar .dropdown .dropdown > .dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        color: var(--color_header);
        font-size: 40px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
    }

    .mobile-nav-hide {
        color: var(--color-secondary);
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }


    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.8);
        z-index: 9996;
    }
}

.navbar-movil .btn-registro-ingreso-movil,
.navbar-movil .btn-registro-ingreso-movil:focus {
    font-family: Arboria-Book;
    font-weight: lighter;
    color: #fff;
    background: var(--color-boton-ingresar);
    transition: 0.3s;
    border-radius: 10px;
}

.navbar-movil .btn-registro-ingreso-movil:hover {
    border: 0.5px solid var(--color-boton-ingresar);
    color: #007D9C;
    background: #FFFFFF;
}

.navbar-movil .btn-registro-ingreso-movil:active {
    color: #FFFFFF;
    background: var(--color-4c968c);
}

@media (min-width: 0px) and (max-width: 576px) { /*Small*/
    .navbar-movil .btn-registro-ingreso-movil {
        font-size: 15px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    width: 100%;
    background-size: cover;
    height: 100%;
    margin-top: 7%;
    background-color: var(--color-boton-ingresar);
}


.footer ul {
    list-style: none;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    font-family: Arboria-Book;
    transition: 0.3s;
}

.footer p {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    font-family: Arboria-Book;
    transition: 0.3s;
}

.footer label {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    font-family: Arboria-Book;
    transition: 0.3s;
}

.footer .formulario-contactanos .titulo-footer-contactanos {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-family: Arboria-Bold;
    transition: 0.3s;
}

.footer .btn-enviar {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--color-0080bb);
    font-weight: 700;
    background: var(--color-e4e4e4);
    font-family: Arboria-Book;
    transition: 0.3s;
}

.footer .btn-enviar:hover {
    border: 0.5px solid var(--color-ffa714 );
    color: var(--color-ffa714);
    background: #FFFFFF;
}

.footer .btn-enviar:active {
    color: #FFFFFF;
    background: var(--color-ffa714);
}

.footer i {
    color: #fff;
    font-size: 30px;
    line-height: 0;
}

.footer textarea {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 470px) and (max-width: 576px) { /*Extra small*/
    .footer .formulario-contactanos label {
        font-family: Arboria-Light;
        font-size: 19px;
    }
    .footer .formulario-contactanos .titulo-footer-contactanos {
        font-family: Arboria-Light;
        font-size: 25px;
    }

    .footer a {
        font-family: Arboria-Light;
        font-size: 15px;
    }

    .footer p {
        font-family: Arboria-Light;
        font-size: 15px;
    }
}

@media (min-width: 0px) and (max-width: 470px) { /*Extra small*/
    .footer .formulario-contactanos label {
        font-family: Arboria-Light;
        font-size: 13px;
    }

    .footer .formulario-contactanos .titulo-footer-contactanos {
        font-family: Arboria-Light;
        font-size: 25px;
    }

    .footer a {
        font-family: Arboria-Light;
        font-size: 15px;
    }
    .footer p {
        font-family: Arboria-Light;
        font-size: 15px;
    }
}


.footer input::placeholder {
    color: var(--color-0080bb);
    font-family: Arboria-Light;
    font-style: italic;
}

.footer textarea::placeholder {
    color: var(--color-0080bb);
    font-family: Arboria-Light;
    font-weight: lighter;
    font-style: italic;
}


/*--------------------------------------------------------------
# Scroll start top
--------------------------------------------------------------*/
.scrollStartTop {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 10px;
    bottom: -15px;
    z-index: 99999;
    background: #AEAEAD;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scrollStartTop i {
    font-size: 60px;
    color: #fff;
    line-height: 0;
}

.scrollStartTop:hover {
    background: var(--color-4c968c);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.scrollStartTop.active {
    visibility: visible;
    opacity: 1;
    bottom: 5px;
}


@media (min-width: 1400px) {/*XXL-Large*/
    .scrollStartTop {
        right: 10px;
        width: 70px;
        height: 70px;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {/*X-Large*/
    .scrollStartTop {
        right: 10px;
        width: 65px;
        height: 65px;
    }
}

@media (min-width: 576px) and (max-width: 768px) { /*Small*/
    .scrollStartTop {
        right: 10px;
        width: 55px;
        height: 55px;
    }
}

@media (min-width: 0px) and (max-width: 576px) {/*Extra small*/
    .scrollStartTop {
        right: 10px;
        width: 50px;
        height: 50px;
    }
    .scrollStartTop i {
        font-size: 50px;
    }
}
