.postslist {
    overflow-x: clip;
    position: relative;
}
.postslist>svg {
    position: absolute;
    z-index: 1;
    height: auto;
}
.postslist>svg:first-of-type {
    right: -15%;
    top: -60px;
    width: 45%;
}
.postslist>svg:last-of-type:not(:first-of-type) {
    left: -5%;
    bottom: 20px;
    width: 60%;
}
.postslist.postslist--slider>svg {
    top: initial;
    right: initial;
    bottom: 3%;
    left: -10%;
    width: 65%;
    height: auto;
    transform: rotate(0deg);
}
.postslist__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.postslist__heading h1 {
    margin: 0 !important;
}
.postlist__search {
    position: relative;
}
.postlist__search input {
    padding: 20px 55px 20px 20px;
    border: 1px solid #DFDDDA;
    background-color: var(--color-second);
    border-radius: 12px;
    color: #000;
    font-family: var(--font-main);
    font-weight: 500;
    width: 460px;
    max-width: 100%;
}
.postlist__search input::placeholder {
    color: rgba(47, 42, 37, .5);
    font-weight: 500;
}
.postlist__search svg {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: auto;
    padding-left: 17px;
    border-left: 1px solid #DFDDDA;
}
.postslist__item {
    padding: 0 20px;
}
.postslist__item--hidden {
    display: none;
}
.postslist__img {
    border-radius: var(--radius-small);
    display: block;
    overflow: hidden;
}
.postslist__img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-small);
    transition: .3s;
}
.postslist__img:hover img {
    transform: scale(1.05);
}
.postslist__title {
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 130%;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 0;
    display: block;
    font-family: var(--font-second);
}
.postslist__title a {
    color: var(--color-main);
}
.postslist__title a:hover {
    color: var(--txt-color);
}
.postslist__btn {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* single */
.postcontent {
    position: relative;
    overflow-x: clip;
}
.postcontent>svg {
    position: absolute;
    z-index: 1;
    height: auto;
}
.postcontent>svg:first-of-type {
    right: -10%;
    top: -60px;
    width: 35%;
}
.postcontent>svg:last-of-type {
    left: -10%;
    top: 2%;
    width: 59%;
}
.postcontent__heading--side {
    padding-top: 60px;
    padding-left: clamp(15px, 6vw, 180px);
}
.postcontent__heading--side>svg {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 40%;
    height: auto;
}
.postcontent__heading--full {

}
.postcontent__excerpt {
    color: var(--color-fourth);
    font-weight: 500;
}
.postcontent__img {
    text-align: center;
    position: relative;
    z-index: 5;
}
.postcontent__img img {
    border-radius: var(--radius);
}

.postcontent__items {
    order: 2;
}
.postcontent__list {
    max-width: 400px;
    flex: 0 0 400px;
    padding: 0 15px;
}
.postcontent__items-title {
    padding-left: 50px;
}
.postcontent__list ul {
    padding: 50px !important;
    width: 100%;
    font-weight: 500;
    background-color: var(--color-second);
    border-radius: var(--radius);
    color: var(--txt-second);
}
.postcontent__info {
    max-width: calc(100% - 400px);
    flex: 0 0 calc(100% - 400px);
    padding: 0 15px;
}
.postcontent__info-items {
    padding: 40px !important;
    width: 100%;
    font-weight: 500;
    background-color: var(--color-second);
    border-radius: var(--radius);
    color: var(--txt-second);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.postcontent__info-item {
    width: max-content;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 10px 15px;
}
.postcontent__info-title {
    font-family: var(--font-second);
    font-weight: 400;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 130%;
    color: var(--color-main);
}
.postcontent__info-txt {
    display: inline-block;
    font-size: .85rem;
    margin-top: 10px;
}

.postcontent__desc {
    order: 3;
    color: var(--color-fourth);
    font-weight: 500;
}
.postcontent__desc h1,
.postcontent__desc h2,
.postcontent__desc h3,
.postcontent__desc h4,
.postcontent__desc h5,
.postcontent__desc h6 {
    font-size: clamp(19px, 2vw, 35px);
    line-height: 120%;
    font-weight: 400;
    color: var(--color-main);
    margin-bottom: 30px;
    display: block;
    font-family: var(--font-second);
}
.postcontent__btn {
    display: flex;
    justify-content: flex-end;
}

.postslist__slider {
    padding-left: 60px;
    padding-right: 60px;
}

.postslist__slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    color: transparent;
    background-color: var(--color-main);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    background-image: url(../assets/arrow-white.svg);
    cursor: pointer;
    z-index: 4;
    transition: .3s;
}
.postslist__slider .slick-arrow.slick-disabled {
    opacity: .6;
}
.postslist__slider .slick-arrow:not(.slick-disabled):hover {
    background-color: var(--color-fifth);
}
.postslist__slider .slick-prev {
    transform: translateY(-50%) rotate(180deg);
    left: 0;
}
.postslist__slider .slick-next {
    right: 0;
}

/* @ @ COMMS START @ @ */
.comms__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.comms ul {
    list-style: none;
    padding: 20px 0 0 40px;
    margin: 0;
}
.comms #comments {
    display: none;
}
.comms .navigation {
    order: 0;
}
.comms .commentlist {
    order: 2;
}
.comms form {
    display: flex;
    flex-wrap: wrap;
}
.comms .comment-notes {
    order: 0;
}
.comms .comment-form-author {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 0 0;
}
.comms .comment-form-author input {
    margin-bottom: 15px;
}
.comms .comment-form-comment {
    order: 2;
    width: calc(100% - 300px);
    flex: 0 0 calc(100% - 300px);
}
.comms .comment-respond {
    order: 1;
    width: 100%;
    background-color: var(--color-second);
    border-radius: var(--radius);
    padding: 60px;
}
.comms .form-submit {
    order: 3;
    width: 300px;
    flex: 0 0 300px;
    text-align: center;
}
.comms .comment #respond {
    padding: 0;
    margin-top: 40px;
    background-color: transparent;
    border-radius: 0;
}
.comms .comment #respond #reply-title small {
    display: block;
    font-family: var(--font-main);
    color: var(--color-fourth);
    font-size: .85rem;
    font-weight: 500;
    line-height: 120%;
}
.comms .comment-form-cookies-consent {
    color: var(--color-fourth);
    font-weight: 400;
    font-size: .85rem;
}
.comms .comment-respond .comment-notes,
.comms .comment-respond .logged-in-as {
    color: var(--color-fourth);
    font-weight: 500;
    font-size: .9rem;
}
.comms .comment-respond #reply-title {
    font-size: clamp(19px, 1.6vw, 30px);
    line-height: 120%;
    margin-bottom: 30px;
}
.comms .comment-respond .comment-form-comment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
}
.comms .comment-respond .comment-form-comment label {
    color: var(--color-main);
    font-weight: 500;
    display: none;
}
.comms .logged-in-as,
.comms .required-field-message,
.comms #email-notes {
    display: none;
}
.comms .comment-form-author label {
    font-size: .85rem;
    line-height: 120%;
    display: none;
}
.comms input:not([type="submit"]),
.comms textarea {
    font-size: .9rem;
    color: var(--color-fourth);
    padding: 15px 20px;
    border: 1px solid #D7D7D7;
    font-weight: 400;
    resize: none;
    background-color: #fff;
    border-radius: 12px;
    font-family: var(--font-main);
    font-weight: 500;
}
.comms textarea {
    width: 100%;
}
.comms input:not([type="submit"])::placeholder,
.comms textarea::placeholder {
    color: var(--color-fourth);
} 
.comms .form-submit input {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: #fff;
    transition: .3s;
    cursor: pointer;
    border-radius: 30px;
    text-align: center;
    font-family: var(--font-main);
    font-size: .9rem;
    text-transform: uppercase;
    line-height: 120%;
}
.comms .form-submit input:hover {
    background-color: var(--color-fifth);
    color: #fff;
}
.comms ol {
    padding: 0;
    margin: 30px 0 0 0;
    list-style: none;
}
.comms ol li:not(:first-child) {
    margin-top: 60px;
}
.comms ol li img {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 70px;
    object-fit: cover;
    margin-right: 20px;
}
.comms a.comment-reply-link {
    display: inline-block;
    padding: 10px 25px;
    background-color: #fff;
    border: 1px solid transparent;
    color: var(--color-main);
    transition: .3s;
    cursor: pointer;
    border-radius: 30px;
    text-align: center;
    font-family: var(--font-main);
    font-size: .9rem;
    text-transform: uppercase;
    line-height: 120%;
    box-shadow: 0px 0px 8px rgba(144,144,144, .3);
    margin-top: 30px;
    margin-left: 95px;
}
.comms a.comment-reply-link:hover {
    background-color: var(--color-fifth);
    color: #fff;
}
.comms .comment-meta {
    padding-left: 95px;
    font-size: .85rem;
    line-height: 120%;
    color: var(--color-fourth);
}
.comms .comment-body>p {
    padding-left: 95px;
    margin: 30px 0 0 0;
    font-weight: 500;
    color: var(--color-fourth);
}
.comms .comment-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.comms .says {
    display: none;
}
.comms .fn {
    font-family: var(--font-second);
    color: var(--color-main);
    display: block;
    font-size: 1.2rem;
    line-height: 120%;
    font-style: normal;
}

