.c-hero-img {
  object-position: 50% 50%;
}

/* ! Contact Form */
#contactForm {
  scroll-margin-top: 150px;
}

.c-contact-img {
  width: 100%;
  height: 100%;
  max-height: 564.4px;
  object-fit: cover;
}

.c-contact-accent {
  color: var(--primary-color);
}

/* ! Contact Info */
.c-contact-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-contact-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-contact-icon {
  height: 100%;
  width: 100%;
  fill: var(--alt-text);
}

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

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

.c-contact-info-text {
  margin: 0;
  font-size: 1rem;
  font-family: var(--secondary-font-family);
}

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

.c-contact-info-card:hover .c-contact-icon-container {
  transform: scale(1.1) rotate(7deg);
}

/* ! Map */
.c-map {
  width: 100%;
  height: 100%;
  /* min-height: 70dvh; */
  min-height: 350px;
  border-radius: calc(1.5rem + 15px);
  /* transition: transform 0.25s ease; */
}

/* .c-map:hover {
  transform: scale(1.025);
} */

.c-map-icon {
  fill: var(--warning-color);
}

.c-map-text {
  width: 100% !important;
}

.c-map-title {
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold !important;
}

.c-map-dir {
  width: 100%;
  font-size: 1rem;
  text-align: start;
}

/* ! Form */
.c-form-card {
  height: 100%;
  width: 100%;
  border-radius: calc(1.5rem + 15px);
  gap: calc(1rem * 1.5);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#messageTxt {
  min-height: 100px;
  max-height: 220px;
}

.c-form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.c-submit-btn {
  color: var(--alt-text);
  background-color: var(--primary-color);
  font-weight: 700;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.c-submit-btn:hover {
  color: var(--alt-text);
  background-color: var(--primary-color-hover);
  transform: scale(1.05);
}

.c-submit-btn:active {
  transform: translateY(2px);
}
