* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}
html::-webkit-scrollbar {
    width: 8px;
    cursor: pointer;
}
html::-webkit-scrollbar-track {
    background-color: white;
}
html::-webkit-scrollbar-thumb {
    background-color: #e39224;
    
    border-radius: 10px;
}
#splash{
    background-color: #e39224;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    opacity: 1;
    transition: all 0.5s;
}
#splash img{
    height: 75px;
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.ancho {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: block;
}
.btn-naranja {
    background-color: #e39224;
    color: #fff;
    /* border: 2px solid white; */
    padding: 10px 70px;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.1rem;
    box-shadow: 0 0 50px -25px rgba(0, 0, 0, 0.5);
}
.btn-naranja:hover {
    transform: scale(1.05);
}

header > .ancho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
}
header > .ancho > .logo > img,
footer > img {
    max-width: 300px;
}
.banner {
    padding-top: 100px;
    display: block;
    width: 100%;
    color: #fff;
    position: relative;
    background-image: url('../img-new/banner_new_desltop.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    /* background: rgb(74,125,189);
	background: linear-gradient(180deg, rgba(74,125,189,1) 0%, rgba(31,44,91,1) 100%); */
}
.banner > .ancho {
    margin-top: 40px;
    display: block;
    position: relative;
}

.imgs-banner-slider {
    display: block;
    width: 100%;
}

.banner .ancho .img {
    display: block;
    margin-bottom: -4px;
}
.banner .ancho .img .text h2 {
    display: block;
    width: 60%;
    text-align: center;
}
.slick-slide img{
    margin-bottom: 340px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.ancho > .img > .text {
    display: block;
    width: 80%;
    margin-right: auto;
}
.ancho > .img > .text > p,
.ancho > .img > .text > strong {
    display: block;
    margin-left: 50px;
    font-size: 1.2rem;
}
.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    list-style: none;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.slick-dots li {
    margin: 0 7px;
}
.slick-dots li button {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: 0;
    border: 0;
    padding: 0;
    background-color: #497bba;
    transition: all 0.2s;
}
.slick-dots li.slick-active button {
    background-color: #e39224;
    outline: 2px solid #e39224;
    outline-offset: 3px;
    transform: scale(1.1);
}

.form {
    color: #1f2c5b;
    position: absolute;
    display: block;
    background-color: #f2f2f2;
    border-radius: 20px;
    width: 480px;
    height: 566px;
    box-shadow: 10px 12px 20px 0px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    bottom: -100px;
    right: 0;
    
}
.form .loading::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
}
@keyframes loader {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.form .loading::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 75%;
    transform: translateY(-50%) translateX(-50%);
    animation: loader 0.5s linear infinite;
    z-index: 10;
    border-right: 4px solid transparent;
    border-left: 4px solid #e39224;
    border-top: 4px solid #e39224;
    border-bottom: 4px solid #e39224;
}

.container-screens {
    display: flex;
    height: 100%;
    width: 960px;
    position: relative;
    right: 0;
    transition: all 0.4s;
}
.paga-con {
    display: block;
    width: 80%;
    margin: 10px auto;
}
.screen {
    padding: 25px;
    padding-top: 10px;
    display: block;
    width: 480px;
}
.screen .columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.screen .columns > div {
    width: 50%;
    padding: 0 5px;
}
.screen .columns > div.completo {
    width: 100%;
    padding: 0 5px;
}
.screen .columns div label{
    font-size: 0.9rem;
}

.divider {
    display: block;
    width: 50%;
    height: 1px;
    border-radius: 5px;
    background-color: #1f2c5b;
    margin: 10px auto;
}
.screen .columns input,
.screen .columns select {
    border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #4473b1;
    padding: 7px;
    font-size: 1rem;
    margin: 0 auto 10px auto;
}
.screen .columns .completo input,
.screen .columns .completo select {
    border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #4473b1;
    padding: 7px;
    font-size: 1rem;
    margin: 0 auto 10px auto;
    width: 100%;
}
.screen > h2 {
    font-size: 1.5rem;
}

.screen label {
    display: block;
    margin: 5px auto;
}
.screen input[type="checkbox"] {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.screen a[target="_blank"] {
    color: #e39224;
}
.screen p,
.screen label {
    font-size: 1.1rem;
}
.screen > h3 {
    margin: 10px 0;
    display: block;
}
.screen > .btns > a {
    padding: 12px 10px;
    font-size: 0.9rem;
    text-align: center;
}
.screen > .btns > a.active {
    background-color: #e96b22;
}
.screen > .btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    margin: 15px auto;
}
.screen .double-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.screen .double-btns {

}
.screen .btn {
    display: block;
    outline: none;
    border: none;
    width: 200px;
    padding: 10px 20px;
    background-color: #1f2c5b;
    color: #fff;
    text-align: center;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.4rem;
    box-shadow: 0 0 50px -25px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
}
.screen .btn:hover {
    transform: scale(1.05);
}


main {
    background-image: url('../img/fondo.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding-top: 120px;
    color: #1f2c5b;
}
.video {
    background-color: #417DBF;
    border-radius: 30px;
    padding: 50px;
    width: 100%;
    text-align: center;
    margin: 40px auto;
    box-shadow: 0 0 50px -25px rgba(0, 0, 0, 0.5);
}
.video > .columns {
    margin-bottom: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.video > .columns > .text {
    text-align: left;
    width: 50%;
    padding-right: 40px;
}
.video > .columns > .text > p {
    font-size: 1.2rem;
    color: #eee;
}
.video > .columns > .text > strong {
    margin-bottom: 10px;
    display: block;
}
.container-video {
    display: block;
    width: 50%;
    background-color: #417DBF;
    height: 320px;
    overflow: hidden;
    border: 3px solid #ffffff;
    border-radius: 30px;
}
.container-video > iframe {
    width: 100%;
    height: 100%;
}

.ayuda {
    text-align: center;
    margin: 40px auto;
    padding: 40px 0;
}
.ayuda > h2 {
    display: block;
    margin-bottom: 10px;
}
.ayuda > p.p {
    display: block;
    margin-bottom: 50px;
    font-size: 1.3rem;
}

.grid > div {
    background-color: #fff;
    padding: 20px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.2rem;
    box-shadow: 0 0 50px -25px rgba(0, 0, 0, 0.5);
}

.grid {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
}
.img-big {
    display: block;
    width: 100%;
    margin: 30px auto;
}
.img-big.desktop{
    display: block;
}
.img-big.mobile{
    display: none;
}
.responsive {
    display: none;
}
.mano {
    text-align: center;
    margin: 50px auto;
}

.testimonios {
    text-align: center;
    padding-bottom: 350px;
}
.testimonios > h2 {
    display: block;
    margin-bottom: 50px;
}
.float-left,
.float-right {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.2rem;
    box-shadow: 0 0 50px -25px rgba(0, 0, 0, 0.5);
}
.testimonios .img-container {
    text-align: center;
    font-size: 0.9rem;
    margin-right: 20px;
}

.testimonios img {
    display: block;
    border-radius: 50%;
    width: 200px;
    margin-bottom: 10px;
}
.testimonios_superheroes {
    padding-bottom: 175px;
}
.testimonios_superheroes .img-container{
    min-width: 200px;
}
.float-right {
    float: right;
}
.float-left {
    margin-bottom: 40px;
}

.float-left > .text > .last,
.float-right > .text > .last {
    display: block;
    text-align: right;
    margin-top: 20px;
    width: 100%;
}
.float-left > .text > .last > p,
.float-right > .text > .last > p {
    display: block;
    width: 40%;
    float: right;
}

.slider {
    display: block;
    width: 100%;
    background-color: #1f2c5b;
    padding: 40px 0;
}

.container-img {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px 15px;
    background-color: #fff;
    height: 200px;
}
.container-img > img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.slick-arrow {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #eaeaea;
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
    z-index: 10;
}
.slick-arrow::before {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    transform: rotate(45deg);
}
.slick-prev {
    left: -20px;
}
.slick-prev::before {
    margin-left: 14px;
    border-bottom: 2px solid #e39224;
    border-left: 2px solid #e39224;
}
.slick-next {
    right: -20px;
}
.slick-next::before {
    margin-left: 10px;
    border-top: 2px solid #e39224;
    border-right: 2px solid #e39224;
}
footer {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer > strong {
    color: #e39224;
    display: block;
    margin-bottom: 20px;
}
.btn-fijo {
    display: inline-block;
    background-color: #e39224;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.1rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    position: fixed;
    right: 5px;
    bottom: 15px;
}
.btn-fijo:hover {
    transform: scale(1.05);
}
.btn-wpp {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25ca64;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.1rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    position: fixed;
    right: 5px;
    bottom: 65px;
    background-image: url('../img/wpp.png');
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}
.btn-wpp:hover {
    background-color: #29e270;
}

.form-back {
    padding: 50px;
    background-color: #eaeaea;
    align-items: flex-start;
}
.form-back {
    font-size: 1.5rem;
}
.form-back form input {
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 0 solid;
    width: 30%;
    margin: 0 10px;
}
.form-back form button {
    border-radius: 10px;
}
.screen-new{
	display: block;
}
/*RESPONSIVE*/

@media screen and (max-width: 1250px) {
    .slick-slide img {
        width: 600px;
        margin-bottom: 74px;
    }
    .screen > h2 {
        font-size: 1.2rem;
    }
    .screen {
        width: 450px;
    }
    .form {
        width: 450px;
        bottom: -246px;
    }
    .banner .ancho .img .text h2 {
        width: 55%;
    }
    h2 {
        font-size: 1.7rem;
    }
    main{
        padding-top: 250px;
    }
    .screen .columns input, .screen .columns select{
        box-sizing: border-box;
        width: 100%;
    }
    .screen .btn{
        width: 175px;
    }
}
@media screen and (max-width: 1100px) {
    .banner {
        padding-bottom: 50px;
        background-image: url(../img-new/banner_new_mobile.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .banner .ancho .img .text h2 {
        margin: 0 auto;
        width: 65%;
    }
    .slick-slide img {
        width: 100%;
        margin-bottom: 246px;
    }
    .form {
        
        
        width: 100%;
        bottom: -636px;
        transform: translate(0, 0);
        
    }
    .slick-dots {
        display: none !important;
    }
    .screen {
        width: 100%;
        min-width: calc(90vw - 15px);
    }
    .paga-con {
        margin: initial;
        max-width: 300px;
    }
    .video{
        padding: 50px 25px;
    }
    .video > .columns {
        flex-direction: column;
    }
    .video > .columns > .text {
        width: 100%;
        margin-bottom: 30px;
        padding: 0;
        text-align: center;
    }
    .container-video {
        width: 100%;
        height: 400px;
    }
    .grid > div {
        flex-direction: column;
    }
    .grid > div > p {
        text-align: center;
    }
    .grid > div > img {
        margin-bottom: 15px;
    }
    .float-left,
    .float-right {
        width: 100%;
    }
    .testimonios {
        padding-bottom: 533px;
    }
    .testimonios_superheroes {
        padding-bottom: 233px;
    }
    .testimonios > div{
        flex-wrap: wrap;
        justify-content: center;
    }
    .testimonios .text{
        text-align: center;
    }
    .testimonios .img-container{
        padding-bottom: 15px;
    }
    .testimonios .img-container img{
        text-align: center;
        margin: 0 auto;
        padding-bottom: 10px;
    }
    main{
        padding-top: 650px;
    }
    .grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .form-back form input{
        width: 100%;
        margin: 5px 0;
    }
    .img-big.desktop{
        display: none;
    }
    .img-big.mobile{
        display: block;
    }
}

@media screen and (max-width: 550px) {
    .banner .ancho .img .text h2 {
        margin: 10px auto;
        width: 100%;
        font-size: 1.5rem;
    }
    .slick-slide img {
        margin-bottom: -84px;
    }
    .form {        
        
    }
    
    /* .screen > .btns {
        grid-template-columns: repeat(1, 1fr);
    }
    .screen .btn {
        width: 140px;
        padding: 10px 15px;
        text-align: center;
    }
    .screen .columns {
        flex-direction: column;
    }
    .screen .columns > div {
        width: 100%;
    }
    .screen .columns input {
        display: block;
        width: 100%;
    }
    .paga-con {
        margin: 5px auto;
        max-width: 300px;
    } */
    .video {
        padding: 25px
    }
    .container-video {
        height: 240px;
    }
    .video > .columns {
        margin-bottom: 40px;
    }
    .grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .float-left,
    .float-right {
        flex-direction: column;
    }
    .testimonios .img-container {
        margin: 20px;
    }
    .testimonios img {
        margin: 10px auto;
    }
    .testimonios {
        padding-bottom: 700px;
    }
    .imgs-slider .container-img {
        height: 250px;
    }
    .imgs-slider .container-img img {
        width: 100%;
    }
    header > .ancho {
        justify-content: center;
    }
    header > .ancho .logo img,
    footer img {
        width: 200px;
    }
    #splash img{
        height: 40px;
    }
}


@media screen and (max-width: 500px){
    .grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .float-left, .float-right {
        flex-direction: column;
    }
    .testimonios img{
        margin: 0 auto;
    }
    .float-left, .float-right {
        width: 100%;
    }
    .form-back form input{
        width: 100%;
        margin: 5px;
    }
    .video > .columns {
        flex-direction: column;
    }
    .video > .columns > .text {
        text-align: justify;
        width: 90%;
        margin-top:20px;
    }
    .video {
        padding: 10px;}
    .container-video {
        width: 95%;}
    .video>.btn-naranja {
        margin-bottom:20px;
    }
    .form {
        height: 666px;
    }
    .screen{
        padding: 15px;
        min-width: calc(90vw - 0px);
    }
    .container-screens{
        width: 100%;
        /* display: initial; */
    }
    .divider {
        display:none;
    }
    .screen p {
        font-size: 0.9rem;
    }
    .banner {
        padding-top: 150px;
    }
    .screen .columns > div {
        width: 100%;
        padding: 0 5px;
    }
    .screen p, .screen label {
        font-size: 0.9rem;
    }
    .screen br{
        display: none;
    }
    .screen .btn {
        width: 120px;
        font-size: 1rem;
        margin: 5px auto;

    }
    #screen-2 .double-btns{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    #screen-2 .btn {
        width: 100%;
        margin: 10px 0;
    }
    .screen0 .btn {
        width: 100%;
        margin: 10px 0;
    }
    .video > .columns > .text > p{
        font-size: 1rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    .grid > div > p{
        font-size: 1rem;
    }
    .testimonios p, .form-back{
        font-size: 1rem;

    }
    .testimonios {
        padding-bottom: 613px;
    }
    .testimonios_superheroes {
        padding-bottom: 267px;
    }
    .form-back{
        padding: 15px;
    }
    .slick-slide img {
        margin-bottom: 4px;
    }
    
}
@media screen and(max-width: 368px) {
    .slick-slider {
        display: table !important;
        table-layout: fixed !important;
        width: 100% !important;
    }
    .imgs-slider .container-img {
        height: 195px;
    }
}