/*
Theme Name: parsons-theme
Author: Michael Soriano
Author URI: http://michaelsoriano.com/
Version: 2.1
Repository: https://github.com/parsons-cloud-platform-apps/parsons-theme
*/

/*****OVERRIDE FOR CONTAINER WIDTH****/
@media (min-width: 1230px){
    .container {
        width:1200px;       
    }
}
/*****END OVERRIDE FOR CONTAINER WIDTH****/

body {
    /*background:#ebebeb;*/
    font-family: "franklin-gothic-urw", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000;
    font-size: 16px;
    font-weight:300;
    padding-top:77px;
}
body.page-template-tpl-full-screen {
    background:#fff;
    padding-top:0;
}

#main-header-top,
#site-wrapper {
    max-width:1920px;
    margin:0 auto;
    position: relative; 
}
.skip-link{
    position: fixed;
    top:0;
    right:0;
    left:0;
    text-align: center;
    z-index: 99999;
    padding: 5px;
    background: #000;
    font-size: 12px;
    translate: 0 -100%;
    transition: translate 150ms ease-in-out;
}
.skip-link:focus {
    translate:0;
}

header#main-header-top {    
    height: 77px;
    position: fixed;
    top: 0;
    transition: top 0.1s ease-in-out;
    width: 100%;
    z-index: 9999;
}

header#main-header-top.nav-upward {
    top: -77px; 
}

header#main-header-top .navbar-header {
    background: #081d31; /*gets rid of the ugly white border in mobile*/
}

a.hashedLink:hover, 
a.hashedLink:focus {
  cursor: default;  
} 

/*****sticky header when logged in*****/
body.logged-in header#main-header-top {
    padding-top: 32px;
}

.bg-warning {
    border: 1px solid #f5ecc1;
    padding:15px 25px;
}
.greybg {
    background:#efefef;
    overflow: hidden;
    clear: both;
    display: block;
}
.navbar {
    border-radius: 0;
    border:none;
    /*border-bottom: 1px solid #e7e7e7;*/
}
.navbar-default {
    background:#081D31;
}
 
header .navbar.shadow {
    box-shadow: 0 0 10px rgba(0,0,0,0.4);  
}

header .navbar{
    height: 77px;
    padding-bottom: 30px;
    margin-bottom:0;
}

header .container-fluid {
    position: relative;
    top: 21px;
    padding-right: 30px;
    padding-left: 30px;
}
header .navbar-brand {
    padding: 0 0 0 0;
    width:179px;
    height: 21px;
    position: relative;
    top: 2px;
    left: 15px;
}
header .navbar-brand img {
    width:179px;
}

header .nav > li > a {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 8px;
    padding-bottom: 8px;
}
header .navbar-default .navbar-nav > .active > a, 
header .navbar-default .navbar-nav > .active > a:hover, 
header .navbar-default .navbar-nav > .active > a:focus {
    background:transparent;
    color: #50bf34;
}

.navbar-default .navbar-nav > li > a, 
.navbar-default .navbar-nav > li > a:hover, 
.navbar-default .navbar-nav > li > a:focus, 
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    color: #c2c2c2;
}
.navbar-default .navbar-nav > li > a .caret {
    color: #ccc;
    display: none;
}

.navbar-default .navbar-nav > .open > a, 
.navbar-default .navbar-nav > .open > a:hover, 
.navbar-default .navbar-nav > .open > a:focus {
    position: relative;
    top: 1px;
    z-index: 99999;
    background: none;
    /* box-shadow: inset -1px 1px 0px 0px #d4d4d4, inset 1px 1px 0px 0px #d4d4d4; */
    padding-bottom: 28px;
}

 .dropdown-menu::before {
    content: " ";
    width: 0; 
    height: 0; 
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 18px solid #f7f7f7;
    position: absolute;
    top: -17px;
    left: 35px;
} 
.dropdown-menu {
    left: auto;
    padding: 13px 0 17px;
    border-radius:0;
    box-shadow: none;
    min-width: 298px;
    background:#f7f7f7;
    border:none;
    z-index: 1001;
}
.dropdown-menu > li > a:hover, 
.dropdown-menu > li > a:focus {
    background:none;
    color: #50bf34;
}

.dropdown-menu > .active > a, 
.dropdown-menu > .active > a:hover, 
.dropdown-menu > .active > a:focus {
    background-color: transparent;
    color: #50bf34;
}

.navbar-default .navbar-toggle {
    border-color:transparent;
}
.navbar-default .navbar-toggle:hover, 
.navbar-default .navbar-toggle:focus {
    background:transparent;
}

.mobile-ticker {
    color:#c2c2c2;
    position: absolute;
    right: 96px;
    top: 6px;
}

.mobile-ticker:hover, 
.mobile-ticker:active, 
.mobile-ticker:focus, 
.mobile-ticker:visited {
    color:#c2c2c2;
    text-decoration:none;
}


/**animate burger to cross*/
header .navbar-toggle {
    width: 30px;
    height: 26px;
    top: -1px !important;
    padding:0 0 2px 0;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
header .navbar-toggle span.icon-bar {
    position:absolute;  
    width: 28px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}


header .navbar-toggle span:nth-child(1) {
    top: 0px;    
} 

header .navbar-toggle span:nth-child(3) {
    top: 4px;
}

header .navbar-toggle.open-icon-bar span:nth-child(1) { 
    display: none;
}

header .navbar-toggle.open-icon-bar span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 6px;
}

header .navbar-toggle.open-icon-bar span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 6px;
} 

header .navbar-toggle .icon-bar {
    height: 2px;
}

header .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 3px;
}

/**end burger to cross*/

.navbar-default .navbar-form {
    border-color: #b7b7b7;
    width: 268px;
}

form.search-form {
    border:1px solid #969696;
    padding-left: 0;
    padding-right: 0;
    margin-right: -15px;
    margin-top: 2px;
}

form.search-form input[type="text"] {
    border: none;
    box-shadow:none;   
    width: 227px;   
}
form.search-form .btn {
    background: transparent;
    color: #192e41;
}

.form-wrapper {
    opacity : 0;
}
.form-wrapper form.search-form {
    position: absolute;    
    right: 15px;
    top: -24px;
    height: 78px;
    width: 61.5%;
    border-bottom:none;
    border-top:none;
    border-left:1px solid #ebebeb;
    border-right:1px solid #fff;
    background:#fff;
}
.form-wrapper form.search-form .form-group {
    width:92%;
}
.form-wrapper form.search-form input[type="text"] {
    height: 78px;
    border-radius: 0;
    font-size: 18px;
    background:url('images/search19x19.png') 16px 30px no-repeat;
    padding-left: 50px;
    width:100%;
}
 

.form-wrapper form.search-form input[type="text"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size:14px !important;
}
.form-wrapper form.search-form input[type="text"]::-moz-placeholder { /* Firefox 19+ */
    font-size:14px !important;
}
.form-wrapper form.search-form input[type="text"]:-ms-input-placeholder { /* IE 10+ */
    font-size:14px !important;
}
.form-wrapper form.search-form input[type="text"]:-moz-placeholder { /* Firefox 18- */
    font-size:14px !important;
}


.form-wrapper form.search-form button.btn {
    display:none;
}
.form-wrapper .cancel-search {
    color: #666666; 
    position: relative;
    left: 12px;
    top:6px;
    font-size: 26px;   
}

.desktop-search-toggle {
    display: inline-block;   
    position: absolute;
    right: 30px;
    top: 20px;
    color:#fff !important;
    font-size:18px;
    font-weight:normal !important;
}

.desktop-search-toggle:hover, 
.desktop-search-toggle:active, 
.desktop-search-toggle:focus, 
.cancel-search:hover, 
.cancel-search:active, 
.cancel-search:focus {
    cursor: pointer;
}

