@keyframes fadeDownAnimation {
  from {
    opacity: 0;
    margin-top: -20%;
  }

  75% {}

  to {
    opacity: 1;
    margin-top: 0;
  }
}

.Wrapper {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  z-index: 0;
  padding: 80px 0px 120px 0px;
  position: relative;

  cursor: pointer;
}

.HeroVideo {
  min-width: 100%;
  min-height: 100%;
  position: relative;
  clip-path: inset(0px 0px);
  object-fit: cover;
  object-position: center top;
  background-color: #6F98FC;
}

.BackgroundContainer {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;

}

.InnerWrapper {
  display: flex;
  width: 100%;
  height: 100%;
  /* padding-top: 50px; */
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.ContentWrapper {
  text-align: center;
  padding-top: 50px;
  animation: fadeDownAnimation 2s ease;
  animation-fill-mode: backwards;
}

.Phone {
  width: 100px;

}

.SubTitle {
  color: #5082F6;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 2.5rem;
  text-align: center;
  letter-spacing: -1px;
  margin: 8px 0 0 0;
  padding: 0;
}

.Logo {
  width: 230px;
  margin-top: 8px;
}

.DescriptionWrapper {
  margin-top: 8px;
}

.Description {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  text-align: center;
  padding: 0;
  margin: 17px 0 0 0;

  @media (min-width: 768px) {
    font-size: 16px;
    line-height: 24px;
  }

  @media (min-width: 1440px) {
    font-size: 24px;
    line-height: 31px;
  }
}


@media (max-width: 280px) {
  .Phone {
    width: 98px;
  }
  .ContentWrapper{
    padding-top: 70px;
  }
  .Logo{
    width: 184px;
  }
  .DownloadButton{width: 220px;}
  .ButtonText{font-size: 16px;}
  .ButtonLogo{width: 27px;
    height: 19px;}
}

@media (min-width: 768px) {
  .Phone {
    width: 160px;
  }

  .Logo{
    width: 225px;
  }

}

@media (min-width: 1280px) {
  .Phone {
    width: 100px;
  }
}

@media (min-width: 1440px) {
  .Phone {
    width: 159px;
  }

  .Logo{
    width: 260px;
    margin-top: 10px;
  }
}

.ButtonWrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.5s ease-in-out 0s;
  margin-top: 20px;
}

.DownloadButton{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 54px;
  border: 0.5px solid #FFFFFF;
  border-radius: 32px;
  text-decoration: none;
  background: #5082F6;
}
.ButtonText{
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 28px;
  margin: 0;
  padding: 0;
}
.ButtonLogo{
  width: 33px;
  height: 23px;
  margin-right: 5px;
}