* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    scroll-behavior: smooth;
    /* para que al hacer click baje lentamente*/
}

.contenedor {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.contenedor1 {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 50px 0;
}


/* HEADER */


/* 
.navbar-custom {
    padding: 0px;
}

.navbar-right {
    margin: 0px;
} */

.fondo {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 900px;
    background: url('../img_local/bg6.png');
    background-repeat: repeat-x;
    /* background-position: center;
    background-size: cover; */
    background-size: auto;
    background-position: top;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-attachment: fixed;
}

.transparent {
    background-color: rgba(131, 131, 131, 0.721);
}

.navbar-header {
    height: 50px;
}

.navbar-toggle {
    padding: 5px 15px;
}

.hamburguer {
    font-size: 20px;
}

.navbar a {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
}

@keyframes menu_inicio {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes change_color {
    0% {
        color: #fff;
    }
    100% {
        color: #6cbc1d;
    }
}

.fondo_home {
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-family: 'Yeseva One', cursive;
    font-weight: 700;
    font-style: italic;
    /* font-size: 85px; */
    font-size: 6.8rem;
    color: #333;
    margin-bottom: 25px;
    /* text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.73); */
}

h2 {
    font-family: 'Lato', sans-serif;
    font-variant: small-caps;
    font-weight: 700;
    font-size: 38px;
    color: #6cbc1d;
    /* text-shadow: 3px 3px 2px rgba(45, 43, 43, 0.73); */
    margin-bottom: 20px;
}

.whatsapp a {
    color: #fff;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 25px;
    background: rgba(31, 222, 130, 0.693);
    font-family: 'Lato', sans-serif;
    font-variant: small-caps;
    font-weight: 400;
    font-size: 24px;
    margin-top: 20px;
}

section {
    padding: 0px;
}


/*CURRICULUM*/

.curriculum {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background: #e6e6e6;
}

.cont_cv {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 110px;
}

.subtitulo_bio {
    font-family: 'Yeseva One', cursive;
    font-size: 2.5em;
    color: #6cbc1d;
    padding-bottom: 25px;
}

.subtitulo {
    font-family: 'Yeseva One', cursive;
    font-size: 55px;
    color: #6cbc1d;
    padding-bottom: 25px;
    text-align: center;
}

.subtitulo_review {
    padding-top: 75px;
}

.cont_slider {
    width: 40%;
    margin: auto;
    overflow: hidden;
    margin-right: 25px;
}

.cont_slider ul {
    padding: 0;
    display: flex;
    width: 400%;
    animation: change 15s infinite alternate;
    animation-timing-function: ease-in-out;
}

.cont_slider li {
    width: 100%;
    list-style: none;
}

.cont_slider img {
    width: 100%;
}

@keyframes change {
    0% {
        margin-left: 0;
    }
    20% {
        margin-left: 0;
    }
    25% {
        margin-left: -100%;
    }
    45% {
        margin-left: -100%;
    }
    50% {
        margin-left: -200%;
    }
    70% {
        margin-left: -200%;
    }
    75% {
        margin-left: -300%;
    }
    100% {
        margin-left: -300%;
    }
}

.cv_texto {
    width: 60%;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #363636;
}

.cv_texto>p {
    font-size: 17px;
}

.cv_texto p>a {
    text-decoration: none;
    color: #6cbc1d;
}


/*PORTFOLIO*/

.gallery {
    background: #f2f2f2;
}

.text_gallery {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.text_gallery h3>a {
    text-decoration: none;
    color: #6cbc1d;
}

.contenedor_galeria {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.img_galeria {
    width: 30%;
    display: block;
    margin-bottom: 45px;
    box-shadow: 0 0 6px rgb(0, 0, 0, .3);
    cursor: pointer;
    border-radius: 5px;
    object-fit: cover;
}


/* LIGHTBOX */

.imagen_light {
    position: fixed;
    background: rgb(0, 0, 0, .8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-100%);
    transition: transform .2s ease-in-out;
}

.show {
    transform: translate(0);
    display: flex!important;
}

.agregar_imagen {
    width: 40%;
    transform: scale(0);
    transition: transform .4s .2s;
    /* el segundo valor de tiempo hace referencia al delay*/
    object-fit: cover;
    margin-top: 70px;
}

.showImage {
    transform: scale(1);
}

.close {
    font-size: 35px;
    position: absolute;
    top: 160px;
    right: 520px;
    width: 45px;
    cursor: pointer;
    color: #fff;
    z-index: 101;
    z-index: 9999;
}

.containerImage {
    position: relative;
    width: 30%;
}

.image {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.overlayImage {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #6cbc1d;
    display: block;
    margin-bottom: 45px;
    box-shadow: 0 0 6px rgb(0, 0, 0, .3);
    cursor: pointer;
}

.containerImage:hover .overlayImage {
    opacity: 0.8;
}

.textImage {
    color: white;
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    cursor: pointer;
}

.textOverlayImage {
    color: white;
    font-size: 24px;
    position: absolute;
    top: 20%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    cursor: pointer;
}


/*MENU*/

.menu {
    background: rgb(108, 188, 29);
    background: linear-gradient(47deg, rgba(108, 188, 29, 1) 6%, rgba(47, 170, 3, 1) 100%);
}

.text_menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 85px;
    margin-bottom: 85px;
}

.subtitulo_dos {
    color: #e6e6e6;
    font-family: 'Yeseva One', cursive;
    font-size: 55px;
    padding-bottom: 25px;
}

.text_menu>p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #e6e6e6;
}

.menu_online {
    margin-top: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    border: 2px solid #e6e6e6;
    padding: 10px 15px;
    border-radius: 5px;
}

.menu_online>a {
    text-decoration: none;
    color: #e6e6e6;
}


/*COSTOS Y SERVICIOS*/

.costos {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 75px;
    width: 100%;
    background: #e6e6e6;
}

.sub_servicios {
    padding-top: 75px;
    text-align: center;
}

.servicios>p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #363636;
}

.precios>p {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #363636;
}

.precios>p a {
    color: #6cbc1d;
}

.contenido_precios {
    margin: 50px 0 50px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: no-wrap;
}

.contenido_precios p {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #363636;
    padding-top: 10px;
}

.contenido_precios a {
    color: #6cbc1d;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.precios ul {
    padding: 5px 0;
}

.precios ul li {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #363636;
}


/*COTIZADOR*/

#cotizador {
    padding-bottom: 75px;
}

.cotizador {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.sub_cotizador {
    text-align: center;
    padding-top: 75px;
    padding-bottom: 15px;
}

.cont_cotizador>p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #363636;
    padding-bottom: 25px;
}

.cont_cotizador table td {
    padding: 5px;
}

.cotizar_final {
    width: 40%;
    margin-top: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 400;
    background-color: #ffffff;
    border: 3px solid #6cbc1d;
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 70px;
    margin-left: 90px;
}

.cotizar_final a {
    width: 39%;
    text-decoration: none;
    color: #6cbc1d;
}

.result_cotizador {
    width: 50%;
    margin-left: 40px;
}

.result_cotizador p {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #363636;
    text-decoration: underline;
}

.result_cotizador ul li {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding-bottom: 5px;
}

.result_cotizador ul li a {
    color: #6cbc1d;
}

.errorCotizarTitle {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: rgb(255, 117, 48)!important;
}

.result_cotizador ul li {
    list-style-type: none;
}

.result_cotizador ul li:before {
    font-family: 'FontAwesome';
    content: '\f2e7';
    margin: 0 10px 0 -15px;
}

.result_cotizador .error_list:before {
    content: '\f071';
}

.btn-cotizar {
    width: 90%;
    background-color: #ffffff;
    border: 3px solid #6cbc1d;
    color: #6cbc1d;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 400;
}

.img_cot {
    position: absolute;
    bottom: 4px;
    right: 80px;
}

.selectCotizador {
    background-color: #6cbc1d9c;
    font-size: 22px;
    width: 95%;
    color: #333;
    padding: .3em .2em;
    border: none;
}


/*PAGOS*/

.pagos {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background: rgb(108, 188, 29);
    background: linear-gradient(47deg, rgba(108, 188, 29, 1) 6%, rgba(47, 170, 3, 1) 100%);
    text-align: center;
    padding: 75px 0;
}

.pagos_cont p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #e6e6e6;
    padding-bottom: 10px;
}

