/*
font-family: "Poppins", sans-serif;
font-family: "Quicksand", sans-serif;
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');

:root {
    --font-main: "Quicksand", sans-serif;
    --font-secondary: "Poppins", sans-serif;
    
    --color-main: #000000;
    --color-primary: #00204B;
    --color-dark-gray: #232325;
    --color-highlight: #7DAE24; /*Green*/
    --color-white: #ffffff;
   
    --fs-98: clamp(35px, 5.104vw, 98px);
    --fs-82: clamp(34px, 4.271vw, 82px);
    --fs-80: clamp(33px, 4.167vw, 80px);
    --fs-70: clamp(33px, 3.646vw, 70px);
    --fs-68: clamp(33px, 3.542vw, 68px);
    --fs-64: clamp(33px, 3.33vw, 64px);
    --fs-58: clamp(32.5px, 3.021vw, 58px);
    --fs-50: clamp(32px, 2.604vw, 50px);
    --fs-48: clamp(31.5px, 2.5vw, 48px);
    --fs-45: clamp(31px, 2.344vw, 45px);
    --fs-42: clamp(30px, 2.188vw, 42px);
    --fs-40: clamp(30px, 2.08vw, 40px);
    --fs-39: clamp(27px, 2.031vw, 39px);
    --fs-36: clamp(25px, 1.875vw, 36px);
    --fs-35: clamp(24.5px, 1.823vw, 35px);
    --fs-32: clamp(24px, 1.667vw, 32px);
    --fs-30: clamp(23.5px, 1.563vw, 30px);
    --fs-29: clamp(23px, 1.51vw, 29px);
    --fs-28: clamp(22.5px, 1.458vw, 28px);
    --fs-27: clamp(22px, 1.406vw, 27px);
    --fs-26: clamp(21.5px, 1.354vw, 26px);
    --fs-24: clamp(16px, 1.25vw, 24px);
    --fs-22: clamp(16px, 1.146vw, 22px);
    --fs-21: clamp(15px, 1.094vw, 21px);
    --fs-20: clamp(15px, 1.042vw, 20px);
    --fs-19: clamp(15px, 0.99vw, 19px);
    --fs-18: clamp(15px, 0.938vw, 18px);
    --fs-16: clamp(13px, 0.833vw, 16px);
}
html, body {
    position: relative;
    width: 100%;
    min-height: 100%;
    background-color: var(--color-white);
}
html {
    scroll-behavior: smooth;
}
.scroll-container {
  scroll-behavior: smooth;
}
body {
    font-family: var(--font-main);
    font-size: var(--fs-22);
    color: var(--color-main);
}

a { color: var(--color-highlight); text-decoration: none; }
a:focus, a:hover{ /*outline:none;*/ color:inherit; text-decoration: none;}
a, a:before, a:after, a img, input[type="submit"], button, a *{
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
img {
    max-width:100%;
    height: auto;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6  {
    margin: 0;
    font-family: var(--font-secondary);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1;
    margin-bottom: clamp(20px, 3.704vh, 40px);
}
.text-white h1,  .text-white h2,  .text-white h3,  .text-white h4,  .text-white h5,  .text-white h6, .text-white p, .text-white ul, .text-white a, .text-white .eyebrow,
.bg-black h1,  .bg-black h2,  .bg-black h3,  .bg-black h4,  .bg-black h5,  .bg-black h6, .bg-black p, .bg-black ul, .bg-black a, .bg-black .eyebrow {
    color: var(--color-white);
}
.text-main h1,  .text-main h2,  .text-main h3,  .text-main h4,  .text-main h5,  .text-main h6, .text-main p, .text-main a, .text-main a.eyebrow, .text-main ul, .text-main {
    color: var(--color-main);
}
.text-white .eyebrow:before {
    background: var(--color-white);
}
.text-white .eyebrow-yellow-box:before,
.eyebrow-yellow-box:before {
    background: var(--color-highlight);
}
h1, .h1  {
    font-size: var(--fs-98);
}
.h1 {
    font-size: var(--fs-70);
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong, .h1 strong, .h2 strong, .h3 strong, .h4 strong, .h5 strong, .h6 strong { 
    font-weight: 600; 
    color: var(--color-highlight);
}
.h2, h2 {
    font-size: var(--fs-64);
}
h3, .h3 { font-size: var(--fs-40); }
h4, .h4 { font-size:var(--fs-26); margin-bottom: 30px;}
.fs-18 {
    font-size: var(--fs-18);
    font-family: var(--font-main);
}
.fw-bold {
    font-weight: 700;
}
p, ul {
    margin-bottom: 32px;
    color: var(--color-main);
    font-size: var(--fs-24);
    line-height: 1.6;
}
p strong, p a {
    color: var(--color-highlight);
}
.bg-black {
    background-color: var(--color-main);
    color: var(--color-white);
}
.bg-light-green {
    background-color: var(--color-light-green);
}
.bg-highlight {
    background: var(--color-highlight)!important;
}
.color-highlight {
    color: var(--color-highlight)!important;
}
.color-light-yellow {
    color: #F1B72A!important;
}
.section-bg {
    position: absolute;
    top: 0; left: 0;  right: 0; bottom: 0;
    z-index: 1;
    opacity: .5;
    pointer-events: none;
}
section {
    padding-top: clamp(70px, 9.259vh, 100px);
    padding-bottom: clamp(60px, 7.407vh, 80px);
}

.container, .small.container, .big.container {
    width: 98%;
    max-width: 100%;
}
.d-flex.container, .d-flex.container-fluid{
    justify-content: space-between;
}
@media only screen and (min-width: 1300px) {
    .container {
        max-width: 1711px;
        width: 89.114583%;
    }
    .small.container {
        max-width: 979px;
        width: 50.989583%;
    }
    .big.container {
        max-width: 1865px;
        width: 97.135417%;
    }
}
@media only screen and (max-width: 1921px) {
    .container-fluid {
        max-width: 1920px;
        margin: 0 auto!important;
    }
}
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: clamp(8px, 0.833vw, 16px);
    min-width: clamp(290px, 17.083vw, 328px);
    padding: clamp(20px, 2.592vh, 28px) clamp(10px, 1.458vw, 28px);
    overflow: hidden;
    border: none;
    border-radius: 50px;
    background: var(--color-highlight);
    color: var(--color-white);
    font-size: var(--fs-18);
    font-weight: 700;
    line-height: 1;
    border: solid 1px transparent;
}

.bg-primary .button:hover, .button.btn--white {
    background: var(--color-white);
    color: var(--color-highlight);
}
.button:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.button:hover, .button.btn--white {
    background: var(--color-white);
    color: var(--color-highlight);
    border: solid 1px var(--color-highlight);
}
/* Arrow icons (default variant) */
.button:not(.btn--phone)::before,
.button:not(.btn--phone)::after,
.btn--black:after,
.btn--primary:after {
    content: '';
    display: block;
    height: 19px;
    background: transparent url('assets/images/icon-arrow.svg') no-repeat center center / contain;
}
.button.btn--white::before {
    background: transparent url('assets/images/icon-arrow-green.svg') no-repeat center center / contain;
}
.button.btn--transparent::after,
.button.btn--transparent-white::after,
.button:not(.btn--phone)::after, 
.button.btn--white::after {
    background: transparent url('assets/images/icon-arrow-green.svg') no-repeat center center / contain;
}

.button::before {
    left: 0;
    width: 25px;
}

.button::after {
    right: 0;
    width: 0;
    opacity: 0;
    transform: translateX(-80%);
}

.button:hover::before {
    width: 0;
    opacity: 0;
    transform: translateX(80%);
}

.button:hover::after {
    width: 25px;
    opacity: 1;
    transform: translateX(0);
}

/* Phone variant */
.btn--phone i {
    font-size: var(--fs-32);
}

/* Color variants */
.btn--black {
    background: var(--color-main);
}

.btn--primary {
    background: var(--color-primary);
}

.btn--black:hover, 
.button.btn--white:hover {
    background: var(--color-highlight);
    color: var(--color-white);
}
.btn--black:after,
.btn--primary:after, 
.button.btn--white:hover::after {
    background: transparent url('assets/images/icon-arrow.svg') no-repeat center center / contain!important;
}
.btn--primary:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn--primary:after {
    filter: brightness(0) saturate(100%) invert(11%) sepia(35%) saturate(1863%) hue-rotate(180deg) brightness(87%) contrast(105%);
}

.btn--transparent,
.btn--transparent-white {
    border: 1px solid var(--color-highlight);
    background: transparent;
}
.btn--transparent-white {
    border-color: var(--color-white);
}

.btn--transparent:hover,
.btn--transparent-white:hover {
    background: var(--color-white);
    color: var(--color-highlight);
}

/* These variants use the non-green arrow icon */
.button.btn--transparent::before,
.button.btn--black::before,
.button.btn--primary::before {
    content: '';
    background: transparent url('assets/images/icon-arrow.svg') no-repeat center center / contain;
}

.button.w-border {
    border: 1px solid var(--color-highlight);
}
.btns {
    display: flex;
    align-items: stretch;
    column-gap: clamp(10px, 1.25vw, 24px);
}
.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--color-highlight);
    font-size: var(--fs-18);
    font-weight: 700;
}

