 
  
@charset "utf-8";
 @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
 
 
@font-face {
    font-family: 'ITCAvantGardeStdBk';
    src: url('../onts/ITCAvantGardeStdBk.eot');
    src: url('../fonts/ITCAvantGardeStdBk.eot') format('embedded-opentype'),
         url('../fonts/ITCAvantGardeStdBk.woff2') format('woff2'),
         url('../fonts/ITCAvantGardeStdBk.woff') format('woff'),
         url('../fonts/ITCAvantGardeStdBk.ttf') format('truetype'),
         url('../fonts/ITCAvantGardeStdBk.svg#ITCAvantGardeStdBk') format('svg');
}


@font-face {
    font-family: 'ITCAvantGardeStdMd';
    src: url('../fonts/ITCAvantGardeStdMd.eot');
    src: url('../fonts/ITCAvantGardeStdMd.eot') format('embedded-opentype'),
         url('../fonts/ITCAvantGardeStdMd.woff2') format('woff2'),
         url('../fonts/ITCAvantGardeStdMd.woff') format('woff'),
         url('../fonts/ITCAvantGardeStdMd.ttf') format('truetype'),
         url('../fonts/ITCAvantGardeStdMd.svg#ITCAvantGardeStdMd') format('svg');
}

@font-face {
    font-family: 'ITCAvantGardeStdDemi';
    src: url('../fonts/ITCAvantGardeStdDemi.eot');
    src: url('../fonts/ITCAvantGardeStdDemi.eot') format('embedded-opentype'),
         url('../fonts/ITCAvantGardeStdDemi.woff2') format('woff2'),
         url('../fonts/ITCAvantGardeStdDemi.woff') format('woff'),
         url('../fonts/ITCAvantGardeStdDemi.ttf') format('truetype'),
         url('../fonts/ITCAvantGardeStdDemi.svg#ITCAvantGardeStdDemi') format('svg');
}

@font-face {
    font-family: 'ITCAvantGardeStdBold';
    src: url('../fonts/ITCAvantGardeStdBold.eot');
    src: url('../fonts/ITCAvantGardeStdBold.eot') format('embedded-opentype'),
         url('../fonts/ITCAvantGardeStdBold.woff2') format('woff2'),
         url('../fonts/ITCAvantGardeStdBold.woff') format('woff'),
         url('../fonts/ITCAvantGardeStdBold.ttf') format('truetype'),
         url('../fonts/ITCAvantGardeStdBold.svg#ITCAvantGardeStdBold') format('svg');
}


/*************** DEFAULT CSS ***************/
 :root {
     --body-font: 'ITCAvantGardeStdMd';
     --body-font-Size: 1em;
     --body-color: #000;
     --primary-color: #083478;
     --secondary-color: #08a196;
     --black: #000;
     --white: #fff;
     --grey: #d5d6d9;
	 --grey-dark: #9D9D9D;
	 --grey-light: #EDEDED;
	  --grey-bluish:#F0F8FD;
     --heading-font: 'ITCAvantGardeStdBold';
	 --book-font: 'ITCAvantGardeStdBk';
     --demi-font: 'ITCAvantGardeStdDemi';
}
 body{
     font-family: var(--body-font);
     font-size:var(--body-font-Size);
     font-style: normal;
     line-height: 24px;
     font-weight:400;
     color: var(--body-color);
     text-decoration: none;
     margin:0px;
     -webkit-font-smoothing: antialiased;
     padding:0;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

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

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

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

::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(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
	font-size: 100%;
 
}

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

.hr {
	margin: 20px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
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;
}

/*-----------text styles------------*/


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

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

.text-primary {
	color: var(--primary-color) !important;
}
  
 .text-secondary {
	color: var(--primary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

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

 

/*-----------background styles------------*/
.corner-round{
	overflow:hidden;
	border-radius:12px;
}
.bg-gradient{
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	color:#fff;
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color) !important;	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
  color:#fff;
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: 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: 200px;
	height: 200px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/TMM-Academy-Logo.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:50%;
	margin: -100px 0 0 -100px;
}

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

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

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius:12px;
	}	
 .split-texture{
	background-image: url(../images/texture.png);
	width:25%;
	height:100%;
	position:absolute;
	top:0;
	right:0;
	z-index:-1;
}
/*************HOVER EFFECT*******/

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

 .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;

}
 
