.content{
    flex: 1;
    
}
.wrapper-index{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/*slideshow*/
.contenedor-slideshow{

    height: 500px;
    width: 90%;
    margin-top: 10px;
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slider-wrapper{
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
}
.slider{
    display: flex;
    object-fit: cover;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    
}
.slider img{
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}
.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.slider-nav a{
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}
.slider-nav a:hover{
    opacity: 1;
}

/*Maincontent*/
.contenedor-index{
    margin-top: 10px;
    margin-left: 10%;
    height: 500px;
    width: 80%;

    align-self: flex-start;
    display: flex;
    gap: 30px;
    justify-content: center;
}
.contenedor-child-index{
    height: 100%;
    width: 35%;
   /* background-color: red;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

}
.contenedor-texto-titulo{
    width: 90%;
    height: 15%;
    color: rgb(0, 0, 0);
  /*  background-color:   blue; */
    font-size: 28px;
    font-weight: bold;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.contenedor-texto-descripcion{
    width: 90%;
    height: 60%;
    color: rgb(0, 0, 0);
  /*  background-color:   blue; */
    padding: 10px;
    font-size: 22px;
    display: flex;
    justify-content: center;
}
.contenedor-child3{
    height: 35%;
    width: 100%;
  /*  background-color: blue; */
    color: rgb(0, 0, 0);
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 24px;
    padding: 15px;

}
.contenedor-child-redes{
    height: 100%;
    width: 45%;
    /*background-color:   greenyellow; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.contenedor-child-redes img{
    height: auto;
    width: 100%;
    object-fit: fill;
}
.contenedor-child-imagen{
    height: 75%;
    width: 75%;
    background-color: blue;
    box-shadow: 0 0 2px black;
}

.contenedor-child-imagen img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*media celulares*/

@media(max-width:800px){
.contenedor-slideshow{
    height: 300px;
    width: 90%;

}

.contenedor-index{
    margin-top: 10px;
    margin-left: 5%;
    height: 200px;
    width: 90%;
   /* background-color: black; */
    align-self: flex-start;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.contenedor-child-index{
    width: 45%;
}

.contenedor-texto-titulo{
    padding-top: 0px;
    font-size: medium;
    padding-left: 5%;
}

.contenedor-texto-descripcion{
    font-size: 9px;
}

.contenedor-child3{
    font-size: small;
    height: 45%;
}

.contenedor-child-imagen{
    height: 75%;
    width: 90%;
    background-color: blue;
}
}