@-webkit-keyframes arrow_anim {
  0% {
    left: 0;
    opacity: 0;
  }
  30% {
    left: calc(50% - 2.5px);
    opacity: 1;
  }
  100% {
    left: calc(50% - 2.5px);
    opacity: 1;
  }
}
@keyframes arrow_anim {
  0% {
    left: 0;
    opacity: 0;
  }
  30% {
    left: calc(50% - 2.5px);
    opacity: 1;
  }
  100% {
    left: calc(50% - 2.5px);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .gnav_contact a::before {
    content: "";
  }
}
#contact_form {
  margin-bottom: 300px;
}
@media all and (max-width: 767px) {
  #contact_form {
    margin-bottom: 200px;
  }
}