/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  :root {
    --primary: #5ea915;
    --primaryShade: #3d7f0d;
    --primaryDark: #111a08;
    --orange: #ff6a13;
    --accent: #ff6a13;
    --bodyText: #1a1a1a;
  }
  @font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(''), url('../fonts/BebasNeue-Regular.woff2') format('woff2'), url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  }
  body,
  html {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: 'Bebas Neue', Arial, sans-serif;
    color: var(--bodyText);
    overflow-x: hidden;
  }
  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    transition: background-color 0.3s;
  }
  .container {
    position: relative;
    width: 92%;
    margin: auto;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: #1a1a1a;
  }
  p,
  li,
  a {
    font-size: 1.25em;
    line-height: 1.5em;
    margin: 0;
  }
  p,
  li {
    color: #575757;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  .button-solid {
    font-size: 1em;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: auto;
    line-height: 3.125em;
    height: 3.125em;
    text-align: center;
    padding: 0 1.875em;
    position: relative;
    z-index: 1;
    background-color: var(--orange);
    color: #11130d;
    transition: color .3s;
    transition-delay: .1s;
    overflow: hidden;
  }
  .button-solid:hover {
    color: #11130d;
  }
  .button-solid:hover:before {
    width: 100%;
  }
  .button-solid:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    transition: width .3s;
  }
  .skip {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
  }
}
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    padding: 0;
    margin: 0;
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 2000px) {
  body,
  html {
    font-size: .85vw;
  }
}
/*-- -------------------------- -->
<---         Navigation         -->
<--- -------------------------- -*/
/* Mobile Nav Phone – hide on small screens */
@media only screen and (max-width: 1023px) {
  .nav-phone {
    display: none;
  }
}
/* Mobile - Top Drop Down */
@media only screen and (max-width: 1023px) {
  #navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    height: auto;
  }
  #navigation .background-color-div {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #11130d;
    width: 100%;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 16px;
  }
  #navigation .container {
    padding: 0.8125em 0;
    width: 92%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #navigation .logo {
    display: inline-block;
    height: 4.5em;
    width: auto;
    position: relative;
    z-index: 101;
  }
  #navigation .logo img {
    width: auto;
    height: 100%;
    display: block;
  }
  #navigation .hamburger-menu {
    position: relative;
    border: none;
    height: 3em;
    width: 3em;
    z-index: 100;
    display: block;
    background: transparent;
    padding: 0;
    transition: top .3s;
  }
  #navigation .hamburger-menu span {
    height: 2px;
    width: 1.875em;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    transition: background-color 0.3s;
  }
  #navigation .hamburger-menu span:before {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    width: 80%;
    background: #fff;
    opacity: 1;
    top: -6px;
    left: 0;
    transition: width .3s, left .3s, top .3s, transform .5s;
  }
  #navigation .hamburger-menu span:after {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    width: 80%;
    background: #fff;
    opacity: 1;
    top: 6px;
    left: 0;
    transition: width .3s, left .3s, top .3s, transform .3s;
  }
  #navigation .hamburger-menu.clicked span {
    background-color: transparent;
  }
  #navigation .hamburger-menu.clicked span:before {
    width: 100%;
    transform: translate(-50%, -50%) rotate(225deg);
    left: 50%;
    top: 50%;
  }
  #navigation .hamburger-menu.clicked span:after {
    width: 100%;
    transform: translate(-50%, -50%) rotate(-225deg);
    left: 50%;
    top: 50%;
  }
  #navigation #navbar-menu {
    position: fixed;
    right: 0;
    padding: 0;
    width: 100%;
    border-radius: 0 0 0.375em 0.375em;
    z-index: -1;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 24px;
    background-color: #11130d;
    top: 4.5em;
    padding-top: 0;
    height: 0;
    transition: height 0.3s, padding-top 0.3s, top 0.3s;
  }
  #navigation #navbar-menu ul {
    padding: 0;
    perspective: 700px;
  }
  #navigation #navbar-menu ul li {
    list-style: none;
    margin-bottom: 1.5em;
    text-align: center;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(-0.4375em) rotateX(90deg);
    transition: opacity .5s, transform .5s;
  }
  #navigation #navbar-menu ul li:nth-of-type(1) {
    transition-delay: .1s;
  }
  #navigation #navbar-menu ul li:nth-of-type(2) {
    transition-delay: .2s;
  }
  #navigation #navbar-menu ul li:nth-of-type(3) {
    transition-delay: .3s;
  }
  #navigation #navbar-menu ul li:nth-of-type(4) {
    transition-delay: .4s;
  }
  #navigation #navbar-menu ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #f8f7ef;
    font-size: 1.125em;
    letter-spacing: .08em;
    text-align: center;
    display: inline-block;
    position: relative;
    font-weight: 900;
  }
  #navigation #navbar-menu ul li a.active {
    color: var(--orange);
  }
  #navigation #navbar-menu.open {
    height: 21.25em;
    padding-top: 3em;
    z-index: -100;
  }
  #navigation #navbar-menu.open ul li {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}
