body {
    font-family: 'Raleway', serif;
    font-size: 1rem;
}

h1, h2, h3, h4, h5{
    font-weight:bold;
}
blockquote {
    font-size: 1.25rem;
}
/*Background colors*/
.theme-bg-color-black { /* black */
    background-color: #000000;
}
.theme-bg-color-primary { /* blue */
    background-color: #134672;
}
.theme-bg-color-secondary { /* yellow */
    background-color: #f3bc3d;
}
.theme-bg-color-tertiary { /* grey */
    background-color: #e2e2e2;
}
.theme-bg-color-gray {
    background-color: #f1f1f1; /* light grey */
}
.theme-bg-color-teal {
    background-color: #0DB7AE; /* teal */
}
.theme-bg-color-magenta {
    background-color: #C42B57; /* magenta */
}
/*End Background colors*/

/*Text colors*/
.theme-text-color-primary {
    color: #000000;
}
.theme-text-color-secondary {
    color: #FFFFFF;
}
.theme-text-color-tertiary {
    color: #f3bc3d;
}
.theme-text-color-blue {
    color: #134672; /* blue */
}

.theme-text-color-teal {
    color: #0DB7AE; /* teal */
}

/*End Text colors*/


/*Styles*/
a, a:hover {
    color: #2D598A;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
a:hover {
    color: #000;
}
a.no-link {
    text-decoration: none;
}
.button {
    display: inline-block;
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    background-color: #f3bc3d;
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}
.button span.fa {
    padding-left: 0.5rem;
}

.button:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 5px 5px #ddd;
}
/*End Styles*/


/*Layout*/
.navbar-brand img {
    width: 200px;
    }

    @media (max-width: 500px) {
        .navbar-brand img {
            width: 150px;
        }
    }

    .banner-image {
        background-size: cover;
        z-index: 100;
    }

    .page-header {
        height: 30.25rem;
        justify-content: start;
    }

    .diagonal-split-background {
        background: #212531;
        background: linear-gradient(to right bottom,#f1f1f1 50%,#E2E2E2 50%);
    }

    @media (min-width: 768px) {
        .homepage-testimonial-container {
            align-items: stretch;
            background-size: cover;
            flex-direction: row;
            justify-content: flex-end;
        }

        .homepage-testimonials {
            flex: 0 1 40%;
            padding: 90px 70px;
        }

            .homepage-testimonials, .homepage-testimonials * {
                min-height: 0;
                min-width: 0;
            }

                .homepage-testimonials .slick-dots {
                    position: relative;
                    top: 30px;
                }

        .testimonial-transparent {
            opacity: .7;
            flex: 0 1 10%;
        }
    }


    /*End Layout*/

    /*Slide Show*/
    .wrap-modal-slider {
        padding: 0 30px;
        opacity: 0;
        transition: all 0.3s;
        min-height: 150px;
    }

        .wrap-modal-slider.open {
            opacity: 1;
        }

    .slick-prev, .slick-next {
        z-index: 5;
    }

    .home-page-slide-show .slick-next {
        right: 35px !important;
    }

    .home-page-slide-show .slick-prev {
        left: 20px !important;
    }

    .slick-prev:before, .slick-next:before {
        font-size: 35px !important;
    }

    .home-page-slide-show .container-text {
        width: 80%;
        margin: auto;
    }

    .home-page-slide-show h1 {
        position: absolute;
        top: 20%;
        width: 75%;
        color: #fff;
        font-size: calc(1.375rem + 4vw);
    }
    /*@media (min-width: 576px) {
    .home-page-slide-show h1 {
        font-size: 5rem;
        font-size: calc(1.375rem + 4vw);
    }
}*/


    /*Organization slide shows*/
    .organization-slide-show .slick-track {
        display: flex;
    }

        .organization-slide-show .slick-track .slick-slide {
            display: flex;
            height: auto;
            align-items: center;
            justify-content: center;
        }
    /*End Organization slide shows*/

    /*End Slide Show*/


    /* Home Page - Organizations*/
    @media (min-width: 768px) {
        #organizations-container .row.organization-row:first-child .organization {
            border-top: none !important;
        }

            #organizations-container .row.organization-row:first-child .organization:first-child {
                border-left: none !important;
            }

            #organizations-container .row.organization-row:first-child .organization:last-child {
                border-right: none !important;
            }

        #organizations-container .row.organization-row:last-child .organization {
            border-bottom: none !important
        }

            #organizations-container .row.organization-row:last-child .organization:first-child {
                border-left: none !important;
            }

            #organizations-container .row.organization-row:last-child .organization:last-child {
                border-right: none !important;
            }
    }
    /* End Home Page - Organizations*/

    /*Homepage Services*/


    .headline h1 {
        font-size: 1.5rem;
        font-weight: 600 !important;
    }

    .home-services {
        margin-top: 1rem;
    }

        .home-services .column {
            text-align: center;
        }

        .home-services img {
            width: 100%;
            max-width: 100%;
            margin: 10% auto;
            padding: 10% 25%;
            background-color: #134672;
        }

        .home-services .column p {
            text-align: left;
        }

            .home-services .column p strong {
                font-size: 1.75rem;
                font-weight: 400;
                line-height: normal;
            }

    @media (min-width:768px) {
        .homepage-services {
            margin-top: -195px;
            padding-top: 200px;
        }
    }

    /*End Homepage Services*/


    /*Footer*/

    #footer {
        min-height: 700px;
        background-size: cover;
        background-position: bottom
    }

    #inputEmail {
        background-color: rgba(0,0,0,0.5);
        border: 2px #FFFFFF solid;
    }

        #inputEmail::placeholder {
            color: #FFFFFF;
        }

        #inputEmail:-ms-input-placeholder {
            color: #FFFFFF;
        }

        #inputEmail::-ms-input-placeholder {
            color: #FFFFFF;
        }

    #email-signup-btn {
        border-color: #FFFFFF;
    }

    #get-in-touch-btn {
        max-height: 50px;
    }
    /*End Footer*/



