@charset "utf-8";
 @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
 

/*font-family: 'Mulish', sans-serif;*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font: "Mulish", sans-serif;
	--body-color: #3D3D3D;
	--primary-color: #134094;
	--secondary-color: #FF0000;
	--tertiary-color: #011F56;
	--quaternary-color: #011232;	
	--black: #000;
	--white: #fff;
	--grey: #cccccc;
	--grey-light:#F7F7F7;
	--dark-grey: #636363;
	--font-weight-light:300;
    --font-weight-normal:400;
    --font-weight-semibold:500;
	--font-weight-bold: 700;
	--font-weight-black: 900;
}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 24px;
	font-weight: normal;
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	background: var(--white);
	overflow-x:hidden;
 

}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}
 

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
 
::-webkit-scrollbar-track {
    background-color: var(--white);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--secondary-color);
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--secondary-color);
}

p {
	margin: 0px 0 20px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
.hr:before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 50px;
	height: 4px;
	z-index:2;
	background-color: var(--primary-color)
}
.hr.text-center:before{
	content: '';
	position: absolute;
	top:-1px;
	left:0;
	right:0;
	margin: 0 auto;
	width: 50px;
	height: 2px;
	z-index:2;
	background-color: var(--primary-color)
}
img {
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

a img {
	border: 0;
}
/*********/

:root {
  --size: 1.5rem;
  --rounded: 10px;
}

 

/*-----------text styles------------*/
.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-green {
	color: var(--primary-color) !important;
}

 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

.uppercase {
	text-transform: uppercase;
}

/*-----------background styles------------*/

.bg-primary {
	background: var(--primary-color);
	color:#fff;
}
.bg-secondary {
	background: var(--secondary-color);
	 color:#fff;
}

.bg-tertiary {
	background: var(--tertiary-color);
	color:#fff;
}
.bg-quaternary {
  	background: var(--quaternary-color);
  	color:#fff;
}
.bg-grey {
	background: var(--grey);
 
}
.light-grey {
	background-color:var(--grey-light);
}

.bg-white {
	background: var(--white)
}


/*************** PRELOADER ***************/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--white);
	z-index: 999999;
}

#status {
	width: 100px;
	height:  100px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/moulana-icon.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:100px;
	margin: -50px 0 0 -50px;
}

 

/*************** BACK TO TOP ***************/
 
.column-reverse {
	flex-direction: none;
}

/************LOCOMOTIVE**************/
  
  
 
/*********************************/

.container {
	width: 1410px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	min-height:100vh;
	overflow:auto;
 
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 20px;
	}	
	
.img-style{
	width:100%;
	padding:0 0 0 50px;
	position:relative;
}
.img-style:before{
	width:50%;
	height:50%;
	position:absolute;
	left:0;
	bottom:-50px;
	content:'';
	background: url(../images/donts.png);
	background-color:var(--primary-color);
	z-index:-1;
}
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	/*border-radius: 15px;*/	
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    -webkit-transition:all 300ms ease-in-out;
    -moz-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}
	
	

