.contact-top-banner-container {
  width: 100%;
  height: 200px;
  background-image: url(./../media/services-cover.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-brand);
  background-blend-mode: hard-light;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 44px;
  font-weight: 600;
  color: #fff;
}
.contact-top-banner-container span {
  background: #f9f9f9bf;
  width: 100%;
  text-align: center;
  color: #0a5688;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-main-container {
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  width: 100%;
  margin: 160px 2rem;
  display: flex;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1rem;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-1);
}
.info-card div {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 20px;
}
.info-card i {
  color: var(--color-brand);
  font-size: 24px;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  box-shadow: var(--shadow-1);
  margin-bottom: 5rem;
  border-radius: var(--radius);
}
.form-group {
  display: flex;
  flex-direction: column;
  margin: 1rem;
}
.form-group input,
.form-group textarea {
  border-radius: 1rem;
  border: none;
  padding: 1rem;
}
form.contact-form button.btn-brand {
  width: calc(100% - 2rem);
  margin: 1rem;
}

@media screen and (max-width: 1030px) {
  .info-card {
    flex-direction: column;
    gap: 6rem;
    box-shadow: none;
    margin: 40px 0;
  }
  .info-card div {
    flex-direction: column;
  }
}