.reservas_list a {
    display: inline-block;
    width: 350px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #e6e6e6;
    background-color: #539610;
    text-decoration: none;
    border: 2px solid #e6e6e6;
    padding: 10px 5px;
    border-radius: 10px;
    transition: .6s;
}

.reservas_list a:hover {
    background-color: #40730d;
    color: #e6e6e6;
}


/*REVIEWS*/

.reviews {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 75px;
    width: 100%;
    background: #e6e6e6;
}

.cont_reviews p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #363636;
}

.cont_reviews p a {
    color: #6cbc1d;
}


/*CONTACTO*/

.contact {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 75px;
    width: 100%;
    background: #6cbc1d;
    background: linear-gradient(47deg, rgba(108, 188, 29, 1) 6%, rgba(47, 170, 3, 1) 100%);
    padding-top: 75px;
    text-align: center;
}

.text_contact p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #e6e6e6;
    padding-bottom: 20px;
}

#contactForm {
    text-align: left;
    color: #e6e6e6;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: #e6e6e6;
}

.btn-success {
    background-color: rgb(67, 156, 62);
    transition: .7s;
}

.btn-success:hover {
    background-color: rgb(50, 115, 47);
}


/*FOOTER*/

.cont_footer {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 55px;
    width: 100%;
    background-color: #938f8f
}

