@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'Сochin';
    src: url('/wp-content/themes/alchelait/assets/fonts/CochinLTStd.woff2') format('woff2'),
        url('/wp-content/themes/alchelait/assets/fonts/CochinLTStd.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



html,
body {
    height: 100%;
    margin: 0;
    background: #FCF7E6;
    font-family: "Inter", sans-serif;
}



/* --- Перший екран --- */
.hero {

    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-attachment: fixed;
}

/* --- Навбар --- */
.navbar {
    transition: background-color 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid white;
    background: transparent;
}

.navbar a {
    color: white;
    transition: color 0.4s ease;
}

.navbar.scrolled {
    background-color: #DAF1F7 !important;
    border-bottom-color: black;
}

.navbar.scrolled a {
    color: black !important;
}

/* --- Логотип --- */
.navbar-brand img {
    transition: filter 0.4s ease, transform 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    filter: brightness(0);
    transform: scale(1.05);
}

/* --- Контент --- */
.content {
    background: #F5F0DF;
}

/* --- Offcanvas (меню для мобільних) --- */
.offcanvas-start {
    background-color: #DAF1F7;
}

.offcanvas-start .menu li {
    display: block;
}

.offcanvas a {
    color: black;
    text-decoration: none;
    font-weight: 500;
}

.offcanvas a:hover {
    text-decoration: underline;
}

/* --- Плавна зміна кольору лінії --- */
.navbar {
    border-bottom: 1px solid white;
}

.navbar.scrolled {
    border-bottom: 1px solid black;
}

b,
strong {
    font-weight: 800;
}

a,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #2E2F24;
    text-decoration: none;

}

.header a.nav-link,
.nav-link,
.header a {
    font-weight: bold;
    text-decoration: none;
    color: #727D71;
}

h2 {
    color: #000;    
    font-size: 25px;
    font-weight: 800;
}
h1,h2,h3,h4 {
  font-family: Сochin!important;  
}
h3{
   font-size: 20px; 
   line-height: 18px;
   text-transform: uppercase;
   padding-bottom: 10px;
}
h4{
    font-size: 18px; 
   line-height: 18px;
   text-transform: uppercase;
}

.header {
    background: #F1F0ED;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

h1.entry-title {
    text-align: center !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.bigh1 {
    font-family: 'Сochin';
    font-size: 3rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1440px;
    margin: 0 auto;
}

nav {
    height: 84px;
}

.nav-link {
    color: #2D2D23;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
    text-transform: uppercase;
}

.column {
    height: 300px;
    display: block;
    padding: 100px 0;
    text-align: center;
    font-size: 1.25rem;

}

.w-20 {
    width: 18%;
    margin: 0 1%;
}

#multiCarousel img {
    object-fit: contain;
}

.img-hover-zoom {
    transition: transform 0.3s ease;
    /* плавний перехід */
}

.img-hover-zoom:hover {
    transform: scale(1.1);
    /* збільшення на 10% */
    z-index: 10;
    /* щоб поверх інших елементів */
}

.products {
    display: flex;
    justify-content: space-around;
    padding: 30px;

}

.navbar-brand {
    left: 50%;
    position: absolute;
    top: 50%;
    translate: -50% -50%;
}

.teg {
    display: inline-block;
    padding: 9px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background: #FFF;
}

.product_b,
.single_add_to_cart_button {
    padding: 25px;
    width: 32%;
    margin: 8px;
    border-radius: 6px;
    text-align: center;
}

.product_b p {
    color: #000;
    font-weight: 400;
}

.product_b {
    min-height: 510px;
}

.corporate-slider {
    font-family: 'Сochin';
    font-size: 30px;
    text-transform: uppercase;
    text-align: right;
    width: 100%;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    color: #313131;
    text-transform: uppercase;
}

.marquee span {
    display: inline-block;
    padding: 0 30px;
    /* відстань між повтореннями */
    animation: marquee 10s linear infinite;
    font-family: Сochin!important;  
}

/* Анімація руху тексту з права наліво */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.image-section {
    height: 620px;
    background: url('assets/img/index-f-i.jpg') center/cover no-repeat;
    background-attachment: fixed;
    /* ефект паралаксу */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: -20px;
    z-index: -9;
}


/* затемнення фону */
.image-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 0;
}

