@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
.fixed {
    position: fixed;
}

.none {
    display: none;
}

#header .navbar {
    margin-bottom: 0px;
    border: none;
    border-radius: unset;
    min-height: 40px;
    padding: 48px 64px 32px 64px;
}

@media (min-width: 320px) and (max-width: 1024px) {
    .navbar {
        padding: 48px 24px 32px 24px!important;
    }
}

.navbar .navbar-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    color: #1C2040;
}

.navbar .navbar-wrapper .nav-menu {
    display: flex;
    flex-direction: row;
}

.navbar .navbar-wrapper .nav-menu .hamburger-menu {
    padding: 0;
    background-color: transparent;
    border: none;
    margin-right: 32px;
}

.navbar .navbar-wrapper .nav-menu .nav-list {
    display: flex;
    align-items: center;
}

.navbar .navbar-wrapper .nav-menu .nav-list li {
    list-style: none;
    margin-right: 16px;
}

.navbar .navbar-wrapper .nav-menu .nav-list li a:hover {
    color: inherit;
}

@media (min-width: 320px) and (max-width: 768px) {
    .navbar .navbar-wrapper .nav-menu .nav-list {
        display: none!important;
    }
}

.navbar .navbar-wrapper .nav-menu .nav-list span {
    margin-right: 16px;
}

.navbar .navbar-wrapper .nav-menu .nav-list span:last-child {
    margin-right: 0;
}

@media (min-width: 768px) and (max-width: 835px) {
    .navbar .navbar-wrapper .nav-menu .hamburger-menu {
        margin-right: 10px;
    }
    .navbar .navbar-wrapper .nav-menu .nav-list span {
        margin-right: 10px;
    }
}

.navbar-wrapper .nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

@media (min-width: 320px) and (max-width: 425px) {
    .navbar-wrapper .nav-logo .main-logo img {
        width: 168px;
        height: 32px;
    }
    .sidebar .sidebar-menu-header .sidebar-main-logo img {
        width: 168px;
        height: 32px;
    }
}

.navbar-wrapper .nav-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar-wrapper .nav-buttons .hear-button {
    width: 99px;
    height: 32px;
    border: 1px solid #1C2040;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: transparent;
    color: #1C2040;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    margin-right: 39px;
}

@media (min-width: 320px) and (max-width: 550px) {
    .navbar-wrapper .nav-buttons .hear-button {
        width: 40px;
    }
    .navbar-wrapper .nav-buttons .hear-button span {
        display: none;
    }
}

.navbar-wrapper .nav-buttons .search-button {
    background-color: transparent;
    border: none;
    border-radius: unset;
}


/*Navbar-dark*/

#header .navbar-dark {
    background: #1C2040;
}

.navbar-dark .navbar-wrapper {
    color: #FFFFFF;
}

.navbar-dark .navbar-wrapper .nav-buttons .hear-button {
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}


/* Search Block*/

.search-block {
    display: none;
}

.search-block.active {
    display: block;
    position: absolute;
    padding: 0 64px 0 64px;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    z-index: 20;
}

