.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 19px;
    margin-block: 65px;
}

.card-container .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 360px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.card-container .card:hover {
    transform: translateY(-5px);
}

.card-container .card-title {
    color: #f47115;
    font-size: 15px;
    font-weight: 600;
    margin-block-end: 10px;
}

.card-container .card-description {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    margin-block-end: 32px;
}

.card-container .card-button {
    display: flex;
    justify-content: center;
    border-radius: 5px;
    background-color: var(--titleOrange);
    transition: transform .2s;
    width: 100%;
    height: 30px;
    top: auto;
    width: -webkit-fill-available;
}

.card-container .card-button:hover {
    transform: scale(1.05);
    text-decoration: unset;
}

.card-container .card-button span {
    transform: none !important;
    position: relative;
    color: var(--lightGrey);
    font-weight: lighter;
    margin-top: 0;
    font-size: 30px;
    top: 0;
    left: 0;
}

/* Generics tabs */

.generic-tabs .nav-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid #f2f2f2;
}


@media (max-width:767px) {
    .generic-tabs .nav-tabs {
        gap: 8px;
        border-bottom: unset;
        justify-content: center;
        position: relative;
    }
}

.generic-tabs .nav-tabs .nav-link {
    font-size: 19px;
    font-weight: 600;
    color: #2d2d2d;
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 0;
    padding-bottom: 8px;
    cursor: pointer;
    text-align: left;
    border-bottom: 3px solid transparent;
}

@media (max-width:767px) {
    .generic-tabs .nav-tabs .nav-item {
        font-size: 1px;
        color: transparent;
        background-color: #f2f2f2;
        border-radius: 99px;
        display: block !important;
        position: static !important;
        height: 8px !important;
        width: 50px !important;
    }

    .generic-tabs .nav-tabs .nav-item button {
        font-size: 1px;
        color: transparent;
        border: unset !important;
        height: 8px !important;
        width: 50px !important;
    }

    .generic-tabs .nav-tabs .nav-item:has(.active) {
        background-color: var(--c-primary);
        border: unset !important;
    }
}

.generic-tabs .nav-tabs .nav-link.active {
    border-color: var(--c-primary);
}

.generic-tabs .nav-tabs .nav-item {
    margin: 0;
    translate: 0 3px;
}

.generic-tabs .nav-tabs .nav-item button {
    padding-inline: 16px;
    font-size: 14px;
}

.generic-tabs .tab-content {
    margin-block: 48px;
}

.generic-tabs .title-tab__responsive {
    display: none;
    text-align: center;
}

.generic-tabs .title-tab__responsive span {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.36px;
    color: #2d2d2d;
}

@media (max-width:767px) {
    .generic-tabs .title-tab__responsive {
        display: block;
    }
}


/* Custom footer more info block */

.newsletter-block {
    z-index: 1;
    position: relative;
}

.footer {
    position: relative;
}

.contact.moreInfo {
    --bg: #fafafa;
    box-shadow: 0 0 0 100vmax var(--bg);
    clip-path: inset(0 -100vmax -100vmax -100vmax);
    background-color: var(--bg);

    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 75px 54px;
}

.invitado .contact.moreInfo {
    padding-block-end: unset;
}

.contact.moreInfo h2 {
    --min: 20;
    --max: 24;
    --mintrans: 412;
    --maxtrans: 1700;
    font-size: clamp(var(--min) * 1px, calc((var(--max) - var(--min)) * ((100vw - var(--mintrans)* 1px) / (var(--maxtrans) - var(--mintrans))) + var(--min) * 1px), var(--max) * 1px);

    color: var(--c-primary);
    letter-spacing: 0.48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact.moreInfo p {
    font-size: 15px;
    color: #2d2d2d;
    text-align: center;
}

.contact.moreInfo a {
    background-color: #ef7e21;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.contact.moreInfo a::before {
    content: '';
    height: 20px;
    width: 20px;
    background-image: url("/imagenes/proyectos/personalizacion/9f767b8b-9ff7-4461-9e27-d151e04d8629/theme/separados/resources/icons-svg/icon_send.svg");
}

/* Custom slider */
.customSlider .owl-stage {
    display: flex;
}

.customSlider .owl-stage .item {
    height: 100%;
}

.customSlider :is(.owl-nav, .owl-dots).disabled {
    display: none;
}

.customSlider .owl-dots {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 4px;
    margin-block-start: 34px;
}

.customSlider .owl-dots .owl-dot {
    all: unset;
    --size-default: 11px;
    --_size: var(--size, var(--size-default));
    width: var(--_size);
    height: var(--_size);
    border-radius: var(--_size);

    --bgcolor-default: #f2f2f2;
    --_bgcolor: var(--bgcolor, var(--bgcolor-default));
    background-color: var(--_bgcolor);
}

.customSlider .owl-dots .owl-dot.active {
    --bgcolor: #ef7e21;
}

/* testimonials */

.testimonials-section {
    background-color: #fafafa;
    padding-block: 42px;
}

.testimonials-section .testimonials-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.21;
    letter-spacing: 0.48px;
    text-align: left;
    color: #2d2d2d;
    margin-block-end: 49px;
}

