/*
Header Css
*/
#page-container {
    margin-top: 112px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
#page-container.page-scrolled {
    margin-top: 100px;
}
.logo-container .cls-2 {
    fill: url(#linear-gradient) !important;
}
.hamburger {
    width: 53px;
    height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    background-color: #ffffff;
    overflow: visible;
    transition: all .3s ease-in-out;
    border: 1px solid #2da9e4;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .hamburger {
        min-width: 53px;
    }
 }
.hamburger:hover {
    box-shadow: 0 0 20px 3px rgba(45, 169, 228, .5);
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #2da9e4;
}
.hamburger-box {
    width: 30px;
    height: 18px;
    display: inline-block;
    position: relative;
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #2da9e4;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -10px;
}
.hamburger-inner::after {
    bottom: -10px;
    width: 22px
}
.hamburger--slider .hamburger-inner {
    top: 2px;
}
.hamburger--slider .hamburger-inner::before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
    top: 16px;
}
.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg);
    top: 0
}
.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg);
    width: 30px;
    top: 19px
}
#main-header {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.main-header-column {
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
    display: flex;
}
.ie-hamburger-trigger {
    display: flex;
    align-items: center;
    padding-right: 15px;
    max-width: 385px;
}
.header-extra-btn a {
    display: block;
    width: 210px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border: 1px solid #2da9e4;
    color: #2da9e4;
    font-size: 17px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.header-extra-btn a:hover {
    background-color: #2da9e4;
    color: #fff;
}
.header-extra-btn {
    padding-right: 20px;
    position: relative;
    padding-left: 80px;
    transition: all 0.3s ease-in-out;
}
.hamburger-active .header-extra-btn {
    opacity: 0;
    visibility: hidden;
}
.header-extra-btn::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background-color: #d3d4d4;
    left: 40px;
}
#main-header {
    position: fixed;
    width: 100%;
    top: 0px;
    background-color: #fff;
    padding-top: 25px;
    padding-bottom: 25px;
    transition: all .3s ease-in-out;
    z-index: 99999;
}
.admin-bar #main-header {
    top: 32px;
}
#main-header .logo-container {
    /* margin-right: 140px; */
    max-width: 330px;
    transition: all 0.3s ease-in-out;
    padding: 0px 0;
    padding-left: 15px;
}
/* #main-header .logo-container a.custom-logo-link {
    display: flex;
} */
#main-header.sticky-header .logo-container {
    max-width: 237px;
}
#main-header .logo-container .custom-logo {
    height: auto;
    transition: all .3s ease-in-out;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #main-header .logo-container .custom-logo {
        height: 64.3px;
    }
 }
/**
Menu
 */
#navigation-container .menu {
    display: flex;
    list-style-type: none;
    margin: 20px 0 0;
    padding: 0;
    justify-content: flex-end;
}
#navigation-container .menu li {
    position: relative;
}
#navigation-container .menu li a {
    color: #0f0f0f;
    text-decoration: none;
    font-size: 17px;
    position: relative;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
}
#navigation-container .menu li ul.sub-menu {
    padding: 20px 0;
    margin: 0;
    position: absolute;
    width: 350px;
    /* border-top: 3px solid #2da9e4; */
    list-style-type: none;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    z-index: 999;
}
#navigation-container .menu li ul.sub-menu li {
    margin: 0;
    padding: 0 10px;
    word-wrap: break-word;
    line-height: 1.7;
}
#navigation-container .menu li ul.sub-menu li a {
    color: #0f0f0f;
    padding: 6px 10px;
    width: 100%;
    line-height: 1.4;
    transition: all .3s ease-in-out;
}
#navigation-container .menu li ul.sub-menu li a:hover {
    background-color: #f6f6f6;
}
#navigation-container .menu li ul.sub-menu .current-menu-item a {
    color: #2da9e4 !important;
}
#navigation-container .menu > li:not(:last-child) {
    margin-right: 35px;
}
#navigation-container .menu > li {
    transition: all .3s ease-in-out;
}
#navigation-container .menu > li > a {
    padding-top: 0;
    padding-bottom: 20px;
}
#navigation-container .menu > li::after {
    position: absolute;
    content: "";
    background-color: #2da9e4;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 4px;
    transition: width .3s ease-in-out;
}
#navigation-container .menu > li:hover::after, #navigation-container .menu > li.current-menu-item::after {
    width: 100%;
}
#navigation-container .menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}
#navigation-container .menu li.menu-item-has-children > a:first-child {
    padding-right: 28px;
}
#navigation-container .menu li.menu-item-has-children > a:first-child::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    background: url(/wp-content/uploads/2020/09/down-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 15px;
    height: 20px;
}
#navigation-container .menu li li.menu-item-has-children > a:first-child::after {
    top: 5px;
}
#navigation-container .menu li li .sub-menu {
    top: -23px;
    left: 240px;
}
/* Sticky Header */
#top-header.sticky-header {
    top: -50px;
}
#main-header.sticky-header {
    top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}
