@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css");
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

header

body {
	color: #999999;
	background-color: #ffffff;
	font-family: 'Poppins', sans-serif;
    
}
.table{
	font-family: 'Poppins', sans-serif;
}
body, html {
	scroll-behavior: smooth;
	font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
h1,
h3,
h4,
h5,
h6 {
	color: #000000;
	font-family: 'Poppins', sans-serif;
}
h1 {
	font-size: 60;
	line-height: 70px;
	font-weight: 700;
}
h2 {
	font-size: 48px;
	line-height: 60px;;
	color: #ec1d25;
}
h3 {
	color: #000000;
	font-size: 30px;
}
h4 {
	color: #000000;
	font-size: 18px;
}
h5 {
	color: #000000;
	font-size: 20px;
}
h6 {
	color: #000000;
	font-size: 16px;
}
p {
	font-family: 'Poppins', sans-serif;
	color: #999999;
	font-size: 16px;
	letter-spacing: 0.5px;
	text-rendering: optimizeLegibility;
}
a {
	color: #999999;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-decoration: none !important;
	font-family: 'Poppins', sans-serif;
	outline: none;
}
img {
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-ms-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	display: inline-block !important;
}
ul {
	margin-bottom: 0px;
}
li {
	list-style: none;
}
a:hover{
	color: #433a8b;
	cursor: pointer;
}
span {
	/* color: #222d39; */
	font-size: 14px;
}
#wrap {
	/* overflow: hidden; */
	position: relative;
}

.form-control:focus {
	border: none;
	outline: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/************************ 2. Button ***********************/
.btn {
	background: #ec1d25 !important;
	display: inline-block;
	font-size: 16px;
	text-transform: capitalize;
	padding: 10px 30px;
	font-weight: normal;
	border-radius: 0px;
	color: #000 important;
	position: relative;
	overflow: hidden;
	border: none;
	font-family: 'Poppins', sans-serif;
	text-align: center;
	opacity: 1;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	position: relative;
}
.btn:before {
    top: 0;
    height: 100%;
    width: 0%;
    left: auto;
    right: 0;
    z-index: -1;
    content: "";
    position: absolute;
    transition: 0.5s all ease-in-out;
    background-color: #fdfdfd;
}
.btn:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}
a.btn:hover{
	color: #000;
}
.btn.focus, .btn:focus{
	
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.btn-primary:hover
{
	
	color: #000;
    background-color: #58ee6e;
    border-color: #58ee6e;
}

/************************ 3. Preloader ***********************/
.preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    background: #000;
    z-index: 999999;
    text-align: center;
    overflow: hidden;
    display: flex;
}
.preloader svg {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    filter: drop-shadow(2px 4px 6px black);
    fill: #fff;
}
svg #cap {
    transform-origin: center;
    animation: capAnimation 1s ease-in-out infinite
}
@keyframes capAnimation {
    0% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(5deg);
    }
}

/************************ 4. Animation ***********************/
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(10deg);
    }
}

@keyframes tesiMove {
    0% {
        transform: rotate(0deg); }
    15% {
        transform: rotate(2deg); }
    33% {
        transform: rotate(4deg); }
    66% {
        transform: rotate(2deg); }
    100% {
        transform: rotate(0deg); }
}


