@media screen and (max-width: 600px) {
	.site-header .navbar-nav .sub-menu li a{
	    color:#68aaa6 !important;
	}
	 .side-nav li .sub-menu{
	     margin-left:0px;
	 }
	  .sub-menu {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  display: none;
  z-index: 1;
  border:none;

  }

   .site-header .navbar-nav .sub-menu{
        background:rgb(0, 0, 0, 0.3);
    }
    #mobile-demo li.current-menu-item > a, #mobile-demo li.current-menu-item > span{
    color:#F5EDCC;
}
    .site-header .navbar-nav li {
    border-bottom: solid 1px #68aaa6 !important;
    padding: 5%;
    }
        .menu-item-has-children:after{
         content: "\f107";
         font-family:FontAwesome;
         position: absolute;
         right: 17px;
         top: 20px;
         padding: 0px 5px;
         color:#fff;
      }
  .sub-menu .menu-item {
  border-bottom:solid 1px #68aaa6;
      
  }
 
  .menu {
    position: absolute;
  }
  .menu:after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 1rem;
    width: 30px;
    height: 4px;
    background: #FFF;
    box-shadow: 0 10px #FFF, 0 -10px #FFF;
  }
  .menu > ol {
    display: none;
    background: #F67280;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    animation: fade 0.2s ease-out;
  }
  .menu > ol > .menu-item {
    flex: 0;
    opacity: 0;
    animation: enter 0.3s ease-out forwards;
  }
  .menu > ol > .menu-item:nth-child(1) {
    animation-delay: 0s;
  }
  .menu > ol > .menu-item:nth-child(2) {
    animation-delay: 0.1s;
  }
  .menu > ol > .menu-item:nth-child(3) {
    animation-delay: 0.2s;
  }
  .menu > ol > .menu-item:nth-child(4) {
    animation-delay: 0.3s;
  }
  .menu > ol > .menu-item:nth-child(5) {
    animation-delay: 0.4s;
  }
  .menu > ol > .menu-item + .menu-item {
    margin-top: 0.75rem;
  }
  .menu > ol > .menu-item:after {
    left: auto;
    right: 1rem;
    bottom: calc(50% - 2px);
  }
  .menu > ol > .menu-item:hover {
    z-index: 1;
  }
  .menu:hover > ol {
    display: flex;
  }
  .menu:hover:after {
    box-shadow: none;
  }
}
.menu-item:hover > .sub-menu {
  display:block;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: scaleY(0.98) translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}