/* GENERAL*/

/* Animacion de fondo */
#particles-js {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 85px;
    left: 0px;
    font-weight: -1;
    background-color: rgb(253, 253, 253);
    z-index: -1;
}

/* Body y Fotter */
body {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    margin: 0 auto;
    min-height: 100vh;
    z-index: 99;
    padding-bottom: 22rem;
    background-color: rgb(255, 255, 255);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    overflow-x: hidden;
}

footer {
    max-height: 22em;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-top: 3em;
}

/*Animacion de trancicion al navegar entre paginas */

.container-animated {
    min-width: 100%;
    position: relative;
    z-index: -1;
    animation: trancitionIn 1.8s;
}

@keyframes trancitionIn {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards general para todas las paginas */

.card-body {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    cursor: default;
    transition: all 400ms ease;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 350px;
    margin: 5px;
}

.card-body:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-5%);
}

.card-body img {
    object-fit: cover;
    height: 300px;
}

/* Carruseles */

.carousel-indicators li {
    border-radius: 30px;
    width: 20px;
    height: 20px;
    background-color: #00b3c2;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #00b3c2;
    max-width: 30px;
    margin: 0 3px;
    height: 25px;
    width: 25px;
}

a .btn {
    margin-top: auto;
}

.tam-car-box {
    width: 100%;
    min-height: 600px;
}

.slide img {
    width: 100%;
    object-fit: cover;
}


/* Acordiones */

#accordion .panel-title a {
    background: #00b3c2 none repeat scroll 0 0;
    border-radius: 30px;
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px 12px 50px;
    position: relative;
    transition: all 0.3s ease 0s;
    margin-left: 2rem;
    margin-right: 1rem;
}

#accordion .panel-title a.collapsed {
    background: #fff none repeat scroll 0 0;
    border: 1px solid rgb(238, 238, 238);
    color: rgb(0, 0, 0);
}

#accordion .panel-title a::after,
#accordion .panel-title a.collapsed::after {
    background: #00b3c2 none repeat scroll 0 0;
    border: 1px solid transparent;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.58);
    color: #fff;
    content: "";
    font-family: fontawesome;
    font-size: 25px;
    height: 55px;
    left: -20px;
    text-align: center;
    line-height: 55px;
    position: absolute;
    top: -5px;
    transition: all 0.3s ease 0s;
    width: 55px;
}

#accordion .panel-title a.collapsed::after {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    box-shadow: none;
    color: #333;
    content: "";
}

#accordion .panel-body {
    background: transparent none repeat scroll 0 0;
    border-top: medium none;
    position: relative;
}


/* Iconos de mision, vision de pagina About*/
.controller {
    width: 30px;
    height: 30px;
    z-index: 100;
    bottom: 20px;
    -webkit-animation: bounce-down 1.6s linear infinite;
    animation: bounce-down 1.6s linear infinite;
}

@keyframes bounce-down {
    25% {
        transform: translateY(0px);
    }

    50%,
    100% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(10px);
    }
}

/* Fuentes */

p,
a,
span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    text-align: justify;
    color: #000;
}

/* INDEX */

.index__container {
    width: 80%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(800px, 1f));
    gap: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.index__texts {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.index__title--show {
    display: none;
}

.auto-input {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 50px;
    line-height: 100px;
    color: #00b3c2;
}

.index__paragraph {
    text-align: center;
    font-size: 20px;
}

.index__cta--container {
    display: flex;
    gap: 16px;
}

.index__cta {
    text-align: center;
    font-size: 22px;
    width: 160px;
    color: #fff;
    background-color: #00b3c2;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.5s ease;
}

.index__cta:hover {
    color: #fff;
    background-color: #00d6ea;
    text-decoration: none;
}

.index__contador {
    margin-top: 2rem;
}

.index__contador p {
    font-size: 20px;
}

.index__figure {
    width: 39%;
    display: flex;
    align-items: center;
}

.index__img {
    width: 100%;
}

#count {
    color: #00b3c2;
    display: grid;
    place-items: center;
    font-weight: 400;
    font-size: 2em;
}

/* INCIO */

/* Navbar */

nav ul li a {
    text-decoration: none;
    color: #00b3c2;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
}


nav img {
    width: 110px;
    height: 70px;
}

.cool-link::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #00b3c2;
    transition: width 0.3s;
}

.cool-link:hover::after {
    width: 100%;
    text-decoration: none;
}

a.active::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
}

a.active::after {
    width: 100%;
}

