.item-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background-color: #000000;
}

@media (max-width: 1358px) {
    .item-video {
        margin-bottom: 40px;
    }
}

.item-video__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.item-video__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.item-video__button {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    z-index: 1;
    display: none;
    padding: 0;
    width: 68px;
    height: 48px;
    border: none;
    background-color: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.item-video__button-shape {
    fill: #212121;
    fill-opacity: 0.8;
}

.item-video__button-icon {
    fill: #ffffff;
}

.item-video__button:focus {
    outline: none;
}

.item-video:hover .item-video__button-shape,
.item-video__button:focus .item-video__button-shape {
    fill: #ff0000;
    fill-opacity: 1;
}

/* Enabled */
.item-video--enabled {
    cursor: pointer;
}

.item-video--enabled .item-video__button {
    display: block;
}

@media (min-width: 1359px) {
    .item-video {
        grid-row-start: 1;
        grid-row-end: 3;
        grid-column-start: 2;
        grid-column-end: 2;
    }
}

.animated-play-button__play-3b {
    margin: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background-color: transparent;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.animated-play-button__play-3b:after,.animated-play-button__play-3b:before {
    content: "";
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    background: #ff5317;
    z-index: -1;
    border-radius: 50%;
    transition: all .45s cubic-bezier(0,0,.4,1.3)
}

.animated-play-button__play-3b:hover:before {
    right: 30%;
    transform: rotate(45deg)
}

.animated-play-button__play-3b:hover:after {
    left: 30%;
    transform: rotate(45deg)
}