.ContendorInicio{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    justify-items: center;
    z-index: 0;
}

body{
    overflow-y: hidden;
}

.Contenedor{
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 78%;
    background-color: none;
    border-radius: 10px 10px;
	overflow: auto;
}

::-webkit-scrollbar {
    display: none;
}

.DivGrid{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.GridContenido{
    display: grid;
    justify-items: center;
    width: 90%;
    height: 89%;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 40px;
    padding-top: 40px;
}

.contenido{
    display: flex;
    justify-content: center;
    width: 90%;
    transition: all 0.4s ease;
    margin-bottom: 60px;
    font-family: 'Montserrat';
    font-size: 16px;
    border-radius: 25px 15px;
    overflow: hidden;
}

.contenido > a{
    color: black;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.4s ease;
}

.ExpositoresCaja{
    position: relative;
    width: 100%;
}

.ImgDiseño{
    max-width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all 0.4s ease;
}

.InfoExpositor{
    width: 100%;
    background-color: rgb(250, 171, 98);
    border-radius: 25px 15px;
    text-align: center;
}

.ImgDiseño:hover{
    opacity: 0.5;
}

.contenido:hover, .contenido > a:hover{
    background-color: rgb(250, 171, 98);
}