/* центральна картинка */
.image-section img {

    height: auto;
    z-index: 1;

}

/* для адаптивності */
@media (max-width: 768px) {
    .image-section {
        background-attachment: scroll;
        /* відключити fixed для мобільних (для стабільності) */
    }
}

.old-price {
    text-decoration: line-through;
    color: #888;
}

.menu li {
    display: inline-block;
    padding: 0 10px 0 0;
}

.menu {
    margin: 0;
}

.coming-soon {
    opacity: 0.6;
}

.navbar.nindex {
    border-bottom: 1px solid black;
}

.navbar.nindex a {
    color: black !important;
}

.woocommerce-mini-cart__buttons a.wc-forward {
    color: #fff !important;
}

.nindex .nav-link svg,
.scrolled .nav-link svg,
.nindex #navbar-logo {
    filter: brightness(0);
}

.wc-block-components-button__text,
#place_order {
    border-radius: 6px;
    background: rgb(33, 37, 41);
    color: #fff;
    text-decoration: none;
    padding: 14px 20px 15px 20px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.slogan {
    padding: 30px;
    background: #eaeaea;
    text-align: center;
}

.select2-container .select2-selection--single {
    height: auto !important;
}

.banner button {
    margin-top: 20px;
    padding: 10px 20px;
}


a.button,
.search-submit,
.woocommerce a.button,
.woocommerce-button {
    height: 50px;
    border-radius: 6px;
    background: #313131 !important;
    color: #fff !important;
    text-decoration: none;
    padding: 16px 20px 15px 20px;
    margin: 0 auto;
    display: block;
    text-align: center;
}
a.button-s {
    height: 50px;
    border: 1px solid #DAF1F7;
    border-radius: 6px;
    background: #DAF1F7;
    color: #000;
    text-decoration: none;
    padding: 12px 20px 15px 20px;
    margin-top: 25px;
    display: inline-block;
    width: 250px;
    text-align: center;
    z-index: 9;
}
a.button-s:hover{
    background: none;
    color: #fff;
}
a.button-w {
    padding: 14px 20px 15px 20px;
    display: block;
    text-align: center;
    color: #313131;
    background: #F5F0DF;
    height: 50px;
    border-radius: 6px;
    margin: 30px auto 0;
    width: 250px;
}

.button-card {
    border-radius: 6px;
    background: #313131;
    color: #FFF;
    text-align: center;
    font-family: Сochin;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    border: 1px solid #313131;
    padding: 13px 60px;
}

