/* blur effect  */

.blur-in {
    filter: blur(0.7rem);
    will-change: filter;
}

/* when visible, unblur once */
.blur-in.is-visible {
    animation: blur-out 500ms ease-out forwards;
}

@keyframes blur-out {
    from {
        filter: blur(0.7rem);
    }

    to {
        filter: blur(0);
    }
}

/* end of blur effect  */

/* hero  */

.hero-container {
    width: 100%;
    padding: 64px 10%;
    position: relative;
    min-height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container .hero-inner-wrapper {
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: 0 5%;
}

.hero-container .hero-inner-wrapper .hero-inner-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

.hero-container .hero-inner-wrapper .hero-inner-content h1 {
    color: #fff;
    font-size: 20px;
}

.hero-container .hero-inner-wrapper .hero-inner-content h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 32px;
}

.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas {
    border-radius: 12px;
    width: fit-content;
    min-width: 550px;
}

.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas {
    background-color: #fff;
    padding: 32px;
    display: flex;
    gap: 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}


.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-primary {
    display: flex;
    width: 50%;
    height: 50px;
    padding: 0 20px;
    color: #fff;
    background-color: rgb(0, 165, 111);
    border: 1px solid transparent;
    border-radius: 2px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    text-wrap: nowrap;
}

.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-primary:hover {
    background-color: rgb(4 129 88);
}

/* FOCUS-VISIBLE */
.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-primary:focus-visible {
    outline: 2px solid rgb(4 129 88);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px color-mix(in srgb, rgb(4 129 88) 30%, transparent);
}

/* FOCUS (fallback) — for browsers without :focus-visible */
.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-primary:focus {
    outline: 2px solid rgb(4 129 88);
    outline-offset: 2px;
}

/* …but don’t show it for mouse clicks in browsers that DO support :focus-visible */
.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-primary:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* ACTIVE */
.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-primary:active {
    background-color: rgb(3 109 74);
    color: #fff;

}


.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-secondary {
    display: flex;
    width: 50%;
    height: 50px;
    padding: 0 20px;
    color: rgb(0, 165, 111);
    background-color: transparent;
    border: 1px solid rgb(0, 165, 111);
    border-radius: 2px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    text-wrap: nowrap;
}

.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-secondary:hover {
    background-color: rgb(0, 165, 111);
    color: #fff;
}

/* FOCUS-VISIBLE — ring outside the border */
.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-secondary:focus-visible {
    outline: 2px solid rgb(0, 165, 111);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px color-mix(in srgb, rgb(0, 165, 111) 25%, transparent);
}

/* FOCUS fallback + suppress mouse focus */
.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-secondary:focus {
    outline: 2px solid rgb(0, 165, 111);
    outline-offset: 2px;
}

.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-secondary:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* ACTIVE — darker fill + tiny press */
.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .ctas .hero-inner-cta-secondary:active {
    background-color: rgb(3 109 74);
    border-color: rgb(3 109 74);
    color: #fff;
}

.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .trust-proof {
    background-color: #f4f4f4;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 16px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .trust-proof p {
    margin-bottom: 0;
}

.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .trust-proof .stars {
    height: 20px;
    width: auto;
    max-width: 100%;
}

.hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .trust-proof .trustpilot-logo {
    height: 20px;
    width: auto;
    max-width: 100%;
}


@media (min-width: 768px) and (max-width: 1024px) {
    .hero-container {
        padding: 64px 5%;
        min-height: 500px;
    }

    .hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas {
        bottom: -20%;
    }
}

@media (max-width: 1024px) {
    .hero-container .hero-inner-wrapper .hero-inner-content {
        justify-content: center;
        text-align: center;
    }

    .hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas {
        bottom: -20%;
        min-width: 95%;
    }

    .hero-container .hero-inner-wrapper .hero-inner-content h2 {
        font-size: 32px;
    }

    .hero-container .hero-inner-wrapper .hero-inner-content h1 {
        font-size: 18px;
    }

    .hero-container {
        min-height: 440px;
        padding: 32px 16px 15% 16px;
    }

    .reviews-on,
    .trustpilot-logo {
        display: none;
    }

    .hero-container .hero-inner-wrapper .hero-inner-content .hero-inner-ctas .trust-proof {
        justify-content: center;
    }
}

