.header {
    background-color: #1a2442;
    position: static !important;
    padding: 2em 0;
}

.franja-blanca{
    display: flex;
	justify-content:center;
	background-color:#FFF;
	padding: 2em 0;
}

.franja-blanca h1 {
    font-family: 'GeneralSans Semibold';
    color: #1a2442;
    font-size: 2.5em;
}

.rowFAQ {
    background-color: #1a2442;
    display: flex;
    padding: 4em 10em;
    align-items: flex-start;
	position: relative;
}

.contentFAQ h2 {
    font-family: 'GeneralSans Semibold';
    color: white;
    padding: 0 8%;
    box-sizing: border-box;
}

.contentFAQ p, .contentFAQ li {
    font-family: 'GeneralSans Light';
    color: white;
}

.boxFAQ {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contentFAQ {
    width: 80%;
    padding: 2em 1em;
    text-align: center;
}

.colorYellow {
    background-color: rgb(236, 178, 28);
}

.titleFAQ {
    position: relative;
    margin-bottom: 1vh;
    cursor: pointer;
}

.titleFAQ .imgArrow {
    width: 2%;
    background-color: white;
    border-radius: 50%;
    padding: 0.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-100%, -50%);
    transition: all 0.25s ease-in-out;
}

.imgArrow.active {
    transform: translate(-100%, -50%) rotate(90deg);
}

.imgArrow svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.textFAQ {
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
}

.textFAQ p {
    padding: 1.5em 4em;
    font-size: 1.2em;
}

@media only screen and (max-width: 1600px) {
    .titleFAQ .imgArrow {
        width: 3.5%;
    }
}

@media only screen and (max-width: 1200px) {
    .rowFAQ {
        padding: 4em 0;
    }
    .titleFAQ .imgArrow {
        width: 4.5%;
    }
    .textFAQ p {
        padding: 1.5em 1em;
        font-size: 1.2em;
    }
}

@media screen and (max-width: 1099px) {
    .textFAQ p {
        font-size: 1em;
    }
}

@media screen and (max-width: 600px) {
    .contentFAQ {
        width: 90%;
    }
    .contentFAQ h2 {
        padding: 0 12%;
        font-size: 1.3em;
    }
    .titleFAQ .imgArrow {
        width: 5.5%;
    }
}

@media screen and (max-width: 400px) {
    .contentFAQ h2 {
        padding: 0 13%;
    }
    .titleFAQ .imgArrow {
        width: 7.5%;
    }
}