.search-block .input-search-block {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.search-block .back-search-button {
    margin-top: 50px;
    cursor: pointer;
}

.search-block .input-search-block .input-wrapper {
    position: relative;
}

.search-block .input-search-block input {
    width: 100%;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #1C2040;
    box-sizing: border-box;
    padding: 8px;
    border-radius: 2px;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 32px;
    color: #1C2040;
}

.search-block .input-search-block input::placeholder {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 32px;
    color: #1C2040;
    outline: none;
}

.search-block .input-search-block .search-button {
    position: absolute;
    background: none;
    border: none;
    top: 7px;
    right: 10px;
}

.search-block .search-404 {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.search-block .search-404 span {
    max-width: 311px;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #E84C4B;
}

.search-block .search-success {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.search-block .search-success .search-success-wrapper span {
    position: relative;
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #5B78A0;
    margin-right: 18px;
}

.search-block .search-success .search-success-wrapper span.active {
    font-weight: bold;
    color: #1C2040;
}

.search-block .search-success .search-success-wrapper span.active:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #FEC0AA;
}

.banner-title-background {
    background-color: rgba(115, 138, 230, 0.8);
}
.banner-title-background h1 {
    padding: 10px;
}

/*Side bar*/

.sidebar {
    display: none;
}

.sidebar.active {
    display: block;
    overflow: hidden;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background: #1C2040;
    z-index: 11;
}

.sidebar.active .sidebar-close-button {
    cursor: pointer;
}

.sidebar .sidebar-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 64px 32px 64px;
}

.sidebar .sidebar-menu-body {
    padding: 0px 64px 0px 64px;
}

.sidebar .sidebar-menu-body .sidebar-block {
    display: flex;
    flex-direction: column;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
}

.sidebar .sidebar-menu-body .sidebar-block h3 {
    font-family: Inter!important;
    font-style: normal!important;
    font-weight: bold!important;
    font-size: 32px;
    line-height: 48px;
    color: #E84C4B;
}

.sidebar .sidebar-menu-body .sidebar-block ul {
    padding: 0;
}

.sidebar .sidebar-menu-body .sidebar-block li {
    display: inline-flex;
    list-style: none;
    margin-right: 16px;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    cursor: pointer;
}

.sidebar .sidebar-menu-footer {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    padding: 0px 64px 0px 64px;
}

.sidebar .sidebar-menu-footer ul {
    padding: 0;
}

.sidebar .sidebar-menu-footer li {
    display: inline-flex;
    list-style: none;
    margin-right: 16px;
    font-size: 16px;
    line-height: 24px;
    color: #5B78A0;
    cursor: pointer;
}

@media (min-width: 320px) and (max-width: 768px) {
    .navbar-wrapper .nav-buttons .search-button {
        display: none!important;
    }
    .navbar-wrapper .nav-buttons .hear-button {
        margin-right: 0;
    }
    .banner {
        padding: 0!important;
    }
    .banner .main-banner-text {
        padding: 32px 64px 64px 64px!important;
    }
    .main-content-wrapper .sidebar-wrapper {
        padding: 0!important;
    }
    .sidebar-wrapper {
        padding: 0px!important;
    }
    .post-column-wrapper .post-column .post-column-body .post-column-block {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 320px) and (max-width: 550px) {
    .main-banner-wrapper {
        position: relative;
        height: 328px;
        overflow: hidden;
    }
    .main-banner-wrapper .main-banner {
        position: absolute;
        width: auto;
        height: 100%;
        right: 0;
        transform: translateX(10%);
    }
    .search-block.active {
        padding: 25px 25px 0 25px!important;
    }
    .search-block .back-search-button {
        margin-top: 25px!important;
    }
    .banner .main-banner-text .banner-title h1 {
        font-size: 16px!important;
        line-height: 24px!important;
    }
    .banner .main-banner-text {
        padding: 25px 25px 0 25px!important;
    }
    .main-content-wrapper {
        margin-top: 48px;
        padding: 0px 25px 0 25px!important;
    }
    .sidebar-header .sidebar-title {
        font-size: 15px;
    }
    .sidebar-header .sidebar-button button {
        font-size: 15px;
    }
    .middle-banner-wrapper {
        padding: 0px 25px 0 25px!important;
    }
    .poster-wrapper {
        padding: 0px 25px 0 25px!important;
    }
    .post-column-wrapper {
        padding: 0px 25px 0 25px!important;
    }
    ._footer {
        padding: 0px 25px 32px 25px!important;
    }
    .box-widget-footer .box-widget-title {
        font-size: 22px!important;
    }
    ._footer .footer-nav-subscribe {
        padding: 0;
    }
    ._footer .footer-nav-hidden {
        padding: 0!important;
    }
    .box-widget-footer .footer-navigation.white span {
        margin-right: 8px!important;
        font-size: 13px;
    }
    .category-wrapper {
        padding: 0px 25px 0 25px!important;
    }
    .post-column-wrapper {
        margin-top: 48px!important;
    }
    .publication-content .publication-header .page-title {
        font-size: 24px !important;
        line-height: 32px !important;
    }
    .publication-content .entry p {
        font-size: 16px!important;
        line-height: 24px!important;
    }
    .comments .comments-block .comments-text-wrapper .comments-text .comments-author {
        font-size: 16px !important;
        line-height: 24px !important;
    }
    .publication-comments .comment-input-block .comments-input {
        font-size: 16px !important;
        line-height: 24px !important;
    }
    .sidebar .sidebar-menu-header {
        padding: 48px 24px 32px 24px!important;
    }
    .sidebar .sidebar-menu-body {
        padding: 0px 25px 0 25px!important;
    }
    .sidebar .sidebar-menu-footer {
        padding: 0px 25px 0 25px!important;
    }
    .sidebar .sidebar-menu-body .sidebar-block h3 {
        font-size: 16px!important;
        line-height: 24px!important;
    }
    .sidebar .sidebar-menu-body .sidebar-block li {
        font-size: 18px!important;
        line-height: 36px!important;
        margin-right: 15px!important;
    }
    .sidebar .sidebar-menu-footer li {
        font-size: 12px!important;
        line-height: 24px!important;
        margin-right: 4px!important;
    }
    .about-us {
        margin-bottom: 0!important;
    }
    .contact-subtitle {
        font-size: 16px!important;
        line-height: 24px !important;
    }
    .contact-body span {
        font-size: 16px!important;
        line-height: 24px !important;
    }
}

.banner {
    position: relative;
    height: 592px;
    max-height: 592px;
    overflow: hidden;
    margin-bottom: 32px;
    /* padding: 0 64px 0 64px; */
    margin: 0 64px 32px 64px;
}

.main-banner {
    width: 100%;
    height: auto;
}

.banner .main-banner-text {
    width: auto;
    max-width: 640px;
    height: auto;
    position: absolute;
    bottom: 0;
    padding: 40px 0 32px 32px;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 24px;
    color: #FFFFFF;
}

@media (min-width: 320px) and (max-width: 768px) {
    .banner {
        margin: 0;
    }
}

@media (min-width: 320px) and (max-width: 992px) {
    .banner {
        max-height: 50vh;
        overflow: unset;
    }
    .publication-main-img {
        max-height: 24vh !important;
    }
    .banner .main-banner-text {
        color: #000000;
        position: relative;
    }
    .banner .main-banner-text .banner-title h1 {
        color: #000000!important;
    }
    .main-content-wrapper {
        margin-top: 70px;
    }
    .post-column-wrapper .post-column .post-column-body .post-column-block .post-column-img img {
        width: 100% !important;
    }
    .show-more-button {
        display: flex!important;
    }
    .publication-content {
        padding: 0px 25px 0 25px!important;
    }
    .mobile-publication-none {
        display: none;
    }
    .d-sm-none {
        display: none;
    }
    .input-search-block {
        display: none;
    }
    .sidebar_header_mobile_excerpt {
        display: none!important;
    }
}

.banner .main-banner-text .author-block img {
    margin-right: 16px;
}

.banner .main-banner-text .banner-title h1 {
    font-family: Inter!important;
    font-style: normal;
    font-weight: bold!important;
    font-size: 32px;
    line-height: 48px;
    color: #FFFFFF;
}

.banner .main-banner-text .banner-subtext {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.banner .main-banner-text .banner-subtext .article-category {
    margin-right: 16px;
}


/*End of header and banner*/

.main-content-wrapper .sidebar-wrapper {
    padding: 32px 32px 40px 32px;
    margin-bottom: 65px;
}

.category-wrapper .sidebar-wrapper {
    padding: 32px 32px 40px 32px;
    height: auto;
}

.sidebar-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

.sidebar-header .sidebar-title {
    font-weight: bold;
    color: #E84C4B;
}

.sidebar-header .sidebar-button button {
    margin-right: 16px;
    padding: 0;
    color: #5B78A0;
    border: none;
    background: transparent;
}

.sidebar-header .sidebar-button button:last-child {
    margin-right: 0;
}

.sidebar-header .sidebar-button .is-active {
    position: relative;
    font-weight: bold;
    padding-bottom: 2px;
    color: #1C2040;
}

.sidebar-header .sidebar-button .is-active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #FEC0AA;
}

.news-block {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
}

.news-block a {
    font-family: Inter!important;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 8px;
}

.news-block span {
    font-size: 12px;
    line-height: 24px;
    color: #8A8A8A;
}

.post-date .article-category {
    color: #000000;
    font-weight: bold;
    margin-right: 16px;
}

.post-date .article-category:before {
    content: "\A";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000000;
    display: inline-block;
    margin: 2px 8px;
}

.get-news-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}

.get-news {
    width: auto;
    height: 32px;
    padding: 4px 16px 4px 16px;
    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #1C2040;
    border: none;
    border-radius: 4px;
}


/*TODO delete before commit*/

#archives-4 {
    display: none;
}