.hover-effect img {
 	display:block;
  	width:100%;
	-webkit-filter: none;
    filter: none;
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img {
     -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


/*.hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;

}
*/

main{
	margin:0;
	padding:0;
}
section {
	width: 100%;
	display:blocx;
	position: relative;
	 
}
  
 .sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%;
	z-index:2;
}

/*************** HOME PAGE CSS ***************/
 
/*************** FIXED HEADER ***************/

header {
	width: 100%;
	z-index: 999;
	top: 0;
	left: 0px;
	background-color:var(--white);
	display:flex;
	justify-content: space-between;
	align-items: center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	background-color:var(--white);
	/*mix-blend-mode: difference;*/
}
 header.smaller {
	top: 0;
	left: 0px;
	position: fixed;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	-moz-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
 
	
}
 .mobile-logo{
 	display:none;
 }
.logo { 
	padding:0;
}

.logo img {
	width:370px;
	display:block;
}
 
.header {
	
	padding:10px 0;
	display: flex;
	justify-content: space-between;
	position:relative;
	align-items: center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
 header.smaller .header {
 	display:none;
	top:-100px;
 }

.head-group{
 	display: flex;  
	gap:0 20px;
	}
	
 .mobile-info-button{
	 width: 100%;
	 display: none;
	 flex-direction:column;
	 padding:20px 0;
 }
 .inivi-menu{
	 display:none !important;
 	}
 /***********info-button ***********/
 .info-button{
	padding:0;
	display: block;
	position:relative;
	padding:0 0 0 60px;
	font-size:16px;
	line-height:20px;
	font-weight:var(--bold);
}
 .info-button span{
 	font-size:14px;
	color:var(--dark-grey);
 }
 
 .info-button a{ 
	color:var(--black);
}
 	


.info-button i{
   width:46px;
   height:46px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size:16px;
   background-color:var(--white);
   border:1px solid var(--grey);
   color:var(--primary-color);
   text-align:center;
   border-radius: 50%;
   position:absolute;
   top:0;
   left:0;
   	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
  
}
.info-button:hover i{
	border:1px solid var(--primary-color);
	background-color:var(--primary-color);
	color:var(--white);
}



/********************************/

.nav-wrap {
	width:100%;
	display:flex;
	justify-content: center;
	border-top:1px solid var(--grey);
 
}
.nav-wrap-inner {
    justify-content: space-between;
	width:1410px;
	display:flex;
	align-items: center; 
}

/***********serch ***********/


/***********serch ***********/
 .search-bt{
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 }
 
 .search-bt a{
 	width:45px;
	height:45px;
	line-height:45px;
	text-align:center;
	font-size:18px;
	color:var(--black);
	display:block;
	border-radius: 50%;
 }
 
  .search-bt a:hover{ 
	background-color:var(--primary-color);
	color:var(--white);
  }
  
  
  

/*************** search ***************/


.search-wrap {
    margin: 0;
    width: 100%;
    height: auto;
    position: relative;
    /*margin:5px 0 0 25px;*/
    padding: 0 60px 0 0;

}

.search-input {
    width: 100%;
   	border:1px solid var(--grey);
	display:block;
    /*border-radius: 50px;*/
    color:var(--black) !important;
    background-color:var(--white);
    outline: none;
    vertical-align: middle;
    line-height: 60px;
    height: 60px;
    padding: 0 25px;
    font-size: 14px;
    display: block;
 
	
}

.search-button  {
    background-color:var(--primary-color);
    color: #fff;
    width: 60px;
    height: 60px;
    /*border-radius: 50px;*/
    border: 0;
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
 
}

.search-button:hover {
   background-color:var(--tertiary-color);
}
/*******************************/
.link {
	position:relative;
	z-index:3;
}

.link a {
	color: var(--white);
	overflow:hidden;
	font-size: 16px;
	line-height: normal;
	font-weight:var(--font-weight-bold);
	padding: 18px  70px 18px 20px;
	line-height: 14px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	background-image: url(../images/icons/next.svg);
	background-repeat: no-repeat;
	background-position: 90% center;
	background-size:20px;
}

.link a:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	background-color:var(--primary-color);
	z-index:-2;
	content:'';
} 
.link a:after{
	width:4px;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	background-color:var(--secondary-color);
	z-index:-2;
	content:'';
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}  
 .link a:hover:after{
 	width:100%;
 }
.link-bordered{
	padding: 15px 25px 15px 70px !important;
	border:1px solid var(--black);
	border-radius: 50px;
	background-position: 20px center !important;
}
 
.section-title { 
	font-size: 14px;
	font-weight:400; 
	color: var(--body-color);
	position: relative;	
	margin:0 0 25px 0;
	line-height:normal;
	
}


.section-title span {
	display:inline-block;
	padding:15px 0px 15px 20px;
	position:relative;
	border-bottom:1px solid var(--grey);
	line-height:normal;
	text-transform:uppercase;
	letter-spacing:6px;
}

.section-title span:before {
	content: '';
	position: absolute;
	top:50%;
	margin-top:-3px;
	left:0;
	width: 7px;
	height: 7px;
	background-color: var(--secondary-color);
	border-radius: 50%;
}
.caps{
	text-transform:uppercase;
}
.heading {
	font-size: 48px;
	line-height: normal;
	color: var(--black);
	font-weight:var(--font-weight-bold);
 
}
.heading span {
	color: var(--primary-color);
	font-weight:700;
}

.subheading {
	font-size: 26px;
	font-weight:var(--font-weight-bold);
	line-height:normal;
	color:var(--secondary-color);
	 
}
 
.subtitle{
	font-size: 30px;
	line-height:40px;
	font-weight:normal; 
}

.dec-title{
	position:relative;
	color:var(--secondary-color);
	font-size:16px;
	line-height:normal;
	font-weight:var(--font-weight-bold);
	padding:0 0 0 60px;
	margin:0 0 10px 0;
	
}
.dec-title:before{
	width:40px;
	height:2px;
	position:absolute;
	left:0;
	top:50%;
	content:'';
	background-color:var(--grey);
}
/*******intro***********/

.grid-tile{
	width:100%;
    flex-wrap: wrap;
	display:flex;
}
.intro-left, .intro-right{
	flex: 0 0 33%;
	padding:8px;
}
.intro-right{
	flex: 0 0 67%;
}

.since{
	width:100%;	 
	padding:40px 40px;
	background-color:var(--secondary-color);
	color:var(--white);
	display: flex;
	flex-wrap: wrap; 
	justify-content: center;
	margin-bottom:16px;	 
}

.since div{
	width:120px;
	 
}
.since p{
	font-size:18px;
	display:inline-block;
	line-height:normal;
	margin-bottom:15px;
	position:relative;
	width:100%;

}
.since p:after{
	width:100%;
	height:1px;
	background-color:var(--white);
	position:absolute;
	right:0;
	top:50%;
	z-index:1;
	content:'';
}
.since p span{
	background-color:var(--secondary-color);
	position:relative;
	z-index:2;
	display:inline-block;
	padding-right:10px;
}

 .since h3{
	font-size:50px;
	font-weight:800;
	margin:0;
	padding:0;
}

.mission-box ul.list li {
	font-size: 16px;
}
.mission-box ul.list li:before {
	color: var(--secondary-color);
}


/*********inde form*************/
.index-form-wrap{
	width:100%;
	position:relative;	
}
.index-form{
	padding:20px 50px 20px 120px;
	width:510px;
	position:absolute;
	color:var(--white);
	right:0;
	top:-200px;
	z-index:2;
	background-color:var(--secondary-color);
	flex: 0 0 36%;
}
.index-form .one-flex-col{
 
}
.index-form .v-text{
	width:70px;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	font-size:22px;
	line-height:normal;
	background-color:var(--primary-color);
	padding:20px;
	margin:0;
	text-align:center;
	text-transform:uppercase;
	 writing-mode: vertical-rl; 
	font-weight:var(--font-weight-bold);
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
 
}

/**************course************/
 
.course-box-img{
	position:absolute;
	bottom:0;
	right:0;
	z-index:2;
	width:100%;
	}
.symbols{
	background-image: url(../images/symbols.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}

.tint{
	width:100%;
	height:250px;
	position:absolute;
	left:0;
	bottom:0;
	z-index:-1;
	background-color:var(--grey-light);
}
/****************************/
  
.pos-rel{
	position:relative;
}

.level-up{
	position:relative;
	z-index:2;
}
.invi{}
    

/*******funfacts***********/

.funfacts{
	position:relative;
	z-index:2;
	width:100%;
	 
     
}
 .funfacts ul{
    display: flex; 
	flex-wrap: wrap;
	list-style:none;
	margin:0;
	padding:0;
	width:100%;			 
}

.funfacts ul li{
	width:25%;
	margin:0;
	padding:40px 40px 40px 120px;
	display:flex;
	flex-direction:column;
	border-right:1px solid var(--grey);	 	
	background-repeat: no-repeat;
	background-position: 30px  40px;
	background-size:80px;
}
.funfacts ul li:nth-child(1) {
	background-image: url(../images/icons/1.svg);
	}
.funfacts ul li:nth-child(2) {
	background-image: url(../images/icons/2.svg);
	}
.funfacts ul li:nth-child(3) {
	background-image: url(../images/icons/3.svg);
	}
.funfacts ul li:nth-child(4) {
	background-image: url(../images/icons/4.svg);
	border-right:0;
	}		
.funfacts ul li:last-child{
	border-right:0;
	}

.funfacts ul li h2{
	font-size:70px;
	line-height:normal;
	color:var(--primary-color);
	margin:0;
	font-weight:var(--font-weight-black);
	 
}

.funfacts ul li h3{
	font-size:18px;
	line-height:normal;
	margin:0;
	font-weight:var(--font-weight-medium);
}
 
/*******funfacts end***********/

 
/*************** brand-logos***************/

.brand-logos{ 
    width: 100%;
    display: flex;
	justify-content: center;
 
}
.brand-logos ul{
	width:100%;
	display: flex;
	flex-wrap: wrap; 
	margin:0;
	padding:0;
	list-style:none;
	justify-content: center;
	gap:0 4%;
 
}
.brand-logos ul li{
	flex: 0 0 16.8%;
	padding:0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	text-align:center;
	justify-content: center; 
	border-bottom:2px solid var(--black);
}
 .brand-logos ul li:hover{
	 
}
  .brand-logos ul li img{   
    width:100%;
		-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
  }
 
  .brand-logos ul li:hover img{
    filter: grayscale(100%);  
  }



/****************BRAND SCROLLING SETTINGS***************/

.brandscroll{
	background-color:var(--white);
	position:relative;
	z-index:2;
	margin-top:-40px;
	padding:0 40px;
}


/****************BRAND SCROLLING SETTINGS***************/
 
/********************/
.carousel-outer{
	border-top:1px solid var(--grey);
	border-bottom:1px solid var(--grey);
 
	}
	
  
 .shadow-box{
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
	}
	
/*--------------------------------scroll-------------*/

.sideScroll-wrap{
 background-color:var(--primary-color);
 width:100%;
 display:flex;
 overflow:hidden;
 }

.sideScroll {
  
  white-space: nowrap;
  position: relative;
  color: white;
  display: inline-block;
  animation: sideScroll 20s linear infinite;
  padding:15px 0;
 
}

.sideScroll p{
  font-size: 22px;
  line-height:22px;
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  margin:0;
}
.sideScroll p .sep {
	font-size: 22px;
	line-height:22px;
	display:inline-block;
	width:40px;
	text-align:center;
}

@keyframes sideScroll {
  100% {
    transform: translateX(-2000px);
  }
}

.sep{
	font-size: 70px;
	line-height: 59px;
	font-weight: 300;
	color: var(--white);
	width: 30px;/* height: 5px; */
	overflow: hidden;margin-top: -5px;}

.sidescroll-row{
    overflow: hidden;
    background-color: var(--dark-grey);
    padding: 1px 0;
}

/**********/


 /*.rotating-circle{*/
	/*width:160px;*/
	/*height:160px;*/
	/*display:inline-block;*/
	/*background-color:var(--primary-color);*/
	/*position:absolute;*/
	/*right:40px;*/
	/*top:40px;*/
	/*z-index:2;*/
	/*border-radius:50%;*/
 
/*}*/
/*.rotating-circle:after {*/
/*	width:100%;*/
/*	height:100%;*/
/*	position:absolute;*/
/*	left:0;*/
/*	top:0;*/
/*	content:'';*/
	/*background-image:url(../images/rotation-text.svg);*/
/*	background-repeat: no-repeat;*/
/*	background-position: center  center;*/
/*	-moz-background-size: cover;*/
/*	-webkit-background-size: cover;*/
/*	-o-background-size: cover;*/
/*	background-size: cover;*/
/*	-webkit-animation: rotation 20s infinite linear;*/

}
/*.rotating-circle:before{*/
/*	width:100%;*/
/*	height:100%;*/
/*	position:absolute;*/
/*	left:0;*/
/*	top:0;*/
/*	content:'';*/
/*	z-index:6;*/
	/*background-image:url(../images/moulana-icon.svg);*/
/*	background-repeat: no-repeat;*/
/*	background-position: center  center;*/
/*	border-radius:50%;*/
	/*-webkit-animation: rotation2 20s infinite linear;*/
/*	background-size:70%;*/
/*}*/
@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}

