@import url("https://fonts.googleapis.com/css?family=Inter");
body {
  font-family: inherit;
  line-height: inherit;
}
a {
  text-decoration: none;
  text-transform: "none";
}
img {
  height: 100%;
  width: 100%;
}

.flex {
  display: flex;
}
.column {
  flex-direction: column;
}
.row {
  flex-direction: row;
}
.align-center {
  align-items: center;
}
.alig-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}
.card-wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 4rem;
  max-width: 1080px;
}

@media screen and (min-width: 768px) {
  .card-wrapper {
    width: 90%;
  }
}
@media screen and (min-width: 1280px) {
  .card-wrapper {
    width: 1080px;
  }
}

.title-wrapper {
  font-weight: 600;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-bottom: 0.875rem;
}
.justify-between {
  justify-content: space-between;
}

.height-full {
  height: 100%;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}
.font-medium {
  font-weight: 500;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-brand-grey-base {
  --tw-text-opacity: 1;
  color: rgba(117, 119, 121, var(--tw-text-opacity));
}
.font-normal {
  font-weight: 400;
}
.font-600 {
  font-weight: 600;
}
.font-500 {
  font-weight: 500;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.mb-0-5rem {
  margin-bottom: 0.5rem;
}
.mt-0-5rem {
  margin-top: 0.5rem;
}

.text-grey-dark {
  --tw-text-opacity: 1;
  color: rgba(71, 73, 76, var(--tw-text-opacity));
}

.padding-1-rem {
  padding: 1rem;
}
.br-0-75rem {
  border-radius: 0.75rem;
}

.cursor-point {
  cursor: pointer;
}