.button-card:hover {
    background: none;
    color: #313131;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: left;
    width: 100%;
    font-size: 1rem;
    padding: 10px 0 10px 0;
    text-align: center;
    background-color: none;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

/* Прибрати стрілки у Chrome, Edge, Safari, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Прибрати стрілки у Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.accordion-button:not(.collapsed) {
    background-color: inherit;
    box-shadow: none;
    border: none;
    color: #000;

}

.accordion-button:not(.collapsed)::before {
    background-image: url(assets/img/-.svg);
}

.accordion-button::before {
    background-image: url(assets/img/+.svg);
}

.accordion-button::after {
    display: none;
}

.accordion,
.accordion-item {
    border: 0px;
}

.accordion-button::before {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
    content: "";
    background-image: url(assets/img/+.svg);
    background-repeat: no-repeat;
    background-size: 13px;
    margin-right: 20px;
    transition: var(--bs-accordion-btn-icon-transition);
}

.free-shipping {
    padding: 10px;
    text-align: center;
}

.input-group {
    background: #fff;
    border-radius: 6px;
}

.accordion-item,
.accordion-button {
    background: none;
}

#quantity {
    border: none;
}

.ptext {
    padding: 50px 0;
}

.info {
    background-color: #FFFEEF;
}

.elegant1 {
    display: block;
    margin: 60px auto 40px;
}

.elegant {
    display: block;
    margin: -20px auto 0;
}

.footer-links,
.footer-contact {
    margin-bottom: 10px;
}

.footer-links a {
    color: #eee;
    margin: 0 10px;
    text-decoration: none;
}

.read-more {
    width: 183px;
    height: 50px;
    background: #FFFEEF;
    padding: 15px 20px;
    color: #000;
    text-decoration: none;
    margin: 50px auto 0;
    display: block;
}

.more {
    display: none;
}

.products .product_b h4 {
    color: #000;
    text-align: center;

    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 23.4px;
}

.products .product_b p {
    margin-bottom: 8px;
}

.product_b a.buttons {
    display: none;
}

a.button2 {
    display: inline-block;
    border-radius: 6px;
    background: #313131;
    color: #fff;
    justify-content: center;
    text-align: center;
    margin: 10px 0;
    padding: 14px 60px;
}

a.button2:hover {
    border: 1px solid #313131;
    background: none;
    color: #313131;
}

a.buttons {
    height: 50px;
    border-radius: 6px;
    background: #313131;
    color: #fff;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 300px;
    margin: 10px auto;
}

.img-logo {
    margin-bottom: 10px;
}

a.button-read {
    border-radius: 6px;
    background: #F1F0ED;
    color: #727D71;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
    display: inline-block;
    padding: 16px 60px;
}

a.button-read:hover {
    background: #727D71;
    color: #FFF;
}

.product_b:hover {
    background-color: #F5F0DF;
}

.product_b:hover a.buttons {
    display: flex;
}

.product_b:hover a.more {
    display: block;
}

.free-shipping {
    background: #DAF1F7;
    color: #313131;
}

.logos {
    background-color: #FFFEEF;
    padding: 20px 0;
}



.footer1 {
    position: absolute;
    z-index: 3;
    width: 183px;
    left: 0;
    top: 100px;
    display: block;
}

.footer2 {
    position: absolute;
    width: 212px;
    left: 60px;
    z-index: 2;
    display: block;
    top: 200px;
}

.footer3 {
    position: absolute;
    z-index: 1;
    width: 216px;
    left: 110px;
    display: block;
    top: 60px;
}

.footer4 {
    position: absolute;
    z-index: 1;
    width: 316px;
    display: block;
    left: 0;
    bottom: 40px;
}


.footer5 {
    position: absolute;
    z-index: 2;
    width: 300px;
    display: block;
    right: 180px;
    top: 40px;
}

.footer6 {
    position: absolute;
    z-index: 1;
    width: 390px;
    display: block;
    right: 0;
    top: 200px;
}

.footer7 {
    position: absolute;
    z-index: 2;
    width: 320px;
    display: block;
    right: 220px;
    bottom: 40px;
}

.footer8 {
    position: absolute;
    z-index: 2;
    width: 180px;
    display: block;
    right: 10px;
    bottom: -70px;
}

.link {
    color: #fff;
    text-decoration: none;
    z-index: 5;
}

footer {
    border-top: 1px solid #DAF1F7;
    border-radius: 15px 15px 0 0;
    background: #DAF1F7;
    color: #2E2F24;
    padding: 20px;
    padding-top: 50px !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

footer ul {
    padding: 0;
    margin: 0;
}

.logo-footer {
    width: 188px;
    margin-bottom: 30px;
    display: block;
}

footer li {
    list-style: none;
    text-transform: uppercase;
    padding: 8px 0;
}

footer li a.nav-link {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

footer h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.support {
    border-top: 1px solid #000;
    margin-top: 20px;
    padding: 30px 0;
}

footer.black .support {
    border-top: 1px solid #fff;
}


.copy {
    padding: 30px 30px 30px 0;
    font-size: 14px;
}

#menu-footers {
    column-count: 2;
}

.more-menu .menu-top-r-container {
    right: 15%;
    position: absolute;
    top: 50%;
    translate: -50% -50%;
}

#menu-top-r li li {
    display: block;
    padding: 5px;
}

#menu-top-r li li a {
    color: #2D2D23;
    padding: 0 10px;
}

#menu-top-r .dropdown-menu {
    top: 50px;
    width: 100%;
}

#menu-top-r .dropdown-menu:after {
    content: '';
    display: block;
    width: 100%;
    right: 0;
    left: 0;
    background: #FFF;
    height: 100%;
    top: 0;
}

.dropdown-menu {
    background-color: #FCF7E6;
}

.scrolled .dropdown-menu {
    background-color: #DAF1F7;
}

.offcanvas-body .dropdown-menu {
    display: block !important;
    background: none;
    border: none;
    padding-left: 15px;

}

.product-category-box {
    display: inline-block;
    padding-right: 10px;
}

.product-category-box:after {
    content: '•';
    display: inline-block;
}

.product-category-box:last-child:after {
    display: none;
}

.product-category-box a h3 {
    font-size: 14px;
}

.product-category-box a {
    display: inline-block;
    padding-right: 10px;
}

/*****Mega*************************************************/

#nav-parent-more {
    position: inherit;
}