.mobile-menu-toggle {
    position: absolute;
    right: 56px;
    top: 0px; 
    font-size: 21px;
}
.mobile-form-wrapper {
    padding-top: 0px;
    padding-bottom: 0px;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.mobile-menu-toggle i {
    color: #fff;
    font-weight: normal !important;
    font-size: 18px;
    position: relative;
    top: 1px;
}


header ul.nav {
    position: relative;
    left: 50px;
} 

header nav.upper-menu-wrap {
    position: absolute;
    z-index: 1;
    color: #c2c2c2;
    padding-top: 12px;
    right: 0px;
    font-size:14px;
}
header nav.upper-menu-wrap a {
    color: #c2c2c2;
    background: #081d31;
}
header nav.upper-menu-wrap li:first-child {
    border-right:1px solid #c2c2c2;
}
header nav.upper-menu-wrap li:nth-child(2) a, 
header nav.upper-menu-wrap li:nth-child(3) a{
    color:#ffffff;
    font-weight:500;
}
header nav.upper-menu-wrap li {
    float:left;
    list-style:none;
    padding-left: 30px;
    padding-right: 30px;
}

header nav.upper-menu-wrap li.desktop-ticker {
    padding-left:0px;
}

.content-area {
    overflow: hidden;   
    /* padding-left: 30px;
    padding-right:30px;  */
    /*background: #b1b1b1;*/
}
.content-area li {
    margin-bottom: 2px;
}


.content-area ol, 
.content-area ul {
    padding-top:10px; 
    padding-left: 30px;
    padding-bottom: 20px;
}

.main-wrapper .gallery {
    margin-left: -25px !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.gallery-item img {
    border: 1px solid rgba(0, 0, 0, .15) !important;    
    /*box-shadow: 5px 6px 0px rgba(0, 0, 0, .175);*/
    margin-top: 0 !important;
}

ul.wp-block-gallery,
.content-area ul.wp-block-gallery {
    padding-left:0;
    padding-top:35px;
}

.alt-title,
.single-project .cat-name, 
.news-cat a  {
    font-size: 14px;    
    margin-bottom: 10px;
    margin-top:22px;
}
.news-date, 
.the-category a  {
    font-size: 14px;
}


.single-project .cat-name {     
    margin-bottom: 0;
}

.project-details {
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background-color: #ebebeb;
    grid-gap: 1px;
    margin-bottom: 45px;
}
.project-details > div {
    background-color: #fff;
    text-align: center;
    padding:0px 30px;
    font-size: 14px;
 
}
.project-details ul, 
.project-detqails li {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}


.pdf-link {
    font-size: 20px;
    margin-top: 46px;
    margin-bottom: 46px;
}

.related-projects-wrap h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 18px;
}
.show-more-wrap {
    text-align: center;
    margin:0 auto;   
}
.show-more-wrap a {
    font-size: 18px;
    color: #000;
    overflow: hidden;
    display: inline-block;
}
.show-more-wrap img {
    margin-bottom: 0;
    display: block;
    margin:0 auto;
}
.show-more-wrap a:hover, 
.show-more-wrap a:focus {
    text-decoration: none;
}

.triangle-left-large {
    width: 0; 
    height: 0; 
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent; 
    border-right:12px solid #c3c3c3; 
    position: absolute;
    /*top: 55px;*/
    right:0;
}

.triangle-top-large {
    width: 0; 
    height: 0; 
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #eaeaea;
    position: absolute;
    bottom:0; 
    left:35px;
}

.triangle-large-white-top {
    width: 0; 
    height: 0; 
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    position: absolute;
    bottom:0; 
    left:45px;
}
.triangle-large-white-bottom {
    width: 0; 
    height: 0; 
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #fff;
    position: absolute;
    /*bottom:0; */
    left:45px;
}

.triangle-large-white-left {
    width: 0; 
    height: 0; 
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 18px solid #fff;
    position: absolute;
    top:75px; 
    right:0px;
}

.triangle-large-white-right {
    width: 0; 
    height: 0; 
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 18px solid #fff;
    position: absolute;
    top:75px; 
    /*right:0px;*/
}


.triangle-blue-down {
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #192e41;
}

.box-style-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:#c3c3c3;
    padding:0px 25px 100px;
    height: 380px;
    font-size: 22px;
    line-height:28px;
    overflow: hidden;
}
.boxed-style {
    clear:both;
    display: block;
    margin-bottom: 50px;
    overflow: hidden;
    position: relative;
}

.boxed-style .box-style, 
.boxed-style-vertical .box-style-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 380px;
    background-position-x: center !important;
    background-position-y: center !important;
    background-size: cover !important;      
    padding-bottom:100px;
    box-shadow: inset 0px 0px 1px 1px rgb(234, 234, 234);
}

.carousel-wrap {
    clear: both;
    display: block;
    overflow: hidden;
    margin-bottom: 45px;
    margin-top:40px;
    position: relative;
}

.carousel-previous, 
.carousel-next {
    position: absolute;
    width:48px;
    height:48px;
    text-indent: -9999px;
    top:35%;
}
.carousel-next {
    background:url('images/chevron-right.png') 0px 0px no-repeat;
    right:0;
}
.carousel-previous {
    background:url('images/chevron-left.png') 0px 0px no-repeat;
}

.carousel-wrap .boxed-style {
    margin-bottom: 0;
}

.fl-post-carousel-navigation .carousel-next {
    background-image: none;
}

.fl-post-carousel-text .fl-post-carousel-title {
    font-size: 17px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.carousel-controls {
    text-align: center;
    margin:15px 0;
}
.carousel-controls a {
    font-size:13px;
    margin-right: 3px;
    color: #ccc !important;
}
.carousel-controls a:hover, 
.carousel-controls a:focus, 
.carousel-controls a.active {
    color: #192e41 !important;
}

.modal-dialog {
    margin-top:115px;
}
.modal-content {
    border-radius:0;
}
.modal-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 15px;
    font-weight: 500;
}
.modal-body {
    padding:0;
}

#main-content .btn-void, 
#main-content .btn-void:active {
    background-color: #081D31 !important;
    color: #fff !important;
    border-radius: 0;
    border: none;
    padding: 11px 28px;
}
.btn-green {
    padding: 10px 20px;
    background: #50bf34;
    color: #fff;
    border-radius:0;
}
.btn-green:hover, 
.btn-green:active, 
.btn-green:focus {
    color:#fff;
    background: #459730;
    cursor: pointer;
    text-decoration: none;
}
.btn-success {
    background: transparent;
    border: 1px solid #192e41;
    padding: 10px 35px;
    color: #192e41;
    border-radius: 0;
}
.btn-success:active:hover, 
.btn-success:active:focus, 
.btn-success:hover, 
.btn-success:focus {
    background: transparent;
    border: 1px solid #192e41;
    color: #192e41;
}

.btn-success:hover {
    color:#31516f;
}

.btn-default {
    background: transparent;
    border: 1px solid #A8A8A8;
    padding: 10px 35px;
    color: #505050;
    border-radius: 0;
}
.btn-default:active:hover, 
.btn-default:active:focus, 
.btn-default:hover, 
.btn-default:focus {
    background: transparent;
    border: 1px solid #A8A8A8;
    color: #A8A8A8;
}

.btn-info {
    background: transparent;
    border: 1px solid #50bf34;
    padding: 10px 35px;
    color: #50bf34;
    border-radius: 0;
}
.btn-info:active:hover, 
.btn-info:active:focus, 
.btn-info:hover, 
.btn-info:focus {
    background: transparent;
    border: 1px solid #50bf34;
    color: #429b2c;
}

.btn-white {
    color:#fff;
    border-color:#fff;
}

.white-transp-button {
    border:1px solid #fff;
    padding: 7px 17px;
    display: inline-block;
    margin-top: 25px;
    border-radius:4px;
    font-size:14px;
}


/****GRID THUMBNAIL****/


[data-href]:hover, 
[data-href]:active, 
[data-href]:focus, 
.child-pages-title a:hover, 
.child-pages-title a:focus, 
.child-pages-title a:active, 
.fade-hover:hover, 
.fade-hover:active, 
.fade-hover:focus {
    text-decoration:none !important;
    cursor: pointer;
    /* opacity:0.8 !important;    */
}

.child-pages-grid-item {
    height:328px;
    background-position-x: center !important;
    background-position-y: center !important;
    background-size: cover !important;  
    background-color: #ebebeb !important;         
}
.child-pages-grid {
    margin-bottom:59px;
}

.bluefilter {
    height:100%;
    width:100%;
    background: #192e41;
    display:none;        
}
.news-item-thumb:hover .bluefilter,
.child-pages-grid-item:hover .bluefilter {
    /*display:block;*/
        display: flex; 
    flex-direction: column;
    justify-content: center;
    /*opacity:.7;*/
    background: rgba(0, 124, 255, 0.63);
    text-align:center;
    text-decoration:none;
}
.news-item-thumb span,
.child-pages-grid-item span {
    color: #fff;
    padding: 8px 10px;
    border: 1px solid #fff;
    /* display: inline-block; */
    width: 115px;
    margin: 0 auto;
    background: rgba(255, 0, 0, 0);
    text-transform:uppercase;
    font-size:14px;
}
.child-pages-title {
    padding-top:17px;
    height: 66px;    
    color: #192e41;
    overflow: hidden;
}
/*END GRID THUMBNAIL*/

/*ROW THUMBNAIL*/

.news-item-wrap {
    overflow: hidden;
    clear: both;
    background: #fff;
    margin-bottom:25px;
}
.news-item-thumb {
    height: 247px;
    background-position-x: center !important;
    background-position-y: center !important;
    background-size: cover !important;      
    padding-left: 0;
    padding-right:0;
}

.news-item-thumb.no-cover-thumbnail {
    background-size:inherit !important;
}

