@charset "utf-8";
 
 

@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');
}
  
 
/*************** DEFAULT CSS ***************/
:root {
	
	--body-font:'ITCAvantGardeStdBk';
	--body-color: #000;
	--primary-color: #1BB4B9;
	--secondary-color: #FF0000;
	--tertiary-color: #17177B;
	--quaternary-color: #0201FF;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;
    --heading-font: 'ITCAvantGardeStdDemi';
	--book-font: 'ITCAvantGardeStdBk';
    
}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 26px;
	/*letter-spacing: -.1em;*/
	font-weight:var(--book-font);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);	
	transition: 0.3s ease-out;
  	overflow-x: hidden;
 
 

}

 
/* Scrollbar Styling */
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(--secondary-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 25px 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;
}
 
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-blue {
	color: var(--primary-color) !important;
}
  
.text-dark-blue {
	color: var(--secondary-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: 20px;
}
.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);
	color:#fff;
}

.bg-tertiary {
	background: var(--tertiary-color);
	color:#fff;
}
.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/lourdes-college-for-nursing-logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:100%;
	margin: -100px 0 0 -100px;
}

 

 
/*********************************/

.container {
	width: 1360px;
	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: 50%;
	}	
 
/*************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:blocx;
	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:20px 0;
	 z-index:5;	
	 -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(--white);
	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;
	background-color:var(--white);
	border-radius: 12px;
	padding:10px;
	position:relative;
	 
}
.header:after{
	background-color:var(--primary-color);
	width:100px;
	height:100%;
	position:absolute;
	top:0;
	right:0;
	content:'';
	border-radius: 0 12px 12px 0;
	 
	}
 
.logo { 
	padding-left:10px;	
}

.logo img {
	width:148px;
	display:block;
}
header.smaller .logo img{
	width:100px;
}

.nav-group{
	display: flex;
	align-items: center;  
 }
 
.call-bt {
	position:relative;
	padding:0 8px 0 5px;
	line-height:18px;
	margin-left:40px;
	font-size:14px;	 
	color:var(--white);
	z-index:3;
}
.call-bt a{
	
}
.call-bt a:hover{
	background-color:var(--primary-color);
}
.call-bt i{
	position:relative;
	left:0;
	top:0;
	width:30px;
	height:30px;
	line-height:30px;
	display:block;
	font-size:12px;
	border-radius: 50%;
	background-color:var(--white);
	color:var(--secondary-color);
	text-align:center;

}
 a.sch-btn {
    margin-right: 5px;
}
/***********social ***********/
  
.link {}

.link a {
	
	color: var(--black);
	font-size: 14px;
	padding: 10px 20px 10px 60px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border-radius: 50px;
	color:var(--body-color);
	border:1px solid var(--grey);
	background-image: url(../images/icons/arrow-black.svg);
	background-repeat: no-repeat;
	background-position: 20px center;
	background-size:20px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
 
 
.link a:hover{
	padding: 10px 20px 10px 50px;
	background-color: var(--primary-color);
	border:1px solid var(--primary-color);
	color: var(--white);
	background-image: url(../images/icons/arrow.svg);
}
 
 .bt-nm,  .bt-nm a{
 	border:0 !important;
	 
	}


.caps{
	text-transform:uppercase;
}
 
 
.heading{
	font-size:46px;
	line-height:normal;
	font-family:var(--heading-font);
	 
}

 .heading span, .subheading span{
	 color:var(--secondary-color);}

.subheading {
	font-size:40px;
	line-height:50px;
}
.subtitle{
	font-size: 22px;
	font-weight:normal;
	line-height:normal;
}
.bold, strong{
	font-family:var(--heading-font);
}
 
.page-title{
	text-transform:uppercase;
	font-size:18px;
	line-height:normal;
	font-family:var(--heading-font);
	margin:0 0 20px 0 !important;
}
.dec-title{
	position:relative;
	padding:0 0 0 70px;
	font-size:14px;
	line-height:14px;
	color:var(--tertiary-color);
 
}
.dec-title:after{
	width:40px;
	height:2px;
	background-color:var(--secondary-color);
	position:absolute;
	left:0;
	top:5px;
	content:'';
	 
}
/****************************/
  
.pos-relative{
	position:relative;
}


 /******* mission vision ***********/

.mission-vision-box {
    background-color: var(--primary-color);
	color: var(--white);
	position: relative;
	padding: 70px 40px 40px 40px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;

}
.mission-vision-box p {
	margin-bottom: 10px;
}
.mission-vision-box  .webicon {
	background-color: var(--tertiary-color);
	background-image: none;
	top: 30px;
	right: 30px;
	position: absolute;
	left: auto;
}   
.mission-vision-box  ul.list li:before {
    color: #080808;
}
.mission-vision-box .heading {
    font-size: 30px;
    line-height: normal;
    font-family: var(--heading-font);
}
.mission-vision-box ul.list {
	margin-bottom: 0;
}


.chart img {
	width: 100%;
	display: block;
}


.btn-sml a {
    color: #fff;
}
 /******* Milestone Style inner ***********/

.milestone-style {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 5px;
}
.milestone-hr {
	position: relative;
}
.milestone-hr .owl-dots {
	display: none;
}
.milestone-hr:after {
	content: "";
	position: absolute;
	width:100%;
	height: 2px;
	background-color: var(--secondary-color);
	left: 0;
	right: 0;
	top: 12.4%;
	z-index: -1;
}
.milestone-style .timeline-period {
	position: relative;
	width: 200px;
	height: 60px;
	background-color: var(--primary-color);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white);
	font-family: var(--heading-font);
	font-size: 20px;
}
.milestone-content {
    padding: 30px;
    background-color: #ffffff;
    outline: 1px solid #dfdfdf;
    margin-block: 60px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	position: relative;
}
.milestone-content p {
	margin-bottom: 0;
	font-weight: 500;
	text-align: center;
}
.milestone-content:before{
	width:1px;
	height:50px;
	position:absolute;
	left:50%;
	top:-50px;
	content:'';
	background-color:#39489D;
}
.milestone-content:after{
	width:10px;
	height:10px;
	border-radius: 50%;
	position:absolute;
	left:50%;
	top:-50px;
	content:'';
	background-color:#39489D;
	margin-left:-5px;
}

 /*****************/