@-webkit-keyframes rotation2 {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(-359deg);
		}
}

 
.sticky{ position: sticky; top: 90px;}
 /**********************news**********************/
 
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 0 110px;
	 
}
.iconic p:last-child{
	margin:0;
}
.iconic h2{
	font-size:20px;
	margin:0 0 15px 0;
	line-height:30px;
	color:var(--primary-color);
 
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	color:var(--white);
	position:absolute;
	left:0;
	top:-5px;	
	width:80px;
	height:80px;
	padding:10px;
	border-radius:50%;
	background-color:var(--secondary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--primary-color);
}
.webicon .material-symbols-outlined {
	font-size:32px;
	}
/**********************news**********************/
 .display-style{
	background-color:var(--white);	 
	box-shadow: 0 15px 80px 0 rgba(0,0,0,0.17);
	padding:25px;
} 
.display-style-desc{
    padding: 40px;
}
.date{
    font-size: 14px;
	color:#666;
	margin:0 0 10px 0;
 
}
.date i{
	margin:0 10px 0 0;
}
.news-desc h2{
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 20px;
  color: var(--body-color);
  font-family:var(--heading-font);
 
}
.news-desc p:last-child{
    margin-bottom:0;
}
.news-desc a{
	 color: var(--body-color);
}

/*****************/
.flex-gap-1{
	gap:1%;
}
.flex-gap-2{
	gap:2.5%;
}
.faculty-single{
	flex:0 0 23%;
	border:1px solid #ccc;
	padding: 25px;
	margin-bottom: 2%;
}
.faculty-cont{
	padding: 25px 0 0 0 ;
	text-align: center;
}
.faculty-cont h3{
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
margin-bottom: 0;
	color: var(--primary-color);
}
.faculty-cont h4{
	font-size: 16px;
	line-height: 18px;
	color: var(--secondary-color);
}
.faculty-cont p{
font-size: 16px;
line-height: 20px;
margin-bottom: 10px;
}

