.m-about-sec{
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    margin-top:10px;
    align-items: center;
    margin-bottom: 7em;
}
.m-about-des{
    width: 50%;
    float: right;
    display: flex;
    flex-direction: column;
    padding-left: 3em;
    box-sizing: border-box;
}
.m-about-des span{
    color: gray;
    font-size: 15px;
}
.m-about-des h1{
    float: right;
    font-size: 50px;
    margin: 0.3em 0;
    color: black;
    line-height: 90px;
}
.m-about-des p{
    margin: 0;
    color: rgb(81 81 81);
    font-size: 18px;
    line-height: 36px;
    text-align: justify;
}
.m-about-btn{
    width: fit-content;
    float: right;
    display: flex;
    align-items: center;
    padding: 0.5em 2em;
    color: var(--btn-outline);
    background-color: white;
    border-radius: 10px;
    font-size: 18px;
    box-sizing: border-box;
    border: 2px solid var(--btn-outline);
    transition: 0.4s;
    margin-top: 2em;
}
.m-about-btn:hover{
    color: white;
    background-color: var(--btn-hover);
    transition: 0.4s;
}
.m-about-img{
    width: 50%;
    height: 30em;
    float: left;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.115);
}
.m-about-img img{
    width: 100%;
    float: left;
    object-fit: cover;
}
@media only screen and (max-width:1100px){
    .m-about-des {
        width: 100%;
        padding-left: 0;
        align-items: center;
        margin-bottom: 3em;
    }
    .m-about-des :where(p,h2,span){
        text-align: center !important;
    }
    .m-about-img {
        width: 100%;
    }
}
@media only screen and (max-width:600px){
    .m-about-des h1 {
        font-size: 30px;
        line-height: 60px;
        text-align: center;
    }
    .m-about-des p {
        font-size: 16px;
    }
    .m-about-img{
        height: 20em;
    }
}
@media only screen and (max-width:450px){
    .m-about-btn {
        font-size: 16px;
    }
    .m-about-sec {
        margin-bottom: 1em;
        margin-top: 1em;
    }
}
@media only screen and (max-width:350px){

    .m-about-img{
        height: 18em;
    }
}