.read-more svg {
    height: 15px;
    margin-left: 19px;
}

.read-more svg path {
    stroke: var(--color-highlight);
}
.social {
    display: flex;
    align-items: center;
    gap: clamp(15px, 1.71875vw, 33px);
}
.social a {
    color: var(--color-highlight);
    font-size: var(--fs-24);
}

@media only screen and (max-width: 540px) {
    .button {
        min-width: 100%;
    }
}


.pagination {
    column-gap: 12px;
}
.pagination .page-numbers {
    color: var(--color-main);
    border: solid 1px var(--color-main);
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 2.656vw, 51px);
    aspect-ratio: 1/1;
}
.pagination .next, .pagination .prev {
    display: none;
}
.pagination a.page-numbers:hover, .pagination .page-numbers.current {
    background: var(--color-highlight);
    color: var(--color-white);
}
.object-fit-cover {
    object-fit: cover;
    object-position: center center;
}
.object-fit-contain {
    object-fit: contain;
    object-position: center center;
}
.eyebrow {
    margin-bottom: 10px;
    position: relative;
    font-size: var(--fs-24);
    line-height: 1.6;
    display: flex;
    align-items: center;
    color: var(--color-main);
    column-gap: clamp(5px, 0.521vw, 10px);
    text-transform: capitalize;
}
.text-center .eyebrow, .eyebrow--center {
    justify-content: center;
}
.eyebrow:before {
    content: '';
    width: clamp(13px, 0.833vw, 16px);
    height: clamp(13px, 0.833vw, 16px);
    background: var(--color-highlight);
    aspect-ratio: 1/1;
    display: block;
}
.text-center .eyebrow {
    justify-content: center;
}
@media only screen and (min-width: 991px) { 
    .border-line { border: solid 1px rgba(255, 255, 255, .1); }
    .border-line-left { border-left: solid 1px rgba(255, 255, 255, .1); }
    .border-line-right { border-right: solid 1px rgba(255, 255, 255, .1); }
    .border-line-bottom { border-bottom: solid 1px rgba(255, 255, 255, .1); }
    .border-line-top { border-top: solid 1px rgba(255, 255, 255, .1); }

    .text-lg-left .eyebrow {
        justify-content: flex-start;
    }
}
@media only screen and (min-width: 769px) {
    .text-md-left .eyebrow {
        justify-content: flex-start;
    }
}

.position-relative { z-index:2; }
.slick-dots {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 19px;
    margin-bottom: 15px;
    margin-top: 20px;
}
.slick-dots li button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #C6C7CA;
    border: none;
    padding: 0;
    text-indent: -9999px; /* hides any text */
}
.slick-dots li.slick-active button {
    background: var(--color-highlight);
}
.slick-arrow {
    aspect-ratio: 1/1;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-arrow svg path {
    stroke: var(--color-main);
}
.slick-arrow:hover svg path {
    stroke: var(--color-highlight);
}
.slick-prev {
    transform: scaleX(-1);
}

/* Desktop */
@media only screen and (min-width: 992px) {
    .custom-dots {
        display: flex;
        justify-content: center;
        gap: 0;
    }
    .custom-dots li button {
        width: 5px;
        height: 3px;
        background-color: var(--color-main);
        cursor: pointer;
        transition: background 0.3s ease;
        border-radius: 100%;
        padding: 0; /* avoid size shift */
    }

    .custom-dots li.slick-active button {
        background-color: var(--color-highlight);
    }
    .custom-dots li {
        flex-grow: 1;
    }

    .custom-dots li button {
        width: 100%;
        height: 3px;
/*        background-color: var(--color-main);*/
        border-radius: 0;
    }

    .custom-dots li.slick-active button {
        background-color: var(--color-highlight);
    }
}

/*END GENERAL*/

/*HEADER*/
.header {
    background: var(--color-primary);
	padding: 23px 0;
	z-index: 101;
}
.header.header-new {

}
.top-header-info {
    margin-bottom: clamp(15px, 2.593vh, 28px);
}
.header-bottom-nav {
    margin-top: 21px;
    padding: clamp(10px, 2.407vh, 26px) 0;
    text-align: center;
}
.header-bottom-nav {
    opacity: 0;
    visibility: hidden;
    max-height: clamp(20px, 4.537vh, 49px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header-bottom-nav ul li {
    line-height: 1;
}
.header-bottom-nav ul li a {
    line-height: 1;
    font-size: clamp(10px, 0.781vw, 15px)!important;
}
.logo {
    width: 100%;
    max-width: clamp(198px, 27.24vw, 523px);
    flex: 0 0 auto;
}
.logo svg, .logo img {
    width: 100%;
}
.logo-text {
	font-size: clamp(14px, 1.198vw, 23px); 
	font-weight: 700; 
	text-align: center;
	margin-top: clamp(10px, 1.852vh, 20px);
}
.logo:hover {
    opacity: .8;
}
.navigation {  }
.navigation ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
}
.navigation ul li {
    display: inline-block;
    margin-right: 15px;
}
.navigation ul li.button a:hover {
    color: var(--color-white);
}
.navigation ul li:last-child {
    margin-right: 0;
}
.navigation ul li a, .footer-nav ul li a {
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: var(--fs-18);  
    position: relative;
    font-weight: 500;
    text-decoration: none;
    line-height: 1;
}
.navigation ul li a:before {
/*    content: '';*/
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    width: 0;
    border-top: solid 1px var(--color-highlight);
    margin: 0 auto; 
}
#menu-counties-and-cities-served li a {
    pointer-events: none;
}
.menu-item-has-children:after {
/*    content: "\f0d7";*/
    font-family: var(--fa-font-solid); 
    font-weight: 700;
    color: var(--color-main);
    display: inline-block;
    transform: scaleY(1);
    transition: transform 0.3s ease;
}
.menu-item-has-children:hover:after {
    color: var(--color-highlight);
    transform: scaleY(-1);
}
.menu-item-has-children {
    position: relative;
}
.navigation ul li a:hover {
    color: var(--color-highlight);
}
.navigation ul li.current-menu-item a:before,
.navigation ul li:hover > a:before {
/*    width: 100%;*/
    z-index: 2;
}
.navigation ul li ul.sub-menu {
    position: absolute;
    padding-top: 5px;
    transition: .15s linear;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    z-index: 1;
    padding-top: 10px;
    z-index: 999;
    display: block;
    text-align: left ;
}

.navigation ul li ul.sub-menu.two-columns {
    display: flex;               
    flex-wrap: wrap;             
    width: auto;                 
    min-width: 600px;            
    gap: 0;
}


.navigation ul li ul.sub-menu.two-columns li {
    width: 50%;                  
    display: block;
}

.navigation ul li ul.sub-menu.two-columns li a {
    width: 100%;                 
}



/*last-child*/
.navigation ul li#menu-item-73 ul.sub-menu {
    left: auto!important;
    right: 0!important;
    transform: translateY(0) translateX(-150%)!important;
}
.navigation ul li:hover > ul.sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0px);
}
.navigation ul li ul.sub-menu li {
    display: block;
    margin: 0;
}
.navigation ul li ul.sub-menu li a {
    display: block;
    border-bottom: none;
    text-transform: capitalize;
    padding: 5px 15px;
    transition: .3s linear;
    background: rgba(33, 33, 33, 0.9);
    color: var(--color-white);
    letter-spacing: unset;
    font-size: var(--fs-16);
    font-weight: 500;
    line-height: 1;
    padding: 20px;
    position: relative;
/*    width: 256px;*/
/*    max-width: 90vw;*/
    width: 13vw;
    border-bottom: solid 1px var(--color-white);
    letter-spacing: unset;
}
.navigation ul li ul.sub-menu li a:hover {
    background: var(--color-highlight);
    color: var(--color-white);
}
@media only screen and (min-width: 1400px) {
    .navigation ul li {
        margin-right: clamp(10px, 2.604vw, 50px);
    }
    .header-bottom-nav .navigation ul {
        column-gap: clamp(10px, 1.979vw, 38px);
        justify-content: space-between;
        width: 100%;
    }
    .header-bottom-nav .navigation ul li {
/*        margin-right: clamp(10px, 3.073vw, 59px);*/
        margin-right: clamp(10px, 2.24vw, 43px);
        margin-right: 0;
        text-align: left;
    }
    .header-bottom-nav .navigation ul li:last-child {
        margin-right: 0;
    }
}
@media only screen and (max-width: 991px) {
    .header {
        padding: 20px 15px;
    }
    .header .container {
        width: 100%!important;
        padding: 0;
    }
}
/*END HEADER*/