.admin-bar #main-header.sticky-header {
    top: 32px;
}
/* Humbergur Services */
.services-we-offers-wrap a {
    text-decoration: none;
}
.services-we-offers-items {
    display: flex;
    padding: 20px 10px;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}
.services-we-offer-icon {
    width: 51px;
    margin-right: 20px;
}
.services-we-offer-icon svg {
    max-width: 100%;
    height: auto;
}
.services-we-offer-icon svg path {
    fill: #666666;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.services-we-offer-content {
    width: 100%;
}
.services-we-offers-items h3 {
    font-family: "Museo Sans",sans-serif;
    font-size: 16px;
    margin: 0;
    margin-bottom: 10px;
    color: #2da9e4;
    transition: all .3s ease-in-out;
}
.services-we-offers-items p {
    color: #8a8a8a;
    transition: all .3s ease-in-out;
}
.services-we-offers-items:hover {
    background: #fff;
    box-shadow: 0px 0px 12px 5px rgba(0,0,0,0.1);
}
.services-we-offers-items:hover .services-we-offer-icon svg path {
    fill: #2da9e4;
}
/* .services-we-offers-items:hover .services-we-offer-content h3 {
    color: #000;
} */
/* .services-we-offers-items:hover .services-we-offer-content p {
    color: #2da9e4;
} */
/* Humbergur Services */

div#page-container.hamburger-active div#main-content {
    height: calc(100vh - 112px);
    overflow: hidden;
}
.logged-in div#page-container.hamburger-active div#main-content {
    height: calc(100vh - 144px);
    overflow: hidden;
}
div#page-container.hamburger-active footer#main-footer {
    display: none;
}

#main-header .services-we-offer-icon img {
    filter: contrast(0);
}
#main-header .services-we-offers-items:hover .services-we-offer-icon img {
    filter: contrast(1);
}


