/** ================== // HEADER NAVIGATION V1 CSS START // ================== **/
.header {
    position: sticky;
    top: 0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 99;
}
.header .container {
    max-width: 72rem;
}
.header-right-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.header-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: inline-flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.header-nav ul li {
    color: #6a7c74;
    font-size: .975rem;
    line-height: 1.25rem;
    margin-right: 1.5rem;
}
.header-nav ul li a {
    color: #6a7c74;
}
.header-nav ul li a.active {
    color: #080808;
}
.hamburger-menu {
    cursor: pointer;
    display: none;
}

.bar,
.bar:after,
.bar:before {
    width: 25px;
    height: 2px;
}

.bar {
  position: relative;
  transform: translateY(10px);
  background: black;
  transition: all 0ms 300ms;
}

.bar.animate {
  background: rgba(255, 255, 255, 0);
}

.bar:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 9px;
  background: black;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background: black;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width:1199px) {
    html, body {
        overflow-x: hidden;
    }
    body.menu-active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    body {
        padding-top: 100px;
    }
    .menu-active .header {
        border-bottom: 1px solid #c5c5c5;
    }
    .head-user-card {
        display: none;
    }
    .hamburger-menu {
        display: inline-block;
        bottom: 10px;
        position: relative;
    }
    .header-nav ul li {
        margin-right: 0;
        padding: 15px 0.9rem;
        border-top: 1px solid #c5c5c5;
    }
    .header-nav ul li:first-child {
        border-top: 0;
    }
    .header-nav {
        background: linear-gradient(rgb(217 243 239), rgb(221 241 247));
        position: fixed;
        top: 100px;
        padding-top: 0px;
        right: -150%;
        width: 100%;
        height: calc(100vh - 100px);
        z-index: 99;
        transition: .7s;
        -webkit-transition: .7s;
        -moz-transition: .7s;
        overflow-y: auto;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 92px;
        margin: 0;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
    }
    .menu-active .header-nav {
        right: 0;
    }
    .header-nav ul {
        display: block;
    }

}
@media (max-width:575px) {
    .header-info h1 {
        font-size: 19px;
    }
    .header-info p {
        font-size: 12px;
    }
    .header-info {
        margin-left: 9px;
    }
    .header-left-col {
        width: 90%;
        order: 1;
    }
    .header-right-col {
        width: calc(100% - 90%);
        order: 2;
        margin-bottom: 3px;
    }
    body {
        padding-top: 90px;
    }
    .header-nav {
        top: 91px;
        height: calc(100vh - 91px);
    }
}
/** ================== // HEADER NAVIGATION V1 CSS END // ================== **/