/*FOOTER*/
.footer {
    background: var(--color-primary) !important;
    color: var(--color-white);
    text-align: center;
    padding-top: clamp(45px, 5.74vh, 62px);
}
.footer .footer-row {
    margin-bottom: clamp(30px, 4.167vh, 45px);
}
@media only screen and (min-width: 769px) {
    .footer {
        text-align: left;
    }
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (min-width: 769px) {
    .footer-row {
        flex-direction: row;
        margin-left: 0;
        margin-right: 0;
    }
}

.footer-item-logo {
    width: 100%;
    max-width: 383px;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.6vw, 50px);
    align-items: flex-start;
/*     padding-top: clamp(20px, 4.72vh, 51px); */
}

.footer-text {
    margin-bottom: 0;
    color: #87878A;
}

.footer .social a {
    color: var(--color-highlight);
}
.footer .social a:hover {
    color: var(--color-highlight);
}
.footer-item-web-info {
    max-width: 206px;
}
@media only screen and (max-width: 768px) {
    .footer-item-web-info {
        padding: 20px 0 0;
    }
}

.footer-item__heading {
    color: var(--color-highlight);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: clamp(20px, 2.68vh, 29px);
    width: 100%;
    font-size: var(--fs-18);
    max-width: 15ch;
}
.footer-item ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}
.footer-item ul li {
    margin-bottom: 15px;
    line-height: 1.2;
}
.footer-item ul li a {
    color: var(--color-white);
    font-size: var(--fs-18);
}

.footer-additional-services {
    column-gap: 2.083vw;
}
@media only screen and (min-width: 769px) {
    .footer-additional-services {
        display: flex;
    }
}

.services-fall a,
.services-spring a {
    pointer-events: none;
}

/* Reach Us column */
.footer .phone,
.footer .email {
    display: block;
    font-size: var(--fs-18);
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 15px;
}
.footer .email-us-link {
    font-size: 14px;
    font-weight: 700;
}
.footer address {
    font-size: var(--fs-18);
}
@media only screen and (max-width: 768px) {
    .footer .phone,
    .footer .email {
        padding-bottom: 20px;
    }
}

.footer .email-us-link {
    display: block;
    color: var(--color-highlight);
}
.footer .email-us-link:hover {
    text-decoration: underline;
}

.footer a:hover {
    color: var(--color-highlight);
}

.footer__bottom {
    padding: 42px 0 30px;
    border-top: solid 1px rgba(255, 255, 255, .1);
}

