/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
	font-family: "Open Sans", sans-serif;
	color: #444444;
}

a {
	color: #fdb53a;
}

a:hover {
	color: #42aaf4;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #f7c360;
	border-top-color: #d2f9eb;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}

.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	background: #3a3a3a;
	color: #fff;
	transition: all 0.4s;
}

.back-to-top i:hover {
	background: #3a3a3a;
	color: #fff;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
	height: 80px;
	transition: all 0.5s;
	z-index: 997;
	transition: all 0.5s;
}

#header.header-scrolled {
	background: rgba(247, 247, 247, 0.9);*
	height: 60px;
}

#header .logo h1 {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: #fff;
	text-decoration: none;
}

#header .logo img {
	padding: 0;
	margin: 0;
	max-height: 50px;
}

@media (max-width: 992px) {
	#header {
		height: 64px;
	}
	#header .logo h1 {
		font-size: 28px;
	}
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	float: left;
}

.header-scrolled .nav-menu a {
	color: rgb(255 164 0);
	text-shadow: none;
}

.header-scrolled .nav-menu a:hover,
.header-scrolled .nav-menu .active>a,
.header-scrolled .nav-menu li:hover>a {
	color: rgb(255 164 0);
	text-decoration: none;
	text-shadow: none;
}

.nav-menu a {
	display: block;
	position: relative;
	color: #fff;
	padding: 10px 0 10px 25px;
	transition: 0.3s;
	font-size: 16px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	text-shadow: 0px 2px 3px rgb(0, 0, 0, 0.48);
}

.cp-btn {
	background: #ffb839;
	padding: 10px 5px!important;
	margin-left: 20px;
	/* font-size: 16px!important; */
	border-radius: 5px;
}

.header-scrolled .cp-btn {
	background: #ffb839;
	padding: 10px 5px!important;
	margin-left: 20px;
	/* font-size: 16px!important; */
	border-radius: 5px;
	text-shadow: none;
	color: #fff!important;
}


/*
.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 25px;
  background-color: #f7c360;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
*/

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
	visibility: visible;
	width: 25px;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
	color: #fff;
	text-decoration: none;
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 25px;
	top: calc(100% - 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
	border-radius: 5px;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 12px;
	font-weight: 500;
	text-transform: none;
	color: #000000;
	text-shadow: none;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
	color: #ffae20;
}

.nav-menu .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down>a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}
	.nav-menu .drop-down .drop-down:hover>ul {
		left: -100%;
	}
	.nav-menu .drop-down .drop-down>a:after {
		content: "\ea9d";
	}
}


/* Mobile Navigation */

.mobile-nav-toggle {
	position: fixed;
	right: 15px;
	top: 15px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	color: #000;
}

.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #ff8302;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	color: #ffb839;
	text-decoration: none;
}

.mobile-nav .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down>a:after {
	content: "\eaa1";
}

.mobile-nav .drop-down>a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(0, 0, 0, 0.8);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
	width: 100%;
	background-image: url("../img/hero-bg.jpg");
	background-position: center;
	background-attachment: scroll;
	background-repeat: no-repeat;
	position: relative;
	/*  padding: 200px 0 120px 0;*/
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100vh;
}


/*
#hero:before {
  content: "";
  background: rgba(2, 5, 161, 0.91);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
*/


/*
#hero h1 {
    margin: 0 0 20px 0;
    font-size: 35px;
    font-weight: 700;
    line-height: 56px;
    color: rgba(0, 0, 0, 0.8);
}
*/

#hero h1 span {
	color: #fff;
	border-bottom: 4px solid #1acc8d;
}


/*
#hero h2 {
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    font-size: 18px;
    width: 75%;
    margin: 0px auto;
    line-height: 35px;
}
*/

.hero-msg {
	position: absolute;
	bottom: 0px;
	/*    text-align: center;*/
	width: 100%;
	color: #fff;
	background: rgba(0, 0, 0, 0.3);
	padding: 20px 0px;
}

.hero-msg h1 {
	font-size: 38px;
	font-weight: 700;
	line-height: 56px;
	text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.95);
}

.hero-msg h2 {
	font-size: 21px;
	text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
	line-height: 34px;
}

