:root {
    --verde: #09890d;
    --azul: #1e374c;
    --rojo: #9e183a;
    --rosado: #ff003c;
}
.btn-rc {
    color: #fff;
    text-decoration: none;
    background: var(--rojo);
    padding: 10px 20px;
    transition: .3s;
    display: inline-block;
}

.btn-rc:hover {
    background: #00334A;
    transform: scale(1.1);
}


.programa {
    background-size: cover;
    position: relative;
    height: 250px;
    transition: .3s;
    border-radius: 10px;
    margin-bottom: 20px;
}
.programa:hover {
    transform: scale(1.2);
    z-index: 2;
    transition: .3s;
    box-shadow: -1px 6px 30px -6px rgba(0,0,0,0.64);
}
.programa::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(147,0,34,.4) 0%, rgba(147,0,34,.9) 100%);
    transition: .3s;
    border-radius: 10px;
    opacity: 1;
}
.programa:hover::before {
    opacity: .5;
}
.programa .icono {
    position: absolute;
    filter: invert();
    width: 70px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 110px;
}
.programa h3 {
    position: absolute;
    font-size: 15px;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 150px;
    background: rgb(8, 56, 79);
    padding: 10px 20px;
    border-radius: 15px;
    text-align: center;
    transition: .3s;
}
.programa:hover h3 {
    color: var(--rojo);
    background: #fff;
    box-shadow: -1px 6px 30px -6px rgba(0,0,0,0.64);
}
.programa a {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}





/* CAPACIDADES */
.capacidades h3 {
    color: #00334A;
}
.capacidades .video {
    position: relative;
    transition: .3s;
    opacity: .75;
}
.capacidades .video a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.capacidades .video .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-80%, -50%);
    filter: invert();
    width: 70px;
    transition: .3s;
}
.capacidades .video:hover {
    opacity: 1;
}
.capacidades .video:hover .play {
    transform: translate(-80%, -50%) scale(1.2);
}

/* Fix disponibilidad */
.disponibilidad {
    margin: 0 auto;
}




/* Slider */
.slidem {
    width: 100%;
    padding: 80px 0;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slidem span {
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
}
.slidem h2 {
    color: #fff;
    font-size: 70px;
    font-weight: 800;
}
.slidem p {
    color: #fff;
    font-size: 23px;
    font-weight: 400;
}
.btn-slide {
    color: #fff;
    font-size: 16px;
    background: #000;
    padding: 18px 45px;
    display: inline-block;
    text-decoration: none;
    transition: .3s;
}
.btn-slide:hover {
    background: #fff;
    color: #000;
}
.slidebadge {
    position: absolute;
    left: -90px;
    bottom: 0px;
}
.slidem .vert {
    position: absolute;
    top: 145px;
    left: -100px;
    font-size: 18px;
    transform: rotate(-90deg);
    text-transform: none;
}

/* Modal video */
.video .modal-content {
    background: transparent;
    border: none;
}
.video .modal-body {
    padding: 0;
}

footer {
    background: #013249;
    padding-top: 90px;
}

footer h3 {
    font-weight: 900;
    color: var(--rojo);
    font-size: 20px;
}

footer p {
    color: #fff;
    font-size: 15px;
}

footer ul {
    padding: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 5px;
}

footer a {
    text-decoration: none;
    color: #fff;
    transition: .3s;
}

footer a:hover {
    color: var(--rojo);
}

footer .btn {
    background: var(--rojo);
    color: #fff;
}
footer .btn:hover {
    background: var(--rojo);
    color: #fff;
}


footer .ftop {
    padding-bottom: 60px;
}

footer .copyright {
    padding: 10px 0;
    color: #fff;
    border-top: solid #fff 1px;
    text-align: center;
    font-size: 13px;
}


.cta {
    margin: 90px 0;
    background: #F6F6F6;
}
.cta h2 {
    font-size: 40px;
    color: #000;
    font-weight: 800;
}
.cta p {
    color: var(--rojo);
    font-size: 19px;
    font-weight: 500;
}


/* GRID COURSES */


@media (min-width: 768px) {
    .col-md-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}