@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

*{
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif !important;
}
.container{
  background: transparent;
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 0px;
}
.box{
  background-color: rgba(0,0,0,.5);
  height: 100vh;
  border: 1px solid white;
  flex: 1;
  transition: all .7s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.container a{
  text-decoration: none;
  color: white;
  font-size: 60px;
}
.box:hover{
  background-color: transparent;
  flex: 1.2;
  cursor: pointer;
}
.video-portada-new video {
  width: 100vw;
  min-height: 100vh;
  object-fit: cover;
}
.video-portada-new {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.logo-portada {
  position: absolute;
  z-index: 99999;
  bottom: 30px;
  right: 30px;
}

.logo-portada img {
    width: 170px;
}
.titulo {
color: white;
    position: absolute;
    z-index: 99999;
    top: 10%;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 144px;
    opacity: .5;
    z-index: -1;
}

@media (max-width: 1100px) {
  .titulo{
    font-size: 86px;
  }
  .container a{
    font-size:35px;
  }
}
@media (max-width: 768px) {
  .titulo{
    font-size: 70px;
  }

}
@media (max-width: 480px) {
  .titulo{
    font-size: 60px;
  }
  .logo-portada img {
    width: 89px;
  }
  .video-portada .titulo {
    font-size: 64px;
  }

}

@media only screen and (orientation: portrait){
  .container{
    flex-direction: column;
  }
  .titulo{
    /*top: 25px;*/
    top: 50vh;
    transform: translateY(-50%);
  }
}