.cocon-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto 2rem auto;
	margin-top:50px;
	@media(max-width:767.98px) {margin-top:25px;}
}
.cocon-item__content {
    display: none;
}
.cocon-item__name {
    p {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1rem;
        border: 1px solid #e8eaed;
        background-color: rgb(232, 234, 237);
        border-radius: 100px;
        font-size: 0.95rem;
        line-height: 1.3;
        text-decoration: none !important;
        box-shadow: none !important;
        cursor: pointer;
        transition: opacity 0.15s ease, transform 0.05s ease !important;
        color: #000;

        &:hover {
            background-color: rgba(232, 234, 237, .6);
        }
    }
}