header {
    width: 100%;
    height: 250px;
    height: 300px;
    margin: 0;
    z-index: 16;
    background: #fff;
    background: #fafafa;
    top: 0;
    left: 0;
    position: relative;
    -webkit-box-shadow: 0 4px 3px rgba(0,0,0,0.5);
    box-shadow: 0 4px 3px rgba(0,0,0,0.5);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

header .contenedor {
    height: 70px;
    height: 100%
}

header .contenedor h2 {
    display: none;
    font-size: 0
}

header .contenedor .telefonos {
    padding-top: 20px;
    margin: 0 auto;
    width: 300px;
    text-align: center;
    clear: both
}

header .contenedor .logo {
    display: inline-block;
    margin: 0 auto;
    width: 250px;
    height: auto;
    -webkit-transition: all .09s ease;
    transition: all .09s ease;
    position: absolute;
    position: relative;
    right: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,9%);
    transform: translate(-50%,9%)
}

header .contenedor .logo img {
    width: 100%;
    height: auto;
    margin: 0
}

.material {
    position: relative;
    color: #fff;
    margin: 20px auto;
    height: 400px;
    width: 500px;
    background: #f45673
}

.boton1,.ripple {
    overflow: hidden
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: #0ae;
    animation: animacion-ripple 2s
}

@keyframes animacion-ripple {
    from {
        opacity: .4;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(100);
        -ms-transform: scale(100);
        -o-transform: scale(100);
        transform: scale(100)
    }
}

.baner {
    color: #fff;
    margin: 10px auto;
    text-align: center;
    padding: 10px;
    position: absolute;
    font-size: 90%;
    height: auto;
    width: 450px;
    right: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,9%);
    transform: translate(-50%,9%);
    bottom: 9%;
    background: transparent;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-name: slidein;
    animation-name: slidein;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out
}

