@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
	font-family: 'poppins' , sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
}
:root{
	--color_Blue:#054691;
	--color_Blue_hover:#032b58a4;
	--color_Dark1: #0e0230fb;
	--color_Dark2: #02024b;
	--color_Light1: #dfdfdf;
	--color_Light2: #c4c4c4;
	--color_user:#a77b03;
	--color_user_dark:#705302;
	--color_shadow:#06d4f8;
	--color_btn:#fa460a;
	--color_menulist:#020838;
}
.point{
	background: var(--color_Blue);
}
.about2{
	display: none;
}
.services2{
	display: none;
}

/*header*/
#header{
    position: fixed;
    z-index: 1000;
    left:0;
    top:0;
    width:100%;
 }
 #header .header{
   width: 100%;
    min-height: 70px;
    background-color:var(--color_Dark1);
 }
.logo{
    width: 8%;
    position: relative;
	left: -7px;
    top:2px;
}
.logo img{
    width: 60px;
}
 .brand{
   position: relative;
    width:100%;
    top:6px;
 }
 #header .brand h1{
    text-decoration: none;
    text-transform: capitalize;
    color:#ece9e9;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
 }
 .aenl{
	display: none;
  }
  .nav-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 0 15px;
 }


/*Slider*/
.sidebar{
	position: fixed;
	top:70px;
	left: 0;
	height: 100%;
	width: 260px;
	background-color:var(--color_Dark1);
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	z-index: 100;
}
.sidebar.close{
	width: 70px;
}
.logo-box{
	height: 60px;
	width: 90%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--color_Light1);
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}
.logo-box:hover{
	color: var(--color_Blue);
}
.logo-box i{
	font-size: 30px;
	height: 50px;
	min-width: 50px;
	text-align: center;
	line-height: 50px;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}
.sidebar.close .logo-box i{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}
.logo-name{
	font-size: 22px;
	font-weight: 600;
}

/*Sidebar List*/

.sidebar-list{
	height: 100%;
	padding: 30px 0 150px 0;
	overflow: auto;
}
.sidebar-list::-webkit-scrollbar{
	display: none;
}
.sidebar-list li{
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}
.sidebar-list li:hover{
	background-color: var(--color_Blue_hover);
}
.sidebar-list li .title{
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	cursor: pointer;
}
.sidebar-list li.active .title{
	background-color: var(--color_Dark1);
}
.sidebar-list li.active .bxs-chevron-down{
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}
.sidebar-list li .title .link{
	display: flex;
	align-items: center;
}
.sidebar-list li .title i{
	height: 60px;
	min-width: 70px;
	font-size: 23px;
	text-align: center;
	line-height: 50px;
	color: var(--color_Light1);
}
.sidebar-list li .title .name{
	font-size: 18px;
	font-weight: 400;
	color: var(--color_Light1);
	text-align: center;
}

/*submenu*/
.sidebar-list li .submenu{
	width: 0;
	height: 0;
	opacity: 0;
	transition: all .1s ease;
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-ms-transition: all .1s ease;
	-o-transition: all .1s ease;
}
.sidebar-list li.dropdown.active .submenu{
	width: unset;
	height: unset;
	opacity: 1;
	display: flex;
	flex-direction: column;
	padding: 0 6px 14px 10px;
	background-color: var(--color_Dark2);
	text-align: center;
}
.submenu .link{
	color: var(--color_Light2);
	font-size: 15px;
	padding: 5px;
	transition:all .2s ease;
	-webkit-transition:all .2s ease;
	-moz-transition:all .2s ease;
	-ms-transition:all .2s ease;
	-o-transition:all .2s ease;
}
.submenu .link:hover{
	color:#fff;
	font-size:15.5px;
}
.submenu-title{
	display: none;
}

