.c-main-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 60px;
    padding: 60px 0;
}

.c-main-cards__item {
    position: relative;
    background: #fff;
    text-decoration: none;
    border: 1px solid #cccccc;
    text-align: center;
    margin: 80px 0 0;
    padding: 0 30px 30px;
}

.c-main-cards__item:hover {
    border-color: #0f37a8;
    box-shadow: 0 0 0 1px #0f37a8;
}

.c-main-cards__img {
    width: 100%;
    height: auto;
    margin: -80px 0 20px;
}

.c-main-cards__title {
    font-family: "Exo2-SemiBold";
    font-size: 18.5px;
    line-height: 25px;
    margin-bottom: 35px;
    position: relative;
    text-transform: uppercase;
}

.c-main-cards__title:after {
    content: "";
    height: 1px;
    left: 35%;
    position: absolute;
    width: 30%;
    background: #0f37a8;
    bottom: -19px;
}

.c-main-cards__text {
    line-height: 18px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .c-main-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 0;
    }
}

@media (max-width: 640px) {
    .c-main-cards {
        grid-template-columns: 1fr;
    }
}
