.contact-box {
    border-radius: 10px;
    color: var(--color-white);
    max-width: 100%;
}

/* dòng info */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-item .icon {
    color: #ccc;
}

/* social */
.social-list {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2b2b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: 0.3s;
    text-decoration: none;
}

/* hover giống fb */
.social-item:hover {
    background: var(--color-main);
    color: var(--color-white);
}

/* icon fb luôn active */
.social-item.active {
    background: #ff2c6d;
    color: var(--color-white);
}

/* responsive */
@media (max-width: 768px) {
    .social-item {
        width: 35px;
        height: 35px;
    }

}