.n-scrolling{
    overflow: hidden;
}

/* CSS LOADING */
.loading-page{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0,.8);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    z-index: 999997;
}
.loading-page-content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 400px;
    height: 180px;
}
.loadingContaint{
    position: relative;
}
.loadingContaint-cube{
    display: inline-block;
    position: relative;
    padding: 20px;
    height: 60px;
    width: 60px;
    border: 4px solid var(--blue);
    border-bottom-color: transparent;
    border-radius: 100%;
    -webkit-animation: rotate .9s 0s linear infinite;
    animation: rotate .9s 0s linear infinite;
}
.loading-page-content__Title{
    font-size: 40px;
    color: #fff;
}
.loading-page-content__Title span{
    display: block;
    font-size: 65%;
    color: #fff;
}

@keyframes rotate {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg); }
    50% {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg); }
}


/* CSS banner */

.c-slider {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    margin-bottom: 50px !important;
}

.c-slider-item{
    display: none;
}
.c-slider-item:first-child{
    display: block;
}

.c-slider-item__img{
    display: block;
    margin: 0 auto;
}

/* confg dots */
.c-slider .c-dots {
    padding: 0 4px;
}

.c-slider .slick-dots li {
    vertical-align: middle;
    width: 10px;
    height: 10px;
    transition: all .3s ease-in-out;
}

.c-slider .slick-dots li button {
    width: 100%;
    height: 100%;
}

.c-slider .slick-dots li button:before {
    content: ' ';
    background: var(--dotsGray);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all .3s ease-in-out;
    opacity: .7;
}

.c-slider .slick-dots li.slick-active {
    width: 26px;
}

.c-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    background: var(--darkBlue);
}


/* CSS principal */
.c-main{
    border-radius: 16px;
    padding: 3rem 16px;
    width: 90%;
}

.c-credit-idea{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    margin: 0 0 6rem;
}

.c-credit-idea::before{
    content: ' ';
    display: block;
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 80%;
    height: 10px;
    background: #fff;
    border-radius: 30px;
}

.c-credit-idea .title-item {
    font-size: 8vw;
    line-height: normal;
    margin-bottom: 24px;
}

.c-credit-idea .title-item span {
    font-size: 120%;
}

.c-credit-idea .posTitle-item {
    font-size: 5vw;
    line-height: normal;
    margin-bottom: 30px;
    font-weight: 200;
    text-align: center;
}

.c-credit-idea .list-item {
    margin-inline-start: 3em;
}

.c-credit-idea .list-item li {
    font-size: 5vw;
    margin-bottom: 12px;
}

.c-credit-idea .btn-banner {
    display: block;
    width: 200px;
    box-shadow: none;
    border: 0;
    font-size: 20px;
    min-width: 200px;
    height: 40px;
    border-radius: 30px;
    padding: 4px 8px;
    margin: 36px auto;
    text-decoration: none;
    cursor: pointer;
}

.c-credit-idea .hero-calculator {
    background-color: #ffffff;
    border-radius: 8px;
    width: 100%;
    max-width: 340px;
    height: 580px;
    box-shadow: inset 0px 0px 6px 6px rgb(0, 0, 0, 0.8);
    border: 0;
}

@media screen and (min-width: 500px) {
    .c-credit-idea .title-item {
        font-size: 32px;
    }
    .c-credit-idea .posTitle-item {
        font-size: 20px;
        line-height: 24px;
    }
    .c-credit-idea .list-item li {
        font-size: 20px;
    }
}

@media screen and (min-width: 768px) {
    .c-credit-idea{
        justify-content: space-between;
        flex-direction: row;
        align-items: flex-start;
        padding: 0 26px;
        position: relative;
    }
    .c-credit-idea .posTitle-item {
        text-align: left;
    }
    .c-credit-idea .hero-calculator {
        height: 540px;
    }
}



/* CSS INFORMA TRANSFORM */

.c-transform {
    padding: 1rem 15px 1rem;
}

.c-transform .c-transform__title {
    font-size: 6vw;
    line-height: normal;
    margin-bottom: 2rem;
}

.c-transform .c-transform__term {
    font-size: 4vw;
    line-height: normal;
    margin: 2rem auto 0;
}

.c-transform .c-transform__infoCredit {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    row-gap: 2rem;
}

.c-transform .c-infoCredit {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    min-height: 150px;
}

.c-transform .c-infoCredit__box {
    display: inline-block;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 18px;
    align-self: center;
}

.c-transform .c-infoCredit__box img {
    height: 36px;
}

.c-transform .c-infoCredit p {
    font-size: 4vw;
    line-height: normal;
    margin: 12px 0;
}


@media screen and (min-width: 550px) {
    .c-transform {
        padding-top: 1rem;
    }

    .c-transform .c-transform__title {
        font-size: 24px;
    }

    .c-transform .c-transform__term {
        font-size: 22px;
    }

    .c-transform .c-infoCredit p {
        font-size: 18px;
    }

}

@media screen and (min-width: 768px) {

    .c-transform .c-transform__infoCredit {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 8rem;
    }
}



