.grecaptcha-badge {
    visibility: hidden;
}

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #F7F7F7;
    color: rgba(0,0,0,.7);
}

.text-font-color {
    color: var(--text_color_rgba) !important;
}

.mr-auto > div {
    position: absolute;
    left: 5%;
    top: -100%;
    z-index: 10;
}

.navbar-nav {
    /*max-height: 95vh;*/
    /*overflow: auto;*/
}

.navbar-collapse {
    max-height: 700px;
}

.navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 180px;
}

.navbar-toggler > .close {
    display: inline;
}

.navbar-toggler.collapsed > .close, .navbar-toggler:not(.collapsed) > .navbar-toggler-icon {
    display: none;
}

.navbar-toggler .close {
    display: none;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.navbar-toggler.collapsed .navbar-toggler-icon {
    display: inline-block;
}

.navbar-toggler.collapsed .close {
    display: none;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    display: none;
}

.navbar-toggler:not(.collapsed) .close {
    display: inline-block;
}

a.nav-link {
    text-transform: capitalize;
}

.accessibility-img {
    position: fixed;
    bottom: 50%;
    right: 0;
    background-color: #eeeef4;
    z-index: 1000000;
}

.custom-fixed-top {
    -webkit-box-shadow: rgba(0, 0, 0, 0.33) 0px 1px 10px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.33) 0px 1px 10px 0px;
    box-shadow: rgba(0, 0, 0, 0.33) 0px 1px 10px 0px;
}

.bg-default-color {
    background-color: #fff !important;
}

.bg-alt-color {
    background-color: #f4f4f4 !important;
}

.bg-light {
    background-color: #f4f4f4 !important;
}

.bg-review-color {
    background-color: #fff !important;
}

.bg-section-color {
    background-color: #6c757d !important;
    color: White;
}

.framed-text {
    background-color: White !important;
    opacity: .8;
    border-radius: .25rem;
}

.nav-logo {
    width: auto;
    height: 150px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.menu-container > li > a {
    text-transform: capitalize;
}

.nav-business-name {
    font-weight: bold;
    font-size: 1.5em;
}

.nav-address {
    font-weight: bold;
    font-size: 1em;
}

.nav-phone {
    font-weight: bold;
    font-size: 1em;
}

#PhoneNav .fas {
    background-color: grey;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: relative;
    margin-right: 3px;
    top: 5px;
}

    #PhoneNav .fas:before {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.phone-nav-mobile {
    color: rgba(0,0,0,.7);
    font-size: .8rem;
}

    .phone-nav-mobile:hover {
        color: rgba(0,0,0,1);
        text-decoration: none;
    }

.phone-nav,
.email-nav,
.website-nav {
    font-size: .98rem;
    font-weight: 600;
    color: rgba(0,0,0,.7);
    list-style-type: none;
    padding-left: 0;
}

    .phone-nav:hover
    .email-nav:hover
    .website-nav:hover {
        color: rgba(0,0,0,1);
        text-decoration: none;
        list-style-type: none;
        padding-left: 0;
    }

.contact-nav {
    /*border: 1px solid #fff;*/
    border-width: 1px;
    border-style: solid;
    padding: 5px 30px;
    border-radius: 11px;
    font-size: .7rem;
}

.description {
    z-index: 2;
    letter-spacing: 2px;
    text-transform: capitalize;
    font-size: 5em;
    color: White;
    text-shadow: 2px 2px 5px rgba(0,0,0, .3);
    font-weight: bold;
}

.heading {
    font-size: 3em;
    letter-spacing: 5px;
    font-weight: 600;
}

.business-name {
    font-size: 3em;
    letter-spacing: 5px;
    font-weight: 600;
}

.description {
    font-size: 1.5em;
    font-weight: 600;
}

.section-header {
    letter-spacing: 2px;
    text-transform: capitalize;
    font-size: 2em;
    color: rgba(0,0,0,.7);
}

