header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}
header img {
  width: 150px;
  padding: 40px;
}

.float-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999999;
  z-index: 100;
  transition: linear 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-float-whatsapp {
  transition: linear 0.3s;
  height: 30px;
}
.float-whatsapp:hover {
  background-color: #35e376;
  color: #ffffff;
  text-decoration: none;
}
.float-whatsapp:hover .my-float-whatsapp {
  height: 42px;
}


#video-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#video-placeholder,
#video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}

#video-placeholder {
  background: url('/_images/video.webp') center center no-repeat;
  background-size: cover;
  cursor: pointer;
  z-index: 1;
}

#video-container video {
  display: none;
  z-index: 2;
}

@media (min-width: 1200px) {
  #video-container {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  #video-placeholder,
  #video-container video {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: contain;
    object-position: center center;
  }

  #video-placeholder {
    background-size: contain;
    background-repeat: no-repeat;
  }
}