.overview-box {
    padding: 20px 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.overview-box h1 {
	color: var(--tertiary-color);
	text-align: center;
}
.overview-box h2 {
	font-weight: 600;
	font-family: var(--heading-font);
}

 /*******categories grid***********/
 
.tpm, .btm{
	width:100%;
	height:15px;
	position:absolute;
	left:0;
	top:-5px;
	background-color:var(--white);
	z-index:2;
}
.btm{
	top:auto;
	bottom:-5px;
}

.lpm, .rtm{
	width:15px;
	height:100%;
	position:absolute;
	left:-5px;
	top:0;
	background-color:var(--white);
	z-index:2;
}

.rtm{
	left:auto;
	right:-5px;
	top:0;
}
 
.brands-listing{
 
	} 
.brands-listing ul{ 
	flex: 0 0 100%;
	display:flex;
    flex-wrap: wrap; 
	gap:20px;
	list-style:none;
	margin:0;
	padding:0;
	justify-content: center;
	}
	
	.brands-listing ul li{ 
	  display:flex;
      width:200px;
	  list-style:none;
	  margin:0;
	  padding:0;
	}
	
.brands-listing ul li img{   
	width:100%;
	border-radius: 10px;
	display:block;
 	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;
  }
 
.brands-listing ul li:hover img{
	filter: grayscale(100%);
  }
  

/****************SCROLLING TEXT***************/
  

/*******funfacts***********/

 
/*******funfacts***********/


 
.funfacts{
	width:100%;
	display: flex;
	flex-wrap: wrap; 
	}

.funfacts ul{ 
    width:100%;
	display: flex;
	flex-wrap: wrap; 
	list-style:none;
	margin:0;
	padding:0;
	gap:0 3.5%;
}

.funfacts ul li{
	flex: 0 0 22.11%;	 
	align-items: center;
	padding:30px;
	background-color:var(--white);
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);	 
	border-radius: 10px; 
	position:relative;
 
}
 
.funfacts ul li:before{
	width:22px;
	height:22px;
	position:absolute;
	top:0;
	right:20px;
	content:'';	
	background-image: url(../images/icons/ribbon.svg);
	background-repeat: no-repeat;
	background-position: right top;
	background-size:20px;
 
}
.funfacts ul li:last-child{
	border-bottom:0;
	}

.funfacts ul li h2{
	font-size:50px;
	line-height:normal;
	font-weight:normal;
	margin:0;
	color:var(--tertiary-color);
	font-family:var(--heading-font);		 
 
}	
.funfacts p{
	margin:0;
	font-family:var(--heading-font);		 
	font-size:16px;
	color:var(--grey-dark);
 
}
 /*********milestone*************/

   

 

/************************************/


 /*****************tab-conetne*********/
 .experties{
 	background-image: url(../images/backgrounds/bg1.jpg);
	border-radius: 20px;
	overflow:hidden;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
 }
 .grid-row{
 	flex: 0 0 100%;
	display: flex;
	flex-wrap: wrap;
	position:relative;
	border-left:1px solid var(--white);	
 }
 .grid-row:before,  .grid-row:after{
 	width: 1px;
	height:100%;
	position:absolute;
	top:0;
	left:50%;
	background-color:var(--white);
	content:'';
	 
 } 
 .grid-row:after{
 	width: 100%;
	height:1px;
	top:50%;
	left:0;
 }
.grid-row-bx{
	flex: 0 0 50%;
	aspect-ratio: 1 / .8;
	padding:20px;
	color:var(--white);
	display:flex;
	flex-direction:column;
	position:relative;
	justify-content: space-between;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
}
.grid-row-bx:hover{
	padding:25px;
}
.grid-row-bx:after{
	width:100%;
	height:0;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
}
.grid-row-bx:hover:after{
	height:100%;
	top:0;
}
.icon-row{
	position:relative;
	z-index:2;
}
  .icon-row img{
	width:60px;
}
.grid-row-bx-footer{
		align-items: center;
		justify-content: space-between;
	    display:flex;
		flex-wrap: wrap;
		position:relative;
	    z-index:2;
	 
}	
.grid-row-bx-footer h2{
	font-size:24px;
	margin:0;
	line-height:normal;
	font-family:var(--heading-font-semibold);
} 
 
.date{
	font-size:14px;
	color:var(--grey-dark);
	text-transform:uppercase;
	word-spacing:2px;
	margin:0 0 15px 0;
	line-height:normal;
	 
}
  
 
/*****************grid colums**********/
 
