.container {
    display: flex;
    justify-content: center;
    align-items: center;

}

.splide {
    width: 100%;
}

.splide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splide-container {
    height: 100%;
}

.splide__progress__bar {
    height: 3px;
    background: var(--white) !important;
}

.container__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative;
}

.info-section {
    width: 80%;
}

.container__info-h2 {
    margin: 40px 0;
    text-align: left;
    font-size: 23px;
}

.container__info-channels,
.container__info-moves {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.container__info-channel,
.container__info-move {
    max-width: 180px;
    width: 26%;
    max-height: 162px;
    height: 13%;
    padding: 3px;
    position: relative;
    transform: scale(.9);
    transition: 0.3s ease-in-out;
}

.container__info-channel:hover,
.container__info-channel:focus,
.container__info-move:hover,
.container__info-move:focus {
    transform: scale(1.1);
}

.channel__img>img {
    border-radius: 10px;
}

.container__info-hidden {
    display: none;
    position: absolute;
    top: 100%;
    width: calc((100% +10vw));
    height: auto;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 20000;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    outline: .5px solid #fff;
    color: #fff;
    Word-wrap: break-Word
}

.container__info-channel:hover .container__info-hidden {
    display: block;
    color: black;
}

.container__info-hidden figure {
    width: 80%;
    margin: auto;
    padding-right: 15px;
}

.container__info-hidden .info-hidden {
    overflow: hidden;
    color: #fff;

}

.container__info-hidden h3 {
    margin: 0;
    font-size: 1.2em;
}

.container__info-hidden p {
    margin: 0;
}

.container__info-hidden .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.container__info-hidden .flex button {
    background-color: #3498db;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.container__info-hidden .flex button:hover {
    background-color: #297fb8;
}