﻿
/* Top Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header {
    background-color: var(--nav-bg-color);
    position: relative;
}
.top-bar {
    height: var(--nav-top-height);
    font-size: 1.4rem;
    font-weight: 400;
}
.top-bar a {
    color: #fff;
    display: inline-block;
    margin-right: 5.5rem; 
    padding-top: 1rem;
    position: relative;
}
    .top-bar a.active {
        border-top: 2px solid #fff;
        font-weight: 600;
    }

    .top-bar a::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        border-radius: 0;
        background-color: #fff;
        top: -3px;
        left: 0;
        transform-origin: right;
        transform: scaleX(0);
        transition: transform .3s ease-in-out;
    }

    .top-bar a:hover::before {
        transform-origin: left;
        transform: scaleX(1);
    }

img.site-logo {
    height: 3rem;
}
.top-nav {
    display: grid;
    grid-template-columns: 35rem 1fr;
    height: 10.5rem;
    align-items: end;
    padding-bottom: 2.5rem;
}
.top-nav > div:nth-child(2) {
    display: none;
}
    .top-nav > div:nth-child(3) {
        justify-self:end;
    }
.top-nav .top ul {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
    
}
    .top-nav .top ul li {
        margin: 0;
        list-style: none;
        margin-left: 3.5rem;
    }
        .top-nav .top ul li a {
            color: #fff;
            font-size: 1.4rem;
            position: relative;
        }
        .top-nav .top ul li a::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            border-radius: 0;
            background-color: #fff;
            bottom: -3px;
            left: 0;
            transform-origin: right;
            transform: scaleX(0);
            transition: transform .3s ease-in-out;
        }
    .top-nav .top ul li a:hover::before {
        transform-origin: left;
        transform: scaleX(1);
    }
            .top-nav .top ul li a.active::before {
                transform-origin: left;
                transform: scaleX(1);
            }
    .top-nav .bottom ul {
        margin: 0;
        display: flex;
    }
    .top-nav .bottom ul li {
        margin: 0;
        list-style: none;
        margin-left: 4.4rem;
    }
        .top-nav .bottom ul li a {
            color: #fff;
            font-size: 1.8rem;
            position: relative;
        }
            .top-nav .bottom ul li a::before {
                content: '';
                position: absolute;
                width: 100%;
                height: 2px;
                border-radius: 0;
                background-color: #fff;
                bottom: -3px;
                left: 0;
                transform-origin: right;
                transform: scaleX(0);
                transition: transform .3s ease-in-out;
            }
        .top-nav .bottom ul li a:hover::before {
            transform-origin: left;
            transform: scaleX(1);
        }
            .top-nav .bottom ul li a.active::before {
                transform-origin: left;
                transform: scaleX(1);
            }

        .top-nav .bottom ul li img {
            width: 2.4rem;
        }

.context-icon {
    align-self: end;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(135deg) translate(7px, -8px);
    transform: rotate(135deg) translate(7px, -8px);
    background-color: #fff;
}

.change .bar2 {
    opacity: 0;
    margin-right: 0;
    background-color: #fff;
}

.change .bar3 {
    -webkit-transform: rotate(-135deg) translate(7px, 8px);
    transform: rotate(-135deg) translate(7px, 8px);
    background-color: #fff;
}
.top-bar-m {
    display: none;
}
.mobile-site-selection-list {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: var(--nav-bg-color);
    left: 0;
    padding: 1.5rem 2rem;
    color: #fff;
    z-index: 100;
}
.mobile-site-selection-list a {
    display: block;
    margin-top: 3.5rem;
}
    .mobile-site-selection-list img {
        height: 4rem;
    }

@media (max-width: 1419px) {
    .search-icon-d {
        display: none;
    }
    .top-nav {
        height: 8rem;
    }
    .top-nav > div:nth-child(2) {
        display: flex;
        justify-self: end;
    }
    .top-nav > div:nth-child(3) {
        display: none;
    }
    .top-nav .main-menu {
        position: absolute;
        top: 12.5rem;
        width: 100vw;
        height: calc(100vh - 12.5rem);
        background-color: var(--nav-bg-color);
        left: 0;   
        z-index: 1000;
    }
        .top-nav .main-menu > div {
            display: flex;
            flex-direction: column;
        }
        .top-nav .main-menu > div > div:nth-child(1) {
            order: 2;
        }
        .top-nav .main-menu > div > div:nth-child(2) {
            order: 1;
        }
    .top-nav > div:nth-child(2) {
        display: flex;
        justify-self: end;
    }
    .search-icon-m img {
        width: 3.5rem;
        margin: 1rem 1.5rem 0 0;
        display: none;
    }
    .top-nav .top ul,
    .top-nav .bottom ul {
        flex-direction: column;
        padding: 0 0 0 2rem;
        margin: 0;
    }
        .top-nav .top ul li,
        .top-nav .bottom ul li {
            margin: 0 0 1.5rem 0;
        }
            .top-nav .top ul li a,
            .top-nav .bottom ul li a {
                font-size: 2rem;
            }
}
@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    .top-bar-m {
        display: block;
    }
        .top-bar-m .selected-site {
            color: #fff;
            font-size: 1.6rem;
            padding: 1.5rem 0;
        }
        .top-bar-m .mobile-site-selection-list {
            display: none;
        }
    .top-nav {

        grid-template-columns: 1fr 1fr;
    }
    img.site-logo {
        height: 2rem;
    }
}
@media (max-width: 374px) {
    img.site-logo {
        height: 1.6rem;
    }
}


/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.footer {

}
    .footer .footer-menu {
        background-color: #969799;
    }
    .footer .footer-menu ul {
        display: flex;
        margin: 0;
        padding: 0;
    }
        .footer .footer-menu li {
            list-style: none;
            padding: 1.8rem 0;
            margin-right: 7rem;
        }
        .footer .footer-menu li a {
            color: #fff;
            font-size: 1.8rem;
        }



    .footer .footer-contact {
        background-color: #D1D2D3;
        padding: 4rem 0;
        line-height: 1.3;
    }
        .footer .footer-contact .footer-contact-grid {
            display: grid;
            grid-template-columns: 1.1fr 2fr;
            grid-gap: 2rem;
        }
        .footer .footer-contact .footer-contact-grid h4 {
            font-weight: 600;
            font-size: 2.2rem;
        }
        .footer .footer-contact .footer-contact-grid .form-group {
            width: 45%;
            display: inline-block;
        }
            .footer .footer-contact .footer-contact-grid .form-group label {
                font-weight: 400;
                font-size: 1.4rem;
            }
            .footer .footer-contact .footer-contact-grid .form-group button {
                border-radius: .3rem;
                background-color: #53585F;
                border-color: #53585F;
                margin-top: 1rem;
            }
        .footer .footer-contact .footer-contact-grid .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            font-size: 1.6rem;
            grid-gap: 2rem;
        }

    .footer .red-menu-bar {
        background-color: #DA291C;
        color: #fff;
    }
        .footer .red-menu-bar .red-bar-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
        }
        .footer .red-menu-bar .red-bar-grid img {
            height: 2.8rem;
        }
            .footer .red-menu-bar .red-bar-grid > div:nth-child(1) a {
                display: inline-block;
                padding: 1.5rem 0;
                margin-right: 1.5rem;
                color: #fff;
            }
            .footer .red-menu-bar .red-bar-grid > div:nth-child(2) {
                display: flex;
            }
            .footer .red-menu-bar .red-bar-grid > div:nth-child(2) > div {
                margin-right: 3rem;
            }
            .footer .red-menu-bar .red-bar-grid > div:nth-child(2) a {
                display: inline-block;
                color: #fff;
            }
            .footer .red-menu-bar .red-bar-grid a.active {
                border-top: 2px solid #fff;
            }

@media (max-width: 1419px) {
    .footer .footer-menu li {
        list-style: none;
        padding: 1.8rem 0;
        margin-right: 4rem;
    }
    .footer .footer-contact .footer-contact-grid {
        grid-template-columns: 1.7fr 2fr;
    }
    .footer .footer-contact .footer-contact-grid .form-group {
        width: 45%;
    }
    .footer .red-menu-bar .red-bar-grid {
        grid-template-columns: 1fr 3fr;
    }
}
@media (max-width: 1023px) {
    .footer .footer-menu {
        display: none;
    }
    .footer .footer-contact .footer-contact-grid {
        grid-template-columns: 1fr 2fr;
        grid-gap: 4rem;
    }
        .footer .footer-contact .footer-contact-grid .form-group {
            width: 100%;
        }
        .footer .footer-contact .footer-contact-grid .form-group input {
            width: 100%;
        }
    .footer .red-menu-bar .red-bar-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .footer .footer-contact .footer-contact-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 4rem;
    }
    .footer .footer-contact .footer-contact-grid .location-grid {
        grid-template-columns: 1fr;
    }
    .footer .red-menu-bar .red-bar-grid > div:nth-child(2) {
        display: block;
    }
        .footer .red-menu-bar .red-bar-grid > div:nth-child(2) > div {
            margin-right: 0;
        }
        .footer .red-menu-bar .red-bar-grid > div:nth-child(2) a {
             display: inline; 
             padding: 0; 
             margin-right: 0; 
        }
}
@media (max-width: 550px) {
    .footer .footer-contact .footer-contact-grid {
        grid-template-columns: 1fr ;
    }
}

/* Home Page */
.home .home-hero-widget {
    height: 88rem;
    background-size: cover !important;
    background-position: center center !important;
}

    .home .home-hero-widget .sidebar-selector-grid {
        display: grid;
        grid-template-columns: 40%;
        height: 100%;
        transition-duration: 3s;
        transition: all .3s ease-in-out;
    }
        .home .home-hero-widget .sidebar-selector-grid.open {
            grid-template-columns: 60%;
            transition-duration: 3s;
            transition: all .3s ease-in-out;
        }

        .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) {
            background-color: rgb(255,255,255, .75);
            padding: 12rem 0 4rem 0;
            padding-left: calc(((100vw - var(--wrap-size)) / 2) - 12px);
            position: relative;
        }

            .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .category {
                font-size: 2.2rem;
                margin-bottom: 3rem;
                cursor: pointer;
            }

                .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .category.active {
                    font-weight: 600;
                }

            .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .blue-bar {
                position: absolute;
                width: 4.5rem;
                bottom: 0;
                right: 0;
            }

                .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .blue-bar .t {
                    width: 0;
                    height: 0;
                    border-left: 4.5rem solid transparent;
                    border-right: 0px solid transparent;
                    border-bottom: 3.5rem solid rgb(0 60 113 / 70%);
                }

                .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .blue-bar .r {
                    background-color: rgb(0 60 113 / 70%);
                    height: 34rem;
                    transition: all .3s ease-in-out;
                }
                    .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .blue-bar .r.open {
                        height: 62rem;
                        transition: all .3s ease-in-out;
                    }

            .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .grey-bar {
                position: absolute;
                width: 4.5rem;
                bottom: 0;
                right: -4.5rem;
                background-color: rgb(96 96 96 / 70%);
                height: 100%;
            }

            .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .green-bar {
                position: absolute;
                width: 4.5rem;
                bottom: 0;
                right: -9rem;
            }

                .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .green-bar .t {
                    width: 0;
                    height: 0;
                    border-left: 0px solid transparent;
                    border-right: 4.5rem solid transparent;
                    border-bottom: 3.5rem solid rgb(13 103 71 / 72%);
                }

                .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .green-bar .r {
                    background-color: rgb(13 103 71 / 72%);
                    height: 62rem;
                    transition: all .3s ease-in-out;
                }
                    .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .green-bar .r.open {
                        height: 34rem;
                        transition: all .3s ease-in-out;
                    }
            .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .content {
                display: grid;
                grid-template-columns: 1fr;
                transition: all .3s ease-in-out;
            }
            .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company-pane {
                position: absolute;
                top: 0;
                right: 0;
                height: 100%;
                background-color: rgb(255 255 255 / 45%);
                padding: 10rem 7rem 0 7rem;
                opacity: 0;
                transition: opacity .3s ease-in-out;
                width: 45rem;
            }
                .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company-pane.open {
                    opacity: 1;
                    transition: opacity .3s ease-in-out;
                }
            .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company-pane h2 {
                font-size: 2.6rem;
                font-weight: 900;
                margin-bottom: 2rem;
                line-height: 3.2rem;
            }
            .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company img {
                height: 5rem;
                margin-bottom: 1rem;
            }
            .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company p {
                font-size: 1.8rem;
                line-height: 2.2rem;
            }
            .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company a {
                margin-bottom: 4rem;
                border: none;
            }
