.get-in-touch-block {
  background: #ffffff;
  padding-top: 48px;
}
@media (min-width: 768px) {
  .get-in-touch-block {
    padding-top: 96px;
  }
}
.get-in-touch-block.padding-top-reduced {
  padding-top: 48px;
}
.get-in-touch-block {
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .get-in-touch-block {
    padding-bottom: 96px;
  }
}
.get-in-touch-block.padding-bottom-reduced {
  padding-bottom: 48px;
}
.get-in-touch-block > .container {
  width: 100%;
}
.get-in-touch-block .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: min(1280px, 100%);
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 1024px) {
  .get-in-touch-block .inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
  }
}
.get-in-touch-block .contact-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.get-in-touch-block .heading {
  color: #00202d;
}
.get-in-touch-block .intro-text {
  color: #323232;
  line-height: 1.6;
}
.get-in-touch-block .contact-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.get-in-touch-block .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.get-in-touch-block .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #e6f7fd;
  border-radius: 8px;
  color: #1ab7ed;
}
.get-in-touch-block .contact-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}
.get-in-touch-block .contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.get-in-touch-block .contact-label {
  color: #00202d;
}
.get-in-touch-block .contact-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.get-in-touch-block .contact-links li {
  margin-bottom: 0;
}
.get-in-touch-block .contact-links .contact-link {
  color: #1ab7ed;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}
.get-in-touch-block .contact-links .contact-link:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #1ab7ed;
  transition: transform 0.3s ease;
  transform: scaleY(1);
  transform-origin: center center;
  margin-top: -1px;
}
.get-in-touch-block .contact-links .contact-link:hover:after, .get-in-touch-block .contact-links .contact-link:focus-visible:after {
  transform: scaleY(0);
}
.get-in-touch-block .phone-link {
  color: #767674;
  text-decoration: none;
  line-height: 1.6;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}
.get-in-touch-block .phone-link:hover, .get-in-touch-block .phone-link:focus-visible {
  color: #1ab7ed;
}
.get-in-touch-block .contact-value,
.get-in-touch-block .contact-address {
  color: #323232;
  line-height: 1.6;
  font-style: normal;
}
.get-in-touch-block .contact-note {
  color: #767674;
  line-height: 1.6;
}
.get-in-touch-block .form-col {
  min-width: 0;
}
.get-in-touch-block .form-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 24px;
  background: #f9fafb;
  border-bottom: 4px solid #1ab7ed;
  border-radius: 16px;
}
.get-in-touch-block .form-card.card-border-default {
  border-bottom-color: #767674;
}
.get-in-touch-block .form-card.card-border-primary {
  border-bottom-color: #1ab7ed;
}
.get-in-touch-block .form-card.card-border-futures {
  border-bottom-color: #449fdc;
}
.get-in-touch-block .form-card.card-border-action {
  border-bottom-color: #f55d53;
}
.get-in-touch-block .form-card.card-border-sponsorship {
  border-bottom-color: #ffd46f;
}
.get-in-touch-block .form-card.card-border-enrichment {
  border-bottom-color: #0eb8a5;
}
.get-in-touch-block .form-card.card-border-parenting {
  border-bottom-color: #9074a1;
}
@media (min-width: 768px) {
  .get-in-touch-block .form-card {
    padding: 32px;
  }
}
.get-in-touch-block .form-heading {
  color: #000;
}
.get-in-touch-block .get-in-touch-form-wrap {
  width: 100%;
}
.get-in-touch-block .form-placeholder {
  color: #767674;
  padding: 24px;
  background: #fbfbfa;
  border-radius: 8px;
}