.container {
  width: 100%;
  height: 100vh;
  @include flex-align(center, center);

  .background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @keyframes load {
    0% { width: 0; }
    100% { width: 100%; }
  }

  .content {
    width: 90%;
    background: var(--color-16);
    box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.2);
    border-radius: 1.6rem;
    text-align: center;
    @include flex-direction(column);
    align-items: center;
    padding: 2.8rem 0 2rem 0;
    color: var(--color-22);
    position: relative;

    @include min(tablet) {
      width: 50%;
    }

    @include min(laptop) {
      width: 35%;
    }

    img {
      width: 80%;

      @include min(tablet) {
        width: 50%;
      }
    }

    p {
      margin: 2rem 0;
      width: 70%;
      font-size: 2rem;
      font-weight: 700;

      @include min(tablet) {
        font-size: 2.4rem;
      }
    }

    .mainTextWithlogo {
      margin: 2rem 0rem 1rem;
    }

    .operatorlogo {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 1rem;
    }

    .bar {
      height: 0.8rem;
      background: #e1dbdb;
      border-radius: 10rem;
      width: 80%;

      &:before {
        content: ' ';
        height: 0.8rem;
        width: 0;
        background: linear-gradient(270deg, #17d6cc 0.34%, #17d68a 86.37%);
        border-radius: 10rem;
        display: block;
        animation: load 5s normal forwards;
      }
    }

    .redirectText {
      padding: 2.8rem;
      font-size: 1.6rem;

      @include min(tablet) {
        font-size: 1.8rem;
      }
    }

    a {
      position: absolute;
      bottom: -2rem;
      font-size: 1.4rem;

      @include min(tablet) {
        font-size: 2rem;
      }
    }
  }
}