*/
 

section {
	width: 100%;
	display:block;
	position: relative;
}

.section-spacing{
	 padding:100px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}

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

 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:15px 0;
	 z-index:5;
	 background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.7)); 
	 -webkit-transition: all 300ms ease-in-out;
	 -moz-transition: all 300ms ease-in-out;
	 transition: all 300ms ease-in-out;
}

 header.smaller {
	padding:10px 0;
	position: fixed;
	background-image:none;
	background-color:var(--primary-color);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
 
 
.logo { 
	width:200px;
	position:relative;
	transition: all 0.4s ease;
 
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:100px;
	 
}
  
 .nav-group{
  	display: flex;
    flex-wrap: wrap; 
	column-gap: .5em;
	align-items: center;
	} 
 
 
.apply-bt{} 
.apply-bt a{
	padding:15px 20px;
	background-color:var(--white);
	color:var(--primary-color);
	font-size:12px;
	line-height:normal;
	border-radius: 50px;
	font-family:var(--demi-font);
	text-transform:uppercase;
} 
.apply-bt a:hover{
	color:var(--secondary-color);
}
.apply-bt a i{
	transform: rotate(-45deg);
	margin-left:20px;
	font-size:20px;
	position:relative;
	top:4px;
	transition: all 0.4s ease;
} 
.apply-bt a:hover i{  
 	 transform: rotate(0deg);
  }
  .trust-head-logo{
    padding: 10px;
    border-radius: 10px;
    background-color: var(--white);
    line-height: 0;
}
.trust-head-logo img{
    width: 160px;
}

/***********social ***********/
 .slide-bt{}
  .slide-bt a{
	  background-color:#00FFFF;
	  display:inline-block;
	  padding:20px 30px;
	  font-family:var(--demi-font);
	  font-size:16px;
	  color:var(--primary-color);
	  border-radius: 50px;
	  
  }

  
  .slide-bt a:hover{
  	background-color:var(--primary-color);
	color:var(--white);
  } 
   .slide-bt a i{
  	margin-left:10px;
  } 
  
  
.link, .link-outline {}

.link a, .link-outline a {
	
	color:var(--white);
	font-size: 14px; 
	padding: 15px 50px  15px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border-radius: 50px;
	background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));
	transition: all 0.4s ease;
	font-family:var(--demi-font);
	
	 
}

.link a:before{
	width:30px;
	height:30px;
	position:absolute;		 
	top:10px;
	right:10px;
	content:'';
	z-index:2;
	transform: rotate(-45deg);
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:18px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;	
} 
 
.link a:hover:before{
	transform: rotate(0deg); 
	 
}
 
.link a:hover { 		 
   background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
} 

 .link-outline a {
 	background-image:none;
	border:1px solid var(--primary-color);
	color:var(--black);
	font-size:18px;
	font-family:var(--font-demi);
	padding: 15px 60px  15px 40px;
 }
 .link-outline a:before{
 	background-image: url(../images/icons/arrow-black.svg);
 }
  .link-outline a:hover{
  	color:var(--primary-color);
	background-image:none;
	background-color:var(--white);
	border:1px solid var(--white);
	}
/**************************/

.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--heading-font);
	
 }
 
.heading{
	font-size:46px;
	line-height:normal;
	 background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}
.heading span{ 
	color:var(--secondary-color);
	
}
.subheading {
	font-size: 30px;
	line-height:normal;
}
 
.subtitle{
	font-size: 22px;
	line-height:38px;
 
}
.bold, strong{
	font-weight:var(--font-bold);
}

.section-title{
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	font-size:16px;
	line-height:normal;
	color:var(--black);
	position:relative;
	margin-bottom:20px;	 
	
}
.section-title .icon{
	width:48px;
	height:48px;
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color:var(--white);
	font-size:16px;
	margin-right:15px;
	text-align:center;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/****************************/
  
.pos-relative{
	position:relative;
}
   
 
  

/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
  background-color:#EEEEEE;
  padding:25px 0;
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 44px;
  line-height:44px;
  color: #92ADC1;
  font-family:var(--book-font);
  margin:0;
}

