:root {
    --primario: #e87424;
    --secundario: #515252;
    --terciario: #f1f1f1;
    --claro: #e2e2e2;
    --oscuro: #2c2c2c;
    --texto: #ffffff;
    --texto2: #000000;
    --fondo: #ffffff;
}
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


/* ============ GENERALES ============ */
/* @font-face {
    font-family: 'Vigeny';
    src: url(../fonts/Vigeny.ttf);
    font-display: swap;
} */
html {
    min-height: 100%;
    max-width: 100%;
}
body {
    max-width: 100%;
    min-height: 100%;
    color: var(--texto2);
    font-size: 1rem;
    font-weight: 400;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--texto2);
    /* background-image: url('../img/loader.gif'); */
    font-family: 'Rubik', sans-serif;
}
.alinearVertical{
    margin: auto 0px!important;
}
.alinearHorizontal{
    margin: 0 auto!important;
}
.sombra{
    -webkit-box-shadow: 10px 10px 5px 0px rgba(24, 24, 24, 0.30);
    -moz-box-shadow: 10px 10px 5px 0px rgba(24, 24, 24, 0.30);
    box-shadow: 10px 10px 5px 0px rgba(24, 24, 24, 0.30);
}
.bordesRedondos{
    border-radius: 10px!important;
}
/* =================================== */


/* ============== TEXTOS ============= */
    a {
        text-decoration: none!important;
        color: var(--texto2);
        transition: all 200ms;
    }
    a:hover {
        color: var(--texto2);
    }
    hr{
        background-color: #f8f8f8;
    } 
    p{
        font-size: 1rem;
        font-weight: 300;
    }
    ol li {
        font-size: 1rem;
    }
    
    b{
        font-weight: 800!important;
        /* color: #000; */
    }

    /* --- ALERTS --- */
    .alert-info {
        background-color: #f7f7f7;
        color: var(--texto2);
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
    .alert-info a{
        color: var(--texto2)!important;
    }
    /* ------ */
    .baitsTxt{
        color: teal;
    }
    .baitsTxt:hover{
        color: rgb(12, 196, 196);
    }
/* =================================== */


/* ============= BOTONES ============= */
/* Icono WhatsApp */
.flotante {
    display:scroll;
    position:fixed;
    z-index: 10;
    bottom:20px;
    right:5px;
}
.flotante img {
    width: 60px;
}
.img-flecha{
    max-width: 30px;
}
@media (min-width: 768px) {
    .flotante {
        right:10px;
        bottom:300px;
    }
}


/* Botones primario y secundario */
.btn-primary {
    background-color: rgba(255, 255, 255, 0)!important;
    color: var(--secundario)!important;
    border: solid 3px var(--primario)!important;
    border-radius: 5px;
    font-size: .9rem;
    text-transform: uppercase;
    font-weight: 400;
}
@media(min-width: 768px){
    .btn-primary {
        transition: all 300ms ease-out;
    }
    .btn-primary:hover,
    .btn-primary:focus {
        background-color: var(--secundario)!important;
        color: var(--texto)!important;
        border-color: var(--primario)!important;
        }
}
.btn.btn-primary:disabled{
    border-color: var(--terciario)!important;
}
.btn-secondary {
    padding: 15px 30px;
    background-color: transparent;
    color: var(--claro)!important;
    border: solid 3px var(--claro)!important;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
}
@media(min-width: 768px){
    .btn-secondary {
        transition: all 300ms ease-out;
    }
    .btn-secondary:hover,
    .btn-secondary:focus {
        background-color: var(--secundario)!important;
        color: var(--texto)!important;
        border-color: var(--oscuro)!important;
        }
}
.btn.btn-secondary:disabled{
    border-color: var(--terciario)!important;
}
/* =================================== */


/* =========== ANIMACIONES =========== */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.fast {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    animation-name: fadeIn;
}
/* =================================== */


/* ============== NAVBAR ============= */
/* NAVEGACION */
.navegacion-scroll {
    background-color: var(--primario);
    /* background-color: transparent!important; */
    padding: 12px 0px;
    box-shadow: rgba(0, 0, 0, 0.507) 0px 0px 10px 0px;
}

.navegacion-fija {
    /* background-color: rgba(22, 22, 22, 0.466); */
    position: fixed;
    margin-top: 0px;
    width: 100%;
    z-index: 100;
    transition: all .5s ease;
}
@media(min-width: 768px){
    .navegacion-fija {
        background-color: transparent;
    }
}

.navegacion-fija.activo{
    opacity: 0;
    margin-top: -400px;
}

.navbar-toggler {
    background-color: rgba(0, 0, 0, 0.253);
    font-size: .8rem;
    padding: .25rem .70rem;
    line-height: 1;
    border-radius: .35rem;
}
.navbar-light .navbar-toggler {
    background-color: var(--texto);
    font-size: .8rem;
}

.navbar-light .navbar-brand,
.navbar-light .navbar-brand:hover {
    color: var(--texto)!important;
}
.menu-toggle {
    height: 25px!important;
    width: 20px!important;
}
.menu-toggle i, .menu-toggle i::after, .menu-toggle i::before {
    height: 2px;
    width: 20px!important;
    background: var(--texto)!important;
}

.menuResponsive{
    align-content: center;
}
.nav-link {
    text-transform: uppercase;
    border-radius: 8px;
    color: var(--secundario);
    background-color: rgb(255, 255, 255);
    font-size: 1rem;
    padding: 5px 0;
    margin: 5px 20px;
    width: 70%;
    display: inline!important;
}

.active {
    color: var(--primario)!important;
    font-weight: 500;
}
.nav-cita {
    border: solid 2px;
    border-color: var(--secundario);
    color: var(--secundario)!important;
    border-radius: 16px;
    padding: 4px 20px;
}
.dropdown-menu{
    min-width: 6rem;
}
#dropdownMenuLink{
    font-size: .7rem!important;
}

