*, *:after, *:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: sans-serif;

}

body{
    background: black;

}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #e8e8e8;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #e8e8e8;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #e8e8e8;
}
/*CARGA*/

#contenedor_carga{
    background-color: black;
    height: 100%;
    width: 100%;
    position: fixed;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10000;

}
#subcontenedor_carga{
    position: relative;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    padding: auto;

}
#subcontenedor_carga h1{
    position: relative;
    color: #e8e8e8;
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
    font-family: 'Rationale', sans-serif;
    letter-spacing: 1px;



}
#contenedor_carga img{
    position: relative;
    margin-bottom: 65px;
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
}
#carga{
    border: 10px solid #e8e8e8;
    border-top-color: #8822A1;
    border-top-style: groove;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;

    -webkit-animation: giro 1.5s linear infinite;
    -o-animation: giro 1.5s linear infinite;
    animation: giro 1.5s linear infinite;

}

@keyframes giro{
    from{transform: rotate(0deg);}
    to{transform: rotate(360deg);}
}

@media screen and (max-width: 736px) {
    #contenedor_carga{

    }
    #subcontenedor_carga{


    }
    #subcontenedor_carga h1{
        font-size: 20px;
    }
    #contenedor_carga img{
        width: 70%;
    }
    #carga{

        width: 70px;
        height: 70px;
    }
}

@media screen and (max-width: 480px) {
    #contenedor_carga{

    }
    #subcontenedor_carga{


    }
    #subcontenedor_carga h1{
        margin-bottom: 10px;
        font-size: 16px;
    }
    #contenedor_carga img{
        margin-bottom: 20px;
        width: 90%;
    }
    #carga{


    }
}
/*FIN CARGA*/

/*-------------------HEADER-------------------*/
.contenedor-header{
    height: 60px;
    width: 100%;
    background: rgba(0,0,0,0.8);
    position: fixed;
    z-index: 1000;
    border-bottom: solid 2px #e8e8e8;



}
header {
    height: 60px;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: auto;
    z-index: 1000;

}
#btn-menu{
    display: none;
}
header label {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

#menu ul{
    display: flex;
    list-style: none;


}

#menu ul ul{
    display: none;
}
#menu a {
    display: block;
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Rationale', sans-serif;
    font-size: 25px;
    padding-top: 15px;
    padding-bottom: 12px;
    margin: 15px;

}

#menu a:hover{
    text-shadow: 0px 5px 30px #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: -3px;
    cursor: pointer;
}
.ancla:hover{
    cursor: pointer;
}
#menu a span{
    margin-left: -3px;
}

#menu ul li:hover ul{
    display: block;
    position: absolute;
}

#contenedor-logo{
    align-items: center;
    display: flex;
    font-size: 13px;
    color: #e8e8e8;
}
#contenedor-logo a{

    text-decoration: none;
    color: #e8e8e8;
    text-transform: uppercase;

}
#contenedor-logo h2{
    font-family: 'Rationale', sans-serif;
    font-size: 24px;
}
header img{
    width: 40px;
    height: 40px;
    margin: 10px;
}


/*-------------------HEADER-------------------*/
@media (max-width: 480px){
    /*-------------------HEADER-------------------*/

    #menu ul a{
        text-transform: capitalize;
    }
    #contenedor-logo h2{
        font-size: 19px;
    }
}
@media (max-width: 1100px){
    header label{
        display: block;
        margin-right: 10px;
        color: #e8e8e8;
    }
    .contenedor-header{
        position: fixed;
    }
    #contenedor-logo h2{
        text-align: center;
    }
    #menu{
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        transform: translateY(-100%);
        transition: all 0.3s;
        z-index: -9999999;
        background: rgba(0,0,0,0.8);
    }

    #menu ul{
        flex-direction: column;
    }
    #menu ul li:hover ul{
        display: none;
        position: static;
    }
    #menu a span{
        position: absolute;
        right: 5px;
    }

    #btn-menu:checked ~ #menu{
        transform: translateY(0%);
        top: 60px;
    }


    #menu ul a{
        color: #e8e8e8;
        font-weight: 300;
        text-transform: capitalize;

    }

    #menu a {
        display: block;
        color: #e8e8e8;
        text-decoration: none;
        font-weight: 700;

        text-transform: uppercase;
        font-family: 'Rationale', sans-serif;
        font-size: 25px;
        margin:0;
        margin-bottom: 3px;
        padding: 15px;

    }
    #menu a:hover{
        text-shadow: 0px 5px 30px #e8e8e8;
        border-bottom: 3px solid #e8e8e8;
        margin-bottom: -0px;
    }

}
/*-------------------HEADER-------------------*/
.titulos-secciones{ 
    position: relative;
    text-align: center;
    color: #e8e8e8;
    margin-bottom: 30px;
    font-family: 'Rationale', sans-serif;
    font-size: 75px;
    margin-top: 0px;
    z-index: 1000;
    text-shadow:  0px 0px 10px #000;
    width: 100%;
    text-transform: uppercase;

}


