/*********************************************************************************
common styles
***************/
body {
	background:#f2f2f2!important;
	color:#333!important;
	font-family: 'Roboto', sans-serif!important; 
	font-size:14px!important;
	font-weight:400;
	/*font-family: 'Open Sans', sans-serif;*/
	/*font-family: 'Roboto Slab', serif!important;*/
	/*font-family:"Times New Roman", Times, serif !important;*/
}
h1, h2, h3, h4, h5, p, ul, li {
	margin:0px!important;
	padding:0px!important;
}
a {
	color:#333!important;
	cursor:pointer;
	text-decoration:none!important;
}
a:active {
	box-shadow:none!important;
}
p {
	line-height:22px;
	margin-bottom:10px!important;
	font-size:14px!important;
}
h1, h2 {
	margin-bottom:10px!important;
}
.no-padding-right {
	padding-right:0px!important;
}
.no-padding-left {
	padding-left:0px!important;
}
/* Common button styles */
.button {
	float: left;
	min-width: 150px; 
	display: block;
	margin:24px 0 10px 10px;
	padding: 10px 15px;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	color:#fff !important;
	text-align: center;
	text-transform:capitalize;
	font-size:15px;
}
.button:focus {
	outline: none;
}
.button > i {
	margin-left:10px;
	padding: 15px;
	background: #333;
	border-radius: 50px;
}
/* Moema */
.button--moema {
	padding: 0px 0px 0px 25px;
	border-radius: 50px;
	background: #ff4800;
	color: #fff;
	-webkit-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
}
.button--moema.button--inverted {
	background: #ECEFF1;
	color: #37474f;
}
.button--moema::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	bottom: -20px;
	right: -20px;
	background: inherit;
	border-radius: 50px;
	z-index: -1;
	opacity: 0.4;
	-webkit-transform: scale3d(0.8, 0.5, 1);
	transform: scale3d(0.8, 0.5, 1);
}
.button--moema:hover {
	-webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	color: #ECEFF1;
	background-color: #ff0c00;
	-webkit-animation: anim-moema-1 0.3s forwards;
	animation: anim-moema-1 0.3s forwards;
}
.button--moema.button--inverted:hover {
	color: #ECEFF1;
	background-color: #ff0c00;
}
.button--moema:hover::before {
	-webkit-animation: anim-moema-2 0.3s 0.3s forwards;
	animation: anim-moema-2 0.3s 0.3s forwards;
}
@-webkit-keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}
	85% {
		-webkit-transform: scale3d(1.1, 1.1, 1);
		transform: scale3d(1.1, 1.1, 1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}
	85% {
		-webkit-transform: scale3d(1.1, 1.1, 1);
		transform: scale3d(1.1, 1.1, 1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@-webkit-keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
/*********************************************************************************
default form styles start
***************/
.form-group {
	position:relative;
}
.form-group label {
	font-weight:normal;
}
.form-group .label-err {
	background:#d31a1a;
	width:auto;
	font-size:11px;
	color:#fff;
	padding:2px 5px;
	border-radius:2px;
	position:absolute;
	top:-12px;
	right:0;
	z-index: 1;
	text-align:right
}
.form-group .label-err:before {
	content: "\f0d7 ";
	font: normal normal normal 20px/1 FontAwesome;
	color: #d31a1a;
	position: absolute;
	bottom:-12px;
	right:20px;
}
.form-group .form-control {
	border-radius:0!important;
	box-shadow:none;
	padding:10px 10px;
	height:auto
}
.form-group .label-radio {
	margin-right:15px;
}
.form-group input[type=radio] {
	margin-right:5px;
}
.form-group .label-check {
	margin-right:15px;
	font-size:14px!important;
}
.form-group input[type=checkbox] {
	margin-right:5px;
}
.form-group .label-check a {
	text-decoration:underline!important
}
.form-group .form-control:focus {
	box-shadow:none;
	border-color:#ec750b
}
/*********************************************************************************
colored text and buttons
***************/
.text-blue {
	color:#18a0d3 !important;
}
.text-orange {
	color:#ec9e0b
}
.btn-red {
	background:#d72912;
	color:#fff!important;
}
.btn-blue {
	background:#33a9ff;
	color:#fff!important;
}
.btn-green {
	background:#ed3996;
	color:#fff !important;
}
.btn:hover {
	background:#333!important;
	color:#fff!important;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}
.btn-gray-bordered {
	background:#fff!important;
	color:#333;
	border:1px solid #333!important;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}
.btn-gray-bordered:hover {
	background:#333!important;
	color:#fff!important;
}
.web-container {
	background:#fff;
}
/*** 

====================================================================
	Section Title
====================================================================

***/ 
.sec-title{
	position:relative;
	margin-bottom:20px;	
}
.sec-title  {
	position:relative;
	color:#555555;
	font-size: 15px;
	margin-bottom: 10px; 
	border-bottom:0px solid #ff0c00;
}
.sec-title .title span{
	color:#f66103;
}
.sec-title h2{
	color: #333;
    font-size: 18px !important;
    font-weight: 400;
    text-transform: capitalizes;
    letter-spacing: 0px;
    position: relative;
    line-height: 24px;
    background: #f5f5f5; 
    margin-bottom: 10px !important;
    padding: 5px 10px !important;
	font-family: 'Roboto', sans-serif!important; 
	position:relative;
	border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.sec-title  h2:before {
    border-bottom: 3px solid #ff0c00;
    position: absolute;
    top: -2px;
    right: 0;
    content: "";
    width: 10%;
}
.sec-title  h2:after {
    border-bottom: 3px solid #ff0c00;
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    width: 10%;
}
/*.sec-title h2::before {
    position: absolute;
    content: "";
    top: 0;
    right: -8px;
    border-top: 8px solid #ff0c00;
    border-right: 8px solid transparent;
}*/ 
.sec-title h2 span{
	font-weight: 600;
	color: #444;
	display: block;
	font-size: 24px;
}
.sec-title p {
    color: #d2bd7f; 
    display:block;
	font-family: "Great Vibes", Arial, Helvetica, sans-serif!important; 
	font-size: 30px !important;
	line-height: 50px;
}
.colorborder {
    background: #ccc none repeat scroll 0 0;
    display: block;
    height: 1px;
    position: relative;
    width: 200px;
    margin: 2px auto;
}

.colorborder::after {
    background: #ed1c24   none repeat scroll 0 0;
    content: "";
    display: inline-block;
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 60px;
    top: -1px;
}
.sec-title .separetor{
	position:relative;
	width:200px;
}
.sec-title .separetor:before{
	position:absolute;
	content:'';
	left:-1px;
	width:50%;
	height:2px;
	background-color:#666;
}
.sec-title .text{
	position:relative;
	color:#555555;
	font-size:14px;	
	margin-bottom:20px !important; 
	text-align:center;
}
.sec-title.centered .separetor{
	margin:0 auto;
}
.sec-title.centered{
	text-align:center;
}
.sec-title.centered .text{
	max-width:850px;
	margin:0 auto;
}
/*Enter website style*/
.enter-section {
	height:100%;
	vertical-align:middle;
	display:table;
	margin:5% auto;
	z-index:1111;
	position:relative;
}
.group-logo {
	margin-bottom:35px;
}
.group-logo img{
	
}
.sec-enter {
	width: 100%;
	position: relative;
	padding: 80px 25px 100px;
	/*border: 2px solid #f00;*/
	display: table-caption;
	background: #fff;
	box-shadow: 0 7px 6px 0 rgba(70,70,70,0.6);
}
.img-holder  {
	background:#fff;
	overflow:hidden;	
}
.img-holder img {
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
-webkit-transform: scale(1) rotate(0deg);
-moz-transform: scale(1) rotate(0deg);
-ms-transform: scale(1) rotate(0deg);
-o-transform: scale(1) rotate(0deg);
transform: scale(1) rotate(0deg);
}
.img-holder:hover img {
    -webkit-transform: scale(1.5) rotate(3deg);
    -moz-transform: scale(1.5) rotate(3deg);
    -ms-transform: scale(1.5) rotate(3deg);
    -o-transform: scale(1.5) rotate(3deg);
    transform: scale(1.5) rotate(3deg);
} 
/**/ 
 
/*********************************************************************************
header styles
***************/
header {
	background:#fff;
	position: relative;
	width: 100%;
	z-index: 9999;	
}
.header-wrapper { 
    padding: 0px;
    position: absolute;
	z-index: 99999;
	left: 0;
	right: 0;
}
header.header-wrapper {
    background-color: transparent;  
    box-shadow: none;
}
/* top bar*/
header .top-bar { 
	padding:0;
	/*background:#ff0c00;*/
	border-bottom: 1px solid #eaebf2;
	background:#fff;
} 
.top-nav {
	list-style:none;
	float:right;
	margin-bottom:0px !important; 
}
.top-nav li {
	float:left;
	color:#fff!important; 
	font-size:14px;
	border-right:1px solid #ddd;
	margin:5px 0!important;
	position:relative;
	line-height:15px;
}
.top-nav li:last-child {
	border:0
}
.top-nav li a {
	display:block;
	padding:0px 10px;
	color:#333!important;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	font-weight: 300;
}
.top-nav li a i {
	margin-right:2px;
	color: #ff1515;
	width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #ddd;
    line-height: 21px;
    text-align: center;
}
.top-nav li:last-child a {
	padding-right:0;
}
.bbok-now-padding {
/*	padding:8px;*/
	margin-top: 0px;
	/*background: #ecad54;
	border-radius: 5px;
	border:1px solid #ecad54;*/
}
.book-now-btn {
	position:absolute; 
	padding: 10px 20px; 
	color: #fff !important;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	-webkit-transition: .4s;
	transition: .4s;
	letter-spacing: 3px;
	background: #ecad54;
	text-align: center;
	border-radius: 5px;
	border:1px dashed #fff;
	left: 0;
	right: 0;
	display: table;
	margin: auto;
}
.book-now-btn i {
    margin-right: 10px;
}

#header-book-bow {
    top: 26px;
    white-space: nowrap;
}
.ravis-btn.btn-type-2 i{
	 margin-right: 10px;
}

/*logo bar*/
header .header {
	background-color: transparent;
	/*border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
	box-shadow: none;
}
header.header-fixed {
	position:fixed;
	width:100%;
	z-index: 5555;
	background:#fff;
	opacity:1;
	top:0px;
	-moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
	 -webkit-transition: all 500ms ease-in-out;
	  -moz-transition: all 500ms ease-in-out;
	  -ms-transition: all 500ms ease-in-out;
	  -o-transition: all 500ms ease-in-out;
	  transition: all 500ms ease-in-out;
	  -ms-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-op-animation-name: fadeInDown;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-ms-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-op-animation-duration: 500ms;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-op-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-ms-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-op-animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	border-top:0;
}
header.header-fixed .top-bar {
	/*display:none*/
}
header.header-fixed .nav-bar {
	border-bottom:0;
	border-top:0;
	/*background: #ff5d05;*/
}
/*header.header-fixed .nav-bar #level_1 li a {
	color:#fff !important;
}
header.header-fixed .nav-bar #level_1 li a:hover {
	color:#333 !important;
}
header.header-fixed .nav-bar #level_1 > li > a::before {
    background: #fff;
}
header.header-fixed .nav-bar #level_1 > li > a::after {
    color: #fff;
}*/
header.header-fixed .logo-bar {
	/*display:none*/
}
header.header-fixed .logo-bar img {
	width: 250px;
}
header.header-fixed   .logo { 
	margin-left: 0 !important;
}
header.header-fixed .mobile-bg {
	/*display:none*/
}
header.header-fixed  .button {
    margin: 18px 0 10px 10px;
} 
header.header-fixed header-info {
	/*display:none*/
}
/*header.header-fixed .col-lg-9, header.header-fixed .col-md-9 {
	 width:100%;   
}*/
header.header-fixed .bbok-now-padding {
	margin-top:5px;
	display:none;
}
header.header-fixed .nav-bar {
	border-top:1px solid #ddd;
}
/****************Logo bar*********************/
.header .logo {
	display: table;
    margin: 5px auto 10px;
	z-index: 9999;
}
/*site nav*/
header .site-nav {
	 
}
header.header-fixed .site-nav{
	display:table;
	float:none;
	margin-top: 0px;
	 margin: 0px auto;
}

/*************Nav Bar*****************/
.header { 
	/*background: rgba(0, 0, 0, 0.13);*/
}
header .nav-bar {
	position:relative;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	background: #fff;
	border-bottom: 0px solid #eaebf2;
	border-top: 1px solid #eaebf2;
}
header .nav-bar.nav-hide {
	opacity:0;
	visibility: hidden;
	left:-15px;
}
header .nav-bar.nav-show {
	opacity:1;
	visibility: visible;
	left:0px;
} 

/****/
.latest-update {
	background:#fb4700;
}
#latest-news marquee {
   padding: 8px 10px !important;
	height: 40px !important;
	border: 0px solid #f00;
	overflow: hidden;
	width: 100%;
	vertical-align: middle;
	line-height: 28px;
}
#latest-news marquee p {
	float:left;
	padding-left:10px !important;
	border-right:1px solid #ccc;
	padding-right:10px !important;
	display:inline-block;
	color: #fff;
	font-size:14px !important; 
	font-weight:500;
}
#latest-news marquee p:last-child {
  border: 0;
}
#latest-yrans-rate marquee {
    padding: 5px 10px !important;
	height: 34px !important;
	border: 0px solid #f00;
	overflow: hidden;
	width: 100%;
	vertical-align: middle;
	line-height: 28px;
}
#latest-yrans-rate marquee p {
	float:left;
	padding-left:10px !important;
	border-right:1px solid #ccc;
	padding-right:10px !important;
	display:inline-block;
	color: #000;
	font-size:13px !important; 
}