/* ------- Home News -------- */
.news {
    padding: 0;
    background-color: #F8F9FA;
}
.news.title {
    margin-top: 2rem;
    padding-bottom: 0;
}

.news .col-md-4.column {
    background-color: #fff;
    padding: 0;
    margin: auto;
    width: 92%;
}
@media (min-width: 992px) {
    .news {
        padding: 1rem 2rem;
    }
    .news .col-md-4.column {
        width: 29%;
        margin: 1rem;
    }
}
@media (min-width: 1200px) {
    .news .col-md-4.column {
        width: 30%;
    }
}


.news h2 {
    padding-top: 2rem;
}
.news h3 {
    margin-top: 1.5rem;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: normal;
}
.news h3 a {
    color: #000;
    text-decoration: none;
}
.news h3 a:hover {
    color: #134672;
    text-decoration: underline;
}
.news .news-item {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}
.news .news-item img {
    max-width: 100%;
    object-fit: contain;
    }
.news .news-item h3,
.news .news-item p {
    padding: 0 2rem;
}
.news .news-item .date {
    color: #134672;
    font-weight: 500;
}
.news .news-item p:last-of-type {
    padding-bottom: 2rem;
}




    /* ------- Services -------- */
    .icon-grid h3 {
        font-size: 1.25rem;
    }

    .modal-body a {
        color: #f3bc3d;
    }


    /* ------- Client Work -------- */

    /*Organizations list*/
    .organization-card div.card-footer {
        background: rgba(0, 0, 0, 0.6);
        width: 100%;
    }

    .organization-card {
        filter: grayscale(100%);
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }

        .organization-card:hover {
            filter: grayscale(0);
        }

            .organization-card:hover a {
                text-decoration: none;
                color: #FFFFFF;
            }


    @media (max-width: 500px) {
        ol.breadcrumb li {
            width: 100%;
        }

        .breadcrumb-item + .breadcrumb-item {
            padding-left: 0;
        }

            .breadcrumb-item + .breadcrumb-item::before {
                display: none;
            }
    }

    @media (min-width: 768px) and (max-width: 845px) {
        .organization-name h3 {
            font-size: 1.35rem;
        }

        ol.breadcrumb li {
            width: 100%;
        }

        .breadcrumb-item + .breadcrumb-item {
            padding-left: 0;
        }

            .breadcrumb-item + .breadcrumb-item::before {
                display: none;
            }
    }

    /*Logo Grid*/
    .container-fluid.logoGrid {
        background-color: #000;
    }

    .logoGrid h3 {
        color: #ffffff;
    }

    .logoGrid table {
        border: 0;
    }

        .logoGrid table img {
            width: 70%;
            height: auto;
            /*padding: 2.5rem;    */
            -webkit-filter: grayscale(1) invert(1);
            filter: grayscale(1) invert(1);
            opacity: 0.65;
        }



    /* ------- Client Work > Case Studies -------- */
    .the-challenge-image {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        min-height: 600px
    }

    @media (max-width: 767px) {
        .the-challenge-image {
            background-size: contain;
            background-position: top;
            min-height: 450px;
        }
    }

    .the-challenge {
        margin-top: -250px;
    }

    .the-challenge-row {
        min-height: 300px;
    }

    @media (max-width: 998px) {
        .the-challenge {
            margin-top: -350px;
        }
    }

    .the-solution-container {
        padding-bottom: 12rem !important;
    }

    .the-solution-image {
        margin-top: -271px;
    }

    @media (max-width: 991px) {
        .the-solution-container {
            padding-bottom: 6rem !important;
        }

        .the-solution-image {
            margin-top: -100px;
        }
    }


    /* -------- About Page -------- */
    #about-page .icons {
        margin: 3rem auto;
    }

    @media (max-width: 767px) {
        #about-page .icons {
            padding: 3rem 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            text-align: center;
        }
    }

    @media (min-width: 768px) and (max-width: 1000px) {
        #about-page .icons .col-md-3 {
            width: 50%;
        }
    }

    #about-page .icons img {
        width: 125px;
        height: auto;
    }

    .employee-grid .card {
        width: 120%;
    }

    @media (max-width: 575px) {
        .employee-grid .card {
            width: 75%;
        }
    }

    .employee-grid .row:last-child {
        margin-bottom: 0 !important;
    }

    .employee-grid .card img.card-img {
        border-radius: 0;
    }



    /* -------- Contact Page -------- */
    #contact-page .contact-box.row {
        min-height: 250px;
        background-color: #eee;
    }

    #contact-page .contact-box.highlight.row {
        background-color: #0DB7AE;
        color: #fff;
    }

        #contact-page .contact-box.highlight.row a {
            color: #fff;
        }

            #contact-page .contact-box.highlight.row a:hover {
                color: #000;
            }

    #contact-page .contact-box.row img {
        width: 150px;
        height: auto;
    }