@media screen and (max-width: 736px) {
    .titulos-secciones{
        margin-top: 0px;
        font-size: 50px;
    }
}

@media screen and (max-width: 480px) {
    .titulos-secciones{
        font-size: 40px;
    }
}

/*BANNER*/
#banner{
    position: relative;
    background: black;

    margin: auto;
    padding-top: 100px;
    background-image: url(../img/fondos/fondo-7-prueba.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat:   no-repeat;
    background-position: center center;
    z-index: 0;
    height: 1100px;

}
#contenedor-banner{
    position: relative;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    padding: 0;


}

#letra-logo{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;

    margin-top: 0px;

}
#img-logo-banner{
    position: relative;

    width: 100%;
    max-width: 300px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    margin-bottom: 50px;
}

#banner h3{
    text-align: center;
    position: relative;
    font-family: 'Roboto', sans-serif;
    color: #e8e8e8;
    letter-spacing: 25px;
    font-size: 45px;
    padding-left: 25px;
    box-sizing: border-box;


}


@media screen and (max-width: 736px) {
    #banner{
        background-attachment:inherit;
        background-size:cover;
        background-position: center top;
        padding-left: 0;
        padding-right: 0;

    }

    #img-logo-banner{
        max-width: 180px;
        margin-top: 100px;
        margin-bottom: 100px;
    }


    #banner h3{
        font-size: 28px;
    }
}


@media screen and (max-width: 480px) {
    #banner{
        height: 640px;


    }
    #letra-logo{
        width: 90%;
    }
    #img-logo-banner{
        max-width: 120px;
        margin-top: 80px;
        margin-bottom: 80px;
    }
    #contenedor-banner{
        top: 30px;
    }
    #banner h3{
        font-size: 17px;


    }

}
@media screen and (max-width: 270px) {
    #banner h3{
        font-size: 13px;        
    }
}

/*FIN BANNER*/

/*ESTUDIO*/
#contenedor-estudio{
    height: 100%;
}
#estudio{
    position: relative;
    background-image: url(../img/fondos/fondeu1.jpg);
    background-size: cover;
    padding: 80px;    
    z-index: 0;
    color: #e8e8e8;
    background-attachment: fixed;
    background-repeat:   no-repeat;
    background-position: center center;

}
.overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.4);
}
#estudio h4{
    position: relative;
    text-align: center;
    font-size: 25px;
    top: 0px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-shadow:  0px 0px 1px #000;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.2px;
    max-width: 1100px;

}

#nosotros{
    position: relative;
    top: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 80px;
}
.img-redonda{
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    border: 3px solid rgba(0,0,0,0.5);
    margin: 50px;
    box-shadow:  0px 0px 30px #000;
}
#contenedor-estudio h3{
    position: relative;
    text-align: center;
    margin-top: 80px;
    font-family: 'Rationale', sans-serif;
    font-size: 60px;
    text-shadow:  0px 0px 1px #000;

}
#nosotros h5{
    text-align: center;
    font-family: 'Rationale', sans-serif;
    font-size: 40px;
    text-shadow:  0px 0px 1px #000;
}
.contenedor-social a p{
    position: relative;

    text-align: center;
    font-family: 'Rationale', sans-serif;
    font-size: 28px;
    text-shadow:  0px 0px 1px #000;
    color: #e8e8e8;
    margin-top: 20px;
}

