.m-products-cintainer{
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column;
    margin-bottom: 5em;
}
.m-products-slider{
    width: 100%;
    float: left;
    display: flex;
}
.m-row-title{
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5em;
}
.m-row-title :where(span,h2){
    width: 100%;
    float: left;
    text-align: center;
    margin: 0;
}
.m-row-title span{
    line-height: 35px;
    font-size: 16px;
    color: gray;
}
.m-row-title h2{
    line-height: 60px;
    font-size: 40px;
    color: black;
}
.m-show-more{
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
}
.m-show-more a{
    width: 216px;
    float: right;
    display: flex;
    align-items: center;
    padding: 1em 1.5em;
    background-color: var(--more);
    color: var(--box);
    border-radius: 7px;
    font-size: 17px;
    box-sizing: border-box;
    /* border: 2px solid #40513B; */
    transition: 0.4s;
    justify-content: center;
}
.m-show-more a:hover{
    background-color: var(--more-hover);
    color: var(--box);
    transition: 0.4s;
}
.m-show-more i{
    margin-left: 5px;
    font-size: 14px;
}
@media only screen and (max-width:600px){
    .m-row-title h2 {
        line-height: 60px;
        font-size: 20px;
    }
    .m-row-title{
        margin-bottom: 0;
    }
}
@media only screen and (max-width:450px){
    .m-show-more a {
        font-size: 14px;
    }
    .m-products-cintainer,header{
        margin-bottom: 3em !important;
    }
}