/* -------- Generic Content Page -------- */
.products h2 {
    font-size: 1.25rem;
    font-weight: 400;
    color: #0DB7AE;
}
.products h2:first-of-type {
    padding-top: 0.5rem;
}
.products h2 a {
    color: #0DB7AE;
}
.products h2 a:hover {
    color: #000000;
}
.products ul {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}
.products li.no-bullet {
    margin-top: 1rem;
    list-style: none;
}



.products-group-container:nth-of-type(2),
.products-group-container:nth-of-type(3) {
    margin-top: 0;
}
.products-group-container .row {
    justify-content: center;
}
.products-group-container .col-md-4 {
    width: 90%;
    margin: 1rem;
    background-color: #F6F6F6;
    border-radius: 25px;
    }
/*.products-group-container:nth-of-type(4) .col-md-4:nth-of-type(3) {*/
/*    background-color: white;*/
/*}*/
.product-container {
    padding: 3rem 2rem;
    /*text-align: center;*/
}
.product-container img {
    width: 40%;
    height: auto;
}
.product-container h2 {
    margin: 1rem 0 1rem 0;
    font-size: 1.3rem;
    color: #000;
    line-height: 1.6rem;
}
.product-container h2 a {
    color: #000;
    text-decoration: none;
    transition: all .4s ease-in-out;
}
.product-container h2 a:hover {
    color: #2D598A;
    /*text-decoration: underline;*/
    transition: all .4s ease-in-out;
}

@media (min-width: 998px) {
    .products-group-container {
        margin-top: 2rem;
    }
    .products-group-container .col-md-4 {
        width: 28%;
    }
}



    /*
    Bootstrap overrides
    font sizes, colors etc
*/
    .breadcrumb-nav {
        display: none;
    }

    .breadcrumb-item.active {
        color: #000000;
    }

    nav ul {
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: .1rem;
    }

    .nav-link {
        border-bottom: 3px solid transparent;
        opacity: 0.75;
    }

        .nav-link:hover, .nav-link:focus {
            border-bottom: 3px solid #ccc;
            color: inherit;
            opacity: 1;
        }

        .nav-link.active {
            border-bottom: none;
            color: #e1b658;
        }

    @media (min-width: 992px) {
        .nav-link.active {
            border-bottom: 3px solid #e1b658;
            color: #000000;
        }
    }

    @media (min-width: 992px) {
        .navbar .nav {
            justify-content: space-around;
            width: 80%;
            flex-direction: row !important;
        }

        .breadcrumb-nav {
            margin-left: 8em;
        }

        .modal-lg {
            max-width: 85%;
        }

            .modal-lg .modal-content {
                padding: 2rem;
            }
    }

    .navbar {
        margin-bottom: -28px;
        z-index: 1;
    }

    .card-bg-full.card .card-header {
        background-color: transparent !important;
    }

    .btn-close {
        background: none !important;
    }
    /*End Bootstrap overrides*/




    /* hidden sections */
    .mission {
        display: none;
    }
    .hide-me {
        display: none;
    }