.btn,
.form-submit,
.btn-secondary,
.btn-border {
  font-family: var(--main-font), sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 2rem 5rem;
  /*background-repeat: no-repeat;*/
  transition: all 600ms cubic-bezier(0.59, 0.06, 0.39, 0.91);
  color: white;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  background-position: unset;
  background-image: unset;
  border: none;
  cursor: pointer; }
  @media (max-width: 767px) {
    .btn,
    .form-submit,
    .btn-secondary,
    .btn-border {
      padding: 1rem 2.5rem;
      font-size: 1.6rem; } }
  .btn:before,
  .form-submit:before,
  .btn-secondary:before,
  .btn-border:before {
    content: "";
    position: absolute;
    background: radial-gradient(140% 50% at top, transparent 50%, var(--header-bg-color) 51%);
    height: 150%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    transition: all 600ms cubic-bezier(0.59, 0.06, 0.39, 0.91);
    opacity: 1;
    z-index: -1; }
  .btn:after,
  .form-submit:after,
  .btn-secondary:after,
  .btn-border:after {
    position: absolute;
    top: 93%;
    content: "";
    left: 50%;
    width: 120%;
    height: 15rem;
    background-color: var(--gold-color);
    border-radius: 0;
    transform: translateX(-50%) scale(1);
    transition: all 600ms cubic-bezier(0.59, 0.06, 0.39, 0.91), border-radius 600ms ease-in-out;
    z-index: -1; }
  .btn:hover:before, .btn:focus:before,
  .form-submit:hover:before,
  .form-submit:focus:before,
  .btn-secondary:hover:before,
  .btn-secondary:focus:before,
  .btn-border:hover:before,
  .btn-border:focus:before {
    opacity: 0;
    transform: translateY(50%); }
  .btn:hover:after, .btn:focus:after,
  .form-submit:hover:after,
  .form-submit:focus:after,
  .btn-secondary:hover:after,
  .btn-secondary:focus:after,
  .btn-border:hover:after,
  .btn-border:focus:after {
    top: -50%;
    border-radius: 100%;
    transform: translateX(-50%) scale(1.4); }

.btn-border {
  background-color: unset;
  border: var(--primary-color) solid 1px;
  color: var(--primary-color); }
  .btn-border:hover, .btn-border:focus {
    color: white; }

.arrow-link {
  color: var(--primary-color);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: solid 1px currentColor;
  font-weight: 300;
  font-size: 2rem;
  display: inline-block;
  text-decoration: none;
  transition: border-color 0.15s ease-in-out 0s; }
  .arrow-link::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    margin-right: 1rem; }
  .arrow-link:hover, .arrow-link:focus {
    border-color: transparent; }

.btn-down {
  height: 4rem;
  line-height: 4rem;
  width: 4rem;
  position: relative;
  text-indent: -999em;
  overflow: hidden;
  text-align: left;
  color: var(--header-bg-color);
  background-size: auto 24px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: background-color 0.15s ease-in-out 0s; }
  @media (max-width: 767px) {
    .btn-down {
      bottom: 1rem; } }
  .btn-down:before {
    content: '\f175';
    font-family: "Font Awesome 5 Pro";
    color: var(--header-bg-color);
    position: absolute;
    font-size: 3rem;
    font-weight: 300;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    text-indent: 0; }
  .btn-down:hover, .btn-down:focus {
    background-color: white; }

/*# sourceMappingURL=buttons.css.map */