#recent-posts-2 .widget_title {
    display: none;
}


/*End of deleting before commit*/

.main-content-wrapper {
    padding: 0 64px 0 64px;
}

.main-content-wrapper .main-posts-list {
    padding: 0;
}

.main-content-wrapper .main-posts-list .post-list-content .control-post .post-block {
    text-align: center;
    max-height: 224px;
    position: relative;
    overflow: hidden;
}

.main-content-wrapper .main-posts-list .post-list-content .control-post .post-block img {
    width: 100%;
    height: auto;
}

.thumbnail {
    padding: 0;
    border: none;
}

.thumb-mini-4 .caption h3,
.thumb-mini-2 .caption h3 a {
    font-family: Inter !important;
    font-style: normal !important;
    ;
    font-weight: bold !important;
    ;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.caption .caption-description .caption-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.caption .caption-description .caption-author span {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
}

.caption .caption-description .caption-author img {
    width: 32px;
    height: 32px;
    margin-right: 16px;
}

.caption .caption-description .caption-title {
    margin-top: 8px;
}

.caption .caption-description .caption-subtext {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 8px;
}

.caption .caption-description .caption-subtext .article-category {
    display: flex;
    align-items: center;
}

.caption .caption-description .caption-subtext .article-category img {
    width: 10px;
    height: 12px;
    margin-right: 8px;
}

.caption .caption-description .caption-subtext .article-category a {
    font-family: Inter !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 12px;
    line-height: 12px;
    color: #000000;
    margin-right: 16px;
}

.caption .caption-description .caption-subtext .caption-data span {
    font-family: Inter !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 12px;
    line-height: 24px;
    color: #8A8A8A;
}

.publication-content .social-buttons {
    margin-bottom: 48px;
    margin-top: 48px;
}

.publication-content .social-buttons .thesis {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    color: #1C2040;
    margin-top: 18px;
    margin-bottom: 0;
}

.social-buttons {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 64px;
    margin-top: 30px;
}

.social-buttons .thesis {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #8A8A8A;
    margin-bottom: 32px;
    margin-top: 20px;
}

.middle-banner-wrapper {
    padding: 0 64px 0 64px;
}


/*TODO Change the backgroung img to dynamic with get_template_directory_uri()*/

.middle-banner {
    background: url(/wp-content/themes/pressmagz/img/midle-banner.png);
    background-repeat: no-repeat;
    background-position: 70%;
    position: relative;
    padding: 0;
    max-height: 248px;
}

.middle-banner .middle-banner-descr {
    position: relative;
    height: 248px;
    max-height: 352px;
    padding: 32px;
}

.middle-banner .middle-banner-descr:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #1C2040;
    mix-blend-mode: multiply;
    z-index: 0;
}

