.social-icons {
    display: flex;
    align-items: center;
}

.footer .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    margin-right: 15px;
    font-weight: normal;
    width: 50px;
    height: 50px;
    border: 3px solid white;
    border-radius: 100%;
}

.footer .social-icons {
    justify-content: space-around;
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 0 25px;
}

.footer .social-icons .social-icon:last-child {
    margin-right: 0;
}

.shared-detail .social-icons {
    justify-content: flex-start;
    margin: 0;
}

.shared-detail .social-icons .social-icon {
    font-size: 18px;
    color: #84a2af;
    margin-right: 20px;
    font-weight: normal;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #84a2af;
    border-radius: 100%;
}

.shared-detail .social-icons .social-icon:last-child {
    margin-right: 0;
}

@media (min-width: 1025px) {
    .footer .social-icons {
        margin: 0 0 0 25px;
        max-width: none;
        justify-content: flex-end;
        width: auto;
    }
    
    .footer .social-icon {
        font-size: 26px;
        margin-right: 30px;
    }
}