p.small{
	font-size: 14px;
	line-height: 14px;
	margin-bottom: 5px;
}

.image-box{
    padding-right:30px;
    padding-bottom:30px;
    position: relative;
    width: 100%;
}
.stickybar{
    position: sticky !important;
    top: 120px;
}

.image-box .overlay-effect2{
    border-radius: 0px;
    

    }
.image-box:after{
    content: '';
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 46%;
    height: 80%;
    background: #333;
    z-index: -1;
    color: white;
    background: repeating-linear-gradient(-45deg, #f6b2b2, #f6b2b2 2px, #fff 1px, #fff 7px);
    }

    .highlight-text{
        font-size: 20px;
        font-weight: 500;
        line-height: 25px;
    }
   .activities-sigle{
flex:0 0 31.5%;
margin-bottom: 2%;
   }
   .cntbox{
   	padding: 25px 0 0 0;
   }
 .cntbox h3{
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
margin-bottom: 10px;
	color: var(--primary-color);
}
.cntbox h4{
	font-size: 16px;
	line-height: 18px;
	color: var(--secondary-color);
}
.cntbox p{
font-size: 16px;
line-height: 20px;
margin-bottom: 10px;
}
.facilities-sigle{
	flex:0 0 23%;
	margin-bottom: 2%;
	padding: 10px;
}
.facilities-sigle .cntbox {
    padding: 25px 0 15px 0;
}
.gallery-single{
	flex:0 0 23%;
	margin-bottom: 2%;
}
.gutter{
	padding: 10px;
}
/*****************/
.google-map{
	width:100%;
	height:450px;
	display:block;
	border:0;
	outline:none;
	overflow:hidden;
}



/**************************/

.floating-button{
	position:fixed;
	top:50%;
	right:0;
	width:55px;
	height:240px;
	margin-top:-120px;
	z-index:9;
	
}
.floating-button a{
	border-radius: 0 10px  10px  0;
	font-size:18px;
	line-height:18px;
	background-color:var(--primary-color);
	color:var(--white);
	padding:20px;
	margin:0;
	text-align:center;
	text-transform:uppercase;
	writing-mode: vertical-rl; 
	font-weight:var(--font-weight-bold);
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.floating-button a:hover{
	background-color:var(--secondary-color);
	
}
.floating-button a i{
	font-size:14px;
	transform: rotate(-90deg);
	 
}


/*************** footer CSS ***************/

 
footer {
	padding:80px 0;	 
	font-size:16px;
	border-top:1px solid var(--grey);
}

footer a, .footer-bottom  a, .footer-col a {
	color:var(--body-color);
}
.footer a:hover, .footer-bottom  a:hover, .footer-col a:hover {
	color:var(--secondary-color);
}
.footer-logo{}
.footer-logo img{
	width:300px;
	display:block;
	 
}

.footer-col { 
		 
}
 
 
footer p{
	margin:5px 0;
} 
 
  
/***********social ***********/

.social {
 	display: flex;
	align-items: center;
	gap:5px;
	justify-content: space-between;
	 
}

.social a  {
	width:45px;
	height:45px;
	text-align:center;
	line-height:45px;
	font-size:18px;
	border-radius: 50%;
	color:var(--white);
	padding:0;
	margin:0;
	background-color:var(--secondary-color);
}

.social a:hover  {
	color:var(--white);
	background-color:var(--primary-color);
}
 
.copy {
	 
}

 
 
 
 
 
 
.add{
	width:100%;
	position:relative;
	padding:0 0 20px 60px;
	min-height:40px;
}

.add i{
	width:37px;
	height:37px;
	line-height:37px;
	background-color:var(--white);
	color:var(--primary-color);
	font-size:16px;
	margin:0;
	border-radius: 50%;
	position:absolute;
	left:0;
	top:4px;
	text-align:center;
	
}

/******************************/
 


 
 
ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
 
 
 
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}
 

 

  
/*****************************/



.table-div { 
	overflow-x:auto;
	margin-bottom: 50px;
	}
.table-div td {
  text-transform: uppercase;
}
.table-div h4{
	font-size:20px;
	color:var(--secondary-color);
	font-family:var(--heading-font);
	text-transform:uppercase;
}
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	}
 