.baner .boton0 {
    overflow: hidden;
    border: solid 3px #c48f20;
    width: 145px;
    -webkit-transition: border-color .3s,color .3s;
    transition: border-color .3s,color .3s;
    -webkit-transition-timing-function: cubic-bezier(0.2,1,0.3,1);
    transition-timing-function: cubic-bezier(0.2,1,0.3,1);
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    display: block;
    padding: .4em .1em;
    background: #eab649;
    background: -moz-linear-gradient(top,#eab649 0,orange 99%);
    background: -webkit-linear-gradient(top,#eab649 0,orange 99%);
    background: linear-gradient(to bottom,#eab649 0,orange 99%);
    border-radius: 10px;
    color: inherit;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 1px grey
}

.baner .boton0::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: orange;
    z-index: -1;
    -webkit-transform: rotate3d(0,0,1,-45deg) translate3d(0,-3em,0);
    transform: rotate3d(0,0,1,-45deg) translate3d(0,-3em,0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transition: -webkit-transform .3s,opacity .3s,background-color .3s;
    -webkit-transition: opacity .3s,background-color .3s,-webkit-transform .3s;
    transition: opacity .3s,background-color .3s,-webkit-transform .3s;
    transition: transform .3s,opacity .3s,background-color .3s;
    transition: transform .3s,opacity .3s,background-color .3s,-webkit- transform .3s
}

.baner .boton0:hover {
    color: #fff;
    border-color: orange;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)
}

.baner .boton0.button--inverted:hover {
    color: orange;
    border-color: #fff
}

.baner .boton0:hover::before {
    opacity: 1;
    background-color: #d98c00;
    -webkit-transform: rotate3d(0,0,1,0);
    transform: rotate3d(0,0,1,0);
    -webkit-transition-timing-function: cubic-bezier(0.2,1,0.3,1);
    transition-timing-function: cubic-bezier(0.2,1,0.3,1)
}

.baner .boton0.button--inverted:hover::before {
    background-color: #fff
}

.facebook-logo {
    color: #4267b2;
    position: relative;
    padding: 10px 0
}

facebook-logo .facebook-icon {
    display: flex;
    text-decoration: none;
    color: #4267b2
}

facebook-logo .facebook-icon p {
    line-height: 25px;
    height: 50px;
    width: 171px
}

facebook-logo .facebook-icon img {
    width: 50px;
    height: 50px;
    background: #4267b2;
    margin-top: 19px;
    margin-right: 10px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: margin-right;
    animation-name: margin-right;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation: margin-right 3s both infinite alternate;
    animation: margin-right 3s both infinite alternate;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out
}

.logo-fot,.logo-inst,.logo-facc {
    margin: 10px 10px 10px 10px;
    padding: 10px;
    display: inline-block
}

.logo-fot:hover img,.logo-inst:hover img,.logo-facc:hover img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.facebook-logo:hover {
    background: #4267b2;
    color: #fff;
    width: 100%;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    box-shadow: 1px 5px 5px silver;
    box-shadow: 1px 5px 5px rgba(192,192,192,0.50),1px 5px 5px rgba(192,192,192,0.50),1px 5px 5px rgba(192,192,192,0.5)
}

.facebook-logo:hover .facebook-icon img {
    box-shadow: none;
    border: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: rotar;
    animation-name: rotar
}

.facebook:hover .facebook-icon p {
    color: #fff
}

.redes {
    position: absolute;
    height: 70px;
    width: 150px;
    top: 1%;
    right: 1%;
    z-index: 12;
    font-size: 15px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: color-2;
    animation-name: color-2;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation: color-2 3s both infinite alternate;
    animation: color-2 3s both infinite alternate
}

i.wp-icon,small.wp-icon {
    font-size: 0;
    width: 23px;
    height: 23px;
    top: 4px;
    position: relative;
    background-image: url(../imagenes/whatsapp-logo.svg);
    background-size: 23px;
    background-repeat: no-repeat;
    display: inline-block
}

.redes .contacto {
    float: right;
    width: 100%;
    height: 100%;
    text-shadow: 1px 1px 3px #fff,1px 1px 3px #fff,1px 1px 3px #fff,1px 1px 3px #fff,1px 1px 3px #fff,1px 1px 3px #fff;
    font-weight: 700;
    position: absolute
}

.redes .contacto a {
    text-decoration: none;
    width: 150px;
    color: #000
}

.redes .contacto a,.redes .contacto p {
    margin: 0
}

.division {
    width: 100%;
    border-bottom: 3px solid #cdcdcd;
    clear: both
}

.color {
    background: #cdcdcd
}

.fondos-punto-ref,.fondos-paisaje-natural,.fondos-rios,.fondos-piscina,.fondos-senderos,.fondos-senderos1,.fondos-oft-ambiental1,.fondos-oft-ambiental2,.fondos-oft-ambiental3,.fondos-piscina-nat,.fondos-cabanas {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    border-top: solid 2px rgba(0,0,0,0.19);
    border-bottom: solid 2px rgba(0,0,0,0.19);
    height: 900px
}

.fondos-punto-ref {
    background-image: url(../imagenes/fondos/punto-ref.jpg) 
}

.fondos-paisaje-natural {
    background-image: url(../imagenes/fondos/paisaje-natural.jpg)
}

.fondos-senderos {
    background-image: url(../imagenes/fondos/senderos.jpg)
}

.fondos-oft-ambiental1 {
    background-image: url(../imagenes/fondos/oferta-ambiental1.jpg)
}

.fondos-senderos1 {
    background-image: url(../imagenes/fondos/senderos-2.jpg)
}

.fondos-oft-ambiental2 {
    background-image: url(../imagenes/cascadagrupos.jpg)
}

.fondos-oft-ambiental3 {
    background-image: url(../imagenes/fondos/cascada2.jpg)
}

.fondos-piscina-nat {
    background-image: url(../imagenes/fondos/piscina-natural2.jpg)
}

.fondos-piscina {
    background-image: url(../imagenes/fondos/piscina.jpg)
}

.fondos-cabanas {
    background-image: url(../imagenes/fondos/cabanas.jpg)
}

.fondos-rios {
    background-image: url(../imagenes/fondos/rios.jpg)
}

.overflow {
    overflow: hidden
}

.cabana2,.cabana {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    margin-bottom: -26px
}

.cabana2 figure,.cabana figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    background: orange;
    background-image: linear-gradient(-35deg,#d98c00 3%,orange 94%);
    display: inline-block
}

.cabana2 figure {
    background: #52b92b;
    background-image: linear-gradient(-35deg,#007100 3%,#52b92b 94%)
}

.cabana2 figure .img-figure {
    margin: 0;
    padding: 0;
    float: right;
    width: 50%;
    height: 400px;
    overflow: hidden
}

.cabana figure .img-figure {
    margin: 0;
    padding: 0;
    float: left;
    width: 50%;
    height: 400px;
    overflow: hidden
}

.cabana2 figure .img-figure img,.cabana figure .img-figure img {
    width: 100%;
    height: 100%;
    background-size: cover
}

.cabana2 figure figcaption {
    width: 50%;
    height: 150%!important;
    margin: 0;
    float: right;
    padding: 0;
    padding: 10px;
    color: white
}

.cabana figure figcaption {
    width: 50%;
    height: 150%!important;
    margin: 0;
    float: left;
    padding: 0;
    padding: 10px;
    color: white
}

.cabana2 figure figcaption h2 {
    text-align: right;
    color: white
}

.cabana figure figcaption h2 {
    text-align: left;
    color: white
}

.cabana2 figure figcaption p {
    color: white;
    text-align: right
}

.cabana figure figcaption p {
    color: white
}

.cabana2 figure figcaption a,.cabana figure figcaption a {
    text-decoration: none;
    margin: 10px;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    background-color: white;
    color: orange;
    border-bottom: solid 3px #d9d9d9;
    cursor: pointer;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.cabana2 figure figcaption a:hover,.cabana figure figcaption a:hover {
    padding: 10px 20px;
    font-weight: 700;
    color: orange;
    text-decoration: none
}

.contenido {
    background: #f1f1f1;
    -webkit-box-shadow: 2px 2px 2px #d3d3d3,-2px -2px 2px #d3d3d3;
    box-shadow: 2px 2px 2px #d3d3d3,-2px -2px 2px #d3d3d3;
    padding: 20px 0
}

.contenido2 {
    background: #e8e8e8;
    -webkit-box-shadow: 2px 2px 2px #d3d3d3,-2px -2px 2px #d3d3d3;
    box-shadow: 2px 2px 2px #d3d3d3,-2px -2px 2px #d3d3d3;
    padding: 20px 0
}

.productos article {
    display: inline-block;
    background: #fff;
    text-align: center;
    white-space: normal;
    opacity: 1.0;
    -moz-transition: opacity .75s ease-in-out;
    -webkit-transition: opacity .75s ease-in-out;
    -ms-transition: opacity .75s ease-in-out;
    transition: opacity .75s ease-in-out
}

.productos article .image,.productos article .image img {
    width: 100%;
    height: auto
}

.productos article h3 {
    color: black;
    padding: 0 1em 0 1em
}

.productos article p {
    text-align: center;
    padding: 0 1em 0 1em
}

.fondo_rojo {
    background-image: linear-gradient(-35deg,#9119b3 0,#e64c4c 88%)
}

.fondo_indigo {
    background-image: linear-gradient(-35deg,#4e2bcc 3%,#b620e0 100%)
}

.fondo_azul {
    background-image: linear-gradient(-35deg,#289dcc 3%,#815eff 94%)
}

.center-box-img-c,.center-box-img {
    margin: 16px auto;
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover
}

.center-box-img h1,.center-box-img h2,.center-box-img h3,.center-box-img h4,.center-box-img h5 {
    position: relative
}

.center-box-img picture>source,.center-box-img picture>img,.center-box-img-c>img,.center-box-img>img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    -webkit-background-size: cover;
    position: absolute;
    padding: -82px 0 -84px 0
}

.center-box-img-c h4 {
    color: #416eb2;
    margin-top: 20%
}

.center-box-img-c hr {
    margin: 0 0 18px 0;
    border-top: 2px solid #416eb2;
    width: 100%
}

.center-box-img-c h4.t-l {
    width: 120px;
    border-right: 1px solid #416eb2
}

.center-box-img:hover>img {
    filter: blur(7px);
    -webkit-filter: blur(7px);
    -moz-filter: blur(7px);
    -ms-filter: blur(7px);
    -o-filter: blur(7px);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.index-baner {
    margin-bottom: 0
}

section>h1 {
    line-height: .8em;
    font-weight: bold
}

section h1 small {
    color: #039be5!important;
    font-size: 70%;
    font-weight: 400;
    text-shadow: none
}

.titulo {
    letter-spacing: 10px;
    letter-spacing: initial
}

.titulo2 {
    letter-spacing: 5px;
    letter-spacing: initial
}

.titulo-contac {
    margin: 20% auto;
    letter-spacing: 10px;
    letter-spacing: initial;
    text-align: right;
    position: relative
}

.titulo-contac:before {
    content: "“";
    position: absolute;
    top: 17px;
    left: -5px;
    font-size: 3.7em;
    line-height: 0;
    height: 28px;
    width: 28px
}

.titulo-contac:after {
    content: "”";
    position: absolute;
    bottom: -22px;
    right: -22px;
    font-size: 3.7em;
    line-height: 0;
    height: 28px;
    width: 28px
}

.titulo span,.titulo-contac span {
    color: #0ae;
    font-family: 'Pacifico',cursive
}

.flecha {
    content: "";
    position: relative;
    bottom: 1px;
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
    z-index: 2
}

.fle-1 {
    left: 21%;
    border-top: 20px solid #0078bf;
    margin: -1px 0 -20px 0
}

.fle-2 {
    left: 49.5%;
    border-top: 20px solid #ff9101;
    margin: 0 0 -42px 0;
    margin: -1px 0 -20px 0
}

.img-fondo,.fondo-img-contacto {
    background-size: cover;
    width: 100%;
    height: auto
}

.fondo-img-index a {
    width: 100%;
    height: 137px;
    background: transparent
}

.img-fondo picture>source,.img-fondo picture>source img,.img-fondo picture>img,.img-fondo>img,.fondo-img-contacto img {
    width: 100%;
    height: auto;
    background-size: cover
}

.border {
    border: solid 1px #ddd;
    border-bottom: solid 3px #a0a0a0;
    margin-bottom: 20px
}

.fondo-footer img {
    width: 100%;
    height: 50%;
    background-position: center;
    background-size: cover;
    margin-bottom: -10px
}

.fondo-footer p {
    z-index: 2;
    margin-top: -47px
}

footer p {
    margin: 0 17px 0 0
}

.correo,footer a {
    color: white;
    text-decoration: none;
    list-style: none;
    margin: 5px auto;
    display: inline-block
}

footer a:hover {
    color: #ff9000;
    text-decoration: none;
    list-style: none
}

.logo-i {
    position: relative;
    width: 187px;
    height: 66px;
    margin: 0 auto
}

.logo-i a {
    width: 187px;
    height: 66px
}

.logo-i .imgf {
    width: 187px;
    height: 66px
}

.logo-i .k {
    z-index: 3;
    position: absolute;
    left: 100px
}

.logo-i:hover .k,.logo-i .k:hover {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: rotar;
    animation-name: rotar
}

::-moz-selection {
    color: white;
    background: #0ae
}

::selection {
    color: white;
    background: #0ae
}

::-moz-selection {
    color: white;
    background: #0ae
}

video {
    width: 100%;
    height: auto
}

.fill-video,.fill-img {
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
    -o-background-size: cover
}

.img-auto {
    width: 100%
}

.img-auto-size {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover
}

.img-circular {
    border-radius: 50%;
    float: right;
    width: 180px;
    height: 180px
}

.img-circular:hover {
    background: #e31e24;
    border-radius: 50%;
    float: right;
    width: 180px;
    height: 180px
}

.img-rounded {
    border-radius: 6px
}

.img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.img-circle {
    border-radius: 50%
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto
}

.h-50 {
    height: 50px;
    width: 100%;
    clear: both
}

.centered img {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.float-l {
    float: left
}

.float-r {
    float: right
}

.clear,.clear-b,.float-b {
    clear: both
}

.t-c {
    text-align: center
}

.t-j {
    text-align: justify
}

.t-r {
    text-align: right
}

.t-l {
    text-align: left
}

.t-blanco,.t-c-b,.t-bl {
    color: #fff
}

.t-c-v {
    color: #52b92b
}

.t-cf-v {
    background: #52b92b;
    color: white;
    width: 100%;
    position: relative;
    z-index: 16
}

.t-cf-v1:after {
    content: "";
    height: 1.5em;
    width: 400%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #52b92b;
    z-index: -1
}

.t-c-n {
    color: orange
}

.t-cf-n {
    background: orange;
    color: white;
    width: 100%;
    position: relative;
    z-index: 16
}
}

.t-cf-n1:after {
    content: "";
    height: 1.5em;
    width: 400%;
    position: absolute;
    top: 0;
    right: 0;
    background: orange;
    z-index: -1
}

.t-c-a {
    color: #039be5
}

.dos-columnas {
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-column-gap: 2rem;
    column-gap: 2rem
}

.tres-columnas {
    -webkit-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-column-gap: 2.3rem;
    column-gap: 2.3rem;
    margin: 20px;
    margin: 2rem
}

.t-sh {
    text-shadow: 1px 1px 1px #a0a0a0
}

.t-sh1 {
    text-shadow: 1px 1px 3px rgba(0,51,102,.3);
    -moz-text-shadow: 1px 1px 3px rgba(0,51,102,.3);
    -webkit-text-shadow: 1px 1px 3px rgba(0,51,102,.3);
    -ms-text-shadow: 1px 1px 3px rgba(0,51,102,.3);
    -o-text-shadow: 1px 1px 3px rgba(0,51,102,.3)
}

.t-sh2 {
    text-shadow: 2px 2px 3px grey
}

table {
    width: 100%
}

th {
    background-color: #ff6c00;
    color: white
}

tr {
    text-align: left;
    font-weight: 300;
    margin-bottom: 15px
}

tr:nth-child(0) {
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #4c4c4c;
    margin-bottom: 15px
}

tr:nth-child(even) {
    background-color: #f2f2f2
}

tr:hover {
    background-color: rgba(82,185,43,0.50)
}

.b-sh {
    -webkit-box-shadow: 1px 2px 15px 3px #a0a0a0;
    box-shadow: 1px 2px 15px 3px #a0a0a0
}

.b-sh-c {
    -webkit-box-shadow: 1px 2px 15px 3px #a0a0a0;
    box-shadow: 1px 2px 15px 3px #a0a0a0
}

.c-sh {
    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.2);
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.2)
}

.cont-btn {
    position: fixed;
    bottom: 5%;
    width: 0;
    height: 0;
    opacity: 0;
    color: #FFF;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12),0 1px 2px rgba(0,0,0,0.24);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12),0 1px 2px rgba(0,0,0,0.24);
    right: 10%;
    border-radius: 10%;
    cursor: pointer;
    z-index: 200;
    transition: all .3s ease
}

.cont-btn:hover .btn-b {
    color: red;
    background-color: rgba(239,237,236,0.6);
    text-decoration: none
}

.btn-active {
    transition: all .3s ease;
    width: 40px;
    height: 40px;
    opacity: 1
}

.cont-btn .btn-b {
    color: #fff;
    width: 100%;
    height: 100%;
    outline: 0;
    background-color: rgba(3,155,229,0.65);
    border: 0;
    text-align: center;
    border-radius: 10%
}

.cont-btn .btn-b .boton-up {
    text-align: center;
    font-weight: 800;
    font-size: 100%;
    cursor: pointer
}

.cont-boton,.boton1 {
    position: relative;
    color: #FFF;
    background-color: orange;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12),0 1px 2px rgba(0,0,0,0.24);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12),0 1px 2px rgba(0,0,0,0.24);
    border: 0;
    display: inline-block;
    padding: 6px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none!important;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.cont-boton {
    background-color: orange
}

.cont-boton:hover,.boton1:hover {
    background-color: #fff;
    color: orange;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)
}

.boton2 {
    width: 150px;
    height: 40px;
    color: #fff;
    font-weight: 400;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    background: #0ae;
    border: outset 4px #008fc8
}

.boton2:hover {
    box-shadow: 1px 1px 5px 1px #000;
    -webkit-box-shadow: 1px 1px 5px 1px #000;
    border: inset 4px #ff6c00
}

.boton {
    position: absolute;
    text-decoration: none;
    right: 10px;
    bottom: 20px;
    height: auto;
    width: 100px;
    color: #e6e6e6;
    font-size: 20px;
    padding: 10px;
    margin: 10px;
    text-shadow: 0 -1px 3px rgba(30,30,30,0.8);
    border-radius: 5px;
    background: #d21414;
    background: -webkit-gradient(linear,left bottom,left top,color-stop(50%,#d21414),color-stop(70%,#fa1414));
    background: linear-gradient(0,#d21414 50%,#fa1414 70%);
    -webkit-box-shadow: 0 3px 1px rgba(50,50,50,0.75);
    box-shadow: 0 3px 1px rgba(50,50,50,0.75)
}

.boton3 {
    color: #FFF;
    background: #eab649;
    background: -moz-linear-gradient(45deg,#eab649 0,#ffa500 100%);
    background: -webkit-gradient(left bottom,right top,color-stop(0,#eab649),color-stop(100%,#ffa500));
    background: -webkit-linear-gradient(45deg,#eab649 0,#ffa500e 100%);
    background: -o-linear-gradient(45deg,#eab649 0,#ffa500 100%);
    background: -ms-linear-gradient(45deg,#eab649 0,#ffa500 100%);
    background: linear-gradient(45deg,#eab649) 0,#ffa500 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eab649',endColorstr='#ffa500',GradientType=1);
    border-bottom: 1px solid #949494;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    display: inline-block;
    padding: 10px 20px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none!important;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.boton3:hover {
    background: #ffa500);
    background: -moz-linear-gradient(top,#ffa500 0,#eab649 100%);
    background: -webkit-gradient(left top,left bottom,color-stop(0,#ffa500),color-stop(100%,rgba(237,30,121,1)));
    background: -webkit-linear-gradient(top,#ffa500 0,rgba(237,30,121,1) 100%);
    background: -o-linear-gradient(top,#ffa500 0,#eab649 100%);
    background: -ms-linear-gradient(top,#ffa500 0,#eab649) 100%);
    background: linear-gradient(to bottom,#ffa500 0,#eab649 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa500',endColorstr='#eab649',GradientType=0);
    border-bottom: 3px solid #fff;
    color: #fff;
    padding: 10px 26px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)
}

.zoom:hover {
    background-image: url(../imagenes/zoom-in.png);
    background-size: cover;
    z-index: 200
}

.ocultar {
    display: none
}

@media only screen and (max-width: 768px) {
    .cabana2,.cabana {
        width:100%;
        height: auto
    }

    .cabana2 figure,.cabana figure {
        width: 100%;
        height: auto;
        background-image: linear-gradient(-35deg,#d98c00 3%,orange 94%);
        margin: 0;
        padding: 0;
        display: inline-block
    }

    .cabana2 figure figcaption p {
        color: white;
        text-align: left
    }

    .cabana2 figure {
        background: #52b92b;
        background-image: linear-gradient(-35deg,#007100 3%,#52b92b 94%)
    }

    .cabana2 figure .img-figure,.cabana figure .img-figure {
        margin: 0;
        padding: 0;
        float: none;
        width: 100%;
        height: auto;
        overflow: hidden
    }

    .cabana2 figure .img-figure img,.cabana figure .img-figure img {
        width: 100%;
        height: auto;
        float: none;
        background-size: cover
    }

    .cabana2 figure figcaption,.cabana figure figcaption {
        width: 100%;
        margin: 0;
        float: left;
        padding: 40px;
        color: white
    }

    .cabana2 figure figcaption h2,.cabana figure figcaption h2 {
        text-align: center;
        color: white
    }
}

@media only screen and (max-width: 480px) {
    .redes {
        position:absolute;
        height: 44px;
        width: 155px;
        top: 20%;
        right: 0;
        font-size: 76%;
        letter-spacing: -0.02em
    }

    .redes .contacto {
        float: right;
        width: 100%;
        height: 100%;
        color: #11418b;
        font-weight: 400;
        position: absolute
    }

    .baner {
        margin: 10px auto;
        text-align: left;
        padding: 10px;
        height: auto;
        width: 280px;
        right: 0;
        bottom: 9%
    }

    .baner h3 {
        font-size: 20px!important;
        line-height: 2em;
        margin-bottom: 4px;
        margin-top: 4px
    }

    .baner p {
        font-size: 13px!important;
        text-align: center;
        width: 200px;
        margin: 0 0 0 15%
    }

    .baner boton0 {
        border: solid 2px #52b92b;
        color: #fff;
        margin-top: 10px;
        margin-left: 80px;
        padding: 2px;
        position: relative;
        text-align: center;
        text-decoration: none;
        -webkit-transition: all 2s erase;
        -webkit-transition: all 2s;
        -webkit-transition: all 1.5s;
        transition: all 1.5s
    }

    p {
        line-height: 1.333333334;
        margin-bottom: 20px;
        margin-bottom: 2rem
    }

    .boton2 {
        width: 50px;
        height: 40px;
        color: #fff;
        font-weight: 200;
        padding: 5px;
        border-radius: 5px;
        text-decoration: none;
        background: #0ae;
        border: outset 4px #008fc8
    }

    #sidebar {
        display: none
    }

    .content-pc .content-texto {
        position: absolute;
        top: 2%;
        left: 10%;
        width: 80%;
        height: 100%;
        float: left;
        color: #fff;
        font-size: 100%
    }
}

@media screen and (max-width: 61.9375em) {
    body {
        margin:0!important
    }

    header {
        top: 0;
        left: 0;
        position: relative
    }

    header .contenedor h2 {
        display: none;
        font-size: 0
    }

    .redes {
        display: none
    }
}