/*********************************************************************************
section styles
***************/
section.slider {
	z-index:1;
	overflow:hidden;
	position:relative;
	margin-top:10px;
} 
/***/
.advrtise img {
	margin-bottom: 5px;
	border: 1px solid #575757;
}
.padding-left-10 {
	padding-left:10px !important;
} 
#interview  .owl-controls {
    margin-top: -30px !important;
}
.owl-theme .owl-controls .owl-page.active span {
   background: #ff0c00 !important;
   position: relative;
}
/***/
.e-paper .sec-title { 
    
}
.e-paper .sec-title h2 {
	 
}
.e-paper .sec-title h2::before {
    
}
#e-paper .item {
	padding:5px;
	/*background:#f40*/
	border:1px solid #ddd;
}
#e-paper .owl-controls {
    margin-top: 0px;
    text-align: center;
    position: absolute;
    top: -57px;
    right: -6px;
    width: 28%;
}
#e-paper .owl-controls .owl-buttons div {
    color: #acacac !important;
}
#e-paper .owl-controls .owl-buttons div:hover {
    background: #f8f6f6 !important;
} 
/***/
.home-bar {
	position: relative; 
	overflow: hidden;
	background: #f2f2f2;
}
.home-bar .web-container {
	padding-top:10px;
	padding-bottom:0px;
}
.home-bar .sec-title h2{

} 
.readmore {
	display:inline-block;
	margin-bottom:0;
	font-size:14px;
	font-weight:500;
	line-height:1.42857143;
	text-align:center;
	white-space:nowrap;
	vertical-align:middle;
	-ms-touch-action:manipulation;
	touch-action:manipulation;
	cursor:pointer;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	padding: 8px 25px;
	background: #ff0c00;
	border: 1px solid #ff0c00;
	color: #fff !important;
	margin-top: 10px;
	border-radius: 0px;
	text-transform:capitalize;
}
.readmore:hover {
	background:#f9f9f9!important;
	color:#333!important;
	 -webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}