@media (max-width: 576px) {}

.hero-container .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, .45));
    z-index: 1;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.hero-container .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    z-index: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}


/* services  */

.related-services-container {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.related-services-container .related-services-intro {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.related-services-container .related-services-intro h2 {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
}

.related-services-container .related-services-grid {
    max-width: 1300px;
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.related-services-container .related-services-grid .related-services-item-wrapper {
    min-height: 18.875rem;
    padding: 1rem;
    width: calc(50% - 20px);
    max-width: 50%;
}

@media (max-width: 1024px) {
    .related-services-container .related-services-grid .related-services-item-wrapper {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .related-services-container .related-services-grid .related-services-item-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .related-services-container {
        padding: 32px 16px !important;
    }

    .related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-content {
        width: 85% !important;
    }
}

.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item {
    position: relative;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-content-desc {
    margin-bottom: 24px;
}

.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-content-desc h4 {
	color: #fff;
}

.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-content {
    padding: 32px;
    width: 66%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    color: #fff;
}

.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-content .related-services-item-content-link a {
    display: flex;
    width: fit-content;
    height: 50px;
    padding: 0 20px;
    color: #fff;
    background-color: rgb(0, 165, 111);
    border-radius: 2px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    border: none !important;
    text-wrap: nowrap;
}

.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-content .related-services-item-content-link a:hover {
    background-color: rgb(4 129 88);
}

/* FOCUS-VISIBLE */
.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-content .related-services-item-content-link a:focus-visible {
    outline: 2px solid rgb(4 129 88);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px color-mix(in srgb, rgb(4 129 88) 30%, transparent);
}

/* FOCUS (fallback) — for browsers without :focus-visible */
.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-content .related-services-item-content-link a:focus {
    outline: 2px solid rgb(4 129 88);
    outline-offset: 2px;
}

/* …but don’t show it for mouse clicks in browsers that DO support :focus-visible */
.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-content .related-services-item-content-link a:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* ACTIVE */
.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-content .related-services-item-content-link a:active {
    background-color: rgb(3 109 74);
    color: #fff;

}

.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-image {
    position: absolute;
    display: block;
    padding: 0;
    width: 100%;
    height: 100%;
    inset: 0;
}

.related-services-container .related-services-grid .related-services-item-wrapper .related-services-item .related-services-item-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
}


/* end of related services  */

/* companies work with  */

.companies-work-with-container {
    width: 100%;
    max-width: 100%;
    padding: 64px 32px;
	background: #f3f5f7;
}

.companies-work-with-container .companies-work-with-intro {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.companies-work-with-container .companies-work-with-intro h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 32px;
}

@media (max-width: 767px) {
    .companies-work-with-container {
        padding: 32px 16px !important;
    }
}

.companies-work-with-container .companies-work-with-wrapper {}

.companies-work-with-container .companies-work-with-wrapper .companies-work-with-slider {}

.companies-work-with-container .companies-work-with-wrapper .companies-work-with-slider .companies-work-with-slider-item {}

.companies-work-with-container .companies-work-with-wrapper .companies-work-with-slider .companies-work-with-slider-item img {}

.companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls {
    width: 100%;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    display: none;
}

@media (max-width: 767px) {
    .companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls {
        display: flex !important;
        justify-content: end;
    }
}

.companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls .control-previous,
.companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls .control-next {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
    border-radius: 1000px;
}

.companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls .control-previous:hover,
.companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls .control-next:hover {
    background-color: black;

}

.companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls .control-previous:hover svg,
.companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls .control-next:hover svg {
    fill: #fff;
}

.companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls .control-previous svg,
.companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls .control-next svg {
    width: 24px;
    height: 24px;
}

.companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls .control-previous {
    transform: rotate(90deg);
}

.companies-work-with-container .companies-work-with-wrapper .companies-work-with-controls .control-next {
    transform: rotate(-90deg);
}

/* end of companies work with  */


/* why choose us  */

.why-choose-us-container {
    width: 100%;
    padding: 64px 32px;
}

.why-choose-us-wrapper {
    padding: 80px 64px;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    border-radius: 12px;
    background-color: #e5ebf3;
}

@media (max-width: 1024px) {
    .why-choose-us-wrapper {
        padding: 40px 32px;
    }
}

@media (max-width: 767px) {
    .why-choose-us-wrapper .why-choose-us-list-wrapper .why-choose-us-list {
        flex-direction: column !important;
    }
	.why-choose-us-container {
		padding: 32px 16px!important;
	}

    .why-choose-us-wrapper .why-choose-us-list-wrapper .why-choose-us-list .why-choose-us-list-item {
        width: 100% !important;
    }

    .why-choose-us-wrapper {
        padding: 40px 16px !important;
    }

    .why-choose-us-wrapper .why-choose-intro h2 {
        font-size: clamp(32px, 10vw, 40px) !important;
    }
}

.why-choose-us-wrapper .why-choose-intro {
    text-align: center;
    margin: auto;
}

.why-choose-us-wrapper .why-choose-intro h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 48px;
}

.why-choose-us-wrapper .why-choose-us-list-wrapper {
    margin: auto;
    width: 100%;
}

.why-choose-us-wrapper .why-choose-us-list-wrapper .why-choose-us-list {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.why-choose-us-wrapper .why-choose-us-list-wrapper .why-choose-us-list .why-choose-us-list-item {
    width: calc(50% - 40px);
}

.why-choose-us-wrapper .why-choose-us-list-wrapper .why-choose-us-list .why-choose-us-list-item .why-choose-us-list-item-container {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 12px;
}

.why-choose-us-wrapper .why-choose-us-list-wrapper .why-choose-us-list .why-choose-us-list-item .why-choose-us-list-item-container .choose-svg-wrapper {}

.why-choose-us-wrapper .why-choose-us-list-wrapper .why-choose-us-list .why-choose-us-list-item .why-choose-us-list-item-container .choose-svg-wrapper svg {}

.why-choose-us-wrapper .why-choose-us-list-wrapper .why-choose-us-list .why-choose-us-list-item .why-choose-us-list-item-container h4 {
    font-size: 20px;
    font-weight: bold;
}

.why-choose-us-wrapper .why-choose-us-list-wrapper .why-choose-us-list .why-choose-us-list-item .why-choose-us-list-item-container p {
    margin: 0;
    font-size: 16px;
}


/* end of why choose us  */

/* service-reasons list  */

.service-reason-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 64px 32px;
	background: #f3f5f7;
}

.service-reason-container .service-reason-wrapper {
    width: 100%;
    max-width: 1400px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .service-reason-container .service-reason-wrapper {
        flex-direction: column-reverse;
    }

    .service-reason-container .service-reason-wrapper .service-reason-content,
    .service-reason-container .service-reason-wrapper .service-reason-img {
        width: 100% !important;
    }

    .service-reason-container .service-reason-wrapper .service-reason-img {
        display: flex;
        justify-content: center;
    }

    .service-reason-container .service-reason-wrapper .service-reason-img img {
        max-height: 400px;
        width: auto !important;
        margin: auto;
    }
}

@media (max-width: 767px) {
    .service-reason-container {
        padding: 32px 16px !important;
    }
}

.service-reason-container .service-reason-wrapper .service-reason-content {
    width: 50%;
}

.service-reason-container .service-reason-wrapper .service-reason-content img {
    width: 120px;
    height: auto;
    max-width: 100%;
}

.service-reason-container .service-reason-wrapper .service-reason-content h2 {
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 500;
}

.service-reason-container .service-reason-wrapper .service-reason-content a {
    display: flex;
    width: fit-content;
    height: 50px;
    padding: 0 20px;
    color: #fff;
    background-color: rgb(0, 165, 111);
    border-radius: 2px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    border: none !important;
    text-wrap: nowrap;
}

.service-reason-container .service-reason-wrapper .service-reason-content a:hover {
    background-color: rgb(4 129 88);
}

/* FOCUS-VISIBLE */
.service-reason-container .service-reason-wrapper .service-reason-content a:focus-visible {
    outline: 2px solid rgb(4 129 88);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px color-mix(in srgb, rgb(4 129 88) 30%, transparent);
}

/* FOCUS (fallback) — for browsers without :focus-visible */
.service-reason-container .service-reason-wrapper .service-reason-content a:focus {
    outline: 2px solid rgb(4 129 88);
    outline-offset: 2px;
}

/* …but don’t show it for mouse clicks in browsers that DO support :focus-visible */
.service-reason-container .service-reason-wrapper .service-reason-content a:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* ACTIVE */
.service-reason-container .service-reason-wrapper .service-reason-content a:active {
    background-color: rgb(3 109 74);
    color: #fff;

}


.service-reason-container .service-reason-wrapper .service-reason-img {
    width: 50%;
}

.service-reason-container .service-reason-wrapper .service-reason-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
}

/* end of service reason  */

/* service quote  */

.service-quote-container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    padding: 64px 32px;
}

.service-quote-container .service-quote-wrapper {
    display: flex;
    gap: 64px;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .service-quote-container .service-quote-wrapper {
        flex-direction: column;
    }

    .service-quote-container .service-quote-wrapper .map-quote-container,
    .service-quote-container .service-quote-wrapper .service-info {
        width: 100% !important;
    }

    .service-quote-container .service-quote-wrapper .map-quote-container .quote-intro-container {
        position: static !important;
        transform: none !important;
        width: 100% !important;
    }

    .service-quote-container .service-quote-wrapper .map-quote-container {
        display: flex;
        flex-direction: column;
    }

    .service-quote-container .service-quote-wrapper .map-quote-container .map-google-map-container {
        display: flex;
        order: 2;
    }

    .service-quote-container .service-quote-wrapper .map-quote-container .quote-intro-container {
        display: flex;
        flex-direction: column;
        order: 1;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .service-quote-container .service-quote-wrapper .map-quote-container .quote-intro-container {
        padding: 20px !important;
    }

    .service-quote-container {
        padding: 32px 16px !important;
    }
}

@media (max-width: 576px) {
    .service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container {
        width: 310px !important;
    }

    .service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-info .james-info-list li p {
        font-size: 12px;
    }

    .service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-info h5 {
        font-size: 16px !important;
    }
}

.service-quote-container .service-quote-wrapper .map-quote-container {
    width: 60%;
    position: relative;
}

.service-quote-container .service-quote-wrapper .map-quote-container .map-google-map-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.service-quote-container .service-quote-wrapper .map-quote-container .map-google-map-container iframe {
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 450px;
    border-radius: 12px;
}

.service-quote-container .service-quote-wrapper .map-quote-container .quote-intro-container {
    box-shadow: rgba(51, 69, 87, 0.08) 0px 10px 10px;
    display: block;
    position: absolute;
    width: 80%;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    padding: 3.125rem;
    border-radius: 12px;
}

.service-quote-container .service-quote-wrapper .map-quote-container .quote-intro-container h3 {}


.service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 20px;
    display: flex;
    width: 480px;
    height: 160px;

}

.service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-img {}

.service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
}

