.main_section.parlax {
    background-image: url(../img/blog.webp);
}

.objects_section {
    margin: .5em 0 3em;
}

.objects_section .title_for_mobile {
    display: none;
    padding: 0.5em 5vw;
    background-color: #fff;
    color: #000;
    font-size: 23px;
}

.cards .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    color: #000;
}

.cards .item .text {
    padding:  1.5rem 1rem;
}

.cards .item .text .title {
    font-size: 24px;
}

.cards .item .text div:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.cards .item .text svg {
    padding: .3em;
    fill: #000;
    scale: 1.2;
    border: 1px #000 solid;
    border-radius: var(--border-radius);
}

.cards .item .text path {
    stroke: currentColor;
}

.pages {
    margin: 1rem 0;
}



/* media for phone */
@media screen and (max-width: 700px) {
    .objects_section {
        margin: 4em 0 3em;
    }

    .objects_section .title_for_mobile {
        display: block;
    }

    .blog .cards,
    .blog.cards {
        display: -ms-grid !important;
        display: grid !important;
        -ms-grid-columns: 1fr 0.5em 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5em 0.5em;
        margin: 0;
        padding: 0 0 1.5em 0;
        background-color: #fff;
    }

    .blog .cards .item,
    .blog.cards .item {
        width: auto !important;
    }

    .blog .cards .item .text,
    .blog.cards .item .text {
        padding: 1em 0 0 1em;
    }

    .blog .cards .item:nth-child(even) .text,
    .blog.cards .item:nth-child(even) .text {
        padding: 1em 1em 0 1em;
    }

    .blog .cards .item .text .title,
    .blog.cards .item .text .title {
        font-size: 14px !important;
    }

    .blog .cards .item .text .date,
    .blog.cards .item .text .date {
        padding-top: 1em;
    }

    .blog .cards .item .text svg,
    .blog.cards .item .text svg {
        scale: 1;
    }
}