/* ESTILOS GENERALES */
/**MOSTRAR TODO COMO BLOQUES **/
header, section, footer, aside, nav, article, figure {
    display: block;
}

/**RESET**/
* {
    vertical-align: baseline;
    font-weight: inherit;
    font-family: sans-serif;    
    font-style: inherit;
    font-size: 100%;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
}

/**ELIMINAR RECUADRO EN LINKS ANDROID**/

html, button, input, select, textarea{
    background-color: inherit;
    color: inherit;
}

img{
    display: block;
    vertical-align: middle;
}

/* SELECCION WEBKIT OPERA IE& */
::selection{
    background:#6FC8FD;
    text-shadow:none;
}

/* SELECCION FIREFOX */
::-moz-selection{
    background:#6FC8FD;
    text-shadow:none;
}

/* ==========================================================================
                                 TIPOGRAFIA
   ========================================================================== */
@import url(http://fonts.googleapis.com/css?family=Poiret+One);

h1, h2, h3, h4, h5, h6{
    font-family: inherit;
    color: inherit;
}

h1 {
    font-size: 3em;
    margin: 0.67em 0;
	font-family: 'Poiret One', sans-serif;
	font-weight: 100;
	text-transform: uppercase;
	text-align: center;
}


h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

h4 {
    font-size: 1em;
    margin: 1.33em 0;
}

h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

h6 {
    font-size: 0.67em;
    margin: 2.33em 0;
}

b{
    font-family: 'Poiret One', sans-serif;
    font-weight: bold;
}

strong {
    font-weight: bold;
}

p{
    font-size: 1em;
    font-weight: lighter;
}

#cont-gnl{
    height: auto;
    margin: 0px;
    overflow: auto;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#cont-gnl.openclose{
    right: 345px;
}

#cont-gnl.openclose2{
    right: -295px;
}

a#logo{
    background-image: url(../images/wushi_daodi_logo.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: block;
    left: 50px;
    height: 100px;
    overflow: auto;
    position: absolute;
    top: 50px;
    width: 150px;
    z-index: 3;
}

nav#menu-general{
    display: block;
    left: 250px;
    position: absolute;
    top: 50px;
    width: 50%;
    z-index: 3;
}

nav#menu-general ul{
    list-style: none;
}

nav#menu-general ul li{
    display: block;
    float: left;
}

nav#menu-general ul li a{
    color: #ffffff !important;
    border-left: 3px solid;
    border-color: transparent;
    line-height: 60px;
    margin: 0px 10px;
    padding-left: 5px;
    text-decoration: none;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

nav#menu-general ul li a:hover{
    border-color: #cccccc !important;
}

.text-menu{
    text-align: right;
    position: absolute;
    height: 50px;
    width: 180px;
    color: #777 !important;
    margin-left: -54px;
    margin-top: 120px;
    z-index: 9999;
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: margin all .3s;
    -o-transition: margin all .3s;
    transition: margin all .3s;
}

#mouse{
    border: 1px solid #ffffff;
    border-radius: 20px;
    bottom: 50px;
    display: block;
    height: 50px;
    left: 50%;
    margin-left: -15px;
    position: absolute;
    width: 30px;
    z-index: 99999999;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
    transition-delay: .3s;
}

#mouse.move{
    bottom: 35px;
    opacity: 1;
}

#mouse p{
    color: #ffffff;
    display: block;
    height: 20px;
    margin-left: -15px;
    margin-top: 55px;
    position: absolute;
    text-align: center;
    width: 60px;
}

#whell{
    background-color: #ffffff;
    border-radius: 20px;
    display: block;
    height: 4px;
    margin-left: 13px;
    margin-top: 10px;
    position: absolute;
    width: 4px;
    -moz-animation-duration: 2s;
    -moz-animation-name: go;
    -moz-animation-iteration-count: infinite;
    -moz-animation-direction: linear;
    -webkit-animation-duration: 2s;
    -webkit-animation-name: go;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: linear;
    -o-animation-duration: 2s;
    -o-animation-name: go;
    -o-animation-iteration-count: infinite;
    -o-animation-direction: linear;
    -ms-animation-duration: 2s;
    -ms-animation-name: go;
    -ms-animation-iteration-count: infinite;
    -ms-animation-direction: linear;
    animation-duration: 2s;
    animation-name: go;
    animation-iteration-count: infinite;
    animation-direction: linear;
}