/*--------------------------------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:200px;
	height:200px;
	display:inline-block;
	position:absolute;
	left:-100px;
	top:100px;
	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.png);
	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/b2b.png);
	background-repeat: no-repeat;
	background-position: center  center;
	border-radius:50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size:50%;
}
@-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);
		}
}

 
  
 
 
  
 /**********************news**********************/
 .boxy-style{
	 border-radius:12px;
	 padding:50px;
	 /*box-shadow: 0px 10px 20px 20px rgba(123, 123, 123, 0.1);*/
	 box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
  .shadow{
	  border-radius:20px;
	  overflow:hidden;
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
 
 /*****************display-style**********/
 
 

 

/*************/
.display-style{      
     overflow: hidden;	 
	 position:relative;
	 background-color:var(--white);
	 border-radius: 12px;	 
	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
	 box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);	 
}
  .display-content{
	padding:40px;
}

  .display-content h2{
	font-size:20px;
	font-family:var(--heading-font);
	color:var(--grey-dark);
	line-height:34px;
	margin:0 0 20px 0;
 
}
  .display-content p:last-child{
	margin:0;
}
.date{
	font-size:14px;
	color:var(--grey-dark);
	text-transform:uppercase;
	word-spacing:2px;
	margin:0 0 15px 0;
	line-height:normal;
	 
}

/**************/


.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 0 100px;
	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size:22px;
	line-height:normal;
	margin:0 0 10px 0;
	font-weight:var(--font-weight-medium); 
}

.iconic p:last-child{
	margin:0;
}


.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:-5px;	
	width:70px;
	height:70px;
	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));	 
	-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%;
}
 
.iconic p:last-child{
	margin:0;
	 
}  
/**********************news**********************/
  .bx-shadow{
	background-color:var(--white);	 
	overflow:hidden;
 	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); 
}

 
/*********whatsa app*/ 
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	line-height:60px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:100;
}

.float:hover{
	color:#FFF;transform: rotate(0.12turn);
} 
 
/*********back to top styles********/

.progress-wrap {
    position: fixed;
    right: 10px;
    bottom: 10px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
     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: "\f30c";
    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(--primary-color);
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
 /*********back to top styles end********/
 
/*************** footer CSS ***************/
 
.footer {
	padding:100px 0 0 0;
	margin:0;
	background-image: url(../images/backgrounds/footer-bg.jpg);	 
	color:var(--white);
	font-size:14px;
 
}

footer a , .footer-col a {
	color:var(--white);
}
.footer a:hover, .footer-col a:hover {
	color:rgba(255, 255 ,255, 0.5);
}
 
.footer-col {
 	padding:20px;

}
 
.footer-col h2{
	font-size:20px;
	line-height:normal;
	padding:0 0 20px 0;
	margin:0 0 20px 0;
	position:relative;
	font-family:var(--heading-font);
	position:relative;
} 
 .footer-col h2:after{
	width:30px;
	height:2px;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-color:var(--white);
}

.footer-col ul, .footer-col ul li{
	margin:0;
	padding:0;
	list-style:none;
}
.footer-col ul li{
	padding:0;
	line-height:normal;
	}
.footer-col ul li a{
	display:block;
	padding:5px 0;
	font-size:14px;
	}

.footer-col p{
	margin:0 0 15px 0;
}	
.footer-bottom {	 
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding:30px 0 0 0 ;
	margin-top:20px;
	border-top:1px solid rgba(255 ,255, 255, 0.3);
}
 

.footer-bottom a   {
	color:var(--white);
}
.footer-bottom a:hover {
	color:rgba(255, 255 ,255, 0.5);
}
 
 
.copy {
	line-height:normal;
	 
}
 
.footer-logo{
	 
}
 
 
 
.social {
 	padding:10px 0;
	display:flex;
	vertical-align:middle;
 
}

.social a  {
	width:40px;
	height:40px;
	line-height:40px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:16px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	border:1px solid rgba(255, 255, 255 ,0.5);
 
	 
}

.social a:hover  {
	color: var(--white);
	background-color:var(--primary-color);
    border:1px solid var(--primary-color);
 
}

/*************************************************/
 
 
 .footer-info-box{
 	width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	border-radius: 12px;
	background-image: linear-gradient(to left, var(--tertiary-color), var(--secondary-color));
	padding:40px 60px;
	position:relative;
	margin-top:-150px;
	margin-bottom:30px;
	z-index:2;
 }

.footer-info{
  position:relative;
  padding:0 0 0 70px;
  color:var(--white);
  gap:0 20px;
  font-size:20px;
  line-height:30px;
 }
 .footer-info span{   
  font-size:16px;
 }
 
  .footer-info a{
  color:var(--white);
 	 
 }

.footer-info a:hover{
 color:rgba(255, 255 ,255, 0.5);
 	 
 }
  .footer-info i{
  position:absolute;
  left:0;
  top:5px;
  font-size:40px;
  line-height:40px;
  margin:0;
 
 	 
 }
 /*************************************************/
.address-box{
	background-color:var(--tertiary-color);
	color:var(--white);
	overflow:hidden;
	padding:30px;
	border-radius: 12px;
	color:var(--white);
	
} 
 .address-box a{
	 color:var(--white);
} 
 .address-box a:hover  {
	color:var(--secondary-color);
 }
 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 30px;
	min-height:34px;
	margin-bottom:10px;
	font-size:16px; 
	vertical-align:top;
	line-height:22px;
	 
}
.add p{
	padding:0 25px;
	
}
.add i{
	width:34px;
	height:34px;
	line-height:34px;
	background-color:var(--primary-color);
	border-radius: 50%;
	color:var(--white);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .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;
}

.course-slide .owl-theme .owl-nav {
    margin-top: -80px;
    padding-right: 0;
	top: 0;
}
.course-slide .owl-nav button.owl-prev,
.course-slide .owl-nav button.owl-next  {
    background-color: #1bb4b9 !important;
    margin-inline: 5px;
}