/* Desktop */
@media only screen and (min-width: 64em) {
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375em rgba(0, 0, 0, 0.3);
    background-color: #fff;
  }
  ::-webkit-scrollbar-track-piece {
    background-color: #f0f0f0;
  }
  ::-webkit-scrollbar {
    width: 0.75em;
    background-color: #F5F5F5;
  }
  ::-webkit-scrollbar-thumb {
    border-radius: 0.625em;
    background: var(--orange);
  }
  body.scroll #navigation .background-color-div {
    opacity: 1;
    background: rgba(17, 19, 13, 0.95);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 7px 29px 0px;
  }
  #navigation {
    width: 100%;
    height: 6.375em;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200000;
    padding: 0;
    display: flex;
    align-items: center;
  }
  #navigation .background-color-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #11130d;
    opacity: 0;
    transition: opacity 0.3s, box-shadow 0.3s;
  }
  #navigation .container {
    max-width: 78.75em;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 92%;
  }
  #navigation .logo {
    margin-right: auto;
    height: 5em;
    width: auto;
    display: block;
  }
  #navigation .logo img {
    width: auto;
    height: 100%;
    display: block;
  }
  #navigation #navbar-menu ul {
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #navigation #navbar-menu ul li {
    list-style: none;
    margin-left: 2.25em;
    padding-top: 0.1875em;
  }
  #navigation #navbar-menu ul li a {
    text-decoration: none;
    font-weight: 900;
    font-size: 1em;
    line-height: 1em;
    letter-spacing: .1em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    color: rgba(248, 247, 239, 0.66);
    transition: color .3s;
  }
  #navigation #navbar-menu ul li a:before {
    content: '';
    position: absolute;
    display: block;
    height: 0.125em;
    border-radius: 0.1875em;
    background: var(--orange);
    opacity: 1;
    bottom: -0.5em;
    z-index: -1;
    left: 0;
    width: 0%;
    transition: width .3s;
  }
  #navigation #navbar-menu ul li a:hover {
    color: #fff;
  }
  #navigation #navbar-menu ul li a:hover:before {
    width: 100%;
  }
  #navigation #navbar-menu ul li a.active {
    color: #fff;
  }
  #navigation #navbar-menu ul li a.active:before {
    width: 100%;
  }
  #navigation .hamburger-menu {
    display: none;
  }
  .nav-phone {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.625em;
    text-decoration: none;
    font-weight: 900;
    font-size: 1em;
    color: #11130d;
    background-color: var(--orange);
    padding: 0 1.5em;
    height: 2.75em;
    line-height: 1em;
    margin-left: 2.25em;
    border-radius: 0.25em;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
  }
  .nav-phone img {
    width: 1.0625em;
    height: 1.0625em;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    filter: brightness(0);
  }
  .nav-phone:hover {
    background-color: #f8f7ef;
    color: #11130d;
  }
}
/*-- -------------------------- -->
<---   Interior Page Header     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #int-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    min-height: 30vh;
    padding-top: 3.125em;
  }
  #int-hero:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .7;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #int-hero picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
  }
  #int-hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #int-hero h1 {
    color: #fff;
    font-size: 2.4em;
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: 96%;
    max-width: 6.94444444em;
    margin-top: 0.97222222em;
    margin-bottom: 0.41666667em;
  }
  #int-hero p {
    color: #fff;
    text-align: center;
    max-width: 20em;
    margin: auto;
    margin-bottom: 1.5em;
    display: block;
    width: 96%;
    font-size: 1.25em;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #int-hero {
    font-size: 16px;
  }
  #int-hero h1 {
    font-size: 4.5em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #int-hero {
    min-height: 18.75em;
    height: auto;
    padding-top: 17.625em;
    padding-block-end: 6.25em;
    background-attachment: fixed;
    font-size: inherit;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #footer {
    background: #11130d;
    padding: 5em 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  #footer .container {
    width: 90%;
    max-width: 80em;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.125em;
  }
  #footer .footer-left .logo {
    display: inline-block;
    width: auto;
    height: 7.5em;
    margin-bottom: 1.375em;
  }
  #footer .footer-left .logo img {
    width: auto;
    height: 100%;
    display: block;
  }
  #footer .footer-left p {
    font-size: 1.0625em;
    line-height: 1.8em;
    color: rgba(248, 247, 239, 0.62);
    max-width: 20em;
    margin: 0;
  }
  #footer .footer-links h2,
  #footer .footer-contact h2 {
    font-size: 0.8125em;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 1.69230769em;
  }
  #footer .footer-links a,
  #footer .footer-contact a,
  #footer .footer-links span,
  #footer .footer-contact span {
    display: block;
    font-size: 1.0625em;
    line-height: 1.8em;
    color: rgba(248, 247, 239, 0.68);
    text-decoration: none;
    margin-bottom: 0.47058824em;
    transition: color .3s;
  }
  #footer .footer-links a:hover,
  #footer .footer-contact a:hover {
    color: var(--orange);
  }
  #footer .footer-contact .phone {
    font-size: 2.25em;
    font-weight: 900;
    line-height: 1em;
    color: #f8f7ef;
    margin-bottom: 0.5em;
  }
  #footer .footer-contact strong {
    display: block;
    margin-top: 1.125em;
    font-size: 0.9375em;
    font-weight: 900;
    text-transform: uppercase;
    color: #5ea915;
    letter-spacing: .06em;
  }
  #footer .bottom-bar {
    width: 90%;
    max-width: 80em;
    margin: 4.375em auto 0;
    padding: 1.625em 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-align: center;
  }
  #footer .bottom-bar span {
    font-size: 0.9375em;
    color: rgba(248, 247, 239, 0.55);
  }
  #footer .bottom-bar .owd-credit span {
    display: inline;
  }
  #footer .bottom-bar .owd-credit a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.26666667em;
  }
  #footer .bottom-bar .owd-credit a:hover {
    text-decoration: underline;
  }
}
/* Desktop */
@media only screen and (min-width: 64em) {
  #footer .container {
    grid-template-columns: 1.5fr .7fr .8fr;
    align-items: start;
    gap: 6.25em;
  }
  #footer .bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