@-moz-keyframes go {
    0%   {margin-top: 10px;}
    50% {margin-top: 30px;}
    80% {margin-top: 5px;}
    85% {margin-top: 20px;}
    100% {margin-top: 10px;}
}


@-webkit-keyframes go {
    0%   {margin-top: 10px;}
    50% {margin-top: 30px;}
    80% {margin-top: 5px;}
    85% {margin-top: 20px;}
    100% {margin-top: 10px;}
}

@-o-keyframes go {
    0%   {margin-top: 10px;}
    50% {margin-top: 30px;}
    80% {margin-top: 5px;}
    85% {margin-top: 20px;}
    100% {margin-top: 10px;}
}

@-ms-keyframes go {
    0%   {margin-top: 10px;}
    50% {margin-top: 30px;}
    80% {margin-top: 5px;}
    85% {margin-top: 20px;}
    100% {margin-top: 10px;}
}

@keyframes go {
    0%   {margin-top: 10px;}
    50% {margin-top: 30px;}
    80% {margin-top: 5px;}
    85% {margin-top: 20px;}
    100% {margin-top: 10px;}
}

#flecha{
    border-right: 0px;
    border-top: 0px;
    display: block;
    height: 20px;
    margin-left: 5px;
    margin-top: 20px;
    position: absolute;
    width: 20px;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#menu{
    display: block;
    margin: 0px auto;
    float: right;
    width: 80%;
}

#menu ul{
    list-style: none;
}

#menu ul ul{
    display: none;
    padding-left: 20px;
}

#menu ul li.show a{
    border-color: #cccccc;
}

#menu ul li.show ul{
    display: block;
}

#menu ul li.show ul li{
    margin-left: 0px;
}

#menu ul li.show ul li a{
    border-color: transparent;
}

#menu ul li.show ul li a:hover{
    border-color: #cccccc;
}

#menu ul li a{
    border-left: 3px solid transparent;
    color: #cccccc;
    font-weight: lighter;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#menu ul li a:hover{
    border-color: #cccccc;
}

#menu ul li{
    display: block;
    text-align: left;
    float: left;
    margin-left: 10px;
    width: 100%;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#menu ul ul li:nth-child(1){
    transition-delay: .1s;
}

#menu ul ul li:nth-child(2){
    transition-delay: .2s;
}

#menu ul ul li:nth-child(3){
    transition-delay: .3s;
}

#menu ul ul li:nth-child(4){
    transition-delay: .4s;
}

#pleca{
    display: block;
    right: -300px;
    height: 100%;
    overflow: auto;
    position: fixed;
    top: 0px;
    width: 350px;
    z-index: 5;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .5s ease-out;
	overflow-x:hidden;
}

#pleca-inferior{
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 100%;
    z-index: 4;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#pleca-inferior-interior{
    position: absolute;
    right: 0px;
    top: 70%;
    width: 100%;
    z-index: 4;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#pleca-inferior.openclose, #pleca-inferior-interior.openclose{
    right: 350px;
}

#pleca-inferior.openclose2, #pleca-inferior-interior.openclose2{
    right: -300px;
}

#pleca.openclose{
    right: 0px;
}

#pleca:hover{
    width: 360px;
}

#pleca:hover #btn-menu{
    margin-left: 10px;
}

#form_inscripcion{
    display: block;
    left: -300px;
    height: 100%;
    overflow: auto;
    position: fixed;
    top: 0px;
    width: 300px;
    z-index: 5;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#form_inscripcion form{
    display: block;
    margin: 100px auto 20px;
    width: 90%;
}

/*COLOR PLACEHOLDER*/

#form_inscripcion form input{
    font-weight: lighter;
    display: block;
    height: 30px;
    font-size: 1em;
    margin: 10px 0px;
    padding: 5px 2%;
    width: 96%;
    outline: none;
    resize: none;
    transition: all ease .7s;
    -webkit-transition: all ease .7s;
}

#form_inscripcion form textarea{
    display: block;
    font-size: 1em;
    margin: 10px auto;
    padding: 10px 2% 0px;
    width: 96%;
    height: 150px;
    font-family: sans-serif;
    outline: none;
    opacity: 1;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    resize: none;
}

#form_inscripcion form #btn-enviar-formulario{
    cursor: pointer;
    display: block;
    font-weight: 400;
    margin: 20px auto;
    padding: 0px;
    text-decoration: none;
    width: 100%;
    text-transform: uppercase;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}