a.sch-btn i {
    background: #ffffff;
    position: relative;
    z-index: 99999;
}

a.sch-btn i {
    position: relative;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    font-size: 12px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--secondary-color);
    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: 24px;
	position: relative;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 2px;
	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: var(--primary-color); 
	color: var(--white);
	font-family:var(--heading-font);
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	font-family:var(--heading-font);
	
	}

td, th { 
	padding: 6px 10px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	}
 
/************************/
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
/******************************team-style*****************/

 
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:400px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: center;
	text-align:center;
	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/inne-banner.webp);
}
.banner:after{
	width: 100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	/*background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,1));*/
	background-color:#000;
	opacity:0.4;
}
.banner h2 {
	color: var(--white);
	font-family:var(--heading-font);	
	font-size:40px;
	line-height:40px; 
	margin:70px 0 0;
	padding:0;
	position:relative;
	z-index:2;
}

/*****************************/
 
.breadcrumb {   
    display: flex;
	color:var(--white);	
	margin:0;
	position:relative;
	z-index:2;
	
}

.breadcrumb ul {
    width:100%;
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 10px 0;
	justify-content: center;
 
}
.breadcrumb li {
    margin: 0;
	font-size:12px;
	font-family:var(--heading-font);
	text-transform:uppercase;
}    
.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.8);	
}
 .breadcrumb  span{
 	color:var(--secondary-color);	
}
.affiliation{
	position:absolute;
	right:30px;
	top:-150px;
	z-index:1
}

.label{
	position:relative;
	margin-top:-150px;
	z-index:2;
}
.announcement{
	background-color:var(--tertiary-color);
	position:relative;
	/* margin-top:-70px; */
	border-radius: 12px;
	color:var(--white);
	
	outline: 1px solid rgba(255, 255, 255, 0.3);
    outline-offset: -15px;
}
 
.announcement-content{
	width:100%;
	padding:30px 20px 30px 100px;
	background-image: url(../images/icons/1.png);
	background-repeat: no-repeat;
	background-position: left 50%;
	position: relative;
}
.announcement::after {
background-image: url(../images/icons/teture.png);
opacity: 0.5;
content: "";
position: absolute;
inset: 0;
}
.announcement-content h2{
	 margin:0 0 10px 0;
	 font-size:18px;
	 line-height:inherit;
	 font-weight: 600;
    letter-spacing: 0.9px;
}
.announcement ul.list {
 	margin: 0 0 5px 0;
}
.announcement p {
	margin-bottom: 0;
	font-weight: 600;
    letter-spacing: 0.9px;
}
.course-detail{
	width:100%;
	position:absolute;
	left:0;
	bottom:0;
	padding:30px;
	color:var(--white);
	margin:0;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1)); /* Standard syntax (must be last) */
}	
 .course-detail h2{
 	font-size:20px;
	margin:0 0 10px 0;
	font-family:var(--heading-font);
	line-height:normal;
	 
}	
 .course-detail h3{
 	font-size:18px;
	margin:0;
	font-family:var(--heading-font);
	line-height:normal;
	 
} 
 .btn-sml{
	font-size:14px;
	padding:0 25px 0 0;
	background-image: url(../images/icons/arrow.svg);
	background-size:15px;
	background-repeat: no-repeat;
	background-position: 100% center;
 }
 
 .hover-effect:hover  .course-detail {
 	background-image: linear-gradient(to bottom, rgba(23,23,123,0), rgba(23,23,123,1)); /* Standard syntax (must be last) */
 }
 
 .tick{
	width:100%;
	position:relative;
	padding:0 0 0 50px;
	
}
 .tick i{
	 color:var(--primary-color);
	 position:absolute;
	 left:0;
	 top:0;
	 left:0;
	 font-size:30px;	 
}

 .tick h2{
 	font-size:22px;
	font-family:var(--heading-font);
	margin:0 0 20px 0;
	line-height:normal;	 
}

