.new-models-container{
    width: 100%;
}
.post-content .new-models-container .new-models-title{
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
}
.new-models-item-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.new-models-item{
    max-width: 32%;
    margin: 0 0.3%;
    transition: all 0.35s ease-in-out;
}
.new-models-item:hover{
    opacity: 0.5;
}
.new-model-item-title{
    background-color: #d8d6d7;
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 400;
    padding: 10px 0;
    text-transform: uppercase;
}
.new-model-item-image img {
    width: 100%;
    max-height: 183px;
    height: 183px;
    object-fit: cover;
}
.new-model-item-description{
    background: #000;
    color: #fff;
    font-size: 14px;
    font-family: 'Rajdhani';
    padding: 10px;
    font-weight: 400;
    word-break: break-all;
}
.slick-next:before, .slick-prev:before{
    color: #757575 !important;
}
@media only screen and (max-width: 768px){
    .new-model-item-image img{
        max-height: inherit;
    }
    .slick-arrow{
        display: none !important;
    }
}