#close-form-lateral{
    cursor: pointer;
    display: block;
    float: right;
    height: 40px;
    line-height: 40px;
    margin: 0px;
    text-align: center;
    width: 40px;
}

#form_inscripcion.openclose2{
    left: 0px;
}

#btn-menu{
    cursor: pointer;
    display: block;
    left: 0px;
    height: 140px;
    margin-left: 5px;
    margin-top: -20px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    width: 40px;
    z-index: 5;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#pleca:hover #btn-menu{
    margin-right: 15px;
}

.line{
    background-color: #777;
    display: block;
    height: 2px;
    position: absolute;
    width: 70%;
	left: 15%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.line:nth-child(1){
    margin-top: 10px;
}

.line:nth-child(2){
    margin-top: 20px;
}

.line:nth-child(3){
    margin-top: 20px;
}

.line:nth-child(4){
    margin-top: 30px;
}

#btn-menu:hover .line:nth-child(1){
    margin-top: 14px;
}

#btn-menu:hover .line:nth-child(4){
    margin-top: 26px;
}

#btn-menu.openclose .line:nth-child(1){
    margin-top: 20px;
    opacity: 0;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#btn-menu.openclose .line:nth-child(4){
    margin-top: 20px;
    opacity: 0;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#btn-menu.openclose .line:nth-child(2){
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#btn-menu.openclose .line:nth-child(3){
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

a#logo-in{
    background-image: url(../images/wushi_daodi_logo.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: block;
    height: 100px;
    margin: 50px auto;
    width: 150px;
    z-index: 5;
}

.cont-full{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: block;
    overflow: auto;
    width: 100%;
}

.padding{
    padding: 80px 0px 150px;
    overflow: auto;
}

.center{
    text-align: center;
}

.left{
    text-align: left !important;
}

.columna50{
    display: block;
    margin: 0px auto;
    width: 50%;
}

.btn{
	border: 1px solid;
	cursor: pointer;
	display: inline-block;
	margin: 30px 10px;
	padding-top: 7px;
	padding-right: 77px;
	padding-left: 77px;
	padding-bottom: 7px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
	color: #242424;
}


#inscribirse{
    position: absolute;
    bottom: 0px;
    left: 10px;
    z-index: 2;
}

#superior{
    background-attachment: inherit;
}

#superior_int{
    background-attachment: inherit;
}

#mapa-full{
    display: block;
    float: left;
    height: 320px !important;
    margin-top: 40px;
    width: 100%;
}

#frase_inicial{
    right: 0px;
    margin-top: 200px;
    opacity: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 3;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

.t-orange{
    color: #6FC8FD !important;
}

#frase_inicial.openclose{
    right: 350px;
}

#frase_inicial.openclose2{
    right: -350px;
}

#frase_inicial.move{
    margin-top: 300px;
    opacity: 1;
}

#frase_inicial h1{
    font-size: 4em;
    margin: 0px;
}

/*ESTILOS MAESTROS*/
.maestro{
    display: block;
    float: left;
    height: auto;
    overflow: auto;
    width: 50%;
}

.maestro img{
    display: block;
    height: auto;
    margin: 0px auto;
    width: 90%;
}

.maestro h1{
    padding-left: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.bio{
    padding-top: 20px;
    padding-left: 10px;
}

.separador{
	display: block;
	float: left;
	margin: 20px auto;
	width: 100%;
}

footer{
    display: block;
    padding: 20px 2%;
    width: 96%;
}

footer p{
    display: block;
    float: left;
    line-height: 45px;
    position: absolute;
    width: 200px;
}

#cont-social{
    display: block;
    height: auto;
    margin: 0px auto;
    overflow: auto;
    width: 200px;
}

a.social{
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80% auto;
    cursor: pointer;
    display: block;
    float: left;
    height: 40px;
    margin: 0px 5px;
    width: 40px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

a.social:hover{
    margin-top: -8px;
}

#twitter{
    background-image: url(../images/social-01.png)!important;
}

#facebook{
    background-image: url(../images/social-02.png)!important;
}

#google{
    background-image: url(../images/social-03.png)!important;
}

#youtube{
    background-image: url(../images/social-04.png)!important;
}

