
/********
=======================
FIXED HEADER ------
=======================
***********/

.sticky{
    background-color: rgba(255, 255, 255, 0.8);
  position: fixed !important;
  top: 0px;
  z-index: 4 !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: 20px 5% 10px 5%;
  transition: all .2s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

/********
=======================
scroll up ---------
=======================
***********/


#scrollUp {
    text-align: center;
    bottom: 30px;
    cursor: pointer;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 4;
    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: var(--cl1);
    margin-left: 2px;
    box-shadow: 0 0 2px #54595F;
  }
  
  #scrollUp i:hover {
   background-color: var(--cl2);
   transition: all .2s linear;
  }


 /********
=======================
Toogle nav ---------
=======================
***********/

.tactive{
  
    gap: 0px!important;
    transition: all .5s linear;
    
 }

.tactive .line2{
 display: none;
 transition: all .5s linear;
 
}

.tactive .line1{
    transform: rotate(45deg);
    transition: all .5s linear;
}

.tactive .line3{
    transform: rotate(135deg) translate(-1px, 1px);
    transition: all .5s linear;
}

.al-header .mn-show{
    visibility: visible;
}

.al-header .mn-show .navcol-innner{
    transform: translateX(0px);
    transition: all .2s ease;
}