.middle-banner .middle-banner-descr p {
    font-family: Inter!important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 16px;
    z-index: 2;
    position: relative;
}


/* .middle-banner .middle-banner-descr p:nth-child(3) {
    margin-bottom: 0;
} */

.middle-banner .middle-banner-descr a {
    text-decoration: underline;
    color: #5B78A0;
    font-family: Inter !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 16px;
    line-height: 24px;
}

.middle-banner .middle-banner-descr .middle-banner-title {
    color: #E84C4B;
    margin: 0 0 32px 0;
    font-weight: bold!important;
}

@media (min-width: 320px) and (max-width: 699px) {
    .middle-banner-wrapper {
        padding: 0!important;
    }
    .middle-banner {
        background: url(/wp-content/themes/pressmagz/img/midle-banner-mob.png);
        background-repeat: no-repeat;
        background-position: 70%;
        max-height: 325px!important;
    }
    .middle-banner .middle-banner-descr {
        padding: 32px 14px;
        height: auto;
    }
    .middle-banner .middle-banner-descr p {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .middle-banner .middle-banner-descr .middle-banner-title {
        font-size: 22px!important;
        line-height: 32px!important;
        margin-bottom: 16px!important;
    }
}

.poster-wrapper {
    padding: 0 64px 0 64px;
    margin-top: 64px;
}

.poster-wrapper .poster {
    padding: 0;
}

.poster-wrapper .poster .poster-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    font-family: Inter !important;
    font-style: normal !important;
    font-weight: 300 !important;
    font-size: 16px;
    line-height: 32px;
    color: #5B78A0;
    margin-bottom: 16px;
}

