@font-face {
    font-family: 'Aller Display';
    src: url(../fonts/Aller/AllerDisplay.ttf);
    font-weight: normal;
    font-size: normal;
}
.social-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    transform: translateY(-10%);
    z-index: 50;
    background-color: #ffffff;
    padding: 10px 5px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.315);
    text-align: center;
}

.social-sidebar .follow-us-title {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Aller Display';
    color: #02205F;
}

.social-media-sidebar a {
    display: block;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.social-media-sidebar a:hover {
    transform: scale(1.3);
}

.social-media-sidebar img {
    width: 42px;
    height: 42px;
}
/* responsividad */
@media screen and (max-width: 768px) {
    .social-sidebar{
        left: unset;
        right: 0;
        transform: translateY(-68%);
        border-radius: 10px 0 0 10px;
    }
    .social-sidebar .follow-us-title{
        font-size: 0.65rem;
    }
    .social-media-sidebar img{
        width: 1.5em;
        height: 1.5em;
    }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
    .social-sidebar{
        left: unset;
        right: 0;
        transform: translateY(-96%);
        border-radius: 10px 0 0 10px;
    }
    .social-sidebar .follow-us-title{
        font-size: 0.65rem;
    }
    .social-media-sidebar img{
        width: 1.5em;
        height: 1.5em;
    }
}
@media screen and (min-width: 3440px){
    .social-sidebar .follow-us-title {
        font-size: 45px;
    }
    .social-media-sidebar img {
        width: 70px;
        height: 70px;
    }
    .social-media-sidebar a {
        margin: 17px 0;
    }
}
@media screen and (min-width: 7680px){
    .additional-section .content img {
        width: 2250px;
    }
    .social-media-sidebar img {
        width: 8rem;
        height: 8rem;
    }
    .social-sidebar .follow-us-title {
        font-size: 72px;
    }
    .social-sidebar {
        padding: 10px 65px;
        border-radius: 0 35px 35px 0;
    }
}