:root {
    --white: #fff;
    --blue: #019df4;
    --blueHover: #1eaefe;
    --darkBlue: #0B2739;
    --orange: #ec624b;
    --textGray: #313235;
    --sectionGray: #f5f5f5;
    --sectionGray2: #f7f7f7;
    --dotsGray: #d3d4d3;
    --disableGray: #86888c;
    --lightGray: #50535a;
    --buttomDisableGray: #b6b7b7;
    --error: #E63780;


    --f-normal: 'TelefonicaWeb-Regular', Arial, Helvetica, sans-serif;
    --f-light: 'TelefonicaWeb-Light', Arial, Helvetica, sans-serif;
    --f-lightExtra: 'Telefonica-ExtraLight', Arial, Helvetica, sans-serif;
    --f-bold: 'TelefonicaWeb-Bold', Arial, Helvetica, sans-serif;
    --f-italic: 'TelefonicaWeb-Italic', Arial, Helvetica, sans-serif;
    --f-normal-italic: 'TelefonicaWeb-RegularItalic', Arial, Helvetica, sans-serif;
    --f-thin: 'TelefonicaWeb-Thin', Arial, Helvetica, sans-serif;
    --f-hand: 'TelefonicaWeb-Hand', Arial, Helvetica, sans-serif;
    --f-curve: 'Guthen-Bloots-Alt1', Arial, Helvetica, sans-serif;

}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    font-family: var(--f-normal);
}

*:focus {
    outline: 0;
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--f-normal);
    color: var(--textGray);
    font-size: 18px;
}

b {
    font-family: var(--f-bold);
    color: inherit;
}

a {
    color: var(--blue);
}

main {
    padding: 70px 0 0;
    overflow: hidden;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--darkBlue);
    box-shadow: 0 0 0px 1000px transparent insert;
    transition: background-color 5000s ease-in-out 0s;
}

/* clases para ocultar elementos */
.h-xs {
    display: none;
}

.v-xs {
    display: block;
}

@media screen and (min-width:768px) {
    .h-xs {
        display: block;
    }

    .v-xs {
        display: none;
    }
}

/* maximo contenido pagina */
.c-max {
    /* max-width: 1600px; */
    margin: 0 auto;
}

.c-max-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.c-max-1000 {
    max-width: 1000px;
    margin: 0 auto;
}

.c-max-800 {
    max-width: 800px;
    margin: 0 auto;
}

.c-max-700 {
    max-width: 700px;
    margin: 0 auto;
}

.c-max-900 {
    max-width: 900px;
    margin: 0 auto;
}

/* fuentes */

.f-normal {
    font-family: var(--f-normal);
}

.f-light {
    font-family: var(--f-light);
    font-weight: 200;
}

.f-lightExtra {
    font-family: var(--f-lightExtra);
}

.f-bold {
    font-family: var(--f-bold);
}

.f-italic {
    font-family: var(--f-italic);
}

.f-normal-italic {
    font-family: var(--f-normal-italic);
}

.f-thin {
    font-family: var(--f-thin);
    font-weight: normal;
}

.f-hand {
    font-family: var(--f-hand);
}

.f-curve {
    font-family: var(--f-curve);
    font-weight: 100;
}

/* text align */

.t-center {
    text-align: center;
}

.t-left {
    text-align: left;
}

.t-right {
    text-align: right;
}

/* combinaciones orientacion mobile a desk  */

.t-center-right {
    text-align: center;
}

.t-center-left {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .t-center-right {
        text-align: right;
    }

    .t-center-left {
        text-align: left;
    }
}

/* colores */

.c-blue {
    color: var(--blue);
}

.c-darkBlue {
    color: var(--darkBlue);
}

.c-orange {
    color: var(--orange);
}

.c-white {
    color: var(--white);
}

.c-gray {
    color: var(--textGray);
}

/* color background */

.bg-blue {
    background: var(--blue);
}

.bg-darkBlue {
    background: var(--darkBlue);
}

.bg-orange {
    background: var(--orange);
}

.bg-white {
    background: var(--white);
}

.bg-gray {
    background: var(--textGray);
}

