html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}
.list {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
a {
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
	text-decoration: none;
	outline: none;
}
.row.m0 {
	margin: 0px;
}
body {
	line-height: 24px;
	font-size: 14px;
	font-family: 'Open Sans';
	font-weight: normal;
	color: #777777;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans';
	font-weight: bold;
}
button:focus {
	outline: none;
	box-shadow: none;
}
.p_6 {
	padding-top: 6px;
	padding-bottom: 6px;
}
.pad_top {
	padding-top: 120px;
}
.pad_btm {
	padding-bottom: 120px;
}
.mt-25 {
	margin-top: 25px;
}
.p0 {
	padding-left: 0px;
	padding-right: 0px;
}
@media (min-width: 1200px) {
.container {
	max-width: 1170px;
}
}

@media (min-width: 1620px) {
.box_1620 {
	max-width: 1650px;
	margin: auto;
}
}
.white_bg {
	background: #fff !important;
}
/* Main Title Area css
============================================================================================ */
.main_title {
	text-align: center;
	margin-bottom: 75px;
}
.main_title h2 {
	font-family: 'Open Sans';
	font-size: 36px;
	color: #222222;
	font-weight: bold;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.main_title p {
	font-size: 14px;
	font-family: 'Open Sans';
	line-height: 24px;
	color: #777777;
	margin-bottom: 0px;
	max-width: 740px;
	margin: auto;
}
.main_title.white h2 {
	color: #fff;
}
.main_title.white p {
	color: #fff;
	opacity: .6;
}
/* End Main Title Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
.header_area {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	transition: background 0.4s, all 0.3s linear;
}
.header_area .navbar {
	background: transparent;
	padding: 8px 0px;
	border: 0px;
	border-radius: 0px;
}
.header_area .navbar .navbar-brand img + img {
	display: none;
}
/*.header_area .navbar .nav .nav-item {
	margin-right: 45px;
}
*/
li.nav-item.active {
    position: relative;
}
li.nav-item.active:after {
    content: '';
    position: absolute;
    background: rgb(63, 152, 194);
    /* border-radius: 20px; */
    width: 50px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    height: 3px;
    bottom: 5px;
}
.header_area .navbar .nav .nav-item .nav-link {
	font-size: 17px;
	line-height: 60px;
	color: #fff;
	padding: 0px 25px;
	display: inline-block;
}
.header_area .navbar .nav .nav-item .nav-link:after {
	display: none;
}
.header_area .navbar .nav .nav-item.submenu {
	position: relative;
}
li.nav-item.submenu.dropdown:after {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid white;
    content: '';
    position: absolute;
    top: 0;
    margin-top: 29px;
    right: 0;
    margin-right: 10px;
}
.header_area .navbar .nav .nav-item.submenu ul {
	border: none;
	padding: 0px;
	border-radius: 0px;
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
	margin: 0px;
	background: #fff;
}

@media (min-width: 992px) {
.header_area .navbar .nav .nav-item.submenu ul {
	position: absolute;
	top: 120%;
	right: 0px;
	min-width: 200px;
	text-align: left;
	opacity: 0;
	transition: all 300ms ease-in;
	visibility: hidden;
	display: block;
	border: none;
	padding: 0px;
	border-radius: 0px;
	
}
}
.header_area .navbar .nav .nav-item.submenu ul:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #eeeeee transparent transparent transparent;
	position: absolute;
	right: 24px;
	top: 45px;
	z-index: 3;
	opacity: 0;
	transition: all 400ms linear;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item {
	display: block;
	float: none;
	margin-right: 0px;
	border-bottom: 1px solid #ededed;
	margin-left: 0px;
	transition: all 0.4s linear;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
	line-height: 20px;
	color: #222222;
	padding: 15px 25px;
	transition: all 150ms linear;
	display: block;
	margin-right: 0px;
	font-size: 15px;
}
.dropdown-menu{
	right: 0;
	left: inherit;
}
ul.dropdown-menu li:before {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    content: '';
    position: absolute;
    top: 0;
    margin-top: -7px;
    right: 0;
    margin-right: 10px;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item:last-child {
	border-bottom: none;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item:hover .nav-link {
	background: #3f98c2;
	color: #fff;
}

@media (min-width: 992px) {
.header_area .navbar .nav .nav-item.submenu:hover ul {
	visibility: visible;
	opacity: 1;
	top: 100%;
}
}
.header_area .navbar .nav .nav-item.submenu:hover ul .nav-item {
	margin-top: 0px;
}
.header_area .navbar .nav .nav-item:last-child {
	margin-right: 0px;
}
.header_area .navbar .search {
	font-size: 12px;
	line-height: 60px;
	display: inline-block;
	color: #222222;
	margin-left: 80px;
}
.header_area .navbar .search i {
	font-weight: 600;
}
.header_area.navbar_fixed .main_menu {
	position: fixed;
	width: 100%;
	top: -70px;
	left: 0;
	right: 0;
	background: #fff;
	transform: translateY(70px);
	transition: transform 500ms ease, background 500ms ease;
	-webkit-transition: transform 500ms ease, background 500ms ease;
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
}
.header_area.navbar_fixed .main_menu .navbar .navbar-brand img {
	display: none;
}
.header_area.navbar_fixed .main_menu .navbar .navbar-brand img + img {
	display: inline-block;
}
.header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
	line-height: 70px;
	color: #222222;
}
.header_socila li {
	display: inline-block;
	margin-right: 20px;
}
.header_socila li a {
	color: #fff;
	line-height: 30px;
	display: inline-block;
}
.header_socila li:last-child {
	margin-right: 0px;
}
.header_socila li:hover a {
	color: #faba00;
}
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Home Banner Area css
============================================================================================ */
.home_banner_area {
	z-index: 1;
	background: url(../img/home-banner2.jpg) no-repeat scroll center 10%;
	background-size: cover;
}
.home_banner_area .banner_inner {
	width: 100%;
	display: flex;
	height: 100vh;
	justify-content: center;
	flex-direction: column;
	vertical-align: middle;
	align-items: center;
}
.main_section{
	
}
.home_banner_area .banner_inner .col-lg-8 {
	vertical-align: middle;
	align-self: center;
}
.home_banner_area .banner_inner .banner_content {
	text-align: left;
	color: #fff;
}
.home_banner_area .banner_inner .banner_content h2 {
	margin-top: 0px;
	font-family: 'Open Sans';
	font-size: 40px;
	font-weight: normal;
	line-height: 47px;
	margin-bottom: 20px;
}
.home_banner_area .banner_inner .banner_content h2 span{
	font-family: 'Open Sans';
	font-weight: 300;
	font-size: 35px;
}
.home_banner_area .banner_inner .banner_content p {
	color: #fff;
	margin-bottom: 35px;
	font-family: 'Open Sans';
	font-weight: 400;
	font-size: 16px;
}
.home_banner_area .banner_inner .banner_content .banner_map_img {
	text-align: right;
}
.home_banner_area .banner_inner .banner_content .banner_btn {
	margin-right: 0px;
}
.home_banner_area .home_right_box {

    background: #fff;

    padding: 15px 30px;

    border-top: 5px solid #3f98c2;

    border-radius: 2px;

}
.home_banner_area .home_right_box .home_item {
	flex: 0 0 50%;
	max-width: 50%;
	text-align: center;
	line-height: 150px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 300ms linear 0s;
}
.login-sec h2 {

    text-align: left;

    font-family: 'Open Sans';

    font-weight: 400;

    font-size: 28px;

    color: #313030;

    margin-bottom: 5px;

}
.login-sec h2:after {
    content: " ";
    width: 100px;
    height: 2px;
    background: #3f98c2;
    display: block;
    margin-top: 10px;
    border-radius: 3px;
    margin-right: auto;
}
.login-sec label{
	color: #000;
	font-size: 14px;
    font-weight: 600;
}


.login-sec .form-control{
	background: transparent;
	font-weight: 400;
}
.login-sec .btn-login{
	background: rgb(63, 152, 194);
    border: 1px solid #3f98c2;
	color: #fff;
    padding: 7px 15px;
    font-size: 16px;
	transition: all 300ms linear 0s;
}
.login-sec .btn-login:hover{
	background: rgba(63, 152, 194, 0.89);
}

a.fp{
	font-family: 'Open Sans';
	color: #0760bf;
    font-size: 14px;
    font-weight: normal;
    text-decoration: underline;
}
a.fp:hover{
	text-decoration: none;
}
h5.modal-title{
	font-weight: 400;
}

.modal{
z-index: 99999 !important;
}

code{
	font-size: 16px !important;
}
.lead {
    font-size: 17px !important;
}
h5.modal-title{
	font-weight: 400;
}
.field-item h2 {
    font-size: 19px;
    font-weight: 400;
    color: #333;
}
.modal-header{
	background: #3f98c2;
    color: white;
}
.modal-footer{
	background: #e5e5e5;
}
.close, .close:hover{
	color: white;
}

.form-control::-webkit-input-placeholder { color: rgba(185,185,185,1.00); font-size: 14px;} 
.form-control:-moz-placeholder { color: rgba(185,185,185,1.00); font-size: 14px;}  
.form-control::-moz-placeholder { color: rgba(185,185,185,1.00); font-size: 14px;} 
.form-control:-ms-input-placeholder { color: rgba(185,185,185,1.00); font-size: 14px;}  
.form-control::-ms-input-placeholder { color: rgba(185,185,185,1.00); font-size: 14px;} 


.carousel-indicators li{
	width: 10px;
    height: 10px;
    border-radius: 50%;
}
.carousel-item{
	color: #fff;
}
.carousel-control-prev, .carousel-control-next{
	width: 2%;
}
a.more {
    background: #3f98c2;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
	text-decoration: none;
	transition: .5s all;
}
a.more:hover{
	background: #2B7FA7;
	transition: .5s all;
}
.carousel-indicators{
	margin-bottom: -40px;
}
/************************************************
	************************************************
				Animations CSS							
	************************************************
************************************************/
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* Timing delay */
.fadeInDown.one {
	-webkit-animation-delay: 0s;
	-moz-animation-delay: 0s;
	animation-delay: 0s;
}
.fadeInDown.two {
	-webkit-animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.fadeInDown.three {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.fadeInDown.four {
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.fadeInDown.five {
	-webkit-animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.fadeInDown.six {
	-webkit-animation-delay: 1.0s;
	-moz-animation-delay: 1.0s;
	animation-delay: 1.0s;
}
.fadeInDown.seven {
	-webkit-animation-delay: 1.2s;
	-moz-animation-delay: 1.2s;
	animation-delay: 1.2s;
}
.fadeInDown.eight {
	-webkit-animation-delay: 1.4s;
	-moz-animation-delay: 1.4s;
	animation-delay: 1.4s;
}
.fadeInDown.nine {
	-webkit-animation-delay: 1.6s;
	-moz-animation-delay: 1.6s;
	animation-delay: 1.6s;
}
.fadeInDown.ten {
	-webkit-animation-delay: 1.8s;
	-moz-animation-delay: 1.8s;
	animation-delay: 1.8s;
}
td.label-bar

{font-family: 'Open Sans';
    
color: #000;
    
font-size: 14px;
    
font-weight: 600;
    
text-transform: capitalize;

}

input#btnSubmit_6 {
    font-family: 'Open Sans';
float: right;
    
background: rgb(63, 152, 194);
   
border: 1px solid #3f98c2;
    
color: #fff;
   
padding: 7px 15px;
    
font-size: 16px;
    
border-radius: 0.25rem;
cursor: pointer;
}



/* End Home Banner Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Footer Area css
============================================================================================ */
.footer_area {
	background: rgba(249, 249, 255, 0.8);
    position: fixed;
    bottom: 0;
    color: #484848;
    left: 0;
    right: 0;
}
.footer_inner a{
	margin-right: 45px;
	color: #313131;
	text-decoration: none;
}
.footer_inner a:last-child{
	margin-right: 0px;
}
.footer_inner a:hover{
	text-decoration: underline;
	color: #000;
}
.issue {

    background: #fff;

    padding: 10px 30px;

    margin-top: 3px;

    border-radius: 2px;

}

 .issue p {

    margin: 0;

    color: #5a5959;

    font-weight: 600;

   line-height: 30px;

}
/* End Footer Area css
============================================================================================ */
/*---------------------------------------------------- */