#nosotros a{
    text-align: center;
    font-family: 'Francois One', sans-serif;
    font-size: 18px;
    text-shadow:  0px 0px 1px #000;
    color: #e8e8e8;

}
.imgsocial{
    position: relative;
    height: 30px;
    margin-right: 10px;
    padding: 0;
    top: 5px;

}
#link_santiago p{
    margin-top: 20px;
    font-size: 20px;
    text-decoration: underline;
    font-family: 'Francois One', sans-serif;
    filter: opacity(0.9);
}

#nosotros article{
    text-align: center;
    justify-content: center;

}

@media screen and (max-width: 736px) {
    #estudio{
        padding: 80px;
    }
    #estudio h4{

        width: 100%;


    }
    .contenedor-social a p{
        font-size: 30px;
        margin: 10px;
    }
    #contenedor-estudio h3{
        margin-top: 50px;
        font-size: 40px;
    }
    #nosotros h5{
        font-size: 26px;
    }
    .img-redonda{
        margin-bottom: 20px;
    }
    #nosotros{
        margin-top: 0;
        top: 0;
    }

}
@media screen and (max-width: 480px) {
    #estudio{


        background-attachment:inherit;
        background-size:cover;
        padding-left: 0;
        padding-right: 0;
        padding-top: 80px;

    }
    #estudio h4{
        top: 0px;
        font-size: 15px;
        width: 90%;
    }
    #nosotros h5{
        font-size: 29px;
    }
    #contenedor-estudio h3{
        font-size: 40px;
    }

    .img-redonda{
        width: 100px;
        height: 100px;
    }
    .imgsocial{
        height: 20px;


    }
    .contenedor-social a p{
        font-size: 25px;
        margin: 10px;
    }
    #link_santiago p{
        font-size: 19px;
    }
    article{
        margin-bottom: 0px;
    }
}


/*FIN ESTUDIO*/

/*ASESORAMIENTO*/
#asesoramiento{
    position: relative;
    background-image: url(../img/fondos/fondo-4-prueba.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat:   no-repeat;
    background-position: center center;
    margin: auto;
    padding-top: 80px;    
    padding-bottom: 80px;
    z-index: 0;
    color: #e8e8e8;

}
#asesoramiento h4{
    position: relative;
    text-align: center;
    font-size: 25px;
    top: 0px;
    width: 85%;
    text-shadow:  0px 0px 1px #000;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.2px;
    margin: auto;
    max-width: 1100px;


}
#contenedor-asesoramiento h4 a{
    color: #e8e8e8;
    font-size: 45px;
    font-family: 'Rationale', sans-serif;

}
@media screen and (max-width: 480px) {
    #asesoramiento{


        background-attachment:inherit;
        background-size:cover;
        background-position: center top;


    }
    #asesoramiento h4{
        font-size: 15px;
        width: 90%;
    }
    #contenedor-asesoramiento h4 a{
        color: #e8e8e8;
        font-size: 19px;

    }
}
/*FIN SESORAMIENTO*/

/*EQUIPAMIENTO*/
#equipamiento{
    position: relative;
    background-image: url(../img/fondos/fondo-3-prueba.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat:   no-repeat;
    background-position: center center;
    margin: auto;
    padding-top: 80px;    
    padding-bottom: 80px;   
    z-index: 0;
    color: #e8e8e8;

}
#contenedor-equipamiento{
    position: relative;

}
#equipamiento h4{
    position: relative;
    text-align: center;
    font-size: 25px;   
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
    text-shadow:  0px 0px 1px #000;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.2px;
    margin-top: 100px;
    max-width: 1100px;

}
#btn_equipamiento {
    position: relative;
    margin-top: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rationale', sans-serif;
    background: rgba(0,0,0,0.5);

    -webkit-border-radius: 1;
    -moz-border-radius: 1;
    border-radius: 1px;
    color: #e8e8e8;
    font-size: 30px;
    padding: 20px 25px 20px 25px;

}

