.products--title {
    color: #383838;
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
}
.products__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 8px 7px 14px;
    column-gap: 20px;
    margin-bottom: 34px;
    flex-wrap: wrap;
    row-gap: 10px;
}
.products__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 7px;
    row-gap: 12px;
}
.products__items .contentBanner {
    grid-column: span 4;
}
.product {
    padding: 14px;
    border-radius: 9px;
    border: 1px solid rgba(35, 31, 32, 0.10);
    background: #FFF;
    position: relative;
    transition: box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product__up {
    width: 100%;
}
.product__down {
    width: 100%;
}
.product__img {
    height: 156px;
    position: relative;
    display: block;
}
.product__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}
.product--preview {
    padding: 5px 19px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 7px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 12px 15px 0 rgba(206, 205, 218, 0.25);
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.product--title {
    margin-top: 10px;
    color: #231F20;
    font-size: 14px;
    line-height: 17px;
    display: block;
    transition: color 0.2s ease;
}
.product--title:hover {
    color: #2C63AC;
}
.product__info {
    margin-top: 16px;
    display: grid;
    row-gap: 6px;
}
.product__info__item {
    display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    border-radius: 7px;
    border: 1px solid rgba(113, 133, 158, 0.10);
    background: rgba(113, 133, 158, 0.05);
    color: #71859E;
    font-size: 13px;
    line-height: 20px;
}
.product__info__item.center {
    justify-content: center;
    text-align: center;
}
.product__info__item.type2 {
    background-color: transparent;
}
.product__info__item>p {
    font-weight: 700;
}
.product__info__item>.icon-info2 {
    font-size: 18px;
    cursor: pointer;
}
.product__info__item>.icon-info2:before {
    transition: color 0.2s ease;
}
.product__info__item>.icon-info2:hover:before {
    color: #FFE100;
}
.product--priceRequest {
    display: none;
}
.product:hover {
    margin-bottom: -46px;
    z-index: 1;
    box-shadow: 20px 4px 52px 0 rgba(147, 151, 173, 0.25);
}
.product:hover .product--preview {
    opacity: 1;
}
.product:hover .product--priceRequest {
    display: block;
}

.product2 {
    padding: 4px 6px;
    display: flex;
    align-items: center;
    border-radius: 7px;
    border: 1px solid rgba(35, 31, 32, 0.05);
}
.product2__img {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex: none;
}
.product2__img img {
    max-width: 100%;
    max-height: 100%;
}
.product2--title {
    color: #495057;
    font-size: 14px;
    line-height: 16px;
}
.product2--title b {
    font-weight: 700;
}

@media screen and (max-width: 1200px) {
    .products__header {
        margin-bottom: 28px;
    }
    .product--preview {
        display: none !important;
    }
    .product--priceRequest {
        display: block !important;
    }
    .product:hover {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 1000px) {
    .products__items {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 20px;
    }
    .products__items .contentBanner {
        grid-column: span 2;
    }
}

@media screen and (max-width: 700px) {
    .products--title {
        font-size: 18px;
        line-height: 18px;
    }
    .products__header {
        margin-bottom: 24px;
        padding: 8px;
    }
}

@media screen and (max-width: 600px) {
    .products__items {
        grid-template-columns: repeat(1, 1fr);
        column-gap: 22px;
        row-gap: 22px;
    }
    .products__items .contentBanner {
        grid-column: span 1;
    }
}