﻿body {

}

.custom_button {
    background: #005a9c;
    padding: 2px 10px 2px 10px;
    color: #fff;
    align-items: center;
    border: 3px solid #005a9c;
    border-radius: 25px;
    font-size: 15px;
    font-weight:700;
}

.custom_button:hover {
    background: #fff;
    color: #005a9c;
}

.footer_icon{
     font-size:25px;
     color:#fff;
     margin-right:10px;
}

.validation_error {
    color: red!important;
    font-size: 12px!important;
    font-weight: 800;
}

.headerspace {
    padding-bottom: 10px;
}

.footer_logo {
    background: #fff;
    padding: 8px 10px 8px 10px;
    /*align-items: center;*/
    border: 2px solid #005a9c;
    border-radius: 25px;
}


/* PHOTO GALLERY */

/* LIGHTBOX */
.lightbox_image_bw {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

    .lightbox_image_bw:hover {
        -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
        filter: grayscale(0%);
    }

.lightbox_image_color {
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}

.gallery_desktop {
    display: block;
}

.gallery_mobile {
    display: none;
}


@media (max-width: 991px) {
    .gallery_desktop {
        display: none;
    }

    .gallery_mobile {
        display: block;
    }
}

/* SIMPLE CONTACT US */

.section_bacground{
    background: #333;
}

.simple_header_tag {
    color: #005a9c;
    color:white;

}

.simple_text{
    color: #fff;
}

/*DEFAULT.CSS 558 AND 562*/








/*  THIS IS THE STYLING FROM CLAUDE FROM THE CELLS */

.acs-two-col {
    display: flex;
    gap: 48px;
    align-items: center;
}

.acs-two-col-rev {
    display: flex;
    flex-direction: row-reverse;
    gap: 48px;
    align-items: center;
}

.acs-two-col-left, .acs-two-col-right {
    flex: 1;
}

.acs-rule {
    width: 48px;
    height: 3px;
    background: #1e4d8c;
    border-radius: 2px;
    margin-bottom: 16px;
}

.acs-body p {
    margin-bottom: 16px;
}

.acs-btn {
    display: inline-block;
    background: #1e4d8c;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
}

.acs-caption {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
    text-align: center;
}

.acs-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.acs-feat-card {
    background: #fff;
    border: 1px solid #dce8f0;
    border-left: 4px solid #1e4d8c;
    border-radius: 0 6px 6px 0;
    padding: 14px 16px;
}

@media (max-width: 768px) {
    .acs-two-col, .acs-two-col-rev {
        flex-direction: column;
        gap: 24px;
    }

    .acs-two-col-left, .acs-two-col-right {
        width: 100%;
    }

    .acs-feat-grid {
        grid-template-columns: 1fr;
    }
}


/* BLOCK SECTIONS  - EXAMPLE DUMPSTER BLOCK 2*/
.acs-feat-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #1e4d8c;
    margin-bottom: 8px;
}

.acs-feat-card-body {
    margin: 0;
}



/* GALLERY CSS */
.acs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.acs-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

@media (max-width: 768px) {
    .acs-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

