html,
body {
    width: 100%;
    height: 100%;
    background-color: #0c365e;
}

.fondo {
    background: linear-gradient(rgb(12, 118, 150), rgb(12, 54, 94));
}

.top {
    background-image: linear-gradient(rgba(12, 118, 150, 0.2), rgba(12, 54, 94, 0.9)), url(../img/backG.png);
    z-index: -3;
    background-repeat: no-repeat;
}

main {
    width: 100%;
}

section {
    background-size: cover;
    background-position: center;
}

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

section h1 {
    margin-bottom: 25px;
    font-family: 'PT Sans', sans-serif;
    font-size: 2.7em;
    color: #fff;
}

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

section p {
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

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

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

article h1 {
    margin-bottom: 10px;
    font-family: 'PT Sans', sans-serif;
    font-size: 43px;
    color: #fff;
    text-align: center;
}

article h2 {
    margin-bottom: 15px;
    font-size: 35px;
    font-weight: 200;
    color: #2BC1EF;
    text-align: center;
}

article h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 200;
    color: #ffffff;
    /*text-align: center;*/
}

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

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

article .column_r {
    width: 500px;
    /*    margin-left: 5%;*/
    float: right;
}

article .column_l {
    width: 150px;
    /*    margin-left: 5%;*/
    float: left;
}

@media screen and (max-width: 600px) {
    article p.column {
        width: 90%;
        margin: auto;
        float: none;
    }
    article h3 {
        font-size: 18px;
    }
}

blockquote {
    width: 80%;
    margin: 30px auto;
    padding: 0 0 0 20px;
    font-style: italic;
    font-family: 'PT Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    border-left: #4a4a4a 10px solid;
}

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


/*SLIDER*/

.slider {
    width: 100%;
    height: 500px;
    position: relative;
    background-color: #f4f4f4;
}

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

.slider .controls ul.tabs {
    width: 100%;
    position: absolute;
    bottom: 10px;
    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;
    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;
}

.slider .items .item p {
    width: 90%;
    height: 10%;
    max-width: 600px;
    margin: auto;
    color: #000;
    font-size: 0.8em;
    line-height: 15px;
    font-weight: 300;
    text-align: center;
    overflow: hidden;
}


/*SLIDER*/


/*OTROS*/

.arrow {
    width: 50px;
    height: 50px;
    display: block;
    margin-top: 20px;
    border-radius: 50%;
    background-color: #000;
    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*/


/* intervencion */

@import "http://fonts.googleapis.com/css?family=Pathway+Gothic+One";
.loader {
    position: relative;
    width: 4em;
    height: 4em;
    color: #aab4c1;
    font: bold 3em/3em "Pathway Gothic One", sans-serif;
    letter-spacing: 0.075em;
    text-align: center;
    padding-top: 0px;
    /* top: 50px; */
}

.loader:before {
    -webkit-animation: spin 1.25s infinite linear;
    -moz-animation: spin 1.25s infinite linear;
    -ms-animation: spin 1.25s infinite linear;
    animation: spin 1.25s infinite linear;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 4em;
    height: 4em;
    border-radius: 3.75em 3.625em 3.75em 3.625em;
    box-shadow: 0.0125em 0.0125em 0 #100708 inset, 0.125em -0.05em 0 #100708 inset, 0.05em 0.0375em 0 #100708, 0.125em 0.175em 0 #10b6f4, -0.0625em -0.1em 0 #e09319;
}

.loader span {
    -ms-animation: highlight 1.25s infinite ease-in-out;
    -moz-animation: highlight 1.25s infinite ease-in-out;
    -webkit-animation: highlight 1.25s infinite ease-in-out;
    animation: highlight 1.25s infinite ease-in-out;
}

.loader span:nth-child(1) {
    -ms-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.loader span:nth-child(2) {
    -ms-animation-delay: .25s;
    -moz-animation-delay: .25s;
    -webkit-animation-delay: .25s;
    animation-delay: .25s;
}

.loader span:nth-child(3) {
    -ms-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-ms-keyframes highlight {
    0% {
        font-size: 1.03125em;
        color: #aab4c1;
    }
    25%,
    75% {
        font-size: 1.07813em;
        color: #4e363b;
    }
    75.1% {
        font-size: 1.03125em;
    }
    87.5% {
        color: #aab4c1;
    }
}

@-moz-keyframes highlight {
    0% {
        font-size: 1.03125em;
        color: #aab4c1;
    }
    25%,
    75% {
        font-size: 1.07813em;
        color: #4e363b;
    }
    75.1% {
        font-size: 1.03125em;
    }
    87.5% {
        color: #aab4c1;
    }
}

@-webkit-keyframes highlight {
    0% {
        font-size: 1.03125em;
        color: #aab4c1;
    }
    25%,
    75% {
        font-size: 1.07813em;
        line-height: 1.875em;
        color: #4e363b;
    }
    75.1% {
        font-size: 1.03125em;
    }
    87.5% {
        color: #aab4c1;
    }
}

@keyframes highlight {
    0% {
        font-size: 1.03125em;
        color: #aab4c1;
    }
    25%,
    75% {
        font-size: 1.07813em;
        color: #4e363b;
    }
    75.1% {
        font-size: 1.03125em;
    }
    87.5% {
        color: #aab4c1;
    }
}


/* fin intervencion */

#playlist {
    text-align: left;
    margin-bottom: 20px;
    width: 90%;
    text-align: center
    /*    margin: 50px;*/
}

#playlist .uno {
    display: inline-block;
    margin: 10px;
    width: 200px;
    height: 200px;
    /* background: #24a0c6; */
    transition: background 1s ease;
    vertical-align: top;
}

#playlist .dos {
    display: inline-block;
    margin: 70px 10px 10px 10px;
    width: 250px;
    height: 100px;
    /*vertical-align: middle;*/
}


/*
#playlist li a {
	width: 250px;
	display: block;
	background: #ccc;
	transition: background 1s ease;
}
*/


/*
#playlist li a:hover {
	background: #393939;
}
*/

#playlist li img {
    width: 100%;
    height: 170px;
    margin: 0;
}

#playlist li span {
    display: block;
    padding: 20px;
    font-size: 14px;
    /*
	font-weight: 600;
	color: #fff;
*/
    text-align: left;
}

#playlist li a span em {
    display: block;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
}


/*OTROS*/

#lista li {
    display: inline-block;
    margin: 10px;
    width: 250px;
    transition: background 1s ease;
    vertical-align: top;
}

.cifras {
    max-width: 1500px;
    padding: 40px 10% 25px 10%;
    margin: auto;
    text-align: center;
}

#lista li img {
    display: inline-block;
    width: 250px;
    transition: background 1s ease;
    vertical-align: top;
}

@media screen and (max-width: 600px) {
    article h1 {
        font-size: 30px;
        line-height: 32px;
    }
    article h2 {
        font-size: 30px;
        line-height: 30px;
    }
    .cifras img {
        max-width: 340px;
        margin: 0 auto;
        text-align: inherit;
    }
    #playlist .dos {
        margin-top: 10px;
    }
}


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

.mobile_view {
    display: none;
}

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

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

.imageFull {
    width: 100%;
}

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


/*  MEDIA QUERY AJUSTES MOBILE  */

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