.training_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 70px;
}

/*********************** Video ************************/
Iframe {
    width: 100%;
    height: auto;
    border: none;
    outline: none;
}

.training_article {
    width: calc((100% - 45px) / 2);
    margin-bottom: 45px;
    padding: 15px;
    box-sizing: border-box;
    background-color: var(--white);
    border-radius: 10px;
}

.training_article h3 {
    margin: 20px 0 10px;
}

.training_article p {
    margin: 0;
}

.training_video {
    position: relative;
    max-width: 100%;
    height: auto;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 65%;
    border-radius: 5px;
    overflow: hidden;
}

.training_video iframe,
.training_video object,
.training_video embed {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
}

@media (max-width: 800px) {
    .training_article {
        width: 100%;
    }
}