/* Contacts page */
.contact_block .group {
  color: #888;
  margin-bottom: 20px;
  font-size: 12px;
  text-transform: uppercase;
}

/* NOTE: ".label" is a Bootstrap class (white text, badge styles).
   On contacts page we use it as a plain caption, so we override it here. */
.contact_block .label {
  display: block;
  margin-bottom: 6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
  color: #798395;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact_block .phone,
.contact_block .email {
  font-size: 27px;
  font-family: 'Cuprum', sans-serif;
  color: #111;
}

.contact_block .phone a,
.contact_block .email a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
}

.contact_block .phone a:hover,
.contact_block .email a:hover {
  border-bottom-color: rgba(17, 17, 17, 0.6);
}

.contact_block .address {
  font-size: 15px;
  line-height: 22px;
  color: #111;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
}

.contact_block .address a {
  display: block;
  margin-top: 6px;
  color: #e69342;
  text-decoration: underline;
}

.contact_block .address a:hover {
  color: #ff8a00;
}

@media (max-width: 991px) {
  .contact_block .col-md-4 {
    margin-bottom: 18px;
  }
}