.poster-wrapper .poster .poster-header .poster-title {
    color: #E84C4B;
    font-weight: bold;
}

.poster-wrapper .poster .poster-header .is-active {
    font-weight: bold!important;
    color: #1C2040!important;
}

.poster-wrapper .poster .poster-header .is-active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #FEC0AA;
}

.poster-wrapper .poster .poster-header .poster-button {
    position: relative;
}

.poster-wrapper .poster .poster-header .poster-button button {
    border: none;
    background: transparent;
    position: relative;
}

.poster .poster-body {
    padding: 0;
}

.poster .poster-block {
    padding: 0 32px 32px 0;
    font-family: Inter !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.poster-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.poster-description .poster-date {
    max-width: 116px;
    font-weight: bold;
    color: #1C2040;
}

.poster-description .poster-stick {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    max-width: 74px;
    height: 24px;
    font-family: Inter !important;
    font-style: normal !important;
    font-weight: bold !important;
    font-size: 8px;
    line-height: 14px;
    text-align: center;
    transform: rotate(15deg);
    box-sizing: border-box;
    border-radius: 2px;
}

.poster-description .cancel {
    color: #E84C4B;
    border: 1px solid #E84C4B;
}

.poster-description .moved {
    color: #5B78A0;
    border: 1px solid #5B78A0;
}

.poster-block .poster-location span {
    font-size: 12px;
    margin-right: 16px;
}

.poster .poster-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.poster .poster-footer button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 101px;
    height: 32px;
    background: #1C2040;
    border-radius: 4px;
    border: none;
    color: #FFFFFF;
    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/*Post columns style*/

.post-column-wrapper {
    padding: 0 64px;
    margin-top: 64px;
}

.post-column-wrapper.p-0 {
    padding: 0;
}

.post-column-wrapper .post-column {
    padding: 0;
}

.post-column-wrapper .post-column .post-column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    margin-bottom: 16px;
}

.post-column-wrapper .post-column .post-column-header .post-column-title {
    font-size: 16px;
    line-height: 32px;
    color: #E84C4B;
}

.post-column-wrapper .post-column .post-column-header .post-column-button {
    width: 122px;
    height: 32px;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1C2040;
    border: 1px solid rgba(28, 32, 64, 0.4);
    box-sizing: border-box;
    border-radius: 4px;
    background-color: transparent;
}

.post-column-wrapper .post-column .post-column-body {
    padding: 0;
}

.post-column-wrapper .post-column .post-column-body .post-column-block {
    min-height: 315px !important;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    padding-bottom: 32px;
}

@media (min-width: 768px) {
    .post-column-wrapper .post-column .post-column-body .post-column-block:first-child {
        padding-left: 0;
    }
    .post-column-wrapper .post-column .post-column-body .post-column-block:last-child {
        padding-right: 0;
    }
}

