.panel-social {
    background-color: var(--blue);
    margin: 0 15.5px 14px;
}

.panel-social.red {
    background-color: var(--red);
}

.panel-social.green{
    background-color: var(--green);
}

.panel-social .title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 29px 0 10px;
}

.panel-social .title {
    color: var(--white);
    font-family: var(--brandon);
    font-weight: 900;
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    padding-bottom: 8px;
}

.panel-social .social-links {
    padding-bottom: 9px;
}

.panel-social .social-link {
    color: var(--blue);
    background-color: var(--white);
    border-radius: var(--rounded-full);
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease, color 0.6s ease, background-color 0.6s ease;
}

.panel-social.red .social-link {
    color: var(--red)
}

.panel-social.green .social-link {
    color: var(--green)
}

.panel-social .social-link i {
    font-size: 16px;
}

@media (hover: hover) {
    .panel-social .social-link:hover {
        text-decoration: none;
        transform: scale(1.48);
        background-color: transparent;
    }

    .panel-social .social-link:hover i {
        color: var(--white);
    }
}

.panel-social .social-container {
    margin: 0 -15.5px 15px;
}

.panel-social .embed-container {
    display: block;
}

.panel-social .social-container .loadMore {
    display: none;
}

.panel-social .subtitle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 26px;
}

.panel-social .subtitle {
    color: var(--white);
    font-family: var(--roboto);
    font-weight: 200;
    font-size: 20px;
    line-height: 35px;
    margin: 0;
}

@media (min-width: 64em) {
    .panel-social {
        margin-bottom: 43px;
    }

    .panel-social .title-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 54px 0 29px;
    }

    .panel-social .title,
    .panel-social .social-links {
        margin: 0;
        padding: 0;
    }

    .panel-social .title {
        font-size: 90px;
        line-height: 136px;
        padding-left: calc(25px + (79.5 - 25) * ((100vw - 1024px) / (1440 - 1024)));
    }

    .panel-social .social-links {
        padding-bottom: 8px;
        padding-right: calc(30px + (74 - 30) * ((100vw - 1024px) / (1440 - 1024)));
    }

    .panel-social .social-container {
        padding-bottom: 30px;
    }

    .panel-social .subtitle-container {
       padding-bottom: 61px;
    }

    .panel-social .subtitle {
        font-size: 40px;
        line-height: 35px;
        font-weight: 400;
    }
}

@media (min-width: 90em) {
    .panel-social {
        margin: 0 40px 43px;
    }

    .panel-social .social-container {
        margin: 0 -40px 15px;
    }

    .panel-social .title {
        padding-left: 79.5px;
    }

    .panel-social .social-links {
        padding-right: 74px;
    }
}
