<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.mobile_menu {
    display: none;
    position: relative;
  }
  .sm_menu_outer.active .mobile_menu {
	display: block;
	margin-top: 30px;
}
  .sm_menu_outer {
    /* height: calc(100vh - 60px); */
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    position: fixed;
    right: -100%;
    bottom: 0;
    z-index: -9;
    width: 100%;
    width: 100%;
    background-color: #F5C3C2;
    transition: all 0.5s ease 0s;
    /* -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s; */
  }
  .sm_menu_outer.active {
    /* opacity: 1; */
    z-index: 99991;
    right: 0;
  }
  .sm_menu_outer .mobile_menu li.back a {
	padding: 20px 5px 20px 40px;
	background: url("../images/back.svg") no-repeat scroll 8px center / 5% auto;
	font-weight: 500;
    background-size: 20px;
}
  .sm_menu_outer .mobile_menu a {
    color: #180F0D;
    display: block;
    padding: 20px 15px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
  }
  /*Sub Menu anim */
  .sm_menu_outer.slide .mobile_menu .submenu {
    background-color: #F5C3C2;
    height: 100vh;
    position: absolute;
    right: -100%;
    top: 0;
    transition: all 0.5s ease 0s;
    width: 100%;
    z-index: 999;
  }
  .sm_menu_outer.slide .mobile_menu li.active &gt; .submenu {
    right: 0;
  }
  .sm_menu_outer .mobile_menu li {
    list-style-type: none;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0);
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #2a2a2a 20%, #2a2a2a 50%, #2a2a2a 80%, rgba(0, 0, 0, 0) 100%) 0 0 1 0;
    color: #ffffff;
    padding-right: 0;
  }
  .sm_menu_outer.slide .mobile_menu li.hasChild &gt; a {
    background: url("../images/next.svg") no-repeat scroll 97% center / 5% auto;
    background-size: 16px;
  }
  /*Hamburger Animation */
  #sm_menu_ham {
    cursor: pointer;
    float: left;
    height: 25px;
    position: fixed;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    width: 30px;
    top: 30px;
    right: 15px;
    z-index: 99992;
    
  }
  #sm_menu_ham span {
    background-color: #180F0D;
    border-radius: 5px;
    display: block;
    height: 3px;
    left: 0;
    opacity: 1;
    position: absolute;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    width: 30px;
  }
  #sm_menu_ham span:nth-child(1) {
    top: 0;
  }
  #sm_menu_ham span:nth-child(2),
  #sm_menu_ham span:nth-child(3) {
    top: 10px;
  }
  #sm_menu_ham span:nth-child(4) {
    top: 20px;
  }
  #sm_menu_ham.open span:nth-child(1) {
    left: 50%;
    top: 18px;
    width: 0;
  }
  #sm_menu_ham.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #sm_menu_ham.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #sm_menu_ham.open span:nth-child(4) {
    left: 50%;
    top: 18px;
    width: 0;
  }
  

  .mobile_menu ul{
    padding-left: 0px;
  }

  .mobile-header {
	background: #fff;
	box-shadow: 5px 6px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
}
.mobile-header .navbar-brand {
	max-width: 90px;
	display: flex;
}
.mobile-header .navbar-brand img{
    max-width: 100%;
}
.menu-btn-mob{
    width: 60px;
}
@media (max-width:992px){
    .slider-banner, .about-banner, #result-section {
        margin-top: 86px;
    }
}


@media(min-width:993px){
    .mobile-header{
        display: none;
    }
    #sm_menu_ham,
    .sm_menu_outer {
      display: none;
    }
}</pre></body></html>