.view_all_models .model_image {

    width:100%;
    height:auto;
}
.view_all_models .model_image-all-model {
    overflow: hidden; /* Ensures the image stays within the container */
    display: inline-block;

}
.view_all_models .model_image-all-model img{
    transition: transform 0.5s ease;

}
.view_all_models .model_image-all-model:hover img {
    transform: translateX(20px);

}
.view_all_models .model_name_heading {
    font-size: 0.37rem;
    font-weight: bold;
    text-align:center;
    margin-top:15px;

}
.view_all_models .model_price {
    margin-top: 8px;
    font-size: 14px;
    text-align:center;

}
.view_all_models .explore_model {
    margin-top: 8px;
    font-size: 14px;
    text-align:center;
    margin-top:7px;
}
.view_all_models .explore_model a{
    color:red;
}


.all-model-container {
    text-align: center;
    margin-top:15px
}

.all-model-btn {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Align items vertically */
    gap: 20px; /* Add space between list items */

}

.all-model-btn li {
    padding: 10px;
    background-color: #9d8470;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s;

}
.all-model-btn li a {

    color: #fff;

}

@media (min-width: 768px) {
    .all-model-btn {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center; /* Center items horizontally */
        align-items: center; /* Align items vertically */
        gap: 5px; /* Add space between list items */

    }
}

@media (max-width: 768px) {
    .all-model-btn {
        list-style: none;
        padding: 0;
        margin: 0;
        display: block;
        justify-content: center; /* Center items horizontally */
        align-items: center; /* Align items vertically */
        gap: 20px; /* Add space between list items */
    }

    .all-model-btn li {
        padding: 10px;
        margin:20px;
        margin-right: 15%;
        margin-left: 15%

    }
}
