html,
body {
    width: 100%;
    height: 100%;
}

main {
    width: 100%;
}

section {
    background-size: cover;
    background-position: center;
    /* opacity: 0.5;*/
}

section .main {
    max-width: 1100px;
    padding: 75px 10% 100px 10%;
    margin: auto;
    text-align: left;
}

section .uno {
    background: rgba(0, 136, 177, 0.61);
    padding: 10px 4%;
    border-radius: 35px;
}

section h1 {
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: 3em;
    color: white;
}

section h2 {
    font-size: 1.2em;
    font-weight: 200;
    color: #ddd;
}

section p {
    margin-bottom: 20px;
    color: white;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

section p a {
    margin: 0 auto;
}


/*section #intro img{opacity: 0.5;}*/

.fondo {
    background: blue;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#0088b1, #062f5f);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#0088b1, #062f5f);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#0088b1, #062f5f);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(#0088b1, #062f5f);
    /* Standard syntax */
}


/*background: linear-gradient(rgb(0, 61, 105),rgb(0, 74, 128));*/

article div {
    /*overflow: auto;*/
}

article .main {
    max-width: 1000px;
    padding: 40px 1% 25px 1%;
    margin: auto;
    color: white;
}

article img {
    display: block;
    max-width: 100%;
    margin: 0 auto 30px 0;
}

article h1 {
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 2.2em;
    font-weight: 200;
}

article h2 {
    margin-bottom: 15px;
    font-size: 1.7em;
    font-weight: 200;
    color: #ffffff;
}

article p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

article p.column {
    width: 40%;
    margin-left: 5%;
    float: right;
}

article p a {
    text-decoration: none;
    color: #91e6ff;
    font-weight: 600;
}

@media screen and (max-width: 600px) {
    article p.column {
        width: 90%;
        margin: auto;
        float: none;
    }
    article .main {
    padding: 40px 5% 25px 5%;
    
}
}


/*---------------*/

article iframe {
    height: 400px;
    margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
    article iframe {
        height: 275px;
    }
}

@media screen and (max-width: 400px) {
    article iframe {
        height: 200px;
    }
}


/*---------------*/

blockquote {
    width: 80%;
    margin: 30px auto;
    padding: 0 0 0 20px;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-left: #ffffff 5px solid;
}

blockquote span {
    margin-top: 15px;
    font-family: 'Open Sans', serif;
    font-size: 16px;
    color: #ffffff;
}

blockquote a {
    color: #9ee5fa;
}


/*SLIDER*/

.slider {
    width: 70%;
    height: 425px;
    position: relative;
    margin: 0 auto;
    background-color: #0088b1;
}

.slider .controls {
    width: 100%;
    height: 85%;
    position: relative;
    z-index: 10;
}

.slider .controls ul.tabs {
    width: 100%;
    position: absolute;
    bottom: -85px;
    text-align: center;
}

.slider .controls ul.tabs li {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    opacity: .5;
}

.slider .controls ul.tabs li.current {
    opacity: 1;
}

.slider .controls ul.arrows {
    width: 100%;
    position: absolute;
    top: 40%;
}

.slider .controls ul.arrows li {
    width: 40px;
    height: 90px;
    position: absolute;
    cursor: pointer;
    opacity: .5;
    transition: opacity 0.5s ease 0s;
}

.slider .controls ul.arrows li.backward {
    left: 5px;
    background-image: url(../img/arrow_backward.png);
}

.slider .controls ul.arrows li.forward {
    right: 5px;
    background-image: url(../img/arrow_forward.png);
}

.slider .controls ul.arrows li:hover {
    opacity: 1;
}

.slider .disabled {
    visibility: hidden !important;
}

.slider .items {
    width: 100%;
    height: inherit;
    position: absolute;
    /*background-color: aqua;*/
    top: 0;
}

.slider .items .item {
    width: 100%;
    height: inherit;
    position: absolute;
    display: none;
}

.slider .items .item .image {
    width: 100%;
    height: 85%;
    margin-bottom: 15px;
    background-position: center;
    background-size: cover;
    /*opacity: 0.5;*/
}

.slider .items .item p{
    
    
    margin: auto;
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 17px;
    font-weight: 600;
    }

.slider .items .item div{
    margin: 0 auto;
    width: 90%;
    padding: 2%;
    color: white;
    font-size: 0.8em;
    line-height: 15px;
    font-weight: 600;
}


@media screen and (max-width: 600px){
    .slider{
        width: 100%;
        height: 525px;
    }
}


/*SLIDER*/


/*OTROS*/

.arrow {
    width: 50px;
    height: 50px;
    display: block;
    margin-top: 20px;
    border-radius: 50%;
    background-color: #062f5f;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .5;
    transition: all .5s ease;
}

.arrow.down {
    background-image: url(../svg/arrow_down.svg);
}

.arrow:hover {
    opacity: 1;
}


/*OTROS*/


/*ANIMATION*/

@keyframes animationFrames {
    0% {
        opacity: 0;
        background-size: 120%;
    }
    10% {
        opacity: 1;
        background-size: 120%;
    }
    100% {
        opacity: 1;
        background-size: 100%;
    }
}

@-moz-keyframes animationFrames {
    0% {
        opacity: 0;
        background-size: 120%;
    }
    10% {
        opacity: 1;
        background-size: 120%;
    }
    100% {
        opacity: 1;
        background-size: 100%;
    }
}

@-webkit-keyframes animationFrames {
    0% {
        opacity: 0;
        background-size: 120%;
    }
    10% {
        opacity: 1;
        background-size: 120%;
    }
    100% {
        opacity: 1;
        background-size: 100%;
    }
}

@-o-keyframes animationFrames {
    0% {
        opacity: 0;
        background-size: 120%;
    }
    10% {
        opacity: 1;
        background-size: 120%;
    }
    100% {
        opacity: 1;
        background-size: 100%;
    }
}

@-ms-keyframes animationFrames {
    0% {
        opacity: 0;
        background-size: 120%;
    }
    10% {
        opacity: 1;
        background-size: 120%;
    }
    100% {
        opacity: 1;
        background-size: 100%;
    }
}


/*ANIMATION*/

#boxes {
    margin: 20px auto;
}

