section.services h1 {
    margin-bottom: 40px;
}

section.services .services__nav ul li button.active {
    background: #0E7096 !important;
    color: white;
}

section.services .services__nav ul li button {
    padding: 10px 20px;
    border: 1px solid #1391C1;
    background: #FFF;
    color: #212121;
    font-family: var(--font-inter-regular);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 0 !important;
    outline: none;
    width: 100%;
}

section.services .services__nav ul li button:not(.active):hover {
    color: #fff;
    background: #0E7096;
    border: 1px solid #0E7096;
}

section.services .services__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

section.services .services__card {
    padding: 30px;
    border: 1px solid #D6B448;
    background: #FFF;
}

section.services .services__card:hover {
    border: 1px solid #D6B448;
    background: #D6B448;
    box-shadow: 5px 5px 10px 0px rgba(33, 33, 33, 0.40) inset;
}

section.services .services__card:hover img {
    filter: brightness(0) invert(1);
}

section.services .services__card:hover h3, section.services .services__card:hover p {
    color: #FFF;
}

@media (max-width: 1199px) {
    section.services .services__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    section.services .services__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    section.services .services__cards {
        grid-template-columns: repeat(1, 1fr);
    }
}