
  /* topmenu */
  .logo{
	background-size: 128px 128px;
  }
  .logo_shadow{
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    border-radius: 15px;
    width:100px;
  }

  @media(max-width:768px){
    .logo_shadow{
      margin-top:10px;
      width:64px;
    }
  
  }
  #topmenu{
    margin: 0 auto !important;
    position: absolute;
    top: 10px; left: 0; bottom: 0; right: 0;
    height: auto;
    z-index: 4;
	
  }
  #topmenu div{
    height: max-content;
  }
  #topmenu .nav{
		padding-top:10px;

	}
  #topmenu .nav >li{
    transition: border-bottom ease;
    color:white;
    height: max-content;
    border-bottom: 1px solid  rgba(255, 255, 255, .5);
    font-size: 16px;
	transition: 0.2s;
	-webkit-transition: 0.2s;
  }
  #topmenu .nav li:hover{
    cursor: pointer;
    border-bottom: 5px solid  rgba(255, 255, 255, 1);
  }
  #topmenu .nav li a{
    text-decoration-line: none;
    color: inherit;
    font-size:14px;
  }
  #topmenu .nav >li:hover{
    color: rgba(255, 255, 255, .75);
  }
  #topmenu .bar{
    cursor:pointer;
    padding: 5px 15px;
    margin: 20px 0;
    font-size: 30px;
    background-color: #20282d;
    border-radius: 5px;
    color:white;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
  }
  #topmenu .bar:hover{
    color:#85a1b2;
  }
  
  /* submenus */
  li{
  position: relative;
  }

  .submenu{
    width: 250px;
    list-style: none;
    position: absolute;
    left: 0;
    top: 47px;
    background-color: white;
    margin-top:30px;
    padding: 5px;
    border: 2px solid #6699cc;
    border-top-right-radius:15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: none;
    font-size: 12px;
    z-index: 6;
  }
  .show_submenu{
    display: block;
    animation-duration: 0.5s;
    animation-name: show_submenu;
	}
  .submenu li{
    transition: 0.3s background-color;
    -webkit-transition: 0.3s background-color;
    padding: 10px ;
    color: black;
    font-size: 14px; 
    border-bottom: 1px solid #eeeeee !important;
  }
  .submenu .last-li{
    border-bottom: none !important;
  }
  .rounded-top-right{
    border-top-right-radius:10px;
  }
  .rounded-bottom-lr{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .submenu li:hover{
   background-color: #c5d6e7;
  }
  #ProductSubmenu{
    left: 0;
    background-color: white;
  }
  
  /* endsubmenus */

@keyframes show_submenu {
    from { 
      opacity:0.5;
      top: 70px; 
    }
    to   {
      opacity:1;
      top: 47px; 
    }
}


/* side menu */
.sidemenu{
  background-color: #20282d;
  height: 100vh;
  width: 0;
  position: fixed;
  overflow-x: hidden;
  overflow-y: hidden;
  right:0;
  z-index: 102;
  margin: 0!important;
  opacity: 0;
  transition: 0.5s;
}
.sidemenu .close i{
  position: absolute;
  left: 0;
  padding: 20px;
  font-size: 18px;
  color:#dcdcdc;
}
.sidenav{
  right:0;
  width: 100%;
  height: 65%;
  color: #d6cfcf;
  margin-top: 75px;
  padding: 0px 40px 40px 30px;
  overflow:auto; 
  direction: rtl;
}
.sidenav::-webkit-scrollbar {
  transform:scaleX(-1);
  width:10px ;
}

/* Track */
.sidenav::-webkit-scrollbar-track {
  left:100px;
  background: #171b1d; 
  border-radius: 5px;
}

/* Handle */
.sidenav::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #353f45; 
}

/* Handle on hover */
.sidenav::-webkit-scrollbar-thumb:hover {
  background: #3e494f; 
}
.sidenav >li{
  display: block;
  padding: 15px 0px 5px 5px;
  font-size: 20px;
  font-weight:bold;
  justify-content: space-between;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  cursor: pointer;

}
.sidenav li:hover> a{
  color:#85a1b2;
  cursor: pointer;
}

.sidenav >li i{
  position: absolute;
  right: 0;
}

.sidenav .has-subside ul{
  display: none;
}
.sidenav .has-subside ul li{
  font-weight:400;
  position: relative;
  padding-top: 15px;
  font-size: 14px;
}
.rotate{
  transform : rotate(180deg);
  transition-duration: 0.50s;
}
.copyrightside{ 
  position: fixed;
  bottom:0;
  padding: 30px;
  color: #999999;
  width: 100%;
  height: 20%;
  
}






/* shadows */
.shadows{
    position: absolute;
    max-height: 100vh;
    height: inherit;
    z-index: 3;
  }
  #topshadow{
    height: 25%;
    top:0;
    background-image: linear-gradient(rgba(0, 0, 0,0.3),rgba(255, 255, 255, 0));
  }
  #bottomshadow{
    height: 51%;
    bottom:-1px;
    background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(0, 0, 0,0.5));
  }
  /* endShadows */
  
.header-pages{
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.5);
    height: 100vh;
    max-height: 100vh;
    width: 100%;
	background:#000;
	position:relative;
	z-index:1;
}

.header_intro{
    position: absolute;
    top:43% ;
	right:0;
	left:0;
	bottom:0;
	margin-left:auto;
	margin-right:auto;
    z-index: 3;
}
.header_intro p{
	font-size:14px;
	margin-top:10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    line-height: normal;
    color: black;
    border-radius: 18px;
  text-align:justify;
  transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
}
.header_intro p.white_p{
  background-color: rgba(0, 0, 0, 0.2);
  color: #ddd;
}
.header_intro h1, .header-title h1{
	color:white;
  font-weight:bold;
  transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
}
.header-title {
  position: absolute;
  top:50px;
  left:auto;
  margin-left:10px;
  margin-right:auto;
}
.header_intro h2{
  font-size: 30px;
  text-align: left;
	color:white;
  font-weight:bold;
}
.header-img{
  width:auto !important;
  height:auto;
}
@media (max-width:768px){
	.header-img{
	width:40% !important;
    height:auto;
  }
  .header_intro h2{
    font-size: 20px;
    color:white;
    font-weight:bold;
  }
  .header_intro p{
    font-size:12px;
  }
    .header-title {
    top:30px;
  }
  .header-title h1{
    font-size:36px
  }
    
}




.header-color{
    background-image: linear-gradient(#303b84, #303f9f);
    height: 55vh;
    width: 100%;
    background-color: #2F3E92;
}
.header-color-title{
  display: block;
  text-align: center;
  position: relative;
  padding-top: 23vh;
  padding-bottom: 0;
  font-size: 70px;
  font-weight:400;
  color:white;
}
.header-color-subtitle{
  display: block;
  text-align: center;
  position: relative;
  color:white;
  font-weight:400;
}

.header-color-img img{
  max-height: 60vh;
  position: relative;
  margin-top: -25vh;
  margin-bottom: 40px;
  z-index: 10; 
  border-radius: 10px; 
  overflow: hidden;  
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.2);
}