.mega-menu {
    position: absolute;
    top: 84px;
    right: 0;
    width: 100vw;
    background: #FCF7E6;
    padding: 40px 0;
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    border-bottom: 1px solid white;
    z-index: 9990;
}

.scrolled .mega-menu {
    background-color: #DAF1F7;
    border: none;
}

.navigation__item--active .mega-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Внутрішній контейнер */
.mega-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}



/***********************************************************/
.custom-mini-cart {
    display: none;
    position: absolute;
    width: 700px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 15px;
    left: 50%;
    top: 150%;
    translate: -50% 0%;
}

.woocommerce-mini-cart-item {
    display: flex;
    /* горизонтальне розташування */
    align-items: center;
    justify-content: flex-start;

}

.remove_from_cart_button {
    width: 25px !important;
    height: 25px !important;

}

.product-mini-card {
    width: 450px !important;
    display: flex !important;
    align-items: center;

}

.mini_cart_item a.product-mini-card {
    color: #000;
}

a.product-mini-card img {
    width: 81px !important;
    margin-right: 10px;
    height: auto;
}

.mini-cart-qty-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mini-cart-qty-wrap button {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.mini-cart-qty-wrap input.qty {
    width: 40px;
    text-align: center;
}

.woocommerce-mini-cart__buttons {
    display: flex;
}

.woocommerce-mini-cart__total {
    text-align: right;
    padding-right: 50px;
}

.cart-count {
    font-size: 12px;
    margin: 0 0 0 -4px;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
    border-radius: 0;
}

.insta-block {
    border-radius: 10px;
    overflow: hidden;
}

.insta-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.insta-text {
    background-color: #7b8c7c;
    /* приблизно як на зображенні */
    color: #FFF;
    font-family: Сochin;
    font-size: 35px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;

    padding: 20px;
}

.h-100 {
    height: 100%;
}

.rounded-custom {
    border-radius: 8px;
}


@media (max-width: 768px) {
    .col-custom {
        aspect-ratio: auto;
    }
}


/**********************************************************/
.block {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    margin-bottom: 18px;
}

.block-number {
    position: absolute;
    top: 22px;
    right: 22px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-size: 16px;
}

.block-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    padding: 12px;
}

.textfront {
    color: #727D71;
    margin: 40px 0;
}

.block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.block h3 {
    font-size: 34px;
}

.bg-block {
    background: #727D71;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    padding: 33px;
}

.text-page {
    border-radius: 5px;
    background: #F1F0ED;
}

.page-cont {
    background-color: #fff;
    padding: 15px 0;
}
.about p{
     font-family: Сochin!important;  
     text-transform: uppercase;
     font-size:19px ;
     text-align: center;
     color: #fff;
 }
