* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Home our Service */
.home_our_service {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    justify-content: center;
    text-align: center;
}

.home_our_service_body button {
    border: 0;
    background-color: #fff;
    color: #0190f0;
    padding: 0.5rem;
    border-radius: 1rem;
}

.home_ourservice_card {
    border: solid 1px #e9e9e9;
    position: relative;
    padding: 0.9rem;
    width: 13rem;
    height: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home_ourservice_card span {
    font-size: .9rem;
}

.home_ourservice_card img {
    width: 3rem;
    margin-bottom: 1rem;
}

.home_our_service a {
    text-decoration: none;
    color: #000;
    font-family: 'Fonarto', sans-serif;
    font-size: 1.3rem;
}

.home_ourservice_card::before {
    content: '';
    bottom: -1px;
    right: -1px;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    position: absolute;
}

.home_ourservice_card::after {
    content: '';
    top: -1px;
    left: -1px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    position: absolute;
}

@media (max-width: 768px) {
    .home_ourservice_card {
        width: 9rem;
        height: 5rem;
    }

    .home_ourservice_card span {
        font-size: .8rem;
    }

    .home_ourservice_card img {
        width: 1.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 425px) {
    .home_our_service {
        margin-top: 2rem;
    }
}

/* Home our Service End */