:root{
    --dark-blue: #00334E;
    --blue: #145374;
    --light-blue: #5588a3;
    --light: #E8E8E8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.head{
    display: flex;
    justify-content: space-between;
    background-color: var(--dark-blue);
    padding: 1.5em;
    width: 100%;
}

.head--text{
    margin-right: 2em;
    display: flex;
    justify-content: space-between;
    gap: 1.5em;
    
}

.head--text>a {
    text-decoration: none;
    color: var(--light);
    font-weight: bold;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1em;
    margin-bottom: 1em;
}

li {
    display: flex;
    align-items: center;
    gap: 1em;
}

li::before {
    content: "✓";
}

.h1{
    font-size: 2em;
    text-align: center;
    font-weight: bolder;
}

.sluzby__list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3em;
    
    
}

.sluzba{
    padding: 2em;
    border: 1px solid;
    border-color: var(--dark-blue);
    border-radius: 50px;
    width: 270px;
    justify-self: center;
    display: flex;
    flex-direction: column;
    

}

.sluzba:hover{
    scale: 1.05;
}

.sluzba__foot{
    display: flex;
    justify-content: space-between;
}

.button{
    padding: 1em;
    background-color: var(--dark-blue);
    border: 1px solid;
    border-radius: 30px;
    color: var(--light);
    text-decoration: none;
    font-weight: bold;
}
.bold--black{
    font-weight: bold;
    font-size: 1.2em;
}
.bold--blue{
    font-size: 1.5em;
    font-weight: bold;
    color: var(--blue);
}
.bold--darkblue{
    font-size: 1.5em;
    font-weight: bold;
    color: var(--dark-blue);
}

.foot{
    max-width: 1200px;
    margin: 0 auto;
    padding: 2px 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-blue);
}

.foot>div>a{
    text-decoration: none;
    color: white;
}
.foot>p{
    font-weight: bold;
    color: white;
}



