.ContactUs {
  display: flex;
  flex-direction: column;
}@media screen and (min-width: 601px) {.ContactUs {
    flex-direction: row;
}
  }

.ContactUs-image.ContactUs-image {
  border-radius: 20px 20px 0 0;
}

@media screen and (min-width: 601px) {

.ContactUs-image.ContactUs-image {
    width: 33.333%;
    border-radius: 20px 0 0 20px;
}
  }

.ContactUs-data {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 0 0 20px 20px;
  background-color: var(--clr-blue);
  color: #ffffff;
}

@media screen and (min-width: 601px) {

.ContactUs-data {
    padding: 0 40px;
    border-radius: 0 20px 20px 0;
}
  }

.Section--blue .ContactUs-data,
.Section--lightBlue .ContactUs-data {
  background-color: #ffffff;
  color: var(--clr-blue);
}

.ContactUs-title {
  --headline-color: #ffffff;
}

.Section--blue .ContactUs-title,
.Section--lightBlue .ContactUs-title {
  --headline-color: var(--clr-blue);
}

.ContactUs-content {
  color: #ffffff;
}

.ContactUs-content a {
    text-decoration: underline;
    color: #ffffff;
  }

.Section--blue .ContactUs-content,
.Section--lightBlue .ContactUs-content {
  color: var(--clr-blue);
}

.Section--blue .ContactUs-content a, .Section--lightBlue .ContactUs-content a {
    text-decoration: underline;
    color: var(--clr-blue);
  }