.hero-msg .know-more {
	color: #fff;
	background: #ffb839;
	padding: 9px 16px;
	display: inline-block;
	text-transform: uppercase;
	font-size: 18px;
	width: 100%;
	text-align: center;
	border-radius: 5px;
	margin-top: 45px;
	box-shadow: -2px 6px 5px rgba(0, 0, 0, 0.58);
	cursor: pointer;
	text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.78);
	position: relative;
	overflow: hidden;
}

.hero-msg .know-more:after {
	content: "";
	position: absolute;
	top: -110%;
	left: -210%;
	width: 200%;
	height: 200%;
	opacity: 0;
	transform: rotate(30deg);
	background: rgba(255, 255, 255, 0.13);
	background: linear-gradient( to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
}


/* Hover state - trigger effect */

.hero-msg .know-more:hover:after {
	opacity: 1;
	top: -30%;
	left: -30%;
	transition-property: left, top, opacity;
	transition-duration: 0.7s, 0.7s, 0.15s;
	transition-timing-function: ease;
}


/* Active state */

.hero-msg .know-more:active:after {
	opacity: 0;
}

#hero .btn-get-started {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 50px;
	transition: 0.5s;
	color: #fff;
	background: #1acc8d;
}

#hero .btn-get-started:hover {
	background: #17b57d;
}

#hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media only screen and (min-width: 320px) and (max-width: 1023px) {
	.hero-msg .know-more {
		margin-top: 0px;
	}
}


/*@media (min-width: 320px) {

  #hero {
    background-attachment: fixed;
  }
}
*/

@media (max-width: 991px) {
	#hero {
		padding-top: 80px;
	}
	#hero .animated {
		-webkit-animation: none;
		animation: none;
	}
	#hero .hero-img {
		text-align: center;
	}
	#hero .hero-img img {
		max-width: 50%;
	}
	#hero h1 {
		font-size: 22px;
		line-height: 32px;
		margin-bottom: 10px;
	}
	#hero h2 {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 30px;
		/*    width: 90%;*/
	}
	.promotion-section {
		padding: 15px 0 0 0;
	}
	.bundle {
		background: #ffffff;
		padding: 0px 0px;
	}
}

@media (max-width: 575px) {
	#hero .hero-img img {
		width: 80%;
	}
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f5f5ff;
}

.section-title {
	padding-bottom: 40px;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #aaaaaa;
	font-family: "Poppins", sans-serif;
}

.section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: #f6bf59;
	margin: 4px 10px;
}

.section-title p {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	color: #rgba(0, 0, 0, 0.8);
}


/*--------------------------------------------------------------
# promotion-section
--------------------------------------------------------------*/

.promotion-section {
	padding: 10px 0 0 0;
}

