.contact_list {}

.contact_item {
    border-radius: 20px;
    transition: 0.3s;
    height: 100%;

    background: rgba(216, 216, 216, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.contact_item>div {
    height: 100%;
}

.contact_item:hover {
    box-shadow: 0px 0px 15px #dadada;
}

.contact_item .image img {
    border-radius: 15px;
    object-fit: cover;
    width: 100%;
}

.contact_item a {
    text-decoration: none;
}

.contact_item a:hover {
    text-decoration: none;
}

.contact_item .image {
    height: 100%;
}

.contact_item .image a {
    display: block;
    height: 100%;
    width: 100%;
}

.contact_item .image img {
    height: 100%;
}

.contact_item .name a {
    font-size: 22px;
    color: #000;
    font-weight: bold;
    padding-bottom: 10px;
    display: block;
}

.contact_item .text_info {}

.contact_item .text_info .label {
    padding-top: 14px;
    text-transform: uppercase;
}

.contact_item .text_info .name {
    color: #000;
}


@media (max-width: 991px) {
    .contact_item .image img {
        max-height: 300px;
    }
}
