#About_Us {
    width: 100%;
    height: 45rem;
    /* padding:5rem 0; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--bg);
}

.short-discrip {
    margin: 1rem 0;
    width: 85%;
    text-align: center;
    font-size: 1rem;
    line-height: 2rem;
    font-family: var(--normal_fonts);
}

#About_Us .our_work {
    width: 85%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem 0 0 0;
}

#About_Us .our_work .box {
    width: 23%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#About_Us .our_work .box img {
    width: 5rem;
    height: 5rem;
}

#About_Us .our_work .box p {
    margin: 1rem 0;
    font-family: var(--normal_fonts);
    font-size: .8rem;
}

@media screen and (max-width:1024px) {

    #About_Us .our_work .box {
        text-align: center;
        width: 25%;
    }

    #About_Us .our_work .box img {
        width: 4.5rem;
        height: 4.5rem;
    }

    #About_Us .our_work .box p {
        font-size: .75rem;
    }

}

@media screen and (max-width:768px) {
    .short-discrip {
        font-size: .85rem;
        line-height: 1.8rem;
    }

}

@media screen and (max-width:680px) {
    #About_Us .our_work {
        margin: 3rem 0 0 0;
        flex-wrap: wrap;
    }

    #About_Us .our_work .box {
        width: 48%;
    }

    #About_Us .our_work .box img {
        width: 4rem;
        height: 4rem;
    }

}

@media screen and (max-width:505px) {

    #About_Us {
        height: auto;
        padding: 3rem 0;
    }

}

@media screen and (max-width:448px) {
    .short-discrip {
        font-size: .7rem;
        line-height: 1.25rem;
    }

    #About_Us .our_work .box img {
        width: 3.5rem;
        height: 3.5rem;
    }

    #About_Us .our_work .box p {
        font-size: .6rem;
    }

}