.service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-info {
    padding: 10px;
    background-color: #fff;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    flex-grow: 1;
}

.service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-info h5 {
    font-size: 18px;
    font-weight: bold;
}

.service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-info .james-info-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-info .james-info-list li {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    align-items: center;
}

.service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-info .james-info-list li p {
    margin: 0;
}

.service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-info .james-info-list li .james-info-icon-item {}

.service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-info .james-info-list .james-info-icon-item svg {
    width: 24px;
    min-width: 24px;
    height: auto;
}

.service-quote-container .service-quote-wrapper .map-quote-container .james-quote-container .james-info .james-info-list .james-info-icon-item p {
    margin: 0;
}


/* info  */
.service-quote-container .service-quote-wrapper .service-info {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.service-quote-container .service-quote-wrapper .service-info .service-info-intro {
    margin-bottom: 24px;
}

.service-quote-container .service-quote-wrapper .service-info .service-info-intro h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
}

.service-quote-container .service-quote-wrapper .service-info .service-info-list-wrapper {}

.service-quote-container .service-quote-wrapper .service-info .service-info-list-wrapper .service-info-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.service-quote-container .service-quote-wrapper .service-info .service-info-list-wrapper .service-info-list .service-info-list-item {
    display: flex;
    gap: 12px;
}