.category-m {
    display: none;
}
.home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company-pane {
    display: none;
}
@media (min-width: 2561px) {
    .home .home-hero-widget .sidebar-selector-grid {
        grid-template-columns: 45%;
    }
}
@media (max-width: 1440px) {
    .home .home-hero-widget .sidebar-selector-grid {
        grid-template-columns: 40%;
    }
        .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .content {
            padding-left: 1.5rem;
        }
}
@media (max-width: 1440px) {
    .home .home-hero-widget .sidebar-selector-grid {
        grid-template-columns: 40%;
    }

        .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .content {
            padding-left: 1.5rem;
        }
}
@media (max-width: 1439px) {
    .home .home-hero-widget .sidebar-selector-grid {
        grid-template-columns: 45%;
    }
        .home .home-hero-widget .sidebar-selector-grid.open {
            grid-template-columns: 88%;
        }
}
@media (max-width: 1023px) {
    .home .home-hero-widget {
        height: initial;
    }
    .blue-bar, .green-bar, .grey-bar {
        display: none;
    }
    .home .home-hero-widget .sidebar-selector-grid {
        grid-template-columns: 1fr;
    }
        .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) {
            padding: 0;
        }
        .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .content {
            display: none;
        }
            .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company-pane {
                display: block;
                opacity: 1;
                position: initial;
                width: 100%;
                padding: 0;
            }
        .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company-pane .company {
            display: none;
            opacity: 1;
        }
    .category-m {
        display: block;
        background-color: #EAEAEA;
        padding: .5rem 2rem;
        font-size: 1.6rem;
        letter-spacing: .5px;
    }
        .category-m.active {
            background-color: #D1D2D3;
            font-weight: 900;
        }
    .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company-pane h2 {
        display: none;
    }
    .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company-pane .company {
        padding: 2rem 2rem 0 2rem;
    }
    .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company p {
        font-size: 1.6rem;
    }
    .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) .company a {
        margin-bottom: 4rem;
    }
}
@media (min-width: 2000px) {
    .home .home-hero-widget .sidebar-selector-grid > div:nth-child(1) {
        padding-left: calc(((2000px - var(--wrap-size)) / 2) - 12px);
    }
}

