/* ##########  INDEX  ########## */

/* SHOWCASE */
.reel_showcase {
    width: 90%;
    margin: auto;
    height: 430px;
    background: url("/images/showcase.jpg") no-repeat center center/cover;
}

.showcase {width: 100%; height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    padding-bottom: 50px;
    margin-bottom: 20px;
    color: #fff;
}

.showcase h2,
.showcase p {
    margin-bottom: 20px;
}

.showcase .btn {
    margin-top: 20px;
}

/* Boton en showcase y Eventos */
.btn {
    cursor: pointer;
    display:inline-block;
    font-weight: bold;
    padding: 10px 25px;
    color: white;
    background: #003366;
    font-size: 15px;
    border: 2px solid white;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.btn:hover {
    background: white;
    color: #FF6600;
    border: 2px solid #FF6600;
}

/* Productos / Servicios */
.container2 {
    width: 90%;
    margin: auto;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 70px 0;
}

.news-cards img {
    width: 100%;
    height: 200px;
}

.news-cards .bg_img_nc1 {
    background: url("/images/prod1.jpg")no-repeat center center/cover;;
}

.news-cards .bg_img_nc2 {
    background: url("/images/prod2.jpg") no-repeat center center/cover;
}

.news-cards .bg_img_nc3 {
    background: url("/images/prod3.jpg") no-repeat center center/cover;
}

.news-cards h3 {
    font-size: 20px;
    margin: 10px 0;
}

.news-cards a {
    padding: 10px 0;
    color: #003366;
    display: inline-block;
    font-weight: bold;
}

.news-cards a:hover {
    text-decoration: underline;
    color: #FF6600;
}


/* Proximos Eventos*/
.cards-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 70px 0;
    width: 100%;
    height: 200px;
    margin-bottom: 40px;
}

.cards-banner .content_img {
    height: 200px;
    background: url("/images/eventos.jpg") no-repeat center center/cover;
}

.cards-banner .content {
    padding: 40px 0 0 0;
    text-align: right;
}

.cards-banner p, .cards-banner h2 {
    margin: 10px 0 20px 0;
}

/* Mobil */
@media (max-width: 700px) {
    .news-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-banner .content {
        width: 80%;
    }
}

@media (max-width: 500px) {
    .news-cards {
        grid-template-columns: 1fr;
    }

    .cards-banner .content {
        width: 100%;
        padding: 60px 20px;
    }
}