.training_options {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.training_switch {
    justify-content: center;
}

.training_switch .button {
    background-color: transparent;
    border: 2px solid var(--green);
    color: var(--green) !important;
}

.training_switch .button:hover,
.training_switch .active {
    background-color: var(--green);
    color: var(--white) !important;
}

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

#hs_training,
#fp_training {
    display: none;
}

.empty_state {
    text-align: center;
}

/*********************** 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;
    box-shadow: 0px 5px 10px #00000014;
}

.training_article .training_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 250px);
    width: 100%;
}

.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%;
}

.training_article .training_image {
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.training_article .training_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 5px;
}

.course_article .training_date {
    margin-top: -10px;
}

.course_article h4 i {
    width: 20px;
}

.course_article .fa-clock {
    margin-left: 1px;
    margin-right: -1px;
}

.course_article p {
    margin-bottom: 20px;
}

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

@media (max-width: 700px) {
    .training_switch {
        justify-content: center;
        flex-direction: column;
    }

    .training_switch .button {
        width: 100%;
        margin-top: 10px;
        margin-right: 0 !important;
    }
}

@media (max-width: 500px) {
    .training_switch {
        width: 100%;
    }
}