.dots-layer{
	width:30%;
	height:100%;
	position:absolute;
	z-index:-1;
	right:0;
	top:0;
	background-image: radial-gradient(circle at 2px 2px, #EFDDE3 2px, transparent 0);
    background-size: 20px 20px;
}

.milestones{ 
	background-image: url(../images/backgrounds/milestone-bg.jpg);
	position:relative;
	padding:150px 0 ;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.milestones:after {
	width:100%;
	height:200px;
	position:absolute;
	left:0;
	bottom:0;
	z-index:1;
	content:'';
	background-image: url(../images/slider-before-bg.svg);
	background-repeat: no-repeat;
	background-position: center bottom;	 
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.miliestone-content{
	color:var(--white);
	padding:128px 50px 50px 50px;
	position:relative;
	text-align:center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.miliestone-content:hover{
	padding:110px 50px 50px 50px;
	 
}
.miliestone-content:before{
	width:1px;
	height:80px;
	content:'';
	position:absolute;
	left:50%;
	top:0;
	background-color:var(--white);
	
}
.miliestone-content:after{
	width:8px;
	height:8px;
	content:'';
	position:absolute;
	left:50%;
	top:80px;
	background-color:var(--primary-color);
	border-radius: 50%;
	margin-left:-4px;
}
.year{
	font-size:50px;
	line-height:50px;
	margin:0 0 20px 0;
	vertical-align:top;
	font-family:var(--heading-font);
	 
}
.miliestone-content h3{
	font-size:14px;
	font-family:var(--heading-font);
	line-height:normal;
	margin:0 0 15px 0;
	text-transform:uppercase;
}
.dashed-top-border {
	border-top:1px dashed var(--white);
	}
.owl-demo5{}	
/*.banner:after{ position: absolute; content: ''; width: 100%; height: 100%; left: 0px; top: 0px; background-color:#000; opacity: .5; }*/
 
.message{
	border-radius: 12px;
	background-color:var(--white);
	padding:70px;
	display: flex;
    flex-wrap: wrap;
	position:relative;
	margin-top:-250px;
	z-index:2;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);	 
}
.message-inner {
	border-radius: 12px;
	background-color:var(--white);
	padding:30px;
	position:relative;
	z-index:2;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;	 
}
.quote{
	position:relative;
	padding:0 0 0 80px;
}
.quote i{
	position:absolute;
	left:0;
	top:0;
	font-size:40px;
	color:var(--primary-color);
	 
}
.principal-des{
	border-top:1px solid #ccc;
	padding:20px 0 0 0;
	font-size:18px;
	font-family:var(--heading-font);
	margin-top:25px;

}
.principal-des span{
 
	font-size:14px;
	font-family:var(--body-font);
	 

}
.team-inn-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2%;
    justify-content: center;
	margin-bottom: 40px;
}
.team-inn-box{
    flex: 0 0 23.5%;
    background-color: #e5fafb;
    border-radius: 0 0 12px 12px;
}
.team-inn-cnt{
    text-align: center;
    padding: 30px 10px;
}
.team-inn-cnt h3{
    font-size: 16px;
    margin-bottom: 9px;
    color: var(--grey-dark);
    font-family: var(--heading-font);
    position: relative;
    line-height: normal;
    padding-bottom: 8px;
}
.team-inn-cnt h3:after{position: absolute;content: '';bottom: 0px;width: 60px;height: 1px;background-color: var(--secondary-color);left: 50%;margin-left: -30px;}
.team-inn-cnt h4{
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
}
.mile-stone-inn-wrap{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
	margin-bottom: 30px;
}
.mile-stone-inn-wrap:after{position:absolute;content:'';width: 2px;left: 29px;top: 0px;height: 100%;background-color: var(--secondary-color);z-index: -1;}
.mile-stone-cnt{
    display: flex;
    gap: 5%;
    margin-bottom: 15px;
}
.mile-stone-cnt span{position: relative;flex: 0 0 60px;height: 60px;background-color: var(--primary-color);border-radius: 50px;display: flex;align-items: center;justify-content: center;text-align: center;color: var(--white);font-family: var(--heading-font);font-size: 22px;top: 20p;}
.mile-stone-cnt span:after{ position: absolute; content: '';}
.mile-stone-cnt-inn{
    background-color: #e3e2ff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    position: relative;
    flex: 0 0 91%;
}
.mile-stone-cnt-inn:after{position:absolute;content:'';border-right: 10px solid #e3e2ff;border-top: 10px solid transparent;border-bottom: 10px solid transparent;left: -10px;top: 15px;}
.mile-stone-cnt-inn h2{
    font-family: var(--heading-font);
    font-size: 24px;
    color: var(--tertiary-color);
    margin-bottom: 10px;
}
.mile-stone-cnt-inn p{
    margin-bottom: 0px;
}
.tittle{     
	font-family: var(--heading-font);
font-size: 28px;
}
.inner {
	position: relative;
	padding-bottom: 15px;
}
.inner::after {
	content: "";
	position: absolute;
	left: 0;
	width: 50px;
	height: 2px;
	display: block;
	bottom: 0;
	background-color: var(--secondary-color);
}
.cource-inn-wrap .team-inn-box  {
background-color: #eeeef9;
}

.cource-inn-wrap .team-inn-box .team-inn-cnt h3 {
padding-bottom: 0px;
color: var(--body-color); margin-bottom: 4px;
}
.cource-inn-wrap .team-inn-box .team-inn-cnt h4{
color: var(--grey-dark);
}
.cource-inn-wrap .team-inn-box .team-inn-cnt h3:after{ display: none;}
.gallery-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 1%;
}
.galry-box{
    flex: 0 0 19.2%;
}
.btn-group{ display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 20px;}
.button-style a{
    background-color: var(--tertiary-color);
    color: var(--white);
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 50px;
}
.button-style a i{
    color: var(--secondary-color);
}
.button-style a:hover{ background-color: var(--primary-color);}
.alumni-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
	margin-bottom: 40px;
}
.alumni-box{
    flex: 0 0 49%;
    box-shadow: 0px 3px 20px #e3e3e3;
    padding: 30px;
    border-radius: 15px;
}
.nurs-car-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 1%;
}
.nurs-car-box{
    border:1px solid #c9c9c9;
    padding: 20px 10px;
    border-radius: 10px;
    text-align: center;
    flex: 0 0 19.2%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nurs-car-box h3{
    font-size: 14px;
    margin-bottom: 10px;
}
.nurs-car-box span{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
}



.regi-frm-left{
    flex: 0 0 70%;
    box-shadow: 0px 2px 30px #d5d5d5;
    padding: 30px;
    border-radius: 15px;
}
.regi-frm-left h3{
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 22px;
    border-bottom: 1px solid #e2e2e2;
    padding: 12px 20px;
    background-color: var(--tertiary-color);
    border-radius: 6px;
    margin-bottom: 20px;
}
.register-form-wrap{
    display: flex;
    gap: 2%;
    align-items: flex-start;
	flex-wrap: wrap;
}
.regi-sub-btn-wrap{}
.regi-frm-inn-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 15px 2%;
    margin-bottom: 30px;
}
.form-group{
    flex: 0 0 49%;
}

