.navbar-fixed-top{
    z-index:3;
}

#header .logo{
    float:left;
}
#header .main-nav{
    float:right;
}
#header {
    background-color:transparent;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition:all 0.9s;
}

#header .NavbarFixed{
    height: 85px;
    padding: 20px 0;
    transition:all 0.9s;
}
#header .NavbarFixedScrolled{
    background:#fafafa;
    border-bottom: 1px solid #3cc5c5;
    box-shadow: 0px 0px 5px #777;
    height: 50px;
    padding: 1px 0;
    transition:all 0.9s;
}
#header .LowerSection .logo h1{
    margin:0px;
    padding: 0px 35px;
}
#header .LowerSection .logo img {
  padding: 0;
  max-height:40px;
}

#header .LowerSection .main-nav .menu-icon {
  width: 60px;
  padding: 4px 8px;
  box-sizing: border-box;
  cursor: pointer;
}
#header .LowerSection .main-nav .menu-icon span {
    width: 100%;
    height: 2px;
    display: block;
    margin: 6px 0;
}

#header .LowerSection .main-nav .menu-icon span:nth-child(1){
    width: 100%;
}
#header .LowerSection .main-nav .menu-icon span:nth-child(2){
    width: 80%;
}
#header .LowerSection .main-nav .menu-icon span:nth-child(3){
    width: 60%;
}
#header .LowerSection .main-nav .menu-icon .sweep-to-right{
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: color 1300ms;
    transition: color 1000ms;
    /*background:#000;*/
    background:#fff;
    z-index:0;
}
#header .LowerSection .main-nav .menu-icon .sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7941d;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .8s ease-out;
}
        
#header .LowerSection .main-nav .menu-icon:hover .sweep-to-right:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}


/* Side Navbar icon */
#header .main-nav .menu-icon span{
    transition:all 2s ease !important;
}
#header .main-nav .menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    margin: 8px 0px -10px 0px;
    /*background: #000000;*/
    background: #fff;
    width: 80%;
    height: 4px;
}
#header .main-nav .menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    width: 80%;
    height: 4px;
    /*background: #000000;*/
    background: #fff;
}
#header .main-nav .menu-icon.active span:nth-child(2) {
    display: none;
}
/* Side Navbar icon */

#header .main-nav,
#header .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .main-nav{
    margin-right:50px;
}
#header .main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  padding:10px 15px;
}
#header .LowerSection .main-nav ul #showMenu{
    padding-top:0px;
    padding-bottom:0px;
}
#header .main-nav > ul > li > a{
    visibility: visible;
    width: 100%;
}
#header .main-nav > ul > li > a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f82249;
    visibility: hidden;
    transition: all .3s ease-in-out 0s;
}

#header .main-nav a {
  display: block;
  position: relative;
  color: #fff;
  /*color: #413e66;*/
  transition:all 0.4s ease;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}
#header .LowerSection.NavbarFixedScrolled .main-nav a{
    color: #000;
}
#header .LowerSection.NavbarFixedScrolled .main-nav .menu-icon .sweep-to-right{
    background: #000; 
}
#header .LowerSection.NavbarFixedScrolled .main-nav a:hover,
#header .main-nav a:hover,
#header .main-nav .active > a,
#header .main-nav li:hover > a,
#header .main-nav  i:hover {
    color: #00c0ef;
    text-decoration: none;
    transition:all 0.5s ease-in-out;
}
#header .main-nav a i{
    padding-left:5px;
}

#header .main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 10px 34px -6px rgba(127, 137, 161,1);
  /*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);*/
  transition: ease all 0.3s;
}

#header .main-nav .drop-down:hover > ul {
  opacity: 1;
  top: calc(100% + 0px);
  visibility: visible;
}

#header .main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

#header .main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #065e77;
}