.promotion-suits {
	/*    border: 1px solid #f8f8f8;*/
	background: #e8f4ff;
	background: -moz-linear-gradient(left, #e8f4ff 30%, #ffffff 100%);
	background: -webkit-linear-gradient(left, #e8f4ff 30%, #ffffff 100%);
	background: linear-gradient(to right, #e8f4ff 30%, #ffffff 100%);
	vertical-align: middle;
	width: 100%;
	text-align: center;
}

.promotion-suits a {
	color: #000;
	display: block;
	padding: 60px 20px 60px 20px;
	position: relative;
	overflow: hidden;
}

span.u18-outline {
	position: absolute;
	top: -109px;
	left: -140px;
}

span.u18-outline img {
	width: 540px;
	opacity: 0.2;
}

.know-more {
	color: #fff;
	background: #ffb839;
	padding: 8px 20px;
	display: inline-block;
	text-transform: uppercase;
	font-size: 14px;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.product-box {
	width: 24%;
	padding: 30px 20px;
	border-top: 1px solid #f2f2f2;
	display: inline-block;
	box-sizing: border-box;
	position: relative;
}

.product-box::after {
	position: absolute;
	content: "";
	width: 1px;
	height: 100%;
	background: #f2f2f2;
	right: -3px;
}

.product-box:nth-child(4n+4):after {
	background: transparent;
	content: "";
}

.product-list ul li:nth-child(-n+4) {
	border-top: none;
}

.product-box a {
	padding: 0 0 0 80px;
	font-size: 14px;
	color: #000;
	position: relative;
	display: inline-block;
	font-weight: 600;
}

.product-box span {
	position: absolute;
	left: 0;
	top: 0;
}

.product-box span img {
	width: 65px;
	background: #f1f1f175;
	padding: 3px;
	border-radius: 3px;
}

.product-list label {
	display: block;
	font-size: 12px;
	color: #333;
	cursor: pointer;
	margin-top: 6px;
	height: 125px;
	overflow: hidden;
}

.know-more button {
	background: transparent;
	border: none;
	color: #fff;
}

.product-list ul {
	list-style: none;
	padding-left: 0px;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.product-box em {
	font-size: 11px;
	text-transform: uppercase;
	border: 1px solid #f3b343;
	padding: 6px 12px;
	margin-top: 15px;
	/*    display: inline-block;*/
	color: #f1a92b;
	font-style: normal;
	display: none;
}

.mi {
	color: #36304e;
	font-size: 18px;
}

@media only screen and (min-width: 320px) and (max-width: 1023px) {
	.product-box {
		width: 49% !important;
		border: none !important;
	}
	.product-box a {
		padding: 70px 0 0 0px !important;
	}
	.product-box::after {
		position: absolute;
		content: "";
		width: 1px;
		height: 100%;
		background: transparent !important;
		right: -3px;
	}
}


/*--------------------------------------------------------------
# Bundle
--------------------------------------------------------------*/

.bundle {
	background: #ffffff;
	padding: 40px 0px;
}


/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
	padding: 80px 0;
	background: url("../img/cta-bg.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

.testimonials::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
}

.testimonials .section-header {
	margin-bottom: 40px;
}

.testimonials .testimonial-item {
	text-align: center;
	color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
	width: 100px;
	border-radius: 50%;
	border: 6px solid rgba(255, 255, 255, 0.15);
	margin: 0 auto;
}

.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #fff;
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: #ddd;
	margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: rgba(255, 255, 255, 0.4);
	font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 auto 15px auto;
	color: #eee;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
	margin-top: 5px;
	text-align: center;
}

.testimonials .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
	background-color: #f4b547 !important;
}

@media (min-width: 1024px) {
	.testimonials {
		background-attachment: fixed;
	}
}

@media (min-width: 992px) {
	.testimonials .testimonial-item p {
		width: 80%;
	}
}


/*--------------------------------------------------------------
# Client
--------------------------------------------------------------*/

.team {
	background: #fff;
	padding: 30px 0px 30px 0px;
}

.team .member.adbu {
	background-image: url(../img/adbu.jpg);
}

.team .member.uom {
	background-image: url(../img/uom.jpg);
}

.team .member.gndu {
	background-image: url("../img/GNDU_campus.jpg");  
}
.team .member.vtu {
	background-image: url("../img/VTU_campus.jpg");  
}

.team .member {
	/* margin-bottom: 80px; */
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 130px 0px;
	border: 10px solid #f8f8f8;
	box-shadow: 0 8px 6px 0px rgb(0, 0, 0, 0.2);
	overflow: hidden;
	margin-bottom: 20px;
}

.team .member::after {
	content: "";
	position: absolute;
	bottom: 0px;
	display: block;
	width: 100%;
	height: 100px;
	z-index: 0;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(0, 0, 0, 1) 100%);
}

.pic-box {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
	top: 0;
}

.pic-box span {
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 21px;
	text-shadow: -1px 7px 3px rgb(0 0 0 / 47%);
	/* background: rgba(255,255,255,0.2); */
	width: 100%;
	display: inline-block;
	text-align: center;
	position: absolute;
	bottom: 5px;
}

.pic-box p {
	width: 100%;
	margin: 0px auto;
	position: relative;
	top: 0;
}

.pic-box a {
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgb(254 167 11) 0%, rgb(252 224 175) 100%);
    width: 100%;
    display: inline-block;
    transform: rotate(320deg);
    left: -190px;
    position: relative;
    top: 20px;
    color: #0c0c0c;
    text-align: center;
    padding: 4px 0px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

@media only screen and (min-width: 320px) and (max-width: 1209px) {
	.pic-box a {
		transform: rotate(0deg);
		left: 0px;
		top: 0px;
	}
}

.pic-box a:after {
	content: '';
	top: 0;
	transform: translateX(100%);
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	animation: slide 1.5s infinite 3s;
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), color-stop(99%, rgba(128, 186, 232, 0)), color-stop(100%, rgba(125, 185, 232, 0)));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* IE10+ */
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#007db9e8', GradientType=1);
	/* IE6-9 */
}


