﻿body {
    font-family: 'Poppins',sans-serif;
    background: #f5f7fa;
}

/*================ NAVBAR =================*/

.navbar {
    background: #00594C;
}

.navbar-brand {
    color: white !important;
    font-size: 22px;
}

.nav-link {
    color: white !important;
    margin-left: 15px;
    transition: .3s;
}

    .nav-link:hover {
        color: #D4AF37 !important;
    }

/*================ FOOTER =================*/

.footer {
    background: #00594C;
    color: white;
    padding: 60px 0;
}

    .footer a {
        color: white;
        text-decoration: none;
    }

        .footer a:hover {
            color: #D4AF37;
        }

/*================ BOTONES =================*/

.btn-imss {
    background: #00594C;
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
}

    .btn-imss:hover {
        background: #007764;
        color: white;
    }

/*================ TITULOS =================*/

.titulo {
    color: #00594C;
    font-weight: 700;
}

.subtitulo {
    color: #C79C3D;
}

/*================ TARJETAS =================*/

.card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

    .card:hover {
        transform: translateY(-5px);
        transition: .3s;
    }

/*================ HERO =================*/

.hero {
    background: linear-gradient(rgba(0,89,76,.75),rgba(0,89,76,.75)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
}

    .hero h1 {
        font-size: 55px;
        font-weight: bold;
    }

    .hero p {
        font-size: 22px;
    }

/*================ RESPONSIVE =================*/

@media(max-width:768px) {

    .hero h1 {
        font-size: 35px;
    }
}

/*============================================*/
/*              CARRUSEL                       */
/*============================================*/

#carouselJornadas {
    margin-top: 0;
}

.slider-img {
    height: 420px;
    object-fit: cover;
    object-position: center;
    filter: brightness(45%);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

.logo-banner {
    width: 110px;
    margin-bottom: 15px;
}

.carousel-caption h1 {
    font-size: 2.3rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,.6);
}

.carousel-caption h4 {
    font-size: 1.3rem;
    margin-top: 10px;
}

.carousel-caption p {
    font-size: 1rem;
    max-width: 650px;
    margin: auto;
}

.carousel-caption .btn {
    margin-top: 20px;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 18px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,.35);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

@media (max-width:768px) {

    .slider-img {
        height: 260px;
    }

    .logo-banner {
        width: 70px;
    }

    .carousel-caption h1 {
        font-size: 1.4rem;
    }

    .carousel-caption h4 {
        font-size: 1rem;
    }

    .carousel-caption p {
        display: none;
    }

    .carousel-caption .btn {
        padding: 8px 20px;
        font-size: 15px;
    }
}