/* SELECT OFFERT PHONE */
.c-selectOffert {
    padding: 3rem 16px .5rem;
}

.c-selectOffert .c-selectOffert__title{
    display: block;
    font-size: 6vw;
    line-height: normal;
    max-width: 980px;
    margin: 0 auto 3rem;
}

.c-selectOffert .c-selectOffert-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.c-selectOffert .c-selectOffert-btn {
    box-shadow: none;
    background: var(--white);
    border: 1px solid var(--dotsGray);
    color: var(--lightGray);
    border-radius: 34px;
    padding: 12px 20px;
    font-size: 4.2vw;
    line-height: normal;
    min-width: 320px;
    cursor: pointer;
    transition: all .3s ease;
}

.c-selectOffert .c-selectOffert-btn.active {
    background: var(--orange);
    border: 1px solid var(--orange);
    color: var(--white);
}

.c-selectOffert-content{
    display: none;
}
.c-selectOffert-content.active{
    display: block;
}

@media screen and (min-width: 500px) {
    .c-selectOffert .c-selectOffert__title{
        font-size: 30px;
    }
}


/* config slick phones */

/* confg dots */
.c-selectOffert-list .c-dots {
    padding: 0 4px;
}

.c-selectOffert-list .slick-dots li {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    transition: all .3s ease-in-out;
}

.c-selectOffert-list .slick-dots li button {
    width: 100%;
    height: 100%;
}

.c-selectOffert-list .slick-dots li button:before {
    content: ' ';
    background: var(--dotsGray);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all .3s ease-in-out;
    opacity: .7;
}

.c-selectOffert-list .slick-dots li.slick-active {
    width: 36px;
}

.c-selectOffert-list .slick-dots li.slick-active button:before {
    opacity: 1;
    background: var(--orange);
}


/* BOX PHONE */

.c-selectOffert .c-selectOffert-list{
    padding: 3rem 0 1rem;
}

.c-selectOffert .c-box-phone{
    position: relative;
    padding: 28px 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--dotsGray);
    max-width: 270px;
    margin: 1rem 5px;
}

.c-selectOffert .c-box-cuota{
    position: absolute;
    padding: 2px 16px 3px;
    color: #fff;
    border-radius: 8px 8px 0 8px ;
    top: 0;
    right: 0;
    transform: translateY(-50%);
}

.c-selectOffert .c-box-cuota br{
    display: none;
}

.c-selectOffert .c-box-cuota p{
    font-size: 3.6vw;
    line-height: normal;
}
.c-selectOffert .c-box-cuota span{
    font-size: 150%;
    font-weight: 500;
}

.c-selectOffert .c-box-info{
    display: grid;
    grid-template-columns: 60% 36%;
    place-content: center;
    gap: 4%;
    margin-bottom: 2rem;
}

.c-selectOffert .c-box-info__spec{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.c-selectOffert .c-spec-item{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 2px;
    margin-right: -24px;
    width: 100%;
    border-radius: 8px 0 0 8px;
}

.c-selectOffert .c-spec-item .box-icon {
    display: block;
    width: 16px;
    height: 16px;
}

.c-selectOffert .c-spec-item .icon-memory {
    -webkit-mask: url(../../images/icons/icon-memory.svg) no-repeat 100% 100%;
    mask: url(../../images/icons/icon-memory.svg) no-repeat 100% 100%;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: var(--blue);
}

.c-selectOffert .c-spec-item .icon-cam {
    -webkit-mask: url(../../images/icons/icon-cam.svg) no-repeat 100% 100%;
    mask: url(../../images/icons/icon-cam.svg) no-repeat 100% 100%;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: var(--blue);
}

.c-selectOffert .c-spec-item p{
    font-size: 1.4vw;
    line-height: normal;
}

.c-selectOffert .c-box-title{
    font-size: 3.4vw;
    line-height: normal;
}

.c-selectOffert .c-box-item:nth-child(2n) .c-box-phone{
    max-width: 210px;
}
.c-selectOffert .c-box-item:nth-child(2n) .c-spec-item p{
    display: none;
}
.c-selectOffert .c-box-item:nth-child(2n) .c-spec-item{
    min-width: 100%;
    width: 100%;
}

.c-selectOffert .c-box-callback{
    padding-top: 20px;  
}

@media screen and (min-width:500px) {
    .c-selectOffert .c-box-phone{
        padding: 40px 12px 18px;
    }

    .c-selectOffert .c-selectOffert-btn {
        font-size: 23px;
    }

    .c-selectOffert .c-box-cuota{
        transform: translateY(0%);
        border-radius: 12px 12px 0 12px ;
    }

    .c-selectOffert .c-box-cuota br{
        display: block;
    }

    .c-selectOffert .c-box-cuota p{
        font-size: 18px;
    }

    .c-selectOffert .c-spec-item p{
        font-size: 11px;
    }

    .c-selectOffert .c-box-info__spec{
        justify-content: flex-end;
    }

    .c-selectOffert .c-box-title{
        font-size: 20px;
    }

    .c-selectOffert .c-spec-item{
        margin-right: -32px;
        min-width: 100px;
        border-radius: 8px;
    }

    .c-selectOffert .c-box-item:nth-child(2n) .c-box-phone{
        max-width: 270px;
    }
    .c-selectOffert .c-box-item:nth-child(2n) .c-spec-item p{
        display: block;
    }
    .c-selectOffert .c-box-item:nth-child(2n) .c-spec-item{
        min-width: 100px;
        width: auto;
    }
}

@media screen and (min-width:650px) {
    .c-selectOffert .c-selectOffert-list{
        display: grid;
        grid-template-columns: repeat(auto-fit,290px);
        place-content: center;
        gap: 10px;
    }
}


/* CSS INFO POST BANNER  */
.c-infoPostBanner {
    padding: 3rem 15px;
}

.c-infoPostBanner .c-infoPostBanner__title {
    display: block;
    font-size: 6vw;
    line-height: normal;
    max-width: 980px;
    margin: 0 auto 1rem;
}

.c-infoPostBanner .c-infoPostBanner__title span {
    font-size: 150%;
    line-height: normal;
}


.c-infoPostBanner .c-infoPostBanner__infoBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 16px;
    border: 1px solid var(--blue);
    border-radius: 25px;
    row-gap: 18px;
}

