

.am-header{
    height: 48px;
    width: 100%;
    background: var(--theme-color);
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 99;
}
.sticky{
   position: fixed;
   top: 0;
   z-index: 99;
  animation: slideDown .4s forwards;
}







.s-wrapper {

  width: 36px;
  height: 36px;
 transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
  box-sizing: border-box;

}

#circle{
  position: relative;
  border: 2px white solid;
  width: 15px; /* 160*/
  height: 15px;
  top: 2px;
  left: 8px;
  border-radius: 50%;
  transition: all 0.3s linear;
}

#bar {
  position: relative;
  margin-top: 0px;
  height: 12px;
  left: 16px;
  width: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s linear;
}

.am-container{
   width: 260px;
   height: 100vh;
   background: var(--theme-color);
   overflow: auto;
   z-index: 99;
  position: fixed;
   top: 48px;
   right: -260px;
}

.open,
.am-container{
     transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}
.open{
   right: 0;

}


/* AM Menu Themes */


.default-theme{

  background: black;
}

/*plain themes colors */







.am-container .list-item li{
   list-style: none;
   background-color: black!important;



}
.has-sub,
.list-item li a{
   padding: 10px;
   display: block;
   overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
   color: #fff;
   text-decoration: none;
   font-size: 18px;
   outline: 0;
   border-bottom: 1px solid #80808075;

}
.has-sub:hover,
.list-item li a:hover{
   background: rgba(0, 0, 0, 0.10);


}
.has-sub{
   cursor: pointer;

}
 .has-sub:after{
   font-family: FontAwesome;
   content: "\f105";
   float: right;
   padding-right: 20px;


}

.has-sub + .sub-items{
   display: none;


}




.has-sub item-icon,
.item-icon{
display: inline-block;
  border: 0;
   width: 32px;
   height: 32px;
       line-height: 28px;
   position: relative;
   vertical-align: middle;
 padding-right: 20px;
   text-align: left;
   display: inline-block;
    border: 0;
    width: 32px;
    height: 32px;
    line-height: 28px;
    position: relative;
    vertical-align: middle;
    padding-right: 20px;
    text-align: left;
    font-weight: 600;
    font-family: gothemregular;

}
.item-icon img{
   width: 32px;
    height: 32px;


}





/* Animations*/

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: .5;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: .5;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0%);
	}
}
-webkit-@keyframes slideDown {
	from {
		-webkit-transform: translateY(-100%);
	}
	to {
		-webkit-transform: translateY(0%);
	}
}

/* background dimmy effect */

.dim-overlay {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	animation-duration: .8s;
	-webkit-animation-duration: .8s;
   display: none;
}
.dim-overlay:before {
	content: "";
	background-color: rgba(255, 255, 255, .6);
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	overflow: hidden;
   z-index: 2;
}
/* Glass Effect*/
.glass {
	box-shadow: inset 0 8px 8px rgba(255, 255, 255, 0.4), inset 0 -15px 30px rgba(0, 0, 0, 0.1), 0 5px 30px rgba(0, 0, 0, 0.1);
}




.light-box,
li.light-box{
    width: 330px;
    height: 240px;
    position: fixed;
   border: 4px solid #f2f2f2;
   border-radius: 6px;
   box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
   top: 50%;
   margin-top: -120px;
   left: 50%;
   margin-left: -165px;
   z-index: 99;
   animation: bounceIn .7s forwards;
}
.light-box img,
li.light-box img{
   width: 330px;
    height: 240px;
  object-fit: cover;

}


.close-light-box{
   position: absolute;
   border: 1px solid rgba(255, 255, 255, 0.4);
   width: 32px;
   height: 32px;
   right: 5px;
   top: 5px;
   text-align: center;
   line-height: 30px;
   border-radius: 50%;
   cursor: pointer;
   background: rgba(0, 0, 0, 0.4);
  font-size: 26px;
   color: rgba(255, 255, 255, 0.8);
}
.close-light-box:hover{
   color: rgba(255, 255, 255, 1);
   background: rgba(0, 0, 0, 0.8);
   transition: .3s;
}

