/* https://out-it.ru/ */
img {
    height: auto;
}
* {
    box-sizing: border-box;
}
.outit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}
.outit p {
    font-size: 18px;
    margin: 5px 0 0;
    color: #000000;
}
.outit span {
    display: none;
}
@media (max-width: 768px) {
    .outit {
        width: 100%;
    }
}
.video {
    position: relative;
    max-width: 600px;
    height: 0;
    padding-bottom: 57%;
}
.video .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.video video {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.video .play {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video .play svg {
    width: 15%;
    height: 15%;
    cursor: pointer;
}
.video .play svg:hover {
    opacity: 0.8;
}
.col-docs a {
    color: #000000;
    font-family: MullerRegular;
    font-size: 18px;
}