@charset "UTF-8";
@font-face {
    font-family: "museo_sans100";
    src: url("../_fonts/museosans-100-webfont.woff2") format("woff2"), url("../_fonts/museosans-100-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "museo_sans300";
    src: url("../_fonts/museosans_300-webfont.woff2") format("woff2"), url("../_fonts/museosans_300-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "museo_sans700";
    src: url("../_fonts/museosans_700-webfont.woff2") format("woff2"), url("../_fonts/museosans_700-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "museo_sans900";
    src: url("../_fonts/museosans_900-webfont.woff2") format("woff2"), url("../_fonts/museosans_900-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: "museo_sans300";
    font-size: 0.875em;
    height: 100%;
    background: url(../_img/background.jpg) #006c6c;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
}

input {
    outline: inherit;
}

a:hover {
    text-decoration: none;
}

.form-group {
    margin-bottom: 30px;
}

.col-fix {
    min-width: 840px;
}
@media (max-width: 991px) {
    .col-fix {
        min-width: inherit;
    }
}

.brand-float {
    position: absolute;
    right: 30px;
    top: 30px;
}
@media (max-width: 991px) {
    .brand-float {
        width: 100px;
    }
}
@media (max-width: 767px) {
    .brand-float {
        width: 70px;
    }
}
@media (max-width: 575px) {
    .brand-float {
        width: 50px;
        top: 15px;
        right: 15px;
    }
}

.neuma-input {
    text-align: center;
    display: block;
    width: 100%;
    background-clip: padding-box;
    background-color: rgba(0, 108, 108, 0.3);
    height: 100px;
    padding: 30px;
    text-transform: uppercase;
    border: 3px solid #fff;
    letter-spacing: 10px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    font-family: "museo_sans100";
    font-size: 2.5em;
    color: #ffffff;
    line-height: 1;
}
.neuma-input.placeholder {
    letter-spacing: 10px;
    color: #fff;
}
.neuma-input:-moz-placeholder {
    letter-spacing: 10px;
    color: #fff;
}
.neuma-input::-moz-placeholder {
    letter-spacing: 10px;
    color: #fff;
}
.neuma-input:-ms-input-placeholder {
    letter-spacing: 10px;
    color: #fff;
}
.neuma-input::-webkit-input-placeholder {
    letter-spacing: 10px;
    color: #fff;
}
@media (max-width: 767px) {
    .neuma-input {
        height: 80px;
        font-size: 1.5625em;
    }
}

.neuma-h1 {
    margin: 50px auto 50px;
    text-transform: uppercase;
    text-align: center;
    max-width: -webkit-calc(100% - 330px);
    max-width: -moz-calc(100% - 330px);
    max-width: calc(100% - 330px);
    font-family: "museo_sans700";
    font-size: 3.75em;
    color: #ffffff;
    line-height: 1.3;
}
@media (max-width: 991px) {
    .neuma-h1 {
        font-size: 2.5em;
        margin-top: 60px;
        max-width: -webkit-calc(100% - 260px);
        max-width: -moz-calc(100% - 260px);
        max-width: calc(100% - 260px);
    }
}
@media (max-width: 767px) {
    .neuma-h1 {
        margin-top: 50px;
        font-size: 1.875em;
        max-width: -webkit-calc(100% - 200px);
        max-width: -moz-calc(100% - 200px);
        max-width: calc(100% - 200px);
    }
}
@media (max-width: 575px) {
    .neuma-h1 {
        margin-top: 30px;
        font-size: 1.875em;
        max-width: -webkit-calc(100% - 112px);
        max-width: -moz-calc(100% - 112px);
        max-width: calc(100% - 112px);
    }
}
.neuma-h1::after {
    position: relative;
    display: block;
    margin-top: 50px;
    font-family: Font Awesome\ 5 Pro;
    font-weight: 100;
    content: "";
    font-size: 1.875em;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.btn-box {
    margin-top: 30px;
}
@media (max-width: 991px) {
    .btn-box {
        margin-top: 0;
        margin-bottom: 50px;
    }
}

.btn-avanzar {
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    background-color: rgba(0, 108, 108, 0.3);
    height: 100px;
    padding: 30px 120px 30px 60px;
    text-transform: uppercase;
    border: 3px solid #fff;
    border-right: none;
    cursor: pointer;
    -webkit-border-radius: 40px 0 0 40px;
    border-radius: 40px 0 0 40px;
    font-family: "museo_sans700";
    font-size: 2.5em;
    color: #ffffff;
    line-height: 1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
@media (max-width: 991px) {
    .btn-avanzar {
        position: relative;
        width: 100%;
        -webkit-border-radius: 40px;
        border-radius: 40px;
        border: 3px solid #fff;
    }
}
@media (max-width: 767px) {
    .btn-avanzar {
        height: 80px;
        font-size: 1.5625em;
    }
}
.btn-avanzar.btn-relative {
    position: relative;
    padding: 30px 60px;
    width: inherit;
    border: 3px solid #fff;
    -webkit-border-radius: 40px;
    border-radius: 40px;
}
@media (max-width: 767px) {
    .btn-avanzar.btn-relative {
        height: auto;
        padding: 20px 50px;
    }
}
@media (max-width: 575px) {
    .btn-avanzar.btn-relative {
        height: auto;
        padding: 15px 40px;
    }
}
.btn-avanzar.btn-relative::after {
    display: none;
}
.btn-avanzar:hover {
    background-color: #fff;
    color: #2e5d5c;
    border-color: #2e5d5c;
}
.btn-avanzar::after {
    display: inline-block;
    margin-left: 30px;
    font-family: Font Awesome\ 5 Pro;
    font-weight: 900;
    content: "";
    background-color: #ffffff;
    color: #2e5d5c;
    font-size: 0.625em;
    width: 60px;
    height: 60px;
    padding-top: 19px;
    padding-left: 3px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    position: absolute;
    top: 16px;
}
@media (max-width: 991px) {
    .btn-avanzar::after {
        top: 12px;
        width: 50px;
        height: 50px;
    }
}
.btn-avanzar:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.btn-avanzar:disabled:hover {
    background-color: rgba(0, 108, 108, 0.3);
    border-color: #fff;
    color: #fff;
    opacity: 0.4;
}

.canta-check-box {
    font-family: "museo_sans100";
    font-size: 2.1875em;
    color: #ffffff;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .canta-check-box {
        font-size: 1.875em;
    }
}
.canta-check-box:hover {
    text-decoration: none;
    color: #ffffff;
}
.canta-check-box i {
    position: relative;
    top: 2px;
}

@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }
}

.row-1 {
    margin-top: 230px;
}
@media (max-width: 991px) {
    .row-1 {
        margin-top: 180px;
    }
}
@media (max-width: 767px) {
    .row-1 {
        margin-top: 150px;
    }
}
@media (max-width: 575px) {
    .row-1 {
        margin-top: 100px;
    }
}
.row-1 > div:last-child {
    padding-right: 0 !important;
    max-width: 475px;
}
@media (max-width: 1375px) {
    .row-1 > div:last-child {
        max-width: 400px;
        min-width: 400px;
    }
}
@media (max-width: 991px) {
    .row-1 > div:last-child {
        max-width: inherit;
        min-width: inherit;
    }
}

.neuma-screen {
    position: relative;
    padding: 50px 70px;
    min-height: 600px;
    border: 2px solid #fff;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-border-radius: 20px;
    border-radius: 20px;
    margin: 0 50px;
}
@media (max-width: 1375px) {
    .neuma-screen {
        min-height: inherit;
    }
}
@media (max-width: 1199px) {
    .neuma-screen {
        padding: 50px 30px;
        margin: 0 30px;
    }
}
@media (max-width: 991px) {
    .neuma-screen {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .neuma-screen {
        margin: 0 15px 30px;
        padding: 20px;
    }
}
.neuma-screen h1 {
    text-align: center;
    margin-top: 40px;
    font-family: "museo_sans300";
    font-size: 4.375em;
    color: #ffffff;
    line-height: 1.3;
}
@media (max-width: 1375px) {
    .neuma-screen h1 {
        font-size: 3.125em;
    }
}
@media (max-width: 1199px) {
    .neuma-screen h1 {
        font-size: 2.8125em;
    }
}
@media (max-width: 767px) {
    .neuma-screen h1 {
        font-size: 1.875em;
    }
}
@media (max-width: 575px) {
    .neuma-screen h1 {
        font-size: 1.5625em;
    }
}
.neuma-screen h1 strong {
    display: block;
    color: #00a99d;
    font-family: "museo_sans900";
}
@media (max-width: 767px) {
    .neuma-screen h1 strong {
        display: inline;
    }
}
.neuma-screen .icon {
    position: relative;
    margin: 40px auto 0;
    max-width: 150px;
    text-align: center;
}
@media (max-width: 767px) {
    .neuma-screen .icon {
        margin-top: 20px;
    }
}
.neuma-screen .icon i {
    font-size: 7.5em;
    color: #fff;
}
@media (max-width: 1375px) {
    .neuma-screen .icon i {
        font-size: 5.625em;
    }
}
@media (max-width: 767px) {
    .neuma-screen .icon i {
        font-size: 4.375em;
    }
}

.ranking {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 100px;
}
.ranking > li {
    list-style: none;
    position: relative;
    width: 500px;
    height: 94px;
    margin: 0 0 20px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -moz-transform: translate3d(-20px, 0 , 0);
    -webkit-transform: translate3d(-20px, 0 , 0);
    -o-transform: translate3d(-20px, 0 , 0);
    -ms-transform: translate3d(-20px, 0 , 0);
    transform: translate3d(-20px, 0 , 0);
}
.ranking > li.in {
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -moz-transform: translate3d(0, 0 , 0);
    -webkit-transform: translate3d(0, 0 , 0);
    -o-transform: translate3d(0, 0 , 0);
    -ms-transform: translate3d(0, 0 , 0);
    transform: translate3d(0, 0 , 0);
}
.ranking > li.in.r1 {
    width: 470px;
}
.ranking > li.in.r2 {
    width: 455px;
}
.ranking > li.in.r3 {
    width: 440px;
}
.ranking > li.in.r4, .ranking > li.in.r5, .ranking > li.in.r6, .ranking > li.in.r7, .ranking > li.in.r8 {
    width: 375px;
}
.ranking > li.r1 {
    background: url(../_img/rank1.png);
    background-repeat: no-repeat;
}
.ranking > li.r2 {
    background: url(../_img/rank2.png);
    background-repeat: no-repeat;
}
.ranking > li.r3 {
    background: url(../_img/rank3.png);
    background-repeat: no-repeat;
}
.ranking > li.r4 {
    background: url(../_img/rank4.png);
    background-repeat: no-repeat;
    height: 78px;
}
.ranking > li.r5 {
    background: url(../_img/rank5.png);
    background-repeat: no-repeat;
    height: 78px;
}
.ranking > li.r6 {
    background: url(../_img/rank6.png);
    background-repeat: no-repeat;
    height: 78px;
}
.ranking > li.r7 {
    background: url(../_img/rank7.png);
    background-repeat: no-repeat;
    height: 78px;
}
.ranking > li.r8 {
    background: url(../_img/rank8.png);
    background-repeat: no-repeat;
    height: 78px;
}
.ranking > li .st1 {
    width: 190px !important;
    height: 35px;
    margin-top: 23px;
    margin-left: 200px;
    text-align: center;
    font-style: italic;
    letter-spacing: 1px;
    text-align: right;
    font-family: "museo_sans900";
    font-size: 2.5em;
    color: #ffffff;
    line-height: 1;
}
.ranking > li .st2 {
    width: 190px;
    margin-left: 190px;
    min-height: 20px;
    margin-top: 17px;
    font-family: "museo_sans700";
    font-size: 1.125em;
    color: #ffffff;
    line-height: 1;
}
.ranking > li.r4 .st1, .ranking > li.r5 .st1, .ranking > li.r6 .st1, .ranking > li.r7 .st1, .ranking > li.r8 .st1 {
    margin-left: 150px;
    margin-top: 18px;
}
.ranking > li.r4 .st2, .ranking > li.r5 .st2, .ranking > li.r6 .st2, .ranking > li.r7 .st2, .ranking > li.r8 .st2 {
    margin-left: 170px;
    margin-top: 9px;
}

.nuema-screnn {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.nuema-screnn > div {
    text-align: center;
}
.nuema-screnn > div h1 {
    font-family: "museo_sans900";
    font-size: 4.6875em;
    color: #ffffff;
    line-height: 1.3;
}
@media (max-width: 991px) {
    .nuema-screnn > div h1 {
        font-size: 3.4375em;
    }
}
@media (max-width: 767px) {
    .nuema-screnn > div h1 {
        font-size: 2.5em;
    }
}
@media (max-width: 575px) {
    .nuema-screnn > div h1 {
        font-size: 1.5625em;
    }
}
.nuema-screnn > div p {
    font-family: "museo_sans300";
    font-size: 3.75em;
    color: #ffffff;
    line-height: 1.5;
}
@media (max-width: 991px) {
    .nuema-screnn > div p {
        font-size: 3.4375em;
    }
}
@media (max-width: 767px) {
    .nuema-screnn > div p {
        font-size: 2.5em;
    }
}
@media (max-width: 575px) {
    .nuema-screnn > div p {
        font-size: 1.5625em;
    }
}

/*# sourceMappingURL=style.css.map */