.service-quote-container .service-quote-wrapper .service-info .service-info-list-wrapper .service-info-list .service-info-list-item .service-info-list-item-icon-wrapper {
    min-width: 40px;
}

.service-quote-container .service-quote-wrapper .service-info .service-info-list-wrapper .service-info-list .service-info-list-item .service-info-list-item-icon-wrapper svg {
    width: 40px;
    height: auto;
    max-width: 100%;
    min-width: 40px;
}

.service-quote-container .service-quote-wrapper .service-info .service-info-list-wrapper .service-info-list .service-info-list-item .service-info-list-item-description {}

.service-quote-container .service-quote-wrapper .service-info .service-info-list-wrapper .service-info-list .service-info-list-item .service-info-list-item-description h5 {
    font-size: 18px;
    font-weight: bold;
}

.service-quote-container .service-quote-wrapper .service-info .service-info-list-wrapper .service-info-list .service-info-list-item .service-info-list-item-description p {
    margin-bottom: 12px;
}

.service-info-list-separator {
    width: 100%;
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-image: initial;
    border-top: 2.5px dotted rgb(193, 192, 192);
    margin: 20px 0 !important;
}

/* end of service quote  */


/* ethos  */

.company-ethos-container {
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 150px 32px;
    margin: 64px 0;
    min-height: 600px;
    display: flex;
    justify-content: center;
    background-image: url('https://duerdengroup.com/wp-content/uploads/2025/09/collin-bg-img.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .company-ethos-container {
        padding: 100px 32px;
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .company-ethos-container {
        min-height: 450px;
        padding: 100px 16px;
    }

    .company-ethos-container .company-ethos-wrapper .company-ethos-content h3 {
        font-size: 32px !important;
    }

    .company-ethos-container .company-ethos-wrapper .company-ethos-content span {
        font-size: 18px !important;
    }
}

@media (max-width: 576px) {
    .company-ethos-container .company-ethos-wrapper .company-ethos-content h3 {
        font-size: 28px !important;
    }

    .company-ethos-container .company-ethos-wrapper .company-ethos-content span {
        font-size: 16px !important;
    }
}

.company-ethos-container .ethos-overlay {
    position: absolute;
    background-image: linear-gradient(90deg, #140c2d 0, rgba(20, 12, 45, 0.45) 70%);
    height: 100%;
    width: 100%;
    inset: 0;
}

.company-ethos-container .company-ethos-wrapper {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
}

.company-ethos-container .company-ethos-wrapper .company-ethos-content {}

.company-ethos-container .company-ethos-wrapper .company-ethos-content h3 {
    font-size: 40px;
	color: #fff;
    margin-bottom: 32px;
}

.company-ethos-container .company-ethos-wrapper .company-ethos-content span {
    font-size: 20px;
}

/* end of ethos  */


/* our fleet  */

.our-fleet-container {
    width: 100%;
    padding: 64px 32px;
    position: relative;
}

.our-fleet-container .our-fleet-slider {
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.our-fleet-container .our-fleet-slider .our-fleet-slider-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.our-fleet-container .our-fleet-slider .our-fleet-slider-item .fleet-slider-item-content {
    width: 50%;
}

.our-fleet-container .our-fleet-slider .our-fleet-slider-item .fleet-slider-item-img {
    width: 50%;
}

.our-fleet-container .our-fleet-slider .our-fleet-slider-item .fleet-slider-item-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
    border-radius: 12px;
}


.our-fleet-container .fleet-slider-dots {
    position: absolute;
    bottom: 20%;
    left: 20%;
    display: flex;
    gap: 20px;
    align-items: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .our-fleet-container .fleet-slider-dots {
        left: 32px;
    }
}

@media (max-width: 767px) {
    .our-fleet-container {
        padding: 32px 16px !important;
    }

    .our-fleet-container .our-fleet-slider .our-fleet-slider-item {
        flex-direction: column-reverse;
    }

    .our-fleet-container .our-fleet-slider .our-fleet-slider-item .fleet-slider-item-img,
    .our-fleet-container .our-fleet-slider .our-fleet-slider-item .fleet-slider-item-content {
        width: 100% !important;
    }

    .our-fleet-container .our-fleet-slider .our-fleet-slider-item .fleet-slider-item-img {
        display: flex;
        justify-content: center;
    }

    .our-fleet-container .our-fleet-slider .our-fleet-slider-item .fleet-slider-item-img img {
        max-height: 400px;
        width: auto;
        margin: auto;
    }

    .our-fleet-container .fleet-slider-dots {
        bottom: 32px;
        left: 16px;
    }
}

@media (max-width: 576px) {
    .our-fleet-container .fleet-slider-dots {
        position: static;
        margin-top: 24px;
        display: none;
    }

    .our-fleet-container .fleet-slider-controls {
        justify-content: start !important;
        margin-top: 12px !important;
    }
}

.our-fleet-container .fleet-slider-dots .fleet-dot {
    height: 36px;
    padding: 0 !important;
    display: flex;
    width: 36px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border-radius: 100px;
    border: 2px solid transparent;
    position: relative;
}

.our-fleet-container .fleet-slider-dots .fleet-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background-color: #000;
    display: block;
}

.our-fleet-container .fleet-slider-dots .fleet-dot.is-active {
    border: 2px solid black;
}

.our-fleet-container .fleet-slider-controls {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: end;
    width: 100%;
    max-width: 1400px;
    margin: 24px auto 0 auto;
}


.our-fleet-container .fleet-slider-controls .fleet-slider-control-prev,
.our-fleet-container .fleet-slider-controls .fleet-slider-control-next {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
    border-radius: 1000px;
}

.our-fleet-container .fleet-slider-controls .fleet-slider-control-prev:hover,
.our-fleet-container .fleet-slider-controls .fleet-slider-control-next:hover {
    background-color: black;

}

.our-fleet-container .fleet-slider-controls .fleet-slider-control-prev:hover svg,
.our-fleet-container .fleet-slider-controls .fleet-slider-control-next:hover svg {
    fill: #fff;
}

.our-fleet-container .fleet-slider-controls .fleet-slider-control-prev svg,
.our-fleet-container .fleet-slider-controls .fleet-slider-control-next svg {
    width: 24px;
    height: 24px;
}

.our-fleet-container .fleet-slider-controls .fleet-slider-control-prev {
    transform: rotate(90deg);
}

.our-fleet-container .fleet-slider-controls .fleet-slider-control-next {
    transform: rotate(-90deg);
}


/* end of our fleet  */

/* comparison table  */

.comparison-table-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 32px;
    background-color: rgb(248, 242, 236);
}