/*Submenu Close*/
.sidebar.close .logo-name,
.sidebar.close .title .name,
.sidebar.close .title .bxs-chevron-down
{
	display:none;
}
.sidebar.close .sidebar-list{
	overflow: visible;
}
.sidebar.close .sidebar-list li{
	position: relative;
}
.sidebar.close .sidebar-list li .submenu{
	position: absolute;
	display: flex;
	flex-direction: column;
	left: 100%;
	top:-10px;
	margin-top: 0;
	padding: 10px 20px;
	border-radius: 0 6px 6px 0;
	-webkit-border-radius: 0 6px 6px 0;
	-moz-border-radius: 0 6px 6px 0;
	-ms-border-radius: 0 6px 6px 0;
	-o-border-radius: 0 6px 6px 0;
	height: max-content;
	width: max-content;
	opacity: 0;
	transition: all .1s ease;
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-ms-transition: all .1s ease;
	-o-transition: all .1s ease;
	pointer-events: none;
}
.sidebar.close .sidebar-list li:hover .submenu{
	opacity: 1;
	top:0;
	pointer-events: initial;
	background-color: var(--color_menulist);
}
.sidebar.close .submenu-title{
	display: block;
	font-style: 18px;
	font-weight: bold;
	color: var(--color_Light1);
}
/*home section*/
.home{
	position: relative;
	background-color: var(--color_Dark2);
	left:260px;
	width: calc(100% - 260px);
	height: 100vh;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
}
.sidebar.close ~ .home{
	left: 70px;
	width: calc(100% - 70px);
}
.home .toggle-sidebar{
	position: relative;
	top: 12%;
	height: 60px;
	display: flex;
	align-items: center;
	width:fit-content;
	cursor: pointer;
}
.home .toggle-sidebar i{
	font-size: 35px;
	color: var(--color_Dark1);
	margin-left: 15px;
}
.home .toggle-sidebar .text{
	font-size: 25px;
	color: var(--color_Dark1);
	font-weight: 600;
}

   /*Carousel*/
   .slider{
	position:relative;
	width: 95%;
	height: 86%;
	left: 50%;
	top:8%;
	overflow: hidden;
	transform:translate(-50%,-0%);
	background-color:var(--color_Dark1);
	box-shadow: 0 10px 50px var(--color_shadow);
	-webkit-transform:translate(-50%,-0%);
	-moz-transform:translate(-50%,-0%);
	-ms-transform:translate(-50%,-0%);
	-o-transform:translate(-50%,-0%);
}
#list{
 height: 100%;
 width: max-content;
 margin-top: 50px;
}
.item{
 width: 130px;
 height: 170px;
 background-position: 50% 50%;
 display: inline-block;
 object-fit: cover;
 transition: 0.5s;
 -webkit-transition: 0.5s;
 -moz-transition: 0.5s;
 -ms-transition: 0.5s;
 -o-transition: 0.5s;
 background-size: cover;
 position: absolute;
 z-index: 1;
 top: 80%;
 transform: translate(0,-50%);
 -webkit-transform: translate(0,-50%);
 -moz-transform: translate(0,-50%);
 -ms-transform: translate(0,-50%);
 -o-transform: translate(0,-50%);
 border-radius: 20px;
 -webkit-border-radius: 20px;
 -moz-border-radius: 20px;
 -ms-border-radius: 20px;
 -o-border-radius: 20px;
 box-shadow: 0 30px;
 box-shadow: 0 30px 50px #000;
}

