*{
    font-family: 'poppins';
}
.body{
    background-color: #EEEEEE;
}
#sobrenos{
    color: white;
    font-size: xx-large;
}
.sobrenosotros{
    padding-top: 6%;
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 50px;
    background-color: #2a267c;
}
.sobrenosotros1{
    padding-top: 6%;
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 100px;
    background-color: #2a267c;
}
.slider{
    background-color: blue;
    padding: 10%;
}
.textos2{
    text-align: center;
    padding-bottom: 3%;
    color: #2a267c;
    font-size: medium;
}
.cartas{
    background-color: white;
    text-align: justify;
    margin: 5%;
    
}
.emp {
    background-color: white;
    width: 350px;
    text-align: justify;
    margin: 20px;
    border-radius: 10px;/* Establece un borde con un valor fijo */
    display: flex;
    flex-direction: column;
    transition: border-color 0.5s ease; /* Transición de color gradual */
    border: 4px solid rgb(255, 255, 255);
}
.emp:hover{
    border-color: rgb(255, 0, 136);
}
.emp1 {
    background-color: white;
    width: 350px;
    text-align: justify;
    margin: 20px;
    border-radius: 10px;/* Establece un borde con un valor fijo */
    display: flex;
    flex-direction: column;
    transition: border-color 0.5s ease; /* Transición de color gradual */
    border: 4px solid rgb(255, 255, 255);
}
.emp1:hover{
    border-color: green;
}
.emp2 {
    background-color: white;
    width: 350px;
    text-align: justify;
    margin: 20px;
    border-radius: 10px;/* Establece un borde con un valor fijo */
    display: flex;
    flex-direction: column;
    transition: border-color 0.5s ease; /* Transición de color gradual */
    border: 4px solid rgb(255, 255, 255);
}
.emp2:hover{
    border-color: rgb(0, 45, 82);
}
.emp3 {
    background-color: white;
    width: 350px;
    text-align: justify;
    margin: 20px;
    border-radius: 10px;/* Establece un borde con un valor fijo */
    display: flex;
    flex-direction: column;
    transition: border-color 0.5s ease; /* Transición de color gradual */
    border: 4px solid rgb(255, 255, 255);
}
.emp3:hover{
    border-color: grey;
}
.emp4 {
    background-color: white;
    width: 350px;
    text-align: justify;
    margin: 20px;
    border-radius: 10px;/* Establece un borde con un valor fijo */
    display: flex;
    flex-direction: column;
    transition: border-color 0.5s ease; /* Transición de color gradual */
    border: 4px solid rgb(255, 255, 255);
}
.emp4:hover{
    border-color: rgb(0, 166, 255);
}
.emp5 {
    background-color: white;
    width: 350px;
    text-align: justify;
    margin: 20px;
    border-radius: 10px;/* Establece un borde con un valor fijo */
    display: flex;
    flex-direction: column;
    transition: border-color 0.5s ease; /* Transición de color gradual */
    border: 4px solid rgb(255, 255, 255);
}
.emp5:hover{
    border-color: rgb(0, 12, 82);
}
.circulo{
    background: white;
    border-radius: 50%;
    width: 20%;
    height: 20%;
    border: 10% solid gray;
    margin: 10%
}
.logos{
    width: 175px;
    padding-top: 65px;
    padding-left: 5px;
}
.texto_logo{
    padding-top: 90px;
    padding-left: 45px;
    border-bottom: 3px solid black;
}
.texto_representaciones{
    text-align: center;
    font-size: smaller;
}
.sobrenos {  
    place-items: center;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    grid-template-rows: repeat(3, max-content);
    grid-auto-columns: max-content;
    grid-auto-rows: max-content;
    gap: 20% 3%;
    grid-auto-flow: row;
    justify-content: center;
    align-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    grid-template-areas:
      "leex micromar cse"
      "VICON EMD teknimed"
      "Biodura KFF Herniamesh";
    width: 100%;
    height: 100%;
}

.leex { grid-area: leex; }

.micromar { grid-area: micromar; }

.cse { grid-area: cse; }

.VICON { grid-area: VICON; }

.EMD { grid-area: EMD; }

.teknimed { grid-area: teknimed; }

.Biodura { grid-area: Biodura; }

.KFF { grid-area: KFF; }

.Herniamesh { grid-area: Herniamesh; }
  
