
.products__card {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 250px;
}

.products__image-block {
    width: 100%;
    height: 188px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.products__image-block img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(208, 208, 208, 1);
}

.products__card-text {
    display: flex;
    flex-direction: column;
}

.products__card-text .products__card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 8px;
    color: rgba(0, 49, 60, 1);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    line-height: 1.4;
    min-height: calc(1.4em * 3);
}

.products__card-text .products__card-description {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: rgba(111, 111, 111, 1);
    margin-top: auto;
}

.products__button-prev {
    width: 48px;
    height: 48px;
    position: absolute;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
    background-color: white;
    top: calc(50% - 24px);
    left: calc(0px - 24px);
    z-index: 1;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.products__button-next {
    width: 48px;
    height: 48px;
    position: absolute;
    top: calc(50% - 24px);
    right: calc(0px - 24px);
    z-index: 1;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.main-banner-bottom-400{
    max-width: 720px;
    max-height: 200px;
    margin: 0 auto;
}