@keyframes scrolltop {
	0% {
		box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
	}
	100% {
		box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
	}
}
@-webkit-keyframes scrolltop {

	0% {
		-webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
		box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
	}
	100% {
		-webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
		box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
	}
}
@-o-keyframes scrolltop {
    0% {
		-webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
		box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
	}
	100% {
		-webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
		box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
	}
}
@keyframes scrolltop {
	0% {
		-webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
		box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
	}
	100% {
		-webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
		box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
	}
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}
/************************ 5. Background Shape Image css ***********************/
.shape-image-one img
{
	position: absolute;
    left: 10%;
}
.shape-image-two img{
	position: absolute;
    right: 0;
    top: -7%;
	z-index:-9;
}
.shape-image-three img{
    position: absolute;
    left: 0;
    top: -30%;
}
 .shape-image-four img {
    position: absolute;
    left: 10%;
    top: 22%;
}
/************************ 6. Header ***********************/
.header {
	padding: 10px 0;
	width: 100%;
	background: #2c28285c;
	position: absolute;
	top: 0px;
	z-index: 99;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.header .logo {
	float: left;
}
.tr-nav-item .nav-link {
	padding: 0!important;
	margin: 0 20px;
	color: #fdf7f7;
	font-weight: 600;
	font-size: 16px;
	position: relative;
}
.tr-nav-item .nav-link:after {
	position: absolute;
	left: 0px;
	bottom: -15px;
	height: 5px;
	width: 0;
	background: #ec1d25;
	content: "";
	opacity: 0;
	border-radius: 16px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.tr-nav-item .nav-link.active:after,
.tr-nav-item .nav-link:hover:after {
	width: 40px;
	opacity: 1;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.tr-nav-item .nav-link:hover {
	color: #ec1d25;
}
.tr-nabar-collapse .navbar-nav {
	align-self: baseline;
	margin-left: 45px;
}

.header-search i
{
	color: #ec1d25;
	font-size: 18px;
	display: inline;
}
.header-search i:hover
{
	cursor: pointer;
}
.header-search .header-input
{
	display: none;
}
.header-input
{
	display: inline;
    width: auto;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid #ec1d25;
    border-radius: unset;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: -19px;
    height: 22px;
}
.header-input:focus
{
	border-bottom: 1px solid #ec1d25;
}
.close-icon
{
	display: none;
}



/************************ 7. slider content ***********************/


@-webkit-keyframes slide {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: -500px 0;
  }
  100% {
   background-position: 0 0;
  }
}

.home-slider {
    width: 100%;
    position: relative;
    background: url(../images/images/ops-desktop.jpg) no-repeat;
    height: 100vh !important;
    background-size: cover;
    background-position: bottom;
}

@media only screen and (max-width: 767px) {
    .home-slider {
        width: 100%;
        position: relative;
        background: url(../images/images/ops-phone.jpg) no-repeat;
        height: 27vh !important;
        background-size: cover;
        background-position: left bottom;
    }
}




.slider-obutton .btn {
    background: #ec1d25;
}

.slider-obutton ,.slider-pbutton ,.play-button ,.slider-pbutton p{
    display: inline-block;;
}
.slider-obutton .btn
{
	padding: 15px 40px;
    font-size: 18px;
}
.slider-content span
{
	font-size: 24px;
	line-height: 46px;
	color: #6d6c6c;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 16px;
    display: inline-block;
}
.slider-content h1
{
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    line-height: 70px;
color: #ec1d25;
/*text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);*/
	
}
.slider-content p
{
	width: 80%;
	font-size: 18px;
	line-height: 24px;
	color: #6d6c6c;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	margin: 0 auto;
}
.slider-video-section
{
	margin-top: 45px;
}
.play-button
{
	width: 50px;
    height: 50px;
    border-radius: 25px;
    filter: drop-shadow(4.95px 4.95px 28.5px rgba(103,114,148,0.31));
    background-color: #fafafb;
    line-height: 50px;
    text-align: center;
    transition: transform .2s;
}
.play-button:hover {
  transform: scale(1.2);
}
.slider-pbutton p
{
	font-size: 18px;
	line-height: 46px;
	color: #464952;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}
.slider-pbutton
{
	padding-left: 100px;
}
.close i
{
	float: right;
    margin: 10px 10px 0;
    color: #0c0c0c;
}.award-img li
.modal-content
{
	background-color: #fff;
	border: none;
    position: relative;
}
.modal-content button
{
    z-index: 100;
    top: 2%;
}
.modal-body iframe
{
	margin: 0 auto;
    display: block;
}
.modal-body video
{
	margin: 0 auto;
    display: block;
    height: 100%;
}
.modal-content button:focus
{
	outline: none;
}

.home-slider-image
{
	position: absolute;
    right: 2%;
    top: 15%;
}
.home-slider-image img
{
	animation: rotate 4s alternate infinite linear both;
    text-shadow: 10px 10px 57px rgba(103, 114, 148, 0.2);
    border-radius: 100%;
}

/************************ 8. Heading-title ***********************/
.specialities-top h2 {
	font-size: 48px;
	line-height: 70px;
	color: #ec1d25;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	text-align: center;
}
.specialities-top p {
    font-size: 16px;
    line-height: 26px;
    color: #999999;
    font-weight: 400;
   font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0 auto;
    padding: 5px 0 0px;
}

/*********************** 9. specialities ********************/

.details {
    background-image: url(../images/images/bg-shape2.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 50px;
    margin-top: 50px;
    background-position: 0px -100px;
    overflow: hidden;
}


.specialities {
    background-image: url(../images/images/bg-shape2.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 250px;
    margin-top: 40px;
    background-position: 0px -100px;
}
.specialities-image {
	cursor: pointer;
    overflow: hidden;
	position: relative;
    padding-top: 50px;
}
.specialities-image img{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	width: 100%;
}
.specialities-image:hover img {
	-webkit-transform: scale(1.07);
	-moz-transform: scale(1.07);
	-ms-transform: scale(1.07);
	-o-transform: scale(1.07);
	transform: scale(1.07); 
	-webkit-transition: all 0.4s ease-in-out; 
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}


@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.specialities-section{
	padding-bottom:87px;
}
.specialities-column{
	padding-top: 20px !important;
}
.specialities-middle{
	padding-left: 0px !important;
}

.specialities-column h3{
	font-size: 35px;
	line-height: 40px;
	color: #464952;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
}
.specialities-column p{
	font-size: 16px;
	line-height: 24px;
	color: #999999;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	margin-top: 30px;
}
/*********************** 10. Our_items ********************/

.our-item-section {
    margin-top: -265px;
    padding-bottom: 80px;
}
.our-item-tab.nav-tabs{
    border-bottom: none;
    display: block;
}
.our-item-tab.nav-tabs .nav-link:focus, .our-item-tab.nav-tabs .nav-link:hover
{
	border: none;
}
.our-item-tab.nav-tabs .nav-item:focus{
	outline: none;
}
.our-item-tab.nav-tabs .nav-item{
	margin-bottom: 39px;
}
.our-item-tab.nav-tabs .nav-item:last-child{
	margin-bottom: 0;
}
.our-item-tab.nav-tabs li a.active{
	color: #ec1d25;
	background-color: #ffffff;
	border: none;
}



.our-item-section .bx-controls.bx-has-controls-direction {
    position: absolute;
    top: 0;
    right: 0;
} 
.our-item-section .bx-default-pager
{
	display: none;
}
.our-item-section .bx-controls-direction a
{
	line-height: 48px;
    background-color: #fff;
    text-align: center;
    color: #ec1d25;
    border: 2px solid #ec1d25;
    height: 50px;
    width: 50px;
    display: inline-block;
    font-size: 20px;
}
.our-item-section .bx-controls-direction .bx-prev {
    margin-right: 48px;
}
.our-item-section .bx-controls-direction a:hover
{
    background-color: #ec1d25;
    color: #fff;
    border: 2px solid #ec1d25;
}
.our-item h3{
	width: 500px;
	height: 70px;
	font-size: 24px;
	line-height: 36px;
	color: #464952;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
}
.our-item .item_order {
    margin: 39px 0;
}
.our-item p{
	width: 500px;
	font-size: 14px;
	line-height: 20px;
	color: #999999;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	display: inline-block;
}
.our-item .our-item-button{
	display: inline-block;
	vertical-align: top;
	float: right;
}
.our-item .our-item-button .btn{
	padding: 15px 40px;   
	font-size: 18px;
}
.our-item .our-item-image{
	position: relative;
}
.our-item .our-item-image img{
	width: 100%;
}
.our-item .item-price {
    font-size: 36px;
    line-height: 70px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    width: 100px;
    height: 70px;
    background-color: rgba(52,191,73,0.8);
    position: absolute;
    bottom: 0;
}

/*********************** 11. testimonials ********************/

.testimonials
{
	background-image: url(../images/images/bg-shape3.png);
    background-repeat: no-repeat;
    background-position: center;
	padding-bottom: 130px;
	background-size: cover;
    background-position: 0 -50px;
}
.bx-viewport {
    height: 100% !important;
}
#testimonials-slider-pager {
    border-style: solid;
    border-width: 1px;
    position: relative;
    animation-name: tesiMove; 
    animation-duration: 8s; 
    animation-timing-function: linear; 
    animation-iteration-count: infinite; 
    transition: all .4s ease;
    transform-origin: center center;
    width: 447px;
    height: 447px;
    border-radius: 223px;
    background-color: #ffffff;
    border: 1px solid #ec1d25;
}

#testimonials-slider-pager:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 174px;
    height: 174px;
    border-radius: 50%;
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item {
    width: 71px;
    height: 71px;
    display: inline-block;
    vertical-align: middle;
    position: absolute; 
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(1) {
    top: -20px;
    left: 100px;
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(2) {
    top: 126px;
    right: -20px;
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(3) {
    bottom: 8px;
    left: 65px;
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item > img,#testimonials-slider-pager .testimonials-slider-pager-two .pager-item > img {
    width: 100%;
    border-radius: 50%;
    transition: all .4s ease;
}
.testimonials-slider-pager-two
{
	border-style: solid;
	animation-name: tesiMove; 
	animation-duration: 8s;
	animation-timing-function: linear; 
	animation-iteration-count: infinite; 
	transition: all .4s ease; 
	transform-origin: center center; 
	margin: 0 auto;
	vertical-align: middle;
	width: 323px;
	height: 323px;
	border-radius: 161px;
	background-color: #ffffff;
	border: 1px solid #ec1d25;
	position: relative;
	top: 14%;
}
#testimonials-slider-pager .testimonials-slider-pager-two .pager-item {
    width: 71px;
    height: 71px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
}
#testimonials-slider-pager .testimonials-slider-pager-two .pager-item:nth-child(1) {
    top: -13px;
    right: 56px;
}
#testimonials-slider-pager .testimonials-slider-pager-two .pager-item:nth-child(2) {
    bottom: 20px;
    right: 10px;
}
#testimonials-slider-pager .testimonials-slider-pager-two .pager-item:nth-child(3) {
    bottom: 106px;
    left: -29px;
}
#testimonials-slider-pager .testimonials-slider-pager-three .pager-item {
    width: 163px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all .4s ease;
}
#testimonials-slider-pager .testimonials-slider-pager-three .pager-item.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.95);
}
#testimonials-slider-pager .testimonials-slider-pager-three .pager-item > img {
    width: 100%;
    border-radius: 50%; 
}
.quote-image {
    margin-bottom: 30px;
}
.single-testi-one {
    text-align: center;
}
.single-testi-one p{
  	width: 569px;
	font-size: 16px;
	line-height: 24px;
	color: #999999;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}
.single-testi-one h3{
  	font-size: 20px;
	line-height: 30px;
	color: #464952;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	margin-top: 35px;
	text-align:center;
}
.single-testi-one span{
  	font-size: 16px;
	line-height: 36px;
	color: #9a9a9a;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}
/*********************** 12. chef section ********************/

.chef-section{
	background-image: url(../images/images/bg-shape4.png);
    background-size: cover;
    background-repeat: no-repeat;
	padding-bottom:20px;
}
.chef-image img {
    box-shadow: 10px 10px 57px 0px rgba(103, 114, 148, 0.2);
    text-shadow: 10px 10px 57px rgba(103, 114, 148, 0.2);
    width: 100%;
}
.chef-content h3{ 
	font-size: 30px;
    line-height: 40px;
    color: #464952;
    font-weight: 700;
   font-family: 'Poppins', sans-serif;
    padding: 16px 0 30px;
}
.chef-content p{
	width: 657px;
	font-size: 16px;
	line-height: 24px;
	color: #999999;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}
.chef-name{
	font-size: 20px;
	color: #ec1d25;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	margin: 80px 0 10px;
}
.chef-content span{
	font-size: 16px;
	line-height: 36px;
	color: #9a9a9a;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}
.social-share {
    margin-top: 40px;
}
.social-share i{
	font-size: 18px;
	line-height: 28px;
	color: #9a9a9a;
	font-weight: 400;
	text-align: left;
}
.social-share a:hover i{
	color: #ec1d25;
}
.chef-section .bx-controls.bx-has-controls-direction {
    position: absolute;
    bottom: 0;
    right: 0;
} 
.chef-section .bx-controls-direction a
{
	line-height: 48px;
    background-color: #fff;
    text-align: center;
    color: #ec1d25;
    border: 2px solid #ec1d25;
    height: 50px;
    width: 50px;
    display: inline-block;
    font-size: 20px;
}
.chef-section .bx-controls-direction .bx-prev {
    margin-right: 48px;
}
.chef-section .bx-controls-direction a:hover{
    background-color: #ec1d25;
    color: #fff;
    border: 2px solid #ec1d25;
}
.chef-slider-inner{
  	overflow: hidden;
}
/*********************** 13. email-subscription ********************/
.email-subscription{
 	background-image:url(../images/images/1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
	padding: 50px 0;

}
.email-subscription:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,.3);
}
.email-subscription p{
 	width: 770px;
}
.email-form .form-control{
 	font-size: 18px;
 	color: #9a9a9a;
 	font-weight: 400;
 	font-family: 'Poppins', sans-serif;
 	padding: 0 100px 0 50px;
 	height: 60px;
 	border: none!important;
 	-webkit-box-shadow: 3px 3px 24px 0px rgba(1, 2, 2, 0.02);
 	-moz-box-shadow: 3px 3px 24px 0px rgba(1, 2, 2, 0.02);
 	box-shadow: 3px 3px 24px 0px rgba(1, 2, 2, 0.02);
 	border-radius: 0;
}
.email-form .email-form-button{
 	position: absolute;
 	right: 0;
 	top: 0;
 	min-width: 128px;
 	padding: 16px 0;
 	font-size: 16px;
 	/* color: #fafafb; */
 	font-weight: 600;
 	font-family: 'Poppins', sans-serif;
 	text-align: center;
 	line-height: 28px;
}
/*********************** 14. Dowmload App ********************/
.download-app-section{
 	background-image: url(../images/images/bg-shape6.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	/*padding: 50px 0px 80px 0;*/
}

/*********************** 15. Footer ********************/
.footer-bottom{
	position: fixed;
	background:url(../images/images/footer-bg.png) #2A2A2E;
    background-repeat: no-repeat;
    position: relative;
    padding: 40px 0 270px;
	background-position: bottom center;
}
/*.footer-bottom:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,.9);
}*/
.footer-icon a i{
	color: #8b8b8d;
    border: 2px solid #8b8b8d;
    height: 52px;
    width: 52px;
    line-height: 48px;
    text-align: center;
    border-radius: 50px;
    font-size: 25px;
}
.footer-icon a:hover i{
	background: #464952;
	color: #fff;
}
.footer-menu li {
	display: inline-block;
}
.footer-menu li a{
	height: 24px;
	font-size: 16px;
	color: #ffffff;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	text-align: left;
}
.footer-menu li a:hover{
	color:#ec1d25;
}
.footer-logo {
    padding: 30px 0;
}
.footer-copylink{
	padding-top: 40px;
}
.footer-copylink span{
	font-size: 11px;
    color: #ffffff;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
.scroll-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #fff;
    color: #ec1d25;
    cursor: pointer;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    -webkit-animation: scrolltop 2s infinite;
    -moz-animation: scrolltop 2s infinite;
    -ms-animation: scrolltop 2s infinite;
    -o-animation: scrolltop 2s infinite;
    animation: scrolltop 2s infinite;
    border: 3px solid #ec1d25;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 47px;
}
.scroll-top:hover {
  background-color: #ec1d25;
  color: #ffffff;
}
/*********************** 16. Preview Page CSS ********************/

.preview_slider
{
	background-image: url(../preview_img/preview-slider.png);
    background-size: cover;
    background-repeat: no-repeat;
  	padding:130px 0;
    position: relative; 
}
.preview_slider:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
}
.preview_logo {
    padding-bottom: 49px;
}
.preview_text p
{
font-size: 24px;
line-height: 36px;
color: #ffffff;
font-weight: 400;
font-family: 'Poppins', sans-serif;
text-align: center;
margin:0 auto;
}

.preview_title h2
{
	font-size: 36px;
    color: #ec1d25;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    line-height: 46px;
    margin-bottom: 5px;
}
.preview_center
{
	padding: 50px 0;
}

.preview_image {
    padding: 50px 0 25px;
    position: relative;
    display: inline-block;
}

.preview_image:hover:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    bottom: 25px;
    background: rgba(0,0,0,.8);
}
.view_demo_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    color: #33be53;
    font-size: 25px;
    text-decoration: underline !important;
    text-align: center;

}
.view_demo_btn:hover
{
	color: #fff;
}
.preview_image:hover .view_demo_btn {
    opacity: 1;
    visibility: visible;
}



.preview_image img
{
	box-shadow: 0px 10px 505px 0px rgba(3, 2, 3, 0.07);
    text-shadow: 0px 10px 505px rgba(3, 2, 3, 0.07);
}
.version
{
	font-size: 18px;
	line-height: 28px;
	color: #464952;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	text-align: center;
	margin-bottom: 81px;
}

.feature-section
{
	padding-top: 55px;
}
.feature-section .feature
{
	font-size: 18px;
	line-height: 38px;
	color: #464952;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}
.feature-section .feature:hover{
	color: #ec1d25;
}
i.far.fa-check-circle {
    vertical-align: text-top;
}
.preview-footer
{
	background-color: #ec1d25;
}
.preview-footer .copyright
{
	font-size: 18px;
    line-height: normal;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 19px 0;
}



.award-showcase {
   
    text-align: center;
	display: inline-block;
}
ul.award-img {
    margin: 0px;
    padding: 0px;
	margin-top:40px;
}
.award-img li {
    width: 14.8%;
    float: left;
    margin: 0 10px;
	 border: 5px solid #ec1d25;
}
.award-img li img{
	width:100%;
}


.lead {
  margin-bottom: 40px;
}
.clear {
  clear: both;
  line-height: 0;
}
.step1 {
  color: rgba(255, 255, 255, 0.2);
}
.step2 {
  color: rgba(255, 255, 255, 0.4);
}
.step3 {
  color: rgba(255, 255, 255, 0.6);
}
.lead {
  color: rgba(255, 255, 255, 0.6);
}
.timeline-container {
  border-left: 2px dashed #999;
}
.timeline-container-tick {
  background: rgba(0, 69, 121, 0.65);
  content: "";
  display: block;
  height: 4px;
  left: -8px;
  width: 14px;
  position: relative;
}
.timeline-container::before {
  background-color: #999;
  content: "";
  display: block;
  height: 2px;
  left: -8px;
  width: 14px;
  position: relative;
  top: -2px;
}
.timeline-container::after {
  background-color: #999;
  content: "";
  display: block;
  height: 2px;
  left: -8px;
  width: 14px;
  position: relative;
  top: 2px;
}
.timeline-toggle {
  background: #eee;
  border: 0;
  color: #999;
  cursor: pointer;
  float: right;
  margin-right: 0;
  padding: 5px 10px;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'montserratregular', sans-serif;
  font-size: 0.625em;
  letter-spacing: 0.125em;
}
.timeline-toggle:hover {
  background: #f7f7f7;
  -webkit-transition: background 0.4s ease-in-out;
     -moz-transition: background 0.4s ease-in-out;
       -o-transition: background 0.4s ease-in-out;
          transition: background 0.4s ease-in-out;
}
.timeline-toggle:focus {
  outline: none;
}
.timeline-wrapper {
  clear: left;
  margin: 12px 0 12px;
}
.timeline-wrapper .timeline-time::before {
  border-top: 2px solid #999;
  content: "";
  display: inline-block;
  height: 4px;
  margin-right: 0px;
  vertical-align: middle;
  width: 24px;
}
.timeline-wrapper .timeline-time {
  cursor: pointer;
  margin: 0 0 15px 0;
  padding: 0;
}

.timeline-wrapper .timeline-time span:focus {
	background: #ec1d25;
}
.timeline-wrapper .timeline-time span:hover{
  background: #555;
  color: #fff;
  -webkit-transition: background 0.4s ease-in-out;
     -moz-transition: background 0.4s ease-in-out;
       -o-transition: background 0.4s ease-in-out;
          transition: background 0.4s ease-in-out;
}
.timeline-series {
  margin: 0 12px 0 0;
  padding: 4px 4px 4px 0;
  position: relative;
}
.timeline-series dt::before {
    border-top: 2px solid #999;
    content: "";
    display: inline-block;
    height: 2px;
    margin-right: 10px;
    vertical-align: middle;
    width: 10px;
    position: absolute;
    top: 10px;
}
.timeline-series dt {
  line-height: 1.2em;
  margin: 0 0 12px;
  font-family: 'montserratregular', sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.125em;
  position:relative;
}
.timeline-series dt a {
  color: #999;
  cursor: pointer;
  display:block;
  font-size: 1em;
  padding-left:20px;
      line-height: 1.3em;
}
.timeline-series dt a .closed {
  color: #999;
  margin-left: 0;
}
.timeline-series dt a .open {
  color: #7DBADF;
}
.timeline-series dt a:hover {
  color: #777;
  -webkit-transition: color 0.4s ease-in-out;
     -moz-transition: color 0.4s ease-in-out;
       -o-transition: color 0.4s ease-in-out;
          transition: color 0.4s ease-in-out;
}
.timeline-series dd {
    margin-bottom: 0px;
    padding-left: 24px;
    padding-bottom: 0px !important;
    width: 100%;
}
.timeline-series dd h3 {
  color: #999;
  margin: 0;
  white-space: nowrap;
}
.tick {
  background: #999;
  display: block;
  height: 1px;
  left: 0;
  width: 4px;
  position: relative;
}
.tick-before {
  top: -4px;
}
.tick-after {
  top: -3px;
}

.timeline-event-content p {
 line-height: 1.5em;
    margin: 3px 0 6px;
    color: #999;
}
.timeline-event-content h4 {
  margin: 10px 0 0;
  padding: 0 0 0 20px;
}
.timeline-event-content blockquote {
  border-left: 2px solid #999;
  line-height: 1.2em;
  font-size: 1.125em;
  margin-left: 0;
  padding: 0 30px;
}
.timeline-event-content blockquote .attribution {
  text-align: right;
}
.timeline-event-content .media {
  float: left;
  padding: 0 12px 12px 0;
}
.timeline-event-content .media img {
  border: 2px solid #f7f7f7;
  border-radius: 60px;
  height: 120px;
  margin: 0;
  width: 120px;
}
.timeline-event-content .media p {
  margin: 15px 0;
  text-align:center;
}
.timeline-event-content .media p a {
  text-transform: lowercase;
}

.timeline-container {
  border-left: 2px dashed #999;
}
.timeline-container-tick {
  background: rgba(0, 69, 121, 0.65);
  content: "";
  display: block;
  height: 4px;
  left: -8px;
  width: 14px;
  position: relative;
}
.timeline-container::before {
  background-color: #999;
  content: "";
  display: block;
  height: 2px;
  left: -8px;
  width: 14px;
  position: relative;
  top: -2px;
}
.timeline-container::after {
  background-color: #999;
  content: "";
  display: block;
  height: 2px;
  left: -8px;
  width: 14px;
  position: relative;
  top: 2px;
}
.timeline-toggle {
  background: #eee;
  border: 0;
  color: #999;
  cursor: pointer;
  float: right;
  margin-right: 0;
  padding: 5px 10px;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'montserratregular', sans-serif;
  font-size: 0.625em;
  letter-spacing: 0.125em;
}
.timeline-toggle:hover {
  background: #f7f7f7;
  -webkit-transition: background 0.4s ease-in-out;
     -moz-transition: background 0.4s ease-in-out;
       -o-transition: background 0.4s ease-in-out;
          transition: background 0.4s ease-in-out;
}
.timeline-toggle:focus {
  outline: none;
}
.timeline-wrapper {
  clear: left;
  margin: 12px 0 12px;
}
.timeline-wrapper .timeline-time::before {
  border-top: 2px solid #999;
  content: "";
  display: inline-block;
  height: 4px;
  margin-right: 0px;
  vertical-align: middle;
  width: 24px;
}
.timeline-wrapper .timeline-time {
  cursor: pointer;
  margin: 0 0 15px 0;
  padding: 0;
}
.timeline-wrapper .timeline-time span {
  background: #ec1d25;
  color: #fff;
  display: inline-block;
  padding: 7px 15px;
  text-align: center;
  letter-spacing: 0.0625em;
  font-style: normal;
  border-radius: 30px;
  font-weight: 600;
}
.timeline-wrapper .timeline-time span:focus {
	background: #ec1d25;
}
.timeline-wrapper .timeline-time span:hover{
  background: #555;
  color: #fff;
  -webkit-transition: background 0.4s ease-in-out;
     -moz-transition: background 0.4s ease-in-out;
       -o-transition: background 0.4s ease-in-out;
          transition: background 0.4s ease-in-out;
}
.timeline-series {
  margin: 0 12px 0 0;
  padding: 4px 4px 4px 0;
  position: relative;
}
.timeline-series dt::before {
    border-top: 2px solid #999;
    content: "";
    display: inline-block;
    height: 2px;
    margin-right: 10px;
    vertical-align: middle;
    width: 10px;
    position: absolute;
    top: 10px;
}
.timeline-series dt {
  line-height: 1.2em;
  margin: 0 0 12px;
  font-family: 'montserratregular', sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.125em;
  position:relative;
}
.timeline-series dt a {
  color: #999;
  cursor: pointer;
  display:block;
  font-size: 1em;
  padding-left:20px;
      line-height: 1.3em;
}
.timeline-series dt a .closed {
  color: #999;
  margin-left: 0;
}
.timeline-series dt a .open {
  color: #7DBADF;
}
.timeline-series dt a:hover {
  color: #777;
  -webkit-transition: color 0.4s ease-in-out;
     -moz-transition: color 0.4s ease-in-out;
       -o-transition: color 0.4s ease-in-out;
          transition: color 0.4s ease-in-out;
}
.timeline-series dd {
    padding-left: 10px;
    padding-bottom: 14px;
    width: 100%;
}
.timeline-series dd h3 {
  color: #999;
  margin: 0;
  white-space: nowrap;
}
.tick {
  background: #999;
  display: block;
  height: 1px;
  left: 0;
  width: 4px;
  position: relative;
}
.tick-before {
  top: -4px;
}
.tick-after {
  top: -3px;
}

.timeline-event-content p {
  line-height: 1.5em;
  margin: 6px 0 10px;
  color: #999;
}
.timeline-event-content h4 {
  margin: 10px 0 0;
  padding: 0 0 0 20px;
}
.timeline-event-content blockquote {
  border-left: 2px solid #999;
  line-height: 1.2em;
  font-size: 1.125em;
  margin-left: 0;
  padding: 0 30px;
}
.timeline-event-content blockquote .attribution {
  text-align: right;
}
.timeline-event-content .media {
  float: left;
  padding: 0 12px 12px 0;
}
.timeline-event-content .media img {
  border: 2px solid #f7f7f7;
  border-radius: 60px;
  height: 120px;
  margin: 0;
  width: 120px;
}
.timeline-event-content .media p {
  margin: 15px 0;
  text-align:center;
}
.timeline-event-content .media p a {
  text-transform: lowercase;
}

div#timeline {
    text-align: left;
}

.timeline-series  p::before {
    border-top: 2px solid #999;
    content: "";
    display: inline-block;
    height: 2px;
    margin-right: 10px;
    vertical-align: middle;
    width: 10px;
}

.content-right-body.white-bg {
    background: #fff;
}
.table td, .table th {
    padding: 4px 10px !important;
    font-size: 16px;
    color: #848383;
}
.sh-box {
    background: #fff;
    padding: 15px 15px 22px 15px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.1);
    border-radius: 4px;
    border: 1px solid #dde6ed;
}
.toll-free.sh-box {
    margin-bottom: 26px;
    position: relative;
    padding: 16px 25px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    position: relative;
    max-height: 160px;
    top: 0;
}
.sh-box h2 {
    font-size: 24px;
    line-height: 30px;
    color: #ec1d25;
}