.news-item-copy-wrap {
    padding:44px 40px;   
}
.news-title {
    padding-top: 21px;
    font-size: 21px;
    line-height: 24px;
    font-weight: 100;
}
.news-title a {
    color: #000;
}
.news-title a:hover, 
.news-title a:focus {
    text-decoration:none;
}
.thumb-a-overlay {
    width:100%;
    height: 100%;
}


/*END ROW THUMBNAIL*/


/***DROP DOWN FILTERS****/

.form-check label {
    font-weight:normal;
    font-size:14px;
    margin-bottom:0;
    /*overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/
}

.form-check label:hover, 
.form-check label:focus {
    cursor: pointer;
}

.legend {
    font-size:14px; 
    padding:6px 12px;
    text-transform:capitalize;
    margin-bottom: 12px;
    border-bottom: 1px solid #ccc; 
    display: block;
    width: 100%;
}

.filters-wrap { 
    padding-bottom:10px;
    height:160px;
    overflow-y:auto;
    overflow-x:hidden;
    background:#fff;
    border:1px solid #ccc;
}

.filter-by-wrap {
    height:auto;
    padding-bottom:0;   
}

.filter-by-wrap:hover, 
.filter-by-wrap:focus {
    cursor:pointer;
}

.filter-by-wrap .legend {
    margin-bottom: 0px;
    border-bottom: 0px;
    overflow:hidden;
}
.filter-by-wrap.active {
    padding-bottom:10px;
    height: 160px;
}
.filter-by-wrap.active .legend {
    margin-bottom: 12px;
    border-bottom: 1px solid #ccc; 
}

.form-check {
    padding-left:16px;
    padding-right:16px;
}

input[type="checkbox"] {
    position:relative;
    top:3px;
    margin-right:3px;
}

.triangle-blue-down {
    position: relative;
    top:7px;
    float:right;
}

.filters-wrap.inactive label, 
.filters-wrap.inactive .legend{
   color:#a2a2a2;
}



/***END DROP DOWN FILTERS***/


.feature-image-copy h1, 
h1.the-title, 
.the-title {
    font-family: roboto;
}

h1.the-title, 
h3.the-title {
    color: #192e41;
    font-weight: 300;
}
h1.the-title {
    font-size: 35px;
    line-height: 44px;    
    margin-top: 0;
    margin-bottom: 24px;
}
h1.the-title.noAlt {
    margin-top:30px;
}

.single h1.the-title {
    margin-top: 25px;
    margin-bottom: 0;
}

.single h1.the-title i.fa-external-link-alt{
    color: #9e9e9e;
    font-size: 20px;
    position: relative;
    top: -4px;
    left: 2px;
}

.the-title span {
    color:#8f8f8f;
}


.post-template-narrow-no-sidebar.single h1.the-title, 
.page-template-narrow-no-sidebar.page h1.the-title {
    margin-bottom:30px;
}

.single .the-category {
    padding-top: 30px;
    font-size: 22px;
    color:#192e41;
}
.single .the-date {
    padding-top: 0px;
    font-size: 14px;
}
.single .the-social-buttons {
    margin-top: 37px;
    margin-bottom: 37px;
    overflow: hidden;
}

.post-template-no-sidebar .the-social-buttons {
    margin-top: 15px;
    margin-bottom: 15px;
}

.post-template-no-sidebar .the-social-buttons ul {
    display: none;
}

.single .the-social-buttons ul, 
.single .the-social-buttons li {
    padding:0 0 0 0; 
    margin: 0 0 0 0;
    list-style: none;
}
.single .the-social-buttons li {
    float: left;
    margin-right: 10px;
}
.single .the-social-buttons li a {
    color: #ccc;
}

.page .the-content, 
.single-post .the-content {
    padding-left: 0;
    padding-right: 0;
}

.feature-image {
    background-position-x: center !important;
    background-position-y: center !important;
    background-size: cover !important;    
    height:447px;  
}
.single-project h1.the-title {
    margin-top: 15px;
    margin-bottom: 51px;
}

.post-template-default .the-content .wp-caption:first-child img {
    width:445px;
}


.logged-in .feature-image.nobg, 
.feature-image.nobg {
    background-color: #5d5d5d;
}

.post-nav {
    clear: both;
    padding-top:25px;
    padding-bottom: 25px;
}
.post-nav-link {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;    
}

.archive .the-title, 
.blog .the-title {
    margin-bottom: 5px;
}
.readmore-wrap .btn {
    padding: 2px 8px;
}

.navbar-toggle {
    border-radius:0;
}

/******IN CONTENT STYLES******/

.the-content a, 
.child-pages-title a, 
.sidebar-widget-title,
.sidebar-widget-title a,
.sidebar-widget.text-component a, 
.news-cat a, 
.the-category a, 
#modal-form-wrapper a {
    color:#097538;
}

.main-wrapper img, 
.the-content img {
    max-width: 100%;
    margin-top: 15px;
    margin-bottom:20px;    
}
.the-content .wp-block-media-text img {
    margin-top: 0;
    margin-bottom: 0;
}

.the-content figure.wp-block-image {
    position: relative;
    margin-bottom: 20px;
}