label{
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}
.form-group-full{ flex: 0 0 100%;}
.regi-frm-right{
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    padding: 20px;
	position: sticky;
    top: 110px;
	flex: 0 0 28%;
}
.regi-frm-right h2{
    color: var(--tertiary-color);
    font-family: var(--heading-font);
    border-bottom: 1px solid #d5d5d5;
	padding-bottom: 15px;
    margin-bottom: 15px;
}
.reg-cont-dtl{
    display: flex;
    gap: 3%;
    align-items: flex-start;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.reg-cont-dtl p{
    font-size: 14px;
    margin-bottom: 0px;
}
.reg-cont-dtl i{
    color: var(--primary-color);
    margin-top: 6px;
}
.reg-cont-dtl p a{}
.reg-cont-dtl:last-child{ border-bottom: none; padding-bottom: 0px; margin-bottom: 0px;}

.broshure-box {
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 35px;
	border-radius: 10px;
}
.broshure-box h2 {
    font-size: 25px;
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1px solid #cccccc52;
    padding-bottom: 15px;
}
.broshure-box .btn-group {
	gap: 10px;
	justify-content: center;
}

.course-sidebar {
    padding: 30px 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
h3.sidebar-head {
    font-size: 18px;
    border-bottom: 1px solid #ff0000;
    padding-bottom: 10px;
    font-weight: 900;
}
ul.sidebar-list {
    margin-bottom: 25px;
    padding: 0;
}
ul.sidebar-list li {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    padding-inline: 10px;
    align-items: center;
    padding-bottom: 5px;
    font-size: 16px;
	color: #1bb4b9;
}
ul.sidebar-list li i {
    font-size: 10px;
	color: #1bb4b9;
}
.course-details {
    display: flex;
    padding: 30px 40px;
    background: var(--primary-color);
    border-radius: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.course-details .box {
    display: flex;
    gap: 20px;
    color: #fff;
    align-items: center;
    justify-content: center;
    flex: 0 0 33%;
    border-right: 1px solid;
}
.course-details .box:last-child{border-right: none;}
.course-details .box h4 {
	font-size: 22px;
	font-weight: 900;
	margin-bottom: 0;
}
.course-details .box span {
    display: block;
    font-size: 14px;
	font-weight: 400;
}
.box img {
    max-width: 60px;
}
.justify-list li {
	text-align: justify;
}
.course-sidebar .sidebar-list:last-child {
	margin-bottom: 0;
}
.calender-box {
    flex: 0 0 35%;
    padding: 35px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.calender-box h3 {
	font-size: 18px;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 10px;
    font-weight: 900;
}
.calender-box .new-accourdian ul li a {
    border: 1px solid rgb(0 0 0 / 0%);
    border-bottom: 1px solid rgb(0 0 0 / 5%);
}
.calender-box .new-accourdian ul li:last-child a {
	border-bottom: none;
}
.calender-box .accordion-content.expanded {
    height: auto;
    border: none;
}
.calender-box .new-accourdian ul li .accordion-trigger.expanded {
    background: #1bb4b9;
    color: #fff;
    border: 1px solid #1bb4b9;
}
.calender-box .accordion-content.expanded {
    background-color: #f3f3f3;
}
.calender-box .new-accourdian ul.sidebar-list li i {
    font-size: 10px;
    color: #ff0000;
}
.calender-box .new-accourdian ul li {
    margin: 0 0 0px 0;
}


.ternding-course {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
}
/* .ternding-course .course:nth-child(even) {
	    background-color: #006d70;
} */
.ternding-course .course {
	flex: 0 0 24.22%;
    /* padding: 45px 30px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    flex-direction: column; */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    /* padding: 50px; */
    position: relative;
    color: #fff;
    border-radius: 0;
    outline:1px solid #ffffffad;
    outline-offset: -10px;
	transition: all ease-in-out 300ms;
	position: relative;
	overflow: hidden;
}
.ternding-course .course img {
	width: 100%;
	display: block;
	transition: all ease-in-out 300ms;
}
.btm {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    padding: 30px;
    color: var(--white);
    margin: 0;
    background: #0000002e;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out 300ms;
}
.cr-icon {
	width: 60px;
}
.cr-icon img {
	width: 100%;
}
.ternding-course .course h1 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 18px;
    color: var(--white);
	text-align: center;
}
.ternding-course .course:hover {
	background-color:  var(--tertiary-color);
}	
.ternding-course .btm{
    background-image: linear-gradient(to bottom, rgba(23, 23, 123, 0), rgba(23, 23, 123, 0.8));
}
.ternding-course .course:hover .btm{
	background-image: linear-gradient(to bottom, rgba(23, 23, 123, 0), rgba(23, 23, 123, 0.0));
}

/*************** 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-image: url(../images/backgrounds/bg1.jpg);
}
 
.bg2 {
	background-image: url(../images/backgrounds/bg2.svg); 
}

.bg3 {
	background-image: url(../images/backgrounds/bg3.svg);
	position:relative;
}
 
/*********file chosen style**************/

input.file{
    display: none;
	 
	}


.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    border: 0;
    display: inline-block;
    padding: 14px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 0;border-radius: 6px;

}

.custom-file-upload:hover{
	background-color: var(--secondary-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;
}

/*********call back rquest**************/

 

/**********forms**************/

form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding: 5px 15px;
	border:1px solid var(--grey);
	background-color:var(--white);
	display: block;
	border-radius: 5px;
	margin: 0;
	color: var(--body-color);
	font-size: 15px;
	height: 45px;
}
textarea.fieldset{ height: 120px;}

.sendbutton {
	border-radius: 5px;
	color: var(--white);
	font-size: 20px;
	font-family:var(--heading-font);
	border:0;
	background-color:var(--primary-color);
	padding:15px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	 
}

.sendbutton:hover {	
background-color:var(--secondary-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;
}
 

::-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);
}
/**********/
 .field-secondary{
 	width: 100%;
	padding:20px 0;
	background-color: none;
	background-color: transparent;
	display: block;
	border: 0;
	box-shadow: 0;
	margin: 0;
	color: var(--white) !important;
	font-size: 16px;
 
 }


 /*************** Library *************/

 .library-details .funfacts ul li {
	text-align: center;
	margin-bottom: 25px;
 }
 .icon {
    width: 70px;
	display: inline-block;
	margin-bottom: 15px;
} 
 .icon img {
	width: 100%;
	display: block;
 }
  .library-details .funfacts ul li h2 {
    font-size: 40px;
    color: var(--tertiary-color);
}
.library-box {
    background: #efefef;
    border-radius: 15px;
    padding: 37px 33px;
}
.library-box .list {
	margin-bottom: 0;
}
.rgt {
    width: 32.5%;
}
.lft {
    width: 66%;
}
.lft .two-flex-col {
    flex: 0 0 49.2%;
}
.lft .flex-gap {
	gap: 20px 1.5%;
}
 /*************** Library *************/


 /*************** Comitte *************/

.members-list-main {
    padding: 35px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.member-list-box {
    /* padding-left: 50px; */
    position: relative;
}
.member-list-box::after {
    background: #d7d7d7;
    position: absolute;
    content: '';
    top: 0;
    left: 25px;
    width: 1px;
    height: 100%;
    z-index: -1;
}
.user h2 {
	margin-bottom: 0;
	color: #fff;
	padding-left: 10px;
	font-size: 16px;
	font-weight: 600;
}
.user i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    font-size: 12px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--secondary-color);
    text-align: center;
	position: absolute;
	left: 8px;
	top: 0 ;
	bottom: 0;
	margin: auto 0;
}
.user {
	position: relative;
	padding: 10px 10px 10px 40px;
    background-color: var(--primary-color);
    border-radius: 40px;
    align-items: center;
}
.member-dtl {
    padding: 15px 0px 15px 45px;
	position: relative;
}
.member-dtl h3 {
	position: relative;
	font-size:17px;
	font-weight:600;
}
.member-dtl h3 span {
    font-weight: 500;
    color: #484848;
    display: block;
    margin-top: 0px;
    font-size: 16px;
}
.member-dtl h3:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 100%;
    top: 8px;
    left: -23px;
    background-color: var(--tertiary-color);
}



 /*************** Comitte *************/
 
