.CopyrightService{
    -webkit-text-size-adjust: 100%;
    font-family: Roboto,Open Sans,Arial,sans-serif;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    line-height: 180%;
    margin-top: 20px;
    background-color: #cd8335;
    padding: 15px 0;
}

.footerLinks a{

    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
}

.footerLinks a:hover{

    color: #008dff;
    text-decoration: underline;

}

.wrapper_dibu {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.wrapper_dibu .icon {
    position: relative;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper_dibu .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background-color: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper_dibu .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background-color: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper_dibu .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper_dibu .icon:hover span,
.wrapper_dibu .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper_dibu .facebook:hover,
.wrapper_dibu .facebook:hover .tooltip,
.wrapper_dibu .facebook:hover .tooltip::before {
    background-color: #3b5999;
    color: #ffffff;
}

.wrapper_dibu .twitter:hover,
.wrapper_dibu .twitter:hover .tooltip,
.wrapper_dibu .twitter:hover .tooltip::before {
    background-color: #46c1f6;
    color: #ffffff;
}

.wrapper_dibu .instagram:hover,
.wrapper_dibu .instagram:hover .tooltip,
.wrapper_dibu .instagram:hover .tooltip::before {
    background-color: #e1306c;
    color: #ffffff;
}

.wrapper_dibu .github:hover,
.wrapper_dibu .github:hover .tooltip,
.wrapper_dibu .github:hover .tooltip::before {
    background-color: #333333;
    color: #ffffff;
}

.wrapper_dibu .youtube:hover,
.wrapper_dibu .youtube:hover .tooltip,
.wrapper_dibu .youtube:hover .tooltip::before {
    background-color: #de463b;
    color: #ffffff;
}