/* Menu Icon */

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
   width: 60px;
   position: absolute;
   right: 0px;
   top: -13px;
   overflow: hidden;
}

li.nav-item.baricon {
    z-index: 999;
    position: absolute;
    top: 0;
    right: 0;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap:round;

}
.ham1 .top {
  stroke-dasharray: 40 139;


}
.ham1 .bottom {
  stroke-dasharray: 40 180;
}
.ham1.active .top {
  stroke-dashoffset: -98px;
}
.ham1.active .bottom {
  stroke-dashoffset: -138px;
}

.menu-trigger{
   display: block;
   position: absolute;
   width: 36px;
   height: 36px;
  cursor: pointer;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0.5);
   right: 25px;
   top: 23px;
}











/* Virtual Page */
.virtual-page{
   position: fixed;
   height: 100vh;
   width: 100%;
   background: black;
    color: white;
   z-index: 500;
   overflow: auto !important;
   top: 0;
   left: 0;




}
.virtual-header{
   height: 48px;
   background: var(--theme-color);
   width: 100%;
   box-sizing: border-box;
   color: #fff;
   position: absolute;
   top: 0;
    line-height: 48px;
    font-size: 20px;

}

.close-vPage{

   width: 36px;
    height: 36px;
   line-height: 36px;
   position: absolute;
   top: 6px;
    left: 10px;
    text-align: center;


}
.sub-items{
   padding: 10px;
   overflow: auto;

}


.jam{
   /*overflow: hidden;*/
   overflow:auto;
   -webkit-scrollbar: display: none;

}

.dropdown,
.virtual-page ul li a{
  padding:  5px 10px 5px 10px;

  display: block;

}
.virtual-page .sub-items ul {
    list-style: none;
    padding: 0px 0px 0px 10px;
    border-left: 1px solid #F58220;
}
.linkhead {
  font-weight: 600;
    font-size: 18px;
    font-family: gothemregular;
    padding-bottom: 6px;
    padding-top: 10px;
}
.dropdown:hover,
.virtual-page ul li a:hover{
  background: rgba(0, 0, 0, 0.13);

}
.virtual-page a{
   text-decoration: none;
    color: white;
}


.virtual-page .sub-items{


}
/* Drop Downs */
.dropdown{
   font-weight: 700;
   cursor: pointer;




}

.am-container .dropdown + .dropdown-items{
    height: 0;
    overflow: hidden;
}
.am-container .dropdown:after{
    font-family: FontAwesome;
    content: "\f078";
    float: right;
    font-weight: 400;
    font-size: 14px;
    margin-right: 15px;
    transition: 0.360s;
 -webkit-transition: 0.360s;
 -moz-transition: 0.360s;

}
.down:after{
   transform: rotateZ(180deg);
-webkit-transform: rotateZ(180deg);
-moz-transform: rotateZ(180deg);
   transition: 0.360s;
 -webkit-transition: 0.360s;
 -moz-transition: 0.360s;
}

.dropdown-items{
   font-weight: 400;
}

.am-container .dropdown-items li a {
   margin-left: 60px;
   font-size: 14px;
   border: 0 !important;
   padding: 10px;
   text-decoration: none;
   display: block;

}



/* Basic Page Layout*/

main h1,
main h2,
main article, main li{
   padding: 10px;
}
article ol,
article ul li{
   margin-left: 30px;

}