.footer__bottom-inner {
    text-align: center;
}
@media only screen and (min-width: 576px) {
    .footer__bottom-inner {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.lfs {
    display: none;
}

.footer__bottom,
.footer__bottom ul li a,
.lfs a,
.copy a {
    color: #5C5C5D;
    font-size: 15px;
    font-family: var(--font-main);
    font-weight: 400;
    letter-spacing: -.025em;
    p
}

.footer__bottom ul {
    text-align: center;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    color: #87878A;
    line-height: 1;
    padding-left: 6px;
}
@media only screen and (min-width: 576px) {
    .footer__bottom ul {
        justify-content: center;
    }
}
.footer__bottom ul li:after {
    content: '|';
    color: #87878A;
    padding: 0 6px;
    font-size: 15px;
}
.footer__bottom ul li:last-child::after {
    display: none;
}

@media only screen and (min-width: 1200px) {
    .footer-item-logo {
        max-width: clamp(300px, 26.146vw, 502px);
    }
}
@media only screen and (max-width: 1200px) {
    .footer .footer-row {
        flex-wrap: wrap;
    }
    .footer-item-logo {
        max-width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        padding: 0;
    }
}
@media only screen and (max-width: 768px) {
    .footer .footer-row {
        flex-direction: column;
        text-align: center;
    }
    .footer-item-web-info, .footer-item__heading {
        max-width: 100%;
    }
    .footer__bottom ul {
        justify-content: center;
    }
}

/*HOMEPAGE*/
#home-banner {
    height: 100%;
    padding:  clamp(100px, 12.5925vh, 136px) 0 clamp(80px, 11.01vh, 119px);
/*    padding: clamp(171px, 16.389vh, 177px) 0;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}
.banner:after, .banner:before {
    content: '';
    position: absolute;
    inset: 0;
}
#home-banner h1 {
    font-size: var(--fs-70);
}
#home-banner p {
    font-size: var(--fs-24);
}
.home-banner__content {
    max-width: clamp(400px, 31.25vw, 600px);
    width: 100%;
}
#home-banner .col-btn {
    margin-top: clamp(20px, 3.704vh, 40px);
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 1.875vw, 36px);
    align-items: flex-start;
}
#home-banner {
    position: relative;
    z-index: 2;
    height: auto;
    padding: clamp(60px, 8vh, 100px) 0;
    background: var(--color-white);
}
 
#home-banner:after,
#home-banner:before {
    content: none;
}
#home-banner .btn--primary:hover {
    background: var(--color-highlight);
    color: var(--color-white);
    border-color: transparent;
}
#home-banner .btn--primary:hover::after {
    filter: unset;
}
 
.home-banner__row {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
} 
#home-banner .hero-subheading {
    color: var(--color-main);
    font-size: var(--fs-18);
    margin-bottom: 0;
}
 
#home-banner .col-btn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(15px, 1.875vw, 36px);
    margin-top: clamp(20px, 3.704vh, 40px);
}
.hero-image-wrapper img {
    object-fit: cover;
    object-position: center center;
}
.hero-image-wrapper img {
    width: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
    object-fit: cover;
    height: 100%;
}
 
 @media only screen and (max-width: 991px) {
    .hero-image-wrapper img {
        object-position: 70% center; 
    }
    .home-banner__row {
        grid-template-columns: 1fr;
    }
    .hero-image-wrapper {
        margin-top: 32px;
    }
}
 @media only screen and (max-width: 768px) {
    #home-banner h1 {
        font-size: 43px;
    }
    #home-banner {
        padding-bottom: 300px;
    }
    .hero-image-wrapper img{
        min-height: 300px;
        max-height: 300px;
        margin-top: auto;
        object-position: right center ;
    }
    .home-banner__content {
        max-width: 100%;
    }
}
/* ============================================================
   PAGE BANNER
   ============================================================ */
#page-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(200px, 26vw, 304px);
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#page-banner .container {
    position: relative;
    z-index: 2;
}

#page-banner .h1 {
    margin: 0;
    font-weight: 600;
    font-size: var(--fs-64);
    line-height: 1.2;
    color: var(--color-white);
}

@media only screen and (min-width: 500px) {
    #home-banner {
/*        height: 100vh;*/
    }
}

section.content-row {
    padding-top: clamp(70px, 9.259vh, 100px);
    padding-bottom: clamp(70px, 9.259vh, 100px);
}
.content-row-bg-slider {
    z-index: -1;
    opacity: .3;
}
section h2 em {
    color: var(--color-highlight);
    font-style: normal;
}
section.content-row p {
    margin: 0 auto clamp(20px, 3.704vh, 40px);
}
.button-row {
    justify-content: center;
    gap: clamp(20px, 3.704vh, 40px);
}
.text-content-wrapper {
    max-width: 70ch;
    margin: 0 auto;
}


.twi-item {
    margin-bottom: clamp(50px, 11.111vh, 120px);
    column-gap: 52px;
    max-width: 100%;
}
.twi-item h2 {
	font-size: var(--fs-42);
}
.twi-item h3 {
	font-size: var(--fs-35);
}
.twi-item:last-child {
    margin-bottom: 0;
}
.twi-img img {
    object-fit: cover;
}
.twi-img .twi-img--large-wrapper {
    padding-right: clamp(30px, 5.313vw, 102px);
    padding-bottom: clamp(20px, 5vh, 54px);
}
.twi-img .twi-img--small {
    position: absolute;
    bottom: 0;
    right: 0;
    border: solid var(--color-white) clamp(5px, 0.729vw, 14px);
    z-index: 2;
    pointer-events: none;
} 
.twi-img .twi-img--large {
    height: max-content;
    position: relative;
    border-bottom: solid clamp(3px, 0.741vh, 8px) var(--color-highlight);
	min-height: 187px;
}
.twi-img .twi-img--small {
    aspect-ratio: 1/1;
    max-width: clamp(133px, 18.438vw, 354px);
    max-height: clamp(133px, 18.438vw, 354px);
}
.twi-no-small-img .twi-img--large-wrapper {
    padding: 0;
}

.twi-item ul {
    list-style-type: '✅';
    padding-left: 20px;
    margin-bottom: 40px;
}
.twi-item ul li {
    padding-left: 9px;
}


@media only screen and (min-width: 768px) {
    .twi-img {
        max-width: clamp(400px, 54.427vw, 1045px);
    }
    .twi-no-small-img {
        max-width: clamp(400px, 56.094vw, 1077px);
    }
    body.single .twi-no-small-img {
        max-width: clamp(400px, 41.927vw, 805px);
        align-self: flex-start;
    } 
    body.home .twi-item {
        flex-direction: row-reverse;
    }
    body.home .twi-item.twi-item__even {
        flex-direction: row!important;
    }

}

