.btn-wrap {
  display: flex;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
}

.reg-btn {
  text-align: center;
  color: #fff;
  padding: 0.5rem 2rem;
  cursor: pointer;
  background-color: #1d438d;
  border: 2px solid #fff;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.reg-btn:hover {
  background: #fff;
  border: 2px solid #1d438d;
}
a.reg-btn:hover {
  color: #1d438d;
}


.btn-wrap-back {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
}

.back-btn {
  justify-self: flex-start;
  text-align: center;
  color: #fff;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  background-color: #1d438d;
  border: 2px solid #fff;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.back-btn:hover {
  background: #fff;
  border: 2px solid #1d438d;
}
a.back-btn:hover {
  color: #1d438d;
}

.card-text-wrap {
  padding: 1rem;
  min-height: 200px;
  max-height: 200px;
}

.card-text-wrap h3,
.card-text-wrap h6 {
  color: #1d438d;
}

@media screen and (min-width: 1080px) {
  .btn-wrap {
    margin-top: 2rem;
  }
}