.info_footer {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    text-align: center;
    padding-top: 55px;
}

.titulo_foot {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #e6e6e6;
}

.ciudad {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #e6e6e6;
}

.social_media {
    display: flex;
    justify-content: space-evenly;
}

.social_media a {
    font-size: 35px;
    color: #e6e6e6;
    transition: .7s;
}

.social_media a:hover {
    color: #7edf1d;
}

.devs {
    font-family: 'Quantico', sans-serif;
    font-size: 25px;
    color: #e6e6e6;
}

.data_fiscal {
    padding-top: 250px;
    padding-left: 60px;
}

.data_fiscal p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #5b5a5a
}


/*RESPONSIVE*/

@media all and (min-width:850px) and (max-width:1023px) {
    .fondo {
        background: url(../img_local/bg6_1500.png);
        height: 850px;
        background-size: auto;
        background-position: top;
        background-repeat: repeat-x;
    }
    h1 {
        font-size: 5.5rem;
    }
    h2 {
        font-size: 30px;
    }
    /*CURRICULUM*/
    .cont_cv {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 110px;
    }
    .subtitulo_bio {
        font-size: 2em;
    }
    .subtitulo {
        font-size: 34px;
    }
    .cont_cv img {
        width: 100%;
    }
    .cont_slider {
        width: 60%;
        margin: auto;
    }
    .cv_texto {
        width: 75%;
        padding-bottom: 50px;
    }
    /*PORTFOLIO*/
    .containerImage {
        width: 45%;
    }
    /* LIGHTBOX */
    .agregar_imagen {
        width: 70%;
    }
    /*COSTOS Y SERVICIOS*/
    .contenido_precios {
        flex-direction: column;
        text-align: left;
    }
    .contenido_precios p {
        font-size: 25px;
    }
    .contenido_precios a {
        font-size: 22px;
    }
    .precios ul li {
        font-size: 20px;
    }
    /*COTIZADOR*/
    .cotizador {
        width: 70%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-left: auto;
        margin-right: auto;
    }
    .sub_cotizador {
        text-align: center;
        padding-top: 75px;
    }
    /*FOOTER*/
    .info_footer {
        flex-direction: column;
        align-items: center;
    }
    .info_footer>div {
        padding-bottom: 25px;
    }
}

@media all and (max-width:850px) {
    .fondo {
        height: 746px;
        background-image: url(../img_local/bg6v_800.png);
        background-size: auto;
        background-position: top;
        background-repeat: repeat-x;
    }
    .nav {
        padding: 0 10px;
    }
    .nav .enlaces_header a {
        margin: 0 0 0 0px;
        font-size: 25px;
    }
    .enlaces_header {
        margin-top: 0px;
    }
    .enlaces_header {
        /*para que el menu nav sea responsive celular*/
        top: 0;
        right: 0;
        padding: 50px 0 10px 35px;
        width: 100%;
        height: 40vh;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: space-evenly;
        position: fixed;
        clip-path: inset(0 0 100% 0);
        background: #333;
        /* fallback for old browsers */
        transition: clip-path .7s ease-in-out;
    }
    .nav .menudos {
        clip-path: inset(0 0 0 0);
    }
    h1 {
        font-size: 5.5rem;
    }
    h2 {
        font-size: 25px;
    }
    /*CURRICULUM*/
    .cont_cv {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 110px;
    }
    .cont_cv img {
        width: 100%;
    }
    .cont_slider {
        width: 65%;
        margin-right: 15%;
    }
    .subtitulo_bio {
        font-size: 2em;
    }
    .subtitulo {
        font-size: 34px;
    }
    .cv_texto {
        width: 75%;
        padding-bottom: 50px;
    }
    /*PORTFOLIO*/
    .containerImage {
        width: 45%;
    }
    /* LIGHTBOX */
    .agregar_imagen {
        width: 70%;
    }
    /*COTIZACION*/
    .cotizador {
        flex-direction: column;
        align-items: center;
    }
    .result_cotizador {
        padding-top: 35px;
        font-size: 16px;
        width: 100%;
    }
    .img_cot {
        position: absolute;
        bottom: -2px;
        right: 4px;
    }
    .img_cot {
        display: none;
    }
    /*COSTOS Y SERVICIOS*/
    .contenido_precios {
        flex-direction: column;
        text-align: left;
    }
    .contenido_precios p {
        font-size: 25px;
    }
    .contenido_precios a {
        font-size: 22px;
    }
    .precios ul li {
        font-size: 18px;
    }
    /*FOOTER*/
    .info_footer {
        flex-direction: column;
        align-items: center;
    }
    .info_footer>div {
        padding-bottom: 25px;
    }
}