section.testimonial, section.testimonial p, .testimonial-item p {
    font-size: var(--fs-18);
}
.testimonial-slide:nth-child(even) .testimonial-item {
    background: var(--color-highlight);
}
.testimonial-item {
/*    padding: clamp(30px, 5vh, 54px) clamp(15px, 2.76vw, 53px) clamp(30px, 5.648vh, 61px);*/
    padding: clamp(30px, 5vh, 54px) clamp(30px, 2.448vw, 47px) clamp(30px, 5.648vh, 61px);
    min-height: 448px;
}
.testimonial-item p {
    line-height: 1.5;
    margin-bottom: clamp(15px, 2.963vh, 32px);
}
.icon-quote {
    margin-bottom: clamp(20px, 3.333vh, 36px);
}
.bg-highlight .icon-stars path {
    fill: var(--color-white);
}
.bg-primary {
    background: var(--color-primary)!important;
    color: var(--color-white);
}
.testimonial-item .author {
    text-transform: uppercase;
    font-weight: 600;
}
.link-icon {
    width: clamp(40px, 02.969vw, 57px);
    height: clamp(40px, 02.969vw, 57px);
    aspect-ratio: 1/1;
    padding: clamp(5px, 0.781vw, 15px);
    border-radius: 100%;
    background: var(--color-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    section.testimonial, section.testimonial p, .testimonial-item p {
        font-size: 18px;
    }
}

section.booklets {
    overflow: hidden;
}
section.booklets .booklet-content ul {
    list-style-type: none;
    padding-left: 0;
}
section.booklets .booklet-content ul li {
    border-bottom: solid 1px rgba(33, 33, 33, .20);
    padding-bottom: clamp(10px, 2vh, 20px);
    margin-bottom: clamp(10px, 2vh, 20px);
    display: flex;
    font-weight: 700;
    font-size: clamp(16px, 1.25vw, 24px);
    align-items: center;
}
section.booklets .booklet-content ul li:before {
    content: url(assets/images/svg/icon-double-check.svg);
    background: var(--color-highlight);
    border-radius: 100%;
    width: clamp(40px, 2.969vw, 57px);
    height: clamp(40px, 2.969vw, 57px);
    aspect-ratio: 1/1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: clamp(10px, 1.094vw, 21px);
}
section.booklets .link-icon {
    transform: rotate(90deg);
}
section.booklets .booklet-item {
    display: block;
}

.booklet-item img {
/*    max-width: max-content;*/
}
.booklet-title {
    margin-top: clamp(25px, 3.148vh, 34px);
}
section.booklets .slider-slick-dot-arrow {
    padding-right: clamp(15px, 6.354vw, 122px);
}

@media only screen and (min-width: 767px) {
    section.booklets .booklet-item {
        padding-left: clamp(10px, 1.771vw, 34px);
    }
}
@media only screen and (min-width: 991px) {
    section.booklets {
/*        padding-left: calc((100% - 1706px) / 2);*/
        padding-left: clamp(15px, 5.573vw, 107px);
    }
}
@media only screen and (max-width: 991px) {
    .link-icon-arrow {
        width: clamp(40px, 02.969vw, 57px);
        height: clamp(40px, 02.969vw, 57px);
        aspect-ratio: 1/1;
        border-radius: 100%;
        background: #EEEEEE;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .link-icon-arrow:hover {
        background: var(--color-main);
    }
    .link-icon-arrow svg {
        padding: 4px;
    }
    .link-icon-arrow:hover svg path {
        stroke: var(--color-white);
    }
}
.services .tabs {
    text-align: center;
    margin-bottom: clamp(20px, 1.953vw, 37.5px);
    margin-top: clamp(20px, 1.953vw, 37.5px);
}
.services .col-lg-4 {
    padding: 0 5.5px;
}
.main-toggle button {
    cursor: pointer;
    pointer-events: auto;
}
.tab-button {
    padding: 10px clamp(15px, 1.563vw, 30px);
    background: transparent;
    border: 1px solid var(--color-main);
    color: var(--color-main);
    font-size: var(--fs-20);
    font-weight: 700;
    cursor: pointer;
    margin: clamp(8px, 0.651vw, 12.5px);
}
.tab-button.active {
    background-color: var(--color-highlight);
    color: var(--color-white);
}
.tab-button:hover {
    background: var(--color-highlight);
}
.tab-panel[hidden] {
    display: none;
}
.main-section {
    display: none;
}
.main-section.active {
    display: block;
}
.toggle-btn.active {
    background: #000;
    color: #fff;
}
.tab-panel {
    max-width: 1124px;
    margin: 0 auto;
    align-items: stretch;
}
.tab-panel__item {
    margin-bottom: clamp(25px, 3.981vh, 43px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 100%;
}
.tab-panel__item a.h3 .link-icon {
    border: solid 1px transparent; 
    transition: .3s ease-out;
}

.tab-panel__item a.h3:hover .link-icon {
    border: solid 1px var(--color-white); 
}

.tab-panel__item-img {
    transition: all 0.4s ease;
    max-height: 300px; 
    max-width: 300px;
    overflow: hidden;
    margin: 0 auto ;
}
.tab-panel__item-img img {
    overflow: hidden;
/*    max-width: 300px;*/
    max-height: 300px;
    aspect-ratio: 1/1;
    border-radius: 100%;
/*    overflow: hidden;*/
    display: block;
    margin: 0 auto;
    object-fit: cover;
/*    padding: 18px clamp(10px, 1.667vw, 32px) clamp(25px, 4.537vh, 49px);*/
/*    padding: 18px clamp(10px, 1.667vw, 32px);*/
}
.tab-panel__item:hover .tab-panel__item-img img {
    max-height: 157px;
    max-width: 157px;
    min-height: 157px;
    object-fit: cover;
}
.tab-panel__item .bg-black {
    padding: 17px 31px;
    min-height: 94px;
    max-height: 94px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.tab-panel__item:hover .bg-black {
/*    max-height: clamp(120px, 22.5vh, 225px); */
    max-height: clamp(220px, 30.463vh, 300px);
    height: 100%;
}
.tab-panel__item:hover .bg-black .tab-panel__item-excerpt {
    overflow-y: scroll;
}
.tab-panel__item-title {
    column-gap: 25px;
    align-items: center;
}

.tab-panel__item-excerpt,
.tab-panel__item-excerpt p {
    opacity: 0;
    transform: translateY(100%);
    margin-bottom: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.tab-panel__item-excerpt p {
    display: -webkit-box;        
    -webkit-line-clamp: 3;       
    -webkit-box-orient: vertical;
    overflow: hidden;            
    text-overflow: ellipsis;     
    
}
.tab-panel__item:hover .tab-panel__item-excerpt p,
.tab-panel__item:hover .tab-panel__item-excerpt {
    transform: translateY(0);
    opacity: 1;
}
ul.tab-panel__item-excerpt {
    padding-left: 20px;
}
.tab-panel__item-excerpt p, .tab-panel__item-excerpt, .tab-panel__item-excerpt ul {
    font-size: var(--fs-16);
}
.tab-panel__item-excerpt ul {
    padding-left: 10px;
}
.placeholder-checkered {
    position: relative;
}
.tab-panel__item-excerpt-info {
    max-height: 108px;
    overflow: hidden;
    position: relative;
    margin-top: 15px;
    margin-bottom: 10px;
}
.read-more-link:hover {
    color: var(--color-highlight);
}

@media only screen and (max-width: 991px) {
    .tab-panel__item {
/*        align-items: center;*/
    }
    .tab-panel__item .bg-black {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .tab-panel__item-excerpt p {
        -webkit-line-clamp: 2; 
    }
    body.home .services .col-lg-4 {
        display: none;
    }
    body.home .services .col-lg-4:first-child {
        display: block;
    }
}
@media only screen and (max-width: 500px) {
	.services .tabs {
		padding: 0 10px;
	}
	.tab-button {
		width: 100%;
		margin: 0 auto 22px;
	}
}

.blog-item p {
    font-size: var(--fs-18);
    margin-bottom: 0;
}
.blog-item__img {
    background-image: linear-gradient(180deg, #212121 0%, rgba(33, 33, 33, 0) 342.39%);
}
.blog-item hr {
    border-top: .5px solid rgba(0,0,0,.1);
    margin: 15px 0 ;
}

body.single section p {
    font-size: var(--fs-18);
}

.why-us-item h4, .process-item h4 {
    font-size: var(--fs-26);
}
.why-us-item {
/*    max-width: 381px;*/
    margin: 0 auto;
    padding: 0 clamp(10px, 1.302vw, 25px);
}
.why-us-list .col-lg-3:first-child p {
    max-width: 22ch; 
    margin-left: auto;
    margin-right: auto;
}
.why-us-item__icon {
    margin-bottom: clamp(50px, 10.7vh, 107px);
	min-height: 200px;
}


.sizes-section {
    text-align: center;
}
.sizes-section h2 {
    margin-bottom: clamp(30px, 8.426vh, 91px);
}
.sizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3.28125vw, 63px);
    margin-bottom: 38px;
}

.size-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.size-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #d9d9d9;
}
.size-card__image img {
    width: 100%;
}

.size-card__body {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 13px clamp(15px, 1.71875vw, 33px) 31px;
    position: relative;
    flex: 1;
}
.size-card__body:hover {
/*     background: var(--color-highlight); */
}

.size-card__body h3 {
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: 8px;
}
.size-card__body h3 span {
    color: var(--color-highlight);
}
.size-card__body ul,
.size-card__body p {
    font-size: var(--fs-16);
    line-height: 1.6;
    color: var(--color-white);
}
.size-card__body ul {
	padding-left: 20px;
    margin-bottom: 0;
    max-width: 34ch;
}
.size-card__body ul ul {
    padding-left: 20px;
    list-style-type: disc;
}

.size-card__arrow {
    position: absolute;
    bottom: 31px;
    right: clamp(15px, 1.71875vw, 33px);
    width: clamp(35px, 2.97vw, 57px);
    height: clamp(35px, 2.97vw, 57px);
    border-radius: 50%;
    background: var(--color-highlight);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    padding: clamp(10px, 1.042vw, 20px);
    border: solid 1px transparent;
}
.size-card__body:hover .size-card__arrow {
    border-color: rgba(255, 255, 255, .50);
    background: var(--color-white);
}
.size-card__body:hover .size-card__arrow svg path {
	stroke: var(--color-primary);
}

/* ===== Order In Minutes Section ===== */
.order-section {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 70px 0;
    text-align: center;
}

.order-section h2 {
    font-size: var(--fs-40);
    margin-bottom: 60px;
}

.order-section h2 span {
    color: var(--color-highlight);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    margin-bottom: 50px;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 16.6%;
    right: 16.6%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 280px;
}

.step .phone {
    display: block;
    margin-top: 6px;
    font-weight: 700;
    color: var(--color-white);
}

.order-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media only screen and (max-width: 900px) {
    .sizes-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid::before {
        display: none;
    }
}

@media only screen and (max-width: 540px) {
    .order-actions {
        flex-direction: column;
        align-items: center;
    }

    .order-actions .btn,
    .order-actions .button {
        width: 100%;
        max-width: 320px;
    }
}


/* ============================================================
   BULK MATERIAL PRICING
   ============================================================ */
.bulk-pricing {
    padding: clamp(60px, 8vh, 100px) 0;
    text-align: center;
}

.bulk-pricing__content {
/*     max-width: 66ch; */
    margin: 0 auto clamp(40px, 5vh, 56px);
	text-align: left;
}

.bulk-pricing__content h2 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-64);
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0 0 16px;
}

.bulk-pricing__content h2 strong,
.bulk-pricing__content h2 em {
    font-weight: 600;
    font-style: normal;
    color: var(--color-highlight);
}

.bulk-pricing__content p {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: var(--fs-18);
    line-height: 1.6;
    color: var(--color-primary);
/*     margin: 0; */
}

.bulk-pricing__table-wrap {
    max-width: 900px;
    margin: 0 auto clamp(40px, 5vh, 56px);
    text-align: left;
}

.bulk-pricing__table-wrap .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: var(--fs-24);
    line-height: 1.6;
    color: var(--color-primary);
}