.the-content figure.wp-block-image figcaption {
   background: #000 !important; 
   padding-top: 8px !important; 
   padding-bottom: 8px !important; 
   line-height: 16px; 
   color:#fff;
    position: absolute;
    bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
.wp-block-gallery {
   margin-bottom:30px;
}

/******Fix to Locations page css in google map controls******/
.page-template-templateslocations-php .main-wrapper img
{
    margin-top: 0;    
}
/******Fix to Locations page css in google map controls******/

.the-content blockquote {
    background:url('images/blockquote.png') 0px 24px no-repeat;   
    border-left: none;  
    margin-top:20px;
    padding-top:76px;
    padding-bottom:34px;
    padding-left: 31px;
}
.the-content blockquote,
.the-content blockquote p {
    font-weight: 100;
    font-size:30px;
    line-height:38px;    
    margin-bottom: 10px;
}
.the-content blockquote cite {
    font-size: 24px;
    color: #838383;
}


.the-content h1 {
    font-size:45px;
    font-weight:300;     
    color:#192e41;
}
.the-content h2 {  
    margin-bottom:20px;
}
.the-content h3 {
    margin-bottom:17px;
}
.the-content h4 {
    margin-bottom:14px;
}
.the-content h5 {   
    margin-bottom:12px;
}
.the-content h6 {
    margin-bottom:10px;
}

.the-content ol,
.the-content ul {
    font-size:16px;    
    line-height: 24px;
    padding-bottom:25px;
    padding-top:0;
    margin-top:0;
}
.the-content ol li,
.the-content ul li {
    padding-left: 5px;
}

.the-content ol li > ol,
.the-content ul li > ul {
    margin-bottom:0;
    padding-bottom: 0;
}

strong,
.the-content strong, 
.the-content b {
    font-weight:500;
}
.the-content i {
    font-style:italic;
}
.the-content i.fa {
    font-style:normal;
}

.the-content img.alignleft, 
.the-content div.wp-caption.alignleft, 
.the-content iframe.alignleft, 
.the-content div.alignleft {
    float: left;
    margin-right: 35px;
    margin-bottom: 25px;
}

.the-content img.alignright, 
.the-content div.wp-caption.alignright, 
.the-content iframe.alignright, 
.the-content div.alignright  {
    float: right;
    margin-left: 35px;
    margin-bottom: 25px;
}

.the-content div.wp-caption img {
    margin-top: 5px;
    margin-bottom: 0;
}

.the-content p.wp-caption-text {
    text-align: left;
    font-size: 12px;
    margin-top: 7px;
    line-height: 18px;
    margin:7px 0 0 0;
} 

.the-content .wp-block-image figcaption {
    position: relative;
    /* top: -15px; */
    font-size: 13px;
}


.the-content div.wp-caption {
    margin-bottom:25px !important;
}

.the-content .gallery .wp-caption-text {
    text-align:center;
}

.the-content ul.blocks-gallery-grid {
    padding-top: 30px;
}

.the-content ul.blocks-gallery-grid, 
.the-content ul.blocks-gallery-grid li {
    padding-left:0;
    line-height: normal;
}
.the-content .wp-block-gallery .blocks-gallery-item figcaption {
    bottom:20px;
}

.the-intro,
.the-content p, 
.bottom-copy {
    margin-bottom: 20px;
    line-height: 24px;
    font-size:16px;
    display: block;
} 
.the-content hr {
    border:0;
    height: 1px;
    background: #ccc;
    margin-top:38px;
    margin-bottom:38px;
}
.the-content .related-links-block {
    border-top: 1px solid #ccc;
    border-bottom:1px solid #ccc;
    padding-top:10px;
    padding-bottom: 30px;
    text-align:center;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    margin-top: 30px;
}
.the-content .pull-quote {
    border-top: 1px solid #c7c7c7;
    border-bottom:1px solid #c7c7c7;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 120px;
    padding-right:20px;
    background:url('images/pull-quote-icon.png') no-repeat 17px center #efefef;
    text-align: left;
    font-size:17px;
    line-height: 26px;     
    min-height: 120px;
    margin-bottom: 35px;
}

.the-content .pull-quote a {
    font-weight: 100;
}

.the-content .wp-embed-aspect-16-9 iframe {
    width: 100%;
    min-height: 444px;
    margin-top:25px;
    margin-bottom: 25px;
}

.highlighted-block {
    /* padding-left:32px; 
    padding-top:8px;   
    padding-bottom:4px; */
    padding-left:24px; 
    padding-top:0px;   
    padding-bottom:0px;
    margin-bottom:35px;
    margin-top:32px;
    border-width: 10px;
    border-style: solid;
    border-image: 
        linear-gradient(
        to bottom, 
        rgba(0,174,191), 
        rgba(80, 191, 52)
        ) 1 100%;
    border-right:none;
    border-top:none;
    border-bottom:none;
}

.highlighted-block p {
    font-size:25px;
    font-family:roboto;
    font-weight: 300;
    line-height: 35px;
    margin-bottom:12px;
}

.password-protected .feature-image, 
.password-protected .title-intro-wrapper, 
.password-protected .alt-title, 
.password-protected .the-title, 
.password-protected .sidebar, 
.password-protected .the-category, 
.password-protected .the-date, 
.password-protected .project-details, 
.password-protected .cat-name, 
.password-protected .related-projects-wrap, 
.password-protected .show-more-wrap {
    display: none;
}

.password-protected .the-content {
    width: 100% !important;
}
.password-protected.page-template-narrow-no-sidebar .the-content.col-lg-push-2, 
.password-protected.post-template-narrow-no-sidebar .the-content.col-lg-push-2 {
    left:0 !important;
}

.post-password-form {
    max-width: 370px;
    background: #ececec;
    padding: 25px 38px;
    border-radius: 4px;
    margin: 50px auto 50px;
    border: 1px solid #d6d6d6;
}

.post-password-form p {
    font-style: italic;
    color: #4e4e4e;
}
.post-password-form label {
    display:block;
    font-style:normal;
}
.post-password-form label input {
    display: block;
    padding: 5px 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    margin-top: 5px;
}


.the-content .schema-faq {
    margin-bottom: 35px;
}
.the-content strong.schema-faq-question {
    font-size: 22px;
    display: block;
    margin-bottom: 4px;
}


/******END IN CONTENT STYLES******/
 
/*********SIDEBAR**************/

.sidebar {    
    padding-left: 90px;
    padding-right: 0px;   
    min-height: 100px;
    padding-top:40px;
}
.sidebar.sidebar-index {
    padding-top:0;
}

.sidebar ul, 
.sidebar ol {
    padding: 0 0 0 15px;
    margin:0 0 0 0;
}
.sidebar-widget {   
    /*display: none;*/
    margin-bottom: 59px;
    display: block;
}
.sidebar-widget table {
    width:100%;
}
h4.sidebar-widget-title {    
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;    
    margin-bottom: 17px;
    margin-top: 0;
}

.sidebar .sidebarImg {
    max-width:263px !important;
    margin-bottom:25px;
    margin-top:5px;
}

.text-component p {
    font-size: 14px;
    color: #434343;
}
.text-component {
    border-bottom: 1px solid #dddddd;
    /* width:263px; */
    padding-bottom:8px;
}
.text-component a:focus, 
.text-component a:hover {
    text-decoration: none;
}

.text-component:last-child {
    border-bottom: none;
}

.feature-project-sidebar-img {
    width:264px;
    height: 315px;
    background-position-x: center !important;
    background-position-y: center !important;
    background-size: cover !important;    
}

.feature-project-sidebar-title {
    position: relative;
    padding:15px 18px;
    background:#efefef;
    font-size: 14px;
    width:264px;
}
a .feature-project-sidebar-title {
    color: #000;
}
.feature-project-sidebar-title a:hover, 
.feature-project-sidebar-title a:focus {
    text-decoration: none;
}
.feature-project-sidebar-triangle {
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #efefef;
    position: absolute;
    top: -7px;
}
 
.twitter-wrap {
    margin-top:55px; 
    padding-right: 15px;
}

/***********SIDEBAR WPFORMS*************/
.sidebar .wpforms-container {
    padding: 25px 28px 25px 20px;
    background: #ebebeb;
    border: 1px solid #d5d5d5;
    margin-top: 25px;
}
.sidebar .wpforms-container label {
    font-weight: 100 !important;
    font-size: 12px !important;
}
.sidebar .wpforms-container input[type="text"],
.sidebar .wpforms-container input[type="tel"],
.sidebar .wpforms-container input[type="email"],
.sidebar .wpforms-container input[type="url"],
.sidebar .wpforms-container select {
    max-width:100% !important;
    width:100% !important;
    font-size: 12px !important;     
    padding: 3px 6px !important;
    height: 28px !important;   
    line-height: 14px !important;
    margin-bottom:2px !important;
}
.sidebar .wpforms-container input[type="tel"] {
    padding-left: 52px !important;
}
.sidebar .wpforms-form .wpforms-field {
    padding: 4px 0 !important;
}

.sidebar .wpforms-container .wpforms-field-checkbox ul, 
.sidebar .wpforms-container .wpforms-field-radio ul {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
} 

.sidebar .wpforms-container .wpforms-field-checkbox ul li, 
.sidebar .wpforms-container .wpforms-field-radio ul li{
    margin-bottom: 0px !important;
}

.sidebar .wpforms-container .wpforms-form button[type="submit"] {
    background: #097538;  
    border-radius: 2px;
    color: #fff;
    font-size: 13px;
    margin-top: 8px;
    margin-bottom: 5px;
    font-weight: 500;
    padding: 6px 17px;
}
.sidebar .wpforms-container .wpforms-form button[type="submit"]:hover, 
.sidebar .wpforms-container .wpforms-form button[type="submit"]:active, 
.sidebar .wpforms-container .wpforms-form button[type="submit"]:focus {
    background: #146607;
}

.sidebar .wpforms-confirmation-container-full{
    background: #eff8e7;
    border: 1px solid #e0ead8;
    margin-top: 18px;
    margin-bottom: 23px;
}
.sidebar .wpforms-recaptcha-container {
    padding:0 0 0 0 !important;
}
.sidebar div.wpforms-container-full .wpforms-form .wpforms-error-container {
    margin-bottom:15px;
}

.modal-body div.wpforms-container-full .wpforms-form .wpforms-required-label,
.sidebar div.wpforms-container-full .wpforms-form .wpforms-required-label {
    color: #d60000;
}

/***********END SIDEBAR WPFORMS*************/ 
/***********END SIDEBAR************/

/*********LOGGED IN STYLES*********/
.logged-in.page-template-tpl-home .feature-image, 
.logged-in.page-template-tpl-home .edit-shadow{
    position: relative;
    box-shadow: inset 0px 0px 0px 4px #54dc00;
} 

.logged-in.page-template-tpl-home .edit-shadow{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.btn.edit{ 
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 0;
    color: #000;
    background-color: #54dc00;
    border-color: #54dc00;
    width: 64px;
    border-bottom-left-radius: 6px;
    font-weight: bold;
    font-size: 12px;
    z-index: 100;
}

.btn.edit i{
    margin-right: 5px;
}

.btn.edit:hover {
    color: #4e4e4e;
}

/*********END LOGGED IN STYLES*********/

.social-bar {
    font-size: 20px;
    padding-top: 55px;
    padding-bottom: 20px;
}
.social-bar ul {
    text-align: center;
    margin:0 0 0 0;
    padding:0 0 0 0;
}
.social-bar li {
    list-style: none;
    display: inline;
    margin-right: 32px;
}
.social-bar a {
    color: #1b3349;
}

.subscribe-bar {
    padding: 25px 25px 15px;
    background:#EFEFEF;
}

.subscribe-bar p {
    color:#081D31;    
    text-align:center;
}
.subscribe-bar a {
    max-width: 150px;
    margin-left: 15px;
    background:#50BF34;
    padding: 8px 16px;
    color: #000;
    border-radius: 2px;
}


footer .social-bar {
    padding-top: 28px; 
    background: #081d31 !important;
}
footer .social-bar ul {
    text-align:left;
}
footer .social-bar li {
    display: inline-block;
    margin-right: 18px;
    margin-bottom:8px;
}
footer .social-bar a {
    color: #fff;
}
footer {
    background:#081D31;
    display: block;
    clear: both;
    min-height: 249px;
    margin-bottom:-22px;
}
footer .container {
    min-height: 120px;
    padding-top: 59px;
    padding-bottom: 59px;
    padding-left:30px;
    padding-right:30px;
}
footer li, 
footer ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
footer li {
    margin-bottom:8px;
}
footer a {
    color: #fff;
    display:inline-block;
}
footer a:hover,
footer a:active,
footer a:focus {
    color: #fff;
    text-decoration: none;
}
footer ul.menu li, 
footer ul.sub-menu li {
    margin-bottom:0;
}
footer ul.menu > li > a { 
    font-size: 18px;
    margin-bottom: 16px;    
    color:#50bf34;   
}
footer ul.menu > li > a, 
footer ul.menu > li > a:hover, 
footer ul.menu > li > a:active, 
footer ul.menu > li > a:focus {
    color:#50bf34;    
}
footer ul.sub-menu {
    margin-bottom:18px;
}
footer ul.sub-menu > li > a { 
    font-size: 16px;
    margin-bottom: 8px;
}

footer .contactus ul {
    margin-bottom:0;
}
footer .contactus li {
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
footer .contactus li:last-child {
    margin-bottom:0;
}
footer .contactus i {
    margin-right: 17px;
    font-size: 20px;
    position: relative;
    top: 2px;
    left: 2px;
}
footer .contactus i.fa-user-plus {
    margin-right: 7px; 
}

.grecaptcha-badge {
    bottom: 90px !important;
}

.social-bar .instagram-footer a{
    display: inline-block;
    width: 20px;
    height: 24px;
    overflow: hidden;
    background:url('images/instagram-footer.png') no-repeat right 0 transparent;
    background-size:20px 20px;
    position: relative;
    top: 8px;
}


#backtotop {
    display: block;
    width:32px;
    height:32px;
    position: fixed;
    background:url('images/back_to_top.png') no-repeat right 0 transparent;
    background-size: 32px 32px;
    bottom: 12px;
    right: 10px;
    text-indent: -9999px;
    z-index: 9999;
    opacity:.4;
}

.credits-section {
    min-height: 80px;
    font-size: 14px;
    color: #95989A;
    padding:20px 30px;    
    position: relative;   
}
.credits-links a {
    display: inline-block;
    margin-right: 5px;
}
.credits-section .parsonsplus-logo {
    width: 199px;
    right: 29px;
    top: -3px;
    position: absolute;
}
.filter-by-category select, 
.filter-by-year select{
    background: transparent;   
    border-radius: 0;
    /* -webkit-appearance: none; */
}
.filter-by-category,
.filter-by-year {
    /* background:url('images/arrow-down.png') no-repeat right 8px #fff; */
    background:#fff;
} 

.btn-transparent {
    color: #fff;
    background-color:transparent;
    border-color: #fff;
    border-width: 1px;
    padding: 10px 35px;
    border-radius:0;
}
.btn-transparent:hover, 
.btn-transparent:active, 
.btn-transparent:focus {
    color: #ccc;
    border-color: #ccc;  
}
.btn-orange {
    color: #fff;
    background-color: #ee7500;
    border-color: #ee7500;
}


.slick-prev, 
.slick-next {
    position: absolute;
    top: 48%;
    z-index: 1;
    text-indent: -9999px;
    width:20px;
    height:37px;
    border:none;
}
.slick-next {
    right:5px;
    background:url('images/arrow_right.png') no-repeat;
}
.slick-prev {
    left:5px;
    background:url('images/arrow_left.png') no-repeat;
}


.slick-dots {
    position: absolute;
    bottom: 15px;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    left: 48%;
  }
  
  .slick-dots li {
    float: left;
    list-style:none;
    width: 23px;
  }
  
  .slick-dots li button {
    text-indent:-9999px;
    background:url('images/round-inactive.png') no-repeat;
    border:none;
    width: 13px;
    height: 13px;
    margin-right: 10px;  
  }
  
  .slick-dots li.slick-active button {
    background:url('images/round-active.png') no-repeat;
  }


.roboto {
    font-family:"roboto" !important;
    font-weight: 300 !important;
}

.roboto-thin {
    font-family:"roboto" !important;
    font-weight: 100 !important;
}

.roboto-thin-up {
    font-family:"roboto" !important;
    font-weight: 100 !important;
    text-transform: uppercase !important;
}

.roboto-thick {
    font-family:"roboto" !important;
    font-weight: 500 !important;
}

/*
Default style for WP-PageNavi plugin
http://wordpress.org/extend/plugins/wp-pagenavi/
*/

.wp-pagenavi {
	clear: both;
}

.wp-pagenavi a, .wp-pagenavi span {
	text-decoration: none;
	padding: 3px 5px;
	margin: 2px;
}

.wp-pagenavi span.extend {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

.wp-pagenavi span.pages {
    padding:0 0 0 0;
    margin:0 5px 0 0;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	border-color: #000;
}

.wp-pagenavi span.current {
	font-weight: bold;
}


.wp-pagenavi {
    display: block;
    clear: both;
    width: 100%;
    text-align: right; 
}
.wp-pagenavi .page {
    display:none;
}
.wp-pagenavi .pages {
    float:right;
    display: block;
    margin-top: 25px !important;
    margin-left: 5px !important;
}
.wp-pagenavi .nextpostslink, 
.wp-pagenavi .previouspostslink {
    font-size:40px;
    position: relative;
    top: 5px;
    /*color:#fff;*/
    /*width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #192e41;*/
}

.wp-pagenavi span.current{
    border:1px solid #ccc;
    border-color:#ccc;
    padding-left: 15px;
    padding-right: 15px;
    font-weight:normal;
}

select.ddpager {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 2px;
    padding-bottom: 3px;
    border: 1px solid #ccc;
    border-color: #ccc;
    /*****removes arrow*****/
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none
}
/*****removes arrow in IE*****/
select.ddpager::-ms-expand {
    display: none;
}
select.ddpager option:disabled {
    color:#ccc;
}


/*****END PAGENAVI********/

.getting-items {
    text-align: left;
    font-size: 16px;
    color:#3a3333;
    width: 140px;
    padding-top: 20px;
    padding-left: 24px;
}

.getting-items:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4,end) 900ms infinite;      
  animation: ellipsis steps(4,end) 900ms infinite;
  content: "\2026"; /* ascii code for the ellipsis character */
  width: 0px;
}
@keyframes ellipsis {
  to {
    width: 1.25em;    
  }
}

@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;    
  }
}

