:root {
    --primaryColor: #2E3D62;

    --lightPrimaryColor: #686b6e;
    --secondaryColor: #5D50C5;
    --lightSecondaryColor: #F0EEFD;
    --activeLinkColor: #1B7F8B;
    --lightGrayBg: #E3E6EB;
    --transparentDropDown: #2e3d62da;
    --transparentColor: rgba(0, 0, 0, 0.548);
    --shadow: rgba(189, 188, 188, 0.514);
    --svgColor: #f8fafd;
    /* --------------------------------- */
    --whatsappColor: #25D366;
    --white: #ffff;
    --blue: #1877F2;
    --gray: #f8f8f8;
}

.temp3-div-social-madia-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.temp3-link-social-icons {
    text-decoration: none;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0px 3px 8px var(--transparentDropDown);

    padding: 5px;
    cursor: pointer;
    transition: padding 0.3s ease-in-out, background 0.3s ease-in-out;
}

.temp3-link-social-icons:hover {
    padding: 10px;
    background: var(--primaryColor);
}

.temp3-link-social-icons:hover span i {
    transform: rotateX(360deg);
    color: var(--white);
}

.temp3-link-social-icons span i {
    font-size: larger;
    font-weight: bold;
    color: var(--primaryColor);
}


@media (max-width:335px) {
    .temp3-link-social-icons {
        padding: 5px;
    }

    .temp3-link-social-icons span i {
        font-size: x-large;
        font-weight: bolder;

    }
}

@media (min-width:336px) and (max-width:768px) {
    .temp3-link-social-icons {
        padding: 10px;
    }

    .temp3-link-social-icons span i {
        font-size: x-large;
        font-weight: bolder;

    }
}