.sluzby {
    padding-bottom: 2rem;
}
.sluzby .heading {
    color: #ffffff;
    padding: 2rem 0rem 2rem 0rem;
}

.sluzby .heading h1 {
    font-size: 2rem;
    font-weight: 600;
}


.sluzby .services {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.75rem;
}
.sluzby .services .box {
    width: calc(100% / 5);
    margin-bottom: 0.5rem;
}

.sluzby .services .box a {
    text-decoration: none;
    color: #595959;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ceff34;
    border-radius: 1rem;
    height: auto;
    padding: 1.2rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0px 5px 15px 0px rgba(28, 0, 181, 0.3);
}

.sluzby .services .box a i {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
}

/*responsive layout*/
/*mobile*/
@media screen and (min-width: 320px) and (max-width: 767px) {
    .sluzby {
        padding: 0 0 1rem 0;
    }
    .sluzby .heading {
        padding: 1rem 0rem 1rem 0rem;
    }
    .sluzby .heading h1 {
        font-size: 1.3rem;
        font-weight: 500;
    }
    .sluzby .services {
        flex-direction: column;
        gap: 0;
    }
    .sluzby .services .box {
        width: auto;
    }
    .sluzby .services .box {
        padding-bottom: 1rem;
    }
    .sluzby .services .box a {
        width: auto;
        padding: 0.5rem;
        border-radius: 0.5rem ;
        font-size: 0.85rem;
    }
    .sluzby .services .box a i {
        display: none;
    }
}