.bulk-pricing__table-wrap .eyebrow::before {
    content: '';
    width: 16px;
    height: 16px;
    background-color: var(--color-highlight);
    flex-shrink: 0;
}

.bulk-pricing__table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid var(--color-primary);
}

.bulk-pricing__table thead th {
    padding: 16px 0 12px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-24);
    text-align: left;
    color: var(--color-primary);
}

.bulk-pricing__table thead th:last-child {
    text-align: right;
}

.bulk-pricing__table tbody td {
    padding: 12px 0;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: var(--fs-24);
    color: var(--color-primary);
}

.bulk-pricing__table tbody td:last-child {
    text-align: right;
}

.bulk-pricing__table tbody tr:last-child td {
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 16px;
}

/* ============================================================
   ORDER IN MINUTES
   ============================================================ */
.order-minutes {
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 8vh, 110px) 0 clamp(50px, 6vh, 90px);
    background-color: var(--color-primary);
    text-align: center;
}

.order-minutes__bg-pattern,
.order-minutes:after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url(assets/images/dumpster-bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}
.order-minutes:after {
    background-image: url(assets/images/diagonal-lines-pattern-blue.png);
    opacity: .4;
}
.order-minutes .container {
    position: relative;
    z-index: 2;
}

.order-minutes h2 {
    margin: 0 0 clamp(50px, 6vh, 90px);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-80);
    line-height: 1.2;
    color: var(--color-white);
}

.order-minutes h2 strong {
    font-weight: 600;
    color: var(--color-highlight);
}

/* ---------- Steps grid ---------- */
.container--order {
    max-width: clamp(900px, 81.198vw, 1559px);
    width: 100%;
}
.order-minutes-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto clamp(40px, 5vh, 60px);
}

@media (max-width: 767px) {
    .order-minutes-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.order-minutes-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Connecting line between icons */
.order-minutes-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 70px;
    left: calc(45% + 90px);
    width: calc(100% - 90px);
    height: 1px;
    background-color: #727272;
}

@media (max-width: 767px) {
    .order-minutes-item:not(:last-child)::after {
        display: none;
    }
}

.order-minutes-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 141px;
    height: 141px;
    margin: 0 auto 32px;
    background-color: #5C5C5D;
}

.order-minutes-item__icon img {
    width: 72px;
    height: 72px;
}

.order-minutes-item h3 {
    margin: 0 0 16px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: var(--fs-24);
    line-height: 1.6;
    color: var(--color-white);
}

.order-minutes-item p {
    margin: 0;
    max-width: 39ch;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: var(--fs-18);
    line-height: 1.6;
    color: var(--color-white);
}
.order-minutes-item p strong {
    color: var(--color-white);
}
.order-minutes-item__phone a {
    color: var(--color-white);
    text-decoration: underline;
}

/* ---------- CTA buttons ---------- */
.order-minutes__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.order-minutes__actions .button img {
    width: 20px;
    height: 20px;
}
 
 
/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    position: relative;
    overflow: hidden;
    padding: 77px 0 clamp(80px, 9.81vw, 106px);
    background-color: #5C5C5D;
    text-align: center;
}

.how-it-works__bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url(assets/images/diagonal-lines-pattern-green.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    opacity: .1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.how-it-works h2 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-64);
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: clamp(32px, 4.53vh, 49px);
}

.how-it-works h2 strong {
    font-weight: 600;
    color: var(--color-white);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2.60vw, 50px);
    margin-bottom: clamp(32px, 4vh, 48px);
}

.how-it-works-item {
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: clamp(40px, 5vw, 56px) 24px 32px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.how-it-works-item--dark {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.how-it-works-item__icon {
    width: clamp(64px, 6vw, 96px);
    height: clamp(64px, 6vw, 96px);
    margin: 0 auto 24px;
}

.how-it-works-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
	filter: brightness(0) saturate(100%) invert(10%) sepia(35%) saturate(2000%) hue-rotate(180deg) brightness(85%);
}
.how-it-works-item--dark img {
    filter: brightness(0) invert(1);
}

.how-it-works-item h3 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: var(--fs-24);
    line-height: 1.6;
    margin: 0 0 10px;
}
.how-it-works-item--dark h3 {
    color: var(--color-white);
}
.how-it-works-item p {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: var(--fs-18);
    line-height: 1.6;
    margin: 0;
}

.how-it-works-item--dark p {
    color: rgba(255, 255, 255, 0.85);
}

@media only screen and (max-width: 900px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 540px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}
 
/* ============================================================
   PROJECT TYPES ("Why Choose Us")
   ============================================================ */
.project-types {
    padding: clamp(80px, 10.648vh, 115px) 0 clamp(60px, 9.63vh, 104px);
    text-align: center;
}

.project-types .eyebrow {
    margin-bottom: 15px;
}

.project-types h2 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-64);
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0 0 20px;
}

.project-types h2 strong {
    font-weight: 600;
    color: var(--color-highlight);
}

.project-types-subheading {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: var(--fs-24);
    color: var(--color-main);
    margin-bottom: clamp(32px, 4vh, 48px);
}

.project-types-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-bottom: clamp(32px, 6.2vh, 67px);
}

.project-type-item__icon {
    width: clamp(48px, 5.5vw, 70px);
    height: clamp(48px, 5.5vw, 70px);
    margin: 0 auto 16px;
}

.project-type-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-type-item h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-26);
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0;
}