/************************/
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 

/************************/


.facility-member-table {
    width: 80%;
    overflow-x: auto;
    margin: 0 auto;
}
.facility-member-table table {
	width: 100%;
}
.facility-member-table td {
  /* border: 1px solid #000; */
 padding: 12px 15px !important;
}
.facility-member-table th {
  /* border: 1px solid #000; */
    padding: 12px 15px !important;
}
.facility-member-table tr:nth-child(even){background-color: #f2f2f2;}
.facility-member-table tr:hover {background-color: #dddd !important;}
.facility-member-table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--primary-color);
  color: white;
}
.facility-member-table  tr:nth-of-type(odd) {
    background: #fff;
}
.facility-member-table tr td:nth-child(02) {
    font-weight: 800;
}
.facility-member-table tr td:nth-child(01) {
    width: 100px;
}


.mision-vision-box p,
.mision-vision-box .list li {
	font-size: 16px;
}
.fs-16 {
	font-size: 16px;
}
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:350px;
	overflow:hidden;
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: center;
	text-align:center;
	background: url(../images/parallax/banner1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	 
}

.banner h2 {
	color: var(--white);
	font-weight: normal;
	font-family:var(--font-bold);
	line-height: normal;
	margin:0;
	padding:0;
	font-size:30px;
	position:relative;
	z-index:4;
}

