
.who-we-are-section .col > div {
    text-align: center;
}

.who-we-are-section h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #000000;
}

.who-we-are-section h4 {
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000000;
}
 
.who-we-are-section p {
    line-height: normal;
    margin-bottom: 20px;
    color: #000000;
}

.who-we-are-section .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.who-we-are-section .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.who-we-are-section .social-icons img {
    width: 24px;
    height: 24px;
    display: block;
}

/* card */
.top-vendor-section {
    padding-top: 60px;
}

.top-vendor-section .row:first-child .col > div {
    text-align: center;
}

.top-vendor-section h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 35px;
    color: #000000;
}

.vendor-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vendor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.vendor-card-image {
    position: relative;
    overflow: hidden;
}

.vendor-card-image > img {
    width: 100%;
    height: 324px;
    object-fit: cover;
    display: block;
}

.vendor-plus-btn {
    position: absolute;
    right: 16px;
    bottom: 24px;
    z-index: 2;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    line-height: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vendor-plus-btn img {
    width: 42px;
    height: 42px;
    display: block;
}

.vendor-social-icons {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vendor-social-icons a {
    display: inline-flex;
    line-height: 0;
    text-decoration: none;
}

.vendor-social-icons img {
    width: 42px;
    height: 42px;
    display: block;
}

.vendor-card-name {
    background-color: #f3f3f3;
    padding: 32px 16px 24px;
    text-align: center;
}

.vendor-card-name h4 {
    font-weight: 700;
    color: #818181;
    transition: color 0.3s ease;
}

.vendor-card:hover .vendor-card-name h4 {
    color: #2469EA;
}

.vendor-card.vendor-card--social-open .vendor-plus-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.vendor-card.vendor-card--social-open .vendor-social-icons {
    opacity: 1;
    visibility: visible;
}