.swiper-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px
}

.swiper-controls .swiper-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgb(0, 30, 0);
    color: rgb(0, 30, 0);
    font-size: 16px;
    border-radius: 50%;
    background-color: transparent;
    -webkit-transition: background-color .3s ease-in-out, color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out, color .3s ease-in-out;
    transition: background-color .3s ease-in-out, color .3s ease-in-out
}

.swiper-controls .swiper-button:focus,
.swiper-controls .swiper-button:hover {
    background-color: rgb(0, 30, 0);
    color: gold
}

.swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    height: 24px
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #e9e6e6;
    display: block;
    border-radius: 50%;
    position: relative;
    cursor: pointer
}

.swiper-pagination-bullet:after {
    content: '';
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    border-radius: 50%;
    border: 1px solid transparent;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.swiper-pagination-bullet-active {
    background: rgb(0, 70, 0)
}

.swiper-pagination-bullet-active:after {
    border-color: rgb(0, 70, 0)
}
.post_article img {
    height: 100%
}

.post_article-media {
    height: 220px;
    overflow: hidden
}

.post_article .metadata {
    font-family: Archivo, sans-serif;
    font-weight: 600;
    margin: 20px 0
}

.post_article .metadata .comments_icon {
    display: none
}

.post_article-header {
    margin: 20px 0;
    color: #000810
}

.post_article-text:last-of-type {
    margin-top: 20px
}

.post_article .block,
.post_article .checklist {
    margin: 20px 0
}

.post_article .block .media {
    height: 220px;
    overflow: hidden
}

.post_article-quote {
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 30px
}

.post_article-quote_quote {
    quotes: none;
    font-family: Archivo, sans-serif;
    font-weight: 700
}

.post_article-quote_author {
    display: block;
    text-transform: uppercase;
    margin-top: 30px;
    padding-left: 60px;
    position: relative;
    font-family: Archivo, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px
}

.post_article-quote_author:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 2px;
    width: 40px;
    background: #ffc631
}

.post_article-footer {
    margin-top: 70px
}

.post_article-footer .tags {
    margin-bottom: 15px
}

.post_article-footer .socials {
    width: 100%
}

.post_author {
    padding: 40px 0;
    border-top: 1px solid #e9e6e6;
    border-bottom: 1px solid #e9e6e6;
    text-align: center
}

.post_author .avatar {
    width: 80px;
    margin: 0 auto 15px
}

.post_author-about .name {
    margin-bottom: 15px;
    font-family: Archivo, sans-serif;
    font-weight: 700
}

.post_author-about .bio {
    color: #162739
}

.post_author .btn {
    width: 100%;
    margin: 15px 0 0
}

.post_nav {
    padding: 80px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.post_nav-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px
}

.post_nav-item:hover .label {
    color: #202c38
}

.post_nav-item_hint {
    width: calc(100% - 60px);
    font-family: Archivo, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.post_nav-item_hint .label {
    display: inline-block;
    text-transform: uppercase;
    color: #a9a9a9;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.post_nav-item_hint .title {
    font-weight: 600;
    font-size: 18px;
    line-height: 23px
}

html[dir=rtl] .post_article-quote_author {
    padding-left: 0;
    padding-right: 60px
}

html[dir=rtl] .post_article-quote_author:before {
    left: auto;
    right: 0
}
.post_nav-item--next {
    text-align: right
}
@media screen and (min-width:567.98px) {
    .post_article-media {
        height: 320px
    }

    .post_article-quote {
        padding: 40px
    }

    .post_article-footer .tags {
        margin-bottom: 40px
    }

    .post_author {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px
    }

    .post_author .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 30px
    }

    .post_author-about {
        width: calc(100% - 110px);
        text-align: left
    }

    .post_author .avatar,
    .post_author .btn {
        margin: 0
    }

    .post_nav-item--next {
        text-align: right
    }

    .post_nav-item_hint .label {
        margin-bottom: 11px
    }

    html[dir=rtl] .post_author-about {
        text-align: right
    }

    html[dir=rtl] .post_nav-item--next {
        text-align: left
    }
}