#boxes .og-grid {
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

#boxes .og-grid li {
    display: inline-block;
    margin: 10px 5px 0 5px;
    vertical-align: top;
}

#boxes .og-grid li ul li {
    line-height: 0.8em;
}

#boxes .og-grid li > a,
#boxes .og-grid li > a img {
    border: none;
    outline: none;
    display: block;
    position: relative;
}

#boxes .og-grid li.og-expanded > a::after {
    top: auto;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #ddd;
    border-width: 15px;
    left: 50%;
    margin: -20px 0 0 -15px;
}

#boxes .og-expander {
    position: absolute;
    background: #ddd;
    top: auto;
    left: 0;
    width: 100%;
    margin-top: 10px;
    text-align: left;
    height: 0;
    overflow: hidden;
}

#boxes .og-expander-inner {
    padding: 50px 30px;
    height: 100%;
}

#boxes .og-close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

#boxes .og-close::before,
#boxes .og-close::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    height: 1px;
    background: #888;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

#boxes .og-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#boxes .og-close:hover::before,
#boxes .og-close:hover::after {
    background: #333;
}

#boxes .og-fullimg,
#boxes .og-details {
    width: 50%;
    float: left;
    height: 100%;
    overflow: hidden;
    position: relative;
}

#boxes .og-details {
    padding: 0 30px 0 30px;
}

#boxes .og-fullimg {
    text-align: center;
}

#boxes .og-fullimg img {
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
}

#boxes .og-details h3 {
    font-weight: 300;
    font-size: 40px;
    margin-bottom: 20px;
}

#boxes .og-details p {
    color: #383838;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

#boxes .og-details a {
    height: 50px;
    font-weight: 700;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    text-transform: uppercase;
    padding: 0 15px;
    background: #333;
    display: inline-block;
    margin: 10px 0;
    outline: none;
    transition: background 1s ease;
}

#boxes .og-details a::before {
    content: '\2192';
    display: inline-block;
    margin-right: 10px;
}

#boxes .og-details a:hover {
    background: #4b4b4b;
}

#boxes .og-loading {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    -webkit-animation: loader 0.5s infinite ease-in-out both;
    -moz-animation: loader 0.5s infinite ease-in-out both;
    animation: loader 0.5s infinite ease-in-out both;
}

@-webkit-keyframes loader {
    0% {
        background: #ddd;
    }
    33% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
    }
    66% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
    }
}

@-moz-keyframes loader {
    0% {
        background: #ddd;
    }
    33% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
    }
    66% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
    }
}

@keyframes loader {
    0% {
        background: #ddd;
    }
    33% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
    }
    66% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
    }
}

@media screen and (max-width: 830px) {
    #boxes .og-expander h3 {
        font-size: 32px;
    }
    #boxes .og-expander p {
        font-size: 13px;
    }
    #boxes .og-expander a {
        font-size: 12px;
    }
}

@media screen and (max-width: 650px) {
    #boxes .og-fullimg {
        display: none;
    }
    #boxes .og-details {
        float: none;
        width: 100%;
    }
}


/*OTROS*/

.simbolo {
    /*background-color: darkgrey;*/
    padding: 2%;
    margin: 0 1% 20px 1%;
    width: 30%;
    text-align: center;
    border-radius: 10px;
    border: 2px #ffa700 solid;
}

.requisitos {
    width: 100%;
}

.simbolo img {
    margin: 0 auto;
}

