.animations {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 0px 10px;
}
.animations .item {
    display: block;
    width: calc(100vw - 40px);
    height: calc( ((100vw - 60px) / 2) * 245/435 );
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    transition: all 0.2s;
}
.animations .item:hover {
    xxbox-shadow: 0 0 20px 0 rgba(255,160,00,0.6);
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.6);
}
.animations .item:nth-child(3) {
    display: none;
}
.animations .item .title {
    position: absolute;
    width: calc(100% - 20px);
    top: 8px;
    left: 10px;
    color: white;
    text-align: center;
    text-shadow: 0px 0px 3px black;
    line-height: 1.1;
}
.AnimationPlayer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100vw - 30px);
    height: calc((100vw - 30px) * 245/435);
    background: black;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.5);
    border-radius: 10px;
    z-index: 15;
}
.AnimationPlayer .close {
    position: absolute;
    top: -25px;
    right: 0px;
    color: #f30;
    font-size: 20px;
    cursor: pointer;
}
.AnimationPlayer iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.AllVideos {
    float: right;
    display: inline-flex;
    justify-content: center;
    column-gap: 18px;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
    margin-right: 10px;
    border: solid 1px #a3b9e9;
    border-radius: 4px;
    height: 40px;
    color: #003cc1;
    padding: 0 10px;
}
@media screen and (min-width: 768px) {
    .animations .item {
        width: calc((100vw - 10px - 20px) / 3);
        height: calc(((100vw - 10px - 80px) / 3) * 245/435);
    }
    .animations .item:nth-child(3) {
        display: block;
    }
}
@media screen and (min-width: 1366px) {
    .animations .item {
        width: 428px;
        height: 241px;
    }
    .AnimationPlayer {
        width: 1330px;
        height: 748px;
    }
    .AnimationPlayer .close {
        font-size: 26px;
        top: -30px;
    }
}