/* for social media icons */
.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.social-icons>* {
    margin-right: 5px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    margin-bottom: 8px;
}

.social-icon:nth-of-type(2) {
    background-color: #2533d3;
}

.social-icon:nth-of-type(3) {
    background-color: #0088cc;
}

.social-icon:nth-of-type(4) {
    background-color: #4c6b7b;
}

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

.social-icon :hover {
    background-color: #555;
    border-radius: 50%;
}

/* for payment links */
.upiLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.upiLinks a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: #f2f2f200;
    color: #555;
}

.upiLinks a:hover {
    color: #007bff;
}

.upiLinks .qr-code {
    width: 200px;
    height: 200px;
    background-color: #f2f2f2;
    margin: 10px;
}

.qr-code img {
    width: 200px;
    height: 200px;
}

/* #accountNo {
    display: flex;
    align-items: center;
    justify-content: center;
} */

#paypalLink , #emailID {
    text-decoration: underline;
    font-weight: bolder;
    cursor: pointer;
    color: #00ffff;
}

@media (max-width: 643px) {
    .upiLinks {
        flex-direction: row;
        align-items: center;
    }

    .upiLinks a {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .upiLinks .qr-code {
        width: 150px;
        height: 150px;
    }

    .qr-code img {
        width: 150px;
        height: 150px;
    }
}

@media (min-width: 420px) {
    .paymentLinks .col-12 {
        flex-basis: 50%;
        max-width: 50%;
    }
}