/**************************************************************/

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {

    .products {
        flex-direction: column;
        align-items: center;
    }

    .navbar-toggler {
        border: none;
        color: #FFFEEF;
    }

    p.slogan_text {
        font-size: 70px;
        line-height: 70px;
    }

    .product_b .single_add_to_cart_button {
        width: 90%;
        margin-bottom: 20px;
    }

    .product_b {
        padding: 25px;
        width: 100%;
    }

    footer h4 {
        margin: 20px 0;
    }

    .copy {
        text-align: left !important;
        padding: 20px 0 0 0;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    .banner h2 {
        font-size: 1.5em;
    }

    .banner button {
        width: 100%;
    }
}

@media (max-width: 1200px) {
  .navbar-expand-lg .navbar-toggler{
        display: block;
    }
}

@media (max-width: 1440px) {
    .product_b{
        width: 30%;
    }
  
}

@media (max-width: 991px) {
    .more-menu .menu-top-r-container {
        display: none;
    }

    .navbar-collapse {
        z-index: 1051 !important;
        position: absolute !important;
        top: 100%;
        left: 0;
        background-color: #FFFEEF;
        padding: 0 20px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .product_b{
        width: 30%;
    }
}

/* Додаткова адаптація для екранів до 480px */
@media (max-width: 480px) {


    .navbar-collapse {
        z-index: 1051 !important;
        position: absolute !important;
        top: 100%;
        left: 0;
        width: 100vw;
        background-color: #FFFEEF;
        padding: 0 20px;
    }
    .snon{
        display: none;
    }
    h2{
      font-size: 20px;  
    }
    .column {
      height: 200px;
      padding: 50px 0;
    }

    header {
        position: fixed;
        width: 100%;
    }

    body {
        font-size: 16px;
    }

    .logo {
        font-size: 1.2em;
        margin: 20px 0;
    }

    footer ul {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }

    .menu {
        width: 100%;
    }

    .menu li {
        margin-bottom: 10px;
    }

    .product_b .single_add_to_cart_button {
        padding: 10px;
        font-size: 0.95em;
    }
      .product_b {
        width: 100%;
      }

    .product_b h3 {
        font-size: 1em;
    }

    .product_b button {
        width: 100%;
        padding: 10px;
        font-size: 1em;
    }

    .product_b p {
        color: #000;
        font-weight: 400;
    }

    .slogan {
        font-size: 0.95em;
        padding: 20px 10px;
    }

    .banner h2 {
        font-size: 1.2em;
    }

    .banner button {
        padding: 10px;
        font-size: 1em;
    }

    .footer-links a {
        display: block;
        margin: 5px 0;
    }

    .free-shipping {
        font-size: 0.9em;
        padding: 5px;
    }

    .apple {
        display: none;
    }

    .lips {
        bottom: -190px !important;
        width: 30%;
    }

}

.slogan_position {
    max-width: 100%;
    height: auto;
    display: block;
}

.slogan_text {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 88px;
    font-style: italic;
    font-weight: 800;
    line-height: 23.4px;
    /* 23.4% */
    text-transform: uppercase;
}

.slogan {
    background: #000;
    color: #fff;
}

.p-8 {
    padding: 8% 5%;
}

.text_description {
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 200;
    text-align: justify;
    text-align-last: justify;
    position: relative;
}

.text_description b {
    font-weight: 600;
}

.apple {
    position: absolute;
    top: -240px;
    left: -65px;

}

.lips {
    position: absolute;
    bottom: -310px;
    right: 0px;
    z-index: 3;
}

/************************/
.post-slide {
    margin: 0 15px;
    border: 1px solid #dadada;
    transition: all 0.4s ease-in-out 0s;
    background: #F5F0DF;
    border: 1px solid #F5F0DF;
    border-radius: 20px;
    align-content: space-around;
    display: flex;

}

.post-slide .category {
    width: 20%;
    font-size: 16px;
    color: #fff;
    line-height: 11px;
    text-align: center;
    text-transform: capitalize;
    padding: 11px 0;
    background: #9B7DF5;
    position: absolute;
    bottom: 0;
    left: -50%;
    transition: all 0.5s ease-in-out 0s;
}

.post-slide:hover .category {
    left: 0;
}

.post-slide .post-review {
    padding: 25px 20px;
    position: relative;
    align-content: space-around
}

.post-slide .post-title {
    margin: 0;
}

.post-slide .post-title {
    font-family: 'Сochin';
    font-size: 28px;
    color: #000;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 25px 0;
    transition: all 0.30s linear 0s;
    height: 65px;
    display: flex;
    align-items: end;
    line-height: 20px;
}

.post-slide .post-description {
    font-size: 16px;
    color: #000;
    line-height: 18px;
    font-weight: 300;
}

.post-slide .post-description li {
    padding-bottom: 25px;
}

.owl-carousel .owl-wrapper, .owl-carousel .owl-item {   
    display: flex!important;
    align-content: space-around;
}

@media only screen and (max-width: 359px) {
    .post-slide .category {
        font-size: 13px;
    }
}