/********** Template CSS **********/
:root {
    --primary: #F3525A;
    --secondary: #F6F6F6;
    --light: #FFFFFF;
    --dark: #152440;
}
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon9b2d.eot?u1sk4v');
  src:  url('fonts/icomoon9b2d.eot?u1sk4v#iefix') format('embedded-opentype'),
    url('fonts/icomoon9b2d.ttf?u1sk4v') format('truetype'),
    url('fonts/icomoon9b2d.woff?u1sk4v') format('woff'),
    url('fonts/icomoon9b2d.svg?u1sk4v#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}
img{max-width:100%;}
.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Barlow', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.carousel-caption {
    /*top: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    /*background: rgba(21, 36, 64, .7);*/
    /*z-index: 1;*/
    display:none !important;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.service-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    bottom: -50px;
    left: 0;
    background: var(--light);
    border-radius: 100% 100% 0 0;
    box-shadow: 0px -10px 5px #EEEEEE;
    transition: .5s;
}

.service-item:hover::after {
    bottom: -25px;
}

.service-item p {
    transition: .3s;
}

.service-item:hover p {
    margin-bottom: 25px !important;
}

.team-item img {
    transform: scale(1.15);
    margin-left: -30px;
    transition: .5s;
}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    transition: .5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
    left: 0;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}
