header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    height: 120px;
    z-index: 999;
    background-color: transparent;
    transition: 200ms ease-in-out background-color;
}

header.scrolled {
    background-color: #2e2e2e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header a {
    color: #ffffff;
}

.active-header {
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #AD8437;
}

.header-logo {
    width: auto;
    height: 90px;
}

.header-link {
    transition: .4s;
}

.header-link:hover {
    color: #AD8437 !important;
}


#hidden-nav {
    position: fixed;
    left: 0;
    top: 71px;
    z-index: 1;
    display: block;
    pointer-events: none;
    opacity: 0;
    transition: all .5s;
    width: 100%;
    min-height: calc(100vh - 71px);
    overflow-y: auto;
    transform: translateX(-100%);
    background-color: rgba(0, 0, 0, 0.8);
    padding-left: 10px !important;
    border-bottom: 1px solid #AD8437;
}


@media only screen and (min-width: 992px) and (max-width: 1400px) {
    .logo img {
        width: 100px;
    }

    .header-link,
    .header-tel {
        font-size: 12px;
    }
}




@media only screen and (min-width: 1201px) {
    #hidden-nav {
        display: none;
    }
    .d-mxl-block{
        display: block!important;
    }
    .d-mxl-none{
        display: none!important;
    }
    .d-mxl-inline{
        display: inline!important;
    }
}

@media only screen and (max-width: 1200px) {

    header {
        padding: 12px 0;
        background-color: #2E2E2E;
        height: auto;
    }

    header.scrolled {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 12px 0;
    }

    .active-header {
        background-color: #2E2E2E;
    }

    header svg {
        width: auto;
        height: 23px;
    }

    .logo img {
        width: auto;
        height: 40px;
    }

    .phone svg {
        width: 21px;
        height: 21px;
    }


    .burger {
        cursor: pointer;
        position: relative;
        margin-right: 16px;
    }

    .burger .burger-icon {
        width: 42px;
        height: 42px;
    }

    .burger .burger-icon .line {
        fill: none;
        stroke: #fff;
        stroke-width: 2;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .burger .burger-icon .line1 {
        stroke-dasharray: 40 207;
        stroke-width: 2;
    }

    .burger .burger-icon .line2 {
        stroke-dasharray: 60 60;
        stroke-width: 2;
    }

    .burger .burger-icon .line3 {
        stroke-dasharray: 40 207;
        stroke-width: 2;
    }

    .menu-open #hidden-nav {
        transform: translateX(0);
        opacity: 1;
        pointer-events: all;

    }

    .menu-open .burger .burger-icon .line {
        stroke: #fff;
        stroke-width: 2;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .menu-open .burger .burger-icon .line1 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 2;
    }

    .menu-open .burger .burger-icon .line2 {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
        stroke-width: 2;
    }

    .menu-open .burger .burger-icon .line3 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 2;
    }
}