a.redes-sociales{
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px auto;
    cursor: pointer;
    display: block;
    float: left;
    height: 40px;
    margin: 8px 0px;
    width: 40px;
    opacity: 1;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

a.redes-sociales:hover{
    margin-top: 0px;
    opacity: .95;
}

#twitter-w{
    background-image: url(../images/social-01-w.png)!important;
}

#facebook-w{
    background-image: url(../images/social-02-w.png)!important;
}

#google-w{
    background-image: url(../images/social-03-w.png)!important;
}

#youtube-w{
    background-image: url(../images/social-04-w.png)!important;
}



form#formulario-general{
    display: block;
    margin: 10px auto 20px;
    width: 90%;
}

form#formulario-general input{
    font-weight: lighter;
    display: block;
    height: 30px;
    font-size: 1em;
    margin: 10px 0px;
    padding: 5px 2%;
    width: 96%;
    outline: none;
    resize: none;
    transition: all ease .7s;
    -webkit-transition: all ease .7s;
}

form#formulario-general select{
    font-weight: lighter;
    display: block;
    height: 30px;
    font-size: 1em;
    margin: 10px 0px;
    padding: 5px 2%;
    width: 100%;
    outline: none;
    resize: none;
    transition: all ease .7s;
    -webkit-transition: all ease .7s;
}

form#formulario-general textarea{
    display: block;
    font-size: 1em;
    margin: 10px auto;
    padding: 10px 2% 0px;
    width: 96%;
    height: 150px;
    font-weight: lighter;
    font-family: sans-serif;
    outline: none;
    opacity: 1;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    resize: none;
}

form#formulario-general #btn-enviar-formulario{
    cursor: pointer;
    font-weight: lighter !important;
    display: block;
    font-weight: 400;
    margin: 20px auto;
    padding: 0px;
    text-decoration: none;
    width: 100%;
    text-transform: uppercase;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

video{ min-width:100%}

#videoPrimero{ position:relative; overflow:hidden; clear:both}

#galeria{ 
	position:relative;
	margin:0 auto;
	width:90%;
	max-width:1240px;
}

#CRCA{
    display: block;
    height: 86px;
    width: 60px;
    top: 40px;
    position: absolute;
    left: 100%;
    margin-left: -180px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 99999;
    background-image: url(../images/crca-logo-blanco.png);
}

#CRCA small{
    top: 100%;
    margin-top: 10px;
    font-size: .8em;
    color: #ffffff;
    position: absolute;
    margin-left: -30px;
    width: 120px;
    text-align: center;
}

.comunidad{
    display: block;
    margin: 20px auto;
    width: 1000px;
    height: auto;
    overflow: auto;
}


.columna40{
    display: block;
    float: left;
    height: auto;
    width: 400px;
}

.columna60{
    display: block;
    float: left;
    height: auto;
    width: 600px;
}

.titulo-red{
    display: block;
    height: auto;
    padding: 10px 5%;
    width: 90%;
    background-color: #242424;
    color: #beb55a;
}

.facebook{
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px auto;
    cursor: pointer;
    display: block;
    float: left;
    height: 40px;
    margin: 0px;
    width: 40px;
    opacity: 1;
    background-color: #3b5998;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    background-image: url(../images/social-02-w.png)!important;
}

.compartir{
    display: block;
    float: left;
    height: 40px;
    width: 120px;
    color: #ffffff;
    background-color: #e47911;
    line-height: 40px;
}

.twitter{
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px auto;
    cursor: pointer;
    display: block;
    float: left;
    height: 40px;
    margin: 0px;
    width: 40px;
    opacity: 1;
    background-color: #7cc0e5;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    background-image: url(../images/social-01-w.png)!important;
}

.pinterest{
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px auto;
    cursor: pointer;
    display: block;
    float: left;
    height: 40px;
    margin: 0px;
    width: 40px;
    opacity: 1;
    background-color: #bd081c;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    background-image: url(../images/social-03-w.png)!important;
}

.pantalla-superior{
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    background-color: rgba(0,0,0,.5);
}

/*MEDIAQUERIES*/
@media only screen and (min-width: 320px) and (max-width: 767px){

.text-menu,#CRCA, a#logo, #mouse p, #frase_inicial p:before, #frase_inicial p span, #incsibeteP, #shao h1 span, #bgvid{
    display: none !important;
}

#pleca{
    height: 60px;
    width: 100% !important;
    left: 0%;
    overflow: visible;
    z-index: 999999999;
}

