.ContenedorInicio{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.ContenedorContenido{
    position: relative;
    justify-content: center;
    width: 198%;
    height: 82%;
    /*background: linear-gradient(122deg, rgb(64, 143, 19) 0%, rgb(161, 209, 29) 81%);*/
    border-radius: 40px 20px;
	overflow: hidden;
}

.GridContenido{
    display: grid;
    grid-template-rows: none;
    grid-row-gap: 0px;
    justify-items: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: auto;
}

.ImagenContendor{
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ImagenContendor > a{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.LogosIber{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
}

.LogoSEGIB, .LogoIbermemoria{
    width: 30%;
    height: auto;
}

.BannerPrograma{
    margin: auto;
    width: 75%;
    filter: drop-shadow(10px 10px 5px rgb(76, 120, 147));
    transition: all 0.4s ease;
    opacity: 1;
}

.BannerPrograma:hover{
    filter: drop-shadow(10px -10px 5px rgb(76, 120, 147));
}