.c-infoPostBanner .c-infoBox-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding: 12px 5px;
}

.c-infoPostBanner .c-infoBox-item p {
    font-size: 3vw;
    line-height: normal;
}

.c-infoPostBanner .c-infoBox-item:nth-child(odd) {
    border-right: 1px solid var(--blue);
}

.c-infoPostBanner .c-infoBox-item:last-child {
    border-right: 0 !important;
}

.c-infoPostBanner .itemBox-icon {
    display: inline-block;
    vertical-align: middle;
    width: 45px;
    height: 45px;
}

.c-infoPostBanner .icon-hand {
    -webkit-mask: url(../../images/icons/icon-hand-money.svg) no-repeat 100% 100%;
    mask: url(../../images/icons/icon-hand-money.svg) no-repeat 100% 100%;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--blue);
    transition: all .3s ease;
}

.c-infoPostBanner .icon-money {
    -webkit-mask: url(../../images/icons/icon-dollar.svg) no-repeat 100% 100%;
    mask: url(../../images/icons/icon-dollar.svg) no-repeat 100% 100%;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--blue);
    transition: all .3s ease;
}

.c-infoPostBanner .icon-docMoney {
    -webkit-mask: url(../../images/icons/icon-phone-money.svg) no-repeat 100% 100%;
    mask: url(../../images/icons/icon-phone-money.svg) no-repeat 100% 100%;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--blue);
    transition: all .3s ease;
}

.c-infoPostBanner .icon-handChoose {
    -webkit-mask: url(../../images/icons/icon-accede.svg) no-repeat 100% 100%;
    mask: url(../../images/icons/icon-accede.svg) no-repeat 100% 100%;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--blue);
    transition: all .3s ease;
}


@media screen and (min-width:500px) {
    .c-infoPostBanner .c-infoPostBanner__title {
        font-size: 35px;
    }

    .c-infoPostBanner .c-infoBox-item p {
        font-size: 18px;
    }
}

@media screen and (min-width:1000px) {
    .c-infoPostBanner .c-infoPostBanner__infoBox {
        grid-template-columns: repeat(4, 1fr);
    }

    .c-infoPostBanner .c-infoBox-item:nth-child(n) {
        border-right: 1px solid var(--blue);
    }
}



/* INFO CLIENTES EXCLUSIVO */
.c-clientInfo {
    padding: 3rem 16px 0;
}

.c-clientInfo .c-clientInfo__term {
    font-size: 5.2vw;
    line-height: normal;
    margin-bottom: 3rem;
}

.c-clientInfo .c-clientInfo__box {
    margin: 0 -16px;
    padding: 3rem 16px 3rem;
}

.c-clientInfo .c-box-title {
    font-size: 7vw;
    line-height: 7.6vw;
}

.c-clientInfo .c-box-title span {
    font-size: 150%;
}

.c-clientInfo .c-box-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2rem auto 0;
}

.c-clientInfo .c-box-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px;
}

.c-clientInfo .c-box-item img {
    display: block;
    margin: 0 auto;
    height: 40px;
}

.c-clientInfo .c-box-item p {
    font-size: 4vw;
    line-height: normal;
}

@media screen and (min-width:500px) {
    .c-clientInfo .c-clientInfo__term {
        font-size: 22px;
    }

    .c-clientInfo .c-box-title {
        font-size: 40px;
        line-height: 47px;
    }

    .c-clientInfo .c-box-list {
        justify-content: space-between;
        flex-direction: row;
        max-width: 600px;
    }

    .c-clientInfo .c-box-item p {
        font-size: 24px;
    }

    .c-clientInfo .c-box-item img {
        height: auto;
    }

}