.readmore:after {
    content: '\f054';
    font-family: 'FontAwesome';
    font-size: 10px;
    margin-left: 5px;
    color: #fff;
    vertical-align: 1px;
}
.readmore:hover:after {
	color:#333;
}
#media-partner {
	margin-bottom: 35px;
}
#media-partner .owl-item img {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
}
#media-partner .owl-controls {
    /*margin-top: 0px;
    text-align: center;
    position: absolute;
    top: -53px;
    right: 0px;
    width: 30%;
	left: 80%;*/
	margin-bottom: 50px;
}
#media-partner .owl-controls .owl-buttons div {
    color: #acacac !important; 
	padding: 6px 10px !important;
border-radius: 50px !important;
}
#media-partner .owl-controls .owl-buttons div:hover {
		background: #f8f6f6 !important;
}
.view-more {   
	position: absolute ;
    top: -6px;
	padding: 4px 10px;
	right: 0;
	background: #333;
	border: #333;
}
.view-more:hover { color: #ff0c00 !important;background: #f2f2f2 !important;}

/***/
section.gray {
    background: #f5f3f0;
    border-bottom: 1px solid #f1f0ed;
    border-top: 1px solid #f1f0ed;
    color: #9fa6ab;
	padding: 100px 0;
    position: relative;
	overflow:hidden;
}
/**/
.services {
    padding: 0px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}
.services figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: -webkit-gradient(linear,left bottom,left top,from(hsla(0,0%,0%,0.4)),to(rgba(0,0,0,0)));
    background: linear-gradient(0deg,hsla(0,0%,0%,0.4) 0%,rgba(0,0,0,0) 100%);
    padding-bottom: 20px;
    text-align: left;
    padding-left: 30px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.services figcaption h4 {
	color:#fff;
}
.owl-carousel .owl-item img {
    width: 100%;
}
.services .owl-thumb-item {   
    width: 100%;
    background: #fff;
    border: 1px solid #efefef;
    margin-bottom: 10px;
    border-radius: 2px;
    padding: 4px;
    -webkit-transition: .2s;
    transition: .2s;
	cursor:pointer;
}
.services .owl-thumb-item.active {
   /* -webkit-box-shadow: 0 5px 10px rgba(0,9,128,.035),0 7px 18px rgba(0,9,128,.05);
    box-shadow: 0 5px 10px rgba(0,9,128,.035),0 7px 18px rgba(0,9,128,.05);
    color: #fff;*/
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    background: #f6f6f6;
	border:1px solid #ff8700;
} 
.services .owl-thumb-item h5 {
    font-weight: 600; 
	font-size: 16px; 
	margin-top: 5px !important; 
	color: #e00000; 
	margin-bottom: 5px !important
}
.services .owl-thumb-item p{
	font-weight:300;
	font-size: 13px !important;
}
.services .owl-thumb-item.active h5 {
	 
}
.services .media-left {
	vertical-align: middle;
	display:inline-block;
	width:100px;
	height:100px; 
	float:left;
}
.services .media-left img {
	height:100px;
} 
ul.mylist-2 {
	text-transform: inherit;
	list-style:none;
	padding: 0 0 0 20px !important;
	margin:0;
}
ul.mylist-2 li {
	line-height: 24px;
	margin-bottom: 10px !important;
	color:#333;
	font-size:14px;
}
ul.mylist-2 li::before {
 content: "\f138 ";
 font: normal normal normal 14px/1 FontAwesome;
 margin-right: 5px;
 color: #2fa5b6;
 margin-left: -20px;
} 
/**Gallery**/
.hover_effect {
    display: block;
    position: relative;
    background: none;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
	margin-bottom:15px; 
    
	border-radius:5px;
}

.hover_effect:after {
    font-family: FontAwesome;
    color: #fff;
    position: absolute;
    font-size: 1.6em;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
	content: "\f00e";
}

.hover_effect img {
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
	
}

.hover_effect:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    filter: alpha(opacity=60);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -moz-opacity: .6;
    -khtml-opacity: .6;
    opacity: .6;
}

