.hide{
    display: none;
}
.project{

}
#project-terms a  span {
  display: inline-block;
  line-height: 35px;
  padding: 0 5px;
  position: relative;
  color: #0b18b7;
  font-family: 'Poppins Bold', sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 500
}

#project-terms a.active span {
  background-color: #ffcd00;
  color: #09177c;
  font-weight: bold;
}


#project-terms a span:hover {
    background-color: #ffcd00;
    color: #09177c;
    text-decoration: underline;
}
  


.accordion {
width:100%;	
max-width: 1000px;
margin: 2rem auto;
}

.accordion-item {
margin: 1rem 0;
border-radius: 0.5rem;
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}

.accordion-item-header {
padding: 0.5rem 3rem 0.5rem 1rem;
min-height: 3.5rem;
line-height: 1.25rem;
font-weight: bold;
display: flex;
align-items: center;
position: relative;
cursor: pointer;
color: #000b8c;
}

.accordion-item-header::after {
content: "\002B";
font-size: 2rem;
position: absolute;
right: 1rem;
}

.accordion-item-header.active::after {
content: "\2212";
}

.accordion-item-body {
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
padding: 1rem;
line-height: 1.5rem;
color: #000b8c;
border-top: 1px solid;
border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

@media(max-width:767px) {
html {
  font-size: 14px;
}
}

/* Works on Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #000b8c #fff;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 18px;  /* ancho de la barra de la pagina*/
height:18px;
}

*::-webkit-scrollbar-track { /* base de la barra de la pagina*/
background: #fff;
}

*::-webkit-scrollbar-thumb { /* barra de la pagina*/
background-color: #000b8c;
border-radius: 7px;
border: 3px solid #fff;
}