.simple-video--container {
    max-width: 800px;
    margin-inline: auto;
    padding-inline: 24px
}

@media screen and (min-width: 848px) {
    .simple-video--container {
        padding-inline: 0
    }
}

.simple-video--wrapper {
    position: relative;
    display: flex
}

.simple-video--wrapper::before {
    content: '';
    background: linear-gradient(0deg, rgba(17, 53, 80, 0.6) 0%, rgba(17, 53, 80, 0.6) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.simple-video--wrapper img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (min-width: 768px) {
    .simple-video--wrapper img {
        height: 400px
    }
}

.simple-video--link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.simple-video--link:hover span {
    scale: 1.05
}

.simple-video--link span {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 8px 1.5px #44B0FF;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #44B0FF;
    transition: all .3s ease
}

.simple-video--link span::before {
    content: '';
    -webkit-mask: url("../images/icon-play.svg") no-repeat center;
    mask: url("../images/icon-play.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #080B21;
    height: 18px;
    width: 18px
}

.simple-video--link p {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase
}