.testimonials-section .testimonial-cards {
    position: relative;
    overflow: hidden;
}

.testimonials-section .testimonial-cards .owl-item {
    display: flex;
    justify-content: center;
}

.testimonials-section .testimonial-cards .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
}

.testimonials-section .testimonial-cards .owl-nav .owl-prev {
    position: absolute;
    left: 0;
}

.testimonials-section .testimonial-cards .owl-nav .owl-next {
    position: absolute;
    right: 0;
}

.testimonials-section .testimonial-cards .owl-nav>button {
    cursor: pointer;
}

.testimonials-section .testimonial-cards .owl-nav>button,
.testimonials-section .testimonial-cards .owl-nav>button:focus {
    background: unset;
    border: unset;
    outline: unset;
}

.testimonials-section .testimonial-cards .owl-nav>button>span {
    font-size: 50px;
    color: #f47115;
}

.testimonials-section .testimonial-card {
    display: flex;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    /* max-width: 1318px; */
    max-height: 578px;
    margin: 0 auto;
    margin-inline: 80px;
}

@media (max-width: 991px) {
    .testimonials-section .testimonial-card {
        max-height: unset;
    }
}

@media (max-width: 767px) {
    .testimonials-section .testimonial-card {
        flex-direction: column;
        max-height: unset;
        width: fit-content;
        margin-inline: 20px;
    }
}

.testimonials-section .testimonial-image {
    width: 30%;
    max-height: 100%;
    height: 100%;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

@media (max-width: 991px) {
    .testimonials-section .testimonial-image {
        width: 40%;
    }
}

@media (max-width: 767px) {
    .testimonials-section .testimonial-image {
        width: 100%;
        max-width: 369px;
        max-height: 202px;
        border-bottom-left-radius: unset;
        border-top-right-radius: 8px;
    }
}

.testimonials-section .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 767px) {
    .testimonials-section .testimonial-image img {
        object-position: center;
    }
}

.testimonials-section .testimonial-content {
    width: 70%;
    height: 100%;
    padding: 45px 62px 56px 44px;
    background-color: white;
    background-image: url('https://serviciospruebas.gnoss.net/imagenes/proyectos/personalizacion/ecosistema_corporate/theme/separados/resources/icons-svg/comillas.svg');
    background-repeat: no-repeat;
    background-size: 280px;
    background-position: -35px -22px;
}

@media (max-width: 991px) {
    .testimonials-section .testimonial-content {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .testimonials-section .testimonial-content {
        width: 100%;
        max-width: 369px;
        padding: 69.8px 31px 30px 23px;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
    }
}

.testimonials-section .testimonial-text {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: 0.36px;
    color: #2d2d2d;
    margin-block-end: 30px;
}


.testimonials-section .author-name {
    font-size: 15px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.3px;
    text-align: left;
    color: #f47115;
    margin-block-end: 5px;
}

.testimonials-section .author-title {
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-align: left;
    color: #2d2d2d;
    margin-block-end: 0;
}

.information-section {
    padding-block: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.information-section .information-image {
    width: 176px;
    height: 176px;
    object-fit: cover;
    border-radius: 50%;
    margin-block-end: 20px;
}

.information-section .information-title {
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.08;
    letter-spacing: 0.48px;
    text-align: center;
    color: #2d2d2d;
}

.information-section .information-text {
    max-width: 450px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.15px;
    text-align: center;
    color: #2d2d2d;
    margin-block-end: 29px;
}

.information-section .information-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.information-section .information-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background-color: #ef7e21;
    cursor: pointer;
}

.information-section .information-icons a:nth-of-type(1) img,
.information-section .information-icons a:nth-of-type(2) img {
    height: 22px;
    width: 22px;
}


/* ROW highlights con Slider */

/* --- titles ---*/
.carrusel-title span {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0.28px;
    color: #f47115;
}

.carrusel-title h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0.64px;
    color: #000;
    margin-top: 23px;
    margin-bottom: 40px;
}