.home-content {
    min-height: 85vh;
}

.home-banner {
    min-height: 25vh;
    width: 100%;
    display: flex;
    flex: 1 0 auto;
}

.parallax {
    position: relative;
    z-index: 2;
}

.parallax-image {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: 50% 50% !important;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
}

    .parallax-image.show {
        opacity: 1;
    }

    .parallax-image.opacity {
        opacity: .3;
    }

.banner {
    min-height: 40vh;
    width: 100%;
    display: flex;
    flex: 1 0 auto;
}

.banner-image {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: 50% 50% !important;
    background-repeat: no-repeat;
}

.banner-image-opacity {
    opacity: .3;
}

.banner-information {
    z-index: 2;
    letter-spacing: 2px;
    text-transform: capitalize;
    font-size: 5em;
    color: White;
    text-shadow: 2px 2px 5px rgba(0,0,0, .3);
    font-weight: bold;
}

.banner-sub {
    color: rgba(0,0,0,.7);
    font-size: 1em;
}

.bg-image-container {
    position: relative;
    z-index: 1;
    min-height: 25vh;
}

.bg-image {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: 50% 50% !important;
    background-repeat: no-repeat;
}

.bg-image-opacity {
    opacity: .7;
}

.payment-img {
    width: 30px;
    height: auto;
}

.navbar-brand {
    padding-top: 0px !important;
    content-medium padding-bottom: 0px !important;
}

.nav-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.content-body-heading {
    font-size: 1.45rem;
    color: rgba(0,0,0,.7);
}

.content-body-paragraph {
    color: rgba(0,0,0,.7);
}

.contact-us-label {
    font-weight: 500;
    /*//color: rgba(0,0,0,.7);*/
}

.content-body-sub-heading {
    font-size: 1.1rem;
}

#home-section {
    /*padding-top: 215px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;   */
}


.heading {
    font-size: 3em;
    letter-spacing: 1.35px;
    text-transform: capitalize;
    font-weight: 600;
}

.business-name {
    font-size: 3em;
    letter-spacing: 1.35px;
    font-weight: 600;
}

.description {
    font-size: 1.5em;
    font-weight: 600;
}

.section-header {
    letter-spacing: 2px;
    text-transform: capitalize;
    font-size: 2em;
    color: rgba(0,0,0,.7);
}

.footer-header {
    letter-spacing: 2px;
    text-transform: capitalize;
    font-size: 1.15em;
    font-weight: 600;
}

.footer-content {
    /*font-size: .95em;*/
    justify-content: left;
}


.content-large {
    font-size: 1rem;
}

.content-medium {
    font-size: .85rem;
}

.content-small {
    font-size: 0.75rem;
}

/*.heading-large {
    font-size: 1.50rem;
}*/


.m-bold {
    font-weight: 500;
}

.section-information {
    font-size: 1.45em;
    font-weight: 500;
    /*//color: rgba(0,0,0,.7);*/
}

.parent {
    position: relative;
    top: 0;
    left: 0;
}

.image1 {
    position: relative;
    top: 0;
    left: 0;
    border: 1px red solid;
}

.image2 {
    position: absolute;
    top: 30px;
    left: 30px;
    border: 1px green solid;
}

.contact-phone {
    font-size: 1em;
    font-weight: bold;
}

.contact-phone-alt {
    font-size: 1em;
    font-weight: bold;
    color: rgba(0,0,0,.7);
}

    .contact-phone-alt:hover {
        color: rgba(0,0,0,.9);
        text-decoration: none;
    }

.contact-phone-sm {
    font-size: 1.25em;
}

.contact-zip {
    flex-basis: 20%;
}

.contact-city {
    margin-right: 0.5rem;
    flex-basis: 55%;
}

.contact-state {
    margin-right: 0.5rem;
    flex-basis: 25%;
}

#facebook-social > i {
    color: #3B5998;
}

#google-social > i {
    color: #1A73E8;
}