.header__section {
    margin-top: 5rem;
    width: 100%;
    height: 60vh;
    background-image: url("../img/img-index.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top;
    display: flex;
    align-items: center;
}

.header__texts {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 3rem;
}

.header__paragraph {
    margin: 0 auto;
    margin-top: 2rem;
    width: 70%;
}


/* Contadores */

.contenedor-img-index {
    margin-top: 5.5rem;
    position: relative;
    width: 100%;
    padding-bottom: 30px;

}

.container-counter i {
    color: #00b3c2;
    font-size: 3rem;
    text-align: center;
}

span.num {
    color: #00b3c2;
    display: grid;
    place-items: center;
    font-weight: 400;
    font-size: 2.5em;
}

span.num1 {
    color: #00b3c2;
    display: grid;
    place-items: center;
    font-weight: 400;
    font-size: 2.5em;
}

span.number {
    color: #00b3c2;
    display: grid;
    place-items: center;
    font-weight: 400;
    font-size: 2.5em;
}

span.text-counter {
    color: #000000;
    font-size: 1.5em;
    text-align: center;
    font-weight: 400;
    line-height: 0;
    margin-bottom: 1.2rem;
}

#count {
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    place-items: center;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 2rem;
    text-align: center;
}


.card-body-counted {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    cursor: default;
    transition: all 400ms ease;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 200px;
    margin: 1rem;
    border-bottom: #00b3c2 4px solid;
    border-top: #00b3c2 4px solid;
}

.card-body-counted:hover {
    transform: translateY(-5%);
}

/* Informacion de tarjetas del carrusel */
.degf {
    background: rgba(0, 0, 0, 0.50);
}

.container-video {
    width: 60%;
    margin: auto;
}


/* ABOUT */


.text-tam-t {
    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
    color: #00b3c2;
}

.ico {
    width: 70px;
    height: 70px;
}

.ico-ul li {
    color: #00b3c2;
    text-align: justify;
}

ul li p {
    text-align: left;
}
.img-avatar {
    width: 200px;
    height: 200px;
    /* Añade esto para que sea un círculo perfecto */
    border-radius: 50%;
    object-fit: cover;
    /* Esto evita que la imagen se estire */
    transition: all 500ms;
    border: none;
    display: block;
    /* Para centrar con mx-auto */
}
/*.img-avatar {
    width: 200px;
    border-radius: 50%;
    transition: all 500ms;
    border: none;
}*/

.img-avatar:hover {
    transform: scale(1.1);
    border: none;
}

.margen {
    margin-top: 0px;
    margin-bottom: 50px;
}

/* INTEGRANTES */

/* Barra de scroll */
.fixed-top-2 {
    position: fixed;
    top: 85px;
    z-index: 99;
}

.empresas_section {
    padding: 2rem 0;
}


.empresas__container {
    width: 75%;
    margin: 0 auto;
    margin-top: 5rem;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.empresas__card {
    width: 100%;
    height: 200px;
    background-color: #fff;
    border-radius: 20px;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.empresas__card:hover {
    transform: translateY(-15px);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
}

.empresas__pictures {
    width: 85%;
    height: 60%;
    cursor: pointer;
    overflow: hidden;
}

.empresas_img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}


.empresas__container p {
    text-align: center;
    text-transform: uppercase;
}


.card-body-members {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    cursor: default;
    transition: all 400ms ease;
    margin: 0;
    padding: 0;
    object-fit: contain;
    overflow: hidden;
    width: 100%;
    height: 15.5em;
}

.card-body-members:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-4%);
}

.card-body-members img {
    object-fit: contain;
    width: 100%;
    height: 9rem;
    padding: 0.5rem;
}

.fondo-img-empresas {
    background-color: white;
}


/* NOTICIAS */
.img-news:hover {
    transform: scale(1.1);
    /* filter: brightness(100%); */
}

.content-news {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.content-news .card-news {
    position: relative;
    width: 450px;
    background: #fff;
    margin: 5px;
}


.content-news .card-news::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border: 20px solid transparent;
    border-top: 20px solid #00b3c2;
    border-right: 20px solid #00b3c2;
}

.content-news .card-news.active::before {
    border-top: 20px solid #00e5ff;
    border-right: 20px solid #00e5ff;
}

.content-news .card-news .icon {
    margin-bottom: 10px;
}

.content-news .card-news .icon img {
    min-height: 250px;
    max-width: 30rem;
    max-height: 250px;
    object-fit: cover;
    transition: all 500ms;
}

.content-news .card-news .content-1 {
    position: relative;
    height: 90px;
    overflow: hidden;
    transition: height 1s;
}

.content-news .card-news.active .content-1 {
    height: auto;
}

.content-news .card-news .content-1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(transparent, #fff);
}

.content-news .card-news.active .content-1::before {
    display: none;
}

.content-news .card-news .content-1 h3 {
    color: #383838;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 15px;
    text-transform: uppercase;
    text-align: center;
}

