.company-social-component {
    background-color: var(--palette-1000);
    padding: 50px 0;
    position: relative;
    margin-top: 15rem;
}

.company-social-component:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(../img/company/SocialBG.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
    height: 100%;
    width: inherit;
}

.company-social-wrapper {
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.company + #site-footer {
    margin-top: 0;
}

.company-social-title {
    flex: 1;
    z-index: 1;
}

.company-social-title h1 {
    font-size: 2.667em;
    color: var(--white);
    margin: 0;
    letter-spacing: normal;
}

.company-social-links {
    display: flex;
}

.company-social-link {
    border: 3px solid var(--white);
    background-color: var(--palette-1000);
    text-decoration: none;
    max-width: 100px;
    max-height: 100px;
    padding: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: all ease-in-out .3s;
    z-index: 1;
}

.company-social-link .fa {
    color: var(--white);
    width: 50px;
    height: 50px;
    font-size: 50px;
    text-align: center;
}

.company-social-link:hover {
    background-color: var(--palette-400);
}

.company 
.about-card-content {
    margin-left: 70px;
} 

@media screen and (max-width: 1280px) {
    .company-social-component {
        margin-top: 18rem;
    }
}

@media screen and (max-width: 1024px) {
    .about-card-video {
        margin-right: 0;
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .company-social-wrapper {
        flex-direction: column;
    }

    .company-social-title h1 {
        margin-bottom: 30px;
    }

    .company-social-link {
        padding: 15px;
    }

    .company-social-link .fa {
        color: var(--white);
        width: 1em;
        height: 1em;
        font-size: 1em;
    }
}