#logo-in{
    position: absolute;
    width: 105px !important;
    left: 5% !important;
    height: 40px !important;
    margin: 15px 0px !important;
}

#menu{
    background-color: #222222;
    position: fixed;
    height: 50%;
    overflow: auto;
    margin-left: 100%;
    top: 60px;
    width: 90%;
    padding: 20px 5% 50%;
    padding-top: 120px;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#pleca.openclose #menu{
    margin-left: 0%;
}

#cont-gnl.openclose{
    right: 80px;
}

#btn-menu{
    margin: 0px !important;
    right: 5% !important;
    left: auto;
    top: 10px;
}

#frase_inicial{
    left: 7.5%;
    margin-left: 0px;
    width: 85%;
}

#frase_inicial.move{
    margin-top: 60%;
}

h1{
    font-size: 1.6em !important;
}

h2{
    font-size: 1.2em !important;
}

#mouse{
    border-radius: 5px;
    bottom: 20px;
}

#mouse:before{
    content: "";
    border: thin solid #fff;
    height: 40px;
    width: 22px;
    margin: 3px;
    border-radius: 3px;
    position: absolute;
}

.pantalla-superior{
    background-size: auto 100%;
    background-position: center;
}

#superior_int{
    background-size: auto 110%;
}

.cont-full {
    background-attachment: inherit;
    background-size: auto 100%;
}

.columna50{
    width: 90%;
}

.column50{
    width: 95% !important;
}

.maestro{
    width: 100%;
}

.maestro h1, .maestro h2{
    color: #242424;
    padding-left: 5px;
    text-align: left;
}

.maestro img{
    width: 100%;
}

.padding {
    padding: 40px 0px;
    overflow: auto;
}

footer{
    padding-top: 10px;
    height: 80px;
}

footer p{
    width: 97%;
    padding: 0px;
    margin-top: 40px;
    text-align: center;
}

#galeria{
    display: block;
    height: auto;
    width: 100%;
    overflow: auto;
}

.foto_galeria{
    border: none !important;
    padding: 1% !important;
    margin: 1.5%;
    float: left !important;
    display: block !important;
    width: 45% !important;
}

.foto_galeria a, .foto_galeria img{
    display: block !important;
    width: 100% !important;
}

.comunidad{
    max-width: 100%;
}

iframe{
    width: 100% !important;
}

.redes-sociales{
    opacity: .7 !important;
    margin-top: 2px !important;
}

nav#menu-general{
    background-color: #222222;
    left: 100%;
    display: block;
    position: fixed;
    top: 55px;
    height: 21%;
    width: 100%;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .5s ease-out;
    z-index: 999999999999;
}

nav#menu-general.move{
    left: 0%;
}

nav#menu-general ul li a{
    color: #cccccc !important;
    line-height: 45px;
    font-size: .95em;
    margin-right: 5px;
}


}

@media only screen and (min-width: 320px) and (max-width: 767px) and (orientation:landscape){

#frase_inicial.move{
    margin-top: 25%;
}

#superior_int{
    background-size: 110% auto;
}

.cont-full {
    background-size: cover;
}

.foto_galeria{
    width: 28.3% !important;
}

.redes-sociales{
    display: none !important;
}

#menu{
    padding-top: 80px;
}

}

@media only screen and (min-width: 768px) and (max-width: 1024px){

.pantalla-superior{
    background-size: auto 100%;
    background-position: center;
}

a#logo{
    left: 35px;
}

nav#menu-general{
    width: 65%;
    left: 220px;
    top: 55px;
}

#CRCA {
    display: block;
    height: 86px;
    width: 60px;
    top: 40px;
    margin-left: -150px;
}

#CRCA small, #frase_inicial p:before, #frase_inicial p span, #bgvid{
    display: none;
}

#pantalla{
    background-size: auto 100%;
    background-position: center;
}

#frase_inicial.move{
    top: 0%;
}

.logo-principal{
    width: 60%;
    margin-bottom: 20px;
}

.medida{
    width: 80%;
}

h1{
    font-size: 3em !important;
}

.cont-full {
    background-attachment: inherit;
    background-size: cover;
}

.columna50{
    width: 80%;
}

}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation:portrait){

#frase_inicial{
    width: 90%;
    left: 5%;
}

#CRCA, .redes-sociales {
    display: none !important;
}

}


