p {
  margin-bottom: 1rem;
  font-size: .875rem;
  line-height: 1.3;
}

.container {
  color: #fff;
  background-color: #003459;
  background-image: url('../images/desk-bg.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  height: 100svh;
  max-height: 100%;
  padding-top: 8.5vw;
  display: flex;
}

.logo {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.logo-mob {
  display: none;
}

.info {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 75px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.buton {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.buton-icon {
  background-color: #00bfff;
  border-radius: 99rem;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
}

.v-flex {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-size-medium {
  font-size: 1.125rem;
}

@media screen and (max-width: 991px) {
  .container {
    background-size: 120%;
  }

  .logo {
    max-width: 35rem;
  }

  .v-flex {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
  }
}

@media screen and (max-width: 767px) {
  .container {
    background-image: url('../images/bg-mobile.svg');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 8rem;
  }

  .logo {
    max-width: 25rem;
  }

  .logo-mob {
    display: block;
  }

  .logo-d-t {
    display: none;
  }

  .info {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    max-width: 18rem;
  }

  .info {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}


