/*-- -------------------------- -->
<---       Services Hero        -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #services-hero {
    background: radial-gradient(circle at 82% 42%, rgba(255, 106, 19, 0.18) 0%, rgba(255, 106, 19, 0) 34%), linear-gradient(135deg, rgba(255, 106, 19, 0.08) 0 1px, transparent 1px 42px), linear-gradient(135deg, #11130d 0%, #12160f 42%, #241607 100%);
    padding: 6.875em 0 4.375em;
    position: relative;
    overflow: hidden;
  }
  #services-hero .container {
    width: 92%;
    max-width: 80em;
    margin: auto;
    position: relative;
  }
  #services-hero .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.76923077em;
    margin-bottom: 3.23076923em;
  }
  #services-hero .breadcrumbs a,
  #services-hero .breadcrumbs span {
    font-size: 0.8125em;
    line-height: 1em;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(248, 247, 239, 0.72);
  }
  #services-hero .breadcrumbs a[aria-current="page"] {
    color: var(--orange);
  }
  #services-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 38.75em;
  }
  #services-hero .eyebrow {
    font-size: 0.8125em;
    font-weight: 900;
    line-height: 1.2em;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid rgba(255, 106, 19, 0.45);
    border-radius: 0.23076923em;
    padding: 0.76923077em 1.07692308em;
    display: inline-flex;
    align-items: center;
    gap: 0.69230769em;
    margin-bottom: 2em;
    margin-top: 0.76923077em;
    background: rgba(255, 106, 19, 0.04);
  }
  #services-hero .eyebrow span {
    width: 0.38461538em;
    height: 0.38461538em;
    border-radius: 50%;
    background: #8bd114;
    display: block;
  }
  #services-hero h1 {
    font-size: 3.625em;
    font-weight: 900;
    line-height: .96em;
    letter-spacing: -0.03448276em;
    text-transform: uppercase;
    color: #f8f7ef;
    margin: 0 0 0.51724138em;
  }
  #services-hero h1 span {
    color: var(--orange);
    display: block;
  }
  #services-hero p {
    font-size: 1.125em;
    line-height: 1.75em;
    color: rgba(248, 247, 239, 0.78);
    max-width: 31.11111111em;
    margin: 0 0 1.66666667em;
  }
  #services-hero .button-solid {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.625em;
    height: 3.5em;
    line-height: 1em;
    border-radius: 0.25em;
    background: var(--orange);
    color: #11130d;
    box-shadow: 0 0.875em 1.75em rgba(255, 106, 19, 0.22);
  }
  #services-hero .button-solid img {
    width: 1.125em;
    height: 1.125em;
    object-fit: contain;
    flex-shrink: 0;
  }
  #services-hero .hero-image {
    width: 100%;
    height: 22.5em;
    display: block;
    margin-top: 2.875em;
    border-radius: 0.625em;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #services-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  #services-hero .hero-stat {
    background: var(--orange);
    color: #11130d;
    width: 9.375em;
    padding: 1.125em 1.25em;
    border-radius: 0.3125em;
    margin-top: -1.75em;
    margin-left: 1.125em;
    position: relative;
    z-index: 3;
    transform: rotate(-2deg);
    box-shadow: 0 1.125em 2.125em rgba(0, 0, 0, 0.28);
  }
  #services-hero .hero-stat strong {
    font-size: 1.75em;
    font-weight: 900;
    line-height: 1em;
    display: block;
  }
  #services-hero .hero-stat span {
    font-size: 0.6875em;
    font-weight: 900;
    line-height: 1.2em;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.54545455em;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #services-hero h1 {
    font-size: 4.375em;
  }
  #services-hero .hero-image {
    height: 27.5em;
  }
}
/* Desktop */
@media only screen and (min-width: 64em) {
  #services-hero {
    padding: 7.375em 0 4.5em;
  }
  #services-hero .container {
    display: grid;
    grid-template-columns: 1fr 34.5em;
    align-items: center;
    gap: 4.75em;
  }
  #services-hero .breadcrumbs {
    grid-column: -1;
    margin-bottom: -0.76923077em;
  }
  #services-hero .hero-content {
    max-width: 38.75em;
  }
  #services-hero h1 {
    font-size: 4.5em;
    max-width: 9.02777778em;
  }
  #services-hero .hero-image {
    margin: 0;
    height: 27.5em;
  }
  #services-hero .hero-stat {
    position: absolute;
    right: 25.875em;
    bottom: 3.375em;
    margin: 0;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #services-hero .container {
    max-width: 80em;
    grid-template-columns: 1fr 34.5em;
  }
  #services-hero h1 {
    font-size: 4.375em;
  }
  #services-hero .hero-stat {
    right: 25.875em;
    bottom: 3.375em;
  }
}
/*-- -------------------------- -->
<---       Service Cards        -->
<--- -------------------------- -*/
@media only screen and (min-width: 0em) {
  #service-cards {
    background: #0b0b0b;
    padding: 4.5em 0;
  }
  #service-cards .container {
    width: 92%;
    max-width: 80em;
    margin: auto;
  }
  #service-cards .topper {
    font-size: 0.8125em;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 1.07692308em;
  }
  #service-cards .title {
    font-size: 3em;
    font-weight: 900;
    line-height: 1em;
    text-transform: uppercase;
    color: #f8f7ef;
    margin-bottom: 0.875em;
  }
  #service-cards .title span {
    color: var(--orange);
  }
  #service-cards .cards {
    display: grid;
    gap: 1.125em;
  }
  #service-cards .card {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.375em;
    padding: 2.125em 1.875em;
    position: relative;
    overflow: hidden;
  }
  #service-cards .card .number {
    font-size: 3.25em;
    font-weight: 900;
    line-height: 1em;
    color: rgba(255, 106, 19, 0.12);
    position: absolute;
    top: 0.46153846em;
    right: 0.46153846em;
  }
  #service-cards .card img {
    width: 2.625em;
    height: 2.625em;
    object-fit: contain;
    display: block;
    margin-bottom: 2.125em;
  }
  #service-cards .card h3 {
    font-size: 1.625em;
    font-weight: 900;
    line-height: 1.1em;
    color: #f8f7ef;
    text-transform: uppercase;
    margin-bottom: 0.76923077em;
  }
  #service-cards .card p {
    font-size: 1.0625em;
    line-height: 1.6em;
    color: rgba(248, 247, 239, 0.68);
  }
}
@media only screen and (min-width: 64em) {
  #service-cards {
    padding: 6em 0;
  }
  #service-cards .title {
    font-size: 3.875em;
  }
  #service-cards .cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
  }
  #service-cards .card {
    min-height: 18.75em;
  }
}
/*-- -------------------------- -->
<---        Service Tabs        -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #service-tabs {
    background: #f2f0eb;
    padding: 4.375em 0;
  }
  #service-tabs .container {
    width: 92%;
    max-width: 80em;
    margin: auto;
  }
  #service-tabs .tab-nav {
    margin-bottom: 1.75em;
  }
  #service-tabs .nav-label {
    font-size: 0.8125em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 1.07692308em;
  }
  #service-tabs .tab-button {
    font-size: 0.875em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(17, 19, 13, 0.58);
    background: transparent;
    border: none;
    border-left: 1px solid rgba(17, 19, 13, 0.14);
    width: 100%;
    text-align: left;
    padding: 1.14285714em 1.28571429em;
    display: block;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  }
  #service-tabs .tab-button.active {
    color: #11130d;
    background: rgba(255, 106, 19, 0.08);
    border-left-color: var(--orange);
  }
  #service-tabs .tab-button:hover {
    color: #11130d;
  }
  #service-tabs .tabs-content {
    position: relative;
  }
  #service-tabs .service-panel {
    display: none;
    background: #191b16;
    border-radius: 0.375em;
    overflow: hidden;
    border-left: 0.25em solid var(--orange);
    box-shadow: 0 1.75em 4.375em rgba(0, 0, 0, 0.24);
  }
  #service-tabs .service-panel.active {
    display: block;
  }
  #service-tabs .service-panel.green {
    border-left-color: #65b51b;
  }
  #service-tabs .service-panel.green .service-number,
  #service-tabs .service-panel.green h3 {
    color: #65b51b;
  }
  #service-tabs .service-panel.green .included li:before {
    color: #65b51b;
  }
  #service-tabs .service-panel.green .steps li span {
    background: #65b51b;
  }
  #service-tabs .service-panel.green .panel-footer a {
    background: #65b51b;
  }
  #service-tabs .service-panel.yellow {
    border-left-color: #f6aa1c;
  }
  #service-tabs .service-panel.yellow .service-number,
  #service-tabs .service-panel.yellow h3 {
    color: #f6aa1c;
  }
  #service-tabs .service-panel.yellow .included li:before {
    color: #f6aa1c;
  }
  #service-tabs .service-panel.yellow .steps li span {
    background: #f6aa1c;
  }
  #service-tabs .service-panel.yellow .panel-footer a {
    background: #f6aa1c;
  }
  #service-tabs .panel-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  #service-tabs .service-image {
    width: 100%;
    height: 16.25em;
    display: block;
    position: relative;
    overflow: hidden;
  }
  #service-tabs .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  #service-tabs .service-copy,
  #service-tabs .included,
  #service-tabs .steps {
    padding: 2.125em 1.75em;
  }
  #service-tabs .service-number {
    font-size: 0.8125em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 1.23076923em;
  }
  #service-tabs h2 {
    font-size: 2.5em;
    font-weight: 900;
    line-height: 1em;
    text-transform: uppercase;
    color: #f8f7ef;
    margin-bottom: 0.55em;
  }
  #service-tabs p {
    font-size: 1.0625em;
    line-height: 1.75em;
    color: rgba(248, 247, 239, 0.72);
  }
  #service-tabs h3 {
    font-size: 0.8125em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.53846154em;
  }
  #service-tabs .included ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.875em;
  }
  #service-tabs .included li {
    font-size: 1em;
    font-weight: 700;
    line-height: 1.45em;
    color: #fff;
    display: grid;
    grid-template-columns: 1.125em 1fr;
    gap: 0.75em;
  }
  #service-tabs .included li:before {
    content: '✓';
    color: var(--orange);
    font-weight: 900;
  }
  #service-tabs .steps {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  #service-tabs .steps ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.875em;
  }
  #service-tabs .steps li {
    font-size: 1em;
    line-height: 1.45em;
    color: rgba(248, 247, 239, 0.72);
    display: grid;
    grid-template-columns: 1.625em 1fr;
    gap: 0.75em;
    align-items: center;
  }
  #service-tabs .steps li span {
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: var(--orange);
    color: #11130d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8125em;
    font-weight: 900;
  }
  #service-tabs .panel-footer {
    background: rgba(255, 106, 19, 0.1);
    border-top: 1px solid rgba(255, 106, 19, 0.18);
    padding: 1.5em 1.75em;
    display: flex;
    flex-direction: column;
    gap: 1.125em;
  }
  #service-tabs .panel-footer p {
    font-size: 1em;
    line-height: 1.5em;
    color: rgba(248, 247, 239, 0.72);
  }
  #service-tabs .panel-footer p strong {
    color: #fff;
  }
  #service-tabs .panel-footer a {
    font-size: 0.9375em;
    font-weight: 900;
    line-height: 1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #11130d;
    background: var(--orange);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.66666667em;
    width: 100%;
    height: 3.06666667em;
    border-radius: 0.26666667em;
  }
  #service-tabs .panel-footer a img {
    width: 3.2em;
    height: 3.2em;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    filter: brightness(0);
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #service-tabs .panel-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #service-tabs .panel-footer a {
    width: auto;
    min-width: 11.33333333em;
    padding: 0 1.6em;
  }
}
/* Desktop */
@media only screen and (min-width: 64em) {
  #service-tabs {
    padding: 5.625em 0;
  }
  #service-tabs .container {
    display: grid;
    grid-template-columns: 15em 1fr;
    gap: 2.25em;
    align-items: start;
  }
  #service-tabs .tab-nav {
    position: sticky;
    top: 6.875em;
    margin-bottom: 0;
  }
  #service-tabs .service-panel {
    min-height: 44.375em;
  }
  #service-tabs .panel-grid {
    grid-template-columns: 1fr 1.16fr;
  }
  #service-tabs .panel-grid.image-right .service-copy {
    order: 1;
  }
  #service-tabs .panel-grid.image-right .service-image {
    order: 2;
  }
  #service-tabs .panel-grid.image-right .included {
    order: 3;
  }
  #service-tabs .panel-grid.image-right .steps {
    order: 4;
  }
  #service-tabs .service-image {
    height: 20em;
  }
  #service-tabs .service-copy {
    min-height: 20em;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #service-tabs .included,
  #service-tabs .steps {
    padding-top: 2.25em;
    padding-bottom: 2.375em;
  }
  #service-tabs .steps {
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  #service-tabs h2 {
    font-size: 3em;
  }
  #service-tabs .panel-footer {
    padding: 1.75em 2.5em;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #service-tabs .container {
    max-width: 80em;
    grid-template-columns: 15em 1fr;
    gap: 2.25em;
  }
  #service-tabs .service-copy,
  #service-tabs .included,
  #service-tabs .steps {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
}
/*-- -------------------------- -->
<---        Field Work          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #field-work {
    background: #0b0b0b;
    padding: 4.5em 0;
  }
  #field-work .container {
    width: 92%;
    max-width: 80em;
    margin: auto;
  }
  #field-work .section-heading {
    text-align: center;
    max-width: 38.75em;
    margin: 0 auto 3em;
  }
  #field-work .topper {
    font-size: 0.8125em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 1.38461538em;
  }
  #field-work .title {
    font-size: 3em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: -0.02083333em;
    text-transform: uppercase;
    color: #f8f7ef;
    margin: 0 0 0.5em;
  }
  #field-work .title span {
    color: var(--orange);
  }
  #field-work .section-heading p {
    font-size: 1.0625em;
    line-height: 1.7em;
    color: rgba(248, 247, 239, 0.72);
    margin: 0 auto;
    max-width: 32.94117647em;
  }
  #field-work .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.125em;
  }
  #field-work .gallery-card {
    min-height: 15.625em;
    border-radius: 0.375em;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #181818;
  }
  #field-work .gallery-card:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 58%;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
  }
  #field-work .gallery-card picture {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0;
  }
  #field-work .gallery-card picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s;
  }
  #field-work .gallery-card:hover picture img {
    transform: scale(1.06);
  }
  #field-work .gallery-large {
    min-height: 23.75em;
  }
  #field-work .card-content {
    position: absolute;
    left: 1.125em;
    right: 1.125em;
    bottom: 1.125em;
    z-index: 2;
  }
  #field-work .tag {
    font-size: 0.6875em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #11130d;
    display: inline-flex;
    padding: 0.63636364em 0.81818182em;
    margin-bottom: 0.90909091em;
    border-radius: 0.18181818em;
  }
  #field-work .tag.orange {
    background: var(--orange);
  }
  #field-work .tag.green {
    background: #65b51b;
  }
  #field-work .tag.yellow {
    background: #f6aa1c;
  }
  #field-work h3 {
    font-size: 1.125em;
    font-weight: 900;
    line-height: 1.25em;
    color: #fff;
    margin: 0;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #field-work .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #field-work .gallery-large {
    grid-column: span 2;
  }
}
/* Desktop */
@media only screen and (min-width: 64em) {
  #field-work {
    padding: 5.75em 0;
  }
  #field-work .section-heading {
    margin-bottom: 3.375em;
  }
  #field-work .title {
    font-size: 3.875em;
  }
  #field-work .gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 14.5em 14.5em;
    gap: 1.125em;
  }
  #field-work .gallery-card {
    min-height: 0;
    height: 100%;
  }
  #field-work .gallery-large {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 0;
  }
  #field-work .card-content {
    left: 1.25em;
    right: 1.25em;
    bottom: 1.125em;
  }
  #field-work h3 {
    font-size: 1.25em;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #field-work .container {
    max-width: 80em;
  }
}