@media (min-width: 768px) {
    .navegacion-scroll {
        background-color: var(--primario);
        padding: 12px 16;
    }
    .navegacion-fija {
        /* background-color: rgba(22, 22, 22, 0.466); */
        position: fixed;
        margin-top: 0px;
        width: 100%;
        z-index: 100;
        transition: all .5s ease;
    }
    #dropdownMenuLink{
        font-size: .8rem!important;
    }
    .nav-link {
        color: var(--secundario);
        background-color: rgba(255, 255, 255, 0);
        font-size: .8rem;
        width: auto;
        padding: 5px;
        margin: auto 30px;
        transition: all .3s ease-in-out;
    }
    .nav-link:hover {
        color: var(--primario);
    }
    .active {
        color: var(--primario)!important;
        font-weight: 600;
    }
}

.logo-nav {
    height: 4rem;
}
.logo-nav-scroll {
    height: 1.9rem;
}

@media (min-width: 768px) {
    .logo-nav {
        min-height: 5rem;
    }
    .logo-nav-scroll {
        min-height: 2.5rem;
    }
    .navbar-expand-md {
        flex-flow: column;
    }
}

.header-scroll {
    opacity: 0;
    position: fixed;
    margin-top: -300px;
    width: 100%;
    z-index: 100;
    transition: all .5s ease;
}

.header-scroll.activo {
    margin-top: 0;
    opacity: 1;
}
.navbar-brand {
    margin-right: 0rem!important;
}
        
/* BOTON MENU RESPONSIVE ANIMADO */
.menu-toggle {
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  margin: 3px auto;
    width: 28px;
}
.menu-toggle:hover {
    color: var(--texto2);
}
.menu-toggle i,
.menu-toggle i:after,
.menu-toggle i:before {
    display: block;
    position: absolute;
    height: 2px;
    width: 35px;
    right: 0;
    background: var(--texto2);
    border-radius: 2px;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.menu-toggle i:after,
.menu-toggle i:before {
    content: '';
}
.menu-toggle i:after {
    top: -20px;
}
.menu-toggle i:before {
    top: -10px;
}
.menu-toggle i {
    top: 21px;
}
/* .menu-toggle.open i{
    top: 32px;
}
.menu-toggle.open i:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -22px;
}
.menu-toggle.open i:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -22px;
} */
.btnHamburguesaSite{
    padding-right: 0px;
}
@media(min-width: 414px){
    .btnHamburguesaSite{
        padding-right: 5px;
    }
}
/* =================================== */


/* ============= HEADER ============== */
.encabezado_landing{
    background-position-y: top!important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    /* background-size: none!important; */
    /* background-attachment: fixed !important; */
    height: 100vh!important;
    text-align: center;
    color: var(--secundario)!important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

@media (min-width: 360px){
    .encabezado_landing {
        height: 100vh!important;
    }
}
@media (min-width: 375px){
    .encabezado_landing {
        height: 100vh!important;
    }
}
@media(min-width: 375px) and (min-height:812px){
    .encabezado_landing {
        height: 100vh!important;
    }
}
@media (min-width: 414px){
    .encabezado_landing {
        height: 100vh!important;
    }
}
@media (min-width: 768px){
    .encabezado_landing {
        background-size: cover!important;
        height: 90vh!important;
        background-attachment: none!important;
    }
}
@media (min-width: 1200px){
    .encabezado_landing {
        background-size: cover!important;
        height: 90vh;
    }
}
@media (min-width: 1920px){
    .encabezado_landing {
        background-size: cover!important;
        height: 80vh;
    }
}
@media (min-width: 3840px){
    .encabezado_landing {
        background-size: cover!important;
        height: 70vh;
    }
}
@media (max-height: 600px){
    .encabezado_landing {
        height: 100vh!important;
    }
}

/* =================================== */

/* ============== FOOTER ============= */
.footer {
    /* border-top: #02b7ff solid 2px; */
    background-color: var(--texto2);
    color: var(--claro);
}

/* .copyright p {
    font-size: 1rem!important;
    color: var(--secundario);
    font-weight: 300!important;
} */

/* RECAPTCHA */
.g-recaptcha, #rc-imageselect {
    -webkit-transform: scale(0.84);
    -moz-transform:    scale(0.84);
    -ms-transform:     scale(0.84);
    -o-transform:      scale(0.84);
    transform:         scale(0.84);

    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
}
@media (min-width: 768px) {
    .g-recaptcha, #rc-imageselect {
        transform: scale(0.95);
        transform-origin: 0 0;
    }
}
/* =================================== */



