.link_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 100px;
    gap: 1rem;
}
.link_items a {
    text-decoration: none;
}

.link_item {
    width: 306px;
    height: 218px;
    font-size: 22px;
    border-radius: 6px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link_item img {
    position: relative;
    width: 100%;
}

.link_item p {
    color: #fff!important;
    position: absolute;
}

@media screen and (max-width: 767px) {
    .link_items {
        display: block;
        margin-top: 50px;
    }
    .link_item {
        width: 100%;
        height: initial;
        font-size: calc(100vw / var(--viewport) * 32);
        padding: 0;
    }
}
