body {
  font-family: "Raleway", sans-serif;
  color: #444444;
}

a {
  color: #3498db;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #3498db;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #57aae1;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*********************************
		HEADER
*************************/

#header {
  height: 80px;
  z-index: 997;
  transition: all 0.5s;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 60px;
  background: #fff;
}

#header .logo h1 {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #222222;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 768px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    height: 60px;
    background: #fff;
  }
  #header .logo h1 {
    font-size: 28px;
  }
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #555555;
  padding: 8px 0 12px 25px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #3498db;
  text-decoration: none;
}

.nav-menu .get-started a {
  background: #3498db;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 30px;
  padding: 10px 25px;
}

.nav-menu .get-started a:hover {
  background: #57aae1;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 25px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #222222;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #3498db;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #222222;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #3498db;
  text-decoration: none;
}

.mobile-nav .get-started {
  text-align: center;
  margin-top: 10px;
}

.mobile-nav .get-started a {
  background: #3498db;
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 30px;
  display: inline-block;
}

.mobile-nav .get-started a:hover {
  background: #57aae1;
  color: #fff;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/****************************************************************************/
/*************
Index PAge Hero Layout
********************/

.section_hero {
    background-color: #6bacb0; /**6bacb0, 8bc3e9, 79afd4**/
/*background: rgba(0, 0, 0, 0) url("../img/hero-index4.jpg") repeat scroll center center; overflow: visible; */
padding-top:30px;
width: 100%;
height: auto;
margin-top: 70px;
}
.section_hero h1{
margin: 0 0 10px 0;
font-size: 42px;
font-weight: 600;
line-height: 56px;
color: #fff;
}


.section_hero h2{
margin: 0 0 10px 0;
font-size: 20px;
font-weight: 400;
line-height: 1.2;
color: #000;
}



/****************************************************************************/
/*************
		Eclipse Button Colors
********************/

.btn-eclipseblue:hover {
  background: #3498db;
  color: #fff;
}

.btn-eclipseblue {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  border: 2px solid #fff;
  background: #3498db;
  margin-top: 30px;
}

.btn-eclipsegreen {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  border: 2px solid #fff;
  background: rgb(137, 195, 140);
  margin-top: 30px;
  margin-bottom: 30px;
}

.btn-eclipsegreen:hover {
  background: rgb(137, 195, 140);
  color: #fff;
}

/******************MARGINS AND PADDINGS*******************/
.margin-left30{
margin-right:30px;	
}

.margin-bottom30{
	margin-bottom:30px;
}

.margin-top70{
	margin-top:70px;
}

.margin-top30{
	margin-top:30px;
}


.divcenter {
    position: relative !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.paddingtop60{
	padding-top:120px;
	
}


/*****landing-Page Signin Form***********/
.index_signin_form{
	display: table-cell;
	vertical-align: middle;
	background: rgba(0,0,0,0.3);
    background-color: rgba(244, 241, 241, 0.6);
    padding: 30px;
    border-radius: 3px;
	
}

.otp_form {
    display: table-cell;
    vertical-align: middle;
    background: rgba(0,0,0,0.3);
        background-color: rgba(0, 0, 0, 0.3);
    background-color: rgba(244, 241, 241, 0.6);
    padding: 60px;
    border-radius: 3px;
    margin-bottom: 80px;
	margin-top: 40px;
}

.nobottommargin {
    margin-bottom: 0 !important;
}

.heading-block {
    margin-bottom: 50px;
}

.nobottomborder {
    border-bottom: none !important;
}
.heading-block > span:not(.before-heading) {
    display: block;
    margin-top: 10px;
    font-weight: 300;
    color: #777;
}
.heading-block h2 + span {
    font-size: 18px;
}
.dark .heading-block:not(.not-dark), .dark .counter {
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

form .col_full, form .col_half, form .col_one_third, form .col_two_third, form .col_three_fourth, form .col_one_fourth, form .col_one_fifth, form .col_two_fifth, form .col_three_fifth, form .col_four_fifth, form .col_one_sixth, form .col_five_sixth {
    margin-bottom: 15px;
	
}


.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .3rem;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-group-lg > .btn, .btn-lg {
    padding: .5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .3rem;
	font-family: "Raleway", sans-serif;
}

/************************************************************************/
.section_col2index{
padding-top:30px;
width: 100%;
height: auto;
margin-top:30px;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}
.section-title h2 {
    font-size: 1.7rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #222222;
}

.section-title h2::before, .section-title h2::after {
  content: '';
  width: 50px;
  height: 2px;
  background: #34db95;
  display: inline-block;
}

.section-title h2::before {
  margin: 0 15px 10px 0;
}

.section-title h2::after {
  margin: 0 0 10px 15px;
}


.section-title h4 {
    position: relative;
    color: ##5e5e5e;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

/**************************************************************/

/*--------------------------------------------------------------
# BOX STYLE
--------------------------------------------------------------*/
.box .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.box .member .member-img {
  position: relative;
  overflow: hidden;
}

.box .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.box .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.box .member .social a:hover {
  color: #3498db;
}

.box .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.box .member .member-info {
  padding: 25px 15px;
}

.box .member .member-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 18px;
  color: #aaaaaa;
}

.box .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}



.box .member .member-info p {
  font-size: 14px;
  line-height: 26px;
  color: #777777;
  text-align: left;
}

.box .member:hover .social {
  opacity: 1;
}

/************************BOX-2 STYLE*************************************/
.second-box.media-box { padding: 0;
}

.second-box.media-box .fbox-media { margin: 0 0 0px; }

.second-box.media-box .fbox-media,
.second-box.media-box .fbox-media a,
.second-box.media-box .fbox-media img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.second-box.media-box .fbox-media iframe { display: block; }

.second-box.media-box p { margin-top: 17px; }

.second-box.media-box.fbox-bg .fbox-media { margin: 0; }

.second-box.media-box.fbox-bg{
	padding: 25px;
	background-color: #FFF;
	border: 1px solid #E5E5E5;
	border-top: 0;
	border-radius: 0 0 5px 5px;
}

.second-box.media-box.fbox-bg .fbox-media img { border-radius: 5px 5px 0 0; }

.fbox-desc {
	padding:15px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	border-top: 0;
	border-radius: 0 0 5px 5px;
	border-radius: 5px;
	text-align:center;
	overflow: hidden;
}

.second-box p {
    margin: 8px 0 0 0;
    margin-top: 8px;
	margin-bottom:8px;
    color: #999;
	font-size:1rem;
	font-weight:400;
}
.second-box h3 span.subtitle {
    display: block;
    margin-top: 5px;
    color: #444;
    font-weight: 400;
    text-transform: none;
	font-size:1rem;
	text-align: center;
}

.second-box h3{
    margin-top: 10px;
    font-weight: 600;
    text-transform: none;
	font-size:1.55rem;
	
}

.btn-starttest {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    border: 2px solid #fff;
    background: #3498db;
    
}

.btn-download {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    border: 2px solid #fff;
    background: rgb(137, 195, 140);
	margin-top:10px;
}

.btn-signin {
        padding: .5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .3rem;
    font-family: "Raleway", sans-serif;
    display: block;
    width: 100%;
    color: #fff;
    border: 2px solid #fff;
    background: rgb(137, 195, 140);
	margin-top:10px;
}

.btn-registration {
        padding: .5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .3rem;
    font-family: "Raleway", sans-serif;
    display: block;
    width: 100%;
    color: #fff;
    border: 2px solid #fff;
    background: #3498db;
	margin-top:10px;
}


/***************************************************************************************/
.alignleft{
text-align:left;	
}

@font-face {
font-family: 'Kruti Dev';
src: url("fonts/Kruti_Dev_010.ttf") format('truetype');
}

.kruti_hindi_font {
font-family: Kruti Dev !important;
font-size: 18px !important;
}

@font-face {
font-family: 'SHIVM';
src: url('fonts/Shiva-Medium.ttf')  format('truetype'),
 url('fonts/Shiva-Medium.woff')  format('woff'),
 url('fonts/Shiva-Medium.woff2')  format('woff2');
 
}

.Shiva_hindi_font {
font-family: SHIVM !important;
font-size: 20px !important;
}

.fontsize1rem{
font-size: 1.5rem;
}
.margin-bottom50px{
	margin-bottom:50px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #222222;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  padding-top: 5px;
  color: #222222;
}

#footer .footer-links a {
  color: #222222;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #3498db;
}




