/*CSS Layout view grid facultades*/
.views-element-container.form-group{
    margin-bottom: 0;
}
.vw-gft-main{
    width: 100%;
}
  .vw-gft-wrapper{
        margin-bottom: 0;
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
  }
    .vw-gft-item{
        width: calc(33.3% - (var(--box-margin-right) / 2));
        margin-bottom: 50px;
    }
      .vw-gft-image-link{
        display: block;
        margin-bottom: 25px;
      }
        .vw-gft-item-image{
            width: 100%;
            height: 302px;
        }
            .vw-gft-item-image img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        .vw-gft-item-content-title{
            margin-bottom: 10px;
        }
@media (max-width:1199px) {
    .vw-gft-item{
        width: calc(50% - (var(--box-margin-right) / 2));
    }
}
@media (max-width:768px) {
    .vw-gft-item{
        width: 100%;
        min-width: 100%;
    }
}