#academy .video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 95%;
    max-width: 600px;
    margin: 5px auto;
}

#academy .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#academy .video-container .hover {
    background: #00000070;
    color: var(--white);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#academy .video-container .hover.active {
    opacity: 0;
    transition: 0.3s;
}

#academy .video-container:hover .hover.active {
    opacity: 1;
}

#academy .video-container .hover .playBtn {
    font-size: 35px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#academy .paragraph {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 30px;
}

#academy .paragraph h1 {
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

#academy .paragraph hr {
    width: 50px;
    margin: auto;
}

#academy .paragraph p {
    font-weight: 300;
    text-align: justify;
    padding: 10px;
}