


/* Header sticky */


.sticky{
  background-color: #fff;
  position: fixed !important;
  top: 0px;
  z-index: 9999 !important;
  margin: 0 auto !important;
  padding: 0;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  padding: 10px 5%;
}



/****************
===========================
Responsive menu
===========================
*****************/


.right_menu_togle{
  width: 40%;
  height: 100%;
  position: fixed;
  top: 0px; right: -600px;
  visibility: hidden;
  z-index: 100000;
  background-color: #000;
  padding: 46px 40px 50px 50px;
  transition: all .3s linear;
}

@media only screen and (max-width:992px) {
  
  .rs-header .show-nav{
    right: 0px!important;
    visibility:visible!important;
  }

}




/********
=======================
scroll up
=======================
***********/


#scrollUp {
  text-align: center;
  bottom: 30px;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 15px;
  z-index: 999;
  border-radius: 50px 50px 4px 4px;
}
#scrollUp i {
  height: 40px;
  font-size: 24px;
  width: 40px;
  border-radius: 50%;
  color: #fff;
  line-height: 36px;
  transition: all 0.3s ease 0s;
  background: #6d3f03;
  margin-left: 2px;
  box-shadow: 0 0 2px #54595F;
}



#scrollUp i:hover {
 background-color: var(--cl2);
 transition: all .2s linear;
}


  