.nowrap {
    white-space: nowrap;
}

/******SOCIAL BOX********/

.left-box {
    padding-left: 0;
    padding-right:7px;
}
.left-box .inner-wrap {
    background:#192e41;
    color: #fff;
    font-size: 32px;
    line-height: 36px;
    padding:32px;
    height:484px;
}
.left-box small {
     font-size:14px;
}

.left-box.twitter .inner-wrap {
    background:url('images/twitter-white.png') no-repeat right 50px #192e41;
}
.left-box.linkedin .inner-wrap {
    background:url('images/linkedin-sm-white.png') no-repeat right 50px #192e41;
}
.left-box.facebook .inner-wrap {
    background:url('images/facebook-white.png') no-repeat right 50px #192e41;
}
.left-box.youtube .inner-wrap {
    background:url('images/youtube-white.png') no-repeat right 50px #192e41;
}
.left-box.instagram .inner-wrap {
    background:url('images/instagram-white.png') no-repeat right 50px #192e41;
}

.left-box .the-text {
    background:url('images/blockquote-white.png') no-repeat;
    position: absolute;
    bottom: 0;
    padding: 50px 50px 0px 0px;
    max-height: 274px;
    overflow: hidden;
    bottom: 44px;
    font-weight: 100;
}
.left-box a {
     color:#fff
}

/******END SOCIAL BOX*****/

#comments {
    border-top: 1px solid #ebebeb;
    padding-top: 15px;
    margin-top: 15px;
}
.comments-title {
    margin-bottom: 25px;
}
#comments .comment-list {
    padding:0 0 0 0;
    margin:0 0 0 0;
}
#comments cite {
    font-style: normal;
}
#comments .comment-list li {
    list-style: none;    
}
#comments .comment {
    position: relative;
}
#comments .comment-meta {   
    color: #ababab;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 10px;
}
#comments p {
    margin-bottom: 5px;
}
#comments .avatar {
    border-radius:50%;
    position: absolute;
    left:0px;
    margin-top: 0;
    margin-bottom: 0;
}
.comment-body {
    margin-left: 70px;
    margin-bottom: 30px;
} 
#comments .reply {
    margin-top: 15px;
}
#comments .reply a {
    padding: 2px 8px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    color: #333;
    background-color: #fff;
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;    
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid #ccc;  
}
#comments .reply a:hover {
    text-decoration:none;
     cursor: pointer;
     background:#ebebeb;
}
#respond {
    clear: both;
    display: block;
    border:1px solid #ebebeb;
    background: #f5f5f5;
    padding: 10px 35px 35px 30px;
    margin-bottom: 45px;
    margin-top: 55px;
    border-radius:4px;
}
#reply-title {
    display: block;
    clear: both;
}
#cancel-comment-reply-link {
    font-style: italic;
    font-size: 12px;
}
.comment-awaiting-moderation {
    color: red;
}
#submit {
    margin-top: 15px;
}
/***END COMMENT STYLES***/