/*************** 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(--secondary-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(--secondary-color);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}


/************************************* 1400px *************************************/

@media only screen and (max-width: 1400px) {
	.mile-stone-cnt-inn {flex: 0 0 88%;}
}


 
/************************************* 1400px *************************************/

@media only screen and (max-width: 1359.99px) {
.container {
	width: 100%;
	padding:0 20px;
	}
 
 

.announcement{
	margin-top:20px;
	border-radius: 12px;
    outline-offset: -10px;
}
 
.announcement-content{
	width:100%;
	padding:30px 20px 30px 100px;
	 
	} 
 }

/************************************* 1024px *************************************/
@media only screen and (max-width: 1023.99px) {
.regi-frm-left {
		flex: 0 0 65%;}	
.regi-frm-right { flex: 0 0 33%;}
.regi-frm-inn-wrap{ flex-direction: column;}
.regi-frm-left {
	flex: 0 0 55%;
}
.regi-frm-right {
	flex: 0 0 43%;
}

}
 
/************************************* 1024px *************************************/
@media only screen and (max-width: 1023.99px) {
 
header,  header.smaller{	 
	 position:relative;
	 left:auto;
	 top:auto;
	 padding:0;
 
}
 header.smaller{
 	position:fixed;
 	left:0;
 	top:0;
 	}
.logo{
	padding-left:0;
}
.logo img, header.smaller .logo img {
	width:130px;
	display:block;
}
 
 .nav-group{ 
 	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
 }
 
 .header, header.smaller .header{
	background-color:var(--white);
	border-radius: 0;
	padding:5px 0;
	}

.header:after{
	display:none;
}
.call-bt{
	margin:0 20px 0 0;
	line-height:18px;
	font-size:14px;
	padding:0 0 0 0px;
	color:var(--black);
} 
 
 
.call-bt i{
	top:0px;
	width:30px;
	height:30px;
	line-height:32px;
	display:block;
	font-size:12px;
	color:var(--white);
background-color:var(--primary-color);
}
a.sch-btn {
	margin-right: 0;
}
a.sch-btn i {
	background-color: var(--primary-color);
	color:var(--white);
	margin:0 10px 0 0;
}
  
.display-style{ 
      border-radius: 12px;
 
}
.display-style-cont{
	 padding: 20px;     
}
.display-style:hover .display-style-cont{ 
	padding: 20px;     
}
.banner {
	height:30vh;
}
.banner h2{
	margin-top:0;
}
.footer { margin-top: 50px;}
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {


 body {
	font-size: 14px;
	line-height: 26px;
 }
.heading {
  font-size: 30px;
  line-height: 34px;
} 
 
.subheading {
  font-size: 24px;
  line-height:  30px;
} 

 .section-spacing{
	 padding:40px 0;
 }
 

.hover-effect{
	border-radius: 12px; 
}
.tick h2{
	font-size:20px;
}

	
/***********news style*****/
 
  
.footer-logo{
	width:150px;
}
.footer-left{
	width:100%;
	margin-bottom:20px;
}
.footer-col{
	margin-bottom:20px;
}
.footer-bottom {	 
    
	padding:20px 0 0 0 ;
	margin-top:20px;
 
}
.footer-bottom-border{
	padding:10px 0;
	}

 
 
.banner h2 {
	font-size:30px;
	line-height:40px; 
}
.boxy-style{
	 border-radius:12px;
	 padding:20px;
	 margin-bottom:20px;
 
 }
.iconic{
	padding:0 0 0 100px;
	 
}
 
.iconic h2{
	font-size: 20px;
	line-height:24px;
 
 
}
.webicon{	
	width:70px;
	height:70px;
	font-size:18px;
 
}
.ternding-course .course h1 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
	color: var(--white);
}


   

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
.galry-box {
    flex: 0 0 24.2%;
}
 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {

.team-inn-box {
    flex: 0 0 32%;}
.nurs-car-box {  flex: 0 0 24.2444444%;}
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {


.address-box, .address-box2{ 
	border-radius: 12px;
 } 

.brands-listing ul li{ 
      width:100px;
}
.brands-listing ul li img{   
	border-radius: 7px;
 
  }
  .galry-box {
    flex: 0 0 32.6%;
}
.alumni-box{ flex: 0 0 100%;}
.nurs-car-box {
	flex: 0 0 32.66666666%;
}

.regi-frm-left, .regi-frm-right{ flex: 0 0 100%;}
.regi-frm-right{ position: initial;}
.regi-frm-left{ margin-bottom: 30px;}

.rgt, .lft {
    width: 48%;
}
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 

 
.scrolling-text-wrap {
	padding:20px 0;   
 }

.scroll h2 {
  font-size: 40px;
  line-height: 40px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}

.affiliation, .label{
	display:none;
 
}
 
.announcement-content{
	padding:20px 20px 20px 70px;
	background-position: left 40%;
	background-size:40px;
	font-size:14px;
	}
	
.funfacts{
	margin-top:20px	;
	 	} 
		
.funfacts ul{ 
	gap:15px 3.5%;
	margin:0;
 
}
.funfacts ul li{
	flex: 0 0 48%;
	padding:10px;
}
.funfacts ul li h2{
	font-size:30px;
	 
 
}	
.funfacts p{
	font-size:12px;
	line-height:14px;
 
}

.milestones{ 
	 
	position:relative;
	padding:50px 0;
	 
}
 .message{
	padding:40px;
	margin-top:-100px;
	 
}

.dashed-top-border {
	padding-top:0!important;
	}
.footer {
	padding:20px 0 0 0;
}
.footer-col {
 	padding:10px;

}

.footer-bottom {	 
	padding:20px 0 0 0 ;
 
}
 
 .footer-info-box{
	padding:20px;
	margin-top:20px;
	margin-bottom:20px;
 
 }

.footer-info{
  padding:0 0 0 40px;
  gap:0 10px;
  font-size:16px;
  line-height:20px;
 }

.footer-info i{
  top:5px;
  font-size:20px;
  line-height:20px;
 
 
 	 
 }
 .footer-info span{   
  font-size:14px;
 }
 .mile-stone-cnt-inn {
	flex: 0 0 85%;
}
.milestone-hr:after {
    top: 22%;
}
.ternding-course .course  {
	flex: 0 0 100%;
	padding: 0px;
	margin-bottom: 25px;
}
.rgt, .lft {
    width: 100%;
}
.library-box {
    padding: 20px;
}
.ternding-course.mb-30 {
    margin-bottom: 0;
}
.course-slide .owl-theme .owl-nav {
    margin-top: -25px;
    padding-right: 0;
    top: 0;
}
section.section-spacing.course-slide .owl-theme .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
}

/************************************* 575px *************************************/
@media only screen and (max-width: 575px) {
.team-inn-box {
        flex: 0 0 49%;
    }
	.mile-stone-cnt-inn {
        flex: 0 0 84%;
    }
	.mile-stone-cnt {gap: 3%;}
.mile-stone-cnt span {
 
    flex: 0 0 50px;
    height: 50px; font-size: 18px;}
	.mile-stone-cnt-inn {

		padding: 20px;}
.mile-stone-cnt-inn h2 {

    font-size: 20px;}
.gallery-wrap { gap: 10px 2%;}
.galry-box {
    flex: 0 0 49%;
}
.nurs-car-wrap { gap: 20px 2%;
}
.nurs-car-box {
	flex: 0 0 49%;
}
.course-details .box {
    flex: 0 0 100%;
    border-bottom: 1px solid;
    margin-bottom: 20px;
    padding-bottom: 20px;
	border-right: none;
}
.course-details .box:last-child {
	border-right: none;
    border-bottom:none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.call-bt{
	margin:0 15px 0 0
} 
}

/************************************* 400px *************************************/
@media only screen and (max-width: 400px) {
	.footer-info{ margin-bottom: 15px;}
	.footer-info { font-size: 14px;}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
.team-inn-wrap{ flex-direction: column;}
.footer-info {
	padding: 34px 0 0 0;}
.nurs-car-box {
	flex: 0 0 100%;
}
header .container{ padding: 0 15px;}
.call-bt {
	line-height: 18px;
	font-size: 12px;}
	.lft .two-flex-col {
    flex: 0 0 100%;
}
}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}