#btn_equipamiento:hover {
    background: rgba(0,0,0,0.8);
    text-decoration: none;
    cursor: pointer;
    box-shadow:  0px 0px 15px #e8e8e8;
}
@media screen and (max-width: 480px) {
    #equipamiento{

        background-image: url(../img/fondos/fondo-3-prueba.jpg);
        background-attachment:inherit;
        background-size:cover;
        background-position: center top;
        padding-bottom: 50px;


    }
    #equipamiento h2{
        position: relative;

    }
    #equipamiento h4{
        position: relative;
        width: 90%;

        font-size: 15px;
        margin: 0;

    }
    #btn_equipamiento {
        margin-top: 40px;
        font-size: 15px;
        padding: 10px 15px 10px 15px;



    }
}
/*FIN EQUIPAMIENTO*/

/*GALERIA*/

#galeria{
    position: relative;
    background-image: none;
    background: rgba(61,9,0,1);
    background: -moz-linear-gradient(top, rgba(61,9,0,1) 0%, rgba(158,11,11,1) 40%, rgba(158,11,11,1) 60%, rgba(61,9,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(61,9,0,1)), color-stop(40%, rgba(158,11,11,1)), color-stop(60%, rgba(158,11,11,1)), color-stop(100%, rgba(61,9,0,1)));
    background: -webkit-linear-gradient(top, rgba(61,9,0,1) 0%, rgba(158,11,11,1) 40%, rgba(158,11,11,1) 60%, rgba(61,9,0,1) 100%);
    background: -o-linear-gradient(top, rgba(61,9,0,1) 0%, rgba(158,11,11,1) 40%, rgba(158,11,11,1) 60%, rgba(61,9,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(61,9,0,1) 0%, rgba(158,11,11,1) 40%, rgba(158,11,11,1) 60%, rgba(61,9,0,1) 100%);
    background: linear-gradient(to bottom, rgba(61,9,0,1) 0%, rgba(158,11,11,1) 40%, rgba(158,11,11,1) 60%, rgba(61,9,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3d0900', endColorstr='#3d0900', GradientType=0 );
    background-attachment: fixed;
    background-repeat:   no-repeat;
    background-position: center center;



    margin: auto;
    padding-top: 80px;  
    padding-bottom: 80px;
    z-index: 0;
    color: #e8e8e8;

}
#contenedor-galeria{
    position: relative;
    align-content: center;
    text-align: center;
    width: 100%;

}
.galeria img{
    display: block;
    width: 100%;
    height: 100%;
    border: solid 3px black;
    object-fit: cover;
    transform:scale(1);
    -ms-transform:scale(1); 
    -moz-transform:scale(1); 
    -webkit-transform:scale(1); 
    -o-transform:scale(1); 
    -webkit-transition: all 200ms ease-in-out; 
    -moz-transition: all 200ms ease-in-out; 
    -ms-transition: all 200ms ease-in-out; 
    -o-transition: all 200ms ease-in-out; 
}


.galeria{
    background: rgba(0, 0, 0,0.6);
    padding: 3px;
}
.galeria img:hover{
    /*
    transform:scale(1.03);
    -ms-transform:scale(1.03); // IE 9 
    -moz-transform:scale(1.03); // Firefox 
    -webkit-transform:scale(1.03); // Safari and Chrome 
    -o-transform:scale(1.03); // */


}

.overlay-galeria{
    position: absolute;
    height: 100%;
    width: 99%;

    z-index: 1000;
    background: black;
    filter: opacity(0);
}
.overlay-galeria p{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    filter: opacity(1);
    color: white;
    font-family: 'Rationale', sans-serif;
    font-size: 40px;

}
.overlay-galeria:hover{
    position: absolute;
    z-index: 1000;
    filter: opacity(0.7);
}
.small, .normal, .large{
    position: relative;
    padding: 4px;
}
/*MODAL GALERIA*/

.remodal img{
    position: relative;
    width: 100%;
    left: 50%;
    transform: translateX(-50.5%);
}
.remodal button{
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);

}
@media screen and (max-width: 736px) {
    .remodal img{
        position: relative;
        width: 100%;
    }
}
/*FIN MODAL GALERIA*/

