.social-media-btn {
    width: 100%;
    height: 70px;
    border-radius: 12px;

    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    color: white;
    border: none;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

.social-media-btn:hover {
    transform: translateY(-4px);
    transition: 0.3s;
    color: white !important;
    box-shadow: 0 14px 25px rgba(0, 0, 0, .20);
}

/* .social-media-btn::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-40%) translateX(-20%) rotate(65deg);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
} */

.social-media-btn i {
    margin-right: 8px;
    font-size: 24px;
}

.space-btw-btn {
    padding-right: 12px;
}


@media (max-width: 768px) {
    #social-media-card .row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-media-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
        margin: 5px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        padding: 5px;
    }

    .social-text {
        display: none;
    }

    .space-btw-btn {
        padding-right: 0;

    }

}

@media (min-width: 768px) {}