.post-column-wrapper .post-column .post-column-body .post-column-block .post-column-img {
    max-height: 160px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.post-column-wrapper .post-column .post-column-body .post-column-block .post-column-img img {
    width: 100%;
    height: auto;
}

@media (max-width: 1440px) {
    .post-column-wrapper .post-column .post-column-body .post-column-block .post-column-img img {
        width: auto;
    }
}

@media (min-width: 1441px) {
    .footer-category {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.post-column-wrapper .post-column .post-column-body .post-column-block .post-column-title {
    max-height: 72px;
    overflow: hidden;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin-top: 16px;
    margin-bottom: 8px;
}

.post-column-wrapper .post-column .post-column-body .post-column-block .post-column-subtext {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    line-height: 24px;
    color: #000000;
}

.post-column-wrapper .post-column .post-column-body .post-column-block .post-column-subtext img {
    margin-right: 8px;
}

.post-column-wrapper .post-column .post-column-body .post-column-block .post-column-subtext .post-data {
    color: #8A8A8A;
    margin-left: 16px;
}


/*Post columns style end*/


/*Category start*/

.category-wrapper {
    padding: 0 64px;
}

.category-wrapper .breadcrumbs-navigation {
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: unset;
    margin-bottom: 64px;
    margin-top: 16px;
}

#menu-nav-menu {
    list-style: none;
}

#menu-nav-menu li {
    list-style: none;
    display: inline;
    position: relative;
}

#menu-nav-menu li a {
    font-family: Inter !important;
    font-style: normal!important;
    font-weight: 300!important;
    font-size: 16px;
    line-height: 32px;
    color: #1C2040;
    margin-right: 20px;
    cursor: pointer;
    white-space: nowrap;
}

#menu-footer-nav-top li a:hover,
#menu-footer-nav-middle li a:hover {
    text-decoration: none;
    background-color: transparent;
    color: #fff;
}

#menu-footer-nav-top,
#menu-footer-nav-middle {
    display: flex;
    list-style: none;
}

#menu-footer-nav-top li,
#menu-footer-nav-middle li {
    list-style: none;
    display: inline;
    position: relative;
}

#menu-footer-nav-top li:first-child a,
#menu-footer-nav-middle li:first-child a {
    padding-left: 0px;
}

#menu-footer-nav-top li a {
    position: relative;
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    color: #FFFFFF;
}

.category-wrapper .breadcrumbs-navigation a,
{
    display: inline;
    position: relative;
    font-family: Inter !important;
    font-style: normal!important;
    font-weight: 300!important;
    font-size: 16px;
    line-height: 32px;
    color: #1C2040;
    margin-right: 20px;
    cursor: pointer;
    white-space: nowrap;
}

.category-wrapper .breadcrumbs-navigation a.is-active {
    font-weight: bold!important;
}

.category-wrapper .breadcrumbs-navigation a.is-active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #FEC0AA;
}

.show-more-button {
    width: 136px;
    height: 32px;
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: #1C2040;
    border-radius: 4px;
    border: none;
    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
}


/*Publication start*/

.publication-main-img {
    position: relative;
    height: 592px;
    max-height: 592px;
    overflow: hidden;
    margin-bottom: 32px;
}

.publication-main-img img {
    width: 100%;
    height: auto;
}

.publication-content .publication-header a {
    font-family: Inter !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 16px;
    line-height: 24px;
    color: #E84C4B;
    text-decoration: none;
}

.publication-content .publication-header .page-title {
    font-family: Inter !important;
    font-style: normal !important;
    font-weight: bold !important;
    font-size: 32px;
    line-height: 48px;
    margin-top: 16px;
    margin-bottom: 16px;
    color: #000000;
}

.publication-content .publication-header .publication-date a {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 24px;
    color: #8A8A8A;
}

.publication-content .publication-footer .post-meta {
    display: none;
}

.publication-content .entry {
    margin-top: 64px;
}

.publication-content .entry p {
    font-family: Inter;
    font-style: normal;
    font-weight: normal!important;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
}


/*TODO Add img for blockquote*/


/*.publication-content .entry blockquote:before{*/


/*    content: "";*/


/*    position: absolute;*/


/*    top: 0;*/


/*    left: 0;*/


/*    width: 100%;*/


/*}*/