@media screen and (min-width:767.98px) {
    .post_article-quote {
        padding: 60px;
        margin: 40px 0
    }

    .post_article-quote_quote {
        font-size: 26px;
        line-height: 1.2
    }

    .post_article-header {
        margin: 40px 0 20px
    }

    .post_article .block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 40px;
        margin: 30px 0
    }

    .post_article .block .media {
        height: 260px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .post_article-footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px 100px
    }

    .post_article-footer .tags {
        margin-bottom: 0;
        gap: 10px 20px
    }

    .post_article-footer .socials {
        width: unset
    }

    .post_nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .post_nav-item--next .post_nav-item_hint {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .post_nav-item .title {
        max-width: 190px
    }
}

@media screen and (min-width:1023.98px) {
    .post_container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 30px
    }

    .post_content {
        max-width: calc(100% - 410px)
    }

    .post_article-media {
        height: 400px
    }

    .post_article .block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .post_article .block .media {
        width: 100%
    }

    .post_article-quote_quote {
        font-size: 30px;
        line-height: 1.2
    }

    .blog_feed {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media screen and (min-width:1279.98px) {
    .post_container {
        gap: 60px
    }

    .post_content {
        max-width: calc(100% - 440px)
    }

    .post_article-media {
        height: 570px
    }

    .post_article .block {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .post_article .block .media {
        width: 440px
    }

    .post_article-quote {
        padding: 80px
    }
}

.post_comments {
    margin: 80px 0
}

.post_comments .title {
    color: #000;
    font-family: Archivo, sans-serif;
    font-weight: 800;
    margin-bottom: 30px
}

.post_comments .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px
}

.post_comments .list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.post_comments .list-item[data-type=reply] {
    margin-left: 40px
}

.post_comments .list-item .comment {
    width: calc(100% - 60px)
}

.post_comments .list-item .comment_panel {
    font-family: Archivo, sans-serif;
    font-weight: 500;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 20px
}

.post_comments .list-item .comment_panel .metadata {
    width: 100%
}

.post_comments .list-item .comment_panel-name {
    font-weight: 600
}

.post_comments .list-item .comment_panel-action {
    text-transform: uppercase;
    color: #0da574
}

.post_comments .list-item .comment_panel-action:hover {
    color: #001f3f
}

html[dir=rtl] .post_comments .list-item[data-type=reply] {
    margin-left: 0;
    margin-right: 40px
}

@media screen and (min-width:767.98px) {
    .post_comments .title {
        margin-bottom: 40px
    }

    .post_comments .list {
        gap: 40px
    }

    .post_comments .list-item[data-type=reply] {
        margin-left: 80px
    }

    .post_comments .list-item .comment {
        width: calc(100% - 80px)
    }

    .post_comments .list-item .comment_panel {
        line-height: 1
    }

    .post_comments .list-item .comment_panel .metadata {
        width: unset
    }

    html[dir=rtl] .post_comments .list-item[data-type=reply] {
        margin-left: 0;
        margin-right: 80px
    }
}

.post_reply {
    padding-bottom: 80px
}

.post_reply .title {
    margin-bottom: 30px
}

.post_reply .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.post_reply .form .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px
}

.post_reply .form .main .field {
    border: 1px solid #a9a9a9;
    margin: 0
}

.post_reply .form .main .field[data-type=message] {
    height: 160px
}

.post_reply .form .wrapper {
    margin: 20px 0 30px
}

@media screen and (min-width:567.98px) {
    .post_reply .form .main {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .post_reply .form .main .field {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .post_reply .form .main .field[data-type=email],
    .post_reply .form .main .field[data-type=name] {
        width: calc(50% - 15px)
    }
}

@media screen and (min-width:767.98px) {
    .post_reply .title {
        margin-bottom: 40px
    }

    .post_reply .form .wrapper {
        margin: 30px 0 40px
    }

    .post_reply {
        padding-bottom: 0
    }
}