.videos-congresso{
    padding: 50px 0;
}

.videos-congresso .container>.row{
    grid-gap: 2rem 0;
}

.videos-congresso .nav{
    grid-gap: 1em;
}

.videos-congresso .nav>*{
    border: 2px solid #004a8e;
    border-radius: 10px;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 1rem;
    color: #004a8e;
    transition: .3s ease;
    position: relative;
}

.videos-congresso .nav>* img{
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.videos-congresso .nav>*:hover,
.videos-congresso .nav>*.active{
    background: #004a8e;
    color: #fff;
    font-weight: bold;
}

.videos-congresso .nav>*:hover img,
.videos-congresso .nav>*.active img{
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
}

.videos-congresso .sectitle{
    color: #004a8e;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.videos-congresso .box{
    display: block;
    display: -webkit-block;
    width: clamp(10px,100%,350px);
    border-bottom: 1px solid #dee2e6;
    margin: 0 auto;
    padding-bottom: 10px;
}

.videos-congresso .box .img{
    width: 100%;
    aspect-ratio: 1/.71428;
    overflow: hidden;
    margin-bottom: 1rem;
}

.videos-congresso .box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.videos-congresso .box .img video{
    width: 100%;
    height: 100%;
}

.videos-congresso .box .title{
    text-align: center;
    font-size: 0.75em;
    color: #004a8e;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}