/* header */

.cd-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    transition: 0.4s all ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

.cd-header-container {
    width: 100%;
    max-width: 1530px;
    padding: 0 15px;
    text-align: center;
}

.cd-header-wrapper.active {
    background-color: rgba(21, 62, 53, .55);
}

.cd-header-wrapper.active .cd-header-wrap:before {
    bottom: 10px;
}

.cd-header-wrap {
    display: block;
    position: relative;
    text-align: center;
    padding: 10px 0;
    transition: 0.4s all ease-out;
}

.cd-header-wrap:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(207, 201, 180, .55);
    transition: 1.3s all ease-in-out;
    transform-origin: center;
    transform: scaleX(0);
}

.cd-header-wrap-show:before {
    transform: scaleX(1);
}

.cd-header-logo {
    display: inline-block;
    opacity: 0;
    transition: 0.7s all ease-in-out;
    position: relative;
    top: -7.5vw;
}

.cd-header-logo-content {}

.cd-header-logo-img {
    width: 3vw;
    min-width: 75px !important;
}

.cd-header-logo-img-2 {
    width: 20vw;
    min-width: 200px !important;
}

.cd-header-burger-menu-wrap {
    position: absolute;
    top: -34px;
    right: 0;
    transition: 0.7s all ease-in-out;
    opacity: 0;
}

.cd-header-burger-menu-icon {
    display: block;
    position: relative;
    cursor: pointer;
}


.cd-header-bm-lines {
    display: block;
    width: 30px;
    height: 15px;
    position: relative;
    margin: 0 auto;
    pointer-events: auto;
    text-align: center;
}

.cd-header-bm-lines:hover span:nth-child(3) {
    width: 100%;
}

.cd-header-bm-lines span {
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #cfc9b4;
    left: 0;
    transition: 0.4s all ease-in-out;
    top: 0;
    margin: 0 auto;
}

.cd-header-bm-lines span:nth-child(2) {
    top: 7px;
}

.cd-header-bm-lines span:nth-child(3) {
    top: auto;
    bottom: 0;
    width: 20px;
    left: auto;
    right: 0;
}

.cd-header-bm-text {
    font-size: 10px;
    letter-spacing: 0.200em;
    line-height: 1;
    color: #cfc9b4;
    display: block;
    text-align: center;
    margin-top: 4px;
}

@media only screen and (min-width: 992px) {
    .cd-header-container {
        max-width: 95.625vw;
        padding: 0 0.938vw;
    }

    .cd-header-wrapper.active .cd-header-wrap {
        padding: 0.938vw 0 1.5vw;
    }

    .cd-header-wrap:before {
        height: 0.063vw;
    }

    .cd-header-wrapper.active .cd-header-wrap:before {
        bottom: 0.625vw;
    }

    .cd-header-bm-lines span:last-child {
        width: 1.25vw;
    }

    .cd-header-bm-lines span:nth-child(2) {
        top: 0.438vw;
    }

    .cd-header-bm-lines {
        width: 1.875vw;
        height: 0.938vw;
    }

    .cd-header-bm-text {
        font-size: 0.625vw;
        margin-top: 0.25vw;
    }
}

@media only screen and (max-width: 992px) {
    .cd-header-wrapper {
        background-color: rgba(21, 62, 53, .95);
    }

    .cd-header-logo-img {
        max-width: 55px;
        min-width: 55px !important;
    }
}

@media only screen and (max-width: 991px) {
    .cd-header-wrap {
        padding: 10px 0 20px !important;
    }

    .cd-header-wrap:before {
        bottom: 10px;
    }
}