/* Poyecto Cornelio */
#project {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0;
    padding: 0;
}

#project>div {
    margin: 0;
    padding: 0;
}

#project h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: black;
}

#project h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-tertiary);
    text-shadow: 2px 2px 3px black;
    letter-spacing: 3px;
}

#project h2,
#project h3 {
    margin-bottom: 0;
}

@media screen and (max-width:575px) {

    #project,
    #project>div {
        min-height: 180px;
    }

    #project h2 {
        font-size: 1.2rem;
        font-weight: 400;
    }

    #project h3 {
        font-size: 1.75rem;
    }

}

@media screen and (min-width:576px) {

    #project,
    #project>div {
        min-height: 300px;
    }
}

@media screen and (min-width:992px) {

    #project,
    #project>div {
        min-height: 450px;
    }

    #project h2 {
        font-size: 4rem;
    }

    #project h3 {
        font-size: 4.5rem;
    }
}

@media screen and (min-width:1200px) {

    #project,
    #project>div {
        min-height: 500px;
    }
}

#transmisiones article {
    padding: 15px;
}

#transmisiones iframe {
    width: 100%;
    height: 230px;
}

@media (min-width:768px) {
    #transmisiones iframe {
        height: 190px;
    }
}

@media (min-width:992px) {
    #transmisiones iframe {
        height: 260px;
    }
}

@media (min-width:1200px) {
    #transmisiones iframe {
        height: 200px;
    }
}

@media (min-width:1400px) {
    #transmisiones iframe {
        height: 230px;
    }
}

/* ministerios */
.groups .list>div {
    position: relative;
}

.groups .list .description {
    display: none;
}

.groups .list img {
    width: 100%;
    filter: blur(2px);
    transition: filter 0.2s ease-in;
}

.groups .list:hover img {
    filter: blur(0);
    transition: filter 0.2s ease-in;
}

.groups .list>div>a>div {
    position: absolute;
    top: -15px;
    left: 12px;
    height: 100%;
    width: calc(100% - 24px);
    background: #1d28377d;

    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.groups .list>div>a>div:hover {
    opacity: 0;
    transition: opacity .5s;
}

.carousel-control-next,
.carousel-control-prev,
.carousel-indicators {
    filter: invert(100%);
}

@media screen and (max-width:992px) {

    .carousel-item {
        height: 650px;
    }
}

.accordion-button::after {
    content: none !important; 
}

.accordion-button:not(.collapsed)::after 
{
  content: none !important;
}

.accordion-button .icono {
  transition: transform 0.3s ease-in-out;
}