.hover_effect:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    filter: alpha(opacity=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -moz-opacity: 0.4;
    -khtml-opacity: 0.4;
    opacity: 0.4;
}

.hover_effect.h_blue:hover {
    background: #1dc1f8;
} 
.no-padding {
    padding: 0px !important;
}
/**Inner Pages Style**/
.page-banner h2 {
	font-weight: bold;
	color: #323232;
	margin-top: 12px !important;
	font-size: 24px;
}
/*location*/
 .location {
	list-style:none;
	margin-top:15px!important;
	float:right;
}
.location li {
	color:#333!important;
	text-transform:capitalize;
	float:left;
	width:auto;
	margin-right: 10px!important;
}
.location li a:after {
	content: '\f0da';
	font-family: 'FontAwesome';
	font-size: 10px;
	margin-left:10px;
	color:#666666
}
.location li:last-child a:after {
	content: '';
	margin-left:0px;
}
.location li a {
	color:#333!important;
	font-size:12px;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}
.location li a:hover {
	color:#469ed4!important;
}
.location li a.active {
	color:#ff0606 !important;
	font-weight:bold;
}
.sub-heading {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 10px !important;
	margin-top: 15px !important;
	color: #333;
}
.about-temtech > .web-container {
	padding-bottom:35px;
}
/*products*/
 .product {
	margin: 0px 10px;;
	border:1px solid #ddd;
	padding:5px;
}
.product-container {
	width:100%;
	height:auto;
	overflow:hidden;
	position:relative;
}
.product-pic-container {

	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
.product-back {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #000;
	z-index: 2;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}
.product-pic {
}
.product-pic img {
	max-width: 100%;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}
.product-new {
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0px;
	display: inline-block;
	background-color: #0095bc;
}
.product-new span {
	color: white;
	text-transform: capitalize;
	padding: 15px 0px;
	display: inline-block;
	transform: rotate(-90deg);
	font-weight: 300;
}
.product-new:after {
	content: "";
	width: 0px;
	height: 0;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-top: 4px solid #0095bc;
	position: absolute;
	bottom: -4px;
	left: 50%;
	margin-left: -4px;
}
.discount {
	background: #333;
	color: #fff;
	width: 62px;
	height: 25px;
	position: absolute;
	top: 0px;
	right: 0;
	z-index: 1;
	text-align: center;
	line-height: 22px;
	display:none
}
.product-btn {
	background: #4ec7db;
	width: 50px;
	height: 100px;
	position: absolute;
	z-index: 3;
	right: -50px;
	top: 50%;
	margin-top:-50px;
	-webkit-transition: all 350ms linear;
	-moz-transition: all 350ms linear;
	-o-transition: all 350ms linear;
	-ms-transition: all 350ms linear;
	transition: all 350ms linear;
}
.product-btn a {
	background: #333;
	font-size: 16px;
	color: #fff !important;
	width: 50px;
	height: 50px;
	display: block;
	text-align: center;
	line-height: 50px;
	text-transform: uppercase;
	-webkit-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
	-o-transition: all 150ms linear;
	-ms-transition: all 150ms linear;
	transition: all 150ms linear;
}
.product-btn a.cart {
	background: #ff8700;
}
.product-btn a.view {
	background: #ffbd00;
}
.product-btn a:hover {
	color:#fff!important
}
.product-name {
	text-align:center;
	font-size:18px!important;
	margin:5px 0!important;
}
.product-name a {
	color:#333!important;
}
.product-price {
	text-transform:capitalize;
	text-align:center;
	margin-bottom:10px!important;
}
.product-price .price-before {
	color:#999999;
	text-decoration:line-through;
	font-size: 17px;
}
.product-price .price-now {
	font-weight: 400;
color: #d81c1c;
margin: 0 5px;
font-size: 15px;
}
.product-price .price-bv {
}
.product-container:hover .product-back {
	visibility:visible;
	opacity: 0.4;
}
.product-container:hover .product-btn {
	right:0px;
}

/***/
.mytable {
}
.mytable thead > tr > th {
	vertical-align: middle !important;
	text-align:center;
	font-size:15px;
	border-bottom:0!important;
	background:#000;
	color:#fff;
	font-weight:600;
	white-space:nowrap;
	height: 50px;
	text-transform:uppercase;
	padding: 10px 8px !important;
}
.mytable thead > tr > th:nth-child(2) {
	text-align:left;
}
.mytable thead > tr > th:nth-child(4) {
	text-align:left;
}
.mytable tbody > tr > td {
	font-size:14px;
	text-align:left;
	padding: 10px 8px !important;
}    
.mytable tbody > tr > td:nth-child(1) {
	text-align:center
}
.mytable tbody > tr > td:nth-child(3) {
	text-align:center
}
.mytable tbody > tr > td:nth-child(5) {
	width:15%;
}
/*.mytable tbody > tr > td:nth-child(even) {
	background:#f8f8f8;
}*/
.mytable tbody > tr:nth-child(even) {
	background:#f8f8f8;
}
.mytable-1 thead > tr > th {
	font-size:15px;
	font-weight:500;
}
.mytable-1 thead > tr > th:nth-child(2) {
	text-align:left;
}
.mytable-1 thead > tr > th:nth-child(4) {
	text-align:left;
}
.mytable-1 tbody > tr > td  {
	font-size:14px;
}
.mytable-1 tbody > tr > td:nth-child(2) {
	text-align:left;
}
.mytable-1 tbody > tr > td:nth-child(4) {
	text-align:left;
}
/* Date 23-07-2019 */
.visitor-block{
	text-align:left;
}
.visitor-block h4{
	color: #333;
    font-size: 14px !important;
    font-weight: 500;
    text-transform: capitalizes;
    letter-spacing: 0px;
    position: relative;
    line-height: 24px;
    padding: 2px 0px !important;
    font-family: 'Roboto', sans-serif!important;
    position: relative;
}
.visitor-block h4 span{
	color:#f00 !important;
}
.visitor-block p{
	font-size:14px !important;
	line-height:22px !important;
	font-weight:400;
	color:#333 !important;
	padding-bottom:10px;
	text-align:justify;
	
}
.visitor-block.second h4{
	text-align:right;
}
.visitor-block p.second{
	text-align:right;
}
.visitor-sec-margin{
	padding:20px 0;
}
.visitor-line{
	padding:20px 0;
	border-bottom:1px solid #eee;
}
.visitor-img-sec p{
	margin:10px 0 0 !important;
	font-size:13px;
	line-height:18px;
	color:#333 !important;
	
}
/*********************************************************************************
footer styles
***************/

footer .footer-bar {  
	margin-top:0px!important;
	border-top: 5px solid #ff0c00;
	background:#111 ;
	position: relative;
	padding:60px 0 20px 0;	
	overflow:hidden;
}
footer   h2{
   text-align:left;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
    margin-bottom: 25px !important;
	border-bottom: 1px solid #7e7e7e;
	position: relative;
	padding-bottom: 20px !important;
}
footer   h2:before {
    border-bottom: 3px solid #FFBD00;
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    width: 20%;
}
footer h3 {
	font-size:20px;
	margin-bottom:10px !important;
	color: #fff;
}
footer .footer-about-text {
	font-size: 14px !important;
	line-height: 24px;
	color: #999;
	text-align: justify;
}  
footer .footer-logo {
	margin-bottom:15px;
}
footer .footer-bar-top {
}
footer .footer-bar-top p {
	text-align:left
}
footer .footer-bar-top p span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	text-transform: uppercase;
}
footer .footer-bar-top p strong {
	font-size: 14px;
	font-weight: 400;
	color: #dadada;
}
footer .footer-more {
	color:#ffc40f!important;
	text-decoration:underline!important
}
/**/
footer .footer-bar-middle {
	border-bottom: 1px solid #dadada;
	padding:15px 0 0px 0
}
footer .footer-bar-middle h4 {
	font-size:14px;
	text-transform:uppercase;
	text-align:left;
	font-weight:400
}
footer .footer-bar-middle p {
	text-align:justify;
	font-size:13px!important;
}
footer .footer-bar-middle .read-more {
	color:#81b833!important
}
/**/
footer .footer-bar-bottom {
	border-top: 1px solid #808080;
	border-bottom: 1px solid #808080;
	margin-bottom:0px;
	margin-top: 60px;
	padding: 10px 0 5px;
	background: #444;
}
/* footer site nav*/
 

