.head--white path, .head--white rect {
    fill:#fff !important
}

@media (min-width: 1025px) {
    .head__header {
        margin:0 150px
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .head__header {
        margin:0 80px
    }
}

@media screen and (max-width: 768px) {
    .head__header {
        margin:30px 40px
    }
}

.head__overlay {
    position: fixed;
    top: 0;
    right: -2px;
    bottom: 0;
    left: 0;
    height: 100vh;
    opacity: 1;
    z-index: 650;
    transition: all 100ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    visibility:hidden
}

.head__wrap, .head__top {
    display: flex;
    justify-content: space-between;
    align-items:center
}

@media (min-width: 769px) {
    .head__wrap, .head__top {
        padding:50px 0 25px;
    }
}

.head__background {
    position: fixed;
    top: -50px;
    right: -50px;
    width: 50px;
    height: 50px;
    z-index: 600;
    border-radius: 50%;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    transition: all 100ms cubic-bezier(0.86, 0, 0.07, 1)
}

.head__toggler {
    visibility: hidden;
}

:checked + .head__background {
    transform:scale(500)
}

:checked ~ .head__overlay {
    opacity: 1;
    visibility: visible
}

.head__overlay .head__left {
    visibility: hidden
}

.head__bottom {
    display: flex;
    align-items: center;
    flex-direction: column
}

.head__drawer {
    padding: 14px 5px 3px 5px;
    margin-right:-15px;
}

.head__drawer:hover {
    cursor: pointer
}

.menue {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px
}

.menue > a {
    position: relative;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 1.27px;
    text-align: center;
    color: #000;
    margin: 10px 0;
    padding: 5px 0;
    width:fit-content
}

.menue > a:after {
    content: "";
    display: block;
    height: 1px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #000;
    transition:width .3s ease 0s, left .3s ease 0s
}

.menue > a:hover:after {
    width: 100%;
    left:0
}

.menue--open > a {
    animation:menue--in .75s both
}

@keyframes menue--in {
    0% {
        opacity: 0;
        transform:translateX(-1em)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}