.comparison-table-container .comparison-table .table-cta-desktop {
    display: flex;
    width: fit-content;
    height: 50px;
    padding: 0 20px;
    color: #fff;
    background-color: rgb(0, 165, 111);
    border-radius: 2px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    border: none !important;
    text-wrap: nowrap;
}

.comparison-table-container .comparison-table .table-cta-desktop:hover {
    background-color: rgb(4 129 88);
}

/* FOCUS-VISIBLE */
.comparison-table-container .comparison-table .table-cta-desktop:focus-visible {
    outline: 2px solid rgb(4 129 88);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px color-mix(in srgb, rgb(4 129 88) 30%, transparent);
}

/* FOCUS (fallback) — for browsers without :focus-visible */
.comparison-table-container .comparison-table .table-cta-desktop:focus {
    outline: 2px solid rgb(4 129 88);
    outline-offset: 2px;
}

/* …but don’t show it for mouse clicks in browsers that DO support :focus-visible */
.comparison-table-container .comparison-table .table-cta-desktop:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* ACTIVE */
.comparison-table-container .comparison-table .table-cta-desktop:active {
    background-color: rgb(3 109 74);
    color: #fff;

}

@media (max-width: 767px) {
    .comparison-table-container .comparison-table .table-cta-desktop {
        display: none !important;
    }

    .comparison-table tbody td>div>span {
        display: none;
    }

    .comparison-table thead th:not(:first-child)>*,
    .comparison-table tbody td>* {
        justify-content: center !important;
    }

    .comparison-table-container .comparison-table-wrapper .comparison-table {
        overflow-x: auto;
    }

    .comparison-table-container {
        padding: 32px 16px !important;
    }
}

