.header {
    padding-top: 18px;
    padding-bottom: 18px;
    font-family: "montserratbold", Arial, sans-serif;
}

.header__wrapper {
    background: transparent;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 50;
    transition: background-color .2s linear;
}

.header__wrapper-fixed {
    background-color: #fff;
}
.header__logo {
    color: inherit;
    transition: all 0.3s;
}
.logo__black {
    fill: #000;
}

.logo__gold {
    fill: #deb457;
}

.logo__header {
    width: 66px;
    height: 56px;
    position: relative;
    z-index: 20;
    fill: currentColor;
}


.logo__footer {
    width: 46px;
    height: 39px;
}

.notfound {
    text-align: center;
    padding: 100px 0 30px;
}

.notfound img {
    max-width: 100%;
}

.notfound div {
    font-size: 50px;
    margin: 30px 0 50px;
    font-weight: bold;
    font-family: "montserratbold", Arial, sans-serif;
}

@media (min-width: 576px) {
    .logo__header {
        width: 82px;
        height: 69px;
    }
}

@media (min-width: 992px) {
    .logo {
        -webkit-transition: fill .2s linear;
        transition: fill .2s linear;
    }

    .logo__gold:hover {
        fill: #fff;
    }

    .logo__footer {
        width: 100px;
        height: 84px;
    }
}

.menu {
    font-size: 10px;
    line-height: 16px;
    -webkit-box-flex: 1;
    flex: 1;
    text-align: right;
}

.menu__list {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -13px;
    margin-bottom: -4px;
    max-width: 210px;
}

.menu__item {
    margin: 0 0 4px 13px;
}

.menu__link {
    text-decoration: none;
    color: #000;
    position: relative;
}

.menu__link--registration {
    color: #fff;
    padding: 4px;
    display: inline-block;
    border-radius: 3px;
    transition: all 0.3s;
}


.menu__link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    -webkit-transition: width .2s linear;
    transition: width .2s linear;
}

.menu__link--registration:after {
    content: none;
}

.menu__link:hover:after {
    width: 100%;
}

@media (min-width: 576px) {
    .menu {
        font-size: 14px;
    }

    .menu__list {
        max-width: 280px;
    }
}

@media (min-width: 768px) {
    .menu__list {
        display: -webkit-box;
        display: flex;
        flex-wrap: nowrap;
        -webkit-box-pack: end;
        justify-content: flex-end;
        margin-right: -19px;
        margin-left: 0;
        max-width: unset;
    }

    .menu__item {
        margin: 0 19px;
    }
}

@media (min-width: 992px) {
    .menu__list {
        -webkit-box-pack: center;
        justify-content: center;
        margin-right: 0;
    }
}

@media (min-width: 1200px) {
    .menu__item {
        margin: 0 28px;
    }
    
    .menu__link--registration {
        padding: 8px 15px;
    }
}

.phone {
    color: inherit;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
    -webkit-transition: color .2s linear;
    transition: color .2s linear;
    margin-bottom: 4px;
}


@media (min-width: 576px) {
    .phone {
        font-size: 36px;
        line-height: 1;
    }
}

@media (min-width: 992px) {
    .phone {
        -webkit-box-ordinal-group: 2;
        order: 1;
        margin-bottom: 0;
    }
}

.footer {
    background: #1a1a1a;
    color: #deb457;
    padding: 15px 0 20px;
}

.footer__logo {
    width: 46px;
    height: 39px;
    fill: currentColor;
}
.footer .logo__block {
    color: inherit;
    transition: all 0.3s;
}
.footer .logo__block:hover {
    color: #fff;
}


.footer__link {
    color: #fff;
    font-size: 10px;
    line-height: 18px;
    display: inline-block;
}

.footer__link:hover {
    text-decoration: none;
}

.footer__info {
    width: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.footer__social-list.social-list {
    margin-bottom: 17px;
    margin-top: 36px;
    width: 100%;
}

.footer__social-item.social-item {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    color: inherit;
    border: 2px solid currentColor;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-transition: border-color .2s linear;
    transition: border-color .2s linear;
    margin-right: 18px;
}

.footer__social-item.social-item:last-child {
    margin-right: 0;
}

.footer__social-item.social-item:hover {
    border-color: #fff;
}

.footer__social-icon-vk {
    width: 22px;
    height: 12px;
}

.footer__social-icon-ok {
    width: 14px;
    height: 24px;
}

.footer__social-icon-fb {
    width: 12px;
    height: 22px;
}

.footer__social-icon-in {
    width: 20px;
    height: 20px;
}

.footer__social-icon-yt {
    width: 22px;
    height: 16px;
}

@media (min-width: 576px) {
    .footer {
        padding: 48px 0;
    }

    .footer__social-list.social-list {
        -webkit-box-pack: end;
        justify-content: flex-end;
        margin-top: 0;
    }

    .footer__info {
        -webkit-box-pack: end;
        justify-content: flex-end;
    }

    .footer__link {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .footer__logo {
        width: 100px;
        height: 84px;
    }
}