@media screen and (min-width: 480px) {
    #galeria{
        background-image: url(../img/fondos/fondo-6-prueba.jpg);
        background-size: cover;
        background-attachment: fixed;
        background-repeat:   no-repeat;
        background-position: center center;
    }
    .galeria img{
        border: solid 0px black;
        margin: 0;
    }
    .galeria{
        width: 95%;
        margin: auto;
        padding: 1px;
    }

    .fila{
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
    }
    .columna-1-3{
        width: 33.33%;
    }
    .columna-2-3{
        width:66.67%;
    }
    .small{
        height: 100px;
    }
    .normal, .large{
        height: 200px;
    }
    .columna-50{
        width: 50%;
    }
}

@media screen and (min-width: 768px) {
    .galeria{
        width: 750px;
        padding: 3px;
    }
    .small{
        height: 150px;
    }
    .normal, .large{
        height: 300px;
    }
    .galeria img{
        border: solid 3px black;
    }
}

@media screen and (min-width: 1024px) {

    .galeria{
        width: 85%;
    }
    .small{
        height: 300px;
    }
    .normal, .large{
        height: 600px;
    }
}



/*FIN GALERIA*/



/*MODAL*/
.modal{
    display: none; 

}

.modal:target{
    display: block;
    position: fixed;
    background: rgba(0,0,0,0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;

}

#contenedor_modal{
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1300px;
}

.imagen_galeria{
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}
.imagen_galeria a{
    color: #e8e8e8;
    font-size: 80px;
    text-decoration: none;
    margin: 0 10px;
    font-family: 'Francois One', sans-serif;
}
.imagen_galeria a:nth-child(2){
    margin: 0;
    height: 100%;
    flex-shrink: 2;
}
.imagen_galeria img{
    width: 100%;
    height: 100%;
    max-width: 100%;
    /* border: 7px solid #e8e8e8;*/
    box-sizing: border-box;

}

.cerrar{
    display: block;
    background: #e8e8e8;
    width: 35px;
    height: 35px;
    margin: 15px auto;
    text-align: center;
    text-decoration: none;
    font-size: 25px;
    color: #000;
    padding: 5px;
    border-radius: 50%;
    line-height: 25px;
    font-family: 'Francois One', sans-serif;
}

@media screen and (max-width: 800px) {
    .imagen_galeria a{
        font-size: 40px;
    }
    .imagen_galeria img{
        /*  border: 4px solid #e8e8e8*/
    }
}

@media screen and (max-width: 480px) {
    .imagen_galeria a{
        font-size: 30px;
    }
    .imagen_galeria img{
        /* border: 2px solid #e8e8e8;*/
    }
    .cerrar{
        width: 25px;
        height: 25px;
        font-size: 18px;
        padding: 0;

    }
}

@media only screen and (orientation: landscape) {
    #contenedor_modal{
        top: 75px;
        width: 100%;
        height: 60vh;
    }
    .imagen_galeria img{
        height: 60vh;   
        object-fit: contain;
        border: none;
    }
    .imagen_galeria a{
        margin: 0 60px;
    }
    .cerrar{
        position: absolute;
        width: 25px;
        height: 25px;
        font-size: 18px;
        padding: 0;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);

    }
}

@media only screen and (min-height: 400px) and (orientation: landscape) {
    .cerrar{
        position: absolute;
        width: 35px;
        height: 35px;
        font-size: 25px;
        padding: 5px;
        bottom: -60px;
        left: 50%;

    }
}
/*FIN MODAL*/


/*CONTACTO*/