.publication-content .entry blockquote {
    padding: 0;
    margin: 24px 0 24px 0;
    border: none;
}

.publication-content .entry blockquote p {
    font-family: Inter;
    font-style: italic;
    font-weight: normal;
    font-size: 20px;
    line-height: 32px;
    color: #5B78A0;
}

.post-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #E84C4B;
}

.post-meta .publication-view {
    margin-right: 26px;
}

.post-meta .publication-view img {
    margin-right: 12px;
}

.post-meta .publication-comments img {
    margin-right: 12px;
}

.publication-author-info-wrapper {
    display: flex;
}

.publication-author-info-wrapper .publication-author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
}

.publication-author-info-wrapper .publication-author-info span:first-child {
    font-size: 12px;
    line-height: 16px;
    color: #8A8A8A;
}

.publication-author-info-wrapper .publication-author-info span {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

@media (min-width: 992px) {
    .publication-content .social-buttons {
        display: none;
    }
    .publication-content .publication-header .mobile-publication-author {
        display: none;
    }
    .post-author {
        display: none;
    }
}

.publication-comments {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
}

.publication-comments h3 {
    font-family: Inter !important;
    font-style: normal !important;
    font-weight: bold !important;
    font-size: 16px;
    line-height: 32px;
    color: #E84C4B;
    margin-bottom: 48px;
}

.publication-comments .comment-auth-block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
}

.publication-comments .comment-auth-block span {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #1C2040;
}

.publication-comments .comment-auth-block .facebook-auth-button {
    margin-top: 32px;
    width: 163px;
    height: 32px;
    background: #1C2040;
    border-radius: 4px;
    border: none;
}

.publication-comments .comment-auth-block .facebook-auth-button span {
    font-weight: bold;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.publication-comments .comment-input-block {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 64px;
}

.publication-comments .comment-input-block .comments-input {
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #1C2040;
    box-sizing: border-box;
    border-radius: 2px;
    padding: 8px;
    font-size: 20px;
    line-height: 32px;
    color: #1C2040;
}

.publication-comments .comment-input-block .comments-input::placeholder {
    color: #1C2040;
}

.publication-comments .comment-input-block .add-to-facebook {
    margin-top: 16px;
    display: flex;
    align-items: center;
}

#add-to-checkbox:not(:checked),
#add-to-checkbox:checked {
    position: absolute;
    left: -9999px;
}

#add-to-checkbox:not(:checked)+label,
#add-to-checkbox:checked+label {
    position: relative;
    padding-left: 1.95em;
    cursor: pointer;
}

#add-to-checkbox:not(:checked)+label:before,
#add-to-checkbox:checked+label:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 3px;
    width: 16px;
    height: 16px;
    border: 1px solid #5B78A0;
    background: #fff;
    border-radius: 2px;
}

#add-to-checkbox:not(:checked)+label:after,
#add-to-checkbox:checked+label:after {
    content: '\2713\0020';
    position: absolute;
    top: 5px;
    left: 3px;
    font-size: 14px;
    line-height: 0.8;
    color: #5B78A0;
    transition: all .2s;
}

#add-to-checkbox:not(:checked)+label:after {
    opacity: 0;
    transform: scale(0);
}

#add-to-checkbox:checked+label:after {
    opacity: 1;
    transform: scale(1);
}

#add-to-checkbox:disabled:not(:checked)+label:before,
#add-to-checkbox:disabled:checked+label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

#add-to-checkbox:disabled:checked+label:after {
    color: #999;
}

#add-to-checkbox:disabled+label {
    color: #aaa;
}


/* hover style just for information */

.publication-comments .comment-input-block .add-to-facebook span {
    font-size: 12px;
    line-height: 24px;
    color: #5B78A0;
}

.publication-comments .comment-input-block .publish-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 36px;
}

.publication-comments .comment-input-block .publish-button button {
    width: 114px;
    height: 32px;
    background: #1C2040;
    opacity: 0.2;
    border-radius: 4px;
    border: none;
    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.comments {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 16px;
}

.comments .comments-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.comments .comments-block .comments-text-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-left: 16px;
}