.scroll h2 span{
	font-family:var(--heading-font);
	display:inline-block;
	margin:0 15px;
	transition: all 0.4s ease;
	}

.scroll h2 span:hover{
	color:var(--secondary-color);
	}
.RightToLeft {
   animation: RightToLeft 20s infinite linear;
}

/***********/
 
/*********/
@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}


/*******intro***********/
.intro-wrap{
  	width:100%;
	overflow:hidden;
	border-radius: 12px;
	background-color:var(--primary-color);
  }
  .shadow-layer{
 	 	width:100%;
  		height:42px;
		background-repeat: no-repeat;
		background-position: center top;
		-moz-background-size: cover;
		-webkit-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		background-image: url(../images/shadow.png);
		background-size:100%;
  }
  
 .strip{
 	background-color:#DBFFFF;
	width:100%;
	height:170px;
	position:absolute;
	left:0;
	bottom:0;
	z-index:-1;
 }
  .bg-light-green{
 	background-color:#DBFFFF;
 
 }
/*******funfacts***********/


.funfacts {
	width:100%;
	position:relative;
	z-index:2;
	border-top:10px solid var(--secondary-color);
}
 
.funfacts ul{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	list-style:none;
	margin:0;
	padding:40px 0;
} 

.funfacts ul li{
	width:33.33333333333333%;
	display: flex;
	flex-wrap: wrap;
	list-style:none;
	color:var(--white);
	padding:30px 15px;
	flex-direction:column;
	margin:0;
	position:relative;
	border-right:1px solid rgba(255, 255, 255, 0.2);
	text-align:center;
	justify-content: center;
} 
 
.funfacts ul li:last-child{
	border-right:0;
}

.funfacts ul li h2{
	margin:0;
	padding:0;
	line-height:44px;
	font-size:44px;
}
 .funfacts p{
	margin:0;
	font-size:16px;
	 
}
 
/****************/

 
 .smd57{
	width:57%;
} 

 .smd41{
	width:41%;
} 
 
  
/******************************ht-style*****************/
.ht-style{
		padding:25px 25px 25px 100px;
		margin:0 0 15px 0;
		position:relative;
		background-color:#ECF2F5;
		 border-radius: 12px;
		position:relative; 	 	 
		-webkit-transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
  }
 
.ht-style i{
  position:absolute;
  left:40px;
  top:25px;
  font-size:30px;
 	 background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
  } 
  
  .ht-style h2{
  	font-size:20px;
	font-family:var(--heading-font);
	font-weight:normal;
  }

 
 .ht-style p:last-child{
	 margin:0;	
	  
  }
  
/**************Testimonials******************/

.testimonials-wrap {
	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;
	background-image: url(../images/backgrounds/testimonial-bg.jpg);
     overflow: hidden;	 
	 position:relative;
	 border-radius: 12px;
	 padding:80px;
}
.testi-left{
	width:36%;
	color:var(--white); 
}

.testi-right{
	width:56%;

}

.testimonials-wrap .heading{
	color:var(--white)!important;	 
	 background: none;
    -webkit-background-clip: text;
   -webkit-text-fill-color:var(--white)!important;
	}
	
.testimonials-wrap .section-title{
	color:var(--white)!important;
}
.persentage{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	gap:0 20px;
	align-items: center;
	}	
.per{
	font-size:46px;
	color:#00FFFF;
	font-family:var(--heading-font);
}
.per-des{
	padding-left:20px;
	border-left:1px solid rgba(255, 255, 255, 0.2);
	font-size:16px;	
}

.tsti-wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
	align-items: center;
	background-color:var(--white);
	     overflow: hidden;	 
	 position:relative;
	 border-radius: 12px;
	}