/* @ @ COMMS END @ @ */


@media(max-width: 1440px) {
    .postslist__item {
        padding: 0 15px;
    }

    /*  */
    .postslist__slider {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media(max-width: 1150px) {
    .postslist.postslist--slider>svg {
        bottom: 50%;
    }
    .postslist__slider {
        padding-left: 0;
        padding-right: 0;
    }
}
@media(max-width: 992px) {
    .postslist.postslist--slider>svg {
        width: 90%;
        bottom: 30%;
    }
    .postslist__slider {
        margin-top: 10px !important;
    }
    /*  */
    .postcontent {
        margin-top: 15px !important;
    }
    .postcontent__img {
        order: 1;
        margin-top: 20px;
    }
    .postcontent__heading--side {
        order: 0;
        padding: 0 15px;
    }
    .postcontent__heading--side>svg {
        display: none;
    }
    /*  */
    .comms .comment-form-comment {
        width: 100%;
        flex: 0 0 100%;
    }
    .comms .form-submit {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
        text-align: left;
    }
}
@media(max-width: 767px) {
    .postslist.postslist--slider>svg {
        width: 90%;
        bottom: 50%;
    }
    .postslist__heading {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .postlist__search {
        max-width: 100%;
        margin-top: 20px;
        display: inline-block;
        font-size: .85rem;
        line-height: 120%;
    }
    /*  */
    .postcontent__items-title {
        padding: 0;
        text-align: center;
        margin-bottom: 20px !important;
    }
    .postcontent__list {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .postcontent__list ul {
        padding: 30px !important;
    }
    .postcontent__info {
        max-width: 100%;
        flex: 0 0 100%;
        margin-top: 30px;
    }
    .postcontent__info-items {
        padding: 20px !important;
    }
    .postcontent__info-title {
        font-size: 1.3rem;
    }
    /*  */
    .comms .comment-respond {
        padding: 30px;
    }
    .comms .form-submit input {
        padding: 10px 25px;
    }
    .comms ol li img {
        width: 30px;
    }
    .comms .comment-body>p,
    .comms .comment-meta {
        padding-left: 50px;
    }
    .comms a.comment-reply-link {
        margin-left: 50px;
    }
}
@media(max-width: 500px) {
    .postslist.postslist--slider>svg {
        bottom: 80%;
    }
    .postslist__item {
        padding: 0 5px;
    }
    .postslist__title {
        margin-top: 15px;
    }

    /*  */

}