@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    #page-container {
        margin-top: 108px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hemberger-menu {
        top: 106px !important;
    }
    .hamburger-active .empty {
        height: 106px !important;
    }
    .hemberger-menu li a {
        font-size: 14px;
    }
    .logged-in .hemberger-menu {
        top: 138px !important;
    }
	.logged-in .hamburger-active .empty {
		height: 138px !important;
    }
    .logged-in .hamburger-active .sticky-header .empty {
        height: 108px !important;
    }
    .logged-in .page-scrolled .sticky-header .hemberger-menu {
        top: 108px !important;
    }
	.logged-in .hamburger-active .hemberger-menu .background {
		padding-top: 118px !important;
    }
    /* .hamburger-active .empty {
        height: 80px !important;
    } */
    .hamburger-active .hemberger-menu .background {
        padding-top: 80px !important;
    }
    /* .hemberger-menu {
        padding-top: 100px !important;
    } */
    #page-container {
        margin-top: 102px;
    }
}
@media only screen and (max-height: 767px) {
    #main-header .row.services-we-offers-wrap {
        padding-bottom: 100px;
    }
}
@media only screen and (max-height: 600px) {
    #main-header .row.services-we-offers-wrap {
        padding-bottom: 200px;
    }
}
@media only screen and (min-height: 768px) {
    #main-header .row.services-we-offers-wrap {
        padding-bottom: 0px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1365px) {
    header#main-header > .container {
        max-width: 100%;
    }
}
@media only screen and (min-width: 992px) {
	/* Hamburger Style */
	.logged-in .hemberger-menu {
        top: 146px;
	}
	.hemberger-menu {
		position: fixed;
        left: 0;
        background-color: #f7f6f6;
        z-index: -1;
        overflow: auto;
        width: 100%;
        /* height: 100%; */
        top: 114px;
        padding-top: 30px;
        display: none;
        border-top: 3px solid #2da9e4;
        padding-bottom: 50px;
        box-shadow: 0 15px 21px 0px rgba(0,0,0,.2);
        height: 720px;
    }
    #main-header .row.services-we-offers-wrap {
        /* padding-bottom: 100px; */
        overflow: scroll;
    }
    #main-header .row.services-we-offers-wrap {
        -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
        scrollbar-width: none;  /* Hide scrollbar for Firefox */
      }
    #main-header .row.services-we-offers-wrap::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari and Opera */
    }
    .page-scrolled.hamburger-active .empty {
        height: 79px;
    }
    .page-scrolled .hemberger-menu {
        top: 79px;
    }
    .logged-in .page-scrolled .hemberger-menu {
        top: 122px;
    }
    .logged-in .page-scrolled .sticky-header .hemberger-menu {
        top: 111px;
    }
    .page-scrolled.hamburger-active .hemberger-menu .background {
        padding-top: 90px;
    }
    .logged-in .page-scrolled.hamburger-active .hemberger-menu .background {
        padding-top: 122px;
    }
	.hemberger-menu::-webkit-scrollbar {
		display: none;
	}
	.hemberger-menu li {
		padding: 10px;
		list-style: none;
	}
	.hemberger-menu li a {
		color: #FFF;
		text-decoration: none;
		font-size: 18px;
		text-transform: uppercase;
		transition: all 0.3s ease-in-out;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
	}
	.hemberger-menu li:hover a {
		color: #ed6062;
	}
	.hamburger-active .top-level-menu {
		opacity: 0;
		visibility: hidden;
	}
	.top-level-menu {
		transition: all 0.3s ease-in-out;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
        /* padding: 0 15px; */
        /* width: calc(100% - 663px); */
        width: calc(100% - 583px);
    }
    .sticky-header .top-level-menu {
        /* width: calc(100% - 622px); */
        width: calc(100% - 542px);
    }
	.hamburger-active #main-header.sticky-header .logo-container .custom-logo {
		filter: brightness(1);
	}
	.hamburger-active #top-header {
		display: none;
	}
	.admin-bar .hamburger-active #main-header {
		top: 32px;
		/* padding-top: 10px;
		padding-bottom: 10px; */
	}
	.hamburger-active #main-header {
		top: 0;
		/* padding-top: 10px;
		padding-bottom: 10px; */
	}
	.logged-in .hamburger-active .hemberger-menu .background {
		padding-top: 120px;
	}
	.hamburger-active .hemberger-menu .background {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		z-index: -9;
		display: flex;
		padding-top: 102px;
		left: 0;
		right: 0;
		margin: auto;
	}
	.empty {
		position: fixed;
		/* background-color: #05051f; */
		background-color: #fff;
		top: 0;
		left: 0;
	}
	.hamburger-active #main-header .hemberger-menu .col25 {
		top: 0;
		height: 100%;
		width: 25%;
	}
	.hamburger-active #main-header .hemberger-menu .col25.c1 {
		background: #272728;
	}
	.hamburger-active #main-header .hemberger-menu .col25.c2 {
		background: #1f1f20;
	}
	.hamburger-active #main-header .hemberger-menu .col25.c3 {
		background: #1a1a1b;
	}
	.hamburger-active #main-header .hemberger-menu .col25.c4 {
		background: #141415;
	}
	.hemberger-menu ul li.menu-item-has-children {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.hemberger-menu ul li.menu-item-has-children i {
		background-color: #ed6062;
		color: #fff;
		cursor: pointer;
		font-size: 18px;
		height: 25px;
		width: 25px;
		text-align: center;
		line-height: 25px;
		transition: all 0.3s ease-in-out;
		opacity: 0;
		visibility: hidden;
	}
    .hamburger-active .empty {
        width: 100%;
        height: 114px;
        z-index: 1;
    }
	.hamburger-active .logo-container {
		z-index: 9;
	}
	.hamburger-active .ie-hamburger-trigger {
		z-index: 9;
	}
	.logged-in .hamburger-active .empty {
		height: 146px;
    }
    .logged-in .hamburger-active .sticky-header .empty {
        height: 111px;
    }
	.logged-in .hamburger-active .hemberger-menu .background {
		padding-top: 136px;
	}
	.menu-wraper {
		position: relative;
	}
	.hemberger-menu ul {
		padding: 0;
		margin: 0;
	}
	.hemberger-menu ul li {
		width: 25%;
		padding: 30px 15px 30px 30px;
		font-size: 24px;
		letter-spacing: 1px;
		transition: all 0.4s ease-in-out;
		-webkit-transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-ms-transition: all 0.4s ease-in-out;
		-o-transition: all 0.4s ease-in-out;
		font-weight: 500;
	}
	.hemberger-menu ul > li:hover {
		background-color: #1f1f20;
	}
	.hemberger-menu ul li.menu-item-has-children > .sub-menu {
		position: absolute;
		/* display: none; */
		min-height: 100vh;
		left: 25%;
		width: 25%;
		top: 0;
		transition: all 0.5s ease-in-out;
		opacity: 0;
		visibility: hidden;
	}
	.hemberger-menu ul li.menu-item-has-children:hover > .sub-menu {
		width: 75%;
		opacity: 1;
		visibility: visible;
	}
	.hemberger-menu ul li.menu-item-has-children:hover > .sub-menu li ul {
		opacity: 1;
		visibility: visible;
		width: 100% !important;
	}
	.hemberger-menu ul li.menu-item-has-children > .sub-menu li {
		width: calc(100% / 3);
		float: left;
		position: relative;
		padding: 30px 15px 30px 40px;
	}
	.hemberger-menu ul li.menu-item-has-children > .sub-menu li ul {
		display: block;
		left: 0!important;
		width: 100%;
		top: 85px; 
	}
	.hemberger-menu ul li.menu-item-has-children > .sub-menu li ul li {
		padding: 33px 15px 33px 30px;
		display: block;
		float: none;
		width: calc(100% - 20px);
		margin: 0 auto;
		border-bottom: 1px #4b4b4b solid;
	}
	.hemberger-menu ul li.menu-item-has-children > .sub-menu li a {
		display: block;
		width: 100%;
	}
	.hemberger-menu ul li.menu-item-has-children > .sub-menu li a {
		color: #8f8f90!important;
	}
	.hemberger-menu ul li.menu-item-has-children > .sub-menu li ul li a {
		color: #fff !important;
	}
	.hemberger-menu ul li.menu-item-has-children > .sub-menu li:hover {
		background-color: transparent;
	}
	.hemberger-menu ul li.menu-item-has-children > .sub-menu li:hover > a {
		color: #ed6062 !important;
	}
	.hemberger-menu ul.menu > li.menu-item-has-children:hover > i {
		opacity: 1;
		visibility: visible;
    }
    .menu-hamburger-menu-container {
        display: none;
    }
	/* Hamburger Style */
}
@media only screen and (max-width: 1499px) {
    #main-header .logo-container {
        margin-right: 0;
        max-width: 278px;
    }
    .header-extra-btn {
        padding-left: 40px;
    }
    .header-extra-btn::before {
        left: 20px;
    }
    .header-extra-btn a {
        width: 160px;
    }
    .top-level-menu {
        /* width: calc(100% - 573px); */
        width: calc(100% - 493px);
    }
    .sticky-header .top-level-menu {
        /* width: calc(100% - 532px); */
        width: calc(100% - 452px);
    }
}
@media only screen and (min-width: 992px) and (max-width: 1499px) {
    .hamburger-active .empty {
        height: 109px;
    }
    .logged-in .hamburger-active .empty {
        height: 141px;
    }
    .hemberger-menu {
        top: 109px;
    }
    .logged-in .hemberger-menu {
        top: 141px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1366px) {
    .hamburger-active .empty {
        height: 107px;
    }
    .logged-in .hamburger-active .empty {
        height: 139px;
    }
    .hemberger-menu {
        top: 107px;
    }
    .logged-in .hemberger-menu {
        top: 139px;
    }
    .page-scrolled .sticky-header .hemberger-menu {
        top: 76px !important;
    }
    .logged-in .page-scrolled .sticky-header .hemberger-menu {
        top: 109px;
    }
    .hamburger-active .sticky-header .empty {
        height: 76px !important;
    }
    .logged-in .hamburger-active .sticky-header .empty {
        height: 109px;
    }
}
@media only screen and (max-width: 1366px) {
    #navigation-container .menu li a {
        font-size: 15px;
    }
}
@media only screen and (max-width: 1199px) {
    .top-level-menu {
        width: calc(100% - 485px);
    }
    .sticky-header .top-level-menu {
        width: calc(100% - 485px);
    }
    #main-header .logo-container {
        margin-right: 0px;
        max-width: 220px;
    }
    #main-header.sticky-header .logo-container {
        max-width: 220px;
    }
    .header-extra-btn {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-extra-btn::before {
        left: 0;
    }
    #navigation-container .menu > li:not(:last-child) {
        margin-right: 23px;
    }
    #navigation-container .menu li a {
        font-size: 14px;
    }
    #page-container {
        margin-top: 90px;
    }
    #page-container.page-scrolled {
        margin-top: 81px;
    }
    .header-extra-btn a {
        height: 40px;
        line-height: 40px;
    }
	
}
@media only screen and (max-width: 991px) {
    #main-header {
        top: 0;
    }
    #navigation-container {
        display: none;
    }
    .header-extra-btn {
        display: none;
    }
    #main-header .logo-container {
        max-width: 240px;
        padding-right: 0;
    }
    /* .main-header-column {
        padding: 0 15px;
    } */
    #main-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    #page-container {
        margin-top: 70px;
    }
    /*   Mobile Menu Style  */
    .page-scrolled .hemberger-menu {
        top: 70px;
        height: calc(100% - 70px);
    }
	.hemberger-menu {
		width: 100%;
		position: fixed;
		left: 0;
		top: 70px;
		border-top: 5px solid #2da9e4;
		height: calc(100% - 70px);
		overflow: auto;
        background: #fff;
        display: none;
    }
    .logged-in .hemberger-menu {
        top: 102px;
        height: calc(100% - 102px);
    }
    .logged-in .page-scrolled .hemberger-menu {
        top: 102px;
        height: calc(100% - 102px);
    }
	.hemberger-menu .container-fluid-d {
		max-width: 720px;
		margin: auto;
		padding: 20px 15px;
	}
	.hemberger-menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	.hemberger-menu ul.menu li {
		position: relative;
	}
    .hemberger-menu ul.menu li i,
    .hemberger-menu ul.menu li span {
		position: absolute;
		right: 5px;
		top: 5px;
		height: 30px;
		line-height: 30px;
		width: 30px;
		border: 1px solid #2da9e4;
		text-align: center;
		cursor: pointer;
		border-radius: 50%;
		color: #2da9e4;
		transition: all 0.3s ease-in-out;
	}
	.hemberger-menu ul.menu li a {
		display: block;
		color: #0f0f0f;
		text-decoration: none;
		font-size: 17px;
		position: relative;
		text-transform: uppercase;
		font-weight: 700;
		margin-bottom: 10px;
		padding: 10px;
		border-radius: 3px;
		transition: all 0.3s ease-in-out;
	}
	.hemberger-menu ul.menu li i::before {
		content: "\ea99" !important;
	}
	li.current-menu-item > a {
		background-color: #2da9e4;
		color: #fff !important;
	}
    li.current-menu-item > i,
    li.current-menu-item > span {
		color: #fff !important;
		border-color: #fff !important;
    }
    li.current-menu-item > span img,
    .hemberger-menu ul.menu li.hover-active > span img {
        filter: grayscale(1) brightness(3.5);
    }
	.hemberger-menu li.hover-active > a {
		background-color: #2da9e4;
		color: #fff !important;
	}
    .hemberger-menu ul.menu li.hover-active > i,
    .hemberger-menu ul.menu li.hover-active > span {
		color: #fff;
		border-color: #fff;
    }
    .hemberger-menu ul.menu li span img {
        max-width: 51%;
    }
	ul.sub-menu {
		display: none;
    }
    .hemberger-menu ul ul.sub-menu {
        padding-left: 10px;
    }
    .hemberger-menu::-webkit-scrollbar { 
        display: none;  /* Safari and Chrome */
    }
    .hamburger:hover {
        box-shadow: none;
    }
    .hamburger.is-active {
        box-shadow: 0 0 20px 3px rgba(45, 169, 228, .5);
    }
    /*   Mobile Menu Style  */
    #main-header .row.services-we-offers-wrap {
        display: none;
    }
    .menu-hamburger-menu-container {
        margin-top: 20px;
    }
    #main-header .logo-container .custom-logo {
        height: 46px;
    }
}
@media only screen and (max-width: 782px) {
    .admin-bar #main-header {
        top: 46px;
    }
    .admin-bar #main-header.sticky-header {
        top: 46px;
    }
    .logged-in .hemberger-menu {
        top: 116px;
        height: calc(100% - 116px);
    }
    .logged-in .page-scrolled .hemberger-menu {
        top: 116px;
        height: calc(100% - 116px);
    }
}
@media only screen and (max-width: 767px) {
    .hemberger-menu ul.menu li a {
        font-size: 14px;
    }
    .hemberger-menu .container-fluid-d {
        max-width: 540px;
    }
    .hemberger-menu ul.menu li i {
        top: 3px;
    }
    .hemberger-menu ul.menu li span {
        top: 3px;
    }
}
@media only screen and (max-width: 600px) {
    .admin-bar .page-scrolled #main-header.sticky-header {
        top: 0;
    }
    #page-container.page-scrolled {
        margin-top: 0;
    }
    .logged-in .page-scrolled .hemberger-menu {
        top: 70px;
        height: calc(100% - 70px);
    }
}
@media only screen and (max-width: 575px) {
    #main-header .logo-container {
        max-width: 230px;
    }
    .hamburger {
        width: 50px;
        height: 50px;
    }
    #page-container {
        margin-top: 70px;
    }
}