#yelp-social > i {
    color: #D32323;
}

#twitter-social > i {
    color: #55ACEE;
}

#instagram-social > i {
    color: #D32E79;
}

#linkedin-social > i {
    color: #007BB5;
}

a {
    color: #337AB7;
}

.social-link > i:hover {
    -webkit-transform: scale(1.25); /* Safari and Chrome */
    -moz-transform: scale(1.25); /* Firefox */
    -ms-transform: scale(1.25); /* IE 9 */
    -o-transform: scale(1.25); /* Opera */
    transform: scale(1.25);
}


.additive-heading {
    font-size: 1.25em;
    letter-spacing: 1px;
    color: rgba(0,0,0,.7);
}

.additive {
    font-size: 1em;
    font-style: italic;
    letter-spacing: 1px;
}

.services-heading {
    font-size: 1.15em;
    font-weight: 600;
}

#footer-section {
    font-size: .9em;
    letter-spacing: 1px;
}

.inline-image {
    max-height: 300px;
}

.animate {
    animation-duration: .8s;
    animation-name: fadeAndScale;
    animation-timing-function: cubic-bezier(.44,0,.83,.67);
}

.btn-secondary:hover {
    background-color: #BDC0C2;
}

.services-information {
    color: rgba(0,0,0,.7);
}

.location-information {
    color: rgba(0,0,0,.7);
}

.business-info-nav {
    color: rgba(0,0,0,.7);
}

    .business-info-nav li:not(:last-child)::after {
        content: " | ";
        position: relative;
        right: -5px;
        top: -2px;
    }

#PhoneNav .fas {
    background-color: grey;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: relative;
    margin-right: 3px;
    top: 5px;
}

    #PhoneNav .fas:before {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.nav-link {
    font-weight: bold;
}

.jumbotron {
    padding: 8rem 2rem;
}

.slogan {
    letter-spacing: 2px;
    text-transform: capitalize;
    font-size: 3em;
    color: White;
    text-shadow: 2px 2px 5px rgba(0,0,0, .3);
}

.contact-hours {
    color: rgba(0,0,0,.7);
}

.overlay {
    position: relative;
    float: left;
    width: 100%;
    z-index: 1;
    cursor: pointer;
    -webkit-filter: brightness(70%);
    -moz-filter: brightness(70%);
    -o-filter: brightness(70%);
    -ms-filter: brightness(70%);
    filter: brightness(70%);
}

    .overlay:hover {
        -webkit-filter: brightness(100%);
        -moz-filter: brightness(100%);
        -o-filter: brightness(100%);
        -ms-filter: brightness(100%);
        filter: brightness(100%);
    }

.imagery-video {
    pointer-events: none;
}

.modal-xl {
    max-width: 1200px;
}

.modal-section-header {
    letter-spacing: 2px;
    text-transform: capitalize;
    font-size: 2em;
} 

video {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 20px;
}

.slider-video > .slick-prev {
    top: 50%;
    height: 10%;
    width: 1.88rem;
    left: 0rem;
    z-index: 10;
    background-color: #939393;
    opacity: .8;
}

.slider-video > .slick-next {
    top: 50%;
    height: 10%;
    width: 1.88rem;
    right: 0rem;
    z-index: 10;
    background-color: #939393;
    opacity: .8;
}

.videoPageWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin-bottom: 30px;
}

    .videoPageWrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none !important;
    }

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin-bottom: 30px;
}

    .videoWrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none !important;
    }

.image-slider > img {
    width: auto;
    max-height: 500px;
}

.image-slider-thumbnail > img {
    width: 100px;
    height: 100px;
}

.image-slider-thumbnail {
    cursor: pointer;
}

.slider-single > button {
    display: none;
}

