h1 {
    line-height: 36px;
    font-size: 30px;
    margin: 20px 0;
}

h1 span {
    color: var(--color-main);
}

.fc {
    row-gap: 30px;
    display: grid;
    column-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 768px) and (min-width: 560px) {
    .fc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 559px) {
    .fc {
        grid-template-columns: repeat(1, 1fr);
    }
}

.fc1 {
    display: flex;
    flex-direction: column;
    border: 1px solid #eaebea;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
}

.fc1 a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fc1 h3 {
    font-size: 18px;
    line-height: 24px;
    font-family: 'Roboto', Тahoma, sans-serif;
    text-decoration: none;
    color: #333;
    margin: 20px 0;
}

.fc1 .db {
    width: 100%;
}