p {
    margin-top: 0px;
    margin-bottom: 0px;
   /* text-align: center;*/
}

.custom-form textarea, .custom-form input[type="text"], .custom-form input[type=email], .custom-form input[type=password] {
    float: left;
    border: none;
    border: 1px solid #eee;
    background: #fff;
    width: 100%;
    padding: 10px;
    color: #666;
   font-family: 'Poppins', sans-serif;
    -webkit-appearance: none;
}
.custom-form input {
    margin-bottom: 15px;
}
ul.counselor-txt{
	margin:0px;
	padding:0px;
}
ul.counselor-txt li{
	font-family: 'Poppins', sans-serif;
	padding: 0.60rem !important;
    font-size: 16px;
    color: #848383;
}
ul.counselor-txt li .fa, ul.counselor-txt li .fas {
    color: #ec1d25;
}
.download-button {
    margin-top: 16px;
}




.panel-title > a:before {
    float: right !important;
    font-family: FontAwesome;
    content:"\f068";
    padding-right: 5px;
}
.panel-title > a.collapsed:before {
    float: right !important;
    content:"\f067";
}
.panel-title > a:hover, 
.panel-title > a:active, 
.panel-title > a:focus  {
    text-decoration:none;
}


.panel-heading {
    border: 1px solid #eee;
  
    float: left;
    width: 100%;
    position: relative;
    background: #f9f9f9;
    box-sizing: border-box;
    text-align: left;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 10px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    margin-bottom: 15px;
}
h4.panel-title {
       font-size: 14px;
    letter-spacing: 0;
    padding: 15px;
    margin: 0px;
}
.panel-body {
    /* background: #fff; */
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #888383;
    line-height: 18px;
}
.panel-title > a:before {
    background: #35353A;
    float: right !important;
    font-family: FontAwesome;
    content: "\f068";
    padding-right: 5px;
    color: #ec1d25;
    padding: 15px 20px;
    font-size: 12px;
	    margin-top: -15px;
    margin-right: -15px;
}
span.enr-now {
    color: #6d6c6c;
    font-size: 40px;
    font-weight: 700;
}