.requisitos div {
    display: inline-block;
}

@media screen and (max-width: 500px) {
    .simbolo {
        width: 100%;
    }
}

.mobile_view {
    display: none;
}

.desktop_view,
.mobile_view {
    margin: 15px;
}

.desktop_view .wrapper {
    width: 590px;
    height: 690px;
    overflow: hidden;
}

.imageFull {
    width: 100%;
}

.mobile_view .wrapper {
    height: 400px;
    overflow: hidden;
}

@media (max-width: 600px) {
    .mobile_view {
        display: block;
    }
    .desktop_view {
        display: none;
    }
}

table {
    background-color: #2e3b4a;
    text-align: center;
    padding: 2px;
    width: 100%;
    font-size: 13px;
    border: 1px #a0a0a0 solid;
    margin-bottom: 20px;
}

table tr {
    border: 1px white solid;
}

.primera {
    font-weight: 600;
    background-color: #1d556f;
    text-align: left;
    vertical-align: text-top;
    font-size: 10px
}

.tipo {
    text-align: left;
}

.total {
    font-weight: 600;
}

article ul {
    margin-bottom: 20px;
}

article ul li {
    list-style: disc;
    list-style-position: inside;
    font-size: 14px;
    margin-bottom: 5px;
}


/*=====================*/


/*=====================*/

.cajitas {
    width: 100%;
    margin: auto;
    padding: 0;
    text-align: center;
}

.cajitas > h2 {
    clear: both;
    margin: 0;
    padding: 2em 1% 0;
    color: #484B54;
    font-weight: 800;
    font-size: 1em;
}

.cajitas > h2:first-child {
    padding-top: 0em;
}


/*Grid*/

.grid {
    position: relative;
    clear: both;
    margin: 0 auto;
    padding: 0.5em 0 4em;
    max-width: 100%;
    list-style: none;
}


/* Common style */

.grid figure {
    position: relative;
    overflow: hidden;
    margin: 10px 0.5%;
    width: 260px;
    height: 400px;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
    display: inline-block;
}

.grid figure img {
    position: relative;
    display: block;
    /*min-height: 100%;*/
    /*max-width: 100%;*/
    opacity: 0.8;
    margin: 30px auto 0 auto;
}

.grid figure figcaption {
    padding: 1.1em;
    color: #fff;
    opacity: 0.9;
    text-transform: uppercase;
    /*font-size: 1.25em;*/
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Anchor will cover the whole item by default */


/* For some effects it will show as a button */

.grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {
    width: 100%;
    background: #000;
    word-spacing: -0.15em;
    font-weight: 400;
    font-size: 1em;
    text-align: center;
}

.grid figure h2 span {
    font-weight: 600;
    color: #2da2d6;
}

.grid figure h2,
.grid figure ul {
    margin: 0 auto;
}

.grid figure ul {
    letter-spacing: -1px;
    font-size: 60%;
    line-height: 1.8em;
    list-style: none;
}

.grid figure ul li {
    list-style: none;
    margin-bottom: 0px;
}


/*---------------*/


/***** esconde *****/


/*---------------*/

figure.effect-esconde {
    background: #2f3238;
}

figure.effect-esconde img {
    max-width: none;
    height: 300px;
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure.effect-esconde figcaption {
    text-align: left;
}

figure.effect-esconde h2 {
    position: relative;
    padding: 0.3em 0;
    margin-bottom: 10px;
}

figure.effect-esconde ul {
    display: inline-block;
    margin: 0 0 0.25em;
    padding: 0.6em 1em;
    /*background: rgba(255, 255, 255, 0.1);*/
    color: #fff;
    text-transform: none;
    -webkit-transition: opacity 0.25s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-360px, 0, 0);
    transform: translate3d(-600px, 0, 0);
}

figure.effect-esconde ul:first-child {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

figure.effect-esconde ul:nth-of-type(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

figure.effect-esconde ul:nth-of-type(3) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

figure.effect-esconde:hover ul:first-child {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

figure.effect-esconde:hover ul:nth-of-type(2) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

figure.effect-esconde:hover ul:nth-of-type(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

figure.effect-esconde:hover img {
    opacity: 0.1;
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

figure.effect-esconde:hover ul {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.par {
    margin: 0 auto;
}

.atraccion {
    width: 23%;
    height: 550px;
    padding: 15px;
    margin: 0 0.6%;
    background-color: #0088b1;
    border-radius: 5px;
    display: inline-block;
    overflow: auto;
}
.atraccion h2{
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
}

.atraccion p {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.3px;
    margin-bottom: 5px;
}

.atraccion p span {
    font-weight: 600;
}

@media screen and (max-width: 700px) {
    .atraccion {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 400px) {
    .atraccion {
        width: 100%;
        margin-bottom: 20px;
    }
}