/* footer site nav*/
footer .site-nav ul {
	list-style:none;
}
footer .site-nav ul li {
	line-height:30px;
	display:block;
	padding-right: 20px !important;
	border-bottom:0px dashed #999;
}
footer .site-nav ul a {
	display:block;
	font-size:14px;
	color:#999 !important; 
	line-height: 30px;
	text-transform:capitalize;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}
footer .site-nav ul a:before {
	content: "-";
	color:#999;
	float:left;
	margin-right:8px;	 
	opacity: 1;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}
footer .site-nav ul a:hover {
	color:#ffb400 !important;
}
.contact {
	list-style:none;
}
.contact li {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px !important;
	line-height:24px;
}

.contact li i {
    font-size: 16px;
    color: #999;
    width: 18px;
    text-align: center;
    padding-right: 18px;
}
.contact li i, .contact li span {
    display: table-cell;

}

/*footer social nav*/


footer .social-nav ul {
	list-style:none;
	padding:0px!important;
	display: inline-block;
	margin: 0 0 7px !important;
	font-size: 14px;
	font-weight: 300;
	float: right;
}
footer .social-nav li {
	float:left;
	line-height:35px;
	margin-right:5px!important;
	color: #dadada;
}
footer .social-nav li:first-child {
	margin-top:0px!important;
	font-weight:400;
}
footer .social-nav li a {
	border:0!important;
	padding:0!important
}
footer .social-nav li a .fa {
	color:#ddd!important;
	width:32px;
	height:32px;
	line-height:32px;
	text-align:center;
	border-radius:100%;
	border:1px solid #dadada;
	vertical-align:middle;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	font-size:14px;
}
footer .social-nav li a .fa-facebook {
}
footer .social-nav li a .fa-twitter {
}
footer .social-nav li a .fa-linkedin {
}
footer .social-nav li a .fa-youtube {
}
footer .social-nav li a:hover .fa {
	border-color: #fff;
	color: #fff !important;
	background: #de9145;
}
footer .f-brdr-left {
	border-left:0px solid #ccc;

}
/**/
footer .copy {
	font-size:14px!important;
	margin-top:7px!important;
	color:#ddd;
	margin-bottom:0 !important;
}
footer .copy span {
	color:#ff0c00;
}
p.designer {
	color:#dadada !important;
	margin-top:7px!important;
}
/* top and down button*/
#goTop, #goDown {
	border: 1px solid #ff0c00;
	border-radius:0%;
	width:40px;
	height:40px;
	padding-top:4px;
	text-align:center;
	position: fixed;
	bottom: 28px;
	right:  20px;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	cursor: pointer;
	color: #fff!important;
	font-weight: bold;
	background: #ff0c00;
	z-index:1111;
	/*-webkit-animation: bounce 2s infinite;*/ /* Chrome, Safari, Opera */
	/*animation: bounce 2s infinite;*/
	display:block;
}
#goTop .fa, #goDown .fa {
	font-size:24px !important;
}
#goTop:hover, #goDown:hover {
	 
	border-color: #fff;
	color:#fff!important;
} 