.content-news .card-news .content-1 p {
    font-weight: 300;
    color: #383838;
    padding-left: 15px;
    padding-right: 15px;
    height: auto;
    overflow: auto;
    margin-bottom: 5px;
}

.content-news .card-news .more {
    position: relative;
    padding: 5px 10px;
    background: #ffffff;
    margin-top: 15px;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 14px;
    margin: 5px;
    text-align: center;
}

.content-news .card-news .more::before {
    content: 'Leer más';
}

.content-news .card-news.active .more::before {
    content: 'Cerrar';
}

.content-news .card-news.active .more {
    background: #ffffff;
    color: rgb(0, 0, 0);
    margin: 15px;
}

.content-news .card-news small {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    color: #383838;
    font-size: 12px;
    text-align: center;
}

.card-body-news {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    cursor: default;
    transition: all 400ms ease;
    margin: 0;
    padding: 0;
    object-fit: cover;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    ;
}

.card-body-news:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2%);
}


/* ACTIVIDADES */

.title {
    margin-bottom: 50px;
    text-transform: uppercase;
}

.card-block {
    font-size: 1em;
    position: relative;
    margin: 0;
    padding: 1em;
    border: none;
    border-top: 1px solid rgba(34, 36, 38, .1);
    box-shadow: none;
}

/* BENEFICIOS*/

/* Boton de afiliacion de pagina Beneficios */

.afiliate {
    margin-top: 5rem;
    background-color: #fff;
}