.slick-prev, .slick-next {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
    border-radius: .25rem;
}

    .slick-prev::before, .slick-next::before {
        font-size: 30px;
    }

    .slick-prev:before {
        color: rgba(0,0,0,.7);
        content: "<";
        opacity: 1;
        font-weight: bold;
    }

    .slick-next:before {
        color: rgba(0,0,0,.7);
        content: ">";
        opacity: 1;
        font-weight: bold;
    }

    .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
        color: rgba(0,0,0,.4);
    }

.slider-nav > .slick-prev {
    background-color: #f5f5f5;
    top: 50%;
    height: 100%;
    width: 1.88rem;
    left: -2.5rem;
    opacity: 1;
}

.slider-nav > .slick-next {
    background-color: #f5f5f5;
    top: 50%;
    height: 100%;
    width: 1.88rem;
    right: -2.5rem;
    opacity: 1;
}

.slider-single > .slick-prev {
    top: 50%;
    height: 10%;
    width: 1.88rem;
    left: 5rem;
    z-index: 10;
    background-color: #939393;
    opacity: .8;
    display: none !important;
}

.slider-single > .slick-next {
    top: 50%;
    height: 10%;
    width: 1.88rem;
    right: 5rem;
    z-index: 10;
    background-color: #939393;
    opacity: .8;
    display: none !important;
}

.slick-next:hover, .slick-prev:hover {
    background-color: #e0e0e0;
}

.capture-liability {
    font-size: .9rem;
    /*//font-style: italic;*/
}

.grecaptcha-info {
    font-size: .75rem;
}

.card img {
    width: 100%;
    transition: 0.3s;
    border-radius: 8px;
}

.container {
    width: 95%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.card {
    border-radius: 12px;
    padding: 3%;
    margin-bottom: 6%;
    background: #fff;
    box-shadow: 10px 10px 24px -12px rgba(0,0,0,0.75);
}

    .card:hover {
        box-shadow: inset 10px 10px 24px -12px rgba(0,0,0,0.75);
    }

        .card:hover img {
            transform: scale(0.95);
        }

.card-columns {
    column-count: 4;
}

/*PHOTOS*/
.card-container {
    border-radius: 10px;
    display: none;
}

    .card-container .card {
        border-radius: 10px;
    }

.faq-card {
    border: 2px solid rgba(0,0,0,.3);
    background-color: rgba(255,255,255,1);
    transition: background-color .3s linear;
}

.faq-card .fa {
    transition: .3s transform ease-in-out;
}

.faq-card.collapsed {
    background-color: #f7f7f7ff;
    transition: background-color .3s linear;
}

.faq-card.collapsed .fa {
    transform: rotate(-90deg);
}

.faq-card, .faq-card:hover {
    box-shadow: none;
}

.faq-header::first-letter {
    text-transform: uppercase;
}

.faq-header, .faq-description {
    color: rgba(0, 0, 0, 0.6);
}

.faq-question {
    color: rgba(0,0,0,.9);
}

.faq-answer {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}

.faq-question, .faq-answer {
    white-space: pre-line;
}

.faq-button {
    border-radius: 50rem;
    font-weight: 800;
}

.brand-modal-item > a {
    color: #337AB7 !important;
}

@keyframes fadeAndScale {
    from {
        opacity: 0;
        transform: scale(.8, .8);
    }

    to {
        opacity: 1;
        transform: scale(1, 1);
    }
}

/*Extra Small Devices*/
@media (max-width: 575.98px) {
    .section-information {
        font-size: 1.4em;
        font-weight: 500;
    }

    .override-contact-form-width {
        width: 75% !important;
    }

    .captcha-responsive {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }

    .heading {
        font-size: 2.5em;
    }

    .business-name {
        font-size: 2.5em;
    }

    .description {
        font-size: 1.25em !important;
    }

    .location-section {
        text-align: center !important;
    }

    .text-align-override {
        text-align: center !important;
    }

    .image-slider > img {
        width: auto;
        max-height: 300px;
    }

    .align-override {
        align-items: center !important;
    }

    .slider-nav {
        display: none;
    }

    .slider-single > .slick-prev {
        left: .5rem;
        display: block !important;
    }

    .slider-single > .slick-next {
        right: .5rem;
        display: block !important;
    }

    #home-section {
        /*padding-top: 115px;*/
    }

    .nav-logo {
        height: 115px;
    }

    .card-columns {
        column-count: 1;
    }

    .slider-video > .slick-prev {
        height: 15%;
        display: block !important;
    }

    .slider-video > .slick-next {
        height: 15%;
        display: block !important;
    }
}

