.row{
	margin: 0;
}
.page-header,
.author {
	display: none;
}
.center_t{
	width: 100%;
	display: flex;
	justify-content: center;
}
.transparencia-accordion {
    /*color: rgba(4,57,94,1);
    background: rgba(4,57,94,.1);
    padding: 0 1em 1em;*/
    font-family: 'Arial', sans-serif;
}

.transparencia-accordion h1{
    text-align:center;
    color: #20315C;
    font-weight: 600;
}
.transparencia-accordion h3{
	font-family: 'Arial', sans-serif;
    text-align:center;
    color: #DBA514;
    font-size: 1.8rem;
}
input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.accordion-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
    width: 600px;
    margin:0 auto;
}
.accordion {
    width: 100%;
    color: white;
    overflow: hidden;
    margin-bottom: 16px;
}
.accordion:last-child{
    margin-bottom: 0;
}
.accordion-label {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px;
    background: rgba(32,49,92,1);
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
}
.accordion-label:hover {
    background: rgba(43,65,121,1); /*4,57,94*/
}
.accordion-label::after {
    content: "\276F";
    width: 16px;
    height: 16px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.accordion-content {
    max-height: 0;
    padding: 0 16px;
    color: rgba(4,57,94,1);
    background-color: rgb(245, 245, 239);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-left: 4px solid rgb(219, 165, 20);
}
.accordion-content p{
		font-family: "Arial";
    margin: 0;
    color: rgba(32,49,92,1);
    font-size: 2.15rem;
}

.accordion-content .enlace_t{
		font-size: 1.4rem;
		margin-bottom: 10px;
		color: #DBA514;	
}

input:checked + .accordion-label {
    background: rgba(54,83,155,1);
}
input:checked + .accordion-label::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
input:checked ~ .accordion-content {
    max-height: 100vh;
    padding: 16px;
}
  