header {
    position: relative;
    background-color: #232323;
}

.header {
    display: flex;
    align-items: center;
    height: 95px;
}

.header__logo {
    flex: 0 0 auto;
    font-size: 30px;
    font-weight: 700;
    color: #EAEAEA;
}

.header__content-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    padding-left: 80px;
}

.header__content-mobile {
    height: 47px;
    display: none;
}

.header__menu {
    color: #EAEAEA;
    cursor: pointer;
    user-select: none;
    fill: #EAEAEA;
}

.menu__title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .2s;
}

.menu__title span {
    margin-right: 10px;
}

.menu__title img {
    fill: #CC2B24;
}

.menu__title:hover {
    background-size: 100% 100%;
    color: #CC2B24;
    fill: #CC2B24;
}

#mi {
    transition: transform .2s;
}

.menu_image__to-down {
    transform: rotate(90deg);
}

.header__sign-in {
    background-color: #CC2B24;
    color: #EAEAEA;
    user-select: none;
    cursor: pointer;
    padding: 13px 39px;
}

.header__sign-in_disable {
    opacity: 0.2;
}

.drop-down {
    z-index: 1;
    display: none;
    position: absolute;
    top: 58px;
    left: -50px;
    background-color: #232323;
    border: 2px solid #383838;
    width: 180px;
}

nav {
    display: flex;
    flex-direction: column;
}

nav a {
    padding: 30px 50px;
    border-bottom: 2px solid #383838;
    color: #EAEAEA;
    transition: .2s;
}

nav a:last-child {
    border-color: transparent;
}

nav a:hover {
    color: #CC2B24;
}

.drop-down__enable {
    display: block;
}

#hamburg {
    width: 30px;
    height: 26px;
    margin: 10px 10px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

#hamburg span {
    background-color: #EAEAEA;
    position: absolute;
    border-radius: 2px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    width: 100%;
    height: 2px;
    transition-duration: 500ms
}

#hamburg span:nth-child(1) {
    top: 0;
    left: 0;
}

#hamburg span:nth-child(2) {
    top: 12px;
    left: 0;
    opacity: 1;
}

#hamburg span:nth-child(3) {
    bottom: 0;
    left: 0;
}

#hamburg:not(.open):hover span:nth-child(1) {
    transform: rotate(-3deg) scaleY(1.1);
}

#hamburg:not(.open):hover span:nth-child(2) {
    transform: rotate(3deg) scaleY(1.1);
}

#hamburg:not(.open):hover span:nth-child(3) {
    transform: rotate(-4deg) scaleY(1.1);
}

#hamburg.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 13px;
}

#hamburg.open span:nth-child(2) {
    opacity: 0;
}

#hamburg.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 13px;
}