/*Small Devices*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .section-information {
        font-size: 1.4em;
        font-weight: 500;
    }

    .override-contact-form-width {
        width: 75% !important;
    }

    .heading {
        font-size: 2.5em;
    }

    .business-name {
        font-size: 2.5em;
    }

    .description {
        font-size: 1.25em !important;
    }

    .location-section {
        text-align: center !important;
    }

    .text-align-override {
        text-align: center !important;
    }

    .image-slider > img {
        width: auto;
        max-height: 300px;
    }

    .slider-nav {
        display: none;
    }

    .align-override {
        align-items: center !important;
    }

    .slider-single > .slick-prev {
        left: 1.5rem;
        display: block !important;
    }

    .slider-single > .slick-next {
        right: 1.5rem;
        display: block !important;
    }

    #home-section {
        /*padding-top: 115px;*/
    }

    .nav-logo {
        height: 115px;
    }

    .card-columns {
        column-count: 2;
    }

    .slider-video > .slick-prev {
        display: block !important;
    }

    .slider-video > .slick-next {
        display: block !important;
    }
}


@media (max-width: 767.98px) {
    .phone-nav,
    .email-nav,
    .website-nav {
        font-size: .80rem;
        font-weight: 600;
        color: rgba(0,0,0,.7);
    }
        .phone-nav:hover
        .email-nav:hover
        .website-nav:hover {
            color: rgba(0,0,0,1);
            text-decoration: none;
        }

    .contact-nav {
        /*border: 1px solid #fff;*/
        border-width: 1px;
        border-style: solid;
        padding: 5px 30px;
        border-radius: 11px;
        font-size: .7rem;
    }

    .nav-logo {
        width: auto;
        height: 4.5rem;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .navbar {
        height: inherit;
    }

    .page-section-adjust {
        padding-top: 60px !important;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .nav-adjust {
        height: 60px !important;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .nav-logo-adjust {
        height: 55px !important;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .navbar-toggler {
        padding: .25rem .75rem;
        font-size: 1.25rem;
        line-height: 1;
        background-color: rgba(128, 128, 128, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: .25rem;
        transition: background-color 0.3s ease, border-color 0.3s ease;
        z-index: 1001;
    }

    .navbar-toggler-icon {
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
        content: "";
        background: no-repeat center center;
        background-size: 100% 100%;
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-toggler:hover {
        background-color: rgba(128, 128, 128, 0.7);
        border-color: rgba(255, 255, 255, 0.8);
    }

    .navbar-toggler .close {
        display: none;
        color: rgba(255, 255, 255, 0.9);
    }

    .navbar-toggler.collapsed .close {
        display: none;
    }

    .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        display: none;
    }

    .navbar-toggler:not(.collapsed) .close {
        display: inline;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: #fff;
        border-top: 1px solid rgba(0,0,0,.1);
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,.1);
    }

    .navbar-nav .nav-link {
        padding: .5rem 0;
        color: rgba(0,0,0,.7);
        list-style-type: none;
        padding-left: 0;
    }

    .d-xs-block.d-xl-none.fixed-top {
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,.1);
    }

    .navbar-toggler.custom-toggler {
        display: block;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: #fff;
        border-top: 1px solid rgba(0,0,0,.1);
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,.1);
    }

    .navbar-nav .nav-link {
        padding: .5rem 0;
        color: rgba(0,0,0,.7);
    }

    .d-xs-block.d-xl-none.fixed-top {
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,.1);
    }

    .services-list-wrapper {
        width: 95%;
        margin: 0 auto;
    }

    .service-image-wrapper img {
        max-width: 100px;
        max-height: 100px;
    }
}


/*Tablet*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .override-contact-form-width {
        width: 75% !important;
    }

    .heading {
        font-size: 2.5em;
    }

    .business-name {
        font-size: 2.5em;
    }

    .description {
        font-size: 1.25em !important;
    }

    .location-section {
        text-align: center !important;
    }

    .text-align-override {
        text-align: center !important;
    }

    .image-slider > img {
        width: auto;
        max-height: 450px;
    }

    .image-slider-thumbnail > img {
        width: 50px;
        height: 50px;
    }

    .slider-nav {
        display: none;
    }

    .slider-single > .slick-prev {
        left: 5rem;
        display: block !important;
    }

    .slider-single > .slick-next {
        right: 5rem;
        display: block !important;
    }

    .card-columns {
        column-count: 2;
    }

    .slider-video > .slick-prev {
        display: block !important;
    }

    .slider-video > .slick-next {
        display: block !important;
    }

    .navbar-collapse.show > .menu-container {
        border-top: 1px solid silver;
    }

    .navbar-toggler {
        padding: .25rem .75rem;
        font-size: 1.25rem;
        line-height: 1;
        background-color: rgba(128, 128, 128, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: .25rem;
        transition: background-color 0.3s ease, border-color 0.3s ease;
        z-index: 1001;
    }

    .navbar-toggler-icon {
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
        content: "";
        background: no-repeat center center;
        background-size: 100% 100%;
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-toggler:hover {
        background-color: rgba(128, 128, 128, 0.7);
        border-color: rgba(255, 255, 255, 0.8);
    }

    .navbar-toggler .close {
        display: none;
        color: rgba(255, 255, 255, 0.9);
    }

    .navbar-toggler.collapsed .close {
        display: none;
    }

    .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        display: none;
    }

    .navbar-toggler:not(.collapsed) .close {
        display: inline;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: #fff;
        border-top: 1px solid rgba(0,0,0,.1);
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,.1);
    }

    .navbar-nav .nav-link {
        padding: .5rem 0;
        color: rgba(0,0,0,.7);
        list-style-type: none;
        padding-left: 0;
    }

    .d-xs-block.d-xl-none.fixed-top {
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,.1);
    }

    .navbar-toggler.custom-toggler {
        display: block;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: #fff;
        border-top: 1px solid rgba(0,0,0,.1);
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,.1);
    }

    .navbar-nav .nav-link {
        padding: .5rem 0;
        color: rgba(0,0,0,.7);
    }

    .navbar-collapse.show > .menu-container {
        border-top: 1px solid silver;
    }

    .services-list-wrapper {
        width: 90%;
        margin: 0 auto;
    }

    .service-image-wrapper img {
        max-width: 120px;
        max-height: 120px;
    }
}

/*Desktop*/
@media (min-width: 992px) and (max-width: 1199.98px) {
    .slider-single > .slick-prev {
        left: 3rem;
        display: block !important;
    }

    .slider-single > .slick-next {
        right: 3rem;
        display: block !important;
    }

    .card-columns {
        column-count: 4;
    }

    .slider-video > .slick-prev {
        display: block !important;
    }

    .slider-video > .slick-next {
        display: block !important;
    }

    .services-list-wrapper {
        width: 85%;
        margin: 0 auto;
    }

    .service-image-wrapper img {
        max-width: 130px;
        max-height: 130px;
    }
}

/*navbar adjustments in tablet/desktop*/
@media (min-width: 768px) {
    .is-sticky {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important;
        font-size: .9rem;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

        .is-sticky .phone-nav-mobile {
            font-size: .9rem;
        }

    .page-section-adjust {
        padding-top: 150px !important;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .nav-adjust {
        height: 130px !important;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .nav-logo-adjust {
        height: 115px !important;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }
}

@media screen and (min-width: 975px) and (max-width: 1279px) {
    .image-slider-thumbnail > img {
        width: 55px;
        height: 55px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1500px) {
    .image-slider-thumbnail > img {
        width: 75px;
        height: 75px;
    }
}

@media (min-width: 1200px){
    .d-flex.flex-wrap.justify-content-end {
        display: flex;
        flex-wrap: wrap !important;
        justify-content: flex-end;
        padding-left: 200px;
        gap: 1rem;
    }

    /* Each item in the nav will shrink before wrapping */
    .website-nav, .phone-nav, .email-nav {
        flex: 0 1 auto;
    }

    /* Contact and social container */
    .d-flex.flex-wrap.justify-content-end > div:last-child {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }
}

@media (min-width: 1200px) and (max-width: 1745px){
    .mr-auto > div {
        position: absolute;
        left: 5%;
        top: -30%;
        z-index: 10;
    }
}

/* Main container */
.position-relative-services {
    /*    position: relative;
    width: 100%;*/
    position: relative;
    width: 100%;
    min-height: 300px; /* Add minimum height to contain floating images */
    overflow: hidden; /* Contain floating elements */
    margin-bottom: 20px; /* Add space between sections */
}

/* Image positioning */
.service-image-wrapper {
    position: absolute;
    left: 35px;
    top: 80px;
    z-index: 1; /* Ensure proper stacking */
}

    .service-image-wrapper img {
        max-width: 150px; /* Reduced from 200px */
        max-height: 150px; /* Added height constraint */
        height: auto;
        transition: all 0.3s ease-in-out;
        border-radius: 12px; /* Add rounded corners */
        background: #fff; /* White background */
        padding: 10px; /* Add some padding */
        box-shadow: 10px 10px 24px -12px rgba(0,0,0,0.75); /* Add shadow like cards */
    }

/* Services List */
.services-list-wrapper {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2; /* Ensure list appears above image */
}

/* Title centering */
.section-information {
    text-align: center;
    width: 100%;
}

.services-list-wrapper .col-md-4 ul li {
    text-align: left;
    padding-left: 20px;
    position: relative;
    word-wrap: break-word;
    white-space: normal;
}
    .services-list-wrapper .col-md-4 ul li:before {
        /*content: "�";*/
        position: absolute;
        left: 5px;
    }

/* Ensure list items stay within their container */
.services-list-wrapper .col-md-4 ul {
    list-style-position: inside;
    padding-left: 0;
}

@media (min-width: 1200px) {
    .services-list-wrapper {
        width: 100%;
        margin: 0 auto;
    }

    .service-image-wrapper {
        left: 50px;
    }
}

/* Only adjust width when screen gets smaller */
@media (min-width: 100px) and (max-width: 1489px) {
    .services-list-wrapper {
        width: 75%;
        margin: 0 auto;
    }
}

@media (min-width: 900px) and (max-width: 943px) {
    .services-list-wrapper {
        width: 70%;
        margin: 0 auto;
    }

    .service-image-wrapper img {
        max-width: 175px;
    }
}

@media (max-width: 899px) {
    .services-list-wrapper {
        width: 65%;
        margin: 0 auto;
    }

    .service-image-wrapper img {
        max-width: 120px;
        max-height: 120px;
    }
}

/* Mobile devices */
@media (max-width: 575.98px) {
    .position-relative-services {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .service-image-wrapper {
        position: static; /* Remove absolute positioning */
        display: flex; /* Show the wrapper */
        justify-content: center;
        margin-top: 2rem;
        order: 2; /* Move image below list */
    }

    /*.service-image-wrapper {
        max-width: 120px;
        max-height: 120px;
    }*/

    .services-list-wrapper {
        order: 1; /* Keep list at top */
        width: 90%;
        margin: 0 auto;
    }
}