#contacto{
    position: relative;
    background:black;
    margin: auto;
    padding: 80px;  
    padding-bottom: 70px;
    z-index: 0;
    color: #e8e8e8;
    background-image: url(../img/fondos/fondo-2.jpg);

    background-size: cover;
    background-attachment: fixed;
    background-repeat:   no-repeat;
    background-position: center center;
}
#contacto div h4{

    position: relative;     
    font-family: 'Rationale', sans-serif;
    font-size: 45px;      
    position: relative;
    z-index: 100;

    text-align: center;


}
#contenedor-contacto{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#contenedor-contacto div{
    margin: 0px 20px 20px 20px;
    text-shadow:  0px 0px 1px #000;
}
iframe{
    margin-top: 20px;
    position:relative;
    width: 500px;
}
#titulo_mensaje{
    margin-top: 30px;
    margin-bottom:15px;
    position: relative;
    text-align: center;
    font-family: 'Rationale', sans-serif;
    font-size: 50px;
    text-shadow:  0px 0px 10px #000;
}
#contenedor-mensaje{

    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;

}
#contenedor-form{

    max-width: 800px;
    text-align: center;


}
.cajas_mensaje{
    width: 49%;
    height: 40px;
    margin-bottom: 20px;
    padding-left: 5px;
    font-size: 25px;
    border-width: 1px;
    border-color:  color: #e8e8e8;
    background-color: transparent;
    color: #e8e8e8;
    border-style: solid;
    border-radius: 0px;


    box-shadow: none;
    font-family: 'Rationale', sans-serif;
    background: rgba(0,0,0,0.7);

}
.cajas_mensaje:focus{
    background: rgba(0,0,0,0.8);
    text-decoration: none;
    box-shadow:  0px 0px 10px #e8e8e8;
}
#txtmensaje{
    width: 99%;
    background: rgba(0,0,0,0.2);
    resize: none;
    color: #e8e8e8;
    border:  solid 1px #e8e8e8;
    font-size: 25px;
    font-family: 'Rationale', sans-serif;
    border-style: solid;
    border-radius: 0px;
    box-shadow: none;
    background: rgba(0,0,0,0.7);
    padding-left: 5px;
}
#txtmensaje:focus{
    background: rgba(0,0,0,0.8);
    text-decoration: none;
    box-shadow:  0px 0px 10px #e8e8e8;
}
#btn_enviar{
    margin-top: 20px;

    padding: 10px 30px 10px 30px;

    background: rgba(0,0,0,0.7);
    font-family: 'Rationale', sans-serif;
    color: #e8e8e8;
    font-size: 23px;
    border-color: #e8e8e8;

}
#btn_enviar:hover{
    cursor: pointer;
    background: rgba(0,0,0,0.8);
    text-decoration: none;
    cursor: pointer;
    box-shadow:  0px 0px 10px #e8e8e8;
}
@media screen and (max-width: 736px) {
    #contacto{
        padding-top: 80px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 70px;
    }
    #contacto div h4{

        position: absolute;
        width: 100%;      

        font-size: 23px;      
        position: relative;
        z-index: 100;

        margin: 0;
        text-align: center;

    }
    #contenedor-form{
        width: 100%;

    }
    #contenedor-contacto div{
        margin: 0;
        width: 100%;
    }

    iframe{
        top: 0px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);

    }
    #titulo_mensaje{
        font-size: 35px;
    }
}

@media screen and (max-width: 480px) {
    #contacto{
        background-attachment:inherit;
        background-size:cover;
        background-position: center top;
        padding-top: 80px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 50px;
    }

    #contacto div h4{

        position: relative;
        width: 100%;      

        font-size: 20px;      
        position: relative;
        z-index: 100;
        top: 0px;


    }
    #contenedor-contacto {
        margin: 0;
        width: 100%;
    }
    #contenedor-contacto div{
        margin: 0;
        width: 90%;
    }
    iframe{
        margin-top: 20px;
        width: 100%;
        height: 220px;
    }
    #contenedor-form{
        width: 90%;
    }
    #txtmensaje{
        font-size: 14px;
    }
    .cajas_mensaje{
        font-size: 14px;
    }
    #btn_enviar{
        font-size: 15px;
    }
    #titulo_mensaje{
        font-size: 28px;
    }
}
/*FIN CONTACTO*/

/*FORM CONTACTO*/

/*FIN FORM CONTACTO*/

/*FOOTER*/
#copyright{
    position: absolute;
    height: 70px;
background: rgba(0,0,0,0.7);
   width: 100%;
    
    padding: 0;
    left: 0;


}
#copyright p{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #e8e8e8;
    text-align: center;
    font-size: 18px;
    font-family: 'Francois One', sans-serif;
    margin: auto;
    padding: auto;
    z-index: 10;

}

@media screen and (max-width: 480px) {
    #copyright{
        height: 50px;
    }
    #copyright p{
        font-size: 13px;
        letter-spacing: 0.3px;
    }
}
/*FIN FOOTER*/


