.banner {
    height: calc(80vh - 80px);
    max-height: 720px;
    margin: 0;
}

.about_banner {
    background: url(../images/new_york_skyline_night.jpg) center no-repeat;
    background-size: cover;
}

.banner-wrap {
    width: 100%;
    padding-top: 60px;
}

.banner-text-wrap {
    background-color: rgba(39, 45, 55, 0.8);
    float: left;
    padding: 25px 15px;
    height: 100%;
}

.title {
    color: #fff;
}

.title::after {
    content: "";
    background-color: #2B5ECF;
    height: 5px;
    width: 100%;
    clear: both;
}

.title_text {
    color: #fff;
    font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
}

.posts ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
    height: 100%;
    justify-content: center;
    list-style: none;
    margin: 0 auto;
    max-width: 1200px;
    padding: 10px 0 35px 0;
}

.posts ul li {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    flex-basis: 90%;
    margin: 10px;
    transition: all .5s ease;
}

.posts ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
}

.posts ul li .item {
    background: #fff;
    height: 100%;
    width: 100%;
    text-align: center;
    border-top: 5px solid #2B5ECF;
    padding: 50px 15px;
}

.posts ul li .item img {
    width: 60%;
    border-radius: 50%;
}

.posts ul li .item .overlay {
    padding: 25px 10px 0px;
    text-align: center;
}

.posts ul li .item .overlay .text-info {
    color: #2B5ECF !important;
    font-family: 'Raleway', Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.posts ul li .item .overlay .text-muted {
    font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin: 15px 0;
}

.posts ul li .item .overlay a {
    color: #00bed6;
    margin: auto;
}

.posts ul li .item .overlay a:hover {
    color: #f69646
}

.green_overlay {
    background-color: rgba(0, 135, 104, 0.251);
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.no-results {
    margin-top: 50px;
    text-align: center;
}

.no-results .page-title {
    font-family: 'Raleway', Helvetica, Arial, Lucida, sans-serif;
    font-size: 36px;
    color: #001B46;
    text-transform: capitalize;
}

.posts_wrapper ul {
    display: flex;
}

.entry .entry-header {
    margin: 0;
}

@media only screen and (min-width: 440px) {
    .banner-text-wrap {
        padding: 75px 45px;
    }
}

@media only screen and (min-height: 665px) {
    .title_text {
        font-size: 22px
    }
    .posts ul li {
        flex-basis: 40%;
    }
}

@media only screen and (min-width: 992px) {
    .banner {
        width: 100%;
    }
    .banner-wrap {
        padding-top: 0px;
    }
    .banner-text-wrap {
        padding: 175px 150px 50px;
        width: 100%;
        height: 100%;
    }
    .banner-text {
        width: 65%;    
    }
    .posts ul li {
        flex-basis: 30%;
    }
}

@media only screen and (min-width: 1710px) {
    .banner-text {
        width: 50%;
    }
}