/* --- end titles ---*/

#row-highlights.page-carrusel {
    padding-top: 43px;
    padding-bottom: 60px;
    background-image: url("../resources/modelo-herramientas/fondo-highlights.jpg");
    background-size: cover;
}

#row-highlights .elemento .icono img {

    width: 65px;
    height: 65px;
}

#row-highlights .elemento h3 {
    font-size: 17px;
    color: var(--titleOrange);
    line-height: 21px;
    text-transform: uppercase;
    letter-spacing: 0.34px;
    font-weight: bold;
    margin-bottom: 20px;

}

#row-highlights .elemento .icono {
    text-align: center;
    margin-bottom: 22px;
}

#row-highlights .customSlider .elemento {
    height: 100%;
    min-height: 194px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 6px 6px 10px 0 rgba(151, 163, 165, 0.2);
    padding: 39px 20px 52px 40px;
}

#row-highlights .customSlider .elemento span {
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.15px;
}

#row-highlights .carrusel-title span {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0.28px;
    color: #f47115;
}

/* ROW highlights END*/

/* ROW row-destacados con Slider */

#row-destacados .carrusel-title span {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.28px;
    color: #fff;
    font-weight: 600;
}

#row-destacados .carrusel-title h2 {
    font-size: 32px;
    letter-spacing: 0.64px;
    font-weight: 600;
    color: #fff;
}

#row-destacados.page-carrusel {
    padding: 65px 0 62px 0;
    background-image: url("../resources/indice3d/materiales-img.jpg");
    background-size: cover;
    background-position-y: calc(100%* 0.6);
}

#row-destacados .slider .customSlider {
    gap: 39px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1480px) {
    #row-destacados .slider .customSlider {
        display: unset;
    }
}

#row-destacados .customSlider.destacados {
    gap: 39px;
    display: flex;
    justify-content: center;
}

#row-destacados .customSlider .ficha-tres {
    flex: 1 1;
}

#row-destacados .customSlider .item-lineas {
    border: none;
    display: block;
    width: 100%;
}

#row-destacados .customSlider .item-lineas .contenido {
    box-shadow: 6px 6px 10px 0 rgb(221 212 212 / 20%);
    border-radius: 5px;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    position: relative;
}

#row-destacados .customSlider .item-lineas .contenido .wrap a img {
    height: 18px;
    width: auto;
}

#row-destacados .customSlider .item-lineas .contenido .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 18px 80px 18px;
    text-align: center;
}

#row-destacados .customSlider .item-lineas .contenido .wrap h2 {
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.3px;
    color: #2d2d2d;
}

#row-destacados .customSlider .item-lineas .contenido .wrap p {
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 18px;
    color: #f47115;
    margin: 0;
}

#row-destacados .customSlider .item-lineas .contenido .wrap a {
    bottom: 0;
    position: absolute;
    opacity: 100%;
    background-color: #ef7e21;
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    gap: 8px;
}

@media (max-width: 1200px) {
    #row-destacados .customSlider.destacados {
        gap: 0;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    #row-destacados .customSlider .item-lineas {
        height: 100%;
    }
}


/* FIN ROW row-destacados */

/* FICHA UNO CON: icono - titulo - texto - boton */

.ficha-uno {
    border: none;
    display: block;
    width: 100%;
}

.ficha-uno .contenido {
    box-shadow: 6px 6px 10px 0 rgb(221 212 212 / 20%);
    border-radius: 5px;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    position: relative;
}

.ficha-uno .contenido .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 18px 80px 18px;
    text-align: center;
}

.ficha-uno .imagen img {
    width: 48px;
    margin-bottom: 21px;
}

.ficha-uno .contenido .wrap h2 {
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.3px;
    color: #2d2d2d;
}

.ficha-uno .contenido .wrap p {
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 18px;
    color: #f47115;
    margin: 0;
}