.comments .comments-block .comments-text-wrapper .comments-text .comments-author {
    font-weight: bold;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
    margin-right: 16px;
}

.comments .comments-block .comments-text-wrapper .comments-text {
    font-weight: normal;
}

.comments .comments-date span {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #8A8A8A;
    padding-left: 48px;
}

.publication-comments .get-more-comments {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    margin-top: 36px;
}

.publication-comments .get-more-comments button {
    width: 142px;
    height: 32px;
    background: none;
    border: 1px solid #000000;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
}


/*Contact Page*/

.contact-header h1 {
    font-family: Inter !important;
    font-style: normal !important;
    font-weight: bold !important;
    font-size: 16px;
    line-height: 32px;
    color: #E84C4B;
}

.contact-body {
    padding: 0!important;
    display: flex;
    flex-direction: column;
}

.contact-body span {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
}

.contact-email {
    font-weight: bold !important;
    font-size: 20px !important;
    line-height: 32px !important;
    text-decoration-line: underline;
    color: #1C2040 !important;
}

.contact-subtext {
    font-size: 12px !important;
    line-height: 24px !important;
    color: #8A8A8A !important;
}

.about-us {
    margin-bottom: 32px;
}

.about-us span {
    margin-bottom: 32px;
}

.contact-subtitle {
    font-weight: bold !important;
    margin-bottom: 32px;
    margin-top: 32px;
}


/*Author Page*/

.input-search-block {
    width: 100%;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #1C2040;
    box-sizing: border-box;
    border-radius: 2px;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #1C2040;
}

.input-search-block .search-button {
    position: absolute;
    background: none;
    border: none;
    top: 7px;
    right: 10px;
}

.author-info.caption-author {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.author-info.caption-author span {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
}

.author-info.caption-author img {
    width: 32px;
    height: 32px;
    margin-right: 16px;
}

.author-info.caption-title {
    margin-top: 8px;
}

.author-info.caption-subtext {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 8px;
}

#menu-mobile-footer-top {
    display: flex;
    margin-bottom: 16px;
}

#menu-mobile-footer-top>li>a {
    margin-right: 8px!important;
    font-size: 13px;
    color: #fff;
    padding: 0px;
}

#menu-mobile-footer-middle {
    display: flex;
    margin-bottom: 16px;
}

#menu-mobile-footer-middle>li>a {
    margin-right: 8px!important;
    font-size: 12px;
    padding: 0px;
}

@media (min-width: 551px) {
    #menu-mobile-footer-top>li>a {
        font-size: 16px;
    }
}

.main-more {
    display: block !important;
}

.post-block {
    min-height: 170px;
}

/* .post-block>img {
    margin-top: calc(10% * -1) !important;
} */

.post-column-img {
    min-height: 160px;
}

.post-column-img>a>img {
    margin-top: calc(5% * -1) !important;
}

.type-page.status-publish.hentry strong {
    line-height: 45px;
}

.type-page.status-publish.hentry p {
    margin: 0px;
}

.type-page.status-publish.hentry .entry {
    margin-top: 0px;
}

.type-page.status-publish.hentry h6 {
    font-family: Inter;
    font-style: normal;
    font-size: 12px!important;
    line-height: 0px!important;
    color: #8a8a8a!important;
    font-weight: 400 !important;
}

.type-page.status-publish.hentry h1 {
    color: #e84c4b !important;
}

.banner-img,
.publication-img {
    width: 100%;
    height: 100%;
    background-size: 100% !important;
    background-position-y: top !important;
}

@media (max-width: 992px) {
    .banner {
        height: auto !important;
        max-height: max-content;
    }
    .banner-img {
        max-height: 25vh !important;
        height: 592px !important;
    }
    .main-content-wrapper {
        margin-top: 20px;
    }
}

.middle-banner-descr strong {
    color: #E84C4B;
    margin: 0 0 32px 0;
    font-weight: bold!important;
}

.post-author-wrapper {
    display: flex;
    justify-content:space-between;
    margin-top: 32px;
    align-items: center;
}

#prevLink, #nextLink {
    display: none!important;
}