@media (min-width: 768px) {
    .comparison-table-container .comparison-table .table-cta-mobile {
        display: none !important;
    }
}

.comparison-table-container .comparison-table .table-cta-mobile {
    display: flex;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    color: #fff;
    background-color: rgb(0, 165, 111);
    border-radius: 2px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    border: none !important;
    text-wrap: nowrap;
}

.comparison-table-container .comparison-table .table-cta-mobile:hover {
    background-color: rgb(4 129 88);
}

/* FOCUS-VISIBLE */
.comparison-table-container .comparison-table .table-cta-mobile:focus-visible {
    outline: 2px solid rgb(4 129 88);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px color-mix(in srgb, rgb(4 129 88) 30%, transparent);
}

/* FOCUS (fallback) — for browsers without :focus-visible */
.comparison-table-container .comparison-table .table-cta-mobile:focus {
    outline: 2px solid rgb(4 129 88);
    outline-offset: 2px;
}

/* …but don’t show it for mouse clicks in browsers that DO support :focus-visible */
.comparison-table-container .comparison-table .table-cta-mobile:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* ACTIVE */
.comparison-table-container .comparison-table .table-cta-mobile:active {
    background-color: rgb(3 109 74);
    color: #fff;

}

.row-label-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* RESET the first column cell */
.comparison-table table tbody tr>th:first-child,
.comparison-table tbody th:first-child {
    display: table-cell !important;
    vertical-align: middle;
    padding: 0;
    width: 20% !important;
    min-width: 20%;
}