/************/
  .breadcrumb {
    width: 100%;
    display: flex;
	color:var(--white);	
	position:relative;
	padding:20px 0 0 0;
}
 

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
	padding:0;
	width:100%;
	justify-content: center;
     
 
}
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    content: " → ";
 
}
 .breadcrumb a{
    color:var(--white);	
}
 .breadcrumb a:hover{
   color:rgba(255, 255 ,255, 0.7);
 
}
 .breadcrumb  span{
 color:var(--white);	
}

 
/*.banner:after{ position: absolute; content: ''; width: 100%; height: 100%; left: 0px; top: 0px; background-color:#000; opacity: .5; }*/



 
 
/*************** JARALLAX ***************/
.jarallax, .cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
} 

 
.bg1 {
	background: url(../images/parallax/bg1.jpg);
}

.bg2 {
	background: url(../images/parallax/bg2.jpg);
}

.bg3 {
	background: url(../images/parallax/bg3.jpg);
}


/*********file chosen style**************/

input.file{
    display: none;
	}


.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
	width: 100%;
    border: 0;
    display: inline-block;
    padding: 14px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 1px solid var(--primary-color);

}
.select-box {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/icons/icon5.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

/**********forms**************/
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}


.fieldset {
	width: 100%;
	padding:20px 0;
	background-color: none;
	background-color: transparent;
	display: block;
	border:0 !important;
	box-shadow: 0 1px 0 0 #000;
	margin: 0;
	color: var(--body-color);
	font-size: 16px;
 
}