/* ================================= ESTILOS DE PÁGINA =================================== */
/* GENERALES */
.fondoBlanco{
    background-color: var(--fondo);
}
.fondoNaranja{
    background-color: var(--primario);
}
.fondoGris{
    background-color: var(--secundario);
}
h2{
    color: var(--primario);
    font-weight: 800;
    font-size: 1.8rem;
}

/* NAVEGACIÓN */
.nav{
    background-color: white;
    border-radius: 5px;
    padding: auto 20px!important;
}

/* HEADER */
.infoHeader{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.imgHeader{
    width: 150px;
}
.encabezado_landing h1{
    text-transform: uppercase;
}

/* SECCION 2 */
.fondoSec2{
    background-image: url("../img/varios/fondoSec2.png");
    background-position: center;
    background-size: cover;
    border: solid 5px var(--primario);
}
.textoSec2 p{
    color: var(--primario);
}
.imgFormSec2{
    padding-top: 35px;
    width: 50%;
}
@media (min-width: 768px) {
    .imgFormSec2{
        padding-top: 45px;
        width: 30%;
    }
}

/* SECCION 3 */
.fondoSec3{
    background-image: url("../img/varios/fondoSec3.png");
    background-position: center;
    background-size: cover;
}
.fondoSec3 img{
    width: 80%;
    position: relative;
    z-index: 2;
}
.imgTrabajador{
    display: none;
    width: 90%;
    position: absolute;
    bottom: 0px!important;
    left: 40px!important;
    z-index: 1;
}
@media (min-width: 768px) {
    .fondoSec3 img{
        width: 30%;
    }
    .imgTrabajador{
        display: block;
        top: -50px;
        left: -150px!important;
    }
}
#contact-form1{
    position: relative;
    z-index: 2;
}
.labelForm{
    padding-left: 25px;
    color: var(--texto);
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1px;
}

/* SECCION 4 */
.fondoSec4{
    background-image: url("../img/varios/fondoSec4.png");
    background-position: center;
    background-size: cover;
    border-bottom: solid 5px var(--primario);
    border-top: solid 10px var(--secundario);
}
.txtSec4 p{
    color: var(--primario);
    font-weight: 400;
}

/* SECCIÓN 5 */
.tituloSec5{
    display: flex;
}
.tituloSec5 img{
    height: 35px;
}
.txtSec5 p{
    color: var(--primario)
}

/* ======================================================================================= */



/* ================== ADICIONALES =================== */


/* ============= MODALES ============= */
.modal-body {
    /* background-color: #232627; */
    color: var(--texto2);
    background-color:var(--texto);
}

.modal-header {
    background-color: var(--primario);
    margin-bottom: 0px!important;
}

.modal-title {
    color: var(--texto);
    margin-bottom: 0px;
    position: relative;
    font-size: 1.5rem!important;
}

button.close span {
    color: #c91902;
}

.vertical-alignment-helper {
    display:table;
    height: 90%;
    width: 72%;
    margin: 0 auto;
    pointer-events:none; /* This makes sure that we can still click outside of the modal to close it */
}

@media (max-width: 768px) {
.vertical-alignment-helper {
    width: 92%;
}
.modalProds .vertical-alignment-helper {
    width: 92%;
}
.g-recaptcha, #rc-imageselect {
    transform: scale(0.84);
    transform-origin: 0 0;
}
}

.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
    pointer-events:none;
}
.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width:inherit;
    height:inherit;
    /* To center horizontally */
    margin: 0 auto;
    pointer-events: all;
}
/* =================================== */


/* ============= RADIO/CHECK BOX ============== */
.custom-control-label{
    font-size: 1rem;
    font-weight: 300;
    padding-top: 3px;
}
.custom-control-label b{
    font-size: 1rem;
    font-weight: 500;
    color: var(--primario)!important;
}
.custom-control-label::before,   
.custom-control-label::after {  
    width: 1rem;  
    height: 1rem;  
}  
.custom-control-label:before{
    background-color: var(--primario);
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before{
    background-color: var(--secundario);
    border-color: #e2e2e2;
}

input[type='radio']:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #ffa500;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}
/* =============================================== */