.carousel-container {
    max-width: 1500px; /* Ancho máximo de 1500px */
    margin: 0 auto; /* Centra el carrusel en la página */
    position: relative;
    overflow: hidden;
}

.carrousel div {
    flex: 0 0 33.33%; /* Controla el ancho de cada slide */
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%; /* Coloca las flechas verticalmente en el centro del carrusel */
    transform: translateY(-50%); /* Alinea verticalmente las flechas al centro */
    font-size: 30px;
    color: #000; /* Color de las flechas */
    cursor: pointer; /* Cambia el cursor al pasar por encima de las flechas */
    z-index: 1; /* Asegura que las flechas estén en la parte superior */
}

.carousel-prev {
    left: 0; /* Coloca la flecha izquierda al inicio del carrusel */
}

.carousel-next {
    right: 0; /* Coloca la flecha derecha al final del carrusel */
}
.fondo-carrusel{
    padding-bottom: 100px;
    margin-top: 100px;
}
.empresas{
    font-size:45px;
    text-align: center;
    margin-bottom: 70px;
    color: #2a267c;
}
.circulo {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 10px solid rgb(183, 183, 183);
    margin: 50px;
    transition: border-color 0.5s ease; /* Transición de color gradual */
}

.circulo:hover {
    border-color: black; /* Color al pasar el mouse sobre el "circulo" */
}
.formulario{
    padding-top: 350px;
    margin: 200px;
}
.Representaciones{
    text-align: center;
    font-size: 45px;
    margin: 50px;
    color: #2a267c;
}
.circulo2 {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 10px solid rgb(183, 183, 183);
    margin: 50px;
    transition: border-color 0.5s ease; /* Transición de color gradual */
}
.circulo2:hover {
    border-color: rgb(55, 203, 146); /* Color al pasar el mouse sobre el "circulo" */
}
.logos2{
    width: 155px;
    padding-top: 65px;
    padding-left: 23px;
}
.texto_logo2{
    padding-top: 70px;
    text-align: center;
    border-bottom: 3px solid rgb(55, 203, 146);
}
.circulo3 {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 10px solid rgb(183, 183, 183);
    margin: 50px;
    transition: border-color 0.5s ease; /* Transición de color gradual */
}
.circulo3:hover {
    border-color: rgb(255, 115, 0); /* Color al pasar el mouse sobre el "circulo" */
}
.logos3{
    width: 160px;
    padding-top: 60px;
    padding-left: 23px;
}
.texto_logo3{
    padding-top: 70px;
    text-align: center;
    border-bottom: 3px solid rgb(255, 115, 0);
}
.circulo4 {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 10px solid rgb(183, 183, 183);
    margin: 50px;
    transition: border-color 0.5s ease; /* Transición de color gradual */
}
.circulo4:hover {
    border-color: rgb(255, 164, 90); /* Color al pasar el mouse sobre el "circulo" */
}
.logos4{
    width: 160px;
    padding-top: 20px;
    padding-left: 20px;
}
.texto_logo4{
    padding-top: 35px;
    border-bottom: 3px solid rgb(255, 164, 90);
    text-align: center;
}
.circulo5 {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 10px solid rgb(183, 183, 183);
    margin: 50px;
    transition: border-color 0.5s ease; /* Transición de color gradual */
}
.circulo5:hover {
    border-color: blue; /* Color al pasar el mouse sobre el "circulo" */
}
.logos5{
    width: 160px;
    padding-top: 65px;
    padding-left: 23px;
}
.texto_logo5{
    padding-top: 85px;
    text-align: center;
    border-bottom: 3px solid blue;
}
.circulo6 {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 10px solid rgb(183, 183, 183);
    margin: 50px;
    transition: border-color 0.5s ease; /* Transición de color gradual */
}
.circulo6:hover {
    border-color: rgb(255, 0, 0); /* Color al pasar el mouse sobre el "circulo" */
}
.logos6{
    width: 160px;
    padding-top: 25px;
    padding-left: 23px;
}
.texto_logo6{
    padding-top: 35px;
    text-align: center;
    border-bottom: 3px solid rgb(255, 0, 0);
}
.circulo7 {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 10px solid rgb(183, 183, 183);
    margin: 50px;
    transition: border-color 0.5s ease; /* Transición de color gradual */
}
.circulo7:hover {
    border-color: rgb(4, 0, 53); /* Color al pasar el mouse sobre el "circulo" */
}
.logos7{
    width: 180px;
    padding-top: 25px;
    padding-left: 3px;
}
.texto_logo7{
    padding-top: 60px;
    text-align: center;
    border-bottom: 3px solid rgb(4, 0, 53);
}
.circulo8 {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 10px solid rgb(183, 183, 183);
    margin: 50px;
    transition: border-color 0.5s ease; /* Transición de color gradual */
}
.circulo8:hover {
    border-color: rgb(60, 74, 221); /* Color al pasar el mouse sobre el "circulo" */
}
.logos8{
    width: 160px;
    padding-top: 66px;
    padding-left: 20px;
}
.texto_logo8{
    padding-top: 80px;
    text-align: center;
    border-bottom: 3px solid rgb(60, 74, 221);
}
.circulo9 {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 10px solid rgb(183, 183, 183);
    margin: 50px;
    transition: border-color 0.5s ease; /* Transición de color gradual */
}
.circulo9:hover {
    border-color: rgb(219, 72, 72); /* Color al pasar el mouse sobre el "circulo" */
}
.logos9{
    width: 160px;
    padding-top: 40px;
    padding-left: 13px;
}
.texto_logo9{
    padding-top: 70px;
    text-align: center;
    border-bottom: 3px solid rgb(219, 72, 72);
}
.circulo10 {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 10px solid rgb(183, 183, 183);
    margin: 50px;
    transition: border-color 0.5s ease; /* Transición de color gradual */
}
.circulo10:hover {
    border-color: black; /* Color al pasar el mouse sobre el "circulo" */
}
.logos10{
    width: 170px;
    padding-top: 35px;
    padding-left: 10px;
}
.texto_logo10{
    padding-top: 45px;
    padding-left: 55px;
    border-bottom: 3px solid black;
}
.carrousel {
    display: flex;
    align-items: stretch;
}
.img-car{
    max-width: 70%;
    display: block;
    margin: auto;
    margin-top: 3%;
}
.img-car2{
    max-width: 40%;
    padding-left: 25px;
}
.txt-carr{
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
    flex-grow: 1;
}
.txt-carr2{
    padding-top: 5px;
    padding-left: 25px;
    max-width: 45%;
}
.cont{
    color: white;
    text-decoration: none;
}
.nav-item {
    font-size: large;
}
header{
    background-color: #EEEEEE;
}