.student-photo{
	width:40%;
}
.student-photo img{
	width:100%;
	display:block;
}
.quote{
	width:60%;
	padding:50px;
}
.student-details{
	margin:25px 0 0 0;
	font-family:var(--heading-font);
}	
.student-details span{
	color:#7C7C7C;
	font-family:var(--body-font);
	font-size:14px;
	}

/************Testimonials single*********************/	
.testimonials-single{
  	  border-radius: 12px;
	 box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	 padding:50px; 
	 width: 100%;
     display: flex;
     flex-wrap: wrap; 
	 position:relative;  
	 justify-content: space-between;
	 margin-bottom:25px;
  }
  
  /*.testimonials-single .quote-icon{
	width:70px;
  	height:70px;
	border-radius: 50%;
	text-align:center;
	display:flex;
	background-image: linear-gradient(to left  top, var(--primary-color), var(--secondary-color));
	color: var(--white);
	position:absolute;
	left:50%;
	top:-35px;
	margin-left:-35px;
	align-items: center;
	justify-content: center;
	font-size:30px;
  } */
  .st-photo{
  	width:15%;
	border-radius: 50%;
	overflow:hidden;
  }

.st-photo img{
  	 width:100%;
	 display:block;
   } 

.writeup{
	  width:75%;
	}
.writeup p:last-child{
	padding:25px 0 0 0;
	margin:0;
	border-top:1px solid #ccc;
	color:var(--bodyy-color);
 }
 /**********************news**********************/
 
 
  .news-style{ 
     width: 100%;	  
     overflow: hidden;	 
	 position:relative;
	 border-radius: 12px;
	 background-color:var(--white);
	 box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
}


.news-widget{
  	padding:50px 40px;
  	color:var(--body-color);
  }
.news-widget h2{
  	font-size:20px;
 	 line-height:normal;
	 color:#595959;
	 font-family:var(--heading-font);
 
  } 
.date-row{ 
	width: 100%;
    display: flex;
    flex-wrap: wrap; 
	justify-content: space-between;
	padding:15px 20px;
	font-size:14px;
	color:#7F7F7F;
	position:relative;
 
}
.date-row:after{
	 
	position:absolute;
	left:25px;
	bottom:-15px;
	content:'';
	 width: 0;
      height: 0;
      border-left:16px solid transparent;
      border-right:16px solid transparent;
      border-top: 16px solid #fff;
}
.date{
	font-size:12px;
	color:#7F7F7F;
	}
.date i{
	font-size:14px;
	color:var(--secondary-color);
	vertical-align:middle;
	margin:-5px 10px 0 0;
	 
}
  .news-style p:last-child{
  	margin:25px 0 0 0;
  }
  .more-link {}
 .more-link a{
	color:#7F7F7F;
	display:inline-block;
	padding:0 25px 0 0;
	background-image: url(../images/icons/arrow-black.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size:15px;
	}
 .more-link a:hover{
	color:#000;
	}
  /********************services scroller**********************/
 
 .course-des{
 	padding:40px 0;
 } 

.course-des h2{
	  font-size:16px;
	  font-family:var(--demi-font);
	  line-height:25px;
  }
 .course-des ul, .course-des ul li{
	 list-style:none;
	 margin:0;
	 padding:0;
	 font-size:14px;
	 vertical-align:middle;
 	}
.course-des ul li i{
	margin-right:15px;
	vertical-align:middle;
	color:#00FFFF;
	line-height:normal;
	position:relative;
	top:-2px;
}	 
 /*************************/
.display-style{ 
     width: 100%;
	 aspect-ratio: 1.3 / 1.6; 
     overflow: hidden;	 
	 position:relative;
	  border-radius: 12px;
	 z-index:2;
	 padding:18px;
	 background-color:#085380;
	 color:var(--white);
	transition: all 0.4s ease;
}
.display-style:before{
	width:100%;
	height:0;
	content:'';
	position:absolute;
	left:0;
	top:0;
	background-color:#00FFFF;
	transition: all 0.5s ease;
	border-radius: 0 0 12px 12px;
}
 .display-style:hover:before{ 
	height:51%;
 
} 
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
 .display-style-white{
 	background-color:var(--white);
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	 color:var(--black); 
 }
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 0 120px;
	min-height:100px;
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 24px;
	font-family:var(--heading-font-medium);
	margin:0 0 15px 0;
	line-height:30px;
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:80px;
	height:80px;
	text-align:center;
	color:var(--white);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding:15px;
	border-radius:50%;
	/*background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));*/
	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);
}
.iconic p:last-child{
	margin:0;
}
/****************/
 
 .facullties-grid{   
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(4, 1fr);
    }
 
