.gform-field-label {
  font-weight: normal !important;
}

.ginput_container select {
  padding: 10px 40px 10px 15px !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 120px;
  width: 100%;
}

.contact-grid__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: bold;
}

.contact-grid__address {
  font-size: 22px;
  line-height: 28px;
  font-weight: normal;
}

.contact-grid__link {
  font-size: 22px;
  line-height: 28px;
  color: #282828;
  margin-top: 28px;
  font-weight: bold;
  display: block;
}

.contact-grid {
  padding-bottom: 40px;
}

.contact-grid__location {
  position: relative;
}


.contact-grid__location:nth-child(even)::before {
  height: 70%;
  width: 2px;
  background-color: #dfdfdf;
  margin: auto 0;
  top: 0;
  bottom: 0;
  left: -60px;
  content: '';
  display: block;
  position: absolute;
}

.contact-grid__location:nth-child(even)::after {
  height: 70%;
  width: 2px;
  background-color: #dfdfdf;
  margin: auto 0;
  top: 0;
  bottom: 0;
  right: -60px;
  content: '';
  display: block;
  position: absolute;
}

@media (max-width: 767px) {
  .contact-grid {
    display: block;
  }

  .contact-grid__location {
    margin-bottom: 40px;
  }

  .contact-grid__location:nth-child(even)::before {
    right: 0;
    left: 0;
    top: -20px;
    bottom: auto;
    width: 70%;
    height: 2px;
    margin: 0 auto;
  }

  .contact-grid__location:nth-child(even)::after {
    right: 0;
    left: 0;
    top: auto;
    bottom: -20px;
    width: 70%;
    height: 2px;
    margin: 0 auto;
  }
}