.custom-facebook { background-color:#ffffff; color:#3b5998; font-size:24px; }
.custom-facebook:hover { background-color:#3b5998; color:#ffffff; }
.custom-twitter { background-color:#ffffff; color:#1da1f2; font-size:24px; }
.custom-twitter:hover { background-color:#1da1f2; color:#ffffff; }
.custom-google { background-color:#ffffff; color:#db4437; font-size:24px; }
.custom-google:hover { background-color:#0f9d58; color:#ffffff; }
.custom-instagram { background-color:#ffffff; color:#fbad50; font-size:24px; }
.custom-instagram:hover { background-color:#bc2a8d; color:#ffffff; }
.custom-pinterest { background-color:#ffffff; color:#cb2027; font-size:24px; }
.custom-pinterest:hover { background-color:#cb2027; color:#ffffff; }

/* Contact Form Styles */
:root {
  --input-padding-x: .75rem;
  --input-padding-y: .75rem;
}
.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}
.form-label-group > input,
.form-label-group > label {
  padding: var(--input-padding-y) var(--input-padding-x);
}
.form-label-group > label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0; /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: all .1s ease-in-out;
}
.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}
.form-label-group input:-ms-input-placeholder {
  color: transparent;
}
.form-label-group input::-ms-input-placeholder {
  color: transparent;
}
.form-label-group input::-moz-placeholder {
  color: transparent;
}
.form-label-group input::placeholder {
  color: transparent;
}
.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}
.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777;
}
.hr-line-light {
    margin:0 0 1em;
    line-height:2em;
    padding:0;
    color:#ffffff;
    text-shadow:1px 1px 1px #000;
    position:relative;
    overflow:hidden;
    text-align:center;
}
.hr-line-light:before,.hr-line-light:after {
    content:"";
    position:absolute;
    top:50%;
    margin-left:-799em;
    height:2px;
    width:798em;
    border-top:1px solid black;
    background:#ffffff;
}
.hr-line-light:after {
    left:auto;
    width:799em;
    margin:0 0 0 1em;
}
.hr-line-dark {
    margin:0 0 1em;
    line-height:2em;
    padding:0;
    color:#000000;
    text-shadow:1px 1px 1px #000;
    position:relative;
    overflow:hidden;
    text-align:center;
}
.hr-line-dark:before,.hr-line-dark:after {
    content:"";
    position:absolute;
    top:50%;
    margin-left:-799em;
    height:2px;
    width:798em;
    border-top:1px solid grey;
    background:#000000;
}
.hr-line-dark:after {
    left:auto;
    width:799em;
    margin:0 0 0 1em;
}