@charset "UTF-8";


html, body{
    width: 100%;
    min-height: 100vh;
    margin:0;
    padding:0;
    font-weight: 300;
    font-size: 1.2vw;
    -webkit-overflow-scrolling: touch;
    color: #1d252c;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-style: normal;
}

body.hidden{
  overflow: hidden;
}

a{
    text-decoration: none;
    color: currentColor;
}

.clear{
    clear: both;
}


/*header*/
header{
    position: -webkit-sticky;
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 6;
}
header.home{
    position: fixed;
    color: #fff;
    background-color: rgb(255 255 255 / 0%);
    transition: all 300ms ease-in-out;
}
.cf_info img.imgresponsive{
    display: none;
}
header.home.acthome{
    color: inherit;
    background-color: rgb(255 255 255 / 100%);
}
header.h_page{
    background: #f4f4f4;
}
header.interior{
    position: fixed;
    background-color: rgb(255 255 255 / 0%);
}
.m-item_sub{
    position: absolute;
    top: calc(100% + 2vw);
    left: 0;
    padding: 1vw;
    margin: 0;
    border-radius: 0.6em;
    background-color: #fff;
    list-style: none;
    width: max-content;
    box-shadow: 0px -0.5vw 15px 6px #0000000f;
    display: none;
}

.m-item_sub::before{
        content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-right: 1vw solid transparent;
    border-top: 1vw solid transparent;
    border-left: 1vw solid transparent;
    border-bottom: 1vw solid #fff;
    top: -1.9vw;
    left: 4vw;
    border-radius: 3px;
}
.m-item_sub::after {
    content: '';
    height: 2vw;
    width: 100%;
    top: -2vw;
    display: block;
    position: absolute;
    left: 0vw;
}
.m-item_sli{
        display: block;
    padding: 0.4em 0;
    font-weight: 700;
}

