.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content {
  position: relative;
  /*top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}
@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    width: 300%;
    left: -100%;
  }
}

@media (max-width: 767px) {
  /*.fullscreen-bg {
    background: url('web-header.jpg') center center / cover no-repeat;
  }

  .fullscreen-bg__video {
    display: none;
  }*/
}
.logo{
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 1;
}
.box {
  position: absolute;
  bottom: 20px;
  width: 100%;
  overflow: hidden;
}

.text {
  text-align: center;
  padding-top: 56px;
  color: #fff;
  font-family: 'Arial';
  font-weight: bold;
}
.box i{
  color: #f1c631;
}
.animated {
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}
.bounce {
  animation-name: bounce;
}

@media all and (max-width: 680px) {
  .box {
    width: 100%;
    height: 55px;
    clear: both;
    margin: 0px auto;
  }
  .text {
   padding-top: 20px; 
  }
  .logo{
    display: none;
  }
}
a{
  text-decoration: none;
  display: block;
}