.container-noveltyzone {

}

.noveltyzone_form_inner {
    margin-top: 15px;
}
.noveltyzone_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.noveltyzone_item {
    display: flex;
    flex-direction: column;
}
.noveltyzone_item .novelty_img {
    border-radius: 7px;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.noveltyzone_item .novelty_name {
    text-align: center;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 20px;
    margin: 20px 0;
}
.noveltyzone_item .novelty_category {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    background: #123B8A;
    margin-top: auto;
}
.noveltyzone_item .novelty_stand {
    text-align: right;
    color: #000;
    font-size: 16px;
    margin-top: 20px;
}
.novelty_modal_inner {
    padding: 25px 0;
}
.novelty_modal_inner .novelty_img {
    width: 260px;
    display: block;
    margin: 0 auto 30px;
    height: 260px;
    border-radius: 7px;
    background-position: center;
    background-size: cover;
}
.novelty_modal_inner .modal_novelty_product_name {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}
.novelty_modal_inner .modal_novelty_description {
    margin-bottom: 25px;
}
.novelty_modal_inner .modal_novelty_bottom {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.novelty_modal_inner .modal_novelty_firm_name {
    font-weight: 600;
}
.novelty_modal_inner .modal_novelty_stand {}

@media screen and (max-width: 992px) {
    .noveltyzone_list {
        grid-template-columns: 1fr 1fr;
    }
}