.section-home { 
    overflow: hidden;
    padding: 0; 
	position:relative    
}

.m1 {
    background: url("../design_img/left-bg.jpg") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 450px;
    left: 0;
    position: absolute;
    top: 0px;
    width: 100%;
}
.m2 {
    background: url("../images/m2.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 340px;
    left: 0;
    position: absolute;
    top: 240px;
    width: 112px;
}
.m2p {
    background: url("../images/m2p.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 233px;
    left: 0;
    margin-left: -500px;
    position: absolute;
    top: 100px;
    width: 162px;
}
.m3 {
    background: url("../design_img/right-bg.jpg") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 522px;
    margin-right: -500px;
    position: absolute;
    right: 0;
    top: 20px;
    width: 270px;
}
.m4 {
    background: url("../images/sun_flower.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 248px;
    margin-right: -500px;
    position: absolute;
    right: 0;
    top: 20px;
    width: 158px;
}
.m5 {
    background: url("../images/m1.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 197px;
    left: 0;
    margin-left: -500px;
    position: absolute;
    top: 500px;
    width: 158px;
}
.m6 {
    background: url("../images/m3.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 522px;
    margin-left: -500px;
    position: absolute;
    right: 0;
    top: 370px;
    width: 270px;
}
.brand-sp  {
	padding-top:60px;
	padding-bottom:60px;
}
.brand-sp h1.num {
    font-size: 60px !important;
    font-weight: 900;
    color: #eee;
	text-align: right;
	font-family: 'Oswald',sans-serif !important;
}
.brand-sp p{
	font-size:16px !important;
	text-align:right;
	line-height: 30px;
	font-family: 'Oswald',sans-serif !important;
	color: #444 !important;
	font-weight:500;
}
.brand-sp h1.num-right {
    font-size: 60px !important;
    font-weight: 900;
    color: #eee;
	text-align: left;
	font-family: 'Oswald',sans-serif !important;
}
.brand-sp p.text-right{
	font-size:18px;
	text-align:left;
}
.brand-sp .sec-title h2 {
    font-size: 36px;
    font-family: 'Oswald', sans-serif !important;
    line-height: 36px;
    margin-bottom: 25px !important;
    text-transform: capitalize;
}
div.range-box {
	display:inline-block;
	vertical-align:middle;
	 margin-top: 0%;
}
.brand-sp img {
	margin-top:15px;
	margin-bottom:15px;
}
.factors .serve-head h2 {
	text-align:left;
	font-size:36px;
}
/**/
.floating {
	-webkit-animation-name: floating;
	-webkit-animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-name: floating;
	-moz-animation-duration: 3s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: ease-in-out;
}
/**/

/**/
@keyframes spinner {
 to {
 transform: rotate(360deg);
}
}
 @-webkit-keyframes spinner {
 to {
 -webkit-transform: rotate(360deg);
}
}
/**/
@-webkit-keyframes floating {
 from {
-webkit-transform:translate(0, 0px)
}
 65% {
-webkit-transform:translate(0, 15px)
}
to {
	-webkit-transform:translate(0, 0px)
}
}
@-moz-keyframes floating {
 from {
-moz-transform:translate(0, 0px)
}
 65% {
-moz-transform:translate(0, 15px)
}
to {
	-moz-transform:translate(0, 0px)
}
}

.p-vertical-line {
    display: inline-block;
	list-style:none;
}
.v-line {
    background-color: #f40; /*#bcbcbc*/
    float: left;
    height: 18px;
    margin-right: 5px;
    width: 2px;
}
.v-line.animated {
    background-color: #000;
    height: 27px;
    margin-top: -4px;
    -webkit-animation: 1.5s ease 0s normal none infinite running animate;
    animation: 1.5s ease 0s normal none infinite running animate;
}
@-webkit-keyframes animate {
    50% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}
@keyframes animate {
    50% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}
@keyframes animate {
    50% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}
.event-sec .web-container {
	padding-top:25px;
}
.event-box div {
    overflow: hidden;
}
.event-box {
	padding: 5px;
	border: 1px solid #ddd;
	position: relative;
	display: inline-block;
	margin-bottom:20px;
} 
.event-inner-box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
	padding:0;
	position: relative; 
}
.event-inner-box:before {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#111111), to(transparent));
  background-image: -webkit-linear-gradient(transparent, #111111);
  background-image: -moz-linear-gradient(transparent, #111111), -moz-linear-gradient(transparent, #111111);
  background-image: -o-linear-gradient(transparent, #111111), -o-linear-gradient(transparent, #111111);
  background-image: linear-gradient(transparent, #111111), linear-gradient(transparent, #111111);
  content: "";
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  opacity: 0.7;
  z-index: 1;
}
.evnt-image img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.9s ease-out;
  -moz-transition: all 0.9s ease-out;
  -ms-transition: all 0.9s ease-out;
  -o-transition: all 0.9s ease-out;
  transition: all 0.9s ease-out;
}
.event-inner-box:hover .evnt-image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
} 
 
.event-header {
  position: absolute;
  bottom: 0px;
  padding: 0 20px 4px !important;
  color: #ffffff;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
   font-size: 20px;
   margin-bottom:10px !important;
}
.event-header a {
  color: #111111;
}
 .event-header a:hover {
  color: #f82a2a;
}
.sub-title-text {
  position: absolute;
  bottom: 15px;
  margin: 0;
  padding: 0px 20px 0 !important;
  color: #ffffff;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
   font-size: 13px;
  margin-bottom: 10px;
} 
 .event-inner-box a {
  color: #ffffff !important;
} 
 .event-inner-box:hover .event-header {
  bottom: 20px;
}
.event-inner-box:hover .sub-title-text {
  bottom: 20px;
} 
.datex {
    position: absolute;
    z-index: 10;
    background-color: #ff0c00;
    color: #FFFFFF;
    padding: 3px 10px;
    top: 0;
    right: 15px;
    display: block;
    text-align: center;
	color: #FFFFFF;
	text-align: center;
}
.datex.show {
-webkit-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-ms-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;  
}
.datex.show strong {
    font-size: 24px;
}
.datex.show strong, .datex.show span, .datex.show small {
    display: block;
    padding: 0 2px;
}
.datex.show span, .datex.show small {
    font-size: 11px;
    height: 16px;
    line-height: 16px;
}
.evt-sec {
	position:relative;
	padding-top: 15px;
}
.evt-sec .evnt-btn {
	background: #4ec7db;
	width: 50px;
	height: 50px;
	position: absolute;
	z-index: 3;
	right: -50px;
	top: 50%;
	margin-top:-50px;
	-webkit-transition: all 350ms linear;
	-moz-transition: all 350ms linear;
	-o-transition: all 350ms linear;
	-ms-transition: all 350ms linear;
	transition: all 350ms linear;
}
.evt-sec .evnt-btn a {
	background: #333;
	font-size: 16px;
	color: #fff !important;
	width: 50px;
	height: 50px;
	display: block;
	text-align: center;
	line-height: 50px;
	text-transform: uppercase;
	-webkit-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
	-o-transition: all 150ms linear;
	-ms-transition: all 150ms linear;
	transition: all 150ms linear;
} 
.evt-sec .evnt-btn a.view {
	background: #ffbd00;
}
.evt-sec .evnt-btn a:hover {
	color:#fff!important
}
.product-name a {
	color:#333!important;
}
.evt-sec:hover .evnt-btn {
	right: 40%;
}

.gallery .event-box {
    padding: 0px;
    border: 0px solid #ddd;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}
.gallery .evt-sec .evnt-btn a.view {
    background: #fb4700;
    border-radius: 100%;
    border: 2px solid #fff;
	line-height:45px;
}
.gallery .evt-sec .evnt-btn {
    background: none;
	margin-top: -30px;
}
.gallery .event-inner-box:hover::before {
    height: 100%;
	-webkit-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
	-o-transition: all 150ms linear;
	-ms-transition: all 150ms linear;
	transition: all 150ms linear;
	background: rgba(0,0,0,0.6);	
}
/*contact bar */
.contact-bar {
background:url(../design_img/biz-logo-back.png) no-repeat 25% 50%;
}
.contact-bar .main-head {
	text-align:left;
	text-transform:inherit;
	margin-bottom: 15px !important;
	text-transform: capitalize;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px !important;
}
.contact-bar .main-head span.brdr {
	margin-left: 0 !important;
	margin-bottom: 20px !important;
}
.contact-bar p.text {
	margin-bottom: 25px !important;
}
.contact-bar .inner-box {
	position:relative;
	text-align:center;
}
.contact-bar .contact-info {
	position:relative;
	margin-bottom:15px;
	clear: both;
	display: table;
	width: 100%;
}
.contact-bar .inner-box .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	color: #000;
	font-size: 20px !important;
	padding-top: 15px;
	border-radius: 0%;
	margin: 0 15px 15px 0;
	border: 1px solid #ddd;
	background-color: #fff;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	float: left;
}
.contact-bar .inner-box .text {
	position:relative;
	color:#555555;
	font-size:14px;
	padding-top:0px;
	text-align:left;
	line-height: 26px;
}
.contact-bar .inner-box .text h4 {
	font-weight: 600;
	font-size: 15px;
	color: #000;
	margin-bottom: 5px !important;
}
.contact-bar .inner-box .text a {
	color:#555;
}
.contact-bar .inner-box .text p {
	font-size:14px !Important;
	font-weight:400;
	line-height:24px;
}
.contact-bar .inner-box:hover .icon-box {
	color:#ffffff;
	border-color: #db214c;
	background-color: #db214c;
}
.contact-bar .form-group {
	position: relative;
	margin-bottom:20px;
}
.contact-bar .input-group-addon {
	border-radius:0px;
	background: #f6f6f6;
	border-color: #ececec;
	border-bottom-color:#ddd!important;
	width: 42px;
}
.contact-bar .input-group {
	width: 100%;
}
.contact-bar input[type="text"], .contact-bar input[type="email"], .contact-bar input[type="password"], .contact-bar select, .contact-bar textarea {
	display:block;
	width:100%;
	color:#333333;
	font-size:14px;
	padding:10px 15px;
	background:#ffffff;
	border:1px solid #ececec!important;
	border-bottom-color:#ddd!important;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
 
.contact-bar textarea {
	height:160px;
	resize:none;
	padding:12px 25px;
}
.contact-bar button {
	font-size:16px;
	margin-top:10px;
	text-transform:capitalize;
}
.btn-sub, .btn-cancel {
	display: inline-block;
	color: #fff !important;
	text-align: center;
	border-radius: inherit !important;
	margin-right:5px;
	width:120px;
	padding: 10px 10px !important;
	font-size: 14px !important;
	background: #2d63ad;
}
.btn-sub:hover, .btn-cancel:hover {
	padding: 10px 10px !important;
	margin-right:5px!important;
}
.btn-cancel {
	background: #ff5d05;
}
.interview-box {
	text-align:center;
	padding:15px;
	border: 0px solid #ddd;
	min-height: 325px;
	background: #fffaea;
	position:relative;
	margin-top: 50px;
	padding-top: 80px;
	margin-bottom: 35px;
}
.interview-box img {
	margin-bottom:10px;
	border-radius: 100%;
	border: 1px solid #ddd;
	height: 120px;
	width:120px !important;	
	position:absolute;
	left:0;
	right:0; 
	top: -60px;
}
.interview-box h4 {
	margin-bottom:10px !important;
	font-size:16px;
	text-align:center;
	color:#ff0c00;
}
.interview-box p {
	font-size: 14px !important;	
}
.reg-form-div {
	padding: 10px !important;
	font-size: 18px;
	background: #ff9000;
	color: #fff;
	font-weight: 400 !important;
}

 .advantage {
	overflow: hidden;
	border-radius:0px;
	background: #ff8700;
	margin-bottom:18px;
}
 .advantage-icon {
	width:30%;
	float:none;
	padding: 5px;
	border-radius: 0%;
	padding: 20px;
	display: inline-block;
	background:#333;
}
.advantage-icon img {
	max-width: 100%;
}
 .advantage-text {
	width: 65%;
	float: none;
	margin-left: 10px;
	vertical-align:middle; 
	padding-right: 5px;
	display: inline-block;
}
  .advantage-text h3 {
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 400;
	line-height:24px;
}
 .advantage-text p span {
	color: #fff;
	font-weight: 500;
	font-size: 13px;
	text-transform: none;
	letter-spacing: initial;
}
 .advantage:hover img {
	opacity:1
}