.ele-ctr p {
    padding-bottom: 10px;
	text-align:left;
}
.ele-ctr {
    margin-bottom: 5px;
	padding-top:20px;
}


.collapse {
  visibility: hidden;
}
.collapse.show {
  visibility: visible;
  display: block;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.80s;
  transition-duration: 0.80s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.collapsing.width {
  -webkit-transition-property: width, visibility;
  transition-property: width, visibility;
  width: 0;
  height: auto;
}


a.tandc {
    position: absolute;
    bottom: 5px;
    left: 6px;
    font-size: 12px;
    color: #8e8283;
}
.exam-info{
	text-align:center;
	margin-bottom: 20px;
}
.exam-date {
    background: #ec1d25;
    padding: 10px 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
	margin-right:20px;
	display:inline-block;
}
.exam-mode {
    background: #ec1d25;
    padding: 10px 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
	display:inline-block;
}
.tandc {
    position: absolute;
    bottom: 5px;
    left: 6px;
    font-size: 12px;
    color: #8e8283;
}
.tandc li {
    display: inline-block;
    padding: 2px 8px;
    text-transform: capitalize;
}









/* Start form section */
.block-class{max-width:100%;background-color:#fff;}
.block-class .form-control {padding-left: 10px;}
.block-class .input-group-btn.bs-dropdown-to-select-group {padding-right: 3px !important;}
.block-class .dynamic_theme_block .form-custom .form-group.StateId {padding: 0 10px 0 0;}
.block-class .panel, .block-class .panel-default > .panel-heading{background-color: transparent !important;}
.block-class .panel-default, .block-class .panel-default > .panel-heading{border:none; padding: 0;}
.panel-default > .panel-heading{font-family: 'Nunito Sans', sans-serif;color:#fff; font-size:24px;line-height: 100%;}
.form-heading{padding-top:10px;margin:0}.form-block{max-width:400px;min-width:400px;font-size:12px;position:absolute;left:50%;margin-left:176px}
.form-block-inner{background-color:#fff}.form-group>label{font-weight:normal;line-height:18px;display:none}.form-group>label[for="termscondition"]{display:block}input[type="checkbox"]{vertical-align:top;margin-top: 2px;}.form-control::-moz-placeholder,.has-error .SumoSelect::-moz-placeholder{color:#333}.select-arrow-cust{background-color:transparent}.has-error .form-control,.has-error .SumoSelect{border-color: #000000;box-shadow:none;color:#f44336}.has-error .form-control::-webkit-input-placeholder,.has-error .SumoSelect::-webkit-input-placeholder{color:#f44336}.has-error .form-control:-moz-placeholder,.has-error .SumoSelect:-moz-placeholder{color:#f44336}.has-error .form-control::-moz-placeholder,.has-error .SumoSelect::-moz-placeholder{color:#f44336}.has-error .form-control:-ms-input-placeholder,.has-error .SumoSelect:-ms-input-placeholder{color:#f44336}
.panel.dynamic_theme_block{border:none;padding: 10px 20px 10px 20px;margin-bottom:0;/* border-radius: 10px; */}.panel.dynamic_theme_block .nav-tabs{border:none}.panel.dynamic_theme_block .nav>li>a{padding:5px 15px;border:none;font-size:14px;color:#2874f0;border-bottom:1px solid #ddd;padding-left: 18px;padding-right: 18px;}
.panel.dynamic_theme_block .nav-tabs>li.active>a,.panel.dynamic_theme_block .nav-tabs>li.active>a:focus,.panel.dynamic_theme_block .nav-tabs>li.active>a:hover{border:none;background-color: #dd302e;padding-right: 18px;border-bottom: 1px solid #dd302e;font-size: 15px;padding-left: 18px;}
.panel.dynamic_theme_block .nav-tabs>li>a:focus,.panel.dynamic_theme_block .nav-tabs>li>a:hover{background-color: transparent;}.panel.dynamic_theme_block .panel-body{box-shadow:0 0 0 #fff;margin-top: 8px;padding:0;}
.panel.dynamic_theme_block .form-custom .Mobile .form-control,.panel.dynamic_theme_block .form-custom .Mobile .has-error .SumoSelect,.has-error .panel.dynamic_theme_block .form-custom .Mobile .SumoSelect{padding:0 0 5px}
.panel.dynamic_theme_block .or-seperator{margin:20px 0 10px}.panel.dynamic_theme_block .form-custom{max-height:100%;padding-right:0}
.panel.dynamic_theme_block .btn-npf{background-color: #fff !important;border:none;color: #ec1d25 !important;font-size: 14px;width: 175px;/* margin-top: -10px; */text-transform: uppercase;border-radius:0;transition: .5s;z-index: 1;position: relative;font-weight: 700;letter-spacing: .5px;border: 1px solid #eb1b2b !important;border-radius: 0;}
.panel.dynamic_theme_block .btn-npf:before {position: absolute;content: "";left: 0;top: 0;height: 100%;width: 100%;background: #ccc;transform: scaleX(0);transition: .5s;z-index: -1;}
.panel.dynamic_theme_block .btn-npf:hover:before {transform: scaleX(1);}
.panel.dynamic_theme_block .btn-npf:hover,.panel.dynamic_theme_block .btn-npf:focus{background-color: #fff !important;color: #fff;border: 1px solid #fff;}.accordionStyle .panel-accordion{border-radius:0;border:1px solid #ccc}.accordionStyle .panel-heading{padding:0}
.form-control, .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control, .input-group-btn .btn{background-color: #fff;border:1px solid #e6e6e6;color:#000;border-radius: 0;}
.dynamic_theme_block .form-control[disabled], .dynamic_theme_block .form-control[readonly], .dynamic_theme_block fieldset[disabled] .form-control {
background-color: transparent;color: #999;border: 1px solid #e6e6e6;border-radius: 0;}
.form-group.label-floating.Mobile.country_dial_code.reg_mobile_div span {font-size: 10px;color: #f44336;}
.merge_field_div{ margin-bottom:15px;}
.input-group .form-group{vertical-align:top;display:table-cell;}
.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */color: #000;}
.form-control::-moz-placeholder { /* Firefox 19+ */color: #000;}
.form-control:-ms-input-placeholder { /* IE 10+ */color: #000;}
.form-control:-moz-placeholder { /* Firefox 18- */color: #000;}

/** Start css for focus on input field **/
.input-focus::-webkit-input-placeholder { color: #ccc; }    
.input-focus::-moz-placeholder { color: #ccc; }
.input-focus::-ms-input-placeholder { color: #ccc; }
/** End css for focus on input field **/

.panel.dynamic_theme_block .form-custom .Mobile .form-control, 
.panel.dynamic_theme_block .form-custom .Mobile .has-error .SumoSelect, 
.has-error .panel.dynamic_theme_block .form-custom .Mobile .SumoSelect{
	padding: 6px 6px 6px 10px;
}
.dynamic_theme_block .merge_field_div .bs-dropdown-to-select-group .bs-dropdown-to-select{
	background-color:  #fff;
	padding: 6px 10px;
	border-top: 1px solid #e6e6e6 !important;
	border-right: 1px solid #e6e6e6 !important;
	border-left: 1px solid #e6e6e6 !important;
	border-radius:0;
	color: #000;
}
.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group{margin-right:0;}
.dynamic_theme_block .form-custom .form-group.CourseId{width: 100%;padding: 0 0px 0 0;}
.dynamic_theme_block .form-custom .agree-group .agree-condition{color: #000;line-height: 12px;font-size: 12.4px;}
.CountryId:before, .StateId:before, .CityId:before, .CourseId:before, .reg_specialization_id_div:before, .reg_university_id_div:before {z-index:1;color:#000;font-size: 16px;margin-bottom: -10px;}
.CourseId:before{right: 10px !important;}
.form-group.label-floating.field-select.reg_university_id_div {position: relative;}
.reg_university_id_div:before {position: absolute;}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus{-webkit-text-fill-color: #000;-webkit-box-shadow: 0 0 0px 1000px #fff inset;}

.form-control:focus { border-color: lightgrey;-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(211,211,211,.6);box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(211,211,211,.6);}
.form-control {-webkit-box-shadow: none; box-shadow:none;}
.form-custom{ overflow: unset;}
.dynamic_theme_block .tab-pane .form-group, 
.dynamic_theme_block .form-custom .merge_field_div, 
.dynamic_theme_block .form-custom .checkbox{margin-bottom:15px;}
.dynamic_theme_block .btn-register{margin:0;}
.dynamic_theme_block .fpass a {color:#2874f0;text-transform: uppercase;}
span.agree-condition {/* color:  #000; */font-size: 13px;}
.form-group.agree-group.col-md-12.m0.has-error .help-block {font-size: 10px;top: -7px;}
.form-group.agree-group.col-md-12.m0.has-error {line-height: 18px;}
.StateId:before {right: 20px;}
.panel.dynamic_theme_block .nav>li>a[aria-expanded="true"]{color: #fff;text-shadow: 1px 1px 1px #000;}
.form-control {padding: 0 5px 0px;height: 38px;}
.dynamic_theme_block .tab-pane .form-group {margin-bottom: 10px;}
.panel-default>.panel-heading {margin-top: 5px;display: none;}
.dynamic_theme_block .form-custom .captcha {margin-top: 0px;}
.dynamic_theme_block .form-custom .form-group.StateId {margin-top: 0px;}
.dynamic_theme_block .form-custom .form-group.CityId {margin-top: 0px;}
.dynamic_theme_block .tab-pane .form-group, .dynamic_theme_block .form-custom .merge_field_div, .dynamic_theme_block .form-custom .checkbox {margin-bottom: 5px;flex-grow: 1 !important;}
.dynamic_theme_block .form-custom .checkbox{margin: 5px 0 0;}
 input#Captcha {padding: 14px 5px;} 
.block-class input#Captcha{padding-left: 10px;} 
.dynamic_theme_block .form-custom .form-group.captcha-txt {width: 50%;padding-right: 10px;}
.dynamic_theme_block .form-group.has-error .help-block {color: red;}
.dynamic_theme_block .form-custom .captcha {width: 100%;float: left;padding: 0;z-index: 999;position: relative;clear: both;margin-bottom: 5px;}
.dynamic_theme_block .captcha img {width: 50%;height: 36px;float: right;padding-right: 0;margin-right: 0;}
.dynamic_theme_block .captcha .CaptchaRefreshBtn {top: 8px;right: -13px;color: #000;border: none;position: absolute;background-color: #fff;font-size: 0px;margin-right: 20px;}
.dynamic_theme_block #forgotBtn {margin-top: 20px;}
.form-control {font-size: 13px;z-index: 11;}
.form-group.label-floating.Mobile.country_dial_code.reg_mobile_div.is-focused .help-block {display:  block;color: #767676;}
.help-block {font-size:10px;}
.form-group.label-floating.is-empty.captcha-txt.has-error .help-block {margin-bottom: 10px;}
.form-group.is-focused .help-block {line-height: 12px;}
.dynamic_theme_block .tab-content .help-block {line-height: 12px;font-size: 10px;/* color: red; */}
.dynamic_theme_block .form-group.has-error .help-block {font-size: 11px;/* margin-top: 2px; */}
 input#forgetEmail{margin-top: 10px;}
.reg_specialization_id_div:before{content: "\f107";font-family: FontAwesome; position: absolute; right: 10px;font-size: 16px;color: #000;top: 4px;}
.reg_specialization_id_div {display: inline-block;width: 100%;position: relative;}
.Password.reg_password_div {clear: both;}
.block-class .dynamic_theme_block .datepicker-field .form-control[readonly] {border: 1px solid #e6e6e6;}
/* .form-group.label-floating.reg_email_div.Email_email .help-block {line-height: 12px !important;margin-top: 2px !important;}
.form-group.label-floating.reg_email_div.Email_email .help-block{color: red !important;font-size: 9px;} */
.dynamic_theme_block .tab-content { line-height: 18px;}
.fbLogin, .gpLogin {padding: 5px 3px;font-size:12px;}
.row.margin-top-10.margin0 .col-sm-6 {width:48%;padding-right:0;}
.gpLogin {padding: 5px;}
#tab3default > div > div.form-group.agree-group.col-sm-6.col-xs-6.text-left.fpass > a {/* float: left; */}
#tab3default > div > div.form-group.agree-group.col-sm-6.col-xs-6.text-right.fpass > a {margin-right: 0;}
button#registerBtn {margin-bottom: 5px;}
h2#alertTitle {font-size: 22px;text-align: center;}
.dynamic_theme_block .CaptchaRefreshBtn:before {content: "\f021";font-family: 'FontAwesome';font-size: 14px;}
.CountryId:before, .StateId:before, .CityId:before, .CourseId:before, .reg_specialization_id_div:before, .reg_university_id_div:before {content: '';border-color: transparent #a0a0a0 #a0a0a0 transparent;border-style: solid;border-width: 6px; right: 0px; bottom: 0; margin-bottom:0;top: auto;}
.StateId:before {right: 15px;}
.form-group.label-floating.reg_name_div {margin-top:  -5px;}
.site-logo {padding: 4px 0;}
.block-class .StateId:before {right: 10px;}
.help-block {color:red;}
.fa-graduation-cap:before{color:#eb1b2b;}
.form-group.label-floating.has-error .help-block {margin-top: 2px;}
img.plane_img {max-width: 12%;padding-bottom: 3px;/* color: red; */}
span.apply_now {padding-right: 8px;letter-spacing: .5px;font-weight: 700;font-size: 14px;}
#loginBtn img {max-width: 12%;padding-bottom: 3px;}
#otpSubmitBtn {
  background-color: #fff !important;
  color: #000;
  border-color: #eb1b2b;
  text-transform: uppercase;
  opacity: 1;
}

#otpSubmitBtn:hover {
  background-color: #000;
  color: #fff !important;
  text-decoration: none;
  border-color: #000;
}    

.panel.dynamic_theme_block .tab-pane .form-group.fpass a.registerYet {font-size: 14px;opacity: .8;text-transform: capitalize;padding-top: 4px;font-weight: 600;}
.panel.dynamic_theme_block .tab-pane .form-group.fpass a {font-size: 14px;opacity: .8;text-transform: capitalize;display: block;font-weight: 600;}
.form-group.agree-group.col-md-12.text-center.fpass {margin-bottom: 0;}
.form-group.agree-group.col-sm-6.col-xs-6.text-left.fpass {margin-bottom: 0;}
.form-group.agree-group.col-sm-6.col-xs-6.text-right.fpass {margin-bottom: 0;}
.resentVerification.text-center {/* text-transform: uppercase; */margin-top: 2px;}
.resetVerify a {font-size: 14px;opacity: .9;font-weight: 600;}
.text-center.center-link a {font-size: 14.5px;opacity: .8;font-weight: 600;}
.color-class a#loginViaOtp {
    color: #fff;
    font-size: 12px;
    opacity: .8;
    font-weight: 600;
}
/** Start Strong Password Section **/
.info-password { right: 50%;margin-right: -146px;margin-top: 2px;}
.popover {font-size: 12px;}
/** End Strong Password Section **/

/* Start Inline class section */

.inline-class { max-width:100%; background-color: #fff;}
.inline-class .panel, .inline-class .panel-default > .panel-heading{background-color: transparent !important;color: red !important;}
.inline-class .panel.dynamic_theme_block .nav>li>a {color: #2874f0; border-bottom: 1px solid #ddd;}
.inline-class .panel.dynamic_theme_block .nav>li>a[aria-expanded="true"] {color: #fff;}
.inline-class .dynamic_theme_block .fpass a {color: #2874f0;}
.inline-class .dynamic_theme_block .form-custom .agree-group .agree-condition {color: #000;} 
.inline-class .form-control, .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control, .input-group-btn .btn {color: #000;background-color: transparent;border-radius:0;border: 0;}  
.inline-class .dynamic_theme_block .merge_field_div .bs-dropdown-to-select-group .bs-dropdown-to-select {background-color: #fff;border:0 !important;border-radius: 0;color: #000;}
.inline-class .CountryId:before, .inline-class .StateId:before, .inline-class .CityId:before, .inline-class .CourseId:before, .inline-class .reg_specialization_id_div:before {color: #000;font-size: 16px;}   
.inline-class .dynamic_theme_block .form-control[disabled], .dynamic_theme_block .form-control[readonly], .dynamic_theme_block fieldset[disabled] .form-control{background-color: transparent;color: #999;border: none;border-bottom: 1px solid lightgrey;}  
.inline-class .form-control {-webkit-box-shadow: none;box-shadow: none;border-bottom: 1px solid #ddd; }
.inline-class .dynamic_theme_block .merge_field_div .bs-dropdown-to-select-group {border-bottom: 1px solid lightgrey;}
.inline-class .dynamic_theme_block .merge_field_div .bs-dropdown-to-select-group .bs-dropdown-to-select {padding: 4px 10px 4px 10px;} 
.inline-class .panel.dynamic_theme_block .form-custom .Mobile .form-control, .inline-class .panel.dynamic_theme_block .form-custom .Mobile .has-error .SumoSelect, .inline-class .has-error .panel.dynamic_theme_block .form-custom .Mobile .SumoSelect{border-radius: 0;}
.inline-class .form-control {font-size: 13px;z-index: 11;}
.inline-class .panel.dynamic_theme_block{padding: 8px 20px 8px 20px;}
.inline-class .panel-default>.panel-heading {margin-top: 5px;border-bottom: unset;} 
.inline-class .dynamic_theme_block .tab-pane .form-group, .inline-class .dynamic_theme_block .form-custom .merge_field_div, .inline-class .dynamic_theme_block .form-custom .checkbox{margin-bottom: 8px;}    
.inline-class span.agree-condition {color: #000;}
.inline-class .panel.dynamic_theme_block .nav-tabs>li.active>a, .inline-class .panel.dynamic_theme_block .nav-tabs>li.active>a:focus, .inline-class .panel.dynamic_theme_block .nav-tabs>li.active>a:hover{border-bottom: 1px solid #dd302e;}
.inline-class .dynamic_theme_block .form-custom .checkbox{margin: 5px 0 0;}
.inline-class .panel.dynamic_theme_block .form-custom{max-height: 100%;overflow: unset;}
.inline-class .form-group.label-floating.Mobile.country_dial_code.reg_mobile_div .help-block {position: absolute;bottom: -13px;}
.inline-class .has-error .form-control{border-color: red;}
.inline-class .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */color: #000;}
.inline-class .form-control::-moz-placeholder { /* Firefox 19+ */ color: #000;}
.inline-class .form-control:-ms-input-placeholder { /* IE 10+ */color: #000;}
.inline-class .form-control:-moz-placeholder { /* Firefox 18- */color: #000;}
/** Start css for focus on input field **/
.inline-class .form-control.input-focus::-webkit-input-placeholder { color: #ccc; }
.inline-class .form-control.input-focus::-moz-input-placeholder { color: #ccc; }
.inline-class .form-control.input-focus::-ms-input-placeholder { color: #ccc; }
/** End css for focus on input field **/
/* End inline class section */

/** Start color class section **/
.color-class{background-color: #ec1d25;}    
.color-class button.btn.btn-default.dropdown-toggle.as-is.bs-dropdown-to-select {background-color: #fff;color: #000;border-radius: 2px;}
.color-class .dynamic_theme_block .form-custom .agree-group .agree-condition {color: #fff;padding-left: 5px;}
.color-class .form-control {color: #000;background-color: #fff;border-radius: 2px;}  
.color-class .CountryId:before, .color-class .StateId:before, .color-class .CityId:before, .color-class .CourseId:before, .color-class .reg_specialization_id_div:before, .color-class .reg_university_id_div:before {color: #fff;z-index: 9999;}
.CountryId.has-error:before, .StateId.has-error:before, .CityId.has-error:before, .CourseId.has-error:before, .reg_specialization_id_div.has-error:before, .reg_university_id_div.has-error:before{
    bottom: 2px;
}
.color-class .reg_specialization_id_div:before {color: #fff;}   
.color-class .panel.dynamic_theme_block .nav>li>a {color: #fff;}  
.color-class span.agree-condition {color: #fff;}   
.color-class .dynamic_theme_block .fpass a {color: #fff;font-size: 12.4px;}
.color-class .form-group.label-floating.Mobile.country_dial_code.reg_mobile_div span{color: #fff;}
.color-class .form-control.select-arrow-cust option { color: #000;}
.color-class .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */color: #000;}
.color-class .form-control::-moz-placeholder { /* Firefox 19+ */color: #000;}
.color-class .form-control::-ms-input-placeholder { /* IE 10+ */color: #000;}
.color-class .form-control::-moz-placeholder { /* Firefox 18- */color: #000;}
.color-class .form-click {background-color: #2e6a8f;color:#fff;} 
.color-class .form-group.agree-group.col-md-12.m0.has-error .help-block {color: yellow;font-size: 11px;}
.color-class .form-group.label-floating.reg_email_div.Email_email .help-block {color: #fff !important;}
.color-class .form-group.label-floating.has-error .help-block {color: #fff !important;}
.color-class .form-group.label-floating.reg_email_div.Email_email.has-error .help-block a {color: yellow;}
.color-class .form-group.label-floating.reg_email_div.Email_email .help-block a {color: yellow;}
.color-class .form-group.label-floating.has-error .help-block a {color: yellow;}
.color-class .form-group.label-floating.reg_name_div .help-block{color: #fff;}
.color-class .form-group.label-floating.Mobile.country_dial_code.reg_mobile_div.is-focused .help-block {color: #fff;}
.color-class .dynamic_theme_block .form-control[disabled], .color-class .dynamic_theme_block .form-control[readonly], .color-class .dynamic_theme_block fieldset[disabled] .form-control {background-color:#f1f1f1;color:#000;border-radius: 2px;}
.color-class .panel.dynamic_theme_block .form-custom .Mobile .form-control, .color-class .panel.dynamic_theme_block .form-custom .Mobile .has-error .SumoSelect, .color-class .has-error .panel.dynamic_theme_block .form-custom .Mobile .SumoSelect {border-radius:2px;position: relative;}
.color-class .dynamic_theme_block .captcha img {border-radius: 2px;width: 100%;margin-right: 0;padding-right: 0;float: right;height: 38px;}
.color-class .dynamic_theme_block .form-custom .form-group.captcha-txt {padding-left: 1px;}
.color-class .fbLogin {color: #fff;border-color: #fff;}
.color-class .gpLogin {color: #fff;border-color: #fff;}
.color-class .inLogin {
    font-size: 12px;
    color: #fff;
    border-color: #fff;
}
.color-class .form-heading {color: #fff;}
.color-class .fa-graduation-cap:before{color: #fff;}
.color-class .text-center.center-link a {color: #fff;}
.color-class .resetVerify a {color: #fff;}
/** End color class section **/
/** Start css for focus on input field **/
.color-class .form-control.input-focus::-webkit-input-placeholder { color: #ccc; }
.color-class .form-control.input-focus::-moz-input-placeholder { color: #ccc; }
.color-class .form-control.input-focus::-ms-input-placeholder { color: #ccc; }
/** End css for focus on input field **/

/** Start color class media query for image captcha **/
@media (max-width: 1100px) and (min-width: 400px){
    .color-class .dynamic_theme_block .captcha img {width: 50%;margin-right: 0;/* padding-right:10px; */}
    .color-class .dynamic_theme_block .form-custom .form-group.captcha-txt {padding-left: 0;}
}
/** End color class media query for image captcha **/

/** Start Link-Border Class **/
.link-border .panel.dynamic_theme_block {padding: 3px 25px 6px 25px;}
.link-border .panel.dynamic_theme_block .nav>li>a[aria-expanded="true"] {color:  #000;text-shadow:  unset;font-size: 15px;padding-bottom:10px;}
.link-border .panel.dynamic_theme_block .nav>li>a {border:  none;color: #333131;padding-left: 16px;padding-right: 16px; font-size: 15px;}
.link-border .panel.dynamic_theme_block .nav-tabs>li.active>a, .link-border .panel.dynamic_theme_block .nav-tabs>li.active>a:focus, .link-border .panel.dynamic_theme_block .nav-tabs>li.active>a:hover {background-color:  transparent;border-bottom: 2px solid #dd302e;}    
.link-border .panel.dynamic_theme_block .nav>li>a:hover {color:  #000;}
.link-border .panel.dynamic_theme_block .nav-tabs>li.active>a, .link-border .panel.dynamic_theme_block .nav-tabs>li.active>a:focus, .link-border .panel.dynamic_theme_block .nav-tabs>li.active>a:hover {
    padding-left:16px;padding-right:16px;}
@media(max-width:768px){
  .link-border .panel.dynamic_theme_block {padding: 3px 15px 6px 15px;}
}
/** End Link-Border Class **/  

/** Start Link-Border Class with color class **/
.color-class.link-border .panel.dynamic_theme_block .nav>li>a[aria-expanded="true"] {color: #fff;}
.color-class.link-border .panel.dynamic_theme_block .nav>li>a {color: #fff;}
/** End Link-Border Class with color class **/  

/** Start css for input icons in the form **/

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?bi9s3p');
  src:  url('../fonts/icomoon.eot?bi9s3p#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?bi9s3p') format('truetype'),
    url('../fonts/icomoon.woff?bi9s3p') format('woff'),
    url('../fonts/icomoon.svg?bi9s3p#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-class .icon-name:before {content: "\e903";}
.icon-class .icon-Email:before {content: "\e902";} 
.icon-class .icon-phone:before {content: "\e905";}
.icon-class .icon-password:before {content: "\e904";}
.icon-class .icon-chat:before {content: "\e900";}
.icon-class .icon-State--city:before {content: "\e907";}
.icon-class .icon-school:before {content: "\e906";}
.icon-class .icon-course:before {content: "\e901";}

.icon-class .field-icon:before{color: #eb1b2b;font-size: 13px;font-weight: 700;/* float: left; *//* left: -18px !important; */}

.icon-class .field-icon {position:  absolute;margin-top: 12px;padding: 0 10px 0;z-index: 99;left: 0px !important;}
.datepicker-field:before{z-index:9999;left: 10px;margin-top: -10px;color: #eb1b2b;font-size: 13px;font-weight: 700;}
input#FieldScheduleCampusDate {padding-left: 30px;}
/** Start Font Family for form **/
.icon-class.formContainer {font-family: 'Nunito Sans', sans-serif;}
/** End Font Family for form **/

.icon-class #Name{padding-left: 30px;}
.icon-class #Email{padding-left:30px}
.icon-class button.btn.btn-default.dropdown-toggle.as-is.bs-dropdown-to-select{padding-left:30px;background: #fff !important;}
.icon-class #opt_dataMobile{padding-left:30px}
.icon-class #StateId{padding-left:30px}
.icon-class #CityId{padding-left:30px}
.icon-class #loginEmail{padding-left:30px}
.icon-class #loginPassword{padding-left:30px}
.icon-class #forgetEmail{padding-left:30px}
.icon-class #resentVerificationEmail{padding-left:30px}
.icon-class #Password {padding-left: 30px;}
.icon-class #UniversityId { padding-left: 30px;}
.icon-class #CourseId {padding-left: 30px;}
.icon-class #SpecializationId {padding-left: 30px;}
.icon-class #CountryId {padding-left: 30px;}
/** End css for input icons in the form **/

  
/*** Start Form float design section ***/

.floatForm{-webkit-transform: translateX(100%);-moz-transform: translateX(100%);-ms-transform: translateX(100%);-o-transform: translateX(100%);transform: translateX(100%);-webkit-transition: all 0.8s ease 0s;-ms-transition: all 0.8s ease 0s;-moz-transition: all 0.8s ease 0s;-o-transition: all 0.8s ease 0s;transition: all 0.8s ease 0s;z-index: 9999;right:0;top:100px;}
.form-heading{background-color: transparent;color: #000;padding: 0px;margin: 0;font-size: 19px;padding-bottom: 0px;margin-bottom: -16px;} 
.floatForm.open{-webkit-transform: translateX(0);-moz-transform: translateX(0);-ms-transform: translateX(0);-o-transform: translateX(0);transform: translateX(0);top: 80px;}
.form-clickOuter{left: 0;position:absolute;top: 50%;margin-top:-20px;margin-left: -107px;webkit-transform: rotate(270deg);-moz-transform: rotate(270deg);-ms-transform: rotate(270deg);-o-transform: rotate(270deg);transform: rotate(270deg);} 
.form-click{background-color: #dd302e;color: #fff; position: relative;font-size: 22px;padding: 10px 20px;cursor: pointer;display: inline-block;border-radius:5px 5px 0 0;border:1px solid #fff;border-bottom:none;}
.form-inner{position:relative;}
.form-block{max-width: 400px;min-width: 400px;font-size:12px;}
.form-block-inner{background-color:#fff;}

/*** End Form float design section ***/

/* Strat footer section */
.footer-top {background-color: #f9f9f9;padding: 5px 0;}
/* End footer section */

/** Start Form position section **/

   @media (min-width:1099px){
  .formContainer{max-width: 370px;min-width: 370px;z-index:1;border-radius: 5px;}

  .form-absolute{position:absolute;top: 10px;}
  .form-fixed{position:fixed;}
  .form-relative{position:relative;top:12px;}
  .form-position-left{left:50%;margin-left:-585px;}
  .form-position-right{right:50%;margin-right: -600px;/* border-radius: 5px; */box-shadow: 0 0 10px #000;}
  .resentVerification.text-center {/* text-transform: uppercase; */margin-top: 0px;/* position: absolute; */bottom: 0px;z-index: 9999;right: 20px;}
  .center-link {text-align: center;display: block;/* position: relative; */}
  }
/** End Form position section **/

/* Start media query for mobile view */

@media (max-width: 1100px){

/* Start owl carousel section */
  .owl-carousel .owl-dots {display: none;}
  .owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {position: absolute;font-size: 28px;top: 33%;color: #ccc;}
  .banner-section .owl-carousel .owl-nav{display: block;}
  .owl-carousel .owl-nav .owl-next { right: 10px;}
  .owl-carousel .owl-nav .owl-prev { left: 10px;}
/* End owl carousel section */

/** Start banner text content **/ 
.banner-text{top: 12%;position: absolute;z-index: 99;left: 3%;}
.banner-text-content{background-color: #000000c2;color: #fff;font-size: 13px;padding: 5px 7px;border-radius: 10px;}
/** End banner text content **/ 

/** Start form section **/
  .form-control{height: 38px;font-size: 14px;}
  .panel.dynamic_theme_block {padding: 12px;}
  .CountryId:before, .StateId:before, .CityId:before, .CourseId:before, .reg_specialization_id_div:before {content: '';border-color: transparent #a0a0a0 #a0a0a0 transparent;border-style: solid;border-width: 6px; right: 0px; bottom: 0; margin-bottom:0;top: auto;}
  .color-class .CountryId:before, .color-class .StateId:before, .color-class .CityId:before, .color-class .CourseId:before, .color-class .reg_specialization_id_div:before {border-color: transparent #a0a0a0 #a0a0a0 transparent;}
  .inline-class .StateId:before {right: 15px;}  
  .has-error.CountryId:before, .has-error.StateId:before, .has-error.CityId:before, .has-error.CourseId:before, .has-error.reg_specialization_id_div:before {bottom:3px;}
  .dynamic_theme_block .CaptchaRefreshBtn:before {font-size: 13px;}
  .dynamic_theme_block .merge_field_div .bs-dropdown-to-select-group .bs-dropdown-to-select{padding: 8px 10px 9px 10px;}
  .dynamic_theme_block .captcha img {height: 38px !important;}
  .dynamic_theme_block .captcha .CaptchaRefreshBtn{top: 9px;}
  .captcha{margin-bottom: 8px;}
  .fbLogin, .gpLogin, .color-class .inLogin {font-size:15px;padding:8px 10px;text-align:center}
  .row.margin-top-10.margin0 .col-sm-6 {width:100%; padding-right:15px;text-align:center;} 
  .dynamic_theme_block .form-custom .captcha {margin-bottom:14px;}
  .inline-class .panel.dynamic_theme_block{padding: 15px 20px 8px 20px;}
  .text-center.center-link a {font-size: 15px;}
  .resetVerify a {font-size: 15px;}
  .Password.reg_password_div {clear: both;}

/** End form section **/

}











.form-group.label-floating.reg_course_id_div.CourseId.field-select:before {
    right: 0px !important;
}



#registerForm > div.form-custom > div.form-group.label-floating.reg_name_div > i{
    left: 160px !important;
}

#registerForm > div.form-custom > div.merge_field_div > i{
    left: 160px !important
}

#forgotForm > div.form-group.label-floating > i{
    left: 160px !important
}
#loginForm > div:nth-child(2) > i{
   left: 160px !important
}
#loginForm > div:nth-child(3) > i{
        left: 160px !important

}
#forgotForm > div.form-group.label-floating > i{
    left: 160px !important
}

#resendVlinkForm > div.form-group.label-floating > i{
    left: 160px !important
}


/*--FAQ--*/

div#headingOne {
    display: block !important;
}

div#headingTwo {
    display: block;
}

div#headingThree {
    display: block;
}

div#headingFour {
    display: block;
}

div#headingFive {
    display: block;
}

/** Start bottom to top button **/

#scroll {position: fixed;right: -45px;bottom: 50%;cursor:pointer;width: 126px;height: 36px;background-color: #ec1d25;/* text-indent:-9999px; */display:none;/* -webkit-border-radius:60px; */-moz-border-radius:60px;border-radius: 30px;z-index: 99;}   
#scroll span {position:absolute;top:50%;left: 50%;margin-left: -44px;margin-top: -12px;height:0;width: 97px;/* border:8px solid transparent; *//* border-bottom-color:#ffffff; */color: #fff;font-size: 18px;font-weight: 600;}
#scroll:hover {background-color:#e74c3c;opacity:1;filter:"alpha(opacity=100)";-ms-filter:"alpha(opacity=100)";}

/** End bottom to top button **/



#scroll{
    transform:rotate(-90deg)
}
.cptImgBox {
    width: 50%;
    float: right;
    position: relative;
}

.afterCImage, .beforeCImage {
    position: absolute;
    top: 1px;
    height: 34px;
    width: 20%;
    left:0px;
    background-color: #fff;
}


button#registerBtn{
	background-color:#fff !important;
}


a.btn {
    color: #fff;
}



#admissions > div.col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


button#registerBtn>.apply_now :hover {
    display: none;
}

.plane_img {
    display: none !important;
}

button#registerBtn:hover .plane_img {
    display: inline-block !important;
    transition: 0.4s ease;
}

p.wow.fadeIn.mb-0 {
    text-align: left;
}


.modal-header {display:table;background-color: #fdfdfd;}

p.verify-your-identity {
    color: #fff;
}

a#resendVerifyCodeBtn {
    color: #fff;
}

span#clockdivForget {
    float: right;
    color: #fff;
}

.form-group.label-floating.Mobile.country_dial_code.reg_mobile_div {
    /* width: 69% !important; */
}

span.help-block {
    text-align: left !important;
}


.form-group.label-floating.reg_name_div.has-error {
    text-align: left;
}

.form-group.label-floating.has-error {
    text-align: left;
}

.slider-content-txt span {
    font-size: 30px;
    color: #e01f1f;
}

section.text-center.about {
    padding: 50px 0 50px 0;
}
.fade:not(.show) {
    opacity: 1;
}
.dynamic_theme_block .npf_cpt_new img {
    width: 100%;
    height: 38px;
    float: left;
    padding-right: 10px;
}
.c-tabs-nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0
}
.c-tabs-nav__link {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	margin-right: 4px;
	padding: 12px;
	color: #fff;
	text-align: center;
	-webkit-transition: color .3s;
	transition: color .3s;
	border-radius: 10px;
    background: #c73133;
    box-shadow: 0px 3px 0px 1px #a92a2b, 0 0 0px 0px #e5383b;
}
.c-tabs-nav__link:last-child {
	margin-right: 0
}
.c-tabs-nav__link:hover {
	color: #6d6d6d
}
.c-tabs-nav__link.is-active {
	color: #dc446e;
	background-color: #000
}
.c-tabs-nav__link i, .c-tabs-nav__link span {
	margin: 0;
	padding: 0;
	line-height: 1
}
.c-tabs-nav__link i {
	font-size: 18px
}
.c-tabs-nav__link span {
	display: none;
	font-size: 14px;
    line-height: 18px;
}

@media all and (min-width:720px) {
.c-tabs-nav__link i {
	margin-bottom: 12px;
	font-size: 22px
}
.c-tabs-nav__link span {
	display: block
}
}
.c-tab {
	display: none;
}
.c-tab.is-active {
	display: block
}
.c-tab__content {
	padding: 20px 0 0 0;
}
.c-tabs.no-js .c-tabs-nav {
	display: none
}
.c-tabs.no-js .c-tab {
	display: block;
	margin-bottom: 1.5rem
}
.c-tabs.no-js .c-tab:last-child {
	margin-bottom: 0
}
.carbon-img, .carbon-wrap {
	margin: 0 0 4px;
	display: block
}

/*add*/








.read-more__link {
font-size: 12px;
text-transform: uppercase;
font-weight: 600;
color: #df5659;
border-bottom: 2px solid #c73133;
padding-bottom: 5px;
font-family: inherit;
letter-spacing: 0px;
}

ul.list-c{
list-style:none;
padding:0px;
margin:0px;
}
.list-c li {
background: url(../images/list-img.png) no-repeat left 4px;
padding: 2px 30px;
margin-bottom: 15px;
line-height:20px;
}



.coacdemics4 img{
width:240px;
}

.coacdemics4{
position:relative;
}
.coacdemics4 .circle {
position: absolute;
top: -161px;
left: -195px;
width: 500px;
height: 500px;
z-index: -1;
right: unset;
}

.coacdemics4 .circle text {  font-size: 10px; letter-spacing:3px; color:#fff; }

.coacdemics4 .circle svg { position: absolute; left: 0; top: 0; width: 100%; height: 540px;

-webkit-animation-name: rotate;
 -moz-animation-name: rotate;
  -ms-animation-name: rotate;
   -o-animation-name: rotate;
      animation-name: rotate;
-webkit-animation-duration: 5s;
 -moz-animation-duration: 5s;
  -ms-animation-duration: 5s;
   -o-animation-duration: 5s;
      animation-duration: 5s;
-webkit-animation-iteration-count: infinite;
 -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
   -o-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
 -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
   -o-animation-timing-function: linear;
      animation-timing-function: linear;

}

.circle.icon1-4 {
top: -120px;
}

.help img {
width: 100%;
}



img.center-img{
width:220px !important;
height:auto !important;
}
img.award, img.helmet, img.testing, img.ball {
width: 100% !important;
height: auto !important;
}


/*new add*/





@media all and (min-width:720px) {
    .c-tabs-nav__link i {
        margin-bottom: 12px;
        font-size: 22px
    }
    .c-tabs-nav__link span {
        display: block;
    }
    }











@media all and (min-width:480px) {
.o-container {
padding: 0 24px
}
}

@media all and (min-width:720px) {
.o-container {
padding: 0 48px
}
}
.o-header {
margin: 0;
padding: 0
}
.o-header-nav {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
background-color: #dc446e
}
.o-header-nav__link {
padding: 12px;
color: #fff
}
.o-header-nav__link:hover {
color: #fff;
background-color: #9d1d41
}
.o-header__title {
margin: 24px;
padding: 0;
color: #818181;
font-size: 28px;
font-weight: 300;
text-align: center
}

@media all and (min-width:480px) {
.o-header__title {
margin: 36px;
font-size: 42px
}
}
.o-section {
margin-bottom: 0px
}
.o-section:last-child {
margin-bottom: 0
}

@media all and (min-width:720px) {
.o-section {
margin-bottom: 0px
}
}
.o-sub-nav {
margin: 0;
padding: 0
}
.o-sub-nav__items {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row wrap;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
list-style: none;
margin: 0;
padding: 0
}
.o-sub-nav__item {
margin: 0;
padding: 4px
}
.o-sub-nav__link {
display: block;
margin: 0;
padding: 4px 24px;
border: 2px solid #dc446e
}
.o-sub-nav__item.active .o-sub-nav__link, .o-sub-nav__link:hover {
color: #fff;
background-color: #dc446e
}
.o-footer {
padding: 12px 0;
text-align: center
}

@media all and (min-width:480px) {
.o-footer {
padding: 24px 0
}
}

@media all and (min-width:720px) {
.o-footer {
padding: 48px 0
}
}
.c-tabs-nav {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
list-style: none;
margin: 0;
padding: 0
}
.c-tabs-nav__link {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
margin-right: 4px;
padding: 12px;
color: #fff;
text-align: center;
-webkit-transition: color .3s;
transition: color .3s;
border-radius: 10px;
background: #ec1d25;
box-shadow: 0px 3px 0px 1px #a92a2b, 0 0 0px 0px #e5383b;
}
.c-tabs-nav__link:last-child {
margin-right: 0
}
.c-tabs-nav__link:hover {
color: #000000
}
.c-tabs-nav__link.is-active {
color: #ec1d25;
background-color: #000
}
.c-tabs-nav__link i, .c-tabs-nav__link span {
margin: 0;
padding: 0;
line-height: 1
}
.c-tabs-nav__link i {
font-size: 18px
}
.c-tabs-nav__link span {
display: none;
font-size: 14px;
line-height: 18px;
}

@media all and (min-width:720px) {
.c-tabs-nav__link i {
margin-bottom: 12px;
font-size: 22px
}
.c-tabs-nav__link span {
display: block
}
}
.c-tab {
display: none;
}
.c-tab.is-active {
display: block
}
.c-tab__content {
padding: 20px 0 0 0;
}
.c-tabs.no-js .c-tabs-nav {
display: none
}
.c-tabs.no-js .c-tab {
display: block;
margin-bottom: 1.5rem
}
.c-tabs.no-js .c-tab:last-child {
margin-bottom: 0
}
.carbon-img, .carbon-wrap {
margin: 0 0 4px;
display: block
}
#carbonads {
position: fixed;
bottom: 12px;
right: 12px;
z-index: 1000;
padding: 24px 12px 12px;
width: 154px;
background-color: #fff;
line-height: 1.1;
border: 1px solid #e7e7e7
}
.carbon-img {
padding: 0;
width: 130px;
height: 100px
}
.carbon-text {
color: #818181;
font-size: 12px
}
.carbon-poweredby {
font-size: 10px
}
.carbonad__close {
display: block;
position: absolute;
top: 0;
left: 12px;
height: 24px;
font-size: 11px;
line-height: 24px
}

@media all and (max-width:660px) {
#carbonads {
display: none
}
}


a.c-tabs-nav__link img {
width: 30px;
}

.o-container {
margin: 0 auto;
padding: 0 0;
}














/* Responsive Tabs - menucool.com/jquery-tabs */

ul.rtabs
{
text-align:left; /*set to left, center, or right to align the tabs as desired*/    
font-size:0;
margin:0;
padding:0;
list-style-type:none;
}
    
ul.rtabs li
{
margin:0;
margin-right:4px; /*gap between tabs. Set it to -1px for no gap.*/
padding:0;
display:inline;
}
    
ul.rtabs li a
{
padding: 0 16px;
display: inline-grid;
font-weight: 500; 
font-size: 12px;
line-height: 16px;
text-decoration: none;
color: #222;
outline: none;
border: 1px dashed #b9b6b6;
border-bottom: none;
border-radius: 15%;
position: relative;
text-align: center;
width: 15%;
height: 180px;
margin-right: 12px;
font: 14px/25px 'Montserrat', sans-serif;
letter-spacing: -0.20px;
}
    
ul.rtabs li a:link, ul.rtabs li a:visited
{
color:#222;
}
    
ul.rtabs li a:hover
{
border-color: #DDD;
background-color: #f18789;
color: #fff;
}

/*selected tab style */
ul.rtabs li.selected a
{
color: #ffffff;
font-weight: bold;
border: 1px dashed #fdf6f5;
background: #f18789;
z-index: 3;
font-size: 14px;
box-shadow: inset -1px 0px 0px 7px #fff;
}   
    
/*selected tab style on hover */
ul.rtabs li.selected a:hover
{
text-decoration:none;
}

/* container of content panels */
div.panel-container
{
position:relative;    
padding:0px; margin:0px;
outline:none;
margin-top:-2px;
}

/* content panel */       
div.panel-container > div
{
padding:40px 0px;

/* The two settings below should not be changed. */
display: block;
margin:0px;
}  
div.panel-container div.inactive
{
display: none;
}

/* loading image before ajax content is retrieved. Only applicable when Ajax is used.*/
div.ajaxLoading {background:transparent url(loading.gif) no-repeat center center; height:150px; width:20px; font-size:0;padding:0; margin:0 auto; }

.rtabs img{
margin:20px auto 0;
}


/* For mobiles */
@media only screen and (max-width:560px){
ul.rtabs{
    box-sizing:border-box;
    border-left:1px solid #ccc;
    border-top:1px solid #ccc;
    min-width:260px;
}

ul.rtabs li{
    display:inline-block;
    box-sizing:border-box;
    margin-right:0;
    width:50%; /* set it to 100% for one column, 33.33% for three-column */
}

ul.rtabs li:last-child:nth-child(odd){
    width:100%;
}

ul.rtabs li a {
    border:none;
    border-right:1px solid #ccc;
    border-bottom:1px solid #ccc;
    display:block;
    padding:0;
    text-align:center;
    border-radius:0;
}

ul.rtabs li.selected a {
    background-color:#fff;
    background-image: linear-gradient(#fff, #fff 50%, #f4f4f4 50%, #fafafa);
}

div.panel-container {
    border-radius:0;
    min-width:260px;
    box-sizing:border-box;
}
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
}
.sh-box {
    background: #fff;
    padding: 15px 15px 22px 15px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.1);
    border-radius: 4px;
    border: 1px solid #dde6ed;
}


.facilities {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 4px;
    padding: 12px;
    color: #fff;
    text-align: center;
    -webkit-transition: color .3s;
    transition: color .3s;
    border-radius: 10px;
    background: #c73133;
    box-shadow: 0px 3px 0px 1px #a92a2b, 0 0 0px 0px #e5383b;


    
    
  
  }
  
  .content-box {
    box-sizing: content-box;
    /* Total width: 160px + (2 * 20px) + (2 * 8px) = 216px
       Total height: 80px + (2 * 20px) + (2 * 8px) = 136px
       Content box width: 160px
       Content box height: 80px */
  }
  
  .border-box {
    box-sizing: border-box;
    /* Total width: 160px
       Total height: 80px
       Content box width: 160px - (2 * 20px) - (2 * 8px) = 104px
       Content box height: 80px - (2 * 20px) - (2 * 8px) = 24px */
  }
@media only screen and (max-width: 767px) {
    .coacdemics4 img {
        width: 100%;
    }
}