.credit .credit_row {
  display: flex;
  flex-wrap: wrap;
  padding: 2em 1em;
  text-align: center;
}
.credit .credit_column {
  width: 100%;
  padding: 0.5em 0;
}
.credit h1 {
  width: 100%;
  text-align: center;
  font-size: 3.5em;
  color: var(--bg_beige);
}
.credit .credit_card {
  box-shadow: 0 0 2.4em rgba(25, 0, 58, 0.1);
  padding: 3.5em 1em;
  border-radius: 0.6em;
  color: #1f003b;
  cursor: pointer;
  transition: background 1s ease, color 1s ease;
  background-color: #ffffff;
}
.credit .credit_card .credit_img-container {
  width: 8em;
  height: 8em;
  background-color: var(--primary_pink);
  padding: 0.5em;
  border-radius: 50%;
  margin: 0 auto 2em auto;
  transition: transform 1s ease;
  margin-bottom: 4rem;
}
.credit .credit_card img {
  width: 100%;
  border-radius: 50%;
}
.credit .credit_card h3 {
  font-weight: 500;
  margin-top: 1rem;
  transition: padding-top 1s ease;
}
.credit .credit_card p {
  font-weight: 300;
  text-transform: uppercase;
  margin: 0.5em 0 2em 0;
  letter-spacing: 2px;
  font-family: "Nickson";

}
.credit .credit_icons {
  width: 50%;
  min-width: 180px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.credit .credit_card a {
  text-decoration: none;
  color: inherit;
  font-size: 1.4em;
}
.credit .credit_card:hover {
  background: var(--secondary_yellow);
}
.credit .credit_card:hover .credit_img-container {
  transform: scale(1.15);
}
.credit .credit_card:hover h3 {
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
    .credit section {
    padding: 1em 7em;
  }
}
@media screen and (min-width: 992px) {
    .credit section {
    padding: 1em;
  }
  .credit .credit_card {
    padding: 5em 1em;
  }
  .credit .credit_column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 1em;
  }
}