.comparison-table-container .comparison-table-intro {
    text-align: center;
}

.comparison-table-container .comparison-table-intro h2 {
    font-size: 32px;
    margin-bottom: 48px;
}

.comparison-table-container .comparison-table-intro p {
    margin-bottom: 32px;
}


.comparison-table-container .comparison-table-wrapper {
    max-width: 1400px;
    width: 100%;
}

.comparison-table-container .comparison-table-wrapper .comparison-table {}

.comparison-table-container .comparison-table-wrapper .comparison-table table {
    border: none;
    border-collapse: separate !important;
    border-spacing: 0;
    width: 100%;
}

.comparison-table table tr>* {
    /* width: 16.6667%; */
    width: 15%;
    min-width: 15%;
}

/* head  */

.comparison-table table thead {
    background-color: rgba(0, 0, 0, 0);
}

.comparison-table table thead th:nth-child(2) {
    background-color: #d7ead2;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.comparison-table table thead tr {
    background-color: rgba(0, 0, 0, 0);
    border: none;
}

.comparison-table table thead tr th {
    /* padding: 8px 24px; */
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
}

.comparison-table table thead tr th img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.comparison-table table tbody {
    border-color: rgb(229, 231, 235);
    border-top-width: 1px;
}


.comparison-table table tbody tr:first-child th {
    border-top-left-radius: 30px;
}

.comparison-table table tbody tr:last-child td {
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 12px 16px;
}

.comparison-table table tbody td:nth-child(2) {
    background-color: #d7ead2 !important;
}

.comparison-table table tbody tr>th:first-child {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 12px;
    padding: 12px 16px;
}

.comparison-table tbody th:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    /* no width here */
}

/* center the rest of the cells (header + body) */
.comparison-table thead th:not(:first-child),
.comparison-table tbody td {
    text-align: center;
    vertical-align: middle;
}

