/******* COMPONENT FOOTER CONTACT CSS ******/
.footer-contact-container:first-of-type {
  color: var(--HCD--light--blue);
  padding: 0 30px 30px;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .footer-contact-container:first-of-type,
  .footer-contact-container > .container {
    width: 90%;
    padding: 0 0 30px;
    margin: 2em auto 0;
    max-width: 1170px;
  }
}

.footer-contact-container a {
  /* color: var(--HCD--white); */
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.footer-contact-container .footer-contact-title {
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}
.footer-contact-container .field--type-address {
  display: flex;
  flex-wrap: wrap;
  /* margin-top: 1em; */
  gap: 4%;
}
.footer-contact-container .field--type-address .field__item {
  margin-top: 1em;
}
.footer-contact-container .field--type-address .field__item .organization {
  font-weight: 700;
}
.footer-contact-container
  .field--type-address
  .field__item
  span:not(.organization) {
  font-weight: 400;
  color: var(--HCD--dark--blue);
}
.footer-contact-container .field--type-address .field__item .country {
  display: none;
}
.footer-contact-container .fc-first-content {
  height: 100%;
  width: 95%;
  border-bottom: 1px solid #333;
  width: 100%;
}
.footer-contact-container .fc-second-content .fc-margin {
  margin: 1em 0;
}
.footer-contact-container .fc-phone a,
.footer-contact-container .fc-email a,
.footer-contact-container .fc-question a {
  display: flex;
}
.footer-contact-container .fc-phone a::before,
.footer-contact-container .fc-email a::before,
.footer-contact-container .fc-question a::before {
  content: "XX";
  display: inline-flex;
  margin: 0 1ch 0 0;
  font-family: "Material Symbols Outlined";
  font-variation-settings: var(--HCD--font-variation-settings);
}
.footer-contact-container .fc-phone a::before {
  content: "\e0b0";
}
.footer-contact-container .fc-email a::before {
  content: "\e158";
}
.footer-contact-container .fc-question a::before {
  content: "\e88e";
}
.footer-contact-container .fc-second-content,
.footer-contact-container .fc-third-content {
  margin-top: 4em;
  padding-left: 10%;
}
@media only screen and (max-width: 599px) {
  .footer-contact-container .fc-first-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.29);
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .footer-contact-container .fc-first-content {
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    width: 100%;
  }
  .footer-contact-container .fc-second-content,
  .footer-contact-container .fc-third-content {
    margin-top: 4em;
  }
  .footer-contact-container .fc-phone a::before,
  .footer-contact-container .fc-email a::before,
  .footer-contact-container .fc-question a::before {
    margin-left: 0;
  }
  .footer-contact-container .field--type-address .field__item {
    flex: 48%;
  }
}
@media only screen and (min-width: 900px) {
  .footer-contact-container > div > .row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 4rem 2em;
  }
  .footer-contact-container > div > .row .col-lg-2 {
    grid-area: 1 / 1 / 1 / 9;
  }
  .footer-contact-container > div > .row .fc-first-content {
    border-bottom: 0;
  }
  .footer-contact-container > div > .row .fc-second-content {
    grid-area: 2 / 1 / 3 / 4;
    margin-top: 0;
  }
  .footer-contact-container > div > .row .fc-third-content {
    grid-area: 2 / 4 / 3 / 9;
    margin-top: 0;
  }
}
@media only screen and (min-width: 900px) {
  .footer-contact-container > div > .row {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .col-lg-2,
  .col-lg-4,
  .col-lg-6 {
    width: unset;
    float: unset;
    padding: 0;
  }
  .footer-contact-container > div > .row {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2em;
    padding-left: 15px;
  }
  .footer-contact-container > div > .row .col-lg-2 {
    grid-area: 1 / 1 / 1 / 3;
    border-bottom: 0;
  }
  .footer-contact-container > div > .row .fc-second-content {
    grid-area: 1/3/3/6;
    border-left: 1px solid var(--HCD--light--blue);
  }
  .footer-contact-container > div > .row .fc-third-content {
    grid-area: 1 / 6 / 2 / 11;
  }
}
