#header {
    position: relative;
    z-index: 100;
    position: fixed;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 50px;
    align-items: center;
}

.logo {
    position: fixed;
    padding: var(--Size-000);
    display: flex;
    align-items: center;
    text-align: center;
    top: 30%;
    right: 70%;
    width: 100%;
    max-width: var(--Size-013);
    /* background-color: var(--MainHeaderBackGroundColor); */
}

.socials {
    position: fixed;
    bottom: 5%;
    width: var(--Size-007);
    padding: var(--Size-000);
}

.social svg {
    fill: var(--Brand-Color-003);
    transition: ease-in-out 0.3s;
}
.social svg:hover {
    fill: var(--color-Hover-Green);
}