@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600');
body {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	color: #333333;
}
a, a:link, a:visited, a:active, a:hover {
	text-decoration: none;
	outline: none;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
h1, h2, h3, h4, h5, h6, p, form, ul {
	margin: 0;
}
input, button, textarea, select {
	width: 100%;
	outline: none;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
input:focus, select:focus, textarea:focus {
	outline: none;
	box-shadow: none;
}
img {
	max-width: 100%;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
/*============================================================================*/

input[type=checkbox], 
input[type=radio]{
	width:auto;
}

header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
	border-bottom: 1px solid rgba(255,255,255,.30);
} 
.navbar-light .navbar-brand {
	color: #fff;
	font-size: 26px;
	font-weight: 600;
	padding: 0;
}
header .navbar {
	padding: 0;
}
.navbar-light .navbar-nav .nav-link {
	color: #fff;
	padding: 35px 20px;
	font-size: 16px;
	border-bottom: 3px solid transparent;
	margin-left: 3px;
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
	color: #ffc600;
	border-bottom-color: #fff;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: #ffc600;
	border-bottom-color: #fff;
}
/*============================================================================*/

.banner_div {
	position: relative;
}
.item_content {
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	display: flex;
	flex-direction: column;
	padding: 50px;
	padding-top: 100px;
}
.item_content::before {
	content: "";
	position: absolute;
	left: -50%;
	height: 150%;
	width: 150%;
	background: rgba(0,0,0,.20);
	border-radius: 50%;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
}
.item_content span {
	font-size: 35px;
	color: #fff;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.item_content span span {
	color: #ffc600;
	margin: 0;
}
.item_content p {
	font-size: 16px;
	color: #fff;
	line-height: 24px;
	margin-bottom: 30px;
}
.item_content li {
	display: inline-block;
	margin-right: 8%;
}
.item_content li:last-child {
	margin-right: 0;
}
.item_content li a {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: 500; 
	/*opacity: .7;*/
}
.item_content li a:hover, .item_content li a:focus {
	opacity: 1;
}
.item_content li a img {
	margin-right: 20px;
}
.get_btn {
	padding: 8px 0;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	border: 2px solid #43b6fa;
	width: 200px;
	text-align: center;
	background: rgba(0,0,0,.15);
	border-radius: 3px;
	display: inline-block;
	margin-top: 35px;
	font-weight: 600;
}
.get_btn:hover, .get_btn:focus {
	background: #fff;
	color: #43b6fa;
}
.item_center {
	margin: auto;
}
/*============================================================================*/

section {
	padding: 100px 0;
}
.heading {
	text-align: center;
	margin-bottom: 50px;
	font-size: 16px;
	color: #777777;
	padding-bottom: 30px;
	position: relative;
}
.heading .title {
	font-size: 35px;
	text-transform: uppercase;
	margin-bottom: 15px;
	color: #333333;
}
.heading::after {
	content: "";
	position: absolute;
	bottom: 0;
	margin: auto;
	left: 0;
	right: 0;
	width: 150px;
	height: 1px;
	background: #43b6fa;
}
/*============================================================================*/

.service_card_div .flex-fill {
	padding: 0 25px;
	text-align: center;
	color: #fff;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	transform: scale(1);
	position: relative;
}
.service_card_div .flex-fill:hover, .service_card_div .flex-fill:focus {
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(0,0,0,.20);
	z-index: 1;
}
.service_card_div span {
	display: block;
	height: 55px;
	width: 60px;
	line-height: 50px;
	margin: auto;
	font-size: 25px;
	font-weight: bold;
	background: rgba(0,0,0,.20);
	margin-bottom: 15px;
	border-radius: 0 0 30px 30px;
}
.service_card_div strong {
	font-size: 25px;
	display: block;
	margin-bottom: 15px;
}
.service_card_div p {
	margin-bottom: 20px;
}
.service_card_div a {
	display: block;
	color: #fff;
	background: rgba(0,0,0,.4);
	width: 120px;
	text-transform: capitalize;
	padding: 5px;
	margin: auto;
	margin-bottom: -15px;
}
.service_card_div .flex-fill:hover a, .service_card_div .flex-fill:focus a {
	background: #333;
	color: #fff;
}
.fill_col1 {
	background: #f49598;
}
.fill_col1 a {
	background: #cd6a6d;
}
.fill_col2 {
	background: #64cad2;
}
.fill_col2 a {
	background: #47989e;
}
.fill_col3 {
	background: #5eaadb;
}
.fill_col3 a {
	background: #497895;
}
.fill_col4 {
	background: #c395bc;
}
.fill_col4 a {
	background: #7f627b;
}
/*============================================================================*/

.service_list_sec {
	background: url(../images/ser_bg.jpg) left center;
	background-size: cover;
	color: #fff;
}
.service_list_div {
	float: right;
	margin-right: 100px;
	width: 30%;
}
.service_list_div h2 {
	font-size: 25px;
	font-weight: 600;
	padding: 25px;
	background-image: -moz-linear-gradient( 90deg, rgba(255,162,0,.8) 0%, rgba(220,59,59,.8) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgba(255,162,0,.8) 0%, rgba(220,59,59,.8) 100%);
	background-image: -ms-linear-gradient( 90deg, rgba(255,162,0,.8) 0%, rgba(220,59,59,.8) 100%);
}
.yellow_star_list {
	background: rgba(0,0,0,.6);
	padding: 30px;
}
.yellow_star_list li {
	position: relative;
	margin-bottom: 30px;
	padding-left: 30px;
}
.yellow_star_list li:last-child {
	margin-bottom: 0;
}
.yellow_star_list li::before {
	content: "\f006";
	font-family: fontawesome;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 20px;
	color: #ffc600;
}
.yellow_star_list a {
	font-size: 20px;
	color: #fff;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
	display: inline-block;
}
.yellow_star_list a:hover, .yellow_star_list a:focus {
	color: #ffc600;
}
.yellow_star_list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 60px;
	background: #ffc600;
}
.yellow_star_list p {
	line-height: 24px;
}
/*============================================================================*/

.process_card {
	background: #eee;
	display: flex;
	padding: 25px 15px;
	position: relative
}
.process_icon {
	margin: auto;
	position: relative;
	left: -15px;
	background: #aaa;
}
.process_icon::before {
	content: "";
	position: absolute;
	top: -27px;
	left: 0px;
	border-bottom: 27px solid red;
	border-left: 27px solid transparent;
	background: #fff;
}
.process_icon::after {
	content: "";
	position: absolute;
	bottom: -26px;
	left: 0px;
	border-top: 26px solid red;
	border-left: 27px solid transparent;
	background: #fff;
}
.process_icon i {
	height: 150px;
	width: 150px;
	line-height: 150px;
	text-align: center;
	font-size: 60px;
	color: #fff;
}
.process_card strong {
	position: absolute;
	height: 40px;
	width: 40px;
	line-height: 40px;
	font-size: 22px;
	color: #fff;
	background: #aaa;
	border-radius: 50%;
	top: -20px;
	right: 15px;
	text-align: center;
}
.process_content span {
	display: block;
	font-size: 18px;
	color: #333333;
	font-weight: 600;
}
.process_content p {
	color: #777777;
	margin-bottom: 5px;
}
.process_content a {
	display: inline-block;
	padding: 5px 15px;
	background: #aaa;
	color: #fff;
	text-transform: uppercase;
}
.process_card:hover a, .process_card:focus a {
	background: #333;
}
.p_col1 strong, .p_col1 .process_icon, .p_col1 a {
	background: #0091cf;
}
.p_col1 .process_icon::before {
	border-bottom-color: #006e9d;
}
.p_col1 .process_icon::after {
	border-top-color: #006e9d;
}
.p_col2 strong, .p_col2 .process_icon, .p_col2 a {
	background: #e1871a;
}
.p_col2 .process_icon::before {
	border-bottom-color: #a85c00;
}
.p_col2 .process_icon::after {
	border-top-color: #a85c00;
}
.p_col3 strong, .p_col3 .process_icon, .p_col3 a {
	background: #54a736;
}
.p_col3 .process_icon::before {
	border-bottom-color: #238500;
}
.p_col3 .process_icon::after {
	border-top-color: #238500;
}

/*============================================================================*/

.map_apply_sec{
	background: url(../images/map_bg.jpg) left center;
	background-size: cover;
	color: #fff;
	padding: 50px 0;
}
.map_us_div h4,.map_us_div span{
	font-size: 25px;
		color: #ffc600;
	text-transform: uppercase;
	display: block;
	margin-bottom: 5px;
}
.map_flex{
	display: flex;
	    height: 100%;
}
.map_us_div {
	margin: auto;
}
.map_us_div span{
	color: #fff;
}
.map_us_div p{
	line-height: 26px;
	margin: 15px 0;
}
.map_us_div .input-group{
	margin: 0;
	margin-top: 25px;
}
.map_us_div .input-group .form-control {
    padding:15px 25px;
    background: #fff;
    box-shadow: none;
    border: none;
    border-radius: 0;
    height: auto;
}
.map_us_div .input-group-append .btn {
    border-radius: 0;
    background-image: -moz-linear-gradient( 90deg, rgb(255,162,0) 0%, rgb(220,59,59) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(255,162,0) 0%, rgb(220,59,59) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(255,162,0) 0%, rgb(220,59,59) 100%);
    border: none;
    padding: 12px 25px;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
	box-shadow: none;
}

/*============================================================================*/

.t_card{
	padding:30px;
	background: #eee;
}
.owl-carousel .t_user_div img{
	border-radius: 50%;
	margin: auto;
	margin-bottom: 15px;
	width: auto;
}
.t_user_div  span{
	display: block;
	text-align: center;
	text-transform: uppercase;
}
.t_user_div {
    float: left;
    vertical-align: middle;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 2px solid #bbbbbb;
}
.themetestmonial_owl .owl-dots{
	text-align: center;
	margin-top: 25px;
}
.themetestmonial_owl button.owl-dot{
	display: inline-block;
	height: 6px;
	width: 30px;
	background: #bbbbbb;
	margin: 0 5px;
	outline: none;
}
.themetestmonial_owl button.owl-dot.active{
	width: 60px;
	background: #ffc600;
}

/*============================================================================*/

footer{
	text-align: center;
	background: url(../../images/footer_bg.jpg);
	background-size: cover;
	color: #fff;
}
.footer_div{
	padding: 70px 0;
}
.footer_div li{
	display: inline-block;
	margin: 0 15px;
}
.footer_div li a{
	color: #fff;
	font-size: 16px;
}
.footer_div li a:hover,.footer_div li a:focus{
	color: #ffc600;
}
.footer_div ul{
	text-align: center;
}
 .footer_div p {
    margin: 40px 0;
    line-height: 26px;
    color: #fff;
}

.copy_right_div{
	padding: 20px;
	text-align: center;
	background: rgba(0,0,0,.3);
	border-top: 1px solid rgba(255,255,225,.3);
	color: #A3A3A3;
}

.faq-card {
	box-shadow: 0 0 10px #fff;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	background-color: #f6f6f6;
	margin-bottom: 30px;
}
.faq-card:hover {
	box-shadow: 0 0 20px #ccc;
}
.faq-card span {
	display: block;
	font-size: 22px;
	color: #fff;
	padding: 10px 20px;
	background-color: #43b6fa;
	border-bottom: 1px solid #ECECEC;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.faq-card:hover span {
	background-color: #333;
}
.faq-card p {
	color: #444;
	padding: 20px;
	margin: 0;
}
.inner_banner .item_content::before {
	display: none;
}
.inner_banner .item_content {
	top: auto;
	left: 0;
	width: 40%;
	height: auto;
	padding: 30px;
	right: 0;
	margin: auto;
	bottom: 0;
	text-align: center;
	background: rgba(0,0,0,.30);
}
.inner_banner .item_content p {
	margin: 0;
}
 
 /*---------------------- INNER PAGE CSS 16-4-19 --------------------------------*/

/*------------------------ CONTACT CSS -------------------------*/
/*-----------------------------------------------------------*/
.form_sec {
	background: url(../images/grey.png);
}
.form_div {
	width: 70%;
	margin: auto;
	box-shadow: 0 0 10px rgba(0,0,0,0.18);
	padding: 30px;
	background-color: #fff;
}
.form-group {
	margin-bottom: 15px;
}
.form_div label {
	color: #888;
}
.form_div .form-control {
	font-size: 15px;
	border: 2px solid #ddd;
	border-bottom: 2px solid #ddd;
	box-shadow: 0 0 0 #ccc inset;
	border-radius: 0px;
	background-color: rgba(246,246,248,1);
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	color: #000;
	height: auto;
	padding: 12px 15px;
	resize: none;
}
.form_div .form-control:focus {
	box-shadow: 0 -150px 0 #f1f1f1 inset;
	border-bottom: 2px solid #ffc600;
}
.form_btn {
	background: #43b6fa;
	border: 2px solid #43b6fa;
	color: #fff;
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 46px;
	margin: 15px auto 0 auto;
	text-transform: uppercase;
	width: 180px;
	border-radius: 5px;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.form_btn:hover, .form_btn:focus {
	background: #fff;
	color: #43b6fa;
}
/*------------------------------------------------------*/

/*----------- INNER-FAQ ------------*/

.faq-card {
	box-shadow: 0 0 10px #fff;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	background-color: #f6f6f6;
	margin-bottom: 30px;
}
.faq-card:hover {
	box-shadow: 0 0 20px #ccc;
}
.faq-card span {
	display: block;
	font-size: 22px;
	color: #fff;
	padding: 10px 20px;
	background-color: #43b6fa;
	border-bottom: 1px solid #ECECEC;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.faq-card:hover span {
	background-color: #333;
}
.faq-card p {
	color: #444;
	padding: 20px;
	margin: 0;
}
.inner_banner .item_content::before {
	display: none;
}
.inner_banner .item_content {
	top: auto;
	left: 0;
	width: 40%;
	height: auto;
	padding: 30px;
	right: 0;
	margin: auto;
	bottom: 0;
	text-align: center;
	background: rgba(0,0,0,.30);
}
.inner_banner .item_content p {
	margin: 0;
}
