.company-links-ui{
    position: relative;
    right: 7.5vw;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.site-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5vh;
    width: 7.5vw;
}

.site-links a{
    text-decoration: none;
    color: #666;
}

.site-links a:hover {
    color: #000;
}

.socials-link{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 7.5vw;
}

.twitter-x, .linkedin{
    height: 3.5vh;
    width: auto;
    color: grey;
}

.twitter-x:hover, .linkedin:hover {
    color: #666;
    cursor: pointer;
}

@media(max-width: 768px) {
    .company-links-ui{
        padding-top: 5vh;
        right: 0;
    }
    .site-links{
        width: 40vw;
    }
    .socials-link{
        width: 40vw;
    }
    .twitter-x, .linkedin{
        height: 2.75vh;
    }
}