#Our_Services {
    background: var(--bg);
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 4rem;
    padding: 4rem 0;
}

.short_dips {
    font-family: var(--normal_fonts);
    margin: .5rem 0;
    font-size: 1.2rem;
}

.services {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    column-gap: 3rem;
    row-gap: 2rem;
    flex-wrap: wrap;
}

.boxes {
    height: 20rem;
    width: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    background: white;
    border-radius: 10px;
    cursor: context-menu;
    transition: transform .2s ease-in-out;
}

.boxes:hover {
    transform: translateY(-3px);
    box-shadow: -6px -6px 32px #c5c5c5,
        6px 6px 32px #fbfbfb;
}

.boxes img {
    width: 4rem;
}

.boxes .service_heading {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--normal_fonts);
    color: var(--subheading_color);
}

.boxes .dips {
    font-family: var(--normal_fonts);
    line-height: 1.3rem;
    font-size: 1rem;
}

@media screen and (max-width:912px) {
    .short_dips {
        font-size: 1rem;
        padding: 0 .5rem;
    }

}

@media screen and (max-width:778px) {
    .short_dips {
        font-size: .923rem;
    }

}

@media screen and (max-width:448px) {
    .boxes {
        height: auto;
    }

    #Our_Services {
        gap: 2rem;
    }
    .boxes .dips{
        font-size: .7rem;
    }

}