.staff-des{
	padding:25px 0;
	text-align:center;
	
} 
.staff-des h2{
	font-size:16px;
	font-family:var(--heading-font);
	line-height:normal;
	color:var(--primary-color);
} 
.staff-des p:last-child{
	font-size:14px;
	margin:0;
}
.grid-bx{
	background-color:var(--white);
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	color:var(--black);
	padding:20px;
	border-radius: 12px;
}
	
/*********fix buttons**************/ 
.fixbutton{
	width:50px;
	position:fixed;
	top:50%;
	right:0;
	z-index:2;
	margin-top:-95px;
 
}
.fixbutton a{
	width:50px;
	height:50px;
	line-height:50px;	
	/*border-radius:50%;*/
	position:relative;
	color:#fff;
	text-align:center;
	display:block;
	margin:0;
	 -webkit-transition: all 300ms -in-out;
     -moz-transition: all 300ms -in-out;
     transition: all 300ms -in-out;
}
.fixbutton a:hover{
	background-color:var(--black);
}
.fixbutton h5 {
    width: 100px;
    top: 7px;
	right:50px;
    background-color:var(--secondary-color);
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	-webkit-transition: .3s -in-out;
    -moz-transition: .3s -in-out;
    transition: .3s -in-out;
	opacity:0;
}
.fixbutton a:hover h5{
	 right:60px;
	 opacity:9;
}

.fixbutton h5:before{
	  width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-left: 10px solid  var(--secondary-color);
      border-bottom: 10px solid transparent;
	  position:absolute;
	  top:5px;
	  right:-5px;
	  content:''
	  }
 
 .cal{
 background-color:var(--secondary-color);
 }
.fixbutton .write{
	background-color:var(--primary-color) !important;
}
a:hover.write {
	background-color:var(--secondary-color);
}
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
 
	}
/*********whatsa app*/ 
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:80px;
	line-height:50px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:4;
}
.float i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
 
}
.float:hover i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	transform: rotate(0.12turn);
}
.float:hover{
	color:#FFF;
	 
} 
.float h5 {
    width: 100px;
    top: 8px;
	right:50px;
    background-color:var(--white);
	color:var(--grey-dark);
	 box-shadow: 0px 0px 5px gray;
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	-webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 
  


/*************** footer CSS ***************/
 
.footer {
	padding:80px 0 0 0;
	margin:0;
	font-size:13px;
	color:var(--white);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/footer-bg.jpg);
	background-attachment:fixed;
}

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

.footer-col-row{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
 	justify-content: space-between;
} 
 
.footer-col{
	flex: 0 0 17.1%;
	 
}
.footer-col ul{
	margin:0;
	padding:0;
	list-style:none;
}

.footer-col ul li{
	margin:0;
	padding:5px 0;
	line-height:normal;
	list-style:none;
}

.footer-col h2{
	font-family:var(--demi-font);
	font-size:18px;
	margin:0 0 20px 0;
	}

.footer-info{
	margin:0 0 20px 0;
	font-size:14px;
	line-height:normal;
	font-family:var(--body-font);
}	
.footer-info span{
	font-size:14px;
	}
 .footer-logo{
 	margin-bottom:25px;
 
 	 }
 .footer-logo img{
 	width:180px;
 }
 .trust-logo{
 	width:100%;
	padding:10px;
	border-radius: 10px;
 	background-color:var(--white);
}
 .trust-logo img{
 	width:100%;
 }  
.lower-footer{
	border-top:2px solid rgba(255, 255, 255, 0.1);
	padding:20px 0 ;
	margin-top:80px;
 
	}
	