/*-- -------------------------- -->
<---     Mobile Tap To Call     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #mobile-call-bar {
    font-size: 1.0625em;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #11130d;
    background: var(--orange);
    width: 100%;
    height: 3.41176471em;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 300000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.58823529em;
    border-top: 0.11764706em solid #11130d;
  }
  #mobile-call-bar img {
    width: 1.05882353em;
    height: 1.05882353em;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    filter: brightness(0);
  }
}
/* Desktop */
@media only screen and (min-width: 64em) {
  body {
    padding-bottom: 0;
  }
  #mobile-call-bar {
    display: none;
  }
}
/*-- -------------------------- -->
<---             CTA            -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #cta {
    background: #fff;
    padding: 4.75em 0;
    position: relative;
  }
  #cta .container {
    width: 92%;
    max-width: 56.25em;
    margin: auto;
    text-align: center;
  }
  #cta .topper {
    font-size: 0.8125em;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 1.07692308em;
  }
  #cta .title {
    font-size: 3em;
    font-weight: 900;
    line-height: 1em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 0.54166667em;
  }
  #cta .title span {
    color: var(--orange);
  }
  #cta p {
    font-size: 1.1875em;
    line-height: 1.6em;
    color: rgba(17, 17, 17, 0.78);
    max-width: 37.89473684em;
    margin: 0 auto 1.78947368em;
  }
  #cta .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
  #cta .button-solid,
  #cta .button-outline {
    width: 100%;
    max-width: 16.25em;
    height: 3.5em;
    border-radius: 0.25em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.625em;
    font-size: 1em;
    font-weight: 900;
    line-height: 1em;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .04em;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  }
  #cta .button-solid img,
  #cta .button-outline img {
    width: 1.25em;
    height: 1.25em;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }
  #cta .button-solid {
    background: var(--orange);
    color: #fff;
  }
  #cta .button-solid img {
    filter: brightness(0) invert(1);
  }
  #cta .button-solid:hover {
    background: #000 !important;
    color: #fff !important;
  }
  #cta .button-outline {
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.24);
    background: transparent;
  }
  #cta .button-outline img {
    filter: brightness(0);
  }
  #cta .button-outline:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
  }
  #cta .button-outline:hover img {
    filter: brightness(0) invert(1);
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #cta {
    padding: 6em 0;
  }
  #cta .title {
    font-size: 3.875em;
  }
  #cta .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  #cta .button-solid,
  #cta .button-outline {
    width: auto;
    min-width: 15em;
  }
}
