.productsH {
        width: 100%;
            border-top: 1px solid #000;
            display: flex;
            justify-content: center;
}

.productsH>.container {display: flex;
    justify-content: center;}

.products {
    display: flex;
    justify-content: center;
}

.productsH-title{
    border-radius: 0 0 20px 20px;
        padding: 15px 10px;
    background: #08302d;
    font-family: var(--font-family);
        font-weight: 400;
        font-size: 24px;
        color: #fff;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
}

.products-box {
display: flex;
flex-direction:row ;
gap:10px;
justify-content: center;
}

.productlist {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: max-height 0.4s ease;
}

.productlist li {
    margin: 5px 0;
    /* відстань між пунктами */
}


.productlist a

{
    font-family: var(--font-family);
        font-weight: 500;
        font-size: 16px;
        color: #1ba59c;
}

.products-item-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.products-item-link.active .products-item-icon {
    transform: rotate(180deg);
    /* обертає стрілку вниз-наверх */
}


.products-item-link {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}


.products-item {
    box-shadow: 0 4px 10px 0 rgba(20, 30, 30, 0.03);
        background: #f3f4f5;
        border: 1px solid #e6eaeb;
            border-radius: 8px;
            padding: 17px;
           min-height: 421px;
           height: fit-content;
            display: flex;
            flex-direction: column;
           
}

.products-item-image {
    border-radius: 7px;
        width: 262px;
        height: 252px;
        margin-bottom: 17px;
}

.products-item-title {
    font-family: var(--font-family);
        font-weight: 700;
        font-size: 17px;
        color: #1e2a2e;
        height: 40px;
            margin-bottom: 17px;
}

.products-item-description {
    font-family: var(--font-family);
        font-weight: 400;
        font-size: 13px;
        color: #666;
        white-space: nowrap;
            /* текст в один рядок */
            overflow: hidden;
            /* обрізання тексту, що не влізає */
            text-overflow: ellipsis;
            /* додає три крапки ... */
                margin-bottom: 17px;
}

.products-item-link {
    display: flex;
    width: fit-content;
    align-self: center;
}

.products-item-icon {
    width: 24px;
    height: 24px;
}

.catalogs {
    display: flex;
    justify-content: center;
}

.catalogs-box {
    display: flex;
    gap: 8px;
flex-direction: row;
    justify-content: center;
}

.catalogs-item {
    border: 1px solid #e6eaeb;
        border-radius: 8px;
        padding: 17px;
        width: 259px;
        height: 418px;
        box-shadow: 0 4px 10px 0 rgba(20, 30, 30, 0.03);
            background: #f3f4f5;
            display: flex;
            flex-direction: column;
            gap: 17px;
}

.catalogs-item-image {
    border-radius: 8px;
        width: 225px;
        height: 273px;
}

.catalogs-item-image>img {
    border-radius: 8px;
    width: 225px;
    height: 273px;
}

.catalogs-item-title {
    
font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
    color: #1e2a2e;
    min-height: 20px;
white-space: nowrap;
    /* текст в один рядок */
    overflow: hidden;
    /* обрізання тексту, що не влізає */
    text-overflow: ellipsis;
    /* додає три крапки ... */

    
}

.catalogs-item-description {
    font-family: var(--font-family);
        font-weight: 400;
        font-size: 13px;
        color: #666;
}

.catalogs-item-link {
    width: fit-content;
    align-self: flex-end;
}

.catalogs-item-icon {
width: 24px;
height: 24px;
stroke: #000;
}


@media (max-width: 1440px) {

.products-box {
       width: 100%;
       flex-wrap: wrap;
    }

  .products-item{
 width: calc((100% - 20px)/ 3);
 align-items: center;
}
.catalogs-box {

width: 100%;
    flex-wrap: wrap;
}


}
@media (max-width: 768px) {

.products-item {
        width: calc((100% - 10px)/ 2);
        align-items: center;
    }
.products-item-image {
   width: 100%;
   display: flex;
   justify-content: center;
}

.products-item-image>img {
   height: 100%;
}

}

@media (max-width: 468px) {
.catalogs-item {
    width: 100%;
}

    .products-item {
        width: 100%;
        align-items: center;
    }

.catalogs-item-image {
  width: 100%;
  display: flex;justify-content: center;
}

.catalogs-item-image>img {
 
 
    height: 100%
}


}