@media (max-width: 930px) {
    .sobrenos {  
        margin-left: 4%;
        display: grid;
        grid-template-columns: max-content max-content;
        grid-template-rows: repeat(5, max-content);
        grid-auto-columns: max-content;
        grid-auto-rows: max-content;
        gap: 12% 3%;
        grid-auto-flow: row;
        justify-content: center;
        align-content: stretch;
        justify-items: stretch;
        align-items: stretch;
        grid-template-areas:
            "leex micromar"
            "cse VICON"
            "EMD teknimed"
            "Biodura KFF"
            "Herniamesh ."; 
        width: 100%;
        height: 100%;
    }

    .formulario {
        padding-top: 800px;
        margin: 100px;
    }
}

@media (max-width: 600px) {
    .sobrenos {  
        display: grid;
        grid-template-columns: max-content;
        grid-template-rows: repeat(9, max-content);
        grid-auto-columns: max-content;
        grid-auto-rows: max-content;
        gap: 5% 3%;
        grid-auto-flow: row;
        justify-content: center;
        align-content: stretch;
        justify-items: stretch;
        align-items: stretch;
        grid-template-areas:
            "leex"
            "micromar"
            "cse"
            "VICON"
            "EMD"
            "teknimed"
            "Biodura"
            "KFF"
            "Herniamesh"; 
        width: 100%;
        height: 100%;
    }

    .formulario {
        padding-top: 1400px;
        margin: 100px;
    }

    .empresas {
        font-size: 40px;
    }

    .Representaciones {
        font-size: 40px;
    }
}
.textos{
    text-align: justify;
    color: white;
}
.social-icons {
    font-size: 1.2rem;
  }
  .social-icons .list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
  }
  footer i {
    margin-right: 0.5rem;
  }
  footer p {
    font-size: 0.9rem;
  }
  footer .nav-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
  }