/* animation */

@keyframes slide {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.team .member .pic {
	border-radius: 4px;
	/*  overflow: hidden;*/
}

.team .member img {
	transition: all ease-in-out 0.4s;
	width: 90px;
	/*    filter: grayscale(1);*/
	/* float: left; */
	position: absolute;
	left: 0;
	right: 0;
	margin: 0px auto;
	top: 50%;
}

.team .member:hover img {
	transform: scale(1.1);
	filter: none;
}

.team .member .member-info {
	padding: 20px 0;
}

.team .member h4 {
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 12px;
	color: #373737;
	position: relative;
	padding-bottom: 10px;
}


/*
.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #0d12fc;
  bottom: 0;
  left: calc(50% - 25px);
}
*/

@media only screen and (min-width: 320px) and (max-width: 991px) {
	.cp-btn {
		background: transparent;
		padding: 10px 20px!important;
		margin-left: 0px;
		/* font-size: 16px!important; */
		border-radius: 5px;
	}
	/*
	.team .member img {
    width: 50px;
}
*/
	.pic-box span {
		font-size: 15px;
	}
	team .member {
		padding: 80px 0px;
	}
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
	width: 100%;
	background: #fff;
}

.contact .info i {
	font-size: 20px;
	color: #000000;
	float: left;
	width: 44px;
	height: 44px;
	background: #fdc259;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #373737;
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #373737;
}

.contact .info .email,
.contact .info .phone {
	margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
	background: #ffb839;
	color: #fff;
}

.contact .php-email-form {
	width: 100%;
	background: #fff;
}


/*
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
*/

.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 0px 0;
	font-weight: 400;
	font-size: 13px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
	background: #ffb839;
	border: 0;
	padding: 10px 30px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #fdc259;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
	background: #333;
	padding: 0 0 30px 0;
	color: #fff;
	font-size: 14px;
}

#footer .footer-top {
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 15px;
	background: #010246;
	color: #fff;
	border-top: 4px solid #1acc8d;
	text-align: center;
	padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #1acc8d;
	color: #fff;
	text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: #ccc;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #61ebba;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #ccc;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	color: #ffb839;
}

#footer .footer-top .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px 6px 15px;
	position: relative;
	border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: 0;
	right: -2px;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: #1acc8d;
	color: #fff;
	transition: 0.3s;
	border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
	background: #149f6e;
}

#footer .copyright {
	/*    border-top: 1px solid #4a4a4a;*/
	text-align: center;
	padding-top: 20px;
	color: #ccc;
	font-size: 12px;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #fff;
}

@media (max-width: 575px) {
	#footer .footer-top .footer-info {
		margin: -20px 0 30px 0;
	}
}

.common-links {
	margin-top: 0px;
	padding: 15px 0;
}

.common-links {
	position: relative;
	/*
    padding-top: 40px;
    margin-top: 30px;
*/
	font-size: 12px;
	text-align: center;
}

.common-links ul {
	list-style: none;
	margin-bottom: 5px;
	padding-left: 0px;
}

.common-links ul li:first-child {
	padding-left: 0;
}

.common-links ul li:last-child {
	padding-right: 0;
	border-right: none;
}

.common-links ul li {
	display: inline-block;
	border-right: 1px solid #ccc;
	padding: 0 10px;
	margin-bottom: 10px;
}

.u18privacy li {
	line-height: 12px;
}

.common-links ul li a {
	display: inline-block;
	color: #ccc;
	text-decoration: none;
	padding: 0;
}


/*==================== U18 | LMS ======================*/