/* center their inner wrappers/icons/text */
.comparison-table thead th:not(:first-child)>*,
.comparison-table tbody td>* {
    display: inline-flex;
    padding: 12px 16px;
    align-items: center;
    text-align: start;
    justify-content: start;
    gap: 8px;
    margin-inline: auto;
    font-size: 14px;
    width: 100%;
}

/* Center ONLY columns 3+ (head + body) */
.comparison-table thead tr> :not(:nth-child(-n+2)),
.comparison-table tbody tr> :not(:nth-child(-n+2)) {
    text-align: center;
    vertical-align: middle;
}

/* Center the contents inside those cells too */
.comparison-table thead tr> :not(:nth-child(-n+2))>*,
.comparison-table tbody tr> :not(:nth-child(-n+2))>* {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    text-align: center;
}

.comparison-table table thead tr> :not(:nth-child(2)),
.comparison-table table tbody tr> :not(:nth-child(2)) {
    background-color: #fff;
}

.comparison-table table tbody tr:last-child>th,
.comparison-table table tbody tr:last-child>td {
    background-color: rgba(0, 0, 0, 0);

}

.comparison-table table thead tr:first-child>th:not(:nth-child(2)) {
    background-color: rgba(0, 0, 0, 0);
}

/* top-right corner — row 2, last cell */
.comparison-table tbody tr:nth-child(1)>td:last-child {
    border-top-right-radius: 30px;
}

/* bottom-left corner — 2nd-to-last row, first (icon/label) cell */
.comparison-table tbody tr:nth-last-child(2)>th:first-child {
    border-bottom-left-radius: 30px;
}

/* bottom-right corner — 2nd-to-last row, last cell */
.comparison-table tbody tr:nth-last-child(2)>td:last-child {
    border-bottom-right-radius: 30px;
}

/* body  */

/* end of comparison table  */


/* faqs  */

/* home faqs  */

.faq-wrapper {
    padding: 64px 32px;
    width: 100%;
}

.faq-wrapper .faq-intro {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.faq-wrapper .faq-intro h2 {
    font-size: 48px;
}

@media (max-width: 767px) {
    .faq-wrapper {
        padding: 32px 16px;
    }
}

.faq-container .faq-list {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.faq-container .faq-list .faq-item {
    border-bottom: 1px solid black;
    width: 100%;
}

.faq-container .faq-list .faq-item .faq {
    width: 100%;
}

.faq-container .faq-list .faq-item .faq button {
    padding: 0 1rem;
    width: 100%;
    border: none;
    background: transparent;
    min-height: 68px;
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-container .faq-list .faq-item .faq button .faq-icon {
    height: 1.25rem;
    width: 1.25rem;
    position: relative;
    flex-shrink: 0;
    margin: 1.5rem 1rem 1.5rem 0;
}

.faq-container .faq-list .faq-item .faq button .faq-icon::before {
    background: black;
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    height: 4px;
    width: 1.25rem;
    border-radius: 5px;
    transform: translateY(-50%);
    transition: transform 300ms;
}

.faq-container .faq-list .faq-item .faq button .faq-icon.spin::before {
    transform: translateY(-50%) rotate(180deg);
}

.faq-container .faq-list .faq-item .faq button .faq-icon::after {
    background: black;
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    height: 4px;
    width: 1.25rem;
    border-radius: 5px;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 300ms;
}

.faq-container .faq-list .faq-item .faq button .faq-icon.spin::after {
    transform: translateY(-50%) rotate(0deg);
}

.faq-container .faq-list .faq-item .faq button .faq-title {
    font-size: 20px;
    font-weight: 700;
}

.faq-container .faq-list .faq-item .faq .faq-body {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    padding: 0;
    visibility: hidden;
    transition: grid-template-rows 300ms ease, opacity 200ms ease;
}

.faq-container .faq-list .faq-item .faq .faq-body.open {
    grid-template-rows: 1fr;
    opacity: 1;
    padding: 0 16px 16px;
    visibility: visible;
}

.faq-container .faq-list .faq-item .faq .faq-body>* {
    min-height: 0;
    overflow: hidden;
}

.faq-container .faq-list .faq-item .faq .faq-body p {
    margin: 0;
}

/* end of faqs  */