.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: 3em;
}
.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: fit-content;
    float: right;
    display: flex;
    align-items: center;
    padding: 0.6em 1.5em;
    background-color: rgb(14, 181, 130);
    color: white;
    border-radius: 100px;
    font-size: 17px;
    box-sizing: border-box;
    border: 2px solid rgb(14, 181, 130);
    transition: 0.4s;
}
.m-show-more a:hover{
    background-color: white;
    color: rgb(14, 181, 130);
    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: 30px;
    }
}
@media only screen and (max-width:450px){
    .m-show-more a {
        font-size: 14px;
    }
    .m-products-cintainer,header{
        margin-bottom: 3em !important;
    }
}