#video-background {
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0;
}
.capa-color{
	height: 100%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(48,64,119,0.80);
    z-index: 0;
}

.tv {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;

  width: 100%;
  height: 100%;

  overflow: hidden;
  
  .screen {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;

    margin: auto;

    opacity: 0;
    transition: opacity .5s;

    &.active {
      opacity: 1;
    }
  }
}