/*****FORM INSIDE A MODAL*****/
#modal-form-wrapper .grecaptcha-badge { opacity:0;}
#modal-form-wrapper .modal-content {background: #ebebeb; border-radius: 4px;}
#modal-form-wrapper .modal-dialog {margin-top: 128px;}
#modal-form-wrapper .modal-header {border-bottom: 1px solid #c9c9c9;}
#modal-form-wrapper .modal-body {padding: 20px 35px 44px 35px;}
#modal-form-wrapper .modal-body .wpforms-error {font-weight: 500; margin-top: 5px;}
#modal-form-wrapper .modal-body .wpforms-field-label {font-weight: 500; font-size: 14px;}
#modal-form-wrapper textarea {resize: vertical; height: 100px; width: 100%;}
#modal-form-wrapper .wpforms-recaptcha-container {padding: 0px 0 10px 0;}
#modal-form-wrapper .captcha-reference {font-size: 14px; line-height: 16px;}
#modal-form-wrapper.form-submitting {
    background:url('images/elipsis.gif') no-repeat;
    background-position: center center;
}
#modal-form-wrapper.form-submitting .modal-dialog{
    display:none !important;
}
#modal-form-wrapper .wpforms-error-container {
    background: #ffd7d7;
    border: 1px solid #ffb1b1;
    padding: 12px 20px;
    margin-bottom: 25px;
    margin-top: 15px;
    border-radius: 4px;
}
/*********CTA BUTTON***************/
a.cta,
.content-area a.cta,
#modal-form-wrapper .wpforms-page-next,
#modal-form-wrapper .wpforms-page-prev,
#modal-form-wrapper button[type="submit"]{
    background: #097538;
    font-weight: 500;
    border-radius: 2px;
    color: #fff;
    padding: 8px 23px;
}
a.cta:hover,
a.cta:active, 
a.cta:focus,
.content-area a.cta:hover,
.content-area a.cta:active, 
.content-area a.cta:focus,
#modal-form-wrapper button[type="submit"]:hover, 
#modal-form-wrapper button[type="submit"]:active, 
#modal-form-wrapper button[type="submit"]:focus, 
#modal-form-wrapper .wpforms-page-next:hover, 
#modal-form-wrapper .wpforms-page-next:active, 
#modal-form-wrapper .wpforms-page-next:focus{
    cursor:pointer;
    background: #146607;
}

#modal-form-wrapper .wpforms-page-prev {
    background: #a2a2a2;
    border: 1px solid #8b8b8b;
    text-shadow: 1px 1px 1px #585858;
}
#modal-form-wrapper .wpforms-page-prev:hover, 
#modal-form-wrapper .wpforms-page-prev:active, 
#modal-form-wrapper .wpforms-page-prev:focus{
    cursor:pointer;
    background: #7b7b7b;
}

a.cta,
.content-area a.cta {
    display: block;
    width: 132px;
    text-align: center;
    margin-top: 18px;
    margin-bottom: 18px;
}

.parsons-loading-wrap {
    position:fixed;
    top:0px;
    right:0px;
    bottom:0px; 
    left:0px;
    z-index:9999;
    background:#0000009c;
}

.parsons-loading-inner {
    display:flex;
    align-items:flex-end;
    justify-content:center; 
    height:50%;
}

.post-list {
    padding-top: 15px;
    padding-bottom: 15px;
}
.post-list-item a h4, 
.post-list-item a p{
    color:#666;
}
.post-list-item a h4 {
    color: #000;
}
.post-list-item a h4 {
    margin-bottom: 8px;    
    margin-top: 2px;
}
.post-list-item a h4 span {
    color:#8f8f8f;
}

.post-list-item a:hover, 
.post-list-item a:active, 
.post-list-item a:focus {
    text-decoration: none;
    display: block;
    opacity: 0.6; 
}
.post-list-item {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom:10px;
    border-bottom: 1px solid #eaeaea;
}
.post-list-item:last-child{
    border-bottom: none;
}
.post-list-item i.fa-external-link-alt {
    margin-left: 10px;
    color: #8f8f8f;
    font-size: 15px;
    position: relative;
    top: -1px;
}
.post-list-item .the-date{
    font-size:12px;
    color:#097538;
}

i.fa-external-link-alt {
    font-style: normal;
}

.light-bg h1, 
.light-bg p {
    color:#000;
}
.light-bg .btn, 
.light-bg .btn:active {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color:#000 !important;
}

.r-align {
    text-align:right;
}
.r-align a {
    float:right;
}


/***EVENTS PLUGIN OVERRIDES****/
body.main-site .tribe-events .tribe-events-c-search__button {
    background-color: #007ce6;
}
body.main-site .tribe-events .tribe-events-c-search__button:focus, 
body.main-site .tribe-events .tribe-events-c-search__button:hover {
    background-color:rgb(11 119 202);
}
body.main-site .tribe-common .tribe-common-c-btn-border, 
body.main-site .tribe-common a.tribe-common-c-btn-border {
    color: #007ce6;
    border: 1px solid #007ce6;
    width:auto;
    padding: 5px 20px 3px;
    font-size: 12px;
}
body.main-site .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus, 
body.main-site .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover {
   background-color:rgb(11 119 202);
}
body.main-site .tribe-events-content p, 
body.main-site .tribe-events-content ul, 
body.main-site .tribe-events-content ol, 
body.main-site .tribe-events-content li, 
body.main-site .tribe-events-event-meta, 
body.main-site .tribe-events-single .tribe-events-sub-nav {
    font-family: "franklin-gothic-urw", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 24px;
    font-size: 16px;
}
body.main-site .tribe-events-content strong {
    font-weight:bold;
}
body.main-site .tribe-events-single-event-title {
    font-family: "roboto", "franklin-gothic-urw", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 36px;
    line-height: 45px;
    color: #192e41;
    font-weight: 300;
}

body.main-site .tribe-events-related-events-title {
    font-family: "roboto", "franklin-gothic-urw", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 25px;
    line-height: 38px; 
    font-weight: 500;
}

body.main-site.single .tribe-events-event-image img {
    max-width:100%;
    height:auto;
}   


body.main-site .tribe-events-single .tribe-events-sub-nav {
    padding-left:0;
}

body.main-site.single #tribe-events-pg-template{
    max-width: 800px;
}

body.main-site.single .tribe-events-schedule h2 {
    margin-top:0;
    color:#666666;
}
body.main-site button.tribe-common-h3 {
    font-size: 18px !important;
}
body.main-site.single .tribe-events-notices {     
    color: #696969;
    font-style: italic;
}
body.main-site .tribe-events .tribe-events-c-breadcrumbs__list {
    font-size: 28px;
    list-style: 35px;
}

body.main-site.single-tribe_events  .tribe-events-meta-group-gmap {
    margin-right:0;
}
body.main-site.single-tribe_events  .tribe-events-meta-group-gmap .tribe-events-venue-map {
    width:375px;
}


.the-content .tribe-events .tribe-events-l-container, 
.the-content .tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container,
.sidebar .tribe-events .tribe-events-l-container{
    padding-top:25px;
    padding-bottom:25px;
    padding-left: 0;
    padding-right: 0;   
}
.sidebar .tribe-events .tribe-events-l-container{
    padding-top: 0;
}
body.main-site .tribe-events-single ul.tribe-related-events li .tribe-related-events-thumbnail {
    margin-bottom: 0;
}
body.main-site .tribe-events-single ul.tribe-related-events li .tribe-related-events-thumbnail img {
    transform: translate(-50%,-50%) scale(1);
    top:42%;
}
body.main-site .tribe-events-single ul.tribe-related-events li .tribe-related-events-thumbnail a {
    padding-top: 62%;
}

body.main-site .tribe-events-single ul.tribe-related-events li .tribe-related-event-info {
    padding: 0 15px 5px;
}

.fl-photo-content img {
    width: auto !important;
}
.fl-post-carousel-content > p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}


/***END EVENTS PLUGIN OVERRIDES****/

/*****************UTILITY / HELPER STYLES******************/

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.wide-menu-container {
    display:none;
    grid-template-columns: 1fr 1fr;
    background: #f7f7f7;
    box-shadow: 0px 3px 2px 1px #0000001a;
    min-width: 600px;
    position: absolute;
    top: 56px;
    left: -50%;
    min-height: 300px;
}
.wide-menu-container::before {
    content : ' ';
    width: 0; 
    height: 0; 
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #eaeaea;
    position: absolute;
    top: -12px;
    left: 129px;
}

