@charset "utf-8";

.dis-flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.btn-contact{
  margin-left: 1em;
}

.btn-contact a{
  position: relative;
  display: flex;
  font-weight: bold;
  align-items: center;
  font-size: 12px;
  padding: 1em 3em 1em 1.8em;
  color: #fff !important;
  background: #00ad48;
  /* background: linear-gradient(45deg,rgba(0, 161, 67, 1) 0%, rgba(0, 161, 67, 1) 40%, rgba(0, 150, 63, 1) 100%); */
  /* box-shadow: 0 0 4px 2px rgba(64, 64, 64, 0.2); */
  border-radius: 10px;
  transition: 1s;
}

.btn-contact a:before{
  content: "\e904";
  font-family: "webicon";
  margin-right: .2em;
}

.btn-contact a:after{
  content: "";
  position: absolute;
  display: block;
  background-image: url(../images/icn_arrow_link_white.png);
  background-size: contain;
  width: 16px;
  height: 8px;
  right: 1em;
}


@media (min-width: 768px) {}
@media (max-width: 480px) {
  .btn-contact a{
      padding: .6em 3em .6em 1.8em;
  }
}