.product-logo span {
	color: #000;
	font-weight: 600;
	position: relative;
	top: 5px;
	left: 10px;
	font-size: 20px;
}

a.get-btn {
	background: #fd3131;
	padding: 6px 10px;
	margin-left: 15px;
	color: #fff!important;
	border-radius: 3px;
	display: none;
}

.header-scrolled a.get-btn {
	display: inline-block;
}

section.slogan {
	background: rgb(245, 245, 171);
	background: -moz-linear-gradient(top, rgba(245, 245, 171, 1) 0%, rgba(227, 252, 224, 1) 51%, rgba(255, 255, 255, 1) 100%);
	background: -webkit-linear-gradient(top, rgba(245, 245, 171, 1) 0%, rgba(227, 252, 224, 1) 51%, rgba(255, 255, 255, 1) 100%);
	background: linear-gradient(to bottom, rgba(245, 245, 171, 1) 0%, rgba(227, 252, 224, 1) 51%, rgba(255, 255, 255, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5ab', endColorstr='#ffffff', GradientType=0);
	padding: 120px 0px 0px 0px;
}

.product-slogan h1 {
	font-size: 42px;
	font-weight: 600;
	color: #000;
	margin-bottom: 20px;
}

.product-slogan h2 {
	font-size: 14px;
	line-height: 1.6;
	font-weight: normal;
}

.slogan .php-email-form {
	padding: 30px 15px 30px 15px;
	border-radius: 5px;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.8);
}

.contact .php-email-form input.form-check-input {
	height: auto;
	position: relative;
	top: 2px;
	left: -2px;
}

label.form-check-label a {
	text-decoration: underline;
	color: inherit;
}

.ucountry-info.ushow {
	font-size: 11px;
}

.slogan .form-group.form-check {
	font-size: 11px;
}

.slogan .contact .php-email-form button[type="submit"] {
	width: 100%;
	border-radius: 0px;
	font-size: 14px;
	background: #fd3131;
}

.promo-sec-wrap {
	position: relative;
	text-align: center;
}

.promo-sec-wrap .pattern {
	position: absolute;
	width: 100%;
	left: 0;
	opacity: 0.3;
	right: 0;
	margin: 0px auto;
	z-index: 0;
	top: 20%;
}

.promo-sec-wrap .content-wrap {
	z-index: 10;
}

.details h2 {
	/*    text-align: center;*/
	margin-bottom: 30px;
}

.details.team img {
	width: 100%;
}

.details img {
	width: 140px;
}

.details .content ul {
	list-style: none;
	padding: 0;
	position: relative;
}

.details .content ul::after {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	border: 3px solid #e5fad7;
	transform: rotate(45deg);
	top: 0;
	right: 0;
	opacity: 0.8;
}

.details .content ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #1acc8d;
}

.details .content ul li {
	padding-bottom: 10px;
}

.details .u-team img {
	width: 100%;
}

.btn-get-started {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 3px;
	transition: 0.5s;
	color: #fff;
	background: #fd3131;
}

@media (max-width: 992px) {
	.product-slogan h1 {
		font-size: 25px;
	}
}


/*==================== U18 | LMS ======================*/

span.makeinindia {
	position: absolute;
	top: -70px;
	right: 0;
	opacity: 0.3;
}

.fixed-top .sticky-header {
	display: none;
}

.fixed-top.header-scrolled .normal-header {
	display: none;
}

.fixed-top.header-scrolled .sticky-header {
	display: block;
}

.modal-body label {
	font-size: 12px;
	color: #1a6e85;
}

.form-group .form-control {
	border-color: currentcolor currentcolor #1a6e85;
	border-image: none;
	border-radius: 0;
	border-style: none none solid;
	border-width: medium medium 1px;
	box-shadow: none;
	font-size: 13px;
	height: 30px;
	padding: 3px 0;
}

.btn.btn-primary.submit {
	background: #1a6e85;
	border: medium none;
	color: #fff;
}

.modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1.5rem;
}

.v-h2 {
	font-weight: 700;
	color: #2d2d2d;
}

.st-h4 {
	font-size: 20px;
	color: #2f9780;
	margin-bottom: 35px;
	position: relative;
}

