.cursos .nav-cursos .nav-link {
    border: 2px solid #004a8e;
    border-radius: 10px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
    color: #004a8e;
    transition: .3s ease;
    position: relative;
}

.cursos .nav-cursos .nav-link:hover,
.cursos .nav-cursos .nav-link.active {
    background: #004a8e;
    color: #fff;
    font-weight: bold;
}

.cursos .nav-cursos .nav-link.active:after {
    content: '';
    width: 10px;
    height: 10px;
    display: inline-block;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #004a8e;
    position: absolute;
    right: -22px;
}

.cursos .mycard {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.cursos .mycard .mycard-img,
.cursos .mycard .mycard-desc {
    width: 250px;
    height: 250px;
}

.cursos .mycard .mycard-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cursos .box-img {
    max-width: 100%;
    height: 500px;
}

.cursos .mycard .mycard-img .img-fluid,
.cursos .img-fluid-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cursos .share-redes .ul-list {
    display: flex;
    margin: 0;
    padding: 0;
}

.cursos .list-redes {
    list-style-type: none;
}

/****** FOLDERS *********/
.cursos .card-folder {
    width: 100%;
    height: 100%;
}

.cursos .card-folder .box-img-folder {
    width: 225px;
    height: 300px;
    margin: 0 auto;
}

.cursos .card-folder .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cursos .card-folder .cont-desc {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding-bottom: 10px;
}

.cursos .box-folder {
    max-width: 300px;
    height: 400px;
    margin: 0 auto;
}

.cursos .box-folder .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/****** VIDEOS *******/
.cursos .card-video {
    width: 100%;
    height: 100%;
}

.cursos .card-video .box-img-video {
    width: 350px;
    height: 250px;
    margin: 0 auto;
}

.cursos .card-video .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cursos .card-video .desc-video {
    max-width: 350px;
    margin: 0 auto;
}

.cursos .card-video .cont-desc {
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding-bottom: 10px;
}

.cursos .card-video .cont-desc .link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: .3s ease;
    color: #004a8e;
}

.cursos .card-video .cont-desc .link>span:hover {
    color: #b7282b;
}

@media(max-width: 992px){
    .cursos .mycard .mycard-img,
    .cursos .mycard .mycard-desc {
        width: 100% !important;
        height: 250px;
    }
    .cursos .nav-cursos .nav-link{
        height: 40px !important;
    }
    .cursos{
        padding: 25px 0 !important;
    }
}