.wide-menu-container .wide-menu-right {
    background-color:#fff;
    position: relative;
}

.wide-menu-left ul, 
.wide-menu-right ul{
    padding:12px 24px;
    list-style: none;
}
.wide-menu-left li, 
.wide-menu-right li {
    padding:10px 0px;
    border-bottom: 1px solid #e5e5e5;
}
.wide-menu-left li:last-child, 
.wide-menu-right li:last-child {
    border-bottom: none;
}
.wide-menu-left a:hover, 
.wide-menu-left a:active, 
.wide-menu-left a:focus, 
.wide-menu-right a:hover, 
.wide-menu-right a:active, 
.wide-menu-right a:focus  {
    text-decoration: none;
    color: #50bf34;
}
.wide-menu-left a, 
.wide-menu-right a {
    color: #333;
    font-size:15px;
}
.wide-menu-left a {
    font-weight: 400;
}
.wide-menu-right li.active a,
.wide-menu-left li.active a {
    color:#169309;
}   

div[class^="third-level-container"] {
    width:100%;
    height: 100%;
    background-color:#fff;
    position:absolute;
    z-index: 1;
}
div[class^="third-level-container"].focused {
    z-index: 2;
}

/*******COOKIES SECTION*******/

.cookie-box {
    padding:0 30px 30px;
}

.cookie-box .table {
    border:1px solid #ccc;
    font-size: 12px;
    margin-top: 10px;
}
.cookie-box label {
    font-size: 13px;
    font-weight: 400;
}
.cookie-box p {
    font-size: 13px;
}
.cookie-box-header {
    padding: 22px 0 10px;
}
.cookie-box input[type="checkbox"] {
    position:relative;
    top: 2px;
}
.cookie-box .cat-desc {
    font-size: 12px;
    color: #a3a3a3;
}
.cookie-box .cookie-cat-detail > summary {
    padding-bottom: 10px;
}
.cookie-box .cookie-cat-detail > summary:hover {
    cursor: pointer;
    opacity: 0.9;
}
.cookie-box .action-buttons {
    padding-top: 15px;
}
.cookie-list {
    border: 1px solid #dadada;
    border-radius: 8px;
    padding: 10px 15px 0px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.cookie-notice {
    position: fixed;
    bottom: 14px;
    right: 53px;
    z-index: 999;
    padding: 18px 22px 15px 22px;
    max-width: 500px;
    background: #e1e1e1ed;
    box-shadow: 0px 0px 12px 2px #00000029;
    border: 1px solid #d9d9d9;
}
.cookie-notice p {
    font-size: 14px;
    line-height: 17px;
    color:#000;
}
.cookie-notice button, 
.cookie-box button {
    font-size: 12px;
    background: #fff;
    border: 1px solid #a8a8a8;
    border-radius: 4px;
    padding: 2px 10px;
}
.cookie-box button {
    margin-right: 5px;
    background-color: #ebebeb;
}
.no-cookies {
    font-size: 12px !important;
    color: #000;
}
.action-buttons {
    display: flex;
    justify-content: space-between;
}

/*******END COOKIES SECTION*******/

/******* START Contact Us Button on Standard Pages *******/
.ctu-bar {
    background: #cccccc5e;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    display: none;
    justify-content: center;
    align-items: center;
}
.ctu-bar p {
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ctu-bar .btn {
    border-radius: 0;
}

/******* END Contact Us Button on Standard Pages *******/

/**********************************************************************/
/**********************************************************************/
/***********************START MEDIA QUERIES****************************/
/**********************************************************************/
/**********************************************************************/

@media(max-width:1199px){

    .navbar-default .navbar-form, 
    form.search-form input[type="text"] {
   
    width: auto;
    } 

    .pcomlinks {
        padding-bottom: 60px;
        padding-top: 50px;
    }
    .feature-image {
        height: 454px;
    }

    .main-wrapper .gallery {
        margin-left: 0px !important;
    }

    .main-wrapper .gallery-item {
        padding-left: 10px;
        padding-right: 10px;
    }

    .project-detail {    
        height:auto;
        min-height: 93px;
        padding-left: 85px;
        padding-right: 15px;
        padding-bottom: 35px;
        padding-top: 20px;
        background-position-x: 0px;
        background-position-y: 20px;
        border-right: none;
        margin-bottom: 15px;       
    }
    .project-detail h6 {
        margin-top:0px;   
    }
    .project-detail:last-child {
         border-bottom: none;
    }
    .box-style-copy {
        padding-bottom:15px;
    }

    .news-item-thumb {
        height:476px;
    }

    .child-pages-grid-item {
        height: 266px;
    }
    .the-content iframe{
        max-width: 100%;
        width: 100% !important;
    }
}


@media(max-width:1110px){   
    header .nav > li > a { 
        padding-right: 10px;
    }    
    .form-wrapper .cancel-search {
        left: 0px;
    }
}

@media(max-width:1047px){
    header .nav > li > a {
        padding-left: 5px;         
    }    
    .dropdown-menu::before {
        left: 9px;
    }
    .dropdown-menu.two-column {
        left: -197px !important;
    }
    .dropdown-menu.two-column::before {  
        left: 205px !important;
    }
}

@media(max-width:991px){ 

    .child-pages-grid-item {
        height:272px;
    }
    header ul.nav {
        position: relative;
        left: 30px;
    }
    .navbar-default .navbar-nav > li > a .caret {
        display: none;
    }
    /***end fix for menu items ***/
 
    .feature-image {
        height: 384px;
    }
     
     header .navbar-toggle {
        position: relative;
        top: -9px;
    }   

    .sidebar {    
        padding-top: 25px;
        padding-left: 0px;
        padding-right: 0px;        
        min-height: inherit;
    }

    .feature-project-sidebar-img, 
    .feature-project-sidebar-title, 
    .text-component {
        width:100%;
    }

    .the-content img.alignleft, 
    .the-content div.wp-caption.alignleft, 
    .the-content iframe.alignleft,
    .the-content div.alignleft,
    .the-content img.alignright, 
    .the-content div.wp-caption.alignright, 
    .the-content iframe.alignright, 
    .the-content div.alignright {
        float: none;
        clear:both;
        display: block;
        margin-right: 0px;    
        margin-left: 0px;         
    }
    .the-content img,
    .the-content .wp-caption, 
    .the-content .wp-caption img,
    .the-content iframe{
        max-width: 100%;
        width: 100% !important;
    }     
    .item-index-2 {
        display: none;
    }
    .left-box .the-text {
        font-size: 25px;
        line-height: 30px;
    }  

    .sidebar-media-inquires .sidebarImg {
        position: relative;
    }
    .sidebar-media-inquires ul {
        margin-left: 0;
    }

}


@media(max-width:843px){
    header .navbar-form input[name="s"].form-control {
         width:57px ; 
    }
    .form-wrapper .cancel-search {
        left: -10px;
    }
    .subscribe-bar a {
        display: block;
        margin: 12px auto;
    }    
}


/******WORDPRESS ADMIN BAR CHANGES******/

@media(max-width:782px){   
    header .navbar-toggle {
        margin-right: 15px;
    }
}
 
@media(min-width:769px){
    .wide-menu.open .wide-menu-container {
        display:grid;
    } 
    /*THIS IS THE DEFAULT MENU WE'RE HIDING BECAUSE OF THE WIDE MENU*/
    .wide-menu.open .dropdown-menu { 
        display:none;
    }
    .dropdown-menu {      
        padding-left:22px;
        padding-right:22px;
        padding-bottom: 12px;
        padding-top: 12px;
        box-shadow: 0px 3px 2px 1px #0000001a;
    }    
    .dropdown-menu > li > a {
        font-weight: 500;
        font-size:15px;
        border-bottom:1px solid #e5e5e5;
        padding-top:14px;
        padding-bottom:14px;
        padding-left:0;
        padding-right:0;
    }
    .dropdown-menu > li:last-child > a {
        border-bottom:none;
    }

    .dropdown-menu > li.menu-item-pad-left > a {
        margin-left:25px;
    }

    /**two column dd**/
    .dropdown-menu.two-column {
        left: -180px;
        width: 644px;
        padding-left:0px;
        padding-right:0px;
    }

    .dropdown-menu.two-column::before {
        left: 224px;
    }
    .dropdown-menu.two-column > li {
        float:left;
        width:292px;      
        margin-left: 20px;
    }

    .dropdown-menu.two-column > li > a {
        padding-right:20px;
        overflow:hidden;
        text-overflow: ellipsis;
    }

    .dropdown-menu.two-column > li.menu-item-pad-left > a {
        margin-left:0px;
    }

}

/***********WHEN MOBILE MENU ACTIVATES********/
@media(max-width:768px){     
    body {
        padding-top:52px;
    }
    header#main-header-top {
        height:52px;
    }
    header#main-header-top.nav-upward {
        top: -52px; 
    }

    /*****header styles when logged in***/
    body.logged-in header#main-header-top {
        padding-top: 46px;
    }

    header #navbar {
        background:#081D31;
        max-height: 450px;    
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .5);
    }    

    header .navbar-default .navbar-collapse,
    header .navbar-default .navbar-form {
        border-color: #666666;
    }   

    .content-area, 
    .sidebar {     
        padding-left: 15px;
        padding-right:15px;              
    }      
   
    .bluefilter {
        display: none !important;
    }

    .sidebar {
        padding-left:0;
        padding-right:0;
    }


    header .navbar-form {
        margin-left: 0;        
        overflow: hidden;
        padding-top: 0px;
        padding-bottom: 0;
    }
    header .navbar-form .form-group {
        width:85%;
        float: left;
    }
    header .navbar-form input[name="s"].form-control {
        width:100%;
        height: 46px;
        padding: 5px 16px;
        font-size: 16px;
    }
    header .mobile-form-wrapper .navbar-form {
        width:99.9%
    }

    header .navbar-form .btn {
        float: right;
        display: none;
    }
    .navbar-form .form-group {
        margin-bottom: 0;
    }
    .mobile-form-wrapper {
        margin-left: -15px;
        margin-right:-15px;
        position: relative;
        background: #fff;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .5);
    }
    .sm-pointer {
        display: block;
        background:url('images/search-triangle.png') no-repeat;
        width:25px;
        height:13px;
        position: absolute;
        top: -12px;
        right: 52px;
    }

    .navbar-default .navbar-nav > li > a .caret {
        display: block;
        float:right;
        border-top: 5px dashed;        
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        position: relative;
        top: 8px;
        left: 5px;
    }

    .navbar-default .navbar-nav > li {
        border-bottom:1px solid #3f3f3f;
    }

    /* header #navbar {
        max-height: 600px;
    } */

    .feature-image {
        height: 304px;
    }

    header .navbar-brand {      
        position: relative;       
        width:129px;
        height: 17px;
        top:6px;
    }
    header .navbar-brand img {
        width:129px;
    }

    header .container-fluid {
        top: 10px;
        padding-right: 15px;
        padding-left: 15px;
    }
    header .navbar {
        height: auto;
        padding-bottom: 10px;
    }

    header .navbar.full-height{
        height:100%;
    }    

    header #navbar {       
        position: relative;
    }
    header #navbar li:last-child {
        padding-bottom: 5px;
    }
    header .nav > li > a {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 15px;
        padding-bottom: 15px; 
        font-size:18px;
    }
    header .navbar-default .navbar-nav > .active > a, 
    header .navbar-default .navbar-nav > .active > a:hover, 
    header .navbar-default .navbar-nav > .active > a:focus {
        background:transparent;
        border-bottom: none;        
    }  
    .dropdown-menu::before {
        top: 37px;
        left: 18px;
    } 

    .dropdown-menu > li.menu-item-pad-left > a {
        margin-left:25px;
    }

    .navbar-nav .open .dropdown-menu {
        background:#f7f7f7;
        margin-top:15px;
        padding-bottom: 0;
    }
    .wide-menu.open .wide-menu-container {
        display:none;
    } 
    .wide-menu.open .dropdown-menu .dropdown-menu {
        display: none; /***removed per sasha: jira www-451 ***/
        margin-top: 0;
        padding-left: 22px;
    }

    .dropdown-menu li a {
        font-size:15px;
    }

    .dropdown-menu li.menu-item a{
        border-bottom: 1px solid #fff;
    }

    header .navbar-nav .open .dropdown-menu > li > a, 
    header .navbar-nav .open .dropdown-menu .dropdown-header, 
    header .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        padding-top:12px;
        padding-bottom:12px;
        color: #000;
        font-size: 16px;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a {
        background-color:transparent;
        color: #50bf34;
    }

    header .navbar-default .navbar-nav .open .dropdown-menu > .active > a, 
    header .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    header .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #50bf34;
        background-color: transparent;
    }

    header .navbar-nav .open .dropdown-menu > li:first-child > a {
        padding-top:5px;
    }
    header .navbar-nav .open .dropdown-menu > li:last-child > a {
        padding-bottom:20px;
    }

    header #navbar .dropdown-menu li.menu-item:last-child {
        padding-bottom:0;
    }
    .navbar-default .navbar-nav > li > a, 
    .navbar-default .navbar-nav > .open > a, 
    .navbar-default .navbar-nav > .open > a:hover, 
    .navbar-default .navbar-nav > .open > a:focus {
        font-weight: 500;
        color: #c2c2c2;
    }

    .navbar-default .navbar-form  {
        border-color:transparent;
        margin-bottom:0;
        border-bottom:1px solid #dedede;
        border-top:1px solid #dedede;
        margin-top: 0px;
    }

    header ul.nav {
        left: 0px;
        margin-bottom: 0;
    } 

    .dropdown-menu {
        padding-bottom: 5px;
        min-width: inherit;
    }
    .navbar-default .navbar-nav > .open > a, 
    .navbar-default .navbar-nav > .open > a:hover, 
    .navbar-default .navbar-nav > .open > a:focus {      
        top: 0px; 
        box-shadow: none;
        padding-bottom:0;
    }
        
    .dropdown-menu > li > a {
        white-space: inherit;
    }

    .box-style-copy {
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 18px;
        line-height: 20px;
    }

    .the-content ol,
    .the-content ul {
        margin-left: 0px;
    }

    .left-box {
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom:15px;
    }    
    .carousel-wrap .boxed-style .box-style {
        padding-bottom: 0;
    }
    .carousel-wrap .boxed-style .box-style a.carousel-previous {
        float:left;
    }
    .carousel-wrap .boxed-style .box-style a.carousel-next {
        float:right;
    }

    h1.the-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 14px;
        margin-top:12px !important;
    }

    .the-content blockquote p,
    .the-content blockquote {
        font-size: 30px;
        line-height: 32px;
    }

    .the-conent .wp-embed-aspect-16-9 iframe {
        min-height:400px;
    }

    .the-content blockquote {
        padding-left:20px;
    }

    footer .contactus {
        margin-top: 25px;
    }

    .slick-prev, 
    .slick-next {     
        top: 44%;
    }

    .single .the-social-buttons {
        margin-top: 20px;
    }

    .single .the-social-buttons li a {
        font-size: 25px;
    }

    .single .the-social-buttons li {
        margin-right:20px;
    }

        
    .the-content blockquote {   
        margin-top:0px;       
    }
    .the-content blockquote,
    .the-content blockquote p {         
        font-size:26px;         
    }
    .the-content blockquote cite {
        font-size: 22px;         
    }

    .sidebar-media-inquires{
        margin-top:0px;
        padding-left:15px;
    }
    .ctu-bar {
        /* height: auto !important;
        padding-bottom: 15px;
        padding-top: 15px; */
        display: flex;
    }
    .cta-bar p {
        width:95% !important;
    }

}