/* Home Services Hero - PT, TT, FSS sites */

.home-services .services-hero {
    height: 87rem;
    background-size: cover !important;
    background-position: center center !important;
}

.home-services .home-services-grid {
    display: grid;
    grid-template-columns: 37%;
    height: 100%;
}

    .home-services .home-services-grid > div {
        background-color: rgb(0 104 72 / 65%);
        position: relative;
        padding-top: 11rem;
    }

    .home-services .home-services-grid > div > div {
        color: #fff;
    }
        .home-services .home-services-grid > div > div h4 {
            font-size: 2.2rem;
            margin-bottom: 3.5rem;
            padding-left: calc(((100vw - var(--wrap-size)) / 2) - 12px);
            cursor: pointer;
        }
        .home-services .home-services-grid > div > div .details {
            background-color: rgb(0 104 72 / .85);
            padding: 5rem 13rem 2.5rem 0;
            padding-left: calc(((100vw - var(--wrap-size)) / 2) - 12px);
            margin-top: -7.5rem;
            margin-bottom: 1rem;
        }
        .home-services .home-services-grid > div > div a {
            font-size: 1.6rem;
            display: inline-block;
            color: #fff;
            font-weight: 500;
            border: 2px solid #fff;
            padding: .2rem 5rem;
            border-radius: 1rem;
            margin-top: 2rem;
        }

        .home-services .home-services-grid > div:nth-child(1) .middle-bar {
            position: absolute;
            width: 4.5rem;
            top: 0;
            right: -4.5rem;
        }

            .home-services .home-services-grid > div:nth-child(1) .middle-bar .t {
                width: 0;
                height: 0;
                border-right: 0px solid transparent;
                border-left: 4.5rem solid rgb(98 187 70 / 0.7);
                border-bottom: 3.5rem solid transparent;
            }

            .home-services .home-services-grid > div:nth-child(1) .middle-bar .r {
                background-color: rgb(98 187 70 / 0.7);
                height: 48.5rem;
            }

