.proyectos-section {
margin-block: var(--space-24);
}
.proyectos-section .titles_epower h2{
font-weight: 700;
max-width: 600px;
margin: 0 auto;
text-align: center;
margin-bottom: 35px;
}
.proyectos-section .filtros {
text-align: center;
margin-bottom: var(--space-8);
}
.grid-proyectos {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
text-align: center;
}
.proyecto {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 2px 8px 20px 0px rgba(0, 0, 0, 0.10);
}
.proyecto img {
width: 100%;
height: auto;
max-height: 280px;
height: 280px;
object-fit: cover;
}
.proyecto.oculto {
display: none !important;
}
.proyectos-section button {
border: none;
}
.proyectos-section .content-proyecto {
padding: var(--space-5);
text-align: left;
}
.proyectos-section .content-proyecto .cat {
color: var(--primary-color);
font-size: var(--fs-16);
font-style: normal;
font-weight: 600;
line-height: normal;
margin-bottom: var(--space-3);
}
.proyectos-section .content-proyecto h3{
font-size: var(--fs-20);
font-weight: 700;
}
.proyectos-section .content-proyecto p:not(.cat){
font-size: var(--fs-18);
margin-bottom: 0;
}
.proyectos-section .loadmore{
margin-top: var(--space-8);
display: flex;
justify-content: center;
}
.proyectos-section .filtros{
text-align: center;
margin-bottom: var(--space-8);
display: flex;
align-items: center;
gap: 10px;
justify-content: center;
}
.proyectos-section .filtros button{
font-size: var(--fs-18);
font-family: var(--primary-font);
color: var(--quinary-color);
border: 1px solid var(--quinary-color);
border-radius: 60px;
padding: 10px 18px;
background: transparent;
padding-inline: 35px;
position: relative;
transition: all 0.3s ease;
cursor: pointer;
}
.proyectos-section .filtros button.active{
border-color: var(--primary-color);
color: var(--primary-color);
}
.proyectos-section .filtros button::after {
content: '\F272';
font-family: 'bootstrap-icons';
display: inline-flex;
flex-direction: row;
align-items: center;
position: relative;
margin-top: 0px;
line-height: normal;
top: 3px;
margin-left: 5px;
display: inline-flex;
opacity: 0;
position: absolute;
top: calc(50% + 1px);
transform: translateY(-50%);
right: 15px;
}
.proyectos-section .filtros button.active::after {
opacity: 1;
}
@media (max-width: 991px) {
.proyectos-section{
margin-block: var(--space-8);
}
.grid-proyectos {
grid-template-columns: repeat(2, 1fr);
}
.proyectos-section .filtros-mobile{
margin-bottom: 25px;
}
}
@media (max-width: 768px) {
.grid-proyectos {
grid-template-columns: repeat(1, 1fr);
}
}.manuales-section {
margin-block: var(--space-24);
}
.manuales-section .titles_epower h2{
text-align: center;
font-weight: 700;
margin-bottom: var(--space-8);
}
.manuales-section .filtros {
text-align: center;
margin-bottom: var(--space-8);
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
}
.grid-manuales {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 32px;
text-align: center;
}
.manual {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 2px 8px 20px 0px rgba(0, 0, 0, 0.10);
min-height: 250px;
}
.manual img {
width: 100%;
height: auto;
max-height: 280px;
height: 280px;
object-fit: cover;
}
.manual.oculto {
display: none !important;
}
.manuales-section button {
border: none;
}
.manuales-section .content-manual {
padding: var(--space-5);
text-align: left;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.manuales-section .content-manual .cat {
color: var(--primary-color);
font-size: var(--fs-12);
font-style: normal;
font-weight: 600;
line-height: normal;
margin-bottom: var(--space-3);
}
.manuales-section .content-manual .head-manual i {
font-size: var(--fs-50);
color: var(--primary-color);
margin-bottom: var(--space-3);
}
.manuales-section .content-manual h3 {
font-size: var(--fs-18);
font-weight: 500;
margin-bottom: var(--space-3);
}
.manuales-section .content-manual p:not(.cat) {
font-size: var(--fs-18);
margin-bottom: 0;
}
.manuales-section .content-manual a {
width: 100%;
border-color: var(--primary-color);
color: var(--primary-color);
}
.manuales-section .loadmore {
margin-top: var(--space-8);
display: flex;
justify-content: center;
}
.manuales-section .filtros button {
font-size: var(--fs-18);
font-family: var(--primary-font);
color: var(--quinary-color);
border: 1px solid var(--quinary-color);
border-radius: 60px;
padding: 10px 18px;
background: transparent;
transition: all 0.3s ease;
cursor: pointer;
}
.manuales-section .filtros button.active {
border-color: var(--primary-color);
color: var(--primary-color);
}
.manuales-section .filtros button.active::after {
content: '\F272';
font-family: 'bootstrap-icons';
display: inline-flex;
flex-direction: row;
align-items: center;
position: relative;
margin-top: 0px;
line-height: normal;
top: 3px;
margin-left: 5px;
}
@media (max-width: 1200px) {
.grid-manuales {
grid-template-columns: repeat(4, 1fr);
}
}
@media (max-width: 991px) {
.grid-manuales {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.grid-manuales {
grid-template-columns: repeat(1, 1fr);
}
}