.header_int{
    width: calc(100% - 13.52vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.back-header{
    height: 7vw;
    width: 100%;
     background: #fff; 
    top: -1px;
    left: 0;
    position: -webkit-sticky;
    position: sticky;
    z-index: 4;
}
.back-header.act{
    background: #fff;
}
.logo{
    width: 15.31vw;
    display: block;
}
.logo img,
.logo svg{
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1.4vw 0 1.5vw;
}
header .logo svg g *{
    opacity: 1;
    transition: 600ms all ease-in-out;
}
.scrollAct header .logo svg g *{
    opacity: 0;
}
header .logo svg .st1{
    opacity: 1;
}
.scrollAct header .logo svg .st1{
    opacity: 1;
}
header.home .logo img,
header.home .logo svg{
    filter: grayscale(100%) invert(1) brightness(3);
    transition: all 300ms ease-in-out;
}
header.home.acthome .logo img,
header.home.acthome .logo svg{
    filter: grayscale(0%) invert(0) brightness(1);
}
.menu{
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu span{
    position: relative;
}

.m-item{
    padding: 1.34vw;
    font-size: 0.9rem;
        font-weight: 700;
        position: relative;
}
.m-item::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.5vw;
    height: 2px;
    width: 0%;
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
    transition: all 200ms ease-in;
}

header.home .m-item::after{
    background: #fff;
}

.m-item.act::after{
    width: calc(100% - (1.34vw * 2));
}
.sm-item.act .m-item::after{
    width: calc(100% - (1.34vw * 2));
}
.menu_s{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn{
    background-color: #1d252c;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    width: -moz-fit-content;
    padding: 0.9vw 1.8vw;
    border-radius: 2.4em;
    color: #fff;
    position: relative;
    z-index: 1;
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
    appearance: none;
    -webkit-appearance: none;
    border: none;
}
.btn::before{
    content:'';
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 2.4em;
    background: #1d252c;
    z-index: -1;
    transition: all 300ms ease-in-out;
}


.btn > *{
    display: block;
    font-weight: 700;
}
.btn_img{
    width: 1.34vw;
    height: 1.34vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5vw;
    transition: all 300ms ease-in-out;
    filter: grayscale(0) brightness(1);
}

.btn_img img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.menu_s .btn{
    font-size: 0.8rem;
    padding: 0.6vw 1.3vw;
}

.wrapper{
    width:100%;
    min-height: calc(100vh - 7vw);
}

.content{
    width: calc(100% - 13.52vw);
    margin: 0 auto;
    z-index: 2;
    position: relative;
}
.top_info{
    width:100%;
    margin-bottom: 22.3vw;
}
.wrapperhome .top_info{
    margin-bottom: 33.3vw;
}
.back_ti{
    width:100%;
    position:absolute;
    top:0;
    left:0;
    z-index: -1;
    min-height: 65.5vw;
}
.back_ti  svg{
    width: 100%;
    height: auto;
}
.back_ti picture,
.back_ti img{
    position: absolute;
    top: 0;
    right: 0;
    max-width: 54.26vw;
    height: auto;
    z-index: 2;
}
.ti_info.content{}
.ti_info_int{
    width: 55.82vw;
    padding-top: 6.46vw;
}
.wrapperhome .ti_info_int{
    padding-top: 0;
}

.ti_info_int h2{
    margin: 0 0 0;
    font-weight: 700;
    font-size: 3.5rem;
        max-width: 46vw;
}
.ti_info_int p{
    font-size: 1.3rem;
    max-width: 65%;
    margin: 2vw 0 3vw;
    font-weight: 700;
}
.ti_info_int .btn{
    margin-bottom: 1vw;
        min-width: 17vw;
}

.grid-banner.content{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 21vw;
}

.item{
    text-align: center;
    width: calc(100%/3 - 6vw);
    margin: 0 3vw;
}
.gn-hor .item{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}
.item img{
    width: 5.74vw;
}
.gn-hor .item img{
    width: auto;
    height: 4vw;
    display: block;
    margin: 0 1vw 0 0;
}
.item h3{
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0.8vw 0 0;
}
.gn-hor .item h3{
    margin: 0;
}
.item p{
    margin: 0.2vw 0 0;
}

.description.content{
    margin-top: 5vw;
    padding-bottom: 5vw;
}
.desc_grid{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
}
.desc_grid .item{
    margin: 0 4.36vw;
}
.desc_title{
    text-align: center;
    width: 45vw;
    margin: 0 auto 2vw;
}
.desc_title img{
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.desc_title h2{
    margin: 0 0 3vw;
    font-weight: 700;
    font-size: 2.1rem;
    position: relative;
}
.desc_title h3{
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}
.desc_title h2::after{
    content:'';
    display:block;
    position:absolute;
    bottom:-1.5vw;
    width: 24vw;
    height: 3px;
    background-color:pink;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
}
.desc_title p{
    margin: 0;
}
.desc_phrase{
    width: 49%;
    text-align: center;
    margin: 1vw auto 0;
}
.desc_phrase p{}
.description .item h3{
    font-size: 1.1rem;
}
.beneficios{
    position: relative;
    border-top: 24.6vw solid #e7ebea;
}
.beneficios_background{
    position: relative;
    z-index: 0;
}
.beneficios_background::before{
    content: '';
    z-index: 1;
    width: 100%;
    height: 7vw;
    background: linear-gradient(180deg, rgba(231,235,234,1) 5%, rgba(231,235,234,0) 100%);
    position: absolute;
    top: -2px;
    left: 0;
}
.beneficios_background::after{
    content:'';
    z-index: 0;
    width: 100%;
    height: 7vw;
    background: linear-gradient(0deg, rgba(231,235,234,1) 5%, rgba(231,235,234,0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.beneficios_background img{
    width: 100%;
    height: auto;
    display: block;
}
.beneficios_info.content{
    top: 0;
    position: absolute;
    margin: 8vw 6.76vw 0;
    padding-bottom: 4vw;
}
.beneficios_info_int{
    box-sizing: border-box;
    width: 50%;
    padding-left: 8.89vw;
}
.beneficios_info_int h2{
    margin: 0 0 3vw;
    font-weight: 700;
    font-size: 2.1rem;
    position:relative;
}
.beneficios_info_int h2::after{
    content:'';
    display:block;
    position:absolute;
    bottom:-1.5vw;
    left:0;
    height:3px;
    width: 70%;
    background-color: pink;
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
}
.beneficios_info_int p{}
.beneficios_info_int ul{
    padding-left: 1.5vw;
    margin: 2vw 0 4vw;
}
.beneficios_info_int li{
    margin-bottom: 2vw;
    list-style: none;
    position: relative;
}
.beneficios_info_int li::before{
    content:'';
    display:block;
    position: absolute;
    width: 0.5vw;
    height: 0.5vw;
    background-color: pink;
    border-radius: 50%;
    top: 0.6em;
    left: -1.5vw;
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
}
.beneficios_info_int li h3{
    margin: 0;
    font-size: 1.1rem;
}
.beneficios_info_int li p{
    margin: 0.6vw 0 0;
}
.beneficios_background .btn{}
.beneficios_background img.beneficios_n{
    position: absolute;
    left: 0;
    width: 11vw;
    top: 8.5vw;
}
.como_funciona{
    position: relative;
    color: #fff;
    z-index: 2;
    margin: 17vw 0 0;
}
.cf_back{
    position: absolute;
    top: -13vw;
    left: 0;
    width: 100%;
    height: calc(100% + 26vw);
    z-index: 1;
}
.cf_back_int{}
.cf_back_int:nth-child(1){
    width: 30%;
    height: 100%;
    position: absolute;
    top: 6vw;
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
    transform: skewY(-13deg);
    z-index: 1;
    left: 0;
}
.cf_back_int:nth-child(2){
    width: 100%;
    background-color: #1d252c;
    position: absolute;
    height: 100%;
    transform: skewY(-13deg);
    z-index: 3;
}
.cf_back_int:nth-child(3){
    width: 30%;
    height: 100%;
    position: absolute;
    top: -6vw;
    background: linear-gradient(
41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
    transform: skewY(
-13deg);
    z-index: 1;
    right: 0;
}
.cf_info{
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3vw 0;
}
.cf_info h2{
    font-weight: 700;
    font-size: 2.1rem;
    margin: 0 0 3vw;
    position: relative;
}
.cf_info h2::before{
    content:'';
    width:20vw;
    height:2px;
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
    display:block;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-1.5vw;
}
.cf_info p{
    max-width: 44vw;
    margin: 0 auto;
}
.cf_info img{
    display: block;
    margin: 3vw auto;
    max-width: 100%;
    height: auto;
}
.cf_info .btn{
    padding: 0.9vw 5.8vw;
    margin: 0 auto;
}


.digital{
    position: relative;
    margin: 0vw 0 0;
    z-index: 2;
    /*background-color: #e7ebea;*/
}
.digital::before{
    content: '';
    width: 100%;
    height: 70%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #e7ebea;
}
.digital_int.digital::before{
    display: none;
}
.back_digital{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}
.barra{
    top: 8vw;
    position: absolute;
    left: 0;
    width: 100%;
    height: 21vw;
    background: linear-gradient(7deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
    transform: skewY(-13deg);
}
.imagenes{
    position: absolute;
    right: 0;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: safe flex-end;
    margin-top: 2vw;
}
.img_c{
    width: 47.35vw;
    height: auto;
    display: block;
       top: 30%;
    position: relative;
}
.img_p{
    width: 15.37vw;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    margin-top: 13vw;
    margin-right: -14vw;
    top: 20%;
}
.digital_info{
    margin-bottom: 19vw;
    padding-left: 4vw;
    box-sizing: border-box;
}
.digital_info ul{
    list-style: disc;
    color: #fff;
    font-weight: 700;
    padding-left: 1em;
    margin: 1vw 0 3vw;
}
.digital_info > *{
    /* padding-left:9.16vw; */
    margin: 1vw 0;
}
/*.digital_info .btn{
    padding-left: 1.8vw;
}*/
.digital_info h2{
    font-weight: 700;
    font-size: 2.1rem;
    position: relative;
    width: 45vw;
    margin: 0 0 13vw;
}
.digital_info h2::before{
    content: '';
    width: 40%;
    display: block;
    position: absolute;
    bottom: -1.5vw;
    height: 2px;
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
}
.digital_info p{
    font-weight: 700;
    font-size: 1rem;
    max-width: 26vw;
    color: #fff;
}

.contacto{
    margin-bottom: 11vw;
    position: relative;
    width: 100%;
    z-index: 2;
}
.c_contacto{
    text-align: center;
}

.c_contacto h2{
    font-weight: 700;
    font-size: 2.1rem;
    position: relative;
    margin: 0 0 4vw;
}
.c_contacto h2::before{
    content: '';
    width: 24vw;
    display: block;
    position: absolute;
    bottom: -1.5vw;
    height: 2px;
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
    left: 50%;
    transform: translateX(-50%);
}
.c_contacto .btn{
    margin: 1vw auto;
    font-size: 1.1rem;
}
.c_contacto .btn .btn_img{
    margin-right: 0;
    margin-left: 0.5vw;
}
.c_contacto p{
    margin: 2vw auto;
    font-weight: 700;
    font-size: 1.3rem;
    max-width: 39vw;
}
.c_contacto form{
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
    display: flex;
    width: fit-content;
    margin: 0 auto;
    padding: 0 1.8vw;
    border-radius: 2.4em;
    padding-left: calc(1.34vw + 1.8vw);
    position: relative;
}
.c_contacto form::before{
    content:'';
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 2.4em;
    background-color: #1d252c;
    z-index: 0;
    background-image: url(../upload/icon/email.png);
    background-size: 1.34vw;
    background-repeat: no-repeat;
    background-position: 1vw center;
}
.c_contacto form input{
    padding: 0.9vw 0;
    border: none;
    appearance: none;
    background: transparent;
    position: relative;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    width: 14vw;
}
.c_contacto form ::placeholder{
    color:#fff;
}
.c_contacto form button{
    background: transparent;
    border: none;
    appearance: none;
}


@keyframes buttonhover {
  0%   {transform: translateX(0vw);}
  25%  {transform: translateX(0.3vw);}
  50%  {transform: translateX(0vw);}
  75%  {transform: translateX(0.3vw);}
  100% {transform: translateX(0vw);}
}

.c_contacto form button span{
    width: 1.34vw;
    height: 1.34vw;
    position: relative;
    display: block;
}
.c_contacto form button span img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

input:active,
input:focus,
button:active,
button:focus{
    outline: 0;
}
button{
    cursor: pointer;
}
footer{
    background: linear-gradient(77deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
    color: #fff;
    position: relative;
    z-index: 3;
    width: 100%;
}
.footer_int{
    width: calc(100% - 13.52vw);
    margin: 0 auto;
    padding-bottom: 9vw;
        position: relative;
}
footer .fila{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2.5vw;

}
footer .logo{
    width: 16.83vw;
}
footer .logo svg{
    filter: brightness(10) grayscale(1);
}
.top_a{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: calc(3vw + 4px);
    cursor: pointer;
    position: absolute;
    right: 0;
    text-align: center;
    top: -5vw;
    background-color: #1d252c;
    height: calc(3vw + 4px);
    border-radius: 50%;
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
    position: sticky;
    top: calc(100vh - 4vw);
    left: calc(100% - 10.02vw);
    z-index: 6;
    margin-bottom: 2vw;
}
.top_a::before{
    content:'';
    width:3vw;
    height:3vw;
    background-color:#1d252c;
    position:absolute;
    top:2px;
    left:2px;
    border-radius:50%;
}
.top_a img{
    width: 1.98vw;
    height: 1.98vw;
    display: block;
    transform-origin: center;
    transform: rotate(-90deg);
    margin: auto;
}
.footer_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5vw 1vw;
}
.contactar{
    text-align: center;
    width: fit-content;
}
.contactar p{
    margin: 0 0 0.5vw;
    font-weight: 500;
}
.contactar .btn{
    background: #fff;
    font-size: 1.2rem;
    padding-left: 4vw;
    padding-right: 4vw;
}
.contactar .btn_img{
    margin: 0 0 0 0.5vw;
}
.direccion_1{
    text-align: right;
}
.direccion_2{
    text-align: right;
}
.direccion_1 h3,
.direccion_2 h3{
    margin: 0 0 0.5vw;
    font-size: 1rem;
    font-weight: 700;
}
.direccion_1 p,
.direccion_2 p{
    font-size: 0.8rem;
    margin: 0;
    line-height: 220%;
}
.footer_info{
    grid-column: 1;
    grid-row: 2;
}
.footer_info ul{
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer_info li{
    white-space: nowrap;
    padding: 0.6vw 0;
    padding-right: 1vw;
    margin-right: 1vw;
    width: fit-content;
    position: relative;
}

.footer_info li::after{
    content: '';
    width: 3px;
    height: 3px;
    background-color: #fff;
    display: block;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.direccion{
    grid-column: 2/3;
    grid-row: 1/3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}


.fondo_figura{
    position: absolute;
    top: 39vw;
    left: 0;
    height: 26.44vw;
    width: 100%;
}

.fondo_svg{
    background: linear-gradient(109deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) -34%, rgba(255,61,70,1) 37%, rgba(255,120,0,1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 1vw;
    left: 0;
    transform-origin: top left;
    transform: skewY(-12deg);
}

.page{}
.page.page_f_int{
    position: relative;
}
.page.page_f_int.page_fondo{
    color: #fff;
}
.page.page_f_int.page_fondo .cf_back{
    height: calc(100% + 6vw);
}
.page .fondo_figura{
    z-index: -1;
        top: 0;
    height: 40vw;
}
.page .fondo_svg{
    background: #f4f4f4;
}
.page .txt{
    width: calc(100% - 31vw);
    margin: 0 auto;
    padding: 8vw 0 18.88vw;
    z-index: 2;
    position: relative;
}
.page .txt a{
    text-decoration: underline;
}
.page .txt h1{
    text-align: center;
    font-weight: 700;
    font-size: 2.1rem;
    margin: 2vw 0 6vw;
    position: relative;
}
.page .txt h1::before{
    content: '';
    display: block;
    position: absolute;
    width: 20vw;
    bottom: -1.5vw;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: linear-gradient(109deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) -34%, rgba(255,61,70,1) 37%, rgba(255,120,0,1) 100%);
}
.page .txt > *{
    line-height: 140%;
}
.page .txt p{}
.page .txt h4{
    margin: 4.62vw 0 1.7vw;
    font-weight: 400;
    font-size: 1rem;
}
.page .txt blockquote{
    margin: 0 auto;
    width: 90%;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}
/*faq*/
.administra{
    padding-left: 8.4vw;
    width: calc(100% - 8.4vw);
    display: grid;
    grid-gap: 5.17vw;
    grid-template-columns: 40.08vw 1fr;
}
.column{
    position:relative;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    z-index: 2;
}
.column:first-child{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.column svg,
.column:nth-child(1) img{
    width: 100%;
    height: auto;
    display: block;
}
.column p{
    margin: 3vw 0 0;
    font-size: 1.2rem;
    font-weight: 700;
}
.des_01{
    position: absolute;
    right: 6.6vw;
    width: 40vw;
}
.des_02{
    position: relative;
    width: 42.58vw;
    margin: 9.9vw 0 2vw 0;
    right: 0;
}
.des_03{
    position: absolute;
    bottom: 0;
    width: 13.69vw;
    right: 30vw;
}

.faqs{
    width: calc(100% - 25vw);
    margin: 0 auto;
    padding-bottom: 12vw;
    position: relative;
    z-index: 2;
}
.faqs > h1, .faqs > h2{
    text-align: center;
    font-weight: 700;
    font-size: 2.1rem;
    margin: 14vw 0 6vw;
    position: relative;
}
.faqs > h1::after, .faqs > h2::after{
    content: '';
        display: block;
    position: absolute;
    width: 20vw;
    bottom: -1.5vw;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: linear-gradient(
109deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) -34%, rgba(255,61,70,1) 37%, rgba(255,120,0,1) 100%);
}
.faq{
    width: 45.37vw;
    margin: 0 0 4vw;
}
.btn_faq{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.btn_faq_icon{
    width: 2.5vw;
    height: 2.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -3.5vw;
    margin-right: 1vw;
}
.btn_faq_icon img{
    width: 2.16vw;
    height: auto;
    transform: rotate(0deg);
    transform-origin: center;
    transition: 300ms ease-in-out;
}
.btn_faq h2{
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}
.faq_int{
    width: 100%;
    position: relative;
    display: none;
}
.faq_int > ol{
    list-style: upper-alpha;
}
.faq_int > *{
    line-height: 140%;
    padding: 1px 0;
}
.faq_int li{}
.faq_int ul{
    padding: 1.7vw 0;
    padding-left: 3vw;
    margin: 0;
}
.faq_int ul > li{
    list-style: disc;
}
.faq_int ul li ul li{
    list-style: none;
    position:relative;
}
.faq_int ul li ul li::before{
    content:'› ';
    position: absolute;
    height: 1.4em;
    width: 1vw;
    left: -1vw;
    top: 0;
    font-weight: 700;
}
.faq_int ol li::marker{
    font-weight: 700;
}
.faq_int a{
    color: #f93549;
    text-decoration: underline;
    word-break: break-all;
}

.faq_int  .puntos ol{}
.faq_int  .puntos ol li{}

.faq_int ul.puntos > li{
    list-style: none;
    padding: 0 0 1.3vw;
    position: relative;
}
.faq_int ul.puntos > li::before{
    content:'';
    display: block;
    width: 0.7vw;
    height: 0.7vw;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    left: -1.5vw;
    top: 0.5vw;
}
.faq_int ul.puntos > li::after{
    content:'';
    position: absolute;
    width: 3px;
    background-color: #000;
    height: 100%;
    top: 1vw;
    left: -1.3vw;
}

.puntos > li:nth-child(1){}
.puntos > li:nth-child(2){}
.puntos > li:nth-child(3){}
.puntos > li:nth-child(4){}
.puntos > li:nth-child(5){}
.puntos > li span{
    font-weight: 700;
}
.puntos > li:nth-child(1) span{
    color: #f61737;
}
.puntos > li:nth-child(2) span{
    color: #f9263d;
}
.puntos > li:nth-child(3) span{
    color: #f9263d;
}
.puntos > li:nth-child(4) span{
    color: #ff3d46;
}
.puntos > li:nth-child(5) span{
    color: #ff7800;
}
.faq_int ul.puntos > li:nth-child(1)::after{
    background: linear-gradient(180deg, rgba(246,23,55,1) 0%, rgba(249,38,61,1) 100%);
}
.faq_int ul.puntos > li:nth-child(2)::after{
    background: #f9263d;
}
.faq_int ul.puntos > li:nth-child(3)::after{
    background: linear-gradient(180deg, rgba(249,38,61,1) 0%, rgba(255,61,70,1) 100%);
}
.faq_int ul.puntos > li:nth-child(4)::after{
    background: linear-gradient(180deg, rgba(255,61,70,1) 0%, rgba(255,120,0,1) 100%);
}
.faq_int ul.puntos > li:nth-child(5)::after{
    display:none;
}

.faq_int ul.puntos > li:nth-child(1)::before{
    background-color: #f61737;
}
.faq_int ul.puntos > li:nth-child(2)::before{
    background-color: #f9263d;
}
.faq_int ul.puntos > li:nth-child(3)::before{
    background-color: #f9263d;
}
.faq_int ul.puntos > li:nth-child(4)::before{
    background-color: #ff3d46;
}
.faq_int ul.puntos > li:nth-child(5)::before{
    background-color: #ff7800;
}
.btn_faq.act .btn_faq_icon img{
    transform: rotate(-90deg);
}
.top_info.top_info_int{
    min-height: 59.56vw;
    position: relative;
    width: 100%;
    margin-bottom: 5vw;
        display: flex;
    align-items: center;
    justify-content: flex-start;
}
.back_top{
    width: 100%;
    height: 59.56vw;
    position: absolute;
    top: 0;
    left: 0;
}
.top_info.top_info_int .back_top{
    overflow: hidden;
}
.back_top_int{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
}
.top_info.top_info_int .ti_info_int{
    color: inherit;
    width: 50vw;
}
.top_info.top_info_int .ti_info_int p{
    font-size: 1.4rem;
    font-weight: 700;
    max-width: 80%;
    margin-bottom: 4vw;
}
.top_info.top_info_int .ti_info_int h2{
    max-width: 80%;
}

.grid-banner.gb-int{
    margin-top: 0;
}
.digital.digital_int{
    margin-top: 15vw;
    background-color: transparent;
}
.page.page_ml{}
.page.page_ml .txt{
    padding-bottom: 0;
}

.grid_ml{
    width: calc(100% - 25vw);
    margin: 3vw auto 6vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1vw;
}
.gml_cube{
    padding: 1.7vw 3.67vw;
    border: 2px solid rgba(246,23,55,1);
    text-align: center;
    border-radius: 0.9em;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gml_cube::before{
    content: '';
}
.gml_cube h3{
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.gml_cube p{
    margin: 0;
}
.gml_cube > *{
    line-height: 160%;
}
.gml_flecha{
    display: flex;
    align-items: center;
    justify-content: center;
}
.gml_flecha img{
    max-width: 3.99vw;
    height: auto;
    transform-origin: center;
    transform: rotate(90deg);
}
.gml_cube ul li{
    width: fit-content;
    margin: 0 auto;
}

.gml_cube:nth-child(1){
    grid-column: 1/3;
}
.gml_cube:nth-child(3){}
.gml_cube:nth-child(4){
    grid-column: 1;
    grid-row: 3/7;
}
.gml_cube:nth-child(5){}
.gml_cube:nth-child(6){}
.gml_cube:nth-child(7){}
.gml_cube_i{}
.page.page_ml .btn{
    margin: 0 auto 13vw;
}



/*over*/
.over{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    background: linear-gradient(41deg, rgba(246,23,55,1) 4%, rgba(249,38,61,1) 26%, rgba(255,61,70,1) 57%, rgba(255,120,0,1) 100%);
    top: -100%;
    /* top: 0; */
    transition: 800ms ease-in-out;
}
body.actover{
    overflow: hidden;

}
.actover .over{
    top: 0%;
}
.over_int{
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;
}
.btn_contact{
    cursor: pointer;
}
.over_contact{
    margin: 0 auto;
    width: calc(100% - 13.54vw);
    color: #fff;
}
.oc_header{
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    padding-top: 3.68vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.oc_header .logo{}
.oc_header .logo svg{
    padding: 0;
    filter: brightness(10) grayscale(1);
}
.oc_header .cerrar{
    width: 3vw;
    height: 3vw;
    position: relative;
    cursor: pointer;
}
.oc_header .cerrar::before{
    content: '';
    width: 2vw;
    height: 2px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.oc_header .cerrar::after{
    content: '';
    width: 2vw;
    height: 2px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(
-45deg);
}
.contact_grid{
    margin-top: 7vw;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2.4vw 5vw;
    margin-bottom: 3vw;
}
.contact_grid label{
    position: relative;
    padding-top: 1.2em;
}
.contact_grid label > span{
    position: absolute;
    left: 0;
    top: 1.6em;
}

.contact_grid label.act{
    position: relative;
    padding-top: 1.2em;
}
.contact_grid label.act > span{
    position: absolute;
    left: 0;
    top: 0em;
    font-size: 0.9rem;
}

.contact_grid label.txtarea{
    grid-column:2/3;
    grid-row: 1/4;
}
.contact_grid .l_button{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}

}
.contact_grid label > span{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.contact_grid label p{}
.contact_grid label ::placeholder{
    color:#fff;
}
.contact_grid label input{
    display: block;
    background: transparent;
    border: none;
    border-bottom: 2px solid currentColor;
    color: #fff;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 2em;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    position: relative;
}
.contact_grid label textarea{
    display: block;
    background: transparent;
    border: none;
    border-bottom: 2px solid currentColor;
    color: #fff;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 2em;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    height: 2em;
    resize: none;
}
input:focus,
input:active,
textarea:focus,
textarea:active{
    outline:0;
}
.contact_grid .btn{
    padding-left: 3vw;
    padding-right: 3vw;
    font-size: 1.2rem;
    margin: 0;
    background: #fff;
        border: 2px solid #fff;
    background: #1d252c;
}

.contact_grid .btn::before{
    display: none;
}
.contact_grid .btn .btn_img{
    margin-left: 0.5vw;
    margin-right: 0;
    transition: initial;
}
.oc_footer{
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
    display: flex;
        padding-bottom: 4vw;
}
.cf_column{
    width: 40%;
}
.cf_column h3{
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}
.cf_column p{
    font-size: 0.8rem;
    margin: 0;
}
.cf_column ul{
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.cf_column li{
    white-space: nowrap;
    padding: 0.6vw 0;
    padding-right: 1vw;
    margin-right: 1vw;
    width: fit-content;
    position: relative;
    line-height: 120%;
}
.cf_column li::after{
    content: '';
    width: 3px;
    height: 3px;
    background-color: #fff;
    display: block;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

}
.cf_column:nth-child(1){}
.cf_column:nth-child(2){
    text-align: right;
}
.cf_column > *{
    line-height: 220%;
}

.ancla_menu{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
}

.ancla_top{
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
}

.back-headerpage{
    width: 100%;
    position: sticky;
    top: -1px;
    height: 0;
    z-index: 4;
}
.back-h_int{
    width: 100%;
    height: 7vw;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
}
.back-h_int.act{
    background-color: #fff;
}


.h_deco{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1;
}
.h_deco_int{
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(100% - 13.52vw);
    height: 100%;

}
.h_deco_line{
    width: 1px;
    height: 100%;
    margin-top: 7vw;
    background-image: url(../img/fondo.png);
    background-size: 1px;
    background-position: top center;
    background-repeat: repeat-y;
}
.back_header_blur{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 3;
    height: 9vw;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.bb_background{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.scroll_down{
    width: 100%;
    top: calc(100vh - 6.5vw);
    height: 0;
    float: left;
    position: absolute;
    z-index: 5;
    opacity: 1;
    transition: 300ms ease-in-out;
    transform: translateY(0vw);
}
.scroll_down.act{
    transform: translateY(10vw);
    opacity: 0;
    pointer-events: none;
}
.scroll_down_int{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 0;
    left: 50vw;
    transform: translateX(-50%);
    height: auto;
    width: 20vw;
}
.scroll_down span{
    position: relative;
    text-align: center;
    width: fit-content;
    display: block;
    margin: 0 auto;
        font-size: 0.9rem;
}
.scroll_down span img{
max-width: 3vw;
    transform: translateY(0vw) rotate(90deg);
    animation-name: scrollDown;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    transform-origin: center;
    position: relative;
}

@keyframes scrollDown {
  0%   {transform: translateY(0vw) rotate(90deg);}
  25%  {transform: translateY(-1vw) rotate(90deg);}
  50%  {transform: translateY(0vw) rotate(90deg);}
  100%  {transform: translateY(0vw) rotate(90deg);}
}
.scroll_down span::nth-child(2){}


.top_info.top_info_int .fondo_figura{
    top: 0px;
    height: 43.8vw;
}
.top_info.top_info_int .fondo_svg{
    background: #f4f4f4;
    bottom: initial;
    top: -1vw;
}
.page_f_int{
    position: relative;
}
.ancla_page{
    position: absolute;
    top: -9vw;
}
.btn_r{
    display: none;
}
.btn-flotante_content{
position: fixed;
    right: 6.8vw;
    bottom: 6vw;
     z-index: 6;
     width: 0;
     height: 1px;
}
.btn-flotante{
color: #003b4d;
    background-color: #18fc91;
    display: flex;
    align-items: flex-start;
    width: fit-content;
    font-size: 14px;
    font-weight: 900;
    align-items: center;
    padding: 11px 17px;
    border-radius: 22px;
    position: absolute;
    bottom: 0;
    right: 0;    
   
}
.btn-flotante .btn_img{}
.btn-flotante span:nth-child(2){}

.lower{
        list-style: lower-alpha;
}
.lower-roman{
        list-style: lower-roman;
}
.m-item.m-item-idioma{
        display: flex;
    align-items: flex-start;
}
.m-item.m-item-idioma span{
        line-height: 1.1em;
    display: block;
}
footer{
    z-index: 4;
}

.error_404{
    min-height: calc(100vh - 7vw);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    position: relative;
}
.error_404 h1{
    margin: 0 0 0;
    font-weight: 700;
    font-size: 3.5rem;
    max-width: 46vw;
}
.error_404 p{
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
}

.redes{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 2rem 0;
}
.redes > a{
    display: block;
    margin-right: 1rem;
}
.redes img{
    max-width: 1.8rem;
    height: auto;
    display: block;
}