.afiliate__button {
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.afiliate__text {
    text-align: center;
    padding-bottom: 2rem;
}

.btn-social {
    width: 3rem;
    height: 3rem;
    padding: 0.7rem;
    margin: auto;
}

.button {
    width: 200px;
    text-align: center;
    color: #fff;
    margin: 5px;
    margin-bottom: 30px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
    padding-top: 15px;
}

.button-2 {
    color: #fff;
    border: 3px solid #00b3c2;
    background-image: -webkit-linear-gradient(30deg, #00b3c2 50%, transparent 50%);
    background-image: linear-gradient(30deg, #00b3c2 50%, transparent 50%);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    text-decoration: none;
}

.button-2:hover {
    color: #fff;
    background-position: 100%;
    text-decoration: none;
}

.tarjetas__container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.card-body-afiliate {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    cursor: default;
    transition: all 400ms ease;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 240px;
    margin: 1rem;
    border-bottom: #00b3c2 4px solid;
    border-top: #00b3c2 4px solid;

}

.card-body-afiliate:hover {
    transform: translateY(-5%);
}

.card-body-afiliate a {
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    margin-top: 2rem;
    font-size: 18px;
    color: #00b3c2;
    border-radius: 2rem;
    border: #00b3c2 1px solid;
    position: relative;
    padding: 0.3rem 1rem;
    transition: all 400ms ease;
}

.card-body-afiliate a:hover {
    border-radius: 0;
    background-color: #00b3c2;
    color: #fff;
}

.card__section {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.card__container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #fff;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    transition: all 0.5s ease;
}

.card__container:hover {
    transform: translateY(-15px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.card__figure {
    width: 100%;
    height: 300px;
}

.card__img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.card__img:hover {
    width: 110%;
    height: 100%;
}

.card__texts {
    height: 200px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SERVICIOS */

.header__services {
    margin-top: 5rem;
    width: 100%;
    height: 70vh;
    background-image: url("../img/services.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top;
    display: flex;
    align-items: center;
}


.header__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.header__title {
    text-align: center;
}

.header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.header__cta {
    width: 280px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: #fff solid 1px;
    border-radius: 10px;
    padding: 5px 15px;
    transition: all 0.5s ease;
}

.header__cta:hover {
    text-decoration: none;
    color: inherit;
    background-color: #00b3c2;
    border: #fff solid 1px;
    border-radius: 10px;
    padding: 5px 15px;
}

.services {
    width: 100%;
    padding-bottom: 8rem;
}

.services__title {
    text-align: center;
    padding: 0 1rem;
    padding-top: 4rem;
}

.services__container {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
}

.services__items {
    width: 250px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.services__text {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.services__paragraph {
    margin-top: 3rem;
    text-align: center;
}

.service_container--ul {
    margin-top: 2rem;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ul__container {
    margin-top: 2rem;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.ul__items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.li_items {
    background-color: #c4c4c4;
    width: 320px;
    color: #00b3c2;
    padding: 1rem;
    border-radius: 0.3rem;
    margin: 0.5rem;
    transition: 400ms all ease;
    list-style: none;
}

.li_items:hover {
    transform: translateY(-10px);
}


.icon-services {
    width: 90px;
    text-align: center;
    background-color: #00b3c2;
    color: #fff;
    padding: 1rem;
    border-radius: 0.3rem;
    margin: 0.5rem;
    transition: 400ms all ease;
}

.list-unstyled-service li {
    color: #00b3c2;
    background-color: rgb(242, 242, 242);
    padding: 1rem;
    border-radius: 0.5rem;
    transition: 400ms all ease;
    width: 250px;
}


.icon-services i {
    font-size: 2rem;
}

.services--base {
    margin-top: -2rem;
}

.base_figure {
    width: 80%;
    margin: 0 auto;
}

.base_img {
    width: 100%;
}

/* PARQUE TECNOLÓGICO */

.subtitle__has{
    padding-top: 8rem;
    width: 70%;
    margin: 0 auto;
    font-weight: 600;
}

.has__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.has__figure {
    width: 100%;
}

.has__img {
    width: 100%;
}


.subtitle {
    color: #000;
    line-height: 1.5;
    font-weight: 600;
    text-align: justify;
}

.has__text {
    margin: 0;
    color: #383838;
}

.subtitle--margin {
    margin-top: 50px;
}

.subtitle__impacto{
    width: 70%;
    margin: 0 auto;
    margin-top: 3rem;
}

.impacto__section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.impacto__texts {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.impacto__ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #383838;
}

.impacto__li {
    list-style: none;
    margin: 0;
    margin-left: -1rem;
    padding: 0;
    transition: all 0.5s ease;
}

.impacto__li:hover {
    text-transform: uppercase;
    transform: translateY(-5px);
    color: #00b3c2;
}

.has__figure--left {
    width: 50%;
}

.has__img--left {
    width: 100%;
}


/******Formularios validaciones*******/

.warnings {
    width: 200px;
    text-align: center;
    margin: auto;
    color: #B06AB3;
    padding-top: 20px;

}


@media (max-width: 1250px) {
    .index__container {
        display: flex;
        flex-direction: column-reverse;
    }

    .index__texts {
        width: 90%;
    }

    .auto-input {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 40px;
        line-height: 100px;
        color: #00b3c2;
    }

    /* index1 */
    .container-video {
        width: 75%;
        margin: auto;
    }

}

@media (max-width: 800px) {
    .has__texts {
        margin-top: 0rem;
        padding-left: 0rem;
    }

    .impacto__texts {
        padding-top: 4rem;
        text-align: center;
    }

    .contenedor-img-index {
        height: 70vh;
        align-content: center;
        align-items: center;
    }

    .content-text {
        bottom: 30%;
        padding: 1rem;
    }

    .subtitle__has{
        width: 90%;
    }
}

@media (max-width: 546px) {

    /* INDEX */
    .index__texts {
        width: 98%;
    }

    .index__title--show {
        display: block;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 40px;
        line-height: 100px;
        color: #00b3c2;
    }

    .index__paragraph {
        margin-bottom: 2rem;
    }

    .span__none {
        display: none;
    }

    .auto-input {
        display: none;
    }

    .index__figure {
        display: none;
    }

    /* Miembros */

    .empresas_section {
        padding: 0;
    }

    /* Afiliados */

    .empresas__container {
        width: 95%;
        margin: 0 auto;
        display: grid;
        align-items: center;
        grid-template-columns: 1fr 1fr;
        gap: 20px 5;
    }

    .empresas__card {
        width: 100%;
        height: 150px;
        background-color: #fff;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    }

    .empresas__pictures {
        width: 100%;
        height: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .empresas_img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .empresas__container p {
        display: none;
    }

    /* parque tecnologico */

    .has__figure--left {
        width: 100%;
    }
}

@media (max-width: 380px) {

    /* INDEX */
    .index__texts {
        width: 98%;
    }

    .index__title--show {
        display: block;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 40px;
        line-height: 100px;
        color: #00b3c2;
    }

    .index__paragraph {
        margin-bottom: 2rem;
    }

    .span__none {
        display: none;
    }

    .auto-input {
        display: none;
    }

    .index__figure {
        display: none;
    }

    /* index1 */
    .header__section {
        height: 90vh;
    }

    .container-video {
        width: 100%;
    }

    /* Miembros */

    .empresas_section {
        padding: 0;
    }

    /* Afiliados */

    .empresas__container {
        width: 95%;
        margin: 0 auto;
        display: grid;
        align-items: center;
        grid-template-columns: 1fr 1fr;
        gap: 20px 5;
    }

    .empresas__card {
        width: 100%;
        height: 150px;
        background-color: #fff;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    }

    .empresas__pictures {
        width: 100%;
        height: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .empresas_img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .empresas__container p {
        display: none;
    }

    /* parque tecnologico */

    .has__figure--left {
        width: 100%;
    }
}