.college-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.college-carousel .owl-nav .owl-prev,
.college-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.college-carousel .owl-nav .owl-prev:hover,
.college-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}
.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}
.navbar-light .navbar-nav .nav-link.login-btn{background:#ffc107;padding:10px 30px;}
.class-item{min-height:300px;}
.owl-carousel .owl-nav.disabled{display: flex;justify-content: center;}
.inner-banner{margin-top:1.5rem;}
.inner-banner a.apply-online {
	max-width: 246px;
	display: block;
	margin-top: 16px;
	margin-bottom: 26px;
	background: #ff9600;
	text-transform: uppercase;
	font-family: 'texgyreadventorbold';
	font-size: 18px;
	color: #fff;
	position: relative;
}
.inner-banner a.apply-online:hover {
	background: #ff8800;
}
.inner-banner a.apply-online .left {
	width: 80%;
	float: left;
	padding: 20px 0 20px 24px;
}
.inner-banner a.apply-online .icon {
	display: block;
	padding-right: 15px;
	float: left;
}
.inner-banner a.apply-online .txt {
	width: 36%;
	float: left;
	line-height: 20px;
}
.inner-banner a.apply-online .arrow {
	width: 20%;
	height: 100%;
	line-height: 78px;
	position: absolute;
	right: 0px;
	background: #e38600;
	font-size: 24px;
	text-align: center;
	transition: all 0.3s ease 0s;
}
.inner-banner a.apply-online:hover .arrow {
	background: #df7600;
}
.inner-banner ul{display:flex;justify-content: center;list-style: none;}
.inner-banner ul li{margin-right:10px;}
.inner-banner ul li a{color:#343a40;}
a.download-prospects {
	display: block;
	padding: 0 10px 10px 0;
	font-family: 'texgyreadventorbold';
	font-size: 14px;
	color: #43647d;
	text-transform: uppercase;
}
a.download-prospects .icon-brochure-icon {
	display: block;
	margin-right: 15px;
	float: left;
	font-size: 29px;
	color: #389ceb;
}
a.download-prospects.brochure {
	background-position: left 4px;
	font-size: 18px;
	line-height: 18px;
	text-transform: none;
	color: #4f4a4a;
}
a.download-prospects .small {
	display: block;
	font-family: 'texgyreadventorregular';
	font-size: 12px;
	color: #8f9ba1;
	line-height: 14px;
	text-transform: uppercase;
}
a.download-prospects:hover, 
a.download-prospects:hover span {
	color: #2c97ea;
}
.campus-tour .pagination {
	margin: 80px 0;
}
ul.gallery-filter {
	display: flex;
	justify-content:space-between;
	align-items:center;
	padding: 0;
	border-bottom: 2px #d8e0e7 solid;
	margin-bottom: 50px;
}
ul.gallery-filter li {
	width: 19%;
	display: inline-block;
	font-family: 'texgyreadventorbold';
	font-size: 18px;
	text-transform: uppercase;
	position: relative;
}
ul.gallery-filter li a {
	display: inline-block;
	padding: 0 0 30px 0;
	color: #909aa1;
}
ul.gallery-filter li:after {
	width: 0px;
	height: 2px;
	display: block;
	position: absolute;
	bottom: -2px;
	right: 0px;
	content: "";
	background: #17a43b;
	color: #4f4a4a;
	transition: all 0.5s ease 0s;
}
ul.gallery-filter li:hover:after, ul.gallery-filter li.active:after {
	width: 100%;
	left: 0px;
	color: #4f4a4a;
}
ul.gallery-filter li:hover a, ul.gallery-filter li.active a {
	color: #4f4a4a;
}
.mfp-counter {
	left: 0px;
	right: 0px;
	margin: 0 auto;
	text-align: center;
}
.enquire-wrapper {
	max-width: 438px;
}
.enquire-now {
	max-width: 405px;
	margin: -90px auto 0;
	position: relative;
	color: #fff;
}
.enquire-now .inner {
	padding: 40px 26px 30px 26px;
	background: #2c97ea;
}
.enquire-now .inner h3 {
	display: block;
	padding-bottom: 26px;
	font-family: 'texgyreadventorbold';
	font-size: 24px;
	color: #fff;
	text-transform: none;
}
.enquire-now .inner .row1 {
	display: block;
	margin-bottom: 14px;
}
 .enquire-now .inner input::-webkit-input-placeholder {
 color:#fff;
}
 .enquire-now .inner input:-moz-placeholder {
 color:#fff;
}
 .enquire-now .inner input::-moz-placeholder {
 color:#fff;
}
 .enquire-now .inner input:-ms-input-placeholder {
 color:#fff;
}
.enquire-now .inner .row1 input, 
.enquire-now .inner .row2 input {
	width: 100%;
	height: 44px;
	padding: 0 15px;
	background: #60b1f0;
	font-size: 11px;
	text-transform: uppercase;
	border: 1px #fff solid;
}
.enquire-now .inner .row2 {
	display: block;
	margin: 0 -5px 14px -5px;
}
.enquire-now .inner .row2 input {
	width: calc(50% - 10px);
	margin: 0 5px;
	float: left;
}
.enquire-now .enquire-btn {
	width: 100%;
	padding: 13px 15px;
	font-family: 'texgyreadventorbold';
	font-size: 16px;
	text-transform: uppercase;
	background: #ff9600;
	border: none;
}
.enquire-now .enquire-btn span {
	margin-left: 4px;
	font-size: 14px;
	opacity: 0.5;
}
.enquire-now .enquire-btn:hover {
	background: #17a43b;
}
.cert-head {
	display: block;
	margin-top: 15px;
	padding-bottom: 10px;
	position: relative;
}
.cert-head:after {
	width: 100%;
	height: 1px;
	position: absolute;
	top: 10px;
	left: 0px;
	background: #d8d8d8;
	content: "";
}
.cert-head h3 {
	display: inline-block;
	padding-right: 14px;
	background: #fff;
	font-family: 'texgyreadventorbold';
	font-size: 18px;
	color: #211d1e;
	z-index: 1;
	position: relative;
}
ul.cert-list {
	display: block;
	list-style:none;
	padding:0;
}
ul.cert-list li {
	width: calc(50% - 30px);
	float: left;
	padding: 14px 0 14px 28px;
	margin-right: 30px;
	font-weight: 700;
	border-bottom: 1px #c0c4c6 dashed;
	position: relative;
}
ul.cert-list li:before {
	display: block;
	position: absolute;
	left: 0px;
	top: 13px;
	font-family: 'icomoon';
	font-size: 15px;
	color: #2c97ea;
	content: "\e91f";
}
ul.cert-list li:nth-last-child(2), 
ul.cert-list li:last-child {
	border-bottom: none;
}
ul.cert-list li span {
	display: inline-block;
	margin-right: 6px;
	color: #2c97ea;
}
.course-detail {
	display: flex;
	padding: 25px 40px;
	margin-top: 50px;
	border: 1px #dfe9f1 solid;
	align-items:center;
	justify-content: space-around;
}
.course-detail .duration {
	min-height: 85px;
	padding-right: 40px;
	border-right: 1px #dfe9f1 solid;
	display: flex;
    align-items: center;
}
.course-detail .duration:last-child{
    border:0;
}
.course-detail .duration.eligible {
	width: 34%;
	padding: 0 40px;
}
.course-detail .duration.eligible .icon {
	font-size: 34px;
}
.course-detail .duration.fee {
	width: 22%;
	padding: 0 40px;
}
.course-detail .duration.fee .detail {
	font-size: 36px;
	color: #17a43b;
}
.course-detail .duration.fee .detail span {
	padding-bottom: 10px;
}
.course-detail .duration .icon {
	width: 67px;
	height: 67px;
	display: table;
	float: left;
	background: #edf1f4;
	border-radius: 50%;
	font-size: 38px;
	color: #79a2c2;
	text-align: center;
}
.course-detail .duration .icon span {
	display: table-cell;
	vertical-align: middle;
}
.course-detail .duration .detail {
	display: block;
	padding: 10px 0 0 16px;
	float: left;
	font-family: 'texgyreadventorbold';
	font-size: 18px;
	color: #4f4a4a;
	line-height: 22px;
}
.course-detail .duration .detail span {
	display: block;
	font-family: 'texgyreadventorregular';
	font-size: 14px;
	color: #8f9ba1;
	text-transform: uppercase;
}
.course-detail .btn {
	margin: 18px 0 0 40px;
}

/*-----------------------
	course detail tab
-----------------------*/
.details-tab {
	display: block;
	padding: 50px 0 90px 0;
	background: #ebeff3;
}
#myTabs {
	padding: 0 30px;
	text-align: center;
}
.course-tab {
	margin-bottom: 50px;
	border-bottom: 2px #d8e0e7 solid;
}
.course-tab > li {
	width: 25%;
}
.course-tab > li > a {
	padding: 0 0 26px 0;
	font-family: 'texgyreadventorbold';
	font-size: 18px;
	color: #909aa1;
	text-transform: uppercase;
	border: none !important;
}
.course-tab > li > a span {
	display: block;
	padding-bottom: 18px;
	font-size: 50px;
	color: #a4b1bc;
}
.course-tab > li > a .block {
	display: inline;
}
.course-tab > li.active > a, 
.course-tab > li.active > a:focus, 
.course-tab > li.active > a:hover, 
.course-tab > li > a:hover {
	background: none;
	border-bottom: 2px #17a43b solid !important;
	color: #17a43b;
}
.course-tab > li.active > a span, 
.course-tab > li.active > a:focus span, 
.course-tab > li.active > a:hover span, 
.course-tab > li > a:hover span {
	color: #17a43b;
}
.how-apply {
	display: block;
}
.how-apply h2 {
	color: #2a4356;
}
.how-apply .col {
	display: block;
	padding-top: 20px;
	padding-bottom: 70px;
	text-align: center;
	position:relative;
}
.how-apply .col:first-child:after {
	width: 214px;
	height: 77px;
	display: block;
	content: "";
	position: absolute;
	right: -120px;
	top: 86px;
	background: url(../images/dotted-arrow.png) no-repeat left top;
	z-index: -1;
}
.how-apply .col:nth-child(2):after {
	width: 221px;
	height: 84px;
	display: block;
	content: "";
	position: absolute;
	right: -122px;
	top: 32px;
	background: url(../images/dotted-arrow1.png) no-repeat left top;
	z-index: -1;
}
.how-apply .col:nth-child(3):after {
	width: 221px;
	height: 84px;
	display: block;
	content: "";
	position: absolute;
	right: -122px;
	top: 32px;
	background: url(../images/dotted-arrow1.png) no-repeat left top;
	z-index: -1;
}
.how-apply .col:last-child:after {
	content: "";
	position: absolute;
	background: none;
}
.how-apply .col .icon-block {
	width: 175px;
	height: 175px;
	line-height: 175px;
	position: relative;
	display: block;
	margin: 0 auto;
	border-radius: 50%;
	background: #ff9600;
	text-align: center;
	transition: all 0.3s ease 0s;
}
.how-apply .col .icon-block .num {
	width: 44px;
	height: 44px;
	position: absolute;
	right: -20px;
	top: 45px;
	display: block;
	font-family: 'texgyreadventorbold';
	font-size: 18px;
	line-height: 44px;
	color: #fff;
	background: #2c97ea;
	border-radius: 50%;
}
.how-apply .col:hover .icon-block, 
.how-apply .col.active .icon-block {
	background: #3eb25c;
}
.how-apply .col:hover .num, 
.how-apply .col.active .num {
	background: #ff9600;
}
.how-apply .col h3 {
	display: block;
	padding: 34px 0 25px 0;
	font-family: 'texgyreadventorbold';
	font-size: 18px;
	color: #211d1e;
	text-transform: uppercase;
}
.how-apply .col p {
	display: block;
	padding: 0 40px 0;
}
.how-apply .button-wrapper {
	display: block;
	text-align: center;
	position: relative;
}
.how-apply .button-wrapper:before, 
.how-apply .button-wrapper:after {
	width: calc(50% - 110px);
	height: 1px;
	background: #d8d8d8;
	content: "";
	position: absolute;
	top: 50%
}
.how-apply .button-wrapper:before {
	left: 0;
}
.how-apply .button-wrapper:after {
	right: 0;
}
.contact-details{margin: 50px;margin-top: 0px;padding-top: 60px;}

  .contact-details h1{font-size: 30px;font-weight:600;color: #333;}

  .contact-details .contact1 ul li{display: inherit;padding: 10px 0px;}

  .contact-details .contact1 ul{padding: 20px;background: #ebf7f0;margin-bottom: 30px;}

  .contact-details .contact1 ul li h3{color: 300;font-size:18px;font-weight: 600; margin-bottom: 2px;}

  .contact-details .contact1 ul li h3 i{font-size: 15px;margin-right: 10px;}

  .contact-details .contact1 ul li a{color: #666;font-size: 16px;}

  .contact-form h2{margin-bottom: 20px; font-size: 36px;font-weight: 700;}

  .contact-form label{font-size: 22px;}

  .contact-form .form-control::placeholder{font-weight: 300;font-size: 14px;}

  .contact-form .form-group{margin-bottom: 18px;}

  @media (max-width: 991.98px) {

   .contact-details{margin: 0px;padding: 0px;}

   .contact-details .contact-form{margin: 0px;}
   .suc-sto .row{flex-direction:column;}
   .course-detail{align-items: flex-start;flex-direction: column;border: 0;}
   .course-detail .duration{border:0;padding:0;}
   ul.cert-list li {
    width: 100%;
    float: none;
    display:block;
    padding: 14px 0 14px 28px;
    margin-right: 0;
    }
    .contact-details{margin-bottom:3rem;}
}