/* @media only screen and (min-width:769px){
    .with-sidebar .stricky-header{
        display: none;
    }
} */
#sidenav {
    position: fixed;
    left: 0;
    width: 75px;
    height: 100vh;
    background-color: transparent;
    z-index: 15;
    background-color: rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease-out;
    transform: translateX(-100px);
}

#sidenav.scrolled{
    transform: translateX(0);
}

.nav-toggler {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0.75;
    z-index: 8;
    transition: all 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.nav-toggler .lines {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.nav-toggler .lines:before {
    content: "";
    width: 75%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%) rotate(0) scaleY(1.0001);
    z-index: 1;
    transition: all 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.nav-toggler .lines:after {
    content: "";
    width: 75%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%) rotate(0) scaleY(1.0001);
    z-index: 1;
    transition: all 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.nav-toggler .lines.menu-is-showing:before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggler .lines.menu-is-showing:after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-toggler:hover {
    opacity: 1;
    cursor: pointer;
}

.sidenav-top {
    padding-bottom: 30px;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.sidenav-top ul li {
    text-align: center;
    margin-bottom: 4px;
}

.sidenav-top ul li a {
    color: #fff;
    font-size: 22px;
    text-align: center;
    display: inlilne-block;
    padding: 8px 16px;
}

.bg-white {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* .bg-white:before {
    content: "";
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 25%;
    background-color: #000;
}

.bg-white:after {
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    background-image: url(../images/darkbluecloud.svg);
    background-size: 75%;
    background-position: center;
    background-repeat: no-repeat;
    left: 15%;
    transform: translateX(-50%);
    top: calc(50px + 16.5%);
    z-index: 2;
    padding: 10px;
    background-color: #fff;
    transform: rotate(90deg);
} */
#sidenav ul{
    padding-left: 0;
}
.bg-white .sidenav-top ul li {
    text-align: center;
    margin-bottom: 12px;
}

.bg-white .sidenav-top ul li a {
    color: #000;
}

.bg-white .sidenav-top ul li .call-phone {
    background-color: #074ea3;
    margin-bottom: 2px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    padding: 12px 16px;
}

.bg-white .nav-toggler .lines {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.bg-white .nav-toggler .lines:before {
    background-color: #000;
}

.bg-white .nav-toggler .lines:after {
    background-color: #000;
}

.bg-white .nav-toggler .lines.menu-is-showing:before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.bg-white .nav-toggler .lines.menu-is-showing:after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.bg-white .nav-toggler:hover {
    opacity: 1;
    cursor: pointer;
}

.sidebar-logo {
    padding: 10px;
    opacity: 0;
}
@media only screen and (max-width:600px){
    #sidenav{
        display: none;
    }
}