.item:nth-child(1){
 left:0;
 top:0;
 transform: translate(0,0);
 -webkit-transform: translate(0,0);
 -moz-transform: translate(0,0);
 -ms-transform: translate(0,0);
 -o-transform: translate(0,0);
 border-radius: 0;
 -webkit-border-radius: 0;
 -moz-border-radius: 0;
 -ms-border-radius: 0;
 -o-border-radius: 0;
 width:100%;
 height:100%;
 box-shadow: none;
 opacity: 0.8;
}
.item:nth-child(2){
	left:62%;
	opacity: 0.8;
 }
 .item:nth-child(3){
	opacity: 0.8;
	left:76%;
 }
 .item:nth-child(4){
	opacity: 0.8;
	left:90%;
 }
 .item .content{
	position: absolute;
	top:50%;
	left:70px;
	width:350px;
	text-align: left;
	padding: 0;
	color: #fff;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-o-transform: translate(0,-50%);
	display: none;
 }
 .president .content{
	width:90%;
 }
 .item:nth-child(1) .content{
	display: block;
	z-index: 100;
 }
 .item .content .author{
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
 }
 
  .item .content .title,
  .item .content .topic{
	font-weight: bold;
	font-size: 50px;
	list-style: 13px;
 }
 .item .content .des{
	font-size: 25px;
	list-style: 13px;
 }
 .p4{
	font-size: 25px;
	font-family: 'Montserrat', sans-serif;
 }
  .item .content .topic{
	color: #3ad6f1;
 }
 .item .content .button{
	display: grid;
	grid-template-columns: repeat(1, 190px);
	grid-template-rows: 45px;
	margin-top: 20px;
 }
 .item .content button{
	border: none;
	background-color:var(--color_btn);
	letter-spacing: 0.8px;
	font-family:cursive;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
 }
 .item .content button a{
	text-decoration: none;
 }
 .cta{
	color: #fff;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
 }
 .cta:hover{
	color: #fff;
 }
 .item .content button:hover{
	background-color:#d43906;
 }
  .item:nth-child(1) .author,
 .item:nth-child(1) .title,
 .item:nth-child(1) .topic,
 .item:nth-child(1) .des,
 .item:nth-child(1) .button{
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	filter: blur(20px);
	-webkit-filter: blur(20px);
	opacity:0;
	animation: showContent 0.5s 1s linear 1 forwards;
	-webkit-animation: showContent 0.5s 1s linear 1 forwards;
 }
 @keyframes showContent{
	to{
	   opacity: 1;
	   filter: blur(0);
	   -webkit-filter: blur(0);
	   transform: translateY(0);
	   -webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	   -ms-transform: translateY(0);
	   -o-transform: translateY(0);
 }
 }
 .item:nth-child(1) .title{
	animation-delay: 1.2s;
 }
 .item:nth-child(1) .topic{
	animation-delay: 1.5s;
 }
  .item:nth-child(1) .des{
	animation-delay: 1.7s;
 }
 .item:nth-child(1) .button{
	animation-delay: 1.9s;
 }

 .buttons{
	position: absolute;
	bottom:30px;
	z-index: 2222222;
	text-align: center;
	width: 100%;
 }
 .buttons button{
	position: relative;
	width: 50px;
	height:50px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	border: none;
 }
 button:hover{
	background-color:#f1683a;
 }
 .buttons button i{
	color: #000;
 }
 @media screen and (max-width:1100px){
	.item{
	   top: 86%;
	}
	.item:nth-child(2){
	   left:70%;
	   opacity: 0.8;
	}
	.item:nth-child(3){
	   opacity: 0.8;
	   left:90%;
	}
	.item:nth-child(4){
	   opacity: 0.8;
	   left:130%;
	}
	.buttons button{
	   width: 40px;
	   height:40px;
	   top:15px;
	}
	}
	@media screen and (max-width:700px) {
		.link{
			display: none;
		}
		
		.down{
			display: none;
		}
		.services2{
			display: block;
		}
		.services1{
			display: none;
		}
		.about{
		 display: none;
		}
		.about2{
		 display: block;
		}
   .logo img{
      width: 35px;
  }
  .sidebar{
	width: 100%;
}
.item{
   width: 100px;
   height: 120px;
   background-position: 50% 50%;
   top: 88%;
}
.item:nth-child(2){
   left:80%;
   opacity: 0.8;
}
.item:nth-child(3){
   opacity: 0.8;
   left:100%;
}
.item:nth-child(4){
   opacity: 0.8;
   left:130%;
}
.content.p3 .p2{
   font-size: 38px;
}
   .slider .list .item .content{
      padding-right: 0;
   }
 
   .item .content .title,
   .item .content .topic{
	 font-size: 30px;
  }
  .item .content .des{
	 font-size: 19px;
  }
.item .content .button{
   grid-template-columns: repeat(2, 150px);
   grid-template-rows: 40px;
   justify-content: center;
}
.item .content button{
   font-size: 15px;
   font-weight: 500;
}
.cta{
   padding: 8px 0px;
   font-size: 15px;
}
.des2{
   font-size: 20px;
   width:380px;
}
.title2{
   font-size: 20px;
 }

h2{
   font-size: 25px;
}
}
@media screen and (max-width:500px){
	.aenl{
		display: block;
		left: 20px;
		position: relative;
	}
	.aenl1{
		display: none;
	}
.item .content{
	left:0;
	width:100%;
	padding: 20px;
	background-color: rgba(0,0,0,0.4);
 }
 .buttons{
	bottom:50px;
 }
 .c2 .p7 {
	display: none;
}

}
@media screen and (max-width:300px){
 .item .content .button{
	margin-left: 150px;
 }
}

#preloader{
	background: #0e0230fb url(images/logo-trans.png) no-repeat center center;
	background-size: 13%;
	height: 100vh;
	width: 100%;
	position:fixed;
	z-index: 1000;
}
#preloader::after{
	content: 'Please Wait... Site is Loading...';
	position: absolute;
	left:0;
	top:30%;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 20px;
	text-align: center;
	z-index: 1000;
 }