.st-h4::after {
	content: "";
	position: absolute;
	width: 32px;
	height: 3px;
	background: #2f9780;
}

.st-h4 span {
	display: block;
	font-size: 14px;
	margin: 10px 0px;
}

.testimonials-block p i {
	font-size: 24px;
	color: #f6bc54;
}

section#video-testimonials {
	background: #f8f8f8;
	padding: 30px 0px 30px 0px;
}

section.custome-contact {
	padding: 0;
	background: #333333;
	/*    border-bottom: 1px solid #4a4a4a;*/
}

@media only screen and (min-width: 320px) and (max-width: 1023px) {
	.red-block {
		overflow: hidden;
	}
	.bg-text {
		font-size: 3.2em !important;
		bottom: -25px !important;
	}
}

.red-block {
	background: #ffb839;
	width: 100%;
	display: inline-block;
	height: 100%;
	position: relative;
	/*    overflow: hidden;*/
	padding-bottom: 10px;
}

.bg-text {
	position: absolute;
	font-size: 5.2em;
	font-weight: 800;
	bottom: -41px;
	left: -9px;
	color: #de9c27;
}

.paper-airplane {
	width: 56px;
	height: 56px;
	display: block;
	position: relative;
	float: right;
	margin: 40px 79px 0 40px;
	background: transparent url(../img/paper-airplane.png) 0 0 no-repeat;
}

.red-block span {
	font-size: 2em;
	text-transform: none;
	line-height: 2.8;
	padding: 0 41px 9px 0;
	margin-top: 23px;
	float: right;
	border-right: 1px solid #fbfaf9;
	color: #fff;
}

.red-block::after {
	content: "";
	position: absolute;
	border-color: transparent transparent transparent #ffb839;
	border-style: solid;
	border-width: 12px 0 12px 15px;
	right: -15px;
	top: 18px;
}

.description {
	box-sizing: border-box;
	padding: 30px;
}

.email-txt {
	color: #ffb839;
	font-size: 22px;
	display: block;
}

a.white {
	color: #fff;
}

section.map-address {
	padding: 60px 0px;
	position: relative;
	background: url("../img/map.jpg") no-repeat;
	background-size: cover;
	background-position: center center;
}

.map-address .row {
	position: relative;
	z-index: 100;
}

.address-info {
	z-index: 10;
	background: #333333;
	color: #fff;
	box-sizing: border-box;
	padding: 20px;
}

.address-info h4 {
	color: #616161;
	font-size: 1em;
	line-height: 1.5;
	margin: .8em 0;
}

.address-info p {
	color: #c8c9c9;
	font-size: 14px;
	line-height: 1.8;
}

.map-box {
	position: absolute;
	top: 0;
	width: 100%;
}

.map-overlay {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0;
	z-index: 1;
}


/*
.hide{
display:none;
 }
*/

.modal2 {
	will-change: visibility, opacity;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 1000;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition-delay: $modal-delay;
	transition-delay: $modal-delay;
}

.modal--active {
	visibility: visible;
	opacity: 1;
}

.modal--align-top {
	-webkit-box-align: start;
	align-items: flex-start;
}

.modal__bg {
	background: transparent;
}

.modal__dialog {
	max-width: 600px;
	padding: 1.2rem;
}

