.footer {
    background-color: transparent !important;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2rem !important;
    text-align: center;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}
.discord-bg {
    background: #7289DA;
}
.twitter-bg {
    background: #55ACEE;
}
.mail-bg {
    background: #DD4B39;
}

.ctooltip {
    position: relative;
    display: inline-block;
}

.ctooltip .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.ctooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.ctooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
