/* ! Hero */
.c-hero-img {
  object-position: 65% 50%;
}

/* ! Contact Info */
.c-about-info-card {
  height: 100%;
  width: 100%;
  border-radius: calc(1.5rem + 15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(1rem * 1.5);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease-in;
}

.c-about-icon-container {
  height: 70px;
  width: 70px;
  aspect-ratio: 1;
  padding: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 1;
  transition: transform 0.25s ease;
}

.c-about-icon {
  height: 100%;
  width: 100%;
  fill: var(--alt-text);
}

.c-about-info-card:hover {
  transform: scale(1.025);
}

.c-about-info-card:hover .c-about-icon-container {
  transform: scale(1.05);
}

.c-about-info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: calc(1rem * 1);
}

.c-about-info-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.c-about-info-text {
  margin: 0;
  font-size: 1rem;
  text-align: center;
}