.ficha-uno .contenido .wrap a {
    bottom: 0;
    position: absolute;
    opacity: 100%;
    background-color: #ef7e21;
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

/* FIN FICHA UNO*/


/* FICHA DOS CON: icono - texto */
.ficha-dos {
    height: 100%;
    min-height: 194px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 6px 6px 10px 0 rgba(151, 163, 165, 0.2);
    padding: 39px 20px 52px 40px;
}

.ficha-dos .icono {
    text-align: center;
    margin-bottom: 22px;
}

.ficha-dos .icono img {
    width: 65px;
    height: 65px;
}

.ficha-dos span {
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.15px;
}

/* FIN FICHA DOS */

/* FICHA TRES CON: titulo - texto - boton */

.ficha-tres {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px 20px 25px 20px;
    height: auto;
    min-height: 176px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 6px 6px 10px 0 rgba(151, 163, 165, 0.2);
}

.ficha-tres h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.3px;
    color: #000;
}

.ficha-tres span {
    margin-bottom: auto;
    max-width: 245px;
}

.ficha-tres .carrusel-button a {
    opacity: 100%;
    background-color: #f47115;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.ficha-tres .carrusel-button a img {
    height: 18px;
    width: auto;
}

/* FIN FICHA TRES */

/* ROW SABER MAS / CONTACTO */
.custom-contacto {
    background-color: #2d2d2d;
    /* margin-bottom: -540px; */
}

.custom-contacto .top-row {
    padding-top: 75px;
    padding-bottom: 75px;
}

.custom-contacto .container .col-info:has(.section-subtitle) .section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: 0.48px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.custom-contacto .container .col-info .section-subtitle {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.15px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
}

.custom-contacto .btn {
    border-radius: 5px;
    box-shadow: 6px 6px 10px 0 rgba(151, 163, 165, 0.1);
    background-color: var(--color-item-naranja);
    font-style: unset;
    display: flex;
    align-items: center;
    height: 47px;
}

.custom-contacto .btn::before {
    background-image: url(../resources/icons-svg/icon_send.svg);
    content: "";
    width: 20.2px;
    height: 20.2px;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 9.1px 0 0;
    display: block;
}



/* FIN ROW SABER MAS / CONTACTO */

/* BANNER CUSTOM */

.banner-custom h2.banner-title {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.72px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin-block-end: 15px;
}

.banner-custom span.banner-text {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.54px;
    text-align: center;
    text-decoration: underline;
    color: #fff;
}

.banner-custom {
    background-color: #f47115;
    padding: 22px 27px 16px;
    text-align: center;
}

/* BANNER CUSTOM */

/* LINEAS TRABAJO */

#lineasTrabajo {
    padding: 0;
}

#lineasTrabajo .listado-lineas {

    display: inherit;
    grid-auto-rows: 1fr;
    grid-column-gap: unset;
    grid-row-gap: unset;
}

#lineasTrabajo .customSlider.reputacion {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

#lineasTrabajo .listado-lineas .container {
    padding: 0;
}

#lineasTrabajo .listado-lineas .item-lineas {
    box-shadow: 6px 6px 10px 0 rgb(26 26 26 / 20%);
    /* flex: 0 0 calc((100% / 3) - (50px / 3)); */
    width: 32%;
    border-radius: 5px;
    margin: 0;
    padding: 0;
    border: none;
    transition: transform .2s;
    display: block;
    height: 100%;
}

@media (max-width: 1280px) {
    #lineasTrabajo .listado-lineas .item-lineas {
        width: 100%;
    }
}

#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap p,
#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap h2 a {
    text-transform: none;
    text-align: left;

}

@media (max-width: 992px) {

    #lineasTrabajo .listado-lineas .item-lineas {
        flex: 0 0 0;
    }

}

#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap>a {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-azul);
    text-align: center;
    color: #FFF;
}

#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap h2 {

    padding: 0;
}

#lineasTrabajo .bloqueTitulo.big {
    margin-bottom: 60px;
    text-align: start;
}

#lineasTrabajo .bloqueTitulo span {
    color: rgb(0, 0, 0);
    text-align: left;
}

#lineasTrabajo .listado-lineas {
    display: inherit;
}


#lineasTrabajo .listado-lineas .item-lineas .contenido {
    height: 100%;
    padding: 0;
    margin: 0;
}

#lineasTrabajo .listado-lineas .item-lineas .imagen {
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: 0;
    height: 195px;
}

#lineasTrabajo .listado-lineas .item-lineas .imagen img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap {
    position: relative;
    border-radius: 5px;
    padding: 0;
    padding-top: 35px;
    border: none;
    box-shadow: 0 3px 10px rgba(26, 21, 21, 0.150);
    /* height: 100%; */
}

@media (max-width: 1480px) {
    #lineasTrabajo .listado-lineas .item-lineas .contenido .wrap {
        padding-bottom: 30px;
    }
}

