.archive-list {
    padding-top: 60px;
    padding-bottom: 80px;
}

@media only screen and (max-width: 768px) {
    .list-container {
        padding: 0;
    }
    .archive-list {
        padding-top: 42px;
        padding-bottom: 60px;
    }
}

.item {
    border: 1px solid #B9C3CC;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    padding: 30px 21px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .item {
        border-right: none;
        border-left: none;
        border-radius: 0px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

.item-content {
    display: flex;
    flex-flow: column;
    margin-left: 40px;
    width: 82%;
}

.item-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    width: 17%;
}

.item-logo img {
    height: 100%;
    object-fit: contain;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    color: #263238;

}

.item-post-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    min-width: 360px;
}

.item-post {
    margin-left: 13px;
    background: #EFF7FA;
    border-radius: 10px;
    color: #000000;
    padding: 6px 13px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1.1px;
    font-weight: normal;
    margin-right: 20px;
}

.item-post a {
    color: inherit;
}

.item-date {
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 1.1px;
    line-height: 1.5;
    color: #A2AFBB;
}

.item-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1.1px;
    color: #000000;
    margin-bottom: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.3em;
    height: 3.9em;
}

.item-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1.1px;
    text-decoration-line: underline;
    color: #069EC6;
}

@media only screen and (max-width: 1024px) {
    .item {
        position: relative;
    }
    .item-logo {
        position: absolute;
        top: 2%;
        width: 50%;
        height: 25%;
    }
    .item-logo img {
        height: 100%;
    }
    .item-post-wrapper {
        position: absolute;
        top: 2%;
        left: 50%;
        width: 30%;
        height: 25%;
        flex-flow: column;
        align-items: flex-start;
        justify-content: space-around;
    }
    .item-post {
        margin-left: 0;
    }
    .item-content {
        width: 100%;
        margin-left: 0;
        margin-top: 22%;
    }
    .item-date {
        display: flex;
        flex-flow: column;
    }
}

@media only screen and (max-width: 768px) {
    .item-content {
        margin-top: 32%;
    }
    .item-logo {
        width: 38%;
        height: 120px;
        top: 20px;
    }
    .item-post-wrapper {
        width: 45%;
        height: 120px;
        top: 20px;
    }
}

