.panel-social {

}

.panel-social .title-social-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.panel-social .title-container {
    display: flex;
    flex-direction: column;
}
.panel-social .title-social-container .title {
    font-family: var(--font-sacramento);
    font-size: 57px;
    color: var(--blue-1b);
    text-transform: lowercase;
    position: relative;
    bottom: -27px;
}

.panel-social .title-social-container .subtitle {
    font-family: var(--font-display);
    font-size: 21px;
    color: var(--blue-33);
    text-transform: uppercase;
    position: relative;
    /* top: -27px; */
    left: -7px;
}
.panel-social .social-icons-container {
    position: relative;
    width: 100%;
    padding: 40px 0;
}
.panel-social .social-icons-container::after {
    background-image: url(/includes/public/assets/shared/social-wave-top.svg);
    background-size: cover;
    content: '';
    pointer-events: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    width: 100%;
    /* overflow: hidden; */
    height: 100%;
    z-index: 0;
}

.panel-social .social-links {
    position: relative;
    z-index: 1;
}

.panel-social .social-links .social-link {
    display: block;
    width: 40px;
    height: 40px;
}
.panel-social .social-links .facebook-f::after {
    background-image: url(/includes/public/assets/shared/social/facebook-icon.svg);
}

.panel-social .social-links .facebook-f:hover::after {
    transform: translate(-50%, -50%);
}

.panel-social .social-links .twitter::after {
    background-image: url(/includes/public/assets/shared/social/twitter-icon.svg);
}

.panel-social .social-links .twitter:hover::after {
    transform: translate(-50%, -50%);
}

.panel-social .social-links .instagram::after {
    background-image: url(/includes/public/assets/shared/social/instagram-icon.svg);
}

.panel-social .social-links .instagram:hover::after {
    transform: translate(-50%, -50%);
}

.panel-social .social-links .youtube::after {
    background-image: url(/includes/public/assets/shared/social/youtube-icon.svg);
}

.panel-social .social-links .youtube:hover::after {
    transform: translate(-50%, -50%);
}

.panel-social .social-links .social-network {
    padding: 0 12.5px;
}

@media screen and (min-width: 64em) {
    .panel-social .title-social-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .panel-social .title-container {
        margin-bottom:10px;
    }

    .panel-social .title-social-container .title {
        font-size: 76px;
        bottom: -33px;
    }

    .panel-social .title-social-container .subtitle {
        font-size: 28px;
        left: -19px;
    }

    .panel-social .social-icons-container {
        width: 335px;
        padding: 30px 0;
        background-color: var(--blue-1d);
        border-right: 1px solid var(--blue-1d);
    }

    .panel-social .social-icons-container::after {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top;
        transform: translate(-50%, -20px);
        width: calc(100% + 2px);
    }

    .panel-social .social-icons-container::before {
        content: '';
        pointer-events: none;
        position: absolute;
        right: -1px;
        bottom: 0;
        display: block;
        width: 2px;
        height: 114px;
        z-index: 1;
        background-color: var(--blue-1d);
    }

}