#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap h2:has(a) {
    margin-bottom: 10px;
}

#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap>a:hover {
    transform: scale(1.05);
}

#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap>a {
    border-radius: 5px;
    background-color: var(--titleOrange);
    margin-bottom: 15px;
    margin-right: 25px;
    margin-left: 25px;
    transition: transform .2s;
    width: 100%;
    height: 30px;
    top: auto;
    width: -webkit-fill-available;
    width: -moz-available;
}

#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap a span {
    transform: none !important;
    position: relative;
    color: var(--lightGrey);
    font-weight: lighter;
    margin-top: 0;
    font-size: 30px;
    top: 0;
    left: 0;
}

/* #lineasTrabajo .listado-lineas .item-lineas .contenido .wrap p,
#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap h2 a {
    padding: 0 25px;
} */

#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap h2 a {
    font-size: 15px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.3px;
    text-align: left;
    color: #2d2d2d;
}

#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap p {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: left;
    color: #2d2d2d;
}

#lineasTrabajo .listado-lineas .item-lineas .contenido .wrap h2 {
    padding: 0 25px 10px 25px;
}

/* FIN LINEAS TRABAJO */

/* ROW SOBRE EL INFORME */


#row-informe {
    margin-top: 79px;
}

#row-informe .descripcion img {
    width: 80%;
    margin-left: 49px;
}

#row-informe h1 p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0.28px;
    color: #f47115;
}

#row-informe h1 p.grande {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    line-height: 43px;
    font-weight: 600;
    letter-spacing: 0.64px;
    color: #000;
    margin: 0;
}

#row-informe .descripcion {
    align-items: center;
    margin: 41px -15px 85px -15px !important;
}

#row-informe .descripcion h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    letter-spacing: 0.48px;
    color: #000;
    margin-bottom: 15px;
}

@media(max-width: 576px) {

    #row-informe .descripcion {
        flex-direction: column-reverse;
    }

    #row-informe .descripcion .col>p {
        margin-bottom: 49px;
    }

    #row-informe .descripcion img {
        width: 100%;
        margin-left: 0;
    }
}

/* FIN ROW SOBRE EL INFORME */

/* ROW METODOLOGIA */

#row-metodologia {
    background-image: url("../resources/modelo-herramientas/fondo-highlights.jpg");
    background-size: cover;
    padding-top: 67.5px;
    padding-bottom: 59px;
}

#row-metodologia .row-container .lista-metodo {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    display: grid;
    column-gap: 10%;
    row-gap: 2%;
}

#row-metodologia .row-container .content-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 19px;
}

#row-metodologia .row-container .col-sm .content-title span {
    font-weight: bold;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.32px;
    color: #1a1a1d83;
}

#row-metodologia .row-container .content-title img {
    height: 67px;
    width: 67px;
}

#row-metodologia .row-container .lista-metodo h2 {
    border-bottom: 1px solid #707070;
    padding-bottom: 12px;
    margin-bottom: 19px;
    font-size: 24px;
    font-weight: 600;
    line-height: 31px;
    letter-spacing: 0.48px;
    color: #2d2d2d;
}

@media (max-width: 767px) {
    #row-metodologia .row-container .lista-metodo {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    #row-metodologia .col-sm {
        flex-basis: inherit !important;
    }
}

/* FIN ROW METODOLOGIA */

/* ROW IMPULSORES */

#row-impulsores {
    margin-top: 57px;
}

#row-impulsores .descripcion img {
    max-width: 268px;
}

#row-impulsores .descripcion {
    padding-bottom: 70px;
    gap: 60px;
}

#row-impulsores .descripcion .item {
    align-items: center;
}

#row-impulsores .descripcion .item .col:nth-child(1) {
    text-align: center;
}

#row-impulsores .descripcion h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    letter-spacing: 0.48px;
    color: #000;
    margin-bottom: 15px;
}

#row-impulsores .descripcion .item:nth-child(1) {
    margin-bottom: 48px;
}

@media (max-width: 767px) {
    #row-impulsores .descripcion img {
        max-width: 268px;
        margin: 45px 0;
    }
}

@media(max-width: 576px) {
    #row-impulsores .descripcion .item:nth-child(1) {
        margin-bottom: 0 !important;
    }
}

/* FIN ROW IMPULSORES */

/* Botones cards lineas */
/* -- Botones -- */
.listado-lineas .item-lineas .contenido .wrap>a {
    width: -webkit-fill-available !important;
    width: -moz-available !important;
}