.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.contact-us-links-container {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* align-items: center; */
  text-align: justify;
  padding: 26px;
  word-wrap: break-word;
}

.contact-us-link {
  color: black;
  text-decoration: none;
  padding-top: 8px;
  font-size: 18px;
  /* position: relative; */
  /* word-wrap: break-word; */
  transition: all 0.2s ease-in-out;
  text-align: left;
  margin-left: 30%;
  display: list-item; /* This has to be "list-item"                                               */
  /* list-style-type: disc; */
  list-style-position: outside;
  width: 86%;
}

.contact-us-link:after {
  margin-bottom: -6px;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 450ms ease-in-out;
}

.contact-us-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-us-link:hover {
  text-decoration: none;
  color: #c80909;
}

.contact-us-links-layout {
  display: flex;
  justify-content: center;
}

.contact-us-title {
  color: #c80909;
}

@media screen and (max-width: 992px) {
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .contact-us-links-layout {
    display: unset;
    width: 88%;
    align-items: unset;
  }

  .contact-us-title {
    font-size: 18px;
  }

  .contact-us-link {
    font-size: 14px;
    width: 85%;
    margin-left: 10%;
  }

  .contact-us-links-container {
    justify-content: center;
    padding: 0px;
  }
}