@media (max-width: 1440px) {
    .home-services .home-services-grid > div > div h4 {
        padding-left: 2rem;
    }

    .home-services .home-services-grid > div > div .details {
        padding-left: 2rem;
    }
}
@media (max-width: 1024px) {
    .home-services .services-hero {
        height: 65rem;
    }
    .home-services .home-services-grid {
        grid-template-columns: 50%;
    }
}
@media (max-width: 768px) {
    .home-services .home-services-grid {
        grid-template-columns: 60%;
    }
}
@media (max-width: 550px) {
    .home-services .home-services-grid {
        grid-template-columns: calc(100% - 45px);
    }
        .home-services .home-services-grid > div > div .details {
            padding: 5rem 1rem 2.5rem 2rem;
        }
        .home-services .home-services-grid > div > div h4 {
            font-size: 1.8rem;
        }
}

.home .home-about-hero-grid {
    margin-top: 7rem;
    display: grid;
    grid-template-columns: 2fr 4.5rem 1.2fr;
    min-height: 75rem;
}
    .home .home-about-hero-grid > div:nth-child(1) {
        position: relative;
        min-height: 55rem;
    }
        .home .video-container iframe, .page.about .video-container iframe .embed-container object, .page.about .video-container iframe .embed-container embed {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
/*    .home .home-about-hero-grid > div:nth-child(2) {
        background-color: #56C4C2;
    }
        .home .home-about-hero-grid > div:nth-child(2) .t {
            width: 0;
            height: 0;
            border-left: 4.5rem solid transparent;
            border-right: 4.5rem solid transparent;
            border-top: 3.5rem solid rgb(255 255 255);
        }*/
    .home .home-about-hero-grid > div:nth-child(3) {
        padding: 4rem 0 0 7rem;
    }
        .home .home-about-hero-grid > div:nth-child(3) h1 {
            font-size: 7rem;
            line-height: 7.2rem;
            font-weight: 900;
            color: #53585F;
        }
        .home .home-about-hero-grid > div:nth-child(3) p {
            max-width: 42rem;
        }
        .home .home-about-hero-grid > div:nth-child(3) a.button {
            margin: 5rem 0 7rem 0;
        }

@media (max-width: 1439px) {
    .home .home-about-hero-grid {
        grid-template-columns: 1fr 3.5rem 1fr;
        min-height: 5rem;
    }
        .home .home-about-hero-grid > div:nth-child(3) {
            padding: 2rem 0 0 7rem;
        }
            .home .home-about-hero-grid > div:nth-child(3) h1 {
                font-size: 5rem;
                line-height: 5.2rem;
            }
            .home .home-about-hero-grid > div:nth-child(3) a.button {
                margin: 3rem 0 3rem 0;
            }
}
@media (max-width: 1023px) {
    .home .home-about-hero-grid {
        grid-template-columns: 1fr 3.5rem 1fr;
        min-height: 5rem;
    }

        .home .home-about-hero-grid > div:nth-child(3) {
            padding: 2rem 0 0 4rem;
        }

            .home .home-about-hero-grid > div:nth-child(3) h1 {
                font-size: 3.6rem;
                line-height: 3.8rem;
            }

            .home .home-about-hero-grid > div:nth-child(3) a.button {
                margin: 1.5rem 0 1.5rem 0;
            }
}
@media (max-width: 767px) {
    .home .home-about-hero-grid {
        grid-template-columns: 1fr 3.5rem;
        min-height: 5rem;
        margin: 4.5rem -2rem 0 -2rem;
    }
        .home .home-about-hero-grid > div:nth-child(3) {
            padding: 4rem 2rem 0 2rem;
        }
        .home .home-about-hero-grid > div:nth-child(1) {
            min-height: 25rem;
        }
        .home .home-about-hero-grid > div:nth-child(2) .t {
            width: 0;
            height: 0;
            border-left: 3.5rem solid transparent;
            border-right: none;
            border-top: 2.5rem solid rgb(255 255 255);
        }
            .home .home-about-hero-grid > div:nth-child(3) h1 {
                font-size: 4.8rem;
                line-height: 5.2rem;
            }
            .home .home-about-hero-grid > div:nth-child(3) p {
                font-size: 1.8rem;
            }
            .home .home-about-hero-grid > div:nth-child(3) a.button {
                margin: 1em 0 3rem 0;
            }
}
.home .projects {
    margin-top:5.5rem;
}
.home .projects .project {
    height: 75rem;
    width: 100%;
    margin-bottom: 0;
}

.home .projects .project-information {
    height: 12rem;
    width: 100%;
}
    .home .projects .featured-bar  {
        display: flex;
        color: #fff;
        font-size: 3rem;
        font-weight: bold;   
    }
        .home .projects .featured-bar .r {
            height: 6rem;
            background-color: rgb(86 196 194 / 70%);
            padding-top: .5rem;
            padding-left: calc(((100vw - var(--wrap-size)) / 2) - 12px);
            padding-right: 11.5rem;
        }
        .home .projects .featured-bar .t {
            width: 0;
            height: 0;
            border-left: 0px solid transparent;
            border-right: 5.5rem solid transparent;
            border-bottom: 6rem solid rgb(86 196 194 / 70%);
        }
    .home .projects .project-information-grid {
        justify-items: left;
        margin: 0;
        align-items: center;
        padding: 2rem 0;
    }
    .home .projects .project-information-grid h5 {
        margin: 0;
    }
        .home .projects .project-information-grid p {
            margin: 0;
        }
.home .projects .project-information {
    height: initial;
    width: 100%;
}
.home .projects .project-click {
    margin-top:0;
}
    .home .projects .additional-details .grid-item {
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .home .home-news {
        margin-top: 6.5rem;
    }
.home .home-news h5 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}
    .home .home-news .home-news-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 7.5rem;
    }
        .home .home-news .home-news-grid a > div {
            position: relative;
            height: 31rem;
            background-repeat: no-repeat;
            background-size: cover !important;
        }
            .home .home-news .home-news-grid a > div > div {
                position: absolute;
                width: 100%;
                min-height: 10rem;
                bottom: 0;
                background: rgba(255, 255, 255, 0.8);
                font-size: 1.8rem;
                line-height: 2.2rem;
                font-weight: 600;
                padding: 1.5rem 2.5rem;
                color: #000;
            }

