.flex-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.flex-container > div {
  margin-right: 20px;
}

@media (max-width: 800px) {
  .flex-container {
    flex-wrap: wrap;
  }

  .flex-container > div {
    margin-right: 0;
  }
}

.contact-card {
  background-color: rgb(235, 235, 235);
  border-radius: 5px;
  padding: 27px 16px;
  min-width: 350px;
  max-width: 350px;
  font-family: Inter, sans-serif;
}

.contact-card > h3 {
  margin-top: 0;
  font-weight: bold;
  font-size: 18px;
  font-kerning: none;
}

.contact-card-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.contact-card-content img {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  transform: scale(0.6);
}

.contact-card-content > * {
  flex: 1 0 auto;
}

.contact-card-content .contact-card-text span {
  margin: 3px;
  line-height: 20px;
  display: inline-block;
}

.contact-card-content .contact-card-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 1em;
}

.back-white-circle {
  width: 60px;
  height: 60px;
  max-width: 60px;
  max-height: 60px;
  border-radius: 50%;
  background-color: white;
}

.contact-section-description {
  text-align: justify;
  min-width: 300px;
  max-width: fit-content;
}

.accent {
  color: #4c67c6;
}
