

 #Primary
/*================================================== */
body
{
	font-family:'Calibri'; 
	
	
}
 
*{
  margin: 0;
  padding: 0;
}
/*=============Modal popup css =======*/
.m-head h1
{
	font-size:28px;
	margin-top:30px;
	line-height:50px;
}
.shape
{
	width:100%;
	height:400px;
	background:linear-gradient(to bottom, #D63773, #ED528D 70%);
	position: absolute;
	clip-path:ellipse(160px 160px at 10% 12%);
	-webkit-clip-path:ellipse(160px 160px at 10% 12%);
}
.m-form h3
{
	font-size:22px;
	font-family:'Montserrat', 'sans-serif';
	font-weight: bold;

}
/*=============End of Modal Popup Css ===*/
/*=============menu section ==========*/
.header
{
	width:100%;
	left:0px;
	top: 0px; 
	z-index:99;
	position: relative;
	padding:0px; 
}
.header .header-left-logo
{
	width:20%;  
	float: left;
}
.header .header-left-logo img
{
	width:55%; padding-top:10px; 
}
.header .header-tops
{
	width:80%; 
	display: flex;
	background-color:white;
}
.header .header-tops ul
{
	list-style:none;
	display: flex;
	float: right;
	line-height:40px;
}
.header .header-tops ul li
{
	padding-left:20px;
}
.header .header-tops ul li a
{
	font-size:16px;
	text-decoration: none;
}
.header .header-tops ul li a i
{
	color: #000;
	font-size:13px;
}
.header-main
{
	width:80%;
	background-color:rgba(0,0,0,0.8);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:1px 0px;
	border-radius:4px;
	border-top-right-radius:0px;
	border-top-left-radius:0px;
}
.header .top-left
{
	width:70px;
	height:68px;
	margin-top:-18px;
	margin-bottom:-18px;
	background-color:#f14b05;
	display: none;
}
.header .top-left img
{
	width:100%;
	height:65px;
	display:none;
}
/*.header .logo
{
	padding: 0 15px;
}*/
.header .logo a
{
	font-size:30px;
	text-transform: capitalize;
	color:#f14b05;
	font-weight:600;
	margin-left:-180px;
	display: none;
}
.header .nav-menu
{
	padding: 0 37px 0px 0px;
}
.header > .header-main > .nav-menu > .menu > .menu-item > a
{
	color:black !important;
}
.header .menu > .menu-item
{
	display: inline-block;
	margin-left: 30px;
	position: relative;
}
.header .menu > .menu-item > a
{
	display: block;
	padding: 10px 0;
	font-size:14px;
	color:#fff;
	text-transform:uppercase;
	font-weight: 600;
	transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus
{
	display: inline-block;
	height:12px;
	width:12px;
	margin-left:5px;
	position:relative;
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after
{
	content: '';
	position: absolute;
	box-sizing:border-box;
	left:50%;
	top:50%;
	background:#fff;
	height:2px;
	width:100%;
	transform: translate(-50%, -50%);
	transition:all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after
{
	background-color:#f14b05;
}
.header .menu > .menu-item > a .plus:after
{
	transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a
{
	color:#f14b05;
}
.header .menu > .menu-item > .sub-menu
{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width:220px;
	position: absolute;
	left: 0;
	top:100%;
	background-color:rgba(0,0,0,0.8);
	padding: 10px 0;
	border-top:3px solid #f14b05;
	transform:translateY(10px);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}
@media only screen and (min-width:992px)
{
	.header .menu > .menu-item-has-children:hover > .sub-menu
	{
		transform: translateY(0);
		opacity:1;
		visibility: visible;
	}
	.header .menu > .menu-item-has-children:hover > a .plus:after
	{
		transform: translate(-50%, -50%) rotate(0deg);
	}
}
.header .menu > .menu-item > .sub-menu > .menu-item
{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a
{
	display: block;
	padding:10px 20px;
	font-size:14px;
	font-weight:600;
	color:#fff;
	transition:all 0.3s ease;
	text-transform:uppercase;
	border-bottom:1px solid #333333;
}
.nav-menu ul
{
	list-style-type:none;
	margin:0px;
	padding:0px;
}
.nav-menu ul a
{
	text-decoration: none;
	
}
.header .open-nav-menu
{
	height: 34px;
	width:40px;
	margin-right:15px;
	display:none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span
{
	display:block;
	height:3px;
	width:24px;
	background-color:#000;
	position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after
{
	content:'';
	position:absolute;
	left: 0;
	width:100%;
	height: 100%;
	background-color:#000;
	box-sizing: border-box;
}
.header .open-nav-menu span:before
{
	top:-7px;
}
.header .open-nav-menu span:after
{
	top:7px;
}
.header .close-nav-menu
{
	height:30px;
	width:30px;
	background-color: #fff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display:none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img
{
	width:16px;
}
.header .menu-overlay
{
	position: fixed;
	z-index:999;
	background-color: rgba(0,0,0,0.5);
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease; 
}
.header .menu-overlay.active
{
	visibility: visible;
	opacity: 1;
}
/*responsive menu css*/
@media only screen and (max-width:991px)
{	
	.header-main .logo a
	{
		font-size:16px;
	}
	.header .nav-menu
	{
		position: fixed;
		right:-280px;
		visibility: hidden;
		top: 0;
		width:280px;
		height:100%;
		overflow: auto;
		background-color:#222222;
		z-index: 1000;
		padding:15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open
	{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item
	{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a
	{
		color:#fff;
		padding:12px 15px;
		border-bottom:1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a
	{
		border-top: 1px solid #333333;
	}
	.header .menu > .menu-item > a .plus:before,
	.header .menu > .menu-item > a .plus:after
	{
		background-color:#fff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after
	{
		transform: translate(-50%, -50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu
	{
		width:100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top: auto;
		max-height: 0px;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a
	{
		padding: 12px 45px;
		color: #fff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu
	{
		display:flex;
	}
	.header .header-main .nav-menu .menu .menu-item a
	{
		color:white !important;
	}
	.header .header-main .nav-menu .menu .menu-item a:hover
	{
		color:red !important;
	}
}
/*===========End of menu section =======*/
/*============Home Section start ==========*/
.home-section
{
	width: 100%;
	display:block; 
	/*background:url('../images/slider/banner1.jpg');*/
	/*background-position: center top;
	background-size: cover;*/
}
 .carousel-inner .carousel-item img
{
	width:100%; 
	height:auto;
}
.carousel-indicators li
{
	height:1.5px;
}
.carousel-control-prev, .carousel-control-next
{
	background-color:rgba(0,0,0,.9);
	width: 3% !important;
	height:70px; 
	margin-top:15%;
	border-top-right-radius:100px;
	border-bottom-right-radius: 100px;
}
.carousel-control-next
{
	width:2.5%;
	border-top-right-radius:0px;
	border-bottom-right-radius:0px;
	border-top-left-radius:100px;
	border-bottom-left-radius:100px;
}
.carousel-control-prev:hover, .carousel-control-next:hover
{
	background-color:#f14b05;
}
.carousel-inner .carousel-item h3
{
	position: relative;
	bottom:130px;
	left:-50px;
	font-size:35px;
	color:#f14b05;
	background-color:rgba(0,0,0,0.7);
	width:28%;
	padding:10px;
	border-left:6px solid #f14b05;
	border-top:3px solid #f14b05;
}
.home-section .carousel-inner .carousel-item p
{
	width:60%;
	position: relative;
	bottom:130px;
	left:-60px;
	font-size:28px;
	color:#fff;
	padding:10px;
	text-align:left;
	line-height:60px;
	font-weight:bold;
}
/*============End of Home Section =========*/
/*----------------------Join Us section --------------------*/
#join
{
  background-image: url(../images/bg6.jpg);
  height:auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding:25px; 
}
#join h1
{
  font-family: 'Roboto', sans-serif;
  color:#a2a7c7;
}
#join h1 span
{
  font-weight: 600;
  font-style: italic;
  color: #242e4d;
  margin-left: 8px;
}
.icon
{
  width: 50px;
  height: 50px; 
  background-color: #4f5368;
  border:5px solid #bbbaba;
  text-align: center;
  font-size: 20px;
  color: #FFF;
  line-height: 42px;
  border-radius: 50px;
  margin-top: 5px;
  display: block;
}
.p-num
{
  float: left;
  padding-left: 10px;
  line-height: 50px;
  font-size: 30px;
}
.p-num a
{
  text-decoration: none;
  color: black;
  font-weight: 550;
}
@media only screen and (max-width:980px)
{
    #join h1
    {
      font-size: 15px;
    }
    #join h1 span
    {
      margin-left:0px;
    }
    .icon
    {
      width: 40px;
      height: 40px;
      line-height: 32px;
    }
    .p-num
    {
      line-height: 45px;
    }
    .p-num a
    {
      font-size: 22px;
    }
}
/*-----------------------End of join us section-------------*/

/*=========services ===========*/
.proud
{
	margin-top:-47.8px;
}
.course1
{
	width:100%;
	height:auto;
	background-color:#b55768;
	padding:0px;
}
 
.course1:hover
{ 
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	background:#77AD2E;
	
}

.course1 h2
{
	font-family: Raleway,'Trebuchet MS', Helvetica, sans-serif !important;
	color:white;
	font-size:25px;
	font-weight:bold;
}
.course1 h2::before
{
	content:'\f193';
  	font-family:fontAwesome;
  	margin-right:10px;
  	font-size:22px;
  	color:#fff;	
}
.car h2::before
{
	content: '\f19d';
	font-family:fontAwesome;
	margin-right:10px;
	font-size:22px;
	color:#fff;
}
.course2 h2::before
{
	content:'\f0c0';
  	font-family:fontAwesome;
  	margin-right:10px;
  	font-size:22px;
  	color:#fff;	
}
.course1 p
{
	font-size:16px;
	line-height:18px;
	font-weight:normal;
	margin-top:15px;
	color: #fff;
}
.course1 .rbtn
{
	margin-bottom:30px;
	margin-top:30px;
}
.course1 .rbtn a
{
	padding:10px 30px;
	border-radius:0px;
	border:1px solid #85b32b;
	color:#fff;
}
.course1 .rbtn a:hover
{
	background:#000;
	color: #fff;
	text-decoration:none;
	border:0px;
}

@media only screen and (max-width:980px)
{
	.proud h1
	{
		font-size:25px;
	}
	.proud p
	{
		font-size:16px;
		line-height:20px;
	}
	.s1 h2
	{
		font-size:25px;
	}
}
/*=========End of services ==========*/
/*============About Admission provider index page =======*/
 
.about-shubh p
{
	font-family: 'Montserrat',sans-serif;
	font-size:16px;
	font-weight: bold;
	line-height:26px;
	color: #000;
	text-align: justify;
}
.about-shubh ul
{
	list-style: none;
	margin-left:12px;
	margin-bottom:30px;
}
.about-shubh ul li
{
	list-style:none;
}
.about-shubh ul li::before
{
	content: '\f00c';
	font-family:fontAwesome;
	margin-right:10px;
	font-size:22px;
	background-image: linear-gradient(black 50% ,red);
	-webkit-background-clip:text;
	color:transparent;
}
.about-shubh a
{
	background:#db3444;
	color:#fff;
	margin-left: 11px;
	padding:15px 28px;
	font-size:18px;
	border-radius:50px;
}
.about-shubh a:hover
{
	background:#001a00;
	text-decoration: none;
	color:#fff;
}

/*=====important news section start css ========*/
.card h4
{
	background: #db3444;
}
.card p
{
	margin-top:-15px;
	margin-bottom:-10px;
	padding-top:0px;
}
#announcement div
{
	margin-top:-30px;
}
.ann i
{
	background-image:linear-gradient(red,green,yellow,blue);
	-webkit-background-clip:text;
	color: transparent;
}
/*=====End of important news section css=======*/
/*============ End of About admission Provider index page =======*/

/*=================  courses =====================*/
.carousel-multi-item.v-2.product-carousel .carousel-inner .carousel-item.active,
.carousel-multi-item.v-2.product-carousel .carousel-item-next,
.carousel-multi-item.v-2.product-carousel .carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
.carousel-multi-item.v-2.product-carousel .carousel-item-right.active,
.carousel-multi-item.v-2.product-carousel .carousel-item-next {
  -webkit-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%); }
.carousel-multi-item.v-2.product-carousel .carousel-item-left.active,
.carousel-multi-item.v-2.product-carousel .carousel-item-prev {
  -webkit-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  transform: translateX(-20%); }
.carousel-multi-item.v-2.product-carousel .carousel-item-right,
.carousel-multi-item.v-2.product-carousel .carousel-item-left {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }
.carousel-multi-item.v-2.product-carousel *, .carousel-multi-item.v-2.product-carousel ::after, .carousel-multi-item.v-2.product-carousel ::before {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }



.carousel-multi-item .btn-floating {
  background: #F8CDCD;
}
.carousel-multi-item .carousel-indicators li {
  height: .75rem;
  width: .75rem;
  max-width: .75rem;
  background-color: #5cc6c3;
}
.carousel-multi-item .carousel-indicators .active {
  height: 1rem;
  width: 1rem;
  max-width: 1rem;
  background-color: #5cc6c3;
}
.carousel-multi-item .carousel-indicators {
  margin-bottom: -1rem;
}
.carousel-item .card
{
	margin-top:30px;
}
.card img
{
  width:70%;
  height:auto;
}
.carousel-item .card img
{
  transition: 1s;
}
.carousel-item .card:hover
{
	border:1px solid #db3444;
}
.carousel-item .card:hover img
{
  transform: scale(1.2);
}
@media only screen and (max-width:980px)
{
  .card
  {
    width:80%;
    margin-left:0px;
  }
  .card img
  {
    width:50%;
  }
}
/*============end of courses========*/


/*============ service section  =======*/
#services
{
	font-family: 'Montserrat',sans-serif;
	font-weight:bold;
	color:#000;
}
.box
{
	width:230px;
	height:430px;
	background-color:#db3444;
	border-radius:10px;
	position: relative;
}
.box .ser-img img
{
	width:100%;
}
.box .details 
{
	padding: 0px 10px;
}
.box .details h3, p
{
	color:#fff;
	font-size:20px;
}
.box .details h3
{
	margin-top:-35px;
}
.box .details p , h6
{
	text-align:center;
	font-size:18px;
	font-family:'Montserrat',sans-serif;
}
.box .details p::before
{
	content: '\f041';
	font-family:fontAwesome;
	margin-right:10px;
	font-size:22px;
	background-image: linear-gradient(yellow 50%,white,green,black);
	-webkit-background-clip:text;
	color:transparent;
}
.box .details h6::before
{
	content: '\f073';
	font-family:fontAwesome;
	margin-right:10px;
	font-size:22px;
}
.box .details a
{
	text-decoration:none;
	color:#fff;
}
.box .details a i
{
	display: none;
}
.box .ser-img
{
	position: relative;
  	width:100%;
  	height:250px;
  	overflow: hidden;
  	cursor:pointer;
  	transition:.8s;
  	border-radius:10px;
}
.box .ser-img:after
{
  content:'';
  position: absolute;
  width:100%;
  height:300px;
  top: 13%;
  left:50%;
  transform: translate(-150%, -50%);
  background: rgba(255, 101, 80, 0.7);
  border-radius:0%;
  transition: .8s;
  opacity:0.7;
}
.box:hover .ser-img:after
{
  transform: translate(-50%, -50%);
}
.box .ser-img a
{
	position: absolute;
  	z-index: 2;
  	color: #fff;
  	width:150px;
  	text-align: center;
  	background-color:#84b42b;
  	top:15%;
  	left:30%;
  	padding:5px;
  	transform: translate(-500px, -50%);
  	transition: .8s;
  	text-decoration: none;
}
.box:hover .ser-img a
{
  transform:translate(-15%, 150%);
}

.m-citites h1
{
  font-family:NexaLight;
  font-size:45px;
  letter-spacing:1px;
  line-height:40px;
}
.m-citites p
{
  font-size:19px;
  color: grey;
}

/*============ End of services  =======*/
/*=============testimonial section =============*/
.testimonial
{
  background-image:url('../images/testimonial_bg.jpg');
  height:70vh;
  background-size: cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment: fixed;
  margin-top:-80px;
}
.test
{
  background-color:rgba(0,0,0,0.3);
  height:100vh;
}
.test h1
{
  font-family:NexaLight;
  letter-spacing:1px;
  font-weight:normal;
  padding-top:80px;
}
.test-inner
{
  background:rgba(0,0,0,0.8);
  position:relative;
  top:50px;
}
.test-inner h2, h5, p
{
  font-size:28px;
  font-weight:normal;
  font-family:Opens sans;
}
.test-inner h5
{
  font-size:22px;
}
.test-inner p
{
  font-size:18px;
  letter-spacing:1.5px;
  word-spacing:2px;
  color:lightgrey;
}
@media only screen and (max-width:980px)
{
  .testimonial
  {
    height: auto;
  }
  .test h1
  {
    font-size:25px;
  }
  .test
  {
    height: auto;
  }
  .test-inner
  {
    top:0px;
    padding:0px;
    height:auto;
  }
  .test-inner h2, h5, p
  {
    font-size:22px;
  }
  .test-inner p
  {
    font-size:13px;
    margin:0px -30px 0px -30px;
  }
}
/*============= End of testimonial ============*/
/*================upcoming Event =========*/
.event
{
	width: 100%;
	height:auto;
	background:url('../images/event.jpg');
	background-position:center;
	background-attachment:fixed;
	background-size: cover;
	background-repeat: no-repeat;
	
}
.event-inner
{
	width:100%;
	height:auto;
	background-color:rgb(0,0,0,0);
	padding-bottom:50px;
}
.event-inner h1
{
	font-family:'Montserrat',sans-serif;
	font-size:33px;
}
.event-section 
{
	width:100%;
	display: flex;
	margin-top:50px;
}
.event .event-img
{
	width:50%;
	height:240px;
	position:relative;
	background-color:red;
}
.event .event-img img
{
	width:100%;
	height:100%;
}
.event .event-img ul 
{
	width:40px;
	position:absolute;
	background-color:#db3444;
	z-index:1100;
	top:20px;
	left:20px;
	list-style: none;
}
.event .event-img ul li
{
	text-align:center;
	color:#fff;
}
.event .event-details
{
	width:50%;
	height:240px;
	background-color:#db3444; 
} 
.event-details p
{
	font-size:1rem;
	margin-top:-10px; 
	font-family: 'Calibri';
	padding:5px 10px;
}
.event-details a
{
	font-size:1rem; 
	padding:5px 20px;
	margin-left: 10px;
}
.event-details h5
{
	font-size:1.2rem;
	margin-top:18px; 
	font-family: 'Calibri'; 
	text-align:center;
	font-weight:bold;
	
}
.event-details h5 a
{
	font-size:1.2rem;
	color: #000;
}
.event-details h5 a:hover
{
	text-decoration: none;
}
.event-section:hover .event-details
{
	background-color:#84b42b;
}
/*================End of upcoming ========*/
/*================Counter section css ============*/
.counter-section{
	width:100%; 
	background-image: url('../images/parallax-1.jpg');
	background-position: center;
	background-attachment:fixed;
}
.counter-inner
{
	width:100%;
	height:300px;
	background:rgba(0,0,0,0.8);
}
.icon-box
{
	height:70px;
	width: 70px;
	margin:60px auto 20px auto;
	transform: rotate(45deg);
	background-image:conic-gradient(#001a00,#ab4d5a,#008000,#001a00);

}
.icon-box .fa
{
	font-size:30px;
	margin:20px auto;
	color:#fff;
	transform:rotate(-45deg);
}
.counter-inner
{
	font-size:18px;
	color: #fff;
}
.counter-inner a
{
	color:#ff6550;
	font-weight: bold;
}
.counter-inner a:hover
{
	text-decoration:none;
	color:#ff6550;
}
.counter-inner span
{
	font-size: 38px;
	margin-left:-10px;
	font-weight:bold;
}
.counter-inner .counter
{
	font-size:40px;
	margin:auto;
}
/*================End of counter section css ======*/
/*================= Newsletter Subscription ========*/
.newsletter
{
  height:100px;
}
.newsletter p
{
  line-height:50px;
  font-family:Juody;
  font-size:18px;
  color:#000;
}
.newsletter button
{
  background:#14c3e5;
  color:white;
  border-radius:0px;
  font-weight:bold;
}
.newsletter button:hover
{
  background-color:#e34a6b;
  color:#fff;
}
.formss
{
 margin-top:32px;
}
@media only screen and (max-width:980px)
{
  .newsletter
  {
    height: auto;
  } 
  .formss
  {
    margin-top:5px;
  }
  .btn-f
  {
    margin-bottom:20px;
  }
}
/*================= End of Newsletter Subscription ======*/
/*========================Footer Section =====================*/
.footers
{
	height: auto;
	background-image:url('../images/contact.png');
	padding-bottom:30px;
	background-position:center;
	background-size:cover;
}
.footer h6
{
  font-family: 'Muli', sans-serif;
  font-weight:bold;
  font-size:18px;
  padding-top:50px;
  color:#a42b41;
  text-align: left;
}
.footer ul
{
  list-style-type:none;
  text-align:left;
}
.footer ul li
{
	padding-top:2px;
}
.footer ul li a
{
	font-family:'Montserrat', sans-serif;
	font-size:13.5px;
	color: #fff;
	font-weight:550;
}
.footer ul li a i
{
	margin-right:5px;
}
.footer ul li:hover a
{
	text-decoration:none;
}
.footer ul li:hover i
{
	color:#a42b41;
}
.fo-icon::before
{
	content:'\f041';
	font-family: fontAwesome;
	margin-right:10px;
	font-size:16px;
	color: #fff;
}
#fo-email::before
{
	content:'\f0e0';
	font-size:16px;
}
#fo-mobile::before
{
	content:'\f10b';
}
/*2nd time quick connection*/
.second-footer
{
	position:relative;
	bottom:-50px;
}
#fo-phone
{
	font-family: 'Montserrat', sans-serif;
	letter-spacing:1.5px;
}
#fo-phone::before
{
	content:'\f095';
}
#fo-mail::before
{
	content:'\f0e0';
}
#fo-whats::before
{
	content:'\f232';
	color:darkblue;
}
.footer p
{
	font-size:14px;
	font-family:'Montserrat', sans-serif;
	line-height:28px;
	letter-spacing:1px;
}
#map
{
	text-align:center;
	color:#fff;
	font-weight:bold;
	font-size:18px;
}
.hrs
{
	margin-top:-30px;
	height:100px;
}
.hrs p{
  font-size:18px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing:1px;
  padding:60px 0px 0px 0px;
}
.second-footer 
{
	width: 180%;
	background-image:url('../images/contact2.png');
	background-position: center;
	background-size: 100% 100%;
	border-top:5px solid white;
}
.second-footer .btn
{
	padding:14px;
	margin-left:15px; 
}
.ss
{
	 
	height:50px;
}
.sphone
{
	padding:0px;
	margin-left:10px;
	font-weight: bold;
}
.sphone h6
{
	font-size:14px;
	margin-left:3px;
	font-weight: bold;
}
@media only screen and (max-width:576px)
{
  .footer h2
  {
    font-size:18px;
  }
  .footer p
  {
  	font-size:16px;
  }
  .footer ul li a
  {
    padding:5px 7px;
  }
  .footer ul li #fa
  {
    padding:5.5px 11px;
  }
  .quick-link span a
  {
  	font-size:16px;
  }
  .hrs p
  {
    font-size:12px;
  }
  #fo-phone, #fo-mail, #fo-whats
  {
    font-size:14px;
  }
  .second-footer 
  {
  	display: none;
  }
}
/*=====================End of footer section ==================*/
/*================== About Us Section started ===============*/
.about-us
{
	position: absolute;
	background-color:#fff;
	margin-top:-50px;
	z-index:10;
	box-shadow:0.5px 0.5px 7px 0.5px lightgrey;
}
.about-us p
{
	padding-top:20px;
	font-family:NexaLight;
	line-height:25px;
	position: relative;
	font-size: 18px;
	letter-spacing:1px;
}
.smile
{
	background:#dcf5f9;
	padding:40px;
}
.smile p
{
	font-size:22px;
	font-family:Open Sans;
	line-height:20px;
	letter-spacing:0.5px;
	color:#676767;

}
.smile p:before
{
	content:'\f10d';
  	font-family:fontAwesome;
  	margin-right:8px;
  	font-size:18px;
  	color: #000;
}
.smile p:after
{
	content:'\f10e';
	font-family:fontAwesome;
  	margin-left:10px;
  	font-size:18px;
  	color: #000;
}
.contactus
{
	height:400px;
	background:url('../images/contact-bg.jpg');
	background-position: center top;
	background-size:cover;
}
.demo h2
{
	line-height:392px;
}
@media only screen and (max-width: 980px)
{
	.contactus
	{
		width:100%;
	}
	.demo h2
	{
		font-size:16px;
	}
	.about-us p
	{
		font-size:16px;
	}
	.smile p
	{
		font-size:16px;
	}	
}
/*================== End of About Us section ================*/
/*================== owner section ================*/
.owner div 
{
	width:100%;
	height:240px;
	background-color:#ddd;
	padding:8px;
}
.owner div div
{
	width:100%;
	height: 225px;
	background-color:#f7f7f7;
}
.owner img
{
	width:100%;
	height:210px;
}
.techno h3
{
	font-size:18px;
}
.owner-name p
{
	font-size:18px;
	font-family: 'Montserrat',sans-serif;
	font-weight:bold;
}
.owner-name p span
{
	font-size:14px;
	color:darkblue;
}
/*================== End of owner section ================*/
/*================== mission & vision section start =========*/
.cus-div
{
	position: relative;
	width:100%;
	background:#d73874;
	height:380px;;
}
.cus-div:after
{
	position: absolute;
	width:98.92%;
	height:380px;;
	background-color:#d73874;
	z-index:-1;
	bottom: 0;
	content: '';
}
#vision:after
{
	transform-origin: left bottom;
	transform: skewY(3deg);
}
.cus-div h3
{
	font-family:Open Sans;
	font-style:normal;
	color:#1f386b;
	letter-spacing: 0.5px;
}
#vision p
{
	font-size:20px;
	font-weight: normal;
}
.cus-div img
{
	width:100%;
	position: relative;
	top:50px;
}
.mission h3
{
	font-family:Open Sans;
	font-style:normal;
	color:#1f386b;
	letter-spacing: 0.5px;
	margin-left:18px;
}
.mission img
{
	width:100%;
	position: relative;
	top: 100px;
}
.mission p
{
	color:#000;
	font-family:'Montserrat',sans-serif;
}
.mission ul 
{
	list-style: none; 
}
.mission ul li:before
{
	content: '\f101';
	font-family:fontAwesome;
	margin-right:10px;
	font-size:22px;
	background-image: linear-gradient(red 50%,yellow,green,blue);
	-webkit-background-clip:text;
	color:transparent;
	 

}
@media only screen and (max-width: 980px)
{
	.cus-div
	{
		height:320px;
	}
	#vision
	{
		height:320px;
		width:90%;
		background:#fff;
	}
	#vision h3
	{
		font-size:22px;
	}
	#vision p
	{
		font-family:NexaLight;
	}
	.mission h3
	{
		font-size:22px;
	}
	.mission p
	{
		font-family:NexaLight;
	}
}
/*================== end of mission & vision section ========*/
/*===============Founder Message ===========*/
.founder-message img
{
	width:100%;
	height:380px;
}
.founder-tagline h2
{
	font-family:'Montserrat',sans-serif;
	font-weight:bold;
	letter-spacing:1px;
}
.founder-tagline p
{
	color:grey;
	font-family:arial;
	font-weight: normal;
	font-size:16px;
	line-height:30px;
	letter-spacing:1px;
}
.founder-tagline h6
{
	font-size:18px;
	font-family:'Open',sans-serif;
}
.donate
{
	width:100%;
	height:200px;
	background:url('../images/center-box-bg.jpg');
	background-position: center;
	background-size: cover;
}
.donate-inner
{
	width:100%;
	height:200px;
	background-color:rgba(241,75,5,0.8);
	padding:8px;
}
.donate-inner p
{
	margin-top:-15px;
	font-size:16px;
}
.donate-inner .btn
{
	border:2px solid white;
	border-radius:30px;
	padding:5px 15px;
	color:#fff;
}
.donate-inner .btn:hover 
{
	background-color:white;
}
/*===============End of Founder Message ====*/
/*==============gallery section =======*/
.heading-gallery
{
	font-family: "Open Sans",Arial, Helvetica, sans-serif;
	font-size:22px;
	font-weight: bold;
	letter-spacing:2px;
	background-image:linear-gradient(45deg,#e1325b 25%,#05aeec);
	-webkit-background-clip:text;
	color: transparent;
}
/*==============End of gallery section ===*/
/*==========================Contact us =======================*/
.get-in-touch h3
{
	font-family:Juody;
	font-size:24px;
	margin-left:98px;
	color:#df335b;
	letter-spacing:2px;
}
.get-in-touch input
{
	background:#fff;
	color:black;
	border-radius:0px;
	border:1px solid #df335b;
	height:50px;
	box-shadow: none !important;
}
.get-in-touch select
{
	background:#fff;
	color:black;
	border-radius:0px;
	border:1px solid #df335b;
	height:50px;
	box-shadow: none !important;
}
.get-in-touch textarea
{
	background:#fff;
	color:black;
	border-radius:0px;
	border:1px solid #df335b;
	box-shadow: none !important;
}
.get-in-touch button
{
	margin-left:15px;
	background:#df335b;
	color:#fff;
	border-radius:0px;
	letter-spacing:1.5px;
}
.get-in-touch button:hover
{
	color: #fff;
	background:#85b52a;
}
.maps h3
{
	font-family:Juody;
	font-size:22px;
	color:#1ebeb6;
	letter-spacing:2px;
	font-weight:normal;	
}
.maps p
{
	color:#000000;
	font-size:18px;
	font-weight: normal;
	font-family: "Open Sans",Arial, Helvetica, sans-serif;
}
.maps h6
{
	color:#000000;
}
.maps h6 span
{
	font-weight:normal;
}
.address-head p
{
	font-family: Roboto !important;
	line-height: 25px;
	letter-spacing:0.5px;
	font-weight:300 !important;
	font-style: normal;
	font-size: 19px;
}
.address-head h2
{
	font-family:'Montserrat', sans-serif;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight:500 !important;
    font-style: normal;
    color: #131313;
    font-size:32px;
}
.loc h4
{
	color:#88b62a;
	font-size:22px;
	letter-spacing:0.5px;
	line-height:22px;
	font-family: Raleway,'Trebuchet MS', Helvetica, sans-serif;
	font-style: normal;
	font-weight:700;
}
.loc p
{
	font-size:300;
	line-height:22px;
	font-size:18px;
	font-family: Raleway,'Trebuchet MS', Helvetica, sans-serif;
}
/*==========================End of contact us =================*/

/* #whatsapp icon
================================================== */

.link-to-portfolio {
    position: fixed;
    bottom:20px;
    right: 30px;
    z-index: 200;
    cursor: pointer;
    width: 50px;
    height:50px;
    text-align: center;
    border-radius:50%;
    box-shadow: 0 0 0 2px rgba(12,12,12,.1);
    transition: opacity .2s, border-radius .2s, box-shadow .2s;
    transition-timing-function: ease-out;
    background-color:#34a853;
}
.link-to-portfolio .fa
{
	line-height:50px;
	color:#fff;
	font-size:35px;
}
.link-to-portfolio:hover {
    opacity: 0.8;
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(12,12,12,.1);
}

/*==============calling icons ==========*/
.center
{
	position:fixed;
	bottom:-5px;
	left:80px;
	transform: translate(-50%, -50%);
	z-index: 200;
}
.pluse
{
	width:50px;
	height:50px;
	background:#ff6d4a;
	border-radius:50%;
	color:#fff;
	font-size:20px;
	text-align: center;
	line-height:58px;
	font-family: verdana;
	text-transform:uppercase;
	animation:animate 3s linear infinite;
}
.pluse a
{
	color:#000;
	font-size:28px;
}
@keyframes animate
{
	0%
	{
		box-shadow:0 0 0 0 rgba(255,109,74,.7), 0 0 0 0 rgba(255,109,74,.7);
	}
	40%
	{
		box-shadow:0 0 0 20px rgba(255,109,74,0), 0 0 0 0 rgba(255,109,74,.7);
	}
	80%{
		box-shadow: 0 0 0 20px rgba(255,109,74,0), 0 0 0 20px rgba(255,109,74,0);
	}
	100%{
		box-shadow:0 0 0 0 rgba(255,109,74,0), 0 0 0 20px rgba(255,109,74,0);
	}
}
@media only screen and (max-width: 767px)
{
	.center
	{
		left:27px;
	}
	.pluse
	{
		width:35px;
		height:35px;
		line-height:35px;
	}
	.pluse a
	{
		font-size:20px;
	}
	.link-to-portfolio
	{
		width:35px;
		height: 35px;
		right:13px;
		bottom:15px;
	}
	.link-to-portfolio .fa
	{
		font-size:20px;
		line-height:37px;
	}
}
/*=============end of calling icons ====*/
@media only screen and (max-width:767px)
{
	.contactus
	{
		width:100%;
		height:200px;
	}
	.demo
	{
		width:100%;
		height: 200px;
	}
	.demo h2
	{
		line-height:250px;
	}
	.abo h2
	{
		line-height:200px;
	}
}

/*==========================Contact us =======================*/
.demo
{
	background:rgba(0,0,0,0.7);
}
.demo h2
{
	line-height:
}
.get h3
{
	font-family:Juody;
	font-size:24px;
	margin-left:98px;
	color:#1ebeb6;
	letter-spacing:2px;
}
.get input
{
	background:#fff;
	color:black;
	border-radius:0px;
	border:1px solid #1ebeb6;
	height:50px;
}
.get textarea
{
	background:#fff;
	color:black;
	border-radius:0px;
	border:1px solid #1ebeb6;
}
.get button
{
	margin-left:15px;
	background:#1ebeb6;
	color:#fff;
	border-radius:0px;
	letter-spacing:1.5px;
}
.maps h3
{
	font-family:Juody;
	font-size:22px;
	color:#1ebeb6;
	letter-spacing:2px;
	font-weight:normal;	
}
.maps p
{
	color:#000000;
	font-size:18px;
	font-weight: normal;
	font-family: "Open Sans",Arial, Helvetica, sans-serif;
}
.maps h6
{
	color:#000000;
}
.maps h6 span
{
	font-weight:normal;
}
.address-head p
{
	font-family: Roboto !important;
	line-height: 25px;
	letter-spacing:0.5px;
	font-weight:300 !important;
	font-style: normal;
	color: 676767;
	font-size: 19px;
}
.address-head h2
{
	font-family: Ubuntu,'Trebuchet MS', Helvetica, sans-serif;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight:500 !important;
    font-style: normal;
    color: #131313;
    font-size:32px;
}
.location h4
{
	color: #1ebeb6;
	font-size:19px;
	letter-spacing:0.5px;
	line-height:22px;
	font-family: Raleway,'Trebuchet MS', Helvetica, sans-serif;
	font-style: normal;
	font-weight:700;
}
.location p
{
	font-size:300;
	line-height:22px;
	font-family: Raleway,'Trebuchet MS', Helvetica, sans-serif;
}
/*==========================End of contact us =================*/

/*===============Counselling section css ==============*/
.counsell-from
{
	 
	width: 100%;
	background-image: url('../images/bigdream.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.counsell
{ 
	background-color:rgba(0,0,0,0.5);
}
.counsell #counsell-head
{
	margin-left:100px;
	font-family:'Montserrat',sans-serif;
}
#counsell-head
{
	margin-top:180px;
}
.counsell-right
{
	width:70%;
	height:400px;
	background-color: rgba(255,255,255,.3);
	position: relative;
	top: 50px;
	padding:35px;
	border-top-left-radius:15%;
	border-bottom-right-radius:15%;
	 
}
.counsell-right input[type="text"], input[type="email"]
{
	 
	box-shadow: none!important;
	height:40px;
	border-radius: 22px;
	border:1px solid black;
}
.counsell-right select
{ 
	box-shadow: none!important;
	height:40px;
	border-radius: 22px;
	border:1px solid black;
}
.counsell-right textarea
{ 
	box-shadow: none!important;
	height:40px;
	border-radius: 22px;
	border:1px solid black;
	resize:none;
}
.counsell-right input[type="submit"]
{
	box-shadow: none!important;
	height:40px;
	border-radius: 22px;
	border:1px solid black;
}
.m-form input[type="email"]
{

	box-shadow: none!important;
	height:40px;
	border-radius:4px;
	background-color:rgba(255,255,255,1);
	border:1px solid lightgrey;
}
.get-in-touch input[type="email"]
{
	box-shadow: none!important;
	height:50px;
	border-radius: 0px;
	background-color:rgba(255,255,255,1);
	border:1px solid #df335b;	
}
/*===============End of Counselling section css ========*/
.footers a:hover 
{text-decoration:none !important; color:red !important;
}


.quick_enquiry{
	writing-mode: vertical-rl;
	text-orientation: revert; color:black;position:fixed; right:0px; top:40%; background:black; color:white; 
	transform: rotate(180deg);
}



.hrline_red{
	margin-bottom: 15px;
	margin-top: 6px;
	padding-bottom: 5px;
	position: relative;
}

.hrline_red:after {
	border-radius: 8px;
	bottom: 1px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 64px;
	background: orange;
}

.hrline_red:before {
	border-radius: 8px;
	bottom: -1px;
	content: "";
	height: 6px;
	left: 10px;
	position: absolute;
	width: 24px;
	background: orange;
} 
.bold{font-weight:bold;}
.n_font{
	font-family: 'Calibri Light';  color:black; font-size:1.2rem;  text-align:justify;
}
.n_font1{
	font-family: 'Calibri';  color:black; font-size:1.2rem;  text-align:justify;
}
.bg-adv{
 
background:url(../images/gallery/11.JPG); background-size:100% 100%; height:auto; clear:both;
}
.bg-adv1{
 
background:url(../images/11.jpg); background-size:100% 100%; height:500px; clear:both;
}
.crede_yojna_adv{
background:url(../images/1.jpeg); background-size:100% 100%; height:500px; clear:both;
}
.nirf_bg{
 
background:url(../images/nirf_banner.png); background-size:100% 100%; height:350px; clear:both;
}
.edu_p{
	font-family: 'Calibri Light';  color:black; font-size:1.1rem; font-weight:bold; text-align:justify;
}
.testi_p{
	font-family: 'Calibri';  color:blue; font-size:1.1rem;text-align:center; 
}
.index_p{
	font-family: 'Calibri'; font-size:1.1rem;text-align:justify; 
}
.h5-sm{
	font-family: 'Calibri';  color:black; font-size:1.2rem;   
}
.news_p{
	font-family: 'Calibri';  color:black; font-size:1.1rem;   
}
.news_p a{
	  color:black; 
}
.news_p a:hover{
	  color:red; text-decoration:none; 
}
.crede_yojna
{
	background:url(../images/banner_student_creditcard.png); background-size:100% 100%; height:380px;; clear:both;
}
.eng_bg
{
	background:url(../images/engbg.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.exam_bg
{
	background:url(../images/theadmission.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.medical_bg
{
	background:url(../images/engbg2.jpg); background-size:100% 100%; height:380px;; clear:both;
}.law_bg
{
	background:url(../images/law.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.logo_scheme
{
	background:url(../images/slider/2.jpeg); background-size:100% 100%; height:250px; clear:both;
}
.nirf_scheme
{
	background:url(../images/slider/2.jpeg); background-size:100% 100%; height:200px; clear:both;
}
.medical_scheme1
{
	background:url(../images/poster-1.jpeg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme
{
	background:url(../images/banner1.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme1
{
	background:url(../images/2023_creditcard.jpeg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme2
{
	background:url(../images/2023_engineering1.jpeg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme3
{
	background:url(../images/3.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme4
{
	background:url(../images/4.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme5
{
	background:url(../images/2023_engineering.jpeg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme6
{
	background:url(../images/6.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme7
{
	background:url(../images/7.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme8
{
	background:url(../images/8.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme9
{
	background:url(../images/9.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme10
{
	background:url(../images/gallery/11.JPG); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme11
{
	background:url(../images/11.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme12
{
	background:url(../images/12.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme13
{
	background:url(../images/13.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme14
{
	background:url(../images/gallery/1.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme15
{
	background:url(../images/15.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme16
{
	background:url(../images/16.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme17
{
	background:url(../images/17.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme18
{
	background:url(../images/18.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme19
{
	background:url(../images/19.jpg); background-size:100% 100%; height:380px;; clear:both;
}
.edu_scheme20
{
	background:url(../images/20.jpg); background-size:100% 100%; height:390px; clear:both;
}
.credit_scheme	
{
	background:url(../images/credeit_yojna.jpg); background-size:100% 100%; height:400px; clear:both; 
}
.tags:hover{
	background-color:orange;
	color:white;
	border:1px solid red;
}

.blink-soft {
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.nirf-img
{height:200px; width:200px; display: flex;
justify-content: center; 
align-items: center;   box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;}
 

.nirf-img img{ width: 60%; -webkit-transition: transform 0.5s ease-in-out; -moz-transition: transform 0.5s ease-in-out; transition: transform 0.5s ease-in-out; }
.nirf-img img:hover {
-moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-o-transform: scale(1.2);
-ms-transform: scale(1.2);
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
.medical-inner{
height: 200px;
width:200px;
border-top-left-radius: 50%;
border-top-right-radius: 50%;
background:white;
} 

.medical-inner a{color:red;font-family: 'Calibri';}
.medical-inner a:hover{text-decoration:none;font-weight:bold;}
.medical-img img{ width: 50%; -webkit-transition: transform 0.5s ease-in-out; -moz-transition: transform 0.5s ease-in-out; transition: transform 0.5s ease-in-out; }
.medical-img img:hover {
-moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-o-transform: scale(1.2);
-ms-transform: scale(1.2);
-webkit-transform: scale(1.2);
transform: scale(1.2);
}

.nirf-img1 img{ -webkit-transition: transform 0.5s ease-in-out; -moz-transition: transform 0.5s ease-in-out; transition: transform 0.5s ease-in-out; }
.nirf-img1 img:hover {
-moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-o-transform: scale(1.2);
-ms-transform: scale(1.2);
-webkit-transform: scale(1.2);
transform: scale(1.2);
}  
.animate-charcter
{ 
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 5s linear infinite;
  display: inline-block;
      font-size: 190px;
}

@keyframes textclip {
  to {
    background-position: -200% center;
  }
} 
 
 
.item-a{ 
	scroll-snap-align: center;
	display: inline-block;
	border-radius: 3px;
	font-size: 0;
}
.gallery {
	padding: 1rem;
	display: grid;
	grid-template-columns: repeat(10, 80vw);
	grid-template-rows: 1fr;
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
	overflow: scroll;
	height: 90vh;
	scroll-snap-type: both mandatory;
	scroll-padding: 1rem;
} 
.text-bluedk{color:#004d99;}
.bold { font-weight:bold;}
.bg-bluedark{background-color:#002699;}
.bg-blue{background-color:#058FD0;}
.bg-bluelt{background-color:#49BBF1;}
.bg-bluelight{background-color:#BEEAFF;}
.bg-cyandk {  background-color:#2AC4CC;	 }
.bg-cyanlt {  background-color:#57E7EF;	 }
.bg-cyanlight {  background-color:#ECFEFF;	 }
.bg-orange{background-color:#FF4300;}
.bg-orangelt { 	background-color:#FFE4C2; }
.bg-orangelight { 	background-color:#FFF5E8; }
.bg-greendk { 	background-color:#05742E; }
.bg-greenlt { 	background-color:#76ffc2; }
.bg-greenlight { 	background-color:#c2ffe4; }

.img-hover-zoom img {
  transition: transform .5s ease; 
  border-radius:10%;  
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.2);
  z-index:99999; 
}
.disable-select
{
	user-select: none; /* supported by Chrome and Opera */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
} 
.news_letter_div{
	height:330px; margin-right:-15px;  overflow-y: scroll;
}
.news_letter_div p { 
	font-size:1.1rem;
	color:black;
}























 
 


@media screen and (min-width: 1100px) {
 
}

 @media screen and (min-width: 780px) {
 	 

}
    
@media screen and (max-width: 989px) {
	.header-left-logo
	{
	  margin-top:50px; 
	} 
	.tophead{margin-left:-80px;}
 
}

@media screen and (max-width: 894px) {
    .header-left-logo
	{
	  margin-top:50px; 
	} 
 
}

@media screen and (max-width: 769px) {
 .header-left-logo
	{
	  margin-top:25px; clear:both;
	} 
 
}

@media screen and (max-width: 820px) {
 
}

@media screen and (max-width: 787px) {
 
}

@media screen and (max-width: 768px) {
 
}

@media screen and (max-width: 762px) {
 
}

@media screen and (max-width: 721px) {
 
}

@media screen and (max-width: 661px) {
 
}

@media screen and (max-width: 600px) {
 
}

@media screen and (max-width: 576px) {
 
}

@media screen and (max-width: 500px) {
 .carousel{
	 margin-top:-20px;
 }
}

@media screen and (max-width: 441px) {
 
}

@media screen and (max-width: 417px) {
 
}

@media screen and (max-width: 390px) {
 
}

@media screen and (max-width: 369px) {
 
}

@media screen and (max-width: 333px) {
 
}

@media screen and (max-width: 320px) {
 

} 