@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
 font-family: 'Nunito', sans-serif;
}


.faqs{
    height: auto;
    width: 100%;
/*    background: red;*/
    padding-bottom: 50px;
}


.faqs-content-txt{
    width: 68%;
    height: auto;
    padding: 100px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.faq-titulo{
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    position: relative;
    color: #0E2546;
}

.faq-txt{
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    margin-top: 20px;
    color: #0E2546;
    font-weight: 500;
}

.faq-txt:nth-of-type(1){
    margin-top: 50px;
}

.faqs-container{
    width: 68%;
    height: auto;
    margin: auto;
}

.caja-pregunta{
    height: auto;
}

.grupo-faq{
    width: 100%;
    height: max-content;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin-top: 10px;
}


.faq-pregunta{
    font-size: 28px;
    font-weight: 600;
    color: #0E2546;
	padding: 0 3% 0 0 ;
	line-height: 1.5;
}

.faqs-arrow-icon{
    width: 22px;
    height: 22px;
/*    background: red;*/
    position: absolute;
    right: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faqs-respuesta{
    line-height: 1.5;
    margin-top: 20px;
    text-align: justify;
    font-size: 17px;
    display: none;
    color: #0E2546;
}

.faqs-respuesta-toggle{
    display: block;
}

.faqs-arrow-bottom{
    fill:none;
    stroke:#000;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-width:1.5px;
}

.faqs-arrow-top{
   fill:none;
    stroke:#000;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-width:1.5px;
    display: none;
}

.faqs-arrow-bottom-animation{
    display: none;
}

.faqs-arrow-top-animation{
    display: block;
}

.pregunta-franja-bottom{
    position: absolute;
    bottom: -5px;
    width: 0%;
    height: 2px;
   background: rgb(16,40,77);
background: linear-gradient(48deg, rgba(16,40,77,1) 50%, rgba(16,40,77,0) 94%);
    transition: ease 1s;
}

.pregunta-franja-bottom-animation{
    width: 100%;
}

.faq-pregunta:hover > .pregunta-franja-bottom{
    width: 100%;
}

body.dark .pi-titulo{
    color: #F0F2F4;
}

body.dark .faq-txt{
    color: #F0F2F4;
}

body.dark .pi-txt{
    color: #bebebe;
}

body.dark .respuesta{
    color: #bebebe;
}

body.dark .pregunta-franja-bottom{
   background: rgb(255,255,255);
background: linear-gradient(48deg, rgba(255,255,255,1) 50%, rgba(16,40,77,0) 94%);
}

@media screen and (min-width: 320px) and (max-width: 850px) {
	.faqs-content-txt{
    width: 90%;
    height: auto;
    padding: 50px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
	
	.faqs-container{
    width: 90%;
    height: auto;
    margin: auto;
}

.faq-pregunta{
    font-size: 18px;
	padding: 0 5% 0 0;
    
}	
.faqs-arrow-icon{
    width: 14px;
    height: 14px;
}

	
}