@font-face {
    font-family: 'AauxNext-Regular';
    src: url('../fonts/AauxNext-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'AauxNext-Bold';
    src: url('../fonts/AauxNext-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'AauxNext-Regular';
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url('../img/stone-bg.jpg') !important;
  }

a {
    text-decoration: none !important;
}


.acfd-button {
    font-family: 'AauxNext-Bold';
    display: inline-block;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.4;
    font-size: 35px;
    font-weight: 700;
    color: #fff!important;
    text-align: center;
    background: 0 0;
    position: relative;
    border: none;
    text-decoration: none !important;
    cursor: pointer;
    --ariens-btn__transition-duration: .3s;
    overflow: hidden
}

.acfd-button:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,#000,#000 50%,#ff5100 0,#ff5100);
    transition: var(--ariens-btn__transition-duration) ease;
    z-index: 1
}

.acfd-button:hover:before {
    right: -100%
}

@media (max-width: 767.98px) {
    .acfd-button {
        font-size:24px;
        padding: 10px;
        line-height: 1.2;
    }
}

.acfd-button .label {
    position: relative;
    z-index: 2;
    display: block;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1
}




.social-icons {
    color: #fff;
    transition: 0.2s ease-in-out;
    font-size: 1.8rem;
    padding: 0px 5px;
  }
  
  .social-icons:hover, .social-icons:focus {
    color: #ff5100;
    border-bottom: none;
  }

  .w-custom {
    width: 75%;
  }

  @media (min-width: 768px) {
    .w-custom {
      width: 25%;
    }
  }