    

/*SECTION CURSOS*/
.h2_title_home {
    color: #000;
    text-align: center;
    font-weight: 900;
}
.h3_subtitle_home {
    color: #000;
    font-size: 20px;
    font-style: italic;
}
.sect_cursos {
    padding: 50px 0;
    background: #ededed;
}
.box_cursos_main {
    display: flex;
    display: -moz-flex;
    flex-flow: row wrap;
}
.box_cursos_main>.item {
    width: 30%;
    margin: 0 auto;
    margin-bottom: 40px;
}
.box_cursos_main>.item img {
    width: 100%;
}
.div_carousel {
    margin-top: 40px;
}
.box_cursos {
    background: #fff;
    box-shadow: 0px 0px 4px #cfcfcf;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    height: 100%;
}
.box_cursos:before {
    pointer-events: none;
    position: absolute;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.box_cursos:hover:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}
.box_cursos .box_head {
    position: relative;
    overflow: hidden;
}
.presencial {
    font-size: 13px;
    color: #FFF !important;
    text-align: center;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    position: absolute;
    padding: 5px 0;
    left: -60px;
    top: 26px;
    width: 200px;
    background-color: #E4001D;
    color: #fff;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}
.box_cursos .box_body {
    padding: 20px;
    width: 100%;
}
.box_cursos .box_body h4 a {
        font-size: 16px;
    display: block;
    text-align: justify;
    line-height: 1.5;
    color: #005ca0;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}
.box_cursos .box_body h5 {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    color: #000;
    font-weight: 800;
}
.box_cursos .box_body h6 {
    text-align: justify;
    color: #000;
    /* font-weight: 600; */
    font-size: 15px;
}
.box_cursos .box_foot {
        width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /*border-top: 3px solid #ededed;*/
    border-bottom: 5px solid rgb(0, 156, 117, .5);
    transition: all ease 500ms;
}
.box_cursos .box_foot a{
    display: block;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    text-align: center;
    background: #009c75;
    font-weight: 700;
    padding: 8px;
    color: #fff;
    transition: all ease 500ms;
}
.box_cursos .box_foot a:hover, .box_cursos .box_foot a:focus, .box_cursos .box_foot a:active{
    background: #000;
    transition: all ease 500ms;
}
.box_cursos:hover .box_foot {
    border-bottom-color: rgb(0, 92, 160);
}
.box_cursos .box_foot ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    text-align: center;
}
.box_cursos .box_foot ul>li {
    display: inline-block;
    margin: 0 5px;
}
.box_cursos .box_foot ul>li a{
	color: #000;
	font-weight: 700;
	text-decoration: none;
}
.cursos .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    margin: 5px 7px;
    background: rgba(217, 41, 21, 0.36);
}
.cursos .owl-dots .owl-dot.active span,
.cursos .owl-dots .owl-dot:hover span {
    background: rgb(217, 41, 21);
}
.btn_ver_cursos {
    display: block;
    width: 200px;
    margin: 0 auto;
    padding: 10px;
    margin-top: 20px;
    background: #d92915;
    text-align: center;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all ease 500ms;
}
.btn_ver_cursos:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
    transition: all ease 500ms;
}

@media(max-width: 991px) {
    .box_cursos_main>.item {
        width: 45%;
    }
}

@media(max-width: 550px) {
    .box_cursos_main>.item {
        width: 100%;
    }
}