/* For Pcs */
@media only screen and (min-width: 480px){
    
 
    
   .am-container{
     width: 500px;
     right: -500px;
}
.am-container.open{
  right: 0;
   top: 0;
   padding: 100px 172px 0px 60px;
   border-left: 2px solid #F58220;
}

     .virtual-page{
      width: 360px;
      position: absolute;
      top: 100px;
      right: 0 !important;
      padding-left: 60px;
      overflow: hidden!important;
    }
     .virtual-header{
       position: absolute;
   }
.light-box,
li.light-box{
    width: 300px;
  background: #262626;
    height: 180px;
   border:0;
   border-radius: 0px;
   box-shadow: 0;
   top: 84px;
   left: 260px;
   margin-top: 0;
   margin-left: 0;
   animation: bounceIn .7s forwards;
}

.light-box img{
   width: 300px;
   height: 180px;
   box-shadow: 0;
}

.dim-overlay{
    display: none !important;
}


.jam{
   overflow: auto;
   -webkit-scrollbar: display: inherit;

}

}/* end for pcs */
ul.ulitem {
    background: #80808026;
    margin-bottom: 2em;
}

.list-item li a:hover{
  color: #F58220;
}
.virtual-page ul li a:hover{
  color: #F58220;
}
.am-container .list-item li:hover{
  color: #F58220;
}


@media only screen and (max-width: 600px){
    
    .toggle-get {
    color: white;
    font-weight: 500;
    font-size: 11px;
}
    
    .floating-get {
    
    width: 12%;
        padding: 22px 14px 20px 5px;
    }
    
    .dropdown, .virtual-page ul li a {
    padding: 6px 10px 6px 26px;
    
}
.am-container {
    width: 100%;
    right: -100%;
}
.am-container.open{
    right: 0;
      top: 0px;
      padding: 20%  10% 0px 6%;
      border-left: 0px  solid #F58220;
      z-index: 99
      background-color:black;
}
.main_head {
    height: auto;
}
.virtual-page {
    width: 360px;
    position: absolute;
    top: 60px;
    right: 0;
    padding-left: 18px;
padding-right: 30px;
    overflow: hidden!important;
    z-index: 999;
}
.has-sub, .list-item li a {
    border-bottom: 0px solid #80808075;
}
.menu-trigger {
    right: 0px;
}
.menu-trigger {
    top: 0px;
}

}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation : landscape) {
    
    .floating-get {
    width: 6%;
    padding: 22px 14px 20px 5px;
}
  .has-sub, .list-item li a {
      font-size: 14px;

  }
  .am-container.open {
    right: 0;
    top: 0;
    padding: 68px  87px 0px 60px;
    border-left: 2px solid #F58220;
}
.virtual-page {
  top: 64px;
padding-left: 30px;
padding-right: 50px;
height: 670px;
background: black;
z-index: 999;
}
.am-container {
    width: 380px;
}
  .dropdown, .virtual-page ul li a {
    padding: 5px 0px 7px 10px;
    font-size: 14px;
}
}
@media only screen and (min-width : 1400px) and (max-width : 1500px) {
    
    .floating-get {
    width: 4%;
    padding: 22px 18px 20px 10px;
}


.has-sub, .list-item li a {
    padding: 20px 10px;
  }
  .dropdown, .virtual-page ul li a {
      padding: 12px 10px 12px 10px;
      display: block;
  }

}


@media only screen and (min-width : 1501px) and (max-width : 1680px) {
    
    .floating-get {
    width: 4%;
    padding: 22px 22px 20px 15px;
}
  .has-sub, .list-item li a {
      padding: 20px 10px;
    }
    .dropdown, .virtual-page ul li a {
    padding: 12px 10px 12px 10px;
    display: block;
}

}

@media only screen and (min-width : 1681px) {
    
    .floating-get {
    width: 4%;
    padding: 22px 18px 20px 10px;
}
  .has-sub, .list-item li a {
      padding: 20px 10px;
    }
    .dropdown, .virtual-page ul li a {
    padding: 12px 10px 12px 10px;
    display: block;
}

}

@media only screen and (min-width: 1920px)
{
.floating-get {
    width: 4%;
    padding: 22px 23px 20px 23px;
}
}