.home .home-companies {
    margin-top: 12rem;
}
    .home .home-companies .companies {
        position: relative;
        background-color: #ECECED;
    }
        .home .home-companies .companies .company-bar {
            background-color: #56C4C2;
            width: 4.5rem;
            position: absolute;
            left: 0;
            height: 100%;
        }
            .home .home-companies .companies .company-bar .t {
                width: 0;
                height: 0;
                border-left: 0 solid transparent;
                border-right: 4.5rem solid transparent;
                border-top: 3.5rem solid #fff;
            }
            .home .home-companies .companies .company-content {
                padding: 6rem 0 4rem 0;
            }
                .home .home-companies .companies .company-content h5 {
                    font-size: 3rem;
                    font-weight: 900;
                    margin-bottom: 5rem;
                }
                .home .home-companies .companies .company-content .company-grid {
                    display: grid;
                    grid-template-columns: 1fr 1fr 1fr;
                    grid-gap: 10rem;
                }
                .home .home-companies .companies .company-content .company-grid img {
                    height: 6rem;
                }
                    .home .home-companies .companies .company-content .company-grid a {
                        display: block;
                        color: #000;
                        font-size: 2.4rem;
                        font-weight: 600;
                        margin: 3.5rem 0 2rem 0;
                    }
                    .home .home-companies .companies .company-content .company-grid p {
                        font-size: 1.6rem;
                    }

