/*--------------------
  ShareButtons
--------------------*/
.sharebuttons {
    margin: 0 0 40px;
}

.sharebuttons__title {
    position: relative;
    margin: 0 0 25px;
    padding: 0;
    font-size: 18px;
    color: #353535;
    font-weight: 700;
}

.sharebuttons__title::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -12px;
    width: 80px;
    height: 4px;
    background: #f9a825;
    border-radius: 60px;
}

.sharebuttons ul {
    margin: 0;
    padding: 0;
}

.sharebuttons ul li {
    display: inline-block;
    padding: 5px 10px 0 0;
    list-style: none;
    text-align: center;
}

.sharebuttons ul li a {
    font-size: 30px;
    -webkit-transition: color ease-out 0.4s;
    transition: color ease-out 0.4s;
}

.sharebuttons ul li a:hover,
.sharebuttons ul li a:focus {
    text-decoration: none;
}

.sharebuttons ul li a:hover .bi,
.sharebuttons ul li a:focus .bi {
    color: #f9a825;
}

.sharebuttons ul li a .bi {
    color: #353535;
}

.sharebuttons ul li a .bi-facebook {
    color: #38529a;
}

.sharebuttons ul li a .bi-twitter {
    color: #4da6e9;
}

.sharebuttons ul li a .bi-linkedin {
    color: #0073b1;
}

.sharebuttons ul li a .count-box span {
    font-size: 16px;
    color: #7e7e7e;
}

@media screen and (min-width: 992px) {
    .sharebuttons {
        margin: 40px 0;
    }
}