.index-form .fieldset {
	box-shadow: 0 1px 0 0 #fff;
	color: var(--white) !important;
}
.index-form .sendbutton  {
	background-color: var(--secondary-color);
}
.sendbutton {
	width: auto;
	height: auto;
	border: 0;
	outline: 0;
	margin: 0;
	display: inline-block;
	color:var(--white);
	font-size: 20px;
	cursor: pointer;
	vertical-align: top;
	padding: 15px 30px;
	text-align: center;
	background-color: var(--primary-color);
	text-transform: uppercase;
	font-weight: normal;
	font-family:var(--heading-font);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

.sendbutton:hover {	
	background-color: var(--primary-color);
}

.select-box {
	appearance: none;
	-webkit-appearance: none;
	background-image: url(../images/icons/icon5.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 14px;
	padding: 18px 0;
}
 

::-webkit-input-placeholder {
	color:var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}

/*********************/
 
 
.index-form ::-webkit-input-placeholder {
	color:var(--white);
}

.index-form :-moz-placeholder {
	/* Firefox 18- */
	color: var(--white);
}

.index-form ::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--white);
}

.index-form :-ms-input-placeholder {
	color: var(--white);
}


.contact-form-inner form.wpcf7-form.init {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 3.5%;
}
.contact-form-inner form.wpcf7-form.init .one-flex-col textarea {
	height:136px;
}
 

/************************************* 1410px *************************************/
@media only screen and (max-width: 1410px) {
	.container {
		width: 100%;
		padding:0 20px;
	}
	
	
header,
header.smaller {
	padding:0;
	background-color:var(--white);
	min-height:50px;

}
 

}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1200px) {
 
 .nav-wrap-inner {
    width: 100%;
    padding: 0 20px;
}
 .facility-member-table {
    width: 100%;
}

}

 

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {
 .logo  {
 	width:150px;
}
.logo img, .mobile-logo img {
	width:100%;
	}
 header .mobile-logo{
 	width:190px;
	display:none;
	
 }
 header.smaller  .mobile-logo{
 	display:block;
	padding:10px 20px 0 20px;
 }
 
.nav-wrap {
	width:100px;
	display:flex;
	position:absolute;
	top:5px;
	right:0;
	border-top:0;
	padding-right:20px;
 
 
	 
}
 
.nav-wrap-inner {
	display:flex;
	align-items: center; 
	flex-direction: row-reverse;

}
.head-group{
	display:none;
	}
 
  .mobile-info-button{	 
	 display: flex;
	 padding:20px;
 } 
  .info-button{ 
	padding:10px 0 10px 60px;
	width:100%;
	border-bottom:1px solid var(--grey);
 
}
 .info-button i{
   width:40px;
   height:40px;
   font-size:14px;   
   top:10px; 
} 
 .inivi-menu{
	 display:block !important;
 	}

 
.funfacts{
	margin:40px 0;
}
 
.funfacts ul li{
	width:50%;
	padding:90px 20px 20px 20px;
	margin:-1px 0 0 -1px;
	border:1px solid var(--grey) !important;
	text-align:center;
	background-size:70px;
	background-position: center 20px;
 
}

 
.funfacts ul li h2{
	font-size:30px;
	 
}	
 
.funfacts ul li h3{
	font-size:16px;
	 
}
.brand-logos ul li{
	flex: 0 0 31%;
}
 
.grid-tile{
	width:100%;
    flex-wrap: wrap;
	display:flex;
}
.index-form-wrap{
	padding:20px 0;
}
.index-form{
	padding:20px 20px 20px 100px;
	width:100%;
	position:relative;
	color:var(--white);
	right:auto;
	top:auto; 
 
}
.faculty-single {
    flex: 0 0 31.5%;
    }
    .facilities-sigle {
    flex: 0 0 31.5%;
}
.gallery-single {
    flex: 0 0 31.5%;
    margin-bottom: 2%;
}
}