.project-types-feature-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 900px) {
    .project-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 540px) {
    .project-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 400px) {
    .project-types-grid {
        grid-template-columns: 1fr;
    }
}
 
 
/* ============================================================
   EXTRA FEES
   ============================================================ */
.extra-fees {
    padding: clamp(50px, 7vh, 90px) 0;
}

.extra-fees__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: clamp(32px, 4vh, 48px);
}

.extra-fees h2 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-80);
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0;
}

.extra-fees h2 strong {
    font-weight: 600;
    color: var(--color-highlight);
}

.extra-fees-note {
    max-width: 400px;
    padding-top: 8px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: var(--fs-18);
    line-height: 1.6;
    color: var(--color-main);
    text-align: right;
    align-self: flex-end;
    font-weight: 400;
}

.extra-fees-note strong,
.extra-fees-note em {
    font-style: normal;
    font-weight: 700;
    color: var(--color-highlight);
}

.extra-fees-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 1.3vw, 25px);
    margin-bottom: clamp(32px, 4vh, 48px);
}

.extra-fee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 40px clamp(16px, 2.03125vw, 39px) clamp(25px, 3.426vh, 37px);
    text-align: center;
    justify-content: center;
}
.extra-fee-item * {
    color: var(--color-white);
}
.extra-fee-item p {
    font-size: var(--fs-18);
    margin-bottom: 0;
    line-height: 1.5;
}

.extra-fee-item--highlight {
    background-color: var(--color-highlight);
}

.extra-fee-item__icon {
    width: clamp(70px, 6vw, 110px);
    height: clamp(70px, 6vw, 110px);
    margin: 0 auto 24px;
}

.extra-fee-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.extra-fee-item h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-18);
    text-transform: uppercase;
    line-height: 1.5;
    margin: 0 0 4px;
}

.extra-fee-item__desc {
    font-family: var(--font-main);
    font-size: var(--fs-16);
    line-height: 1.5;
    margin: 0 0 4px;
}

.extra-fee-item__price {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: var(--fs-18);
    line-height: 1.5;
    margin: 0;
}

@media only screen and (max-width: 991px) {
    .extra-fees-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .extra-fees__header {
        flex-direction: column;
    }
    .extra-fees-note {
        text-align: left;
        max-width: none;
    }
}

@media only screen and (max-width: 768px) {
    .extra-fees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 540px) {
    .extra-fees-grid {
        grid-template-columns: 1fr;
    }
}
 
 
/* ============================================================
   WHAT GOES IN
   ============================================================ */
.what-goes-in {
    padding: clamp(50px, 7vh, 90px) 0;
    background-color: #5C5C5D;
    color: var(--color-white);
    text-align: center;
}
.what-goes-in .eyebrow {
    color: inherit;
}
#recycling.what-goes-in {
    background: var(--color-white);
    color: var(--color-main);
}
.what-goes-in h2 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-80);
    line-height: 1.2;
    color: var(--color-white);
    margin: 12px 0 clamp(32px, 4vh, 48px);
}

#recycling.what-goes-in h2 {
    color: var(--color-main);
}
.what-goes-in h2 strong {
    font-weight: 600;
    color: var(--color-highlight);
}

.what-goes-in-grid {
    display: grid;
/*    grid-template-columns: 1fr clamp(300px, 22.969vw, 441px);*/
    grid-template-columns: 1fr 441px;
    column-gap: clamp(40px, 10.88vw, 209px);
    max-width: 1180px;
    margin: 0 auto clamp(32px, 4vh, 48px);
    text-align: left;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    color: var(--color-white);
}
#recycling.what-goes-in .checklist {
    color: var(--color-main);
}
.checklist li {
    position: relative;
    padding-left: 44px;
    margin-bottom: 16px;
    font-family: var(--font-secondary);
    font-size: var(--fs-26);
    font-weight: 600;
    color: inherit;
    line-height: 1.2;
}

.checklist--check li::before {
    content: url(assets/images/svg/list-check.svg);
    position: absolute;
    left: 0;
    top: 2px;
    width: clamp(20px, 1.771vw, 34px);
    height: clamp(20px, 1.771vw, 34px);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    content: '';

    background-color: #fff;
    mask: url("assets/images/svg/list-check.svg") center / contain no-repeat;
    -webkit-mask: url("assets/images/svg/list-check.svg") center / contain no-repeat;
}
#recycling.what-goes-in .checklist--check li::before {
    content: "";
    background-color: #00204B;
}


.checklist--x li::before {
    content: url(assets/images/svg/list-x.svg);
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: clamp(20px, 1.771vw, 34px);
    height: clamp(20px, 1.771vw, 34px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00204B;

    mask: url(assets/images/svg/list-x.svg) center / contain no-repeat;
    -webkit-mask: url(assets/images/svg/list-x.svg) center / contain no-repeat;
}

.what-goes-in-note {
    display: inline-flex;
    align-items: center;
    background-color: #D9D9D9;
    border-radius: 999px;
    padding: 16px 33px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-21);
    color: var(--color-primary);
    margin-top: 8px;
    margin-bottom: clamp(30px, 3.88vh, 42px);
}
.what-goes-in-button {
    grid-column: 1 / -1;
    margin-top: -6%;
}
@media only screen and (max-width: 991px) {
    .what-goes-in-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .what-goes-in-col {
        margin-bottom: 24px;
    }

    .what-goes-in-button {
        grid-column: 1;
        text-align: center;
        margin: 0;
    }
    .what-goes-in-col {
        margin-bottom: 24px;
    }
}

 
/* ============================================================
   PRICING / DUMPSTER FEES
   ============================================================ */
.pricing {
    padding: clamp(50px, 7vh, 90px) 0;
    text-align: center;
    background-color: var(--color-white);
}

.pricing__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: var(--fs-24);
    line-height: 1.6;
    color: var(--color-highlight);
}

.pricing__eyebrow-dot {
    width: 16px;
    height: 16px;
    background-color: var(--color-highlight);
    flex-shrink: 0;
}

.pricing h2 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-64);
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0 0 12px;
}

.pricing h2 span {
    color: var(--color-highlight);
}

.pricing-subheading {
    margin: 0 auto clamp(32px, 4vh, 48px);
    font-family: var(--font-main);
    font-size: var(--fs-24);
    color: var(--color-primary);
}

.pricing-subheading span {
    color: var(--color-highlight);
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 7.81vw, 150px);
    max-width: 1200px;
    margin: 0 auto clamp(32px, 4.1667vh, 45px);
}

.pricing-card {
    background-color: #5C5C5D;
    padding: clamp(20px, 1.77vw, 34px);
    color: var(--color-white);
}

.pricing-card--highlighted {
    background-color: var(--color-primary);
}

.pricing-card__price {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: var(--fs-64);
    line-height: 1.6;
}

.pricing-card__price span {
    font-size: var(--fs-16);
    font-weight: 400;
}

.pricing-card__label {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--fs-20);
    text-transform: uppercase;
    margin: 11px 0 5px;
}

.pricing-card p {
    font-family: var(--font-main);
    font-size: var(--fs-18);
    line-height: 1.5;
    margin: 0;
    color: inherit;
}

