.sider {
    position: sticky;
    top: 0;
    height: 100vh;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    padding-block: 96px;
}

.sider-name {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: rgb(168 183 204);
}
.sider-profession {
    font-size: 18px;
    padding-top: 24px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgb(168 183 204);
}

.sider-menu {
    padding-top: 48px;
    display: flex;
    flex-direction: column;
}

.sider-menu > a {
    text-decoration: none;
    color: inherit;
}

.action-social,
.sider-social {
    font-size: 24px;
    display: flex;
    gap: 6px;
}

.action-social > a,
.sider-social > a {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.05s;
    text-decoration: none;
    color: inherit;
}

.action-social > a:hover,
.sider-social > a:hover {
    background-color: rgb(94 234 212 / 0.1);
    font-size: 32px;
}

.action-social {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .sider {
        padding-block: 24px;
        padding-inline: 12px;
        position: relative;
        height: fit-content;
    }
    .sider-name {
        font-size: 30px;
        padding-top: 12px;
    }
    .sider-profession {
        padding-top: 6px;
    }
    .sider-social {
        display: none;
    }
    .action-social {
        display: flex;
    }
}