.bg-gray2 {
    background-color: #F5F5F5;
}

.bg-section {
    background: var(--sectionGray);
}

.bg-section2 {
    background: var(--sectionGray2);
}


/* control imagen responsive */

.img-resp {
    max-width: 100%;
    height: auto;
}



/* GLOBAL DOTS AND ARROWS SLIDER  */
.btn-ctrl-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* confg arrows */
.btn-ctrl-content .btn-ctrl-arrow {
    border: none;
    transition: all .3s ease;
    width: 24px;
    height: 24px;
    background: transparent;
    cursor: pointer;
}

.btn-ctrl-content .btn-ctrl-arrow::before {
    content: ' ';
    display: block;
    -webkit-mask: url(../images/icons/icon-arrow.svg) no-repeat 100% 100%;
    mask: url(../images/icons/icon-arrow.svg) no-repeat 100% 100%;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: var(--orange);
    height: 24px;
}

.btn-ctrl-content .btn-ctrl-arrow.slick-disabled {
    opacity: 0;
}

.btn-ctrl-content .btn-ctrl-arrow.prev::before {
    transform: rotate(180deg);
}

/* confg dots */
.btn-ctrl-content .c-dots {
    padding: 0 4px;
}

.btn-ctrl-content .slick-dots {
    position: relative;
    bottom: 0;
    width: max-content;
}

.btn-ctrl-content .slick-dots li {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    transition: all .3s ease-in-out;
}

.btn-ctrl-content .slick-dots li button {
    width: 100%;
    height: 100%;
}

.btn-ctrl-content .slick-dots li button:before {
    content: ' ';
    background: var(--dotsGray);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all .3s ease-in-out;
    opacity: .7;
}

.btn-ctrl-content .slick-dots li.slick-active {
    width: 36px;
}

.btn-ctrl-content .slick-dots li.slick-active button:before {
    opacity: 1;
    background: var(--orange);
}


/* GLOBAL QUESTION */

.c-question-content {
    margin: 12px 0;
}

.c-question-content .c-question__title {
    position: relative;
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #d3d4d3;
    padding: 12px 36px 12px 8px;
    font-size: 4.5vw;
    font-family: var(--f-normal);
    cursor: pointer;
    transition: all .5s ease;
}

.c-question-content .c-question__title::after {
    content: ' ';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border: solid var(--textGray);
    border-width: 0 2px 2px 0;
    transition: all .5s ease;
}

.c-question-content .c-question__title.active {
    border-bottom: 0;
}

.c-question-content .c-question__title.active::after {
    top: 55%;
    transform: translateY(-50%) rotate(225deg);
    border-color: var(--orange);
}

.c-question-content .c-question__answer {
    display: none;
    padding: 8px 4px 26px;
    margin-top: 4px;
    border-bottom: 1px solid var(--orange);
    font-size: 3.8vw;
    line-height: normal;
}

.c-question-content .c-question__answer ol {
    list-style-type: none;
    margin: 16px 0 16px 12px;
}

.c-question-content .c-question__answer ol>li {
    position: relative;
    padding: 0 0 16px 28px;
}

.c-question-content .c-question__answer ol>li::before {
    content: counter(list-item);
    position: absolute;
    background: var(--darkBlue);
    color: var(--white);
    padding: 3px 7px;
    border-radius: 50%;
    font-size: 13px;
    top: 0;
    left: 0;
}

.c-question-content .c-question__answer ul {
    margin: 16px 0 0;
}

.c-question-content .c-question__answer ul>li {
    position: relative;
    padding: 0 0 12px;
    margin-left: 24px;
}

.c-question-content .c-question__answer ul>li::marker {
    color: var(--blue);
}

@media screen and (min-width:500px) {
    .c-question-content .c-question__title {
        font-size: 18px;
    }

    .c-question-content .c-question__answer {
        padding: 8px 12px 26px;
        font-size: 17px;
    }

}

@media screen and (min-width:768px) {
    .c-question-content .c-question__title {
        font-size: 21px;
    }

    .c-question-content .c-question__title::after {
        width: 10px;
        height: 10px;
    }
}