.banner-dois-botoes {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-dois-botoes .btn {
  font-weight: 500;
  min-width: 200px;
  padding-left: 10px;
  padding-right: 10px;
  transition: all 0.4s;
}
.banner-dois-botoes .btn:hover {
  transition: all 0.4s;
}

.banner-dois-botoes-video {
  min-height: 90vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner-dois-botoes-video video,
.banner-dois-botoes-video iframe {
  position: absolute;
  inset: 0;
  min-height: 90vh;
  height: 100%;
  width: 100vw;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -9999;
}
.banner-dois-botoes-video .btn {
  font-weight: 500;
  min-width: 200px;
  padding-left: 10px;
  padding-right: 10px;
}
.banner-dois-botoes-video .btn:hover {
  transition: all 0.4s;
}

.animationPosition {
  bottom: 25px;
}
.animationPosition .arrowsAnimation .first {
  opacity: 0.5;
  animation: arrowsAnimation 1s infinite;
  text-shadow: 0px 0px 2px black;
}
.animationPosition .arrowsAnimation .second {
  opacity: 0.65;
  position: relative;
  top: -23px;
  animation: arrowsAnimation2 1s infinite;
  animation-delay: 0.05s;
  text-shadow: 0px 0px 2px black;
}
.animationPosition .arrowsAnimation .third {
  opacity: 0.8;
  position: relative;
  top: -46px;
  animation: arrowsAnimation3 1s infinite;
  animation-delay: 0.1s;
  text-shadow: 0px 0px 2px black;
}

@keyframes arrowsAnimation {
  0% {
    transform: scale(1.5, 3);
    transform: translateY(20px);
  }
  50% {
    transform: scale(1.5, 4);
    transform: translateY(25px);
  }
  100% {
    transform: scale(1.5, 3);
    transform: translateY(20px);
  }
}
@keyframes arrowsAnimation2 {
  0% {
    transform: scale(1.5, 3);
    transform: translateY(25px);
  }
  50% {
    transform: scale(1.5, 4);
    transform: translateY(30px);
  }
  100% {
    transform: scale(1.5, 3);
    transform: translateY(25px);
  }
}
@keyframes arrowsAnimation3 {
  0% {
    transform: scale(1.5, 3);
    transform: translateY(30px);
  }
  50% {
    transform: scale(1.5, 4);
    transform: translateY(35px);
  }
  100% {
    transform: scale(1.5, 3);
    transform: translateY(30px);
  }
}