.modal__content {
	will-change: transform, opacity;
	position: relative;
	padding: 2.4rem;
	background: #ffebee;
	background-clip: padding-box;
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
	opacity: 0;
	-webkit-transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal__content--active {
	opacity: 1;
}

.modal__close {
	z-index: 1100;
	cursor: pointer;
}

.modal__trigger {
	position: relative;
	display: inline-block;
	padding: 1.2rem 2.4rem;
	color: rgba(0, 0, 0, 0.7);
	/*  line-height: 1;*/
	cursor: pointer;
	/*
  background: #ffebee;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
*/
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal__trigger--active {
	z-index: 10;
}

.modal__trigger:hover {
	/*  background: #e5d3d6;*/
}

#modal__temp {
	will-change: transform, opacity;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ffebee;
	-webkit-transform: none;
	transform: none;
	opacity: 1;
	-webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.1s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal__trigger {
	margin-right: 3px;
}

@media (max-width: 640px) {
	.modal__trigger {
		margin-bottom: 0.8rem;
	}
}

.demo-close {
	position: absolute;
	top: 0;
	right: 0;
	margin: 1.2rem;
	padding: 0.6rem;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	-webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-close svg {
	width: 24px;
	fill: #fff;
	pointer-events: none;
	vertical-align: top;
}

.demo-close:hover {
	background: rgba(0, 0, 0, 0.6);
}

ul.social-links {
	list-style: none;
	padding-left: 0px;
	border-bottom: 1px solid #3a3b3c;
	padding-bottom: 20px;
	padding-top: 5px;
}

ul.social-links li {
	display: inline;
	margin: 0px 6px;
}

ul.social-links li a {
	font-size: 15px;
	color: #7d7d7d;
	border: 1px solid #7d7d7d;
	padding: 5px 8px;
	border-radius: 3px;
	transition: 0.3s;
}

ul.social-links li a:hover {
	transition: 0.3s;
	border-color: #ffb839;
	color: #ffb839;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #3c8dd3;
	opacity: .5;
	z-index: 1
}

.masthead {
	position: relative;
	overflow: hidden;
	padding-bottom: 3rem;
	z-index: 2
}

.masthead .masthead-bg {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	min-height: 35rem;
	height: 100%;
	background-color: rgba(0, 0, 0, .8);
	transform: skewY(0deg);
	transform-origin: bottom right
}

.masthead .masthead-content h1 {
	font-size: 2.5rem
}

.masthead .masthead-content p {
	font-size: 1.2rem
}

.masthead .masthead-content p strong {
	font-weight: 700
}

.masthead .masthead-content .input-group-newsletter input {
	height: auto;
	font-size: 1rem;
	padding: 1rem
}

.masthead .masthead-content .input-group-newsletter button {
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 1rem
}

@media (min-width:768px) {
	.masthead {
		height: 100%;
		min-height: 0;
		width: 40.5rem;
		padding-bottom: 0
	}
	.masthead .masthead-bg {
		min-height: 0;
		transform: skewX(-8deg);
		transform-origin: top right
	}
	.masthead .masthead-content {
		padding-left: 3rem;
		padding-right: 10rem
	}
	.masthead .masthead-content h1 {
		font-size: 2.5rem
	}
	.masthead .masthead-content p {
		font-size: 1.3rem
	}
}

.social-icons {
	position: absolute;
	margin-bottom: 2rem;
	width: 100%;
	z-index: 2
}

.social-icons ul {
	margin-top: 2rem;
	width: 100%;
	text-align: center
}

.social-icons ul>li {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	display: inline-block
}

.social-icons ul>li>a {
	display: block;
	color: #fff;
	background-color: rgba(9, 9, 9, .8);
	border-radius: 100%;
	font-size: 1rem;
	line-height: 2rem;
	height: 2rem;
	width: 2rem
}

@media (min-width:768px) {
	.social-icons {
		margin: 0;
		position: absolute;
		right: 2.5rem;
		bottom: 2rem;
		width: auto
	}
	.social-icons ul {
		margin-top: 0;
		width: auto
	}
	.social-icons ul>li {
		display: block;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 1rem
	}
	.social-icons ul>li:last-child {
		margin-bottom: 0
	}
	.social-icons ul>li>a {
		transition: all .2s ease-in-out;
		font-size: 1rem;
		line-height: 2rem;
		height: 2rem;
		width: 2rem
	}
	.social-icons ul>li>a:hover {
		background-color: #ffb839
	}
}

.btn-secondary {
	background-color: #ffb839;
	border-color: #ffb839
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
	background-color: #ba7c37!important;
	border-color: #ba7c37!important
}

.input {
	font-weight: 300!important
}
.university-logo img {
    width: 95px;
}
div#subScibeMail {
    width: 100%;
    display: inline-block;
}
#subScibeMail .alert.alert-danger, div#subScibeMail .alert.alert-success {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13px;
}
.default-font{
	font-family: "Rosetica Script Demo", sans-serif;
}