.socialSection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.2em;
}
@media (max-width: 767.98px) {
    .socialSection .icons-wrap {
        justify-content: center;
        text-align: center;
    }
}
.socialSection .socialIcon {
    text-transform: capitalize;
    height: 34px;
    width: 34px;
    padding: 0;
    margin: 0 !important;
    border: 1px solid #dfdfdf;
    border-radius: 10rem;
    text-align: center;
    transition: all ease-in-out 50ms;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-self: center;
    justify-content: center;
    align-items: center;
}
.socialSection .socialIcon:hover {
    opacity: 1;
    border-color: #929292;
    text-decoration: none;
}
.socialSection .socialIcon:hover span.text {
    text-decoration: underline;
}
.socialSection .socialIcon:last-of-type {
    margin-right: 0;
}
.socialSection .socialIcon span.icon:before {
    font-size: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-self: center;
}
