
/* =================================================SOFT-NA-MIDIA================================================= */
.videos {
    max-width: var(--max-width);

    padding: var(--padding);

    display: flex;
    flex-wrap: wrap;

    justify-content: space-between;
    align-items: center;

    gap: 32px;
}

.video-card {
    width: 48%;
    height: 450px;

    padding: 32px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    box-shadow: var(--box-shadow);

    border: 10px;
}

.video-card-height {
    height: fit-content;
}

.video-card-content {
    height: 116px;
}

.video-card-content-height {
    height: 167px;
}

.video-card-content h3 {
    font-size: 32px;
    color: var(--blue-light-color);
}

.video-container {
    width: 100%;
    height: 70%;
}

.video {
    width: 100%;

    border-radius: 5px;
}

@media screen and (max-width: 1200px) {
    .video-card {
        height: fit-content;
    }
}

@media screen and (max-width: 950px) {
    .video-card {
        width: 100%;
        height: fit-content;

        gap: 32px;
    }

    .video-card-content {
        height: fit-content;
    }

    .video-card-content-height {
        height: fit-content;
    }
}

.youtube {
    position: relative;

    padding-top: 54%;

    overflow: hidden;

    border-radius: 10px;

    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.youtube img {
    width: 100%;
    top: -18%;
    left: 0;
}

.play-button {
    width: 80px;
    height: 55px;
    background-color: #ff0000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0.8;
    border-radius: 15px;
}

.play-button:before {
    content: "";
    border-style: solid;
    margin-left: 2px;
    border-width: 12px 0 12px 22.0px;
    border-color: transparent transparent transparent #ffffff;
}

.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
    position: absolute;
}

.youtube .play-button,
.youtube .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