@media (max-width: 1525px) {
    .home .home-companies .companies .company-content {
        padding: 6rem 0 4rem 6.5rem;
    }
}
@media (max-width: 1419px) {
    .home .projects .featured-bar .r {
        padding-left: 2rem;
    }
    .home .home-news .home-news-grid > div > div {
        position: absolute;
        width: 100%;
        min-height: 10rem;
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
    .home .home-news .home-news-grid {
        grid-gap: 3rem;
    }
    .home .home-companies .companies .company-content .company-grid {
        grid-gap: 2rem;
    }
        .home .home-companies .companies .company-content .company-grid a {
            font-size: 1.8rem;
            margin: 1.5rem 0 1.5rem 0;
        }
        .home .home-companies .companies .company-content .company-grid img {
            height: 4rem;
        }
}
@media (max-width: 1024px) {
    .home .home-news .home-news-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1023px) {
    .home .projects .project {
        height: 60rem;
    }
    .home .projects .project-information-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
        .home .projects .project-information-grid p,
        .home .projects .project-information-grid a {
            font-size: 1.4rem;
        }
    .home .projects .project-information-grid > div:nth-child(4) {
        grid-column: 1/6;
        justify-self: center;
        margin-top: 2rem;
    }
    .home .home-companies .companies .company-content .company-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .home .projects .project {
        height: 50rem;
    }
    .home .projects .project-information-grid p {
        font-size: 1.4rem;
    }
    .home .projects .project-information-grid {
        grid-template-columns: 1fr;
        grid-gap: 1.5rem;
    }
        .home .projects .project-information-grid > div:nth-child(4) {
            grid-column: initial;
            justify-self: left;
            margin-top: 0;
        }
    .home .projects .featured-bar {
        font-size: 2.2rem;
    }
        .home .projects .featured-bar .r {
            height: 4rem;
            padding-top: .5rem;
            padding-right: 4rem;
        }
        .home .projects .featured-bar .t {
            border-bottom: 4rem solid rgb(86 196 194 / 70%);
        }
        .home .projects .featured-bar .t {
            border-right: 3.5rem solid transparent;
        }
    .home .projects .icon {
        margin-top: 0.5rem;
        max-height: initial;
        width: 5rem;
    }
    .projects .vertical-line {
        display: none;
    }
    .home .projects .project-information-grid p {
        margin: 0;
    }
    .home .home-companies .companies .company-content h5 {
        font-size: 2.4rem;
        margin-bottom: 4rem;
    }
    .home .home-companies .companies .company-content {
        padding: 6rem 0 4rem 4.5rem;
    }
}
@media (max-width: 374px) {
    .home .home-companies .companies .company-content .company-grid a {
        font-size: 1.6rem;
        margin: 1.5rem 0 1.5rem 0;
    }
}
@media (min-width: 2000px) {
    .home .projects .featured-bar .r {
        padding-left: calc(((2000px - var(--wrap-size)) / 2) - 12px);
    }
    .home-services .home-services-grid > div > div h4 {
        padding-left: calc(((2000px - var(--wrap-size)) / 2) - 12px);
    }
    .home-services .home-services-grid > div > div .details {
        padding-left: calc(((2000px - var(--wrap-size)) / 2) - 12px);
    }
}

/* Legal Page */
.legal.page {
    padding: 5rem 0;
}
.legal.page h1 {
    font-weight: 600;
    margin-bottom: 3rem;
}

/* Careers Page */
.careers.about .about-hero {
    height: 80rem;
}
.careers.about .about-description p {
    color: #FFFFFF;
    font-size: 1.8rem;
}
.careers.about .hero-slider .about-description p {
    color: #FFFFFF;
    font-size: 2.2rem;
    line-height: 2.8rem;
}
.careers.about .hero-slider .caption h1 p {
    font-size: 2rem;
    line-height: 2.6rem;
    margin-top: 2rem;
    color: #fff;
    font-weight: 600;
}
.careers.about .hero-slider .about-hero-grid > div {
    background-color: rgb(167,168,169, .9);
}
.careers.about .about-hero-grid {
    grid-template-columns: 40%;
}
    .careers.about .about-hero-grid > div {
        background-color: rgb(167,168,169, .75);
    }
        .careers.about .about-hero-grid > div:nth-child(1) .teal-bar1 .r {
            background-color: rgba(0, 129, 143, 0.7);
        }
        .careers.about .about-hero-grid > div:nth-child(1) .teal-bar1 .t {
            border-left: 4.5rem solid rgba(0, 129, 143, 0.7);
        }
.careers.about .about-hero-grid ul li {
    color: #fff;
}
    .careers.about .jobs {
        padding: 7rem 0;
    }
.careers.about .jobs h3 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 900;
}
        .careers.about .jobs .bottom-text {
            margin-top: 3rem;
        }
        .careers.about .jobs .bottom-text h6 {
            margin-bottom: 1rem;
            font-size: 2.2rem;
            font-weight: 900;
        }

@media (max-width: 1419px) {
    .careers.about .about-hero-grid {
        grid-template-columns: 50%;
    }
}

@media (max-width: 1024px) {
    .careers.about .about-hero {
        height: 70rem;
    }
    .careers.about .about-hero-grid {
        grid-template-columns: 70%;
    }
}

@media (max-width: 767px) {
    .careers.about .about-hero-grid {
        grid-template-columns: calc(100% - 4.5rem);
    }
}

@media (max-width: 550px) {
    .careers.about .about-hero {
        height: 85rem;
    }
}
@media (max-width: 320px) {
    .careers.about .about-hero {
        height: 100rem;
    }
}