.copy{}
.copy p{
	margin:0;
} 
.social {
 	padding:10px 0;
	display:flex;
	vertical-align:middle;
 
}
.social a  {
	width:35px;
	height:35px;
	line-height:35px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:14px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	background-color:rgba(255, 255, 255, 0.1);

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

}
  
 
 /**********************/
 .address-box{
	padding:30px;
	background-color:var(--grey-light);
	border-left:4px solid var(--secondary-color);
	} 
 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	vertical-align:top;
	line-height:24px;
	font-size:16px;
	 
}
 
 .add h2{
 	font-size:18px;
	line-height:20px;
	font-weight:normal;
	font-family:var(--demi-font);
	margin:0 0 10px 0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
	color:var(--white);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
	border-radius: 50px;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--body-color);
	}
.add a:hover{
	color:var(--primary-color);
	}
	
 
/******************************/

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-wrap{
	width:100%;
	position:relative;
	display:flex;
 
} 
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: rgba(0,255,255,0.1)
	}

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

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #7CEDED; 
	text-align: left; 
	font-size: 14px;
	}
td{
	font-size:16px;
} 
.table-wrap strong{
	color:var(--primary-color);
	
	}
/******************************team-style*****************/

 
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:350px;
	padding-bottom:25px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	/*align-items: center;*/
	justify-content: flex-end;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/banner.jpg);
 
}
.banner:after{
	width: 100%;
	height:50%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-image: linear-gradient(to top, rgba(9,54,121,0), rgba(9,54,121,1));
	opacity:0.5;
}
.banner h2 {
	color:var(--white);	
	font-family:var(--demi-font);
	font-size:30px;
	line-height:35px;
	margin:50px 0 0 0;
	padding:0;
	position:relative;
	z-index:2;
}


/*************************banners ***************/
 
 

.breadcrumb {   
    display: flex;
	color:var(--grey-dark);
	margin:0;
	position:relative;
	z-index:2;
	 

}
 
.breadcrumb ul {
     border-radius: 50px;
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0 0 0;
    padding: 5px 20px;
	background-color:var(--white);
 

}
.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	color:var(--grey-dark);
	font-weight:var(--font-bold);
 
	 
}    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
   color:var(--grey-dark);	
}
 .breadcrumb a:hover{
   color:var(--secondary-color);	
 
}
 

.tab1{
	background-image: url(../images/backgrounds/tab1.jpg);
	 	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	} 
 
 
 
/*************** 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-image: url(../images/backgrounds/bg1.jpg);
	background-attachment:fixed;
	}
 
 

/**********forms**************/
 
 /* input.file{
    display: none;
} */

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


.file-field [type="file"] {
/* Style the color of the message that says 'No file chosen' */
  color: #ffffff;
  font-size: 14px ;
}

[type="file"]::-webkit-file-upload-button {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  outline: none;
  padding: 5px 10px;
  text-transform: uppercase;
  transition: all 1s ease;
  margin-right: 5px;
}

[type="file"]::-webkit-file-upload-button:hover {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  color: #000;
}

.career-form .two-flex-col p,
.career-form .one-flex-col p {
	margin-bottom: 0;
}
.career-form .one-flex-col p br {
	display: none;
}

.file-field .fieldset {
	background-color: var(--primary-color);
	border: 0;
}
  
/************/

.form-bx{
	background-color:#FAFAFA;
	padding:50px;
	border:1px solid #EAE9E9;
}
.label{
	margin:0 0 15px 0;
	padding:0;
	font-size:14px;
	color:var(--grey-dark);
}
.label span{
	color:var(--secondary-color);}
 
.formstyle{}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:15px 20px;
	border:1px solid var(--grey);
	border-left:4px solid var(--secondary-color);
	background-color:var(--white);
	color:var(--black);
	display: block;
	margin: 0;
	font-size: 16px;
 
}

.sendbutton {
	border-radius: 50px;
	color: var(--white);
	font-size: 20px;
	font-family:var(--font-bold);
	background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
	border:0;
	padding: 15px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	 
}

.sendbutton:hover {	
	background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));
 
}

 
 