@media only screen and (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
 
 
.featured-articles {
    padding: clamp(50px, 6.5vw, 100px) 0;
    background-color: #d9d9d9;
}
 
.featured-articles__header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "heading cta";
    align-items: flex-end;
    gap: 24px;
    margin-bottom: clamp(40px, 5vw, 70px);
}

 
/* ---------- Article grid ---------- */
.featured-articles__container {
    display: grid;
    grid-template-columns: clamp(300px, 36.042vw, 692px) 1fr;
    row-gap: clamp(30px, 5vh, 54px);
    padding-left: clamp(20px, 3.85vw, 74px);
    padding-right: clamp(20px, 4.792vw, 92px);
}

.featured-articles__container .featured-articles-grid {
    grid-column: 1 / -1;
}

.featured-articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}
.article-btn .button {
    min-width: 188px;
}
.featured-articles__heading h2 {
    margin-bottom: 0;
}
.article-card__image {
    aspect-ratio: 393 / 166;
    overflow: hidden;
    margin-bottom: 4px;
	background-color: var(--color-primary);
	margin-bottom: 20px;
}
 
.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-card:hover .article-card__image img {
    transform: scale(1.05);
}
.article-card__title {
    margin-bottom: 12px;
}
.article-card__excerpt p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-primary);
    font-family: var(--font-secondary);
}
.article-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    font-family: var(--font-secondary);
    color: var(--color-highlight);
    text-decoration: underline;
}
.article-card__read-more:hover {
    opacity: .8;
}
@media only screen and (max-width: 991px) {
    .featured-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-btn {
        order: 4;
        text-align: center;
        grid-column: 1 / -1;
    }
}
@media only screen and (max-width: 540px) {
    .featured-articles-grid,
    .featured-articles__container {
        grid-template-columns: 1fr;
    }
    .article-card__image {
        aspect-ratio: unset;
    }
}

 
/* ============================================================
   SCHEDULE DELIVERY
   ============================================================ */
.schedule-delivery {
    color: var(--color-white);
    text-align: center;
}
 
.schedule-delivery h2 {
    color: var(--color-white);
}
  
#gform_2 {
    display: flex;
    grid-template-columns: clamp(400px, 60.26vw, 1157px) auto;
    gap: clamp(15px, 1.458vw, 28px);
    justify-content: flex-end;
}
 
.schedule-delivery-form .admin-notice {
    color: rgba(255, 255, 255, 0.6);
}
/* ============================================================
   GRAVITY FORMS — INPUT ICONS
   ============================================================ */
.icon-field {
    position: relative;
}

.icon-field .ginput_container input {
    padding-left: 48px !important;
}

.icon-field .ginput_container::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* solid style */
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
}
.icon-field--address .ginput_container::before {
    content: "\f1ad"; 
	color: rgba(255, 255, 255, .5);
}

.icon-field--zip .ginput_container::before {
    content: "\f3c5";
	color: rgba(255, 255, 255, .5);
}
@media only screen and (max-width: 991px) {
    #gform_2 {
		flex-direction: column;
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   GET IN TOUCH
   ============================================================ */
.get-in-touch {
    padding: clamp(50px, 7vh, 90px) 0;
}
 
.get-in-touch-grid {
    display: grid;
    grid-template-columns: 1fr clamp(400px, 57.34375vw, 1101px);
    gap: 34px;
    padding-top: clamp(40px, 10.92vh, 118px);
}
 
.get-in-touch h2 {
    color: var(--color-primary);
    margin-bottom: 16px;
}
 
.get-in-touch-info p {
    margin-bottom: clamp(20px, 3.518vh, 38px);
}
 
.get-in-touch-info a,
.get-in-touch-info .address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--color-main);
    font-weight: 600;
}
 
.get-in-touch-info i {
    width: 18px;
    color: var(--color-white);
    align-self: flex-start;
    padding-top: 3px;
}
 
@media only screen and (max-width: 991px) {
    .get-in-touch-grid {
        display: block;
    }
    .get-in-touch-info {
        margin-bottom: 32px;
    }
}


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion {
    padding: clamp(50px, 6vh, 80px) 0;
}

.faqs__list #accordion {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.9629vh, 32px);
    max-width: clamp(991px, 71.2vw, 1367px);
    margin: 0 auto 40px;;
}
.faqs__list > h3 {
	text-align: center;
}
/* ---------- Base (closed) state ---------- */
.faq-item {
    position: relative;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: clamp(20px, 8.021vw, 154px);
    padding: 10px 12px 10px 33px;
    transition: border-radius 0.2s ease;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    justify-content: space-between;
    gap: 10px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.content-block__accordion-title {
    display: flex;
    align-items: center;
    min-height: 38px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: var(--fs-24);
    line-height: 1.6;
    color: var(--color-white);
}

.faq-item summary::after {
    content: '';
    border-radius: 50%;
    background-color: var(--color-highlight);
    background-image: url(assets/images/svg/icon-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px 25px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    width: clamp(35px, 2.60vw, 50px);
    height: clamp(35px, 2.60vw, 50px);
    flex: 0 0 auto;
}

.content-block__accordion-description {
    margin-top: 20px;
    padding-right: 60px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: var(--fs-18);
    line-height: 1.6;
    color: var(--color-primary);
}

.faq-item[open] {
    background-color: var(--color-white);
    border-radius: 30px;
    padding: 24px 33px;
}

.faq-item[open] .content-block__accordion-title {
    color: var(--color-primary);
}

.faq-item[open] summary::after {
    background-color: var(--color-primary);
    transform: rotate(90deg);
}

@media only screen and (max-width: 767px) {
    .faq-item summary {
        line-height: 1.2;
    }
    .content-block__accordion-description {
        padding: 0;
    }
    .content-block__accordion-title {
        font-size: var(--fs-18);
    }
    .faq-item summary::after {
        background-size: 16px 20px;
    }
}
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    overflow: hidden;
    font-family: var(--font-main);
    background: var(--color-white);
    box-shadow: 0 6px 20px rgba(0, 32, 75, 0.08);
	margin-bottom: 40px;
}

.pricing-table th,
.pricing-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.pricing-table th + th,
.pricing-table td + td {
    border-left: 1px solid var(--color-border);
}

.pricing-table th {
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
    text-align: right;
}

.pricing-table td:last-child {
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-weight: 700;
}

.pricing-table tbody tr:nth-child(even) {
    background: #F4F9EC;
}

.pricing-table tbody tr:nth-child(odd) {
    background: var(--color-white);
}

.pricing-table tbody tr:hover {
    background: #EAF3D9;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}


.east-bench-intro {
    max-width: unset;
}
.east-bench-callout {
/*     max-width: 66ch; */
    background: #F4F9EC;
    border-left: 5px solid var(--color-highlight);
    border-radius: 6px;
    padding: clamp(16px, 2vw, 26px) clamp(20px, 2.5vw, 32px);
    margin-bottom: clamp(32px, 4vh, 48px);
}
.east-bench-callout p {
    color: var(--color-primary);
}
 
.two-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3.28125vw, 63px);
    margin-bottom: clamp(32px, 4vh, 48px);
}
.two-services-grid .size-card__body {
    min-height: 100%;
}
.two-services-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    border-radius: 14px;
    padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
}
.two-services-banner p {
    margin: 0;
    max-width: 60ch;
    font-weight: 500;
    color: var(--color-white);
}
.two-services-banner .button {
    background: var(--color-white);
    color: var(--color-primary);
    flex-shrink: 0;
}
.two-services-banner .button:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
@media only screen and (max-width: 767px) {
    .two-services-grid {
        grid-template-columns: 1fr;
    }
    .two-services-banner {
        flex-direction: column;
        align-items: flex-start;
    }
	.pricing-table {
		display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
	}
}