@charset "utf-8";


    
    /* CSS INDEX */
    .fondo/*TAMBIEN SE USA EN 2INICIARSESION*/
        {
        background-color: #4abdac;
        max-width: 120%;
        height: 120%;
        box-sizing: border-box;
    }

    .iconoapp {
        text-align: center;
        margin-top: 10rem;
        box-sizing: border-box;
    }

    /* TERMINA CSS INDEX */
    /* EMPIEZA CSS 2INICIAR SESION */
    .iconouser {
        text-align: center;
        margin: 5em 0 2em 0;
        padding-top: 10%;
    }
    .formulario {
        text-align: center;
        margin-top: 3em;
    }
    input {
        font-family: 'roboto', sans-serif;
        width: 20em;
        box-sizing: border-box;
        border: 0px solid #ccc;
        color: #a3a3a3;
        margin-bottom: 1rem;
        font-size: 0.8rem;
        padding: 1rem;
        margin: 8px 0;
        border-radius: 1rem
    }

    .iniciarsesion {
        font-family: 'roboto', sans-serif;
        width: 20em;
        background: #f89b43;
        box-sizing: border-box;
        border: 0px solid #ccc;
        color: #fff;
        margin-bottom: 1rem;
        margin: auto;
        padding: 1rem;
        border-radius: 1rem;
        text-align: center;
        font-size: 1rem;


    }


    /* Finalizar producto */
    .finalizarproducto {
        font-family: 'roboto', sans-serif;
        width: 20em;
        background: #f89b43;
        box-sizing: border-box;
        border: 0px solid #ccc;
        color: #fff;
        margin-bottom: 1rem;
        margin: aut;
        padding: 1rem;
        border-radius: 1rem;
        text-align: center;
        font-size: 1rem;


    }

    /* Contacto de boton */
    .contacto {
        font-family: 'roboto', sans-serif;
        width: 20em;
        background: #f89b43;
        box-sizing: border-box;
        border: 0px solid #ccc;
        color: #fff;
        margin-bottom: 1rem;
        margin: auto;
        padding: 1rem;
        border-radius: 1rem;
        text-align: center;
        font-size: 1rem;
        min-height: inherit;
    }

    /* caja contenedora del perfil */
    .card {
        margin: auto;
        padding: 1rem;
        background-color:rgba(123, 190, 175, 0.75); 
    }




    a {
        text-decoration: none;
    }
    .registro {
        margin: auto;
        align-content: center;
        margin-top: 2rem;
        text-align: right;
        color: #fff;
        font-family: 'roboto', sans-serif;
        font-size: 1rem;
    }

    .botonesinicio {
        text-align: center;
        margin-top: 1em
    }

    /* TERMINA CSS 2INICIAR SESION */
    /* EMPIEZA CSS 3INICIO */
    .barra {
        background-color: #4abdac;
        text-align: center;
        font-family: 'roboto', sans-serif;
        color: #fff;
        box-sizing: border-box;
        height: 75px;
        width: auto;
        position: -webkit-sticky;
        /* Safari */
        position: sticky;
        top: 0;
        
z-index: 1000;

    }

    .isologo {
        float: right;
        padding-right: 2%;
        padding-top: 2%;
    }

 body {
    display: block;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.63);

    }


    .menuhamburguesa {
        padding-top: 3%;
        padding-left: 2%;

    }

    .menu {
        font-family: 'roboto', sans-serif;
        background-color: #4abdac;
        z-index: 0;
    }
    #btn-menu {
        display: none;
    }
    header label {
        display: none;
        width: 30px;
        height: 30px;
        padding: 6px;
    }
    header label:hover {
        background-color: rgba(0, 0, 0, 0.3)
    }
    .menu ul {
        list-style: none;
        padding: 0;
        display: flex;

    }
    .menu ul li {
        display: block;
        padding: 15px 20px;
    }

    .menu ul li:hover {
        background-color: rgba(0, 0, 0, 0.3);
    }
    .iconouser {
        margin: 0;
        padding: 0;
        box-sizing: border-box;

    }

    header label {
        display: block;
    }

    .menu {
        position: absolute;
        background-color: #4abdac;
        width: 70%;
        margin-left: -100%;
        float: left;
    }
    .menu ul {
        flex-direction: column;

    }
    #btn-menu:checked ~ .menu {
        margin: 0;
        transition: all 0.5s;
    }
    p {
        margin: 0;
    }


    /*fin menu hamburguesa*/
    
    
    /* video*/
    .videoresponsive {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;

    }

    .videoresponsive iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;

    }



    /*CSS DE BOTONERA MENU */
    .navbar {
        overflow: hidden;
        background-color: #333;
        font-family: 'roboto', sans-serif;
        width: 100%;

    }

    .navbar a {
        float: right;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;

    }
    .dropbtn {
        text-align: center;

    }
    .dropdown {
        float: left;
        overflow: hidden;

    }

    .dropdown .dropbtn {
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }

    .navbar a:hover,
    .dropdown:hover .dropbtn {
        background-color: #f89b43;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

    .dropdown-content a:hover {
        background-color: #333;
        color: #fff;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

main {
    margin:1em
}
    main section h1 {
        text-align: center;
        font-family: 'roboto', sans-serif;
        font-size: 25px;
        color: #333;
    }
    h3 {
        text-align: left;
        font-family: 'roboto', sans-serif;
        font-size: 14px;
        color: #000000;
    }

    p {
        font-family: 'roboto', sans-serif;
        font-size: 14px;
    }


    h1 {
        text-align: center;
        font-family: 'roboto', sans-serif;
        font-size: 22px;
        color: #080808;
    }

    h2 {
        text-align: center;
        font-family: 'roboto', sans-serif;
        font-size: 20px;
        color: #333;

    }


    a h2:hover {
        color: #f89b43;
    }



    h4 {
        text-align: center;
        font-family: 'roboto', sans-serif;
        font-size: 12px;
        color: #080808;
    }

    /* FIN CSS 3INICIO */
    /* INICIO CSS 4MESA */
    /*SLIDER*/
    .slider {
        width: 95%;
        margin: auto;



    }

    .slider ul {
        display: flex;
        padding: 0;
        width: 400%;

        animation: cambio 20s infinite;
        animation-direction: normal;
    }

    .slider li {
        width: 100%;
        list-style: none;

    }

    .slider img {
        width: 100%;
        box-sizing: border-box;
    }


    /* checkbox mesa */
    .container {
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 12px;
        cursor: pointer;
        font-size: 22px;
       
    }

    /* Hide the browser's default radio button */
    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    /* Create a custom radio button */
    .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 25px;
        width: 25px;
        background-color: #eee;
        border-radius: 50%;
    }

    /* On mouse-over, add a grey background color */
    .container:hover input ~ .checkmark {
        background-color: #ccc;
    }

    /* When the radio button is checked, add a blue background */
    .container input:checked ~ .checkmark {
        background-color: #2196F3;
    }

    /* Create the indicator (the dot/circle - hidden when not checked) */
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the indicator (dot/circle) when checked */
    .container input:checked ~ .checkmark:after {
        display: block;
    }

    /* Style the indicator (dot/circle) */
    .container .checkmark:after {
        top: 9px;
        left: 9px;
        width: 8px;
        height: 5px;
        border-radius: 50%;
        background: white;
    }



    /* Empieza galeria*/
        {
        box-sizing: border-box
    }

    /* Slideshow container */
    .slideshow-container {
        max-width: 1px;
        position: relative;
        margin: auto;
    }

    /* Hide the images by default */
    .mySlides {
        display: none;
    }

    /* Next & previous buttons */
    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
    }

    /* Position the "next button" to the right */
    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    /* Caption text */
    .text {
        color: #f2f2f2;
        font-size: 15px;
        padding: 8px 12px;
        position: absolute;
        bottom: 8px;
        width: 100%;
        text-align: center;
    }



    /* The dots/bullets/indicators */
    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active,
    .dot:hover {
        background-color: #717171;
    }

    /* Fading animation */
    .fade {
        -webkit-animation-name: fade;
        -webkit-animation-duration: 1.5s;
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @-webkit-keyframes fade {
        from {
            opacity: .4
        }
        to {
            opacity: 1
        }
    }

    @keyframes fade {
        from {
            opacity: .4
        }
        to {
            opacity: 1
        }
    }

    /* TERMINA galeria*/
    /* contactar un profesional*/
    .card {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        max-width: 300px;
        margin: auto;
        text-align: center;
        font-family: arial;
        background-color:
    }

    .title {
        color: grey;
        font-size: 18px;
    }

    button {
        border: none;
        outline: 0;
        display: inline-block;
        padding: 8px;
        color: white;
        background-color: #000;
        text-align: center;
        cursor: pointer;
        width: 100%;
        font-size: 18px;
    }

    a {
        text-decoration: none;
        font-size: 22px;
        color: black;
    }

    ul li a {
        text-decoration: none;
        font-size: 18px;
        color: black;
    }

    button:hover,
    a:hover {
        opacity: 0.5;
    }
    /* termina 9 contactar un profesional */
    /* contacto*/
        {
        box-sizing: border-box;
    }

    input[type=text],
    select,
    textarea {
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 4px;
        resize: vertical;
    }

    label {

        display: inline-block;
    }

    .container {

        max-width: 100%;
        padding: 5px;
        max-height: auto;
    }
    /* termina hoja de 5 silla */
    .col-25 {
        float: left;
        width: 25%;
        margin-top: 6px;
        font-family: 'roboto', sans-serif;
        font-size: 1.2rem;
    }

    .col-75 {
        float: left;
        width: 100%;
        margin-top: 6px;
    }


    .custom-select {
        font-family: 'roboto', sans-serif;
        background: #f89b43;
        box-sizing: border-box;
        border: 0px solid #ccc;
        color: #fff;
        margin-bottom: 1rem;
        padding: 0.8rem;
        border-radius: 2rem;
        text-align: center;
        font-size: 0.8rem;
        float: left;







        @keyframes cambio {
            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%;
            }
        }
        /* TERMINAR SLIDER*/
    }

    /*    EMPIEZA CSS 11MODIFICANDOMESA
*/
    .verproducto
    /* redes */
    .fa {
        padding: 20px;
        font-size: 30px;
        width: 50px;
        text-align: center;
        text-decoration: none;
        margin: 5px 2px;
    }

    .fa:hover {
        opacity: 0.7;
    }

    .fa-facebook {
        background: #3B5998;
        color: white;
    }



    .fa-android {
        background: #a4c639;
        color: white;
    }

    .enviar {
        font-family: 'roboto', sans-serif;
        background: #f89b43;
        box-sizing: border-box;
        border: 0px solid #ccc;
        color: #fff;
        margin-bottom: 1rem;
        margin: auto;
        padding: 0.7rem;
        border-radius: 1rem;
        text-align: center;
        font-size: 0.8rem;
        float: right;
    }

    /* 10 mi cuenta*/
    .column {
        align-content: center;
        margin-left: 15%;
    }

    .finalizarproducto,
    .verproducto {
        font-family: 'roboto', sans-serif;
        background: #f89b43;
        box-sizing: border-box;
        margin-left: 9%;
        color: #fff;
        border-radius: 1rem;
        font-size: 0.8rem;
        text-align: center
    }

    .column1 {
        align-content: center;
        margin-left: 29%;
    }


        {
        box-sizing: border-box
    }

    .slideshow-container {
        max-width: 1000px;
        position: relative;
        margin: auto;
    }


    .mySlides {
        display: none;
    }


    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
    }


    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }


    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }




@media (max-width:1500px) {
    footer p {
        font-size: 0.6rem;
        margin: 1rem;
        padding-top: 0.2%;
        color: #3d3c3c;