.tvi-logo {
  width: 144px;
  height: 44px;
}

.navbar {
  display: grid;
  align-items: center;
  height: 72px;
  background: #009640;
  padding: 0px 16px;
}

.title {
  font-family: "Prompt";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
  text-align: center;
  letter-spacing: -0.004em;
  color: #000000;
}

.description {
  font-family: "Prompt";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.004em;
  color: #666666;
}

.maintenance-container {
  display: grid;
  padding: 16px;
  margin-top: 124px;
  justify-items: center;
  grid-gap: 32px;

  grid-template-areas:
    "img-wrapper"
    "text-wrapper";
}

.img-wrapper {
  grid-area: img-wrapper;
}

.text-wrapper {
  grid-area: text-wrapper;
  display: grid;
  grid-gap: 12px;
  justify-items: center;
}

.maintenance-logo {
  width: 153.84px;
  height: 104.29px;
}

@media only screen and (min-width: 768px) {
  .navbar {
    padding: 0px 48px;
  }

  .maintenance-logo {
    width: 371.38px;
    height: 251.75px;
  }

  .display-mobile {
    display: none;
  }
}

@media only screen and (min-width: 1025px) {
  .navbar {
    padding: 0px 174px;
  }

  .maintenance-logo {
    width: 503.78px;
    height: 341.5px;
  }

  .maintenance-container {
    display: grid;
    padding: 16px;
    margin-top: 0px;
    align-items: center;
    grid-template-columns: auto auto;
    grid-template-areas: "text-wrapper img-wrapper";
    grid-gap: 32px;
    justify-content: center;
    height: 100%;
  }

  .img-wrapper {
    grid-area: img-wrapper;
  }

  .text-wrapper {
    grid-area: text-wrapper;
  }
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Prompt";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  background: #009640;
  border-radius: 8px;
  padding: 12px 20px;
  width: 139px;
}