::-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);
}
 
 /*********/
 
 
 
/*************** backToTop *************/
 .progress-wrap {
     position: fixed;
     right: 10px;
     bottom: 10px;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
    /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .progress-wrap::after {
     position: absolute;
     content: "\f062";
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     text-align: center;
     line-height: 45px;
     font-size: 20px;
     color:var(--primary-color);
     left: 0;
     top: 0;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     z-index: 1;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap svg path {
     fill: none;
}
 .progress-wrap svg.progress-circle path {
     stroke: var(--black);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}



/************************************* 1500px *************************************/
@media only screen and (max-width: 1500px) {
	.display-style {
		aspect-ratio: 1.3 / 1.9;
	}
}
 
/************************************* 1320px *************************************/

@media only screen and (max-width: 1320px) {
.container {
	width: 100%;
	padding:0 25px;
	}
  header{ 
	 position:relative;
	 left:auto;
	 top:0;
	 padding:10px 0;
	 background-color:var(--primary-color);
 
}
 header.smaller {
	padding:10px 0;
	position: fixed;
	left:0;
	top:0;
}
.logo, header.smaller .logo { 
	width:90px;
 
} 
 .nav-group{
 	flex-direction: row-reverse;
	} 
 
.apply-bt a{
	padding:10px 20px;
	font-size:12px;
 
} 
.reshead{
	display:none;
	height:0;
	margin:0;
	padding:0;
}

.footer-col{
	flex: 0 0 100%;
	 
}
 .display-style{ 
     
	 aspect-ratio:inherit;
	 height:auto !important;
    
}
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
 
 .section-spacing{
	 padding:40px 0;
 }
 
  
/**************Testimonials******************/

.testimonials-wrap {
	 padding:40px;
}
.testi-left, .testi-right{
	width:100%; 
}
.testi-left{
	padding-bottom:25px;
}
 
 
 .table-wrap{ 
	overflow-x:scroll;
} 
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
 .trust-logo{
 	width:180px;
	 
}
 
 
}

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

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
  .slide-bt a{
	  padding:4px 15px;
	  font-size:12px;
}
 
.heading{
	font-size:26px;
	line-height:normal;
	 
}
  .link-outline a {

	font-size:12px;
	padding: 10px 20px;
 }
.smd41, .smd57{
	width:100%;
}

.footer {
	padding:40px 0 0 0;
	 
}
.lower-footer{
	margin-top:20px;
}
 .footer-logo{
 	margin-bottom:0;
}
 .facullties-grid{   
    grid-gap:10px;
    grid-template-columns: repeat(2, 1fr);
    }
.staff-des{
	padding:15px 0;
 } 
  
.grid-bx{
	padding:10px;
 
} 


/************Testimonials single*********************/	
.testimonials-single{
  	 border-radius: 12px;
	 padding:20px; 
 
  }
  
 
  .st-photo{
  	width:100%;
	overflow:visible;
}
 
  .st-photo img{
  	width:100px; 
	border-radius: 50%;
 
  }

  

.writeup{
	  width:100%;
	  padding-top:20px;
	}
.writeup p:last-child{
	padding:25px 0 0 0;
	margin:0;
	border-top:1px solid #ccc;
	color:var(--bodyy-color);
 }
 

}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
	font-size: 16px;
	line-height:24px;
	}
 
.banner { 
	height:250px;	 
 
}
.banner h2 {
	font-size:20px;
	 
}
 
 
 
.scroll h2 {
  font-size:25px;
  line-height: 25px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 
.iconic{
	padding:0 0 0 70px;	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 20px;
	line-height:28px;
}
.webicon{		 
	width:50px;
	height:50px;
	padding:10px;
	 
} 

.testimonials-wrap {
	 padding:40px;
}
.testi-left, .testi-right{
	width:100%; 
}
.testi-left{
	padding-bottom:25px;
}
 
 .student-photo{
	width:100%;
 
}
.quote{
	width:100%;
	padding:20px;
}

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

/************************************* 480px *************************************/
@media only screen and (max-width: 575px) {
.trust-head-logo{ display: none;} 
}

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

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