/************************************* 767px *************************************/
@media only screen and (max-width: 767px) {

body{
	font-size:14px;
}

.heading {
  font-size: 30px;
 
}
  
  
.column-reverse {
	flex-direction: column-reverse;
	}

hr {
	margin: 20px 0;

	}
	

.banner { 
	 height: 150px;
	}

.link a {
	padding: 10px 40px 10px 15px;
	line-height: 12px;
	font-size:12px;
	background-repeat: no-repeat;
	background-position:90% center;
 
}
 
footer {
	padding:20px 0 0 0;
	background-image:none;

}
 	
.footer-col { 
	padding:10px;
	width:100%;
 
} 
 .social {
	justify-content: start;
	 
}
.footer-logo img{
	width:200px;
 
	 
}

 .scroll-head{
	padding:10px 20px;
	font-size:18px;
	
 
}
 .scrolling-text-wrap {
    width:100%;
	position:relative;
	left:auto;
	bottom:auto;
	display:block;
}
.scroll h2 {
  font-size: 14px;
  padding:15px 20px;
  background: url(../images/donts/png);
  background-color:var(--primary-color);
  color:var(--white);
}

.RightToLeft {
  animation: RightToLeft 8s infinite linear;
}
 

 .banner h2{
 	font-size:18px;
 }
 
.head-style{
	padding:15px 20px;
	font-size:14px;
}
.heading-big{
	font-size:30px;
}


 .flex-grid-four {
	gap:30px 1%;
}


.flex-grid-four .col {
  flex: 0 0 49%;
 
}


 
 

.intro-left{
	position:absolute;
	left:20px;
	top:24px;
	z-index:2;
	padding:0;
}
 
 .intro-right{
	flex: 0 0 100%;
	padding:0;
}
.intro-right{
	flex: 0 0  100%;
}
.invi{
	display:none;
}

.since{
	width:100px;
	padding:20px;
	margin-bottom:0; 
}
.since div{
	width:100px;
}
 .since h3{
	font-size:30px;
	 
}
.symbols{
	background-image: none;
 
}
.faculty-single {
    flex: 0 0 48%;
    }
    .facilities-sigle {
    flex: 0 0 48%;
}
.sticky{     position: initial;}
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
 .rotating-circle{
	display: none;

 }
.subtitle{
 	font-size:24px;
	line-height:34px;
 }
 

 .iconic{
	padding:0 0 20px 90px;
	 
}

.webicon{	
	width:60px;
	height:60px;
	padding:10px;
	top:0;
 
}	
 
 .brandscroll{
	margin-top:auto;
	padding:0 20px;
} 



/****************BRAND SCROLLING SETTINGS***************/

.news-home{
	border:1px solid var(--grey);
	 
}

 .news-head {
	flex: 0 0 100%;
	border-bottom:1px solid var(--grey);
	border-right:0;
	padding:10px 0;
 
} 
  .news-content {
	flex: 0 0 100%;
	padding:20px;
	gap:0;
	align-items: flex-start;
	flex-direction:column;
} 
 .news-head span{
 	font-size:30px;
	margin-right:20px;
	vertical-align:middle;
	color: var(--body-color);
 }
 .schedule{
	vertical-align:middle;
	padding-bottom:20px;
	}
	
 
  .news-wrap{
  	flex-grow: none;
	padding-bottom:20px;
}
.facility-member-table tr td:nth-child(01) {
    width: 75px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}
.footer-col {
	text-align: center;
}
.social {
	justify-content: center;	
}
footer p {
    margin: 10px 0;
    font-size: 14px;
}

}

/************************************* 575px *************************************/
@media only screen and (max-width: 575px) {
	 
 
 .faculty-single {
    flex: 0 0 100%;
    padding: 15px;
    margin-bottom: 7%;
}
.facilities-sigle {
    flex: 0 0 100%;
}
.gallery-single {
    flex: 0 0 48%;
    margin-bottom: 2%;
}
}
/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {}
/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}