.header-reviews {
    display: flex;
    align-items: center;
    background-image: url("../img/bg_header.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.header-reviews__img {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 auto;
    width: 100%;
    height: 80%;
}

.guides__plus-minus_block {
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .header-reviews__img {
        width: 80%;
    }
    .guides {
        padding-bottom: 5px;
    }
}

.header-reviews img {
    width: auto;
    height: 80%;
}

.post-footer {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 100px;
}

.post-footer-content {
    max-width: calc(100% - 350px);
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 56px;
}

@media only screen and (max-width: 768px) {
    .post-footer {
        margin-bottom: 40px;
    }
    .post-footer-content {
        margin-bottom: 20px;
    }
}

.post-footer-content .item-post {
    margin-right: 14px;
}

.nav-post-link {
    display: flex;
    max-width: calc(100% - 350px);
    width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1024px) {
    .post-footer-content {
        max-width: 100%;
    }
    .nav-post-link {
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .nav-post-link {
        flex-flow: column;
    }
    .nav-post-link > div {
        width: 100%;
    }
    .nav-post-link > div:not(:last-child) {
        margin-bottom: 20px;
    }
}

.nav-post-link-wrapper {
    background: #069EC6;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    flex-flow: column;
}

.nav-post-link-wrapper:hover {
    background: #00BCD4;
    box-shadow: 0px 0px 8px 2px #069EC6;
}

.nav-post-link-wrapper a {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: #FFFFFF;
    display: flex;
    flex-flow: column;
}

.nav-post-link-wrapper span {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1.1px;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.nav-post-link-wrapper_next a {
    align-items: flex-end;
}

.nav-post-link-wrapper_prev img {
    margin-right: 9px;
}

.nav-post-link-wrapper_next img {
    margin-left: 9px;
    transform: rotate(180deg)
}

.nav-post-link-wrapper_next img {
    margin-left: 23px;
    transform: rotate(180deg)
}

.title-post {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding-top: 60px;
    margin-bottom: 20px;
}

.title-post .title-post__button {
    min-width: 300px;
    width: 100%;
    max-width: 310px;
    margin-right: 40px;
    height: 100%;
    height: 59px;
}

.title-post h1 {
    color: #069EC6;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.5;
}

.title-post h1 span {
    color: #FFA726;
}

.title-text {
    width: 100%;
    margin-top: 40px;
}

.title-text p {
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 15px;
}

.title-text a {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #069EC6;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #069EC6;
    box-sizing: border-box;
    border-radius: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #069EC6;
    padding: 17px 116px;
}

.button:hover {
    color: #00BCD4;
    box-shadow: 1px 3px 15px -6px #00BCD4;
}

@media only screen and (max-width: 1024px) {
    .title-post .button {
        margin-top: 10px;
    }
}

.title-post .button {
    align-self: center;
    justify-self: flex-end;
}

.search-block {
    height: 60px;
}

@media only screen and (max-width: 768px) {
    .search-block {
        width: 100%;
    }
    .search-block .head__input {
        flex: 1;
    }
}

.search-block .head__button {
    padding: 21px 34px;
    display: flex;
    align-items: center;
}

.search-block input:focus {
    box-shadow: 0px 0px 8px #069EC6;
}

.search-block input::placeholder {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #B9C3CC;
}

.head__content_archive {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-pagenavi a {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1.1px;
    text-decoration-line: underline;
    color: #069EC6;
    text-decoration: none;
}

.wp-pagenavi .page-numbers {
    padding: 0 5px;
}

.guides__bng .accordion {
    margin-top: 0;
}

.guides__bng button[aria-expanded="true"] {
    margin-bottom: 20px;
}

.guides__bng .accordion-item {
    border: 1px solid #B9C3CC;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .guides__bng .accordion-item {
        position: relative;
        border-radius: 0;
        /*border-left: none;*/
        /*border-right: none;*/
        padding-left: 0;
        border: none;
        padding-right: 0;
    }
    .guides__bng .accordion-item:before {
        content: "";
        border-top: 1px solid #B9C3CC;
        height: 1px;
        left: -15px;
        top: 0;
        width: calc(100% + 30px);
        position: absolute;
        display: block;
    }
    .guides__bng .accordion-item:after {
        content: "";
        border-bottom: 1px solid #B9C3CC;
        height: 1px;
        left: -15px;
        bottom: 0;
        width: calc(100% + 30px);
        position: absolute;
        display: block;
    }
}

.guides__bng .accordion-item__header {
    display: flex;
    align-items: center;
    flex: 1;
}

.accordion-item__numb {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    font-size: 18px;
    font-weight: 600;
    margin-right: 30px;
    color: #069ec6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #069ec6;
}

@media only screen and (max-width: 768px) {
    .guides__bng .accordion-item__header {
        flex-flow: column;
        align-items: flex-start;
    }
}

.guides__bng .accordion-item__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 1.1;
    font-feature-settings: "ornm" on, "liga" off, "kern" off;
    color: #263238;
    margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
    .accordion-item__title {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.guides__bng .accordion-item__sub {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
    color: #000000;
}

.guides__bng .accordion-item__text {
    display: flex;
    justify-content: center;
    /*margin-left: 30px;*/
    flex: 1;
}

@media only screen and (max-width: 768px) {
    .guides__bng .accordion-item__text {
        margin-left: 0;
    }
}

.guides__bng .accordion-item__img {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 340px;
    height: 90px;
    max-width: 50%;
}

.guides__bng .accordion-item__img img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

@media only screen and (max-width: 1024px) {
    .guides__bng .accordion-item__img {
        max-width: 30%;
        width: 30%;
        height: auto;
    }
}

@media only screen and (max-width: 768px) {
    .guides__bng .accordion-item__img {
        max-width: 80%;
        margin-bottom: 20px;
        width: 80%;
    }
}

.guides__bng .content {
    width: 100%;
}

.guides__bng .content a {
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.guides__bng .content p {
    margin-bottom: 10px;
}

.guides__bng a.btn-primary {
    /*margin-top: 30px;*/
    background: #069ec6;
    border-radius: 10px;
    width: 300px;
    /*height: 60px;*/
    padding: 17px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
}

.guides__bng a.btn-primary:hover {
    background: #00BCD4;
    box-shadow: 1px 3px 15px -6px #00bcd4;
}

.is-search-form {
    height: 58px;
    height: 58px;
    display: flex;
    justify-content: flex-start;
}

.is-form-style.is-form-style-3 label {
    width: auto !important;
}

.is-form-style input.is-search-input {
    outline: 0 transparent;
    background: #fff;
    border: 1px solid #b9c3cc !important;
    border-radius: 10px;
    min-width: 345px;
    width: 30%;
    padding: 20px;
    color: #000;
    margin-right: 20px;
    height: 100%;
}

@media only screen and (max-width: 768px) {
    .is-form-style input.is-search-input {
        min-width: 100% !important;
    }
    .is-form-style button.is-search-submit {
        margin-left: 10px;
    }
}

.is-form-style.is-form-style-3 input.is-search-input {
    border-right: 1px solid #b9c3cc !important;
}

.is-ajax-search-categories-details > div:hover,
.is-ajax-search-result .is-ajax-search-post:hover,
.is-ajax-search-result .is-show-more-results:hover,
.is-ajax-search-tags-details > div:hover {
    background: #EFF7FA !important;
}

.is-form-style button.is-search-submit {
    background: #069ec6;
    color: var(--white-color);
    padding: 15px 50px !important;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 1.1px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    border: none;
}

.head__form .is-form-style button.is-search-submit:after {
    content: "Go";
    display: block;
    position: absolute;
    top: 25%;
    left: 35%;
}

.head__form .is-form-style button.is-search-submit svg, .is-form-style button.is-search-submit .is-search-icon {
    display: none;
}

.is-form-style button.is-search-submit .is-search-icon {
    background: transparent;
    border: none;
}

.is-form-style button.is-search-submit svg, .is-form-style button.is-search-submit .is-search-icon {
    fill: #fff;
    stroke: #fff;
}

.is-form-style button.is-search-submit svg path {
    fill: #fff;
    stroke: #fff;
}

div.is-ajax-search-details, div.is-ajax-search-result {
    width: 30% !important;
    background: #069ec6 !important;
}

.select {
    width: 100%;
    height: 60px;
    border: 2px solid #069ec6;
    border-radius: 10px;
    padding: 10px;
    font-size: 18px;
    position: relative;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
}

.select-wrapper {
    position: relative;
    min-width: 315px;
    width: 30%;
}

.select-wrapper:after {
    content: "";
    background-image: url(../img/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 11px;
    top: calc(50% - 10px);
    z-index: -1;
}