@media(max-width:687px){
    .child-pages-grid-item {
        height:165px;
    }
    .cookie-notice {
        bottom: 0px;
        right: 0px;
        width: 100%;
        min-width: 100%;
    }
    .cookie-notice .action-buttons {
        padding-right: 35px;
    }
}

@media screen and (max-width: 600px){
    #wpadminbar {
         position: fixed !important; 
    }
}



@media(max-width:589px){

    .project-details {
        grid-template-columns: 1fr 1fr;        
    }

    .slick-slider .slick-arrow {
        display:none !important;
    }

    .slick-dots {       
        bottom: 30px;        
        left: 43%;
    }

    .feature-image {
        height: 214px;
    }  
    .news-item-thumb {
        height:389px;
    }
    .the-content iframe{
        height: 296px;
    }
    .the-content .pull-quote {
        padding-left:20px;
        padding-top:120px;
        background-position-x: center;
        background-position-y: 20px;
    }

    .the-content .wp-embed-aspect-16-9 iframe {
        min-height:300px !important;
    }

}

@media(max-width:415px){ /*****iPhone 6+**********/ 
    .feature-image {
        height: 214px; 
    }   
    .child-pages-grid-item {
        height:262px;
    }
    .col-xss-6 {
        width: 50%;
    } 
    .col-xss-12 {
        width: 100%;
    }  
    .child-pages-grid {
        margin-bottom:38px;
    }
    .triangle-large-white-top {       
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid #fff;
    }
    .project-detail {        
        padding-bottom: 8px;
    }    
    body.main-site .tribe-events-single-event-title  {
        font-size: 28px;
        line-height: 34px;          
    }
}

@media(max-width:400px){
    header .navbar-brand {
        position: absolute;
    }
    .news-item-thumb {
        height:300px;
    }
}
@media(max-width:325px){
    .col-xxss-6 {
        width: 50%;
    } 
    .col-xxss-12 {
        width: 100%;
    }  
}