#header .main-nav .drop-down ul li:hover{
    background-color: #e9e9e9;
    transition: all 0.4s ease-in-out;
}
#header .main-nav .drop-down ul a:hover,
#header .main-nav .drop-down ul .active > a,
#header .main-nav .drop-down ul li:hover > a {
  color: #1bb1dc;
}
#header .main-nav .drop-down ul li:hover > a .RequestAlert{
    color:#000;
}

#header .main-nav .drop-down .drop-down ul {
    min-width: 200px;
    top: calc(100% - 30px);
    left: 100%;
}

#header .main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

#header .main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}
#header .main-nav .drop-down .drop-down i{
    float:right;
    margin-top: 3px;
    color:#065e77;
}
#header .main-nav .drop-down ul a .RequestAlert{
    color:#000;
    background-color: #3cc5c5;
    width:20px;
    height:20px;
    text-align:center;
    border-radius: 20px;
    float: right;
}

/* Side Styling Start */
.sidebar {
    position: fixed;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100vh;
    background: #262626;
    transition: all 0.9s ease;
    padding: 15px 10px;
    text-align: center;
    box-sizing: border-box;
    z-index: 3;
}
.sidebar.active {
    left: 0;
}

.sidebar .sidemenu-logo{
    display:block;
}
.sidebar .ham {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid orange;
}
.sidebar .ham a{
    color: #fff;
}
.sidebar .ham a{
    margin-left:5px;
    margin-right:5px;
}
.sidebar .menu {
    margin: 0;
    padding: 15px 0;
    text-align:left;
}
        
.sidebar .menu li {
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}
.sidebar .menu li a {
    display: block;
    padding: 5px 0px 5px 5px;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition:all 0.8s ease;
}
.sidebar .menu li a:hover{
    background: #3cc5c5;
    color: #fff;
    transition:all 0.8s ease;
}
.sidebar .menu li ul li a{
    text-transform:capitalize;
}
.sidebar .menu .has-sub i{
    padding-left:15px;
}
.sidebar .menu ul {
    padding: 5px 12px;
    box-shadow: 1px 1px 5px 1px #000;
    display: none;
}
.sidebar .menu ul li {
    padding: 3px 0;
}
.sidebar .menu ul a {
    display: block;
    color: #fff;
    padding-left: 5px;
    font-size: 13px;
    font-weight: inherit;
}
.sidebar .menu ul a:hover {
    color: #000;
}
/* Side Styling End */


/* Mobile Menu Styling  */
#MobileMenu{
    display:none;
    position: fixed;
    top: 15px;
    right: 10px;
    width: 50px;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 2;
}
#MobileMenu .sweep-to-right{
    background:#1d1a1a;
}
#MobileMenu span:nth-child(1){
    max-width: 100%;
    height: 3px;
    display: block;
    margin: 5px;
}
#MobileMenu span:nth-child(2){
    max-width: 90%;
    height: 3px;
    display: block;
    margin: 5px 10px 5px 5px;
}
#MobileMenu span:nth-child(3){
    max-width: 80%;
    height: 3px;
    display: block;
    margin: 5px 15px 5px 5px;
}

#MobileMenu  span{
    transition:all 1s ease;
}
#MobileMenu.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    margin: 10px 0px -8px 10px;
    background: #000000;
    width: 60%;
    /*height: 4px;*/
}
#MobileMenu.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    width: 60%;
    /*height: 4px;*/
    margin: 5px 0px 10px 10px;
    background: #000000;
}
#MobileMenu.menu-icon.active span:nth-child(2) {
    display: none;
}
/* Mobile Menu Styling  */


@media screen and (max-width:768px){
    .navbar.navbar-fixed-top{
        display:none;
    }
    .main-nav .drop-down li{
        min-width: 150px;
    }
    #header .LowerSection .logo a{
        padding: 0px 10px;
    }
    #MobileMenu{
        display: block;
    }
}

@media (max-width: 574px) {
  #footer .footer-top .social-links a {
    margin-bottom: 25px;
  }
}

