/** Blogs Layout 3 @todo - Set site colors / override file @copyright 2016 Monk Development */
/******************************* SVG ICONS */
.post-icon {
    display: inline-block;
    fill: currentColor;
    height: 1em;
    width: 1em;
}

/******************************* ANIMATIONS */
@keyframes slideDown {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDownFlex {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: flex;
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    0% {
        display: block;
        opacity: 1;
        transform: scale(1);
    }

    99% {
        display: block;
        opacity: 0;
        transform: scale(0);
    }

    100% {
        display: none;
        opacity: 0;
    }
}

@keyframes slideUpFlex {
    0% {
        display: flex;
        opacity: 1;
        transform: scale(1);
    }

    99% {
        display: flex;
        opacity: 0;
        transform: scale(0);
    }

    100% {
        display: none;
        opacity: 0;
    }
}

@keyframes spin-anim {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fade-anim {
    0% {
        opacity: .2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .2;
    }
}

/******************************* FEATURED */
.featured-post {
    margin-bottom: 1rem;
}

.featured-post__item {
    align-items: center;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .featured-post__item {
        flex-direction: row;
    }
}

.featured-post__image {
    margin-bottom: -2px;
}

@media screen and (min-width: 768px) {
    .featured-post__image {
        flex: 0 1 60%;
    }
}

.featured-post__info {
    padding: 3rem 5%;
}

@media screen and (min-width: 768px) {
    .featured-post__info {
        flex: 1 0 30.7%;
        /*padding: 1rem 2.5%;*/
        padding: 2rem;
    }
}

.featured-article__title {
    line-height: 1.25em;
}

.featured-post__description {
    margin-bottom: .25rem;
}

.featured-post__copy p {
    font-size: 1rem;
    margin-bottom: 0;
}

.featured-post__meta {
    font-size: .875rem;
    padding-top: 2px;
    margin-bottom: 12px;
}

.featured-post__nav {
    -webkit-box-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.featured-post__btn {
    align-items: center;
    border: 0;
    display: flex;
    padding: 1rem 1rem .8rem;
    transition: background-color .2s ease;
    font-size: .9125rem;
    text-transform: uppercase;
    letter-spacing: .15em;
}

@media (min-width: 992px) {
    .featured-post__btn {
        font-size: 1.125rem;
        letter-spacing: .3em;
    }
}

.featured-post__btn .icon {
    font-size: 1rem;
    margin: 0 .5rem;
    height: 1em;
    width: 1em;
    display: inline-block;
}

.featured-post__slide {
    width: 100%;
}

/******************************* CATEGORY FILTERS */
.post-categories {
    display: block;
    padding: 1rem 0 1rem;
}

@media (min-width: 48em) {
    .post-categories {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
        padding: 1rem 0 0;
    }
}

/*.post-categories__item { cursor: pointer; display: block; width: 100%; font-weight: 400; line-height: 1.25; text-align: center; white-space: nowrap; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; padding: 1.125rem 1.75rem 1rem; margin: 0 1rem .5rem 0; font-size: .9125rem; border-radius: none; text-transform: uppercase; transition: all 0.2s ease-in-out; border-width: 2px; border-style: solid; letter-spacing: .2em; }*/

/*@media (min-width: 768px) { .post-categories__item { padding: 1.25rem 2.125rem 1rem; font-size: 1.125rem; } }

@media (min-width: 48em) { .post-categories__item { width: auto; cursor: pointer; margin-bottom: 1rem; } }
*/
.post-categories.use-select .post-categories__item {
    display: none !important;
}

/******************************* LIST */
.post-list {
    text-align: center;
}

.post-list__heading {
    /* font-weight: 700; */
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.post-list__grid {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 1.25rem 1rem;
}

@media screen and (min-width: 512px) {
    .post-list__grid {
        flex-direction: row;
    }
}

@media screen and (min-width: 768px) {
    .post-list__grid {
        justify-content: space-between;
    }
}

.post-list__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 512px) {
    .post-list__item {
        flex-basis: 48%;
    }
}

@media screen and (min-width: 768px) {
    .post-list__item {
        flex-basis: 31.2%;
        margin-bottom: 2rem;
    }
}

.post-list__item.search-item {
    min-height: 200px;
}

.post-list__item.search-item .post-list__info {
    padding: 1rem;
}

.post-list__item--padding {
    display: none;
}

@media screen and (min-width: 768px) {
    .post-list__item--padding {
        display: flex;
        background-color: transparent !important;
    }
}

.post-list__image {
    overflow: hidden;
    position: relative;
}

.post-list__image:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    z-index: 100;
    transition: .2s all ease-in-out;
}

.post-list__image img {
    display: block;
    position: relative;
    z-index: 0;
    opacity: 1.0;
    transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.post-list__item--has-image:hover .post-list__image img {
    opacity: 0.85;
}

.post-list__info {
    padding: 1.25rem 1rem 2.5rem;
}

.post-list__item:not(.post-list__item--has-image) .post-list__info {
    padding: 0;
    /*padding-top: 56.04166%;*/
    padding-top: 78%;
    position: relative;
}

.post-list__info_content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-content: center;
    justify-content: center;
    padding: 1.25rem 1rem;
}

.post-list__title {
    margin-bottom: 0;
    line-height: 1.35;
}

.post-list__date {
    margin-bottom: 10px;
    font-size: 16px;
}

.post-list__copy {
    font-size: .8rem;
    margin: 0;
}

.post-list__item--has-image {
    justify-content: flex-start;
    background-color: transparent !important;
}

.post-list__item--has-image .post-list__info {
    padding: .75rem 1rem 1rem;
    position: relative;
}

.post-list__item--has-image .post-list__info h5 {
    transition: color .25s ease-in-out;
    -moz-transition: color .25s ease-in-out;
    -webkit-transition: color .25s ease-in-out;
}

/******************************* LOADING ICON */
.post-list__loading {
    display: none;
}

.post-list__loading .post-icon {
    font-size: 2rem;
}

.post-list__loading--spin {
    display: block;
    text-align: center;
}

.post-list__loading--spin .post-icon {
    animation: spin-anim 1s linear infinite, fade-anim 3s ease-in-out infinite;
}

/******************************* POST NAV */
.post-nav {
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin: 1rem 0;
    padding: .75rem;
}

@media screen and (min-width: 512px) {
    .post-nav {
        -webkit-box-align: stretch;
        align-items: stretch;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        padding: .5rem 1rem;
    }
}

.post-nav--detail {
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    padding: 0;
}

.post-nav__btn {
    -webkit-box-align: center;
    align-items: center;
    border: 0;
    display: -webkit-box;
    display: flex;
    padding: 1rem .5rem;
    transition: background-color .2s ease;
}

.post-nav__btn .article-icon {
    font-size: 1rem;
    margin: 0 .5rem;
}

.post-nav__more {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    padding: .75rem .75rem .5rem;
}

.post-nav__more>div {
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
}

.post-nav__more:disabled {
    cursor: no-drop;
    opacity: .3;
}

.post-nav__more .icon {
    font-size: 1rem;
    margin-right: .5rem;
    margin-top: -4px;
}

.post-nav__search {
    padding: .75rem;
    position: relative;
}

@media screen and (min-width: 512px) {
    .post-nav__search {
        -webkit-box-flex: 0;
        flex: 0 1 16rem;
    }
}

.post-nav__search fieldset {
    position: relative;
    display: block;
    padding: 0 8px;
    margin: 0;
    line-height: 1;
    border-radius: 0;
    overflow: hidden;
    border-width: 0px;
    border-style: solid;
}

.post-nav__search-input {
    float: left;
    display: block;
    width: 80%;
    padding: 0 2.5%;
    border: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    height: 40px;
    outline: none;
    outline: none !important;
    background-color: transparent;
    border-radius: 0;
}

.post-nav__search-submit {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20%;
    font-size: 16px;
    vertical-align: middle;
    text-align: center;
    background: none;
    outline: none;
    border: 0;
    padding: 2px 0;
    cursor: pointer;
    transition: .3s;
    background-color: transparent;
}

/******************************* RECOMMENDED */
.recommended-posts {
    padding: 2rem 0;
}

.recommended-posts__heading {
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
}

.recommended-posts__grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
}

@media screen and (min-width: 512px) {
    .recommended-posts__grid {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
}

@media screen and (min-width: 768px) {
    .recommended-posts__grid {
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.recommended-posts__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

@media screen and (min-width: 512px) {
    .recommended-posts__item {
        flex-basis: 48%;
    }
}

@media screen and (min-width: 768px) {
    .recommended-posts__item {
        flex-basis: 31.2%;
    }
}

.recommended-posts__item a {
    display: block;
}

.recommended-posts__info .recommended-posts__title {
    text-align: center;
    margin: 1em auto;
    transition: .2s all ease-in-out;
}

.recommended-posts__image {
    position: relative;
}

.recommended-posts__image:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: #4072d7;
    z-index: 100;
    transition: .2s all ease-in-out;
}

/******************************* DETAIL VIEW */
.post-header {
    position: relative;
}

.post-header__info--image>.container {
    width: 90%;
}

.post-header__image {
    max-width: none;
    width: 100%;
}

.post-header:not(.hasvideo) .post-header__info--image {
    margin-top: -3.125rem;
}

@media screen and (min-width: 512px) {
    .post-header:not(.hasvideo) .post-header__info--image {
        bottom: -1px;
        left: 0;
        margin-top: 0;
        position: absolute;
        right: 0;
    }
}

.post-header__title {
    font-size: 3.125rem;
    margin-bottom: 0;
    padding-top: 3rem;
    text-align: center;
}

.post-header__btn {
    align-items: center;
    border: 0;
    display: flex;
    opacity: .8;
    padding: 1rem 0;
    transition: opacity .2s ease;
}

.post-header__btn:hover {
    opacity: 1;
}

.post-header__btn .post-icon {
    font-size: 1rem;
    margin: -2px .5rem 0;
}

.post-body {
    margin: 0 auto;
    max-width: 46.25rem;
    width: 95%;
}

.post-body__meta {
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.post-body__summary {
    font-size: 1.25rem;
}

.post-body__author {
    margin-bottom: 0;
}

.post-body__button {
    align-items: center;
    border-radius: .375rem;
    display: flex;
    font-size: .875rem;
    justify-content: center;
    margin-top: 1rem;
    padding: .75rem 1.5rem;
    text-align: center;
    transition: background-color .2s ease;
    width: calc(100% - 3rem);
}

@media screen and (min-width: 768px) {
    .post-body__button {
        margin-top: 0;
        width: auto;
    }
}

.post-body__button .post-icon {
    margin-left: .5rem;
}

.post-body__content {
    margin-bottom: 2rem;
}

.post-body__tags a {
    font-size: .9125em;
}

.post-author {
    display: block;
}

.post-author__image {
    border: none;
    width: 50%;
    margin-bottom: 1rem;
}

.post-author__info {
    width: 100%;
}

@media (min-width:768px) {
    .post-author {
        display: flex;
        flex-wrap: nowrap;
    }

    .post-author__image {
        border: none;
        width: 18%;
        margin-right: 1rem;
        align-self: start;
    }

    .post-author__info {
        width: calc(82% - 1rem);
    }
}

.post-author__heading {
    margin-bottom: 0;
}

.post-author__title {
    margin-bottom: 1rem;
}

.post-author__social {
    margin-bottom: 1rem;
}

.post-author__social:empty {
    display: none;
}

.post-author__social-button {
    border-radius: 50%;
    margin-right: .5rem;
    padding: .25rem .33rem;
    transition: background-color .2s ease;
    vertical-align: top;
}

/******************************* COMMENTS */
.comments {
    margin-bottom: 2rem;
}

.comment-intro {
    padding: 1em 0;
    margin-bottom: 1em;
}

.comment-intro h2 {
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 0;
}

.comments h2,
.comment-login {
    float: left;
    margin-right: 1em;
}

.comment-item {
    clear: both;
    overflow: hidden;
    padding: 1.5rem 0;
}

.comment-login {
    margin-top: 5px;
}

.commenter-thumb {
    width: 64px;
    height: 64px;
    overflow: hidden;
    float: left;
    margin-right: -64px;
}

.comment {
    margin-left: 74px;
    margin-bottom: 1em;
}

.comment-login {
    font-size: .9125em;
}

.comment-header {
    line-height: 1.3;
    font-size: .9125em;
    padding: .5em;
}

.comment-body {
    padding: 5px;
}

.comments form {
    margin: 0 0 2rem 0;
    padding: 0 10px 40px 10px;
    border: none;
}

@media (min-width: 768px) {
    .comments form {
        padding: 0 30px 40px 30px;
    }
}

.comments form>label {
    display: block;
    position: relative;
    width: 100%;
    padding: 2rem 0;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 700;
    font-style: normal;
    font-size: 1.5rem;
    border-bottom-style: solid;
    border-bottom-width: 2px;
}

.comments form p.commentName {
    line-height: 1rem;
    margin-bottom: .75rem;
    line-height: 1.2;
    text-align: left;
    font-weight: 700;
    font-size: 1.25rem;
}

.comments form #comment,
.comments form #name {
    display: block;
    width: 100%;
    font-size: .875rem;
    padding: .6rem .4rem;
    margin-top: .5rem;
    outline: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    vertical-align: baseline;
    font-weight: 400;
}

.post-header__video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.post-header__video iframe,
.post-header__video object,
.post-header__video embed,
.post-header__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post-header__video video {
    background-position: center center;
    background-size: cover;
    object-fit: cover;
}

@media screen and (max-width: 899px) {
    .post-categories {
        display: none;
    }
}

@media screen and (min-width: 900px) {
    .post-select {
        display: none;
    }
}

.post-select.use-select {
    display: block !important;
}


.featured-post__item {
    background-color: #004d71;
}

h4.featured-post__description {
    color: white;
}

h2.featured-post__title {
    line-height: 1;
    margin-top: 5px;
}

h2.featured-post__title {
    font-size: 40px;
    color: white;
    line-height: 1;
}

h2.featured-post__title a:hover {
    color: #0075c9;
}

.featured-post__view-more .btn {
    color: white;
    background-color: transparent;
}

.featured-post__view-more .btn:hover {
    color: #0075c9;
    background-color: transparent;
}

.featured-post__btn:hover {
    background-color: #004d71;
}

.recommended-posts__image::after,
.post-list__image::after {
    display: none;
}

.post-categories__item.post-categories__item--active {
    background-color: #0075c9;
}

/*#blogs3 .post-list__item a {
    background-color: transparent;
}*/

.post-list__item--has-image .post-list__info {
    background-color: white;
}

a:hover h2.featured-post__title {
    color: #0075c9;
}

.comments form>label {
    display: block;
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
    margin-bottom: 0;
    text-align: left;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    border-bottom-style: solid;
    border-bottom-width: 0;
}

.comments form p.commentName {
    line-height: 1rem;
    margin-bottom: 12px;
    line-height: 1.2;
    text-align: left;
    font-weight: 700;
    font-size: 24px;
}

.comments form #comment-submit {
    border: 0;
    font-weight: bold;
    letter-spacing: 1.5px;
    font-size: 16px;
    padding: 0.6rem 1.3rem;
    background-color: #ededed;
    color: #0075c9 !important;
}

.comments form #comment-submit:hover {
    color: white !important;
    background-color: #0075c9;
}

.comments form #comment, .comments form #name {
    background-color: #ebebeb;
}

.comments form {
    background-color: #ccc;
}

.comments form #comment, .comments form #name {
    padding: 0.85rem .8rem;
}

 #blogs3 .post-list__info h5.post-list__title:nth-child(2) {
    display: none;
 }