.dropdown.megamenu-fw { position: relative; }

.dropdown-menu.megamenu-content.animated { 
  visibility: hidden; /* hides sub-menu */
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: translateY(-2em);
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.dropdown.megamenu-fw:focus .dropdown-menu.megamenu-content.animated,
.dropdown.megamenu-fw:focus-within .dropdown-menu.megamenu-content.animated,
.dropdown.megamenu-fw:hover .dropdown-menu.megamenu-content.animated {
  visibility: visible; /* shows sub-menu */
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
}

.post-module {
	position: relative;
	z-index: 1;
	display: block;
	background: #FFFFFF;
	min-width: 250px;
	height: 470px;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.4);
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
	border-radius: none;
}

.post-module:hover, .hover {
	-webkit-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
}

.post-module:hover .thumbnail img, .hover .thumbnail img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
	opacity: 0.6;
	border-radius: none;
	max-width: auto;
}

.post-module .thumbnail {
	height: 250px;
	overflow: hidden;
}

.thumbnail {
	padding: 0px;
	border: none;
	border-radius: 0px;
	overflow: hidden;
}

.post-module .thumbnail .date {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
	background: #e74c3c;
	width: 55px;
	height: 55px;
	padding: 12.5px 0;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	color: #FFFFFF;
	font-weight: 700;
	text-align: center;
	-webkti-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.post-module .thumbnail .date .day {
	font-size: 18px;
}

.post-module .thumbnail .date .month {
	font-size: 12px;
	text-transform: uppercase;
}

.post-module .thumbnail img {
	display: block;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
	max-width: 200%;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}

.post-module .post-content {
	position: absolute;
	bottom: 0;
	background: #FFFFFF;
	width: 100%;
	padding: 30px 30px;
	-webkti-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	-moz-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	-ms-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	-o-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
}

.post-module .post-content .category {
	position: absolute;
	top: -34px;
	left: 0;
	background: #e74c3c;
	padding: 10px 15px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.post-module .post-content .title {
	margin: 0;
	padding: 0 0 10px;
	color: #717171;
	font-size: 14px;
	min-height: 80px;
	line-height: 1.2;
	font-weight: normal;
}

.post-module .post-content .sub_title {
	padding: 0 0 20px;
	color: #e74c3c;
	font-size: 20px;
	font-weight: 400;
	vertical-align: top;
	width: 100%;
}

.post-module .post-content .description {
	display: none;
	color: #666666;
	font-size: 14px;
	line-height: 1.8em;
	text-align: left;
	padding: 5px;
}

.post-module .post-content .post-meta {
	margin: 5px 0 0;
	color: #999999;
}

.post-module .post-content .post-meta .timestamp {
	margin: 0 16px 0 0;
	color: white;
}

.post-module .post-content .post-meta .timestamp a {
	color: #f00;
	font-weight: bold;
}

.post-module .post-content .post-meta a {
	color: #999999;
	text-decoration: none;
}

.post-module:hover .hover .post-content .description {
	display: block !important;
	height: auto !important;
	opacity: 1 !important;
}

.more {
	display: inline-block;
	position: relative;
	font-size: 50px;
	font-weight: 900;
	color: white;
	top: 35vh;
	cursor: pointer;
}

@media ( max-width : 800px) {
	.mr {
		height: 50px;
	}
	.more {
		top: 5px;
		padding: 15px 5px;
	}
}

.btn-read, .btn-read:HOVER {
	background: #fff;
	color: #c80808;
	padding: 5px 10px;
	font-size: 13px;
	margin-top: 15px;
	border-radius: 0px;
	text-decoration: none;
}

p {
	font-size: 14px;
}
#cap img {
  width: auto;
}
.modal-backdrop.fade.in {
  opacity: 0.5 !important;
  position: relative !important;
  display: none !important;
}



.contant-2-text.h4 img {
  width: 50px;
}

.pic img {
  width: auto;
}

.slider-content h1, .slider-content h2, .slider-content h3,
	.slider-content h4, .slider-content h5, .slider-content h6,
	.slider-content p {
	margin: 0px;
}

ul {
	padding: 0;
	margin-top: 0px;
	list-style: none;
}

a, a:active, a:focus, a:active {
	text-decoration: none !important;
	text-decoration: none;
	/* font-weight: 600; */
}
/* ==================
 *
 *  Global Class 
 *
 *===================*/
.btn {
	text-transform: uppercase;
	font-weight: 300;
}

.title {
	text-align: center;
	width: 100%;
}

.title h2 {
color: #000 !important;
font-size: 32px !important;
padding-bottom: 65px !important;
display: inline-block;
position: relative;
text-transform: none;
font-family: 'Montserrat' !important;
font-weight: 900 !important;
width: 100%;
z-index: 1;
}


.title p {
	line-height: 26px;
	font-weight: 400;
	color: #404040; 
}
 
.resize {
	min-height: 200px;
	min-width: 200px;
}
/* animation keyfrem */
@-webkit-keyframes wiggle {
	from {
		top: 10px;
	}
	to {
		top: 20px;
	}
}

@-moz-keyframes wiggle {
	from {
		top: 10px;
	}
	to {
		top: 20px;
	}
}

@-o-keyframes wiggle {
	from {
		top: 10px;
	}
	to {
		top: 20px;
	}
}

@keyframes wiggle {
	from {
		top: 10px;
	}
	to {
		top: 20px;
	}
}
/* ==================
 *
 *  section Class 
 *
 *===================*/

/* =================
   Home page style
   ================= */
#banner {
	background: url('../images/3.png');
	height: 70%;
	background-size: cover;
	padding: 0px 0;
	position: relative;
	z-index: 1;
}

#banner:before {
	position: absolute;
	z-index: 99;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
}

#banner .block {
	position: relative;
	z-index: 999;
	color: #fff;
	padding-top: 120px;
}

#banner .block h1 {
	padding-bottom: 25px;
	font-size: 32px;
	color: #c80808;
}

#banner .block h2 {
	font-size: 17px;
	line-height: 30px;
	font-weight: 300;
}

#banner .block .btn-learn {
	border: 1px solid #fff;
	color: #fff;
	border-radius: 25px;
	margin: 0 7px;
	padding: 10px 22px;
	font-size: 16px;
	transition: 0.3s;
}

#banner .block .btn-learn:hover {
	border-color: #c80808;
	color: #c80808;
}

#banner .block .buttons {
	margin-top: 40px;
}

#banner .block .buttons a:first-child {
	margin-left: 0;
}

#banner .scrolldown {
	position: absolute;
	left: 50%;
	bottom: 18%;
}

#banner .scrolldown .scroll {
	border-radius: 100px;
	width: 25px;
	height: 45px;
	position: absolute;
	left: 50%;
	margin: 0 0 0 -15px;
	display: inline-block;
	border: 1px solid #fff;
	z-index: 99;
}

#banner .scrolldown .scroll:after {
	background: #fff;
	border-radius: 300px;
	width: 4px;
	height: 9px;
	position: absolute;
	top: 10px;
	left: 50%;
	margin: 0 0 0 -2px;
	display: block;
	content: " ";
	-webkit-animation: wiggle 0.5s linear 0s infinite alternate;
	-moz-animation: wiggle 0.5s linear 0s infinite alternate;
	-o-animation: wiggle 0.5s linear 0s infinite alternate;
	animation: wiggle 0.5s linear 0s infinite alternate;
}

#features {
	padding: 100px 0 0;
}

#features .feature-block {
	padding-bottom: 35px;
}

#features .feature-block .icon-box {
	margin-bottom: 24px;
}

#features .feature-block .icon-box i {
	display: inline-block;
	line-height: 1;
	font-size: 60px;
	transition: 0.3s;
	color: #c80808;
}

#features .feature-block h4 {
	font-size: 20px;
	color: #333;
	position: relative;
	text-transform: none;
	margin-bottom: 10px;
	font-weight: 400;
}

#features .feature-block p {
	font-size: 15px;
	color: #888;
	line-height: 24px;
	font-weight: 300;
	margin-top: 20px;
}

#features .showcase-img {
	margin-top: 40px;
}

#counter {
	background: url(../images/counter-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	text-align: center;
	padding: 50px 0;
}

#counter:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.72);
}

#counter .title {
	position: relative;
}

#counter .title h2, #counter .title p {
	color: #fff;
}

#counter .block {
	margin-bottom: 20px;
}

#counter .block i {
	display: block;
	font-size: 40px;
	line-height: 1;
	padding-bottom: 20px;
	color: #c80808;
}

#counter .block span {
	line-height: 1;
	display: inline-block;
	color: #fff;
}

#counter .block .count-text {
	font-size: 36px;
}

#counter .block p {
	font-size: 18px;
	font-weight: 300;
	color: #fff;
	padding-top: 20px;
}

#service {
padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(to left,#ededed 0,rgba(255,255,255,0.21) 68%) !important
}

#service .block .recent-work-mixMenu {
	padding-bottom: 40px;
	text-align: center;
}

#service .block .recent-work-mixMenu ul li {
	display: inline-block;
	padding: 0;
}

#service .block .recent-work-mixMenu ul li button {
	background: none;
	border: 0;
	font-size: 15px;
	color: White;
	margin: 0 20px;
	transition: 0.2s;
	text-transform: uppercase;
}

#service .block .recent-work-mixMenu ul li button:hover {
	color: #c80808;
}

#service .block .recent-work-mixMenu ul li button:focus {
	outline: 0;
}

#service .block .recent-work-mixMenu ul li .active {
	color: #c80808;
}

#service .block .recent-work-pic ul li {
	margin-bottom: 30px;
	position: relative;
}

#service .block .recent-work-pic ul li:hover .overlay {
	opacity: 1;
}

#service .block .recent-work-pic ul li:hover .overlay i {
	top: 40%;
	opacity: 1;
}

#service .block .recent-work-pic ul li:hover .overlay h3 {
	bottom: 0%;
	opacity: 1;
}

#service .block .recent-work-pic ul li .overlay {
	position: absolute;
	top: 23px;
	left: 38px;
	bottom: 23px;
	right: 38px;
	background: rgba(128, 214, 163, 0.85);
	transition: 0.3s;
	text-align: center;
	opacity: 0;
}

#service .block .recent-work-pic ul li .overlay h3, #service .block .recent-work-pic ul li .overlay i
	{
	color: #fff;
}

#service .block .recent-work-pic ul li .overlay h3 {
	bottom: 30%;
	left: 50%;
	opacity: 0;
	text-transform: uppercase;
	font-weight: 400;
	width: 100%;
	transition: 0.3s;
	position: absolute;
	transition-delay: 0.1s;
	transform: translateX(-50%);
}

#service .block .recent-work-pic ul li .overlay i {
	top: 30%;
	opacity: 0;
	left: 50%;
	font-size: 50px;
	transition: 0.3s;
	transition-delay: 0s;
	position: absolute;
	transform: translate(-50%, 50%);
}

#service .block .recent-work-pic ul li .overlay .overlay-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#about {
	background-color: #ffffff;
}

.about-section {
background-color: white;
background-attachment: fixed;
background-size: cover;
background-position: center;
padding-top: 40px;
padding-bottom: 50px;
text-align: center;
z-index: 1;
position: relative;
height: 750px;
max-height: 100%;
margin-top: 0px;
}

.about-section:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

#product {
	padding-top: 90px;
	background-color: #f5f5f5;
	min-height: 100vh;
}

#product .block .recent-work-mixMenu {
	padding-bottom: 40px;
	text-align: center;
}

#product .block .recent-work-mixMenu ul li {
	display: inline-block;
	padding: 0;
}

#product .block .recent-work-mixMenu ul li button {
	background: none;
	border: 0;
	font-size: 15px;
	color: #474747;
	margin: 0 20px;
	transition: 0.2s;
	text-transform: uppercase;
}

#product .block .recent-work-mixMenu ul li button:hover {
	color: #c80808;
}

#product .block .recent-work-mixMenu ul li button:focus {
	outline: 0;
}

#product .block .recent-work-mixMenu ul li .active {
	color: #c80808;
}

#product .block .recent-work-pic ul li {
	margin-bottom: 30px;
	position: relative;
}

#product .block .recent-work-pic ul li:hover .overlay {
	opacity: 1;
}

#product .block .recent-work-pic ul li:hover .overlay i {
	top: 40%;
	opacity: 1;
}

#product .block .recent-work-pic ul li:hover .overlay h3 {
	bottom: 50%;
	opacity: 1;
}

#product .block .recent-work-pic ul li .overlay {
	position: absolute;
	top: 0px;
	left: 15px;
	bottom: 0px;
	right: 15px;
	background: rgba(255, 0, 0, 0.60);
	transition: 0.3s;
	text-align: center;
	opacity: 0;
}

#product .block .recent-work-pic ul li .overlay h3, #product .block .recent-work-pic ul li .overlay i
	{
	color: #fff;
}

#product .block .recent-work-pic ul li .overlay h3 {
	top: 40%;
	left: 50%;
	opacity: 0;
	text-transform: uppercase;
	font-weight: 400;
	width: 100%;
	transition: 0.3s;
	position: absolute;
	transition-delay: 0.1s;
	transform: translateX(-50%);
}

#product .block .recent-work-pic ul li .overlay i {
	top: 30%;
	opacity: 0;
	left: 50%;
	font-size: 50px;
	transition: 0.3s;
	transition-delay: 0s;
	position: absolute;
	transform: translate(-50%, 50%);
}

#product .block .recent-work-pic ul li .overlay .overlay-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#play-video {
	padding: 105px 0;
	background: url("../images/new-latter.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

#play-video:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(32, 35, 34, 0.7);
}

#play-video .block {
	text-align: center;
}

#play-video .block h2 {
	color: #fff;
	padding-bottom: 5px;
	font-size: 24px;
	line-height: 30px;
	text-transform: uppercase;
	font-weight: 600;
}

#play-video .block p {
	text-align: center;
	color: #dfdfdf;
	padding-bottom: 30px;
	font-size: 15px;
	line-height: 22px;
	margin-top: 10px;
}

#play-video .block .button {
	position: relative;
	width: 100px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #fff;
	background: #c80808;
	display: block;
	margin: 0 auto;
	text-align: center;
	border-radius: 4px;
	transition: all 300ms linear;
	font-size: 30px;
	margin-top: 10px;
}

#play-video .block .button:hover {
	color: #424242;
	border-color: red;
}

#html5-watermark {
	display: none !important;
}

#testimonial {
	padding: 100px 0px 80px 0px;
}
.clienttestimonial-section {
	padding: 50px 0px 80px 0px !important;
	background-color: #fff !important;
	text-align: center;
}
#testimonial .col {
	position: relative;
	padding: 47px 60px;
	overflow: hidden;
}

#testimonial .col-md-6 {
	height: 230px;
	border: solid #ededed;
	border-width: 0 0px 1px 0;
	padding-bottom: 10px;
}

#testimonial .col-md-6:nth-child(3n) {
	border-right: 0;
}

#testimonial .col-md-6:nth-child(5n) {
	border-right: 0;
	border-bottom: 0;
}

#testimonial .col-md-6:nth-child(4n) {
	border-bottom: 0;
}

#testimonial .rightborder {
	border-width: 0 1px 1px 0;
}

#testimonial .media .media-left {
	padding-right: 20px;
}

#testimonial .media .media-left a {
	position: relative;
	display: block;
}

#testimonial .media .media-left a:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 28px;
	height: 28px;
	border-radius: 100%;
	background: #c80808;
	text-align: center;
	color: #fff;
	font-size: 13px;
	padding-top: 2px;
}

#testimonial .media .media-body {
	padding-top: 5px;
}

#testimonial .media .media-body h4 {
	color: #444;
	text-transform: uppercase;
	margin-bottom: 12px;
}

#testimonial .media .media-body p {
	font-size: 16px;
	font-style: italic;
	color: #787878;
}

#team {
	padding: 5px;
}

#team .block {
	position: relative;
	overflow: hidden;
	border: 3px solid transparent;
	-webkit-transition: .4s all;
	-o-transition: .4s all;
	transition: .4s all;
}

#team .block img {
	width: 100%;
	position: relative;
}
 
#team .block:hover .team-overlay {
	bottom: 0;
	opacity: 1;
}

#team .team-overlay {
	background: rgba(255, 255, 255, 0.95);
	color: #fff;
	text-align: center;
	padding: 48px 62px;
	position: absolute;
	bottom: -150px;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	transition: 0.3s;
}

#team .team-overlay h3, #team .team-overlay span {
	color: #333;
}

#team .team-overlay span {
	display: block;
	font-size: 13px;
	padding-top: 10px;
}

#team .team-overlay .icon {
	width: 38px;
	height: 38px;
	margin: 0 auto;
	padding: 10px;
	line-height: 1;
	margin-top: 36px;
	margin-bottom: 25px;
	border-radius: 100%;
	display: inline-block;
	background: #c80808;
}

#team .team-overlay .icon i {
	font-size: 18px;
	color: #fff;
}

#team .team-overlay p {
	font-size: 16px;
	line-height: 23px;
	color: #707a8a;
}

#team .team-overlay .media {
	margin-top: 10px;
}

#team .team-overlay .media a {
	font-size: 12px;
	color: #fff;
	transition: 0.3s;
	margin: 0 10px;
}

#team .team-overlay .media a:hover {
	color: #c80808;
}

 

footer .block a {
	font-weight: 600;
}

footer .block h1 a img {
	padding: 20px 0px 0px 20px;
	height: 60px;
}

 
/* ================ Home end ========================= */

/*================================================== 
     Slideshow
 ================================================== */

/* =====================
   contact page style
   ===================== */
#global-header {
	background: url(../images/contact-slider-img.jpg);
	background-size: cover;
	background-position: center;
	padding: 150px 0 90px;
	text-align: center;
	position: relative;
}

#global-header:before {
	position: absolute;
	z-index: 99;
	background: rgba(60, 59, 72, 0.69);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	z-index: 1;
}

#global-header .block {
	position: relative;
	z-index: 10;
	color: #fff;
}

#global-header .block h1 {
	font-size: 50px;
	margin-top: 20px;
}

#global-header .block p {
	font-size: 15px;
	padding-top: 10px;
}

/* ================ Contact end ========================= */
/* =====================
   Service page style
   ===================== */
#client-logo {
	text-align: center; 
	background-color: #ffffff;
	color: #000;
}

.col-lg-2.col-md-3.col-sm-3.col-xs-4.client-border::after {
  content: " ";
  position: absolute;
  top: 9%;
  right: 0;
  height: 90%;
  margin-top: auto;
  margin-bottom: auto;
  background: -webkit-linear-gradient(top,rgba(204,204,204,0) 0%,rgba(204,204,204,0.48) 24%,rgba(204,204,204,1) 50%,rgba(204,204,204,0.42) 79%,rgba(204,204,204,0) 100%);
  width: 1px;
}
.col-lg-2.col-md-3.col-sm-3.col-xs-4::after {
  content: " ";
  position: absolute;
  top: 9%;
  right: 0;
  height: 90%;
  margin-top: auto;
  margin-bottom: auto;
  background: -webkit-linear-gradient(top,rgba(204,204,204,0) 0%,rgba(204,204,204,0.48) 24%,rgba(204,204,204,1) 50%,rgba(204,204,204,0.42) 79%,rgba(204,204,204,0) 100%);
  width: 1px;
}
.col-lg-2.col-md-3.col-sm-3.col-xs-4::before {
  content: " ";
  position: absolute;
  top: 0px;
  right: 22%;
  height: 1px;
  margin-right: auto;
  margin-left: auto;
  background: -webkit-linear-gradient(right,rgba(204,204,204,0) 0%,rgba(204,204,204,0.48) 24%,rgba(204,204,204,1) 50%,rgba(204,204,204,0.42) 79%,rgba(204,204,204,0) 100%);
  width: 70%;
}
.col-lg-2.col-md-3.col-sm-3.col-xs-4.client-border::before {
  background: none;
}
.col-lg-2.col-md-3.col-sm-3.col-xs-4.client-border.client-border-right::after {
  background: none;
}
.col-lg-2.col-md-3.col-sm-3.col-xs-4.client-border-right::after {
  background: none;
}
#client-logo  .title {
	padding-bottom: 0px;
	color: #000;
}

#client-logo a {
  padding: 30px !important;
  display: block;
}

#client-logo a img {
	transition: 0.3s;
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

#client-logo a:hover img {
	transform: scale(1.1);
}

#asso-logo {
	text-align: center;
	padding-bottom: 80px;
	padding-top: 80px;
	background-color: #fff;
	color: #000;
}

#asso-logo  .title {
	padding-bottom: 0px;
	color: #000;
}

#asso-logo a {
	padding: 0px 5px !important;
	display: block;
}

#asso-logo a img {
	transition: 0.3s;
	margin: 0 auto;
}

#asso-logo a:hover img {
	transform: scale(1.2);
}

footer {
	background: #171616;
	text-align: center;
}

footer p {
	font-size: 12px;
	color: #fff;
	line-height: 1;
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 10px auto;
}

.footer-contant h3 {
	color: #8C9494;
	font-size: 24px;
	font-weight: 400;
	margin: 0px;
	padding-bottom: 30px;
}

.social-icon {
	padding-bottom: 15px;
	margin-right: 0px
}
 
.social-icon a i {
	background: white;
	border-radius: 400px;
	color: #2d312f;
	font-size: 16px;
	height: 32px;
	padding-top: 8px;
	width: 32px;
}

.news-section {
	background-color: #e7e7e7;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	padding-top: 50px;
	padding-bottom: 100px;
	text-align: center;
	position: relative;
}

.news-section:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: #ffffff;
}
/* =====================
   Blog Post
   ===================== */
#blog {
	padding: 100px 0;
	background: #f1f1f1;
}

#blog-post .block {
	background: #fff;
	margin: 0 5px;
}

#blog-post  .content {
	padding: 30px 25px;
	text-align: center;
}

#blog-post .content h4 {
	text-transform: capitalize;
	position: relative;
	margin: 20px 0 10px;
	padding: 10px 0;
}

#blog-post .content h4 a {
	color: #333;
}

#blog-post .content h4 a:hover {
	color: #c80808;
}

#blog-post .content h4::before {
	content: '';
	position: absolute;
	left: 45%;
	top: -6px;
	width: 30px;
	height: 2px;
	background-color: #c80808;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

#blog-post .content small {
	color: #999;
}

#blog-post .content p {
	margin-top: 10px;
	color: #777;
	font-size: 12px;
}

#blog-post .content .btn-read {
	background: #c80808;
	color: #fff;
	padding: 10px 20px;
	font-size: 13px;
	margin-top: 15px;
	border-radius: 25px;
}

/* =====================
   Blog Page
   ===================== */
#blog-left {
	padding: 25px 0;
}

#blog-left .blog-img .col-md-12 {
	margin-bottom: 4%;
}


#blog-left .block span {
	display: block;
	margin: 3% 0;
	color: #333;
	font-size: 15px;
	line-height: 22px;
	font-weight: 600;
	/**/
}

#blog-left .block .first-child {
	margin: 5.5% 0;
}

#blog-left .block p {
	font-size: 13px;
	color: #888;
	line-height: 23px;
	letter-spacing: 0.02em;
	margin-bottom: 10px;
	/**/
}

#blog-left .block blockquote {
	border-left: 0 none;
	margin-bottom: 30px;
	padding: 46px;
	background-color: #f6f6f6;
}

#blog-left .block blockquote p {
	margin: 0 0 5.5%;
	position: relative;
	font-size: 15px;
	line-height: 22px;
	color: #626262;
}

#blog-left .block blockquote p:before {
	color: #333;
	content: "\f10d";
	font-family: "FontAwesome";
	font-size: 50px;
	margin-right: 10px;
}

#blog-left .block blockquote .footer {
	color: #000;
}

#blog-left .block blockquote .footer:before {
	content: '\2014 \00A0';
}

#blog-left .block .tags {
	margin: 0 0 6.5%;
}

#blog-left .block .tags h5 {
	font-size: 18px;
	line-height: 27px;
	color: #333;
}

#blog-left .block .tags a {
	font-size: 11px;
	line-height: 20px;
	display: inline-block;
	color: #272727;
	text-decoration: none;
}

#blog-left .block .blog-comment {
	padding: 5.5%;
	background-color: #f6f6f6;
}

#blog-left .block .blog-comment .comment-img {
	float: left;
	margin-right: 35px;
	max-width: 100px;
}

#blog-left .block .blog-comment .comment-text a {
	color: #333;
	margin: 0 0 10px;
	text-transform: uppercase;
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
}

#blog-left .block .blog-comment .comment-text span {
	font-size: 11px;
	line-height: 20px;
	display: inline-block;
	color: #626262;
	margin: 0 0 10px;
}

#blog-left .block .media-link {
	text-align: center;
	padding: 5.5% 0;
	border-bottom: 4px solid #c80808;
}

#blog-left .block .media-link a i {
	font-size: 24px;
	line-height: 28px;
	color: #373737;
	margin: 0 0 0 5.5%;
}

#blog-left .blog-comment-main {
	padding-bottom: 7%;
	margin-bottom: 7%;
	border-bottom: 4px solid #c80808;
}

#blog-left .blog-comment-main .blog-comment .comment-img {
	float: left;
	margin-right: 35px;
	margin-top: 10px;
	max-width: 100px;
}

#blog-left .blog-comment-main .comment-text {
	overflow: hidden;
}

#blog-left .blog-comment-main .comment-text .title, #blog-left .blog-comment-main .comment-text span
	{
	color: #333;
	font-size: 16px;
	line-height: 24px;
	position: relative;
	text-transform: uppercase;
	font-weight: 500;
	padding: 0;
}

#blog-left .blog-comment-main .comment-text .title:after {
	content: "/";
	padding: 0 10px;
	font-weight: 500;
}

#blog-left .blog-comment-main .comment-text p {
	margin: 2% 0;
	font-size: 13px;
	color: #626262;
	line-height: 23px;
}

#blog-left .blog-comment-main .comment-text .btn {
	font-size: 9px;
	padding: 4px 12px 3px;
	border: 2px solid #c80808;
	color: #fff;
	display: inline-block;
	background-color: #c80808;
	width: auto;
	-webkit-transition-duration: .2s;
	-webkit-transition-timing-function: ease-in-out;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
}

#blog-left .blog-comment-main .comment-text .btn:hover {
	border: 2px solid #373737;
	color: #373737;
	background-color: transparent;
}

#blog-left .blog-comment-main .sub-blog-comment {
	margin: 30px 0 30px 40px;
	padding: 4% 0;
}

#blog-left .blog-comment-main .sub-blog-comment .comment-img {
	float: left;
	margin-right: 35px;
	margin-top: 10px;
	max-width: 100px;
}

#blog-left .addcomment span {
	margin: 0 0 5.5%;
	display: block;
	font-size: 18px;
	line-height: 27px;
	color: #333;
}

#blog-left .addcomment .blog-comment-form form input, textarea {
	padding: 18px 25px;
	border: 2px solid rgba(0, 0, 0, .1);
	font-size: 16px;
	height: auto;
	margin: 0 0 20px 0;
	border-radius: 0;
	transition: 0.8s;
}

#blog-left .addcomment .blog-comment-form form input:focus {
	border: 2px solid #c80808;
	box-shadow: none;
}

#blog-left .addcomment .blog-comment-form form textarea {
	border-radius: 0;
	padding: 18px 25px;
	min-height: 100px;
	border: 2px solid rgba(0, 0, 0, .1);
}

#blog-left .addcomment .blog-comment-form form textarea:focus {
	box-shadow: none;
	border: 2px solid #c80808;
}

#blog-left .addcomment .blog-comment-form form button {
	font-size: 16px;
	padding: 10px 22px;
	letter-spacing: 1px;
	border: 2px solid #c80808;
	color: #fff;
	background-color: #c80808;
	-webkit-transition-duration: .2s;
	-webkit-transition-timing-function: ease-in-out;
}

#blog-left .addcomment .blog-comment-form form button:hover {
	background-color: transparent;
	border: 2px solid #c80808;
	color: #c80808;
}

#blog-left .widget {
  margin: 0;
  width: 100%;
  height: auto;
  padding: 10px;
  display: block;
}

#blog-left .widget form i {
	cursor: pointer;
	position: absolute;
	right: 19px;
	top: 15px;
	z-index: 998;
}

#blog-left .widget form input {
	color: #949494;
	border: none;
	border-bottom: 1px solid #e5e5e5;
	width: 100%;
	letter-spacing: 1px;
	font-size: 11px;
	padding: 8px 15px;
	padding-left: 0;
	width: 100%;
	margin: 0 0 20px 0;
	max-width: 100%;
	resize: none;
	transition: 0.8s;
	letter-spacing: 1px;
	font-size: 11px;
}

#blog-left .widget form input:focus {
	outline: none;
	border: none;
	border-bottom: 1px solid #000;
}

#blog-left .widget span {
  font-size: 16px;
  line-height: 22px;
  color: #333;
  display: block;
  padding-bottom: 7px;
  position: relative;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
 .widget-body a {
  background: #c80808;
  color: #fff;
  padding: 0;
  font-size: 12px;
  margin-top: 0px;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
justify-content: center;
align-items: center;
line-height: 28px;
}

#blog-left .widget span:before {
	content: "";
	position: absolute;
	bottom: 0;
	background: #c80808;
	width: 30px;
	height: 3px;
	margin-left: 15px;
}

#blog-left .widget .widget-body ul li {
	border-bottom: 1px solid #e5e5e5;
	padding: 0 0 12px;
	margin-bottom: 10px;
	color: #ababab;
}

#blog-left .widget .widget-body ul li a {
	width: 160px;
	letter-spacing: 1px;
	display: block;
	font-size: 11px;
	line-height: 20px;
	text-transform: uppercase;
	color: #333;
	letter-spacing: 1px;
	font-weight: 500;
}

#blog-left .widget .widget-body ul li .items {
	text-transform: none;
	font-weight: 600;
	font-size: 12px;
}

#blog-left .widget .widget-body ul li:last-child {
	border: 0;
}

#blog-left .widget .widget-body .title {
	margin: 0;
	margin-top: 11.5%;
	padding: 0;
	text-align: left;
}

#blog-left .widget .widget-body .title:before {
	display: none;
}

#blog-left .widget .widget-body p {
	font-size: 13px;
	color: #626262;
	line-height: 23px;
	letter-spacing: 0.02em;
	color: #626262;
}

#blog-left .sidebar-tags a {
	padding: 2px 10px;
	display: inline-block;
	color: #373737;
	margin: 0 8px 10px 0;
	background-color: #f6f6f6;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 20px;
	letter-spacing: 0.02em;
}

#blog-left .sidebar-tags a:hover {
	background-color: #000;
	color: #fff;
	-webkit-transition-duration: .2s;
	-webkit-transition-timing-function: ease-in-out;
}

#slider .scrolldown {
	position: absolute;
	left: 50%;
	bottom: 18%;
	padding-bottom: 75px;
}

#slider .scrolldown .scroll {
	border-radius: 100px;
	width: 25px;
	height: 45px;
	position: absolute;
	left: 50%;
	margin: 0 0 0 -15px;
	display: inline-block;
	border: 1px solid #fff;
	z-index: 99;
}

#slider .scrolldown .scroll:after {
	background: #fff;
	border-radius: 300px;
	width: 4px;
	height: 9px;
	position: absolute;
	top: 10px;
	left: 50%;
	margin: 0 0 0 -2px;
	display: block;
	content: " ";
	-webkit-animation: wiggle 0.5s linear 0s infinite alternate;
	-moz-animation: wiggle 0.5s linear 0s infinite alternate;
	-o-animation: wiggle 0.5s linear 0s infinite alternate;
	animation: wiggle 0.5s linear 0s infinite alternate;
}
 
/*Website width*/
@media ( min-width : 801px) and ( max-width : 1280px) {
	.container {
		max-width: 1000px;
	}
}

@media ( min-width : 1201px) and ( max-width : 1600px) {
	.container {
		max-width: 1150px;
	}
}

@media ( min-width : 1601px) and ( max-width : 1920px) {
	.container {
		width: 1200px;
	}
}

@media ( min-width : 1950px) {
	.container {
		width: 1500px;
	}
}

@media ( max-width : 800px) {
	.container {
		max-width: 700px;
	}
	
	.title h2 {
		font-size: 24px;
		z-index: 1;
	}
	p {
		font-size: 16px;
	}
	.title h2:before {
		width: 15px;
		left: -30px;
	}
	.title h2:after {
		width: 15px;
		right: -30px;
	}
	.titleWhite h2 {
		font-size: 24px;
	}
	.titleWhite h2:before {
		width: 15px;
		left: -30px;
	}
	.titleWhite h2:after {
		width: 15px;
		right: -30px;
	}
	h1 {
		font-size: 46px;
	}
	h2 {
		font-size: 28px;
	}
	h3 {
		font-size: 16px;
	}
	h4 {
		font-size: 16px;
	}
	.testimonial .title {
		font-size: 16px;
	}
	.testimonial .post {
		font-size: 10px;
	}
	.testimonial .description {
		font-size: 11px;
	}
	.testimonial .pic {
		width: 100%;
	}
	.testimonial .testimonial-profile {
		width: 100%;
	}
	.testimonial-content .testimonial-icon {
		top: 47px;
	}
	.portlet-title>.nav-tabs>li>a {
		padding: 2px 4px !important;
		font-size: 14px !important;
	}
	.header h2 {
		font-size: 24px !important;
	}
	.header h2:before {
		width: 15px;
		left: -30px;
	}
	.header h2:after {
		width: 15px;
		right: -30px;
	}
}


/****** popup **********/

.hoc {
	display: block;
	margin: 0 auto;
}

.bgded {
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.split {
	background-position: top right;
	background-repeat: no-repeat;
	background-size: cover;
}

.split .box {
	display: block;
	position: relative;
	float: right;
	width: 65%;
	padding: 80px 0 80px 50px;
}

.split .box::after {
	display: block;
	position: absolute;
	top: 0;
	right: -1000%;
	bottom: 0;
	left: 100%;
	content: "";
}

.clear {
	display: block;
}

.clear::before, .clear::after {
	display: table;
	content: "";
}

.clear, .clear::after {
	clear: both;
}

.split .box, .split .box::after {
	color: #9B9B9B;
	background-color: rgba(35, 35, 35, .8); /* #232323 */
}

.split .box.bg-coloured, .split .box.bg-coloured::after {
	color: #FFFFFF;
	background-color: rgba(15, 132, 170, .65); /* #0F84AA */
}

@media screen and (min-width:978px) {
	.hoc {
		max-width: 978px;
		font-size: 50px !important;
	}
}

@media screen and (max-width:900px) {
	.hoc {
		max-width: 90%;
		font-size: 50px !important;
	}
}
/* =====================
   Blog Post
   ===================== */
#blog {
	padding: 50px 0;
	background: #f1f1f1;
}

#blog-post .block {
	background: #fff;
	margin: 0 5px;
}

#blog-post  .content {
	padding: 10px 25px 20px 25px;
	text-align: center;
}

#blog-post .content h4 {
	text-transform: capitalize;
	position: relative;
	margin: 20px 0 10px;
	padding: 10px 0;
}

#blog-post .content h4 a {
	color: #333;
}

#blog-post .content h4 a:hover {
	color: #c80808;
}

#blog-post .content h4::before {
	content: '';
	position: absolute;
	left: 45%;
	top: -6px;
	width: 30px;
	height: 2px;
	background-color: #c80808;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

#blog-post .content small {
	color: #999;
}

#blog-post .content p {
	margin-top: 10px;
	color: #777;
	font-size: 11px;
}

#blog-post .content .btn-read {
	background: #c80808;
	color: #fff;
	padding: 10px 20px;
	font-size: 13px;
	margin-top: 15px;
	border-radius: 0px;
}

.product-section {
	background: Url(../images/3.png) no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	padding-top: 90px;
	padding-bottom: 50px;
	color: #fff;
	text-align: center;
	position: relative;
}

.product-section:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.75);
}
/*************** Testimonials ***************/
.testimonial-section {
	color: #000000;
	text-align: center;
	position: relative;
}

.testimonials .testimonial-content img {
	width: 150px;
	height: auto;
	margin-bottom: 40px;
}

.testimonials .testimonial-content p {
	font-size: 20px;
	line-height: 30px;
	font-style: italic;
	font-weight: 400;
	margin-bottom: 40px;
	color: #fff;
}

.testimonials .testimonial-content {
	position: relative;
}

.testimonials .testimonial-author {
	margin-bottom: 40px;
}

.testimonials .testimonial-author .author {
	font-size: 18px;
	padding-bottom: 5px;
}

.testimonials .testimonial-author .designation {
	color: #d3d3d3;
}
/* =====================
   Blog Page
   ===================== */
#blog-left {
	padding: 20px 0;
}

#blog-left .blog-img .col-md-12 {
	margin-bottom: 4%;
}

#blog-left .block {
	margin: 5.5% 0;
}

#blog-left .block span {
	display: block;
	margin: 3% 0;
	color: #333;
	font-size: 15px;
	line-height: 22px;
	/**/
}

#blog-left .block .first-child {
	margin: 5.5% 0;
	text-align: justify;
}

#blog-left .block p {
	font-size: 12px;
	color: #888;
	line-height: 23px;
	letter-spacing: 0.02em;
	margin-bottom: 10px;
	/**/
}

#blog-left .block blockquote {
	border-left: 0 none;
	margin-bottom: 30px;
	padding: 46px;
	background-color: #f6f6f6;
}

#blog-left .block blockquote p {
	margin: 0 0 5.5%;
	position: relative;
	font-size: 15px;
	line-height: 22px;
	color: #626262;
}

#blog-left .block blockquote p:before {
	color: #333;
	content: "\f10d";
	font-family: "FontAwesome";
	font-size: 50px;
	margin-right: 10px;
}

#blog-left .block blockquote .footer {
	color: #000;
}

#blog-left .block blockquote .footer:before {
	content: '\2014 \00A0';
}

#blog-left .block .tags {
	margin: 0 0 6.5%;
}

#blog-left .block .tags h5 {
	font-size: 18px;
	line-height: 27px;
	color: #333;
}

#blog-left .block .tags a {
	font-size: 11px;
	line-height: 20px;
	display: inline-block;
	color: #272727;
	text-decoration: none;
}

#blog-left .block .blog-comment {
	padding: 5.5%;
	background-color: #f6f6f6;
}

#blog-left .block .blog-comment .comment-img {
	float: left;
	margin-right: 35px;
	max-width: 100px;
}

#blog-left .block .blog-comment .comment-text a {
	color: #333;
	margin: 0 0 10px;
	text-transform: uppercase;
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
}

#blog-left .block .blog-comment .comment-text span {
	font-size: 11px;
	line-height: 20px;
	display: inline-block;
	color: #626262;
	margin: 0 0 10px;
}

#blog-left .block .media-link {
	text-align: center;
	padding: 5.5% 0;
	border-bottom: 4px solid #80d6a3;
}

#blog-left .block .media-link a i {
	font-size: 24px;
	line-height: 28px;
	color: #373737;
	margin: 0 0 0 5.5%;
}

#blog-left .blog-comment-main {
	padding-bottom: 7%;
	margin-bottom: 7%;
	border-bottom: 4px solid #80d6a3;
}

#blog-left .blog-comment-main .blog-comment .comment-img {
	float: left;
	margin-right: 35px;
	margin-top: 10px;
	max-width: 100px;
}

#blog-left .blog-comment-main .comment-text {
	overflow: hidden;
}

#blog-left .blog-comment-main .comment-text .title, #blog-left .blog-comment-main .comment-text span
	{
	color: #333;
	font-size: 16px;
	line-height: 24px;
	position: relative;
	text-transform: uppercase;
	font-weight: 500;
	padding: 0;
}

#blog-left .blog-comment-main .comment-text .title:after {
	content: "/";
	padding: 0 10px;
	font-weight: 500;
}

#blog-left .blog-comment-main .comment-text p {
	margin: 2% 0;
	font-size: 13px;
	color: #626262;
	line-height: 23px;
}

#blog-left .blog-comment-main .comment-text .btn {
	font-size: 9px;
	padding: 4px 12px 3px;
	border: 2px solid #80d6a3;
	color: #fff;
	display: inline-block;
	background-color: #80d6a3;
	width: auto;
	-webkit-transition-duration: .2s;
	-webkit-transition-timing-function: ease-in-out;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
}

#blog-left .blog-comment-main .comment-text .btn:hover {
	border: 2px solid #373737;
	color: #373737;
	background-color: transparent;
}

#blog-left .blog-comment-main .sub-blog-comment {
	margin: 30px 0 30px 40px;
	padding: 4% 0;
}

#blog-left .blog-comment-main .sub-blog-comment .comment-img {
	float: left;
	margin-right: 35px;
	margin-top: 10px;
	max-width: 100px;
}

#blog-left .addcomment span {
	margin: 0 0 5.5%;
	display: block;
	font-size: 18px;
	line-height: 27px;
	color: #333;
}

#blog-left .addcomment .blog-comment-form form input, textarea {
	padding: 18px 25px;
	border: 2px solid rgba(0, 0, 0, .1);
	font-size: 16px;
	height: auto;
	margin: 0 0 20px 0;
	border-radius: 0;
	transition: 0.8s;
}

#blog-left .addcomment .blog-comment-form form input:focus {
	border: 2px solid #80d6a3;
	box-shadow: none;
}

#blog-left .addcomment .blog-comment-form form textarea {
	border-radius: 0;
	padding: 18px 25px;
	min-height: 100px;
	border: 2px solid rgba(0, 0, 0, .1);
}

#blog-left .addcomment .blog-comment-form form textarea:focus {
	box-shadow: none;
	border: 2px solid #80d6a3;
}

#blog-left .addcomment .blog-comment-form form button {
	font-size: 16px;
	padding: 10px 22px;
	letter-spacing: 1px;
	border: 2px solid #80d6a3;
	color: #fff;
	background-color: #80d6a3;
	-webkit-transition-duration: .2s;
	-webkit-transition-timing-function: ease-in-out;
}

#blog-left .addcomment .blog-comment-form form button:hover {
	background-color: transparent;
	border: 2px solid #80d6a3;
	color: #80d6a3;
}

#blog-left .widget {
	margin: 0 0 10.5%;
}

#blog-left .widget form i {
	cursor: pointer;
	position: absolute;
	right: 19px;
	top: 15px;
	z-index: 998;
}

#blog-left .widget form input {
	color: #949494;
	border: none;
	border-bottom: 1px solid #e5e5e5;
	width: 100%;
	letter-spacing: 1px;
	font-size: 11px;
	padding: 8px 15px;
	padding-left: 0;
	width: 100%;
	margin: 0 0 20px 0;
	max-width: 100%;
	resize: none;
	transition: 0.8s;
	letter-spacing: 1px;
	font-size: 11px;
}

#blog-left .widget form input:focus {
	outline: none;
	border: none;
	border-bottom: 1px solid #000;
}

#blog-left .widget span {
	font-size: 15px;
	line-height: 22px;
	color: #333;
	display: block;
	margin-bottom: 7%;
	padding-bottom: 7%;
	position: relative;
	font-weight: 600;
}

#blog-left .widget span:before {
	content: "";
	position: absolute;
	bottom: 0;
	background: #ff4242;
	width: 30px;
	height: 4px;
}

#blog-left .widget .widget-body ul li {
	border-bottom: 1px solid #e5e5e5;
	padding: 0 0 12px;
	margin-bottom: 10px;
	color: #ababab;
}

#blog-left .widget .widget-body ul li a {
	letter-spacing: 1px;
	display: block;
	font-size: 11px;
	line-height: 20px;
	text-transform: uppercase;
	color: #333;
	letter-spacing: 1px;
	font-weight: 500;
}

#blog-left .widget .widget-body ul li .items {
	text-transform: none;
	font-weight: 600;
	font-size: 12px;
}

#blog-left .widget .widget-body ul li:last-child {
	border: 0;
}

#blog-left .widget .widget-body .title {
	margin: 0;
	margin-top: 11.5%;
	padding: 0;
	text-align: left;
}

#blog-left .widget .widget-body .title:before {
	display: none;
}

#blog-left .widget .widget-body p {
	font-size: 13px;
	color: #626262;
	line-height: 23px;
	letter-spacing: 0.02em;
	color: #626262;
}

#blog-left .sidebar-tags a {
	padding: 2px 10px;
	display: inline-block;
	color: #373737;
	margin: 0 8px 10px 0;
	background-color: #f6f6f6;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 20px;
	letter-spacing: 0.02em;
}

#blog-left .sidebar-tags a:hover {
	background-color: #000;
	color: #fff;
	-webkit-transition-duration: .2s;
	-webkit-transition-timing-function: ease-in-out;
}
 
#slider {
	background: url(../images/slider.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	padding-bottom: 50px;
	padding-top: 100px;
	height: 400px;
}
 
.slider-h2 {
	color: #464646;
	font-weight: 700;
	margin: 0px;
	font-size: 32px
}
 
.sub-slider-text {
	margin: 0px;
	font-size: 26px;
	color: #464646;
	font-weight: 300;
	line-height: 40px;
}

.slider-p {
	margin: 0px;
	color: #131313;
	font-size: 16px;
	padding-top: 30px;
	text-align: justify;
}

/*================================================== 
     Slideshow
 ================================================== */

/*-- Main slide --*/


#main-slide .item img {
	width: 100%;
height: 100%;
}
#main-slide {
  margin: 0 !important;
}
#main-slide .item .slider-content {
	z-index: 0;
	opacity: 0;
	-webkit-transition: opacity 500ms;
	-moz-transition: opacity 500ms;
	-o-transition: opacity 500ms;
	transition: opacity 500ms;
}

#main-slide .slider-content h1 strong {
	color: #FF432E;
}

#main-slide .item.active .slider-content {
	z-index: 0;
	opacity: 1;
	-webkit-transition: opacity 100ms;
	-moz-transition: opacity 100ms;
	-o-transition: opacity 100ms;
	transition: opacity 100ms;
}

#main-slide .slider-content {
	top: 45%;
	left: 0;
	padding: 0;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	color: #fff;
	margin-top: -160px;
}

#main-slide .carousel-indicators {
	bottom: 30px;
}

.carousel-indicators.banner-sliders li {
width: 11px !important;
height: 11px !important;
border: 1px solid #fff !important;
margin: 3px !important;
border-radius: 50% !important;
background: transparent !important;
}

#main-slide .carousel-control.left, #main-slide .carousel-control.right
	{
	opacity: 1;
	filter: alpha(opacity = 100);
	background-repeat: no-repeat;
	text-shadow: none;
	background: no-repeat;
	position: absolute;
	top: auto;
	width: 15%;
	height: 100%;
}

#main-slide .carousel-control.left span {
	padding: 15px;
}

#main-slide .carousel-control.right span {
	padding: 15px;
}

#main-slide .carousel-control .fa-angle-left, #main-slide .carousel-control .fa-angle-right
	{
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-block;
}

#main-slide .carousel-control .fa-angle-left {
	left: 0;
}

#main-slide .carousel-control .fa-angle-right {
	right: 0;
}

#main-slide .carousel-control i {
	color: #fff;
	line-height: 0;
	font-size: 40px;
font-family: "FontAwesome";
font-weight: 400;
	padding: 0 20px;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

#main-slide .slider-content h1 {
	font-size: 50px;
	line-height: 50px;
	letter-spacing: 0px;
	margin-bottom: 20px;
	color: #fff;
}

#main-slide .slider-content h2.white, #main-slide .slider-content h3.white
	{
	color: #fff;
}

#main-slide .slider-content p {
	font-size: 22px;
	font-weight: 200;
	line-height: 30px;
	letter-spacing: 0px;
	margin-bottom: 55px;
	color: #fff;
}

.slider.btn {
	padding: 10px 40px;
	font-size: 20px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	text-transform: uppercase;
	line-height: 28px;
	font-weight: 300;
	border: 0;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#main-slide .btn-primary:hover {
	background: transparent;
	border: 1px solid #fff;
}

.slider.btn.btn-default {
	margin-left: 4px;
	background: #ECECEC
}

.slider.btn.btn-default:hover {
	background: #000;
	color: #fff;
}

.slider-content-left {
	position: relative;
	margin: 0 0 0 40px;
}

.slider-content-right {
	position: relative;
}


@media ( min-width : 992px) {
	#main-slide .slider-content {
		margin-top: -120px;
	}
	#main-slide .slider-content h1 {
		font-size: 40px;
		padding-top: 50px;
	}
}

@media ( min-width : 768px) and (max-width: 991px) {
	#main-slide .slider-content {
		margin-top: -90px;
	}
	#main-slide .slider-content h1 {
		font-size: 35px;
		margin-bottom: 10px;
		margin-top: 0;
	}
	#main-slide .slider-content p {
		font-size: 20px;
		margin-top: 0;
		line-height: 25px;
	}
	.slider.btn {
		padding: 5px 25px;
		margin-top: 5px;
		font-size: 16px;
	}
	#main-slide .item img {
		height: 380px;
    max-width: none !important;
    width: auto;
	}
}

@media ( max-width : 767px) {
	#main-slide .slider-content {
		margin-top: -60px;
	}
	.list-group-item>span {
		display: none;
	}
	#main-slide .slider-content h1 {
		font-size: 28px;
		line-height: normal;
		margin-bottom: 0;
	}
	#main-slide .slider-content p {
		font-size: 16px;
		margin-top: 5px;
	}
	.slider.btn {
		padding: 0 15px;
		margin-top: 0;
		font-size: 12px;
	}
	#main-slide .carousel-indicators {
		display: block;
	}
	#main-slide .item img {
		height: 380px;
    max-width: none !important;
    width: auto;
	}
}

@media ( max-width : 479px) {
	#main-slide .slider-content {
		margin-top: -20px;
	}
	.list-group-item>span {
		display: none;
	}
	#main-slide .slider-content h1 {
		font-size: 16px;
		line-height: inherit;
		margin-bottom: 0;
	}
	#main-slide .slider-content p {
		font-size: 9px;
		margin-top: 3px;
		line-height: normal;
	}
	.slider.btn {
		padding: 0 5px;
		margin-top: 0;
		font-size: 10px;
	}
	#main-slide .carousel-indicators {
		display: block;
	}
	
	#main-slide .item img {
		height: 400px;
    max-width: none !important;
    width: auto;
	}
	*[class*='col-xs'] .foot {
		padding-left: 50px;
	}
	.fa-angle-left, .fa-angle-right {
		font-size: 28px !important;
	}
}

/*------------------------------------------------------ */
/* Start Feature Section                              */
/*------------------------------------------------------ */
.services-section {
	background: url(../images/services.jpg) no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
	position: relative;
	padding-top: 90px;
	padding-bottom: 20px;
}

.feature-section {
	padding-top: 100px;
}

.feature i {
	background: #FF432E;
}

.no-touch .feature:hover i, .no-touch .feature:active i, .no-touch .feature:focus i
	{
	box-shadow: 0 0 0 0 #FF432E;
}

.feature {
	padding-bottom: 80px;
}

.feature {
	text-align: center;
}

.feature h4 {
	font-size: 15px;
	color: #666;
	font-weight: bold;
	padding-top: 10px;
}

.feature p {
	color: #444;
	font-size: 16px;
	line-height: 20px;
	font-weight: 300;
	padding-top: 10px;
}

.feature i {
	font-size: 2.5em;
	width: 80px;
	height: 80px;
	padding: 25px;
	margin-bottom: 10px;
	position: relative;
}

.feature i {
	color: #fff;
	box-shadow: 0 0 0 30px transparent;
	-webkit-transform: translate3d(2, 2, 2);
	-moz-transform: translate3d(2, 2, 2);
	-o-transform: translate3d(2, 2, 2);
	transform: translate3d(2, 2, 2);
	-webkit-transition: box-shadow .6s ease-in-out;
	-moz-transition: box-shadow .6s ease-in-out;
	-o-transition: box-shadow .6s ease-in-out;
	transition: box-shadow .6s ease-in-out;
}

.no-touch .feature:hover i, .no-touch .feature:active i, .no-touch .feature:focus i
	{
	-webkit-transition: box-shadow .4s ease-in-out;
	-moz-transition: box-shadow .4s ease-in-out;
	-o-transition: box-shadow .4s ease-in-out;
	transition: box-shadow .4s ease-in-out;
}

/******* Style Loader *******/
#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999999;
}

.spinner {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 50%;
	left: 50%;
	margin-left: -40px;
	margin-top: -40px;
	-webkit-animation: rotatee 2.0s infinite linear;
	animation: rotatee 2.0s infinite linear;
}

.dot1, .dot2 {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-o-border-radius: 100%;
	-webkit-animation: bouncee 2.0s infinite ease-in-out;
	animation: bouncee 2.0s infinite ease-in-out;
}

.dot2 {
	top: auto;
	bottom: 0px;
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes rotatee {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes rotatee {
	100% {
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
	}
}

@-webkit-keyframes bouncee {
	0%,
	100% {
		-webkit-transform: scale(0.0);
	}
	50% {
		-webkit-transform: scale ( 1 .0);
	}
}
@-webkit-keyframes bouncee {
	0%, 100% {
		-webkit-transform: scale(0.0);
	}
	
	50% {
		-webkit-transform: scale ( 1 .0);
	}
}

@keyframes bouncee {
	0%,
	100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}
	50% {
		transform: scale ( 1 .0);
		-webkit-transform: scale ( 1 .0);
	}
}
.carousel-fade .carousel-inner .item {
	-webkit-transition-property: opacity;
	transition-property: opacity;
}

.carousel-fade .carousel-inner .item, .carousel-fade .carousel-inner .active.left,
	.carousel-fade .carousel-inner .active.right {
	opacity: 0;
}

.carousel-fade .carousel-inner .active, .carousel-fade .carousel-inner .next.left,
	.carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}

.carousel-fade .carousel-inner .next, .carousel-fade .carousel-inner .prev,
	.carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right
	{
	left: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	transition-duration: 1s;
}

.carousel-fade .carousel-control {
	z-index: 2;
}

/*8) testimonial Start
===========================*/
 
.form-gradient .font-small {
	font-size: 0.8rem;
}

.form-gradient .header {
	border-top-left-radius: .3rem;
	border-top-right-radius: .3rem;
}

.form-gradient input[type=text]:focus:not [readonly]  {
	border-bottom: 1px solid #fd9267;
	-webkit-box-shadow: 0 1px 0 0 #fd9267;
	box-shadow: 0 1px 0 0 #fd9267;
}

.form-gradient input[type=text]:focus:not [readonly] +label {
	color: #4f4f4f;
}

.form-gradient input[type=password]:focus:not [readonly]  {
	border-bottom: 1px solid #fd9267;
	-webkit-box-shadow: 0 1px 0 0 #fd9267;
	box-shadow: 0 1px 0 0 #fd9267;
}

.form-gradient input[type=password]:focus:not [readonly] +label {
	color: #4f4f4f;
}

.form-container ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color: #999;
}

.form-container :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: #999;
	opacity: 1;
}

.form-container ::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #999;
	opacity: 1;
}

.form-container :-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #999;
}

.form-container :placeholder-shown {
	 
	color: #999;
}
 

.form-container .req-input .input-status {
	display: inline-block;
	height: 40px;
	width: 40px;
	float: left;
}

.form-container .input-status::before {
	content: " ";
	height: 20px;
	width: 20px;
	position: absolute;
	top: 10px;
	left: 10px;
	color: white;
	border-radius: 50%;
	background: white;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.form-container .input-status::after {
	content: " ";
	height: 10px;
	width: 10px;
	position: absolute;
	top: 15px;
	left: 15px;
	color: white;
	border-radius: 50%;
	background: #555555;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.form-container .req-input {
	width: 100%;
	float: left;
	position: relative;
	background: #555555;
	height: 40px;
	display: inline-block;
	border-radius: 0px;
	margin: 5px 0px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.form-container div .row .invalid:hover {
	background: #EF9A9A;
}

.form-container div .row .invalid {
	background: #E57373;
}

.form-container .invalid .input-status:before {
	width: 20px;
	height: 4px;
	top: 19px;
	left: 10px;
	background: white; /*#F44336;*/
	border-radius: 0px;
	-ms-transform: rotate(45deg); /* IE 9 */
	-webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
	transform: rotate(45deg);
}

.form-container .invalid .input-status:after {
	width: 20px;
	height: 4px;
	background: white;
	border-radius: 0px;
	top: 19px;
	left: 10px;
	-ms-transform: rotate(-45deg); /* IE 9 */
	-webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
	transform: rotate(-45deg);
}

.form-container div .row  .valid:hover {
	background: #A5D6A7;
}

.form-container div .row .valid {
	background: #81C784;
}

.form-container .valid .input-status:after {
	border-radius: 0px;
	width: 17px;
	height: 4px;
	background: white;
	top: 16px;
	left: 15px;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.form-container .valid .input-status:before {
	border-radius: 0px;
	width: 11px;
	height: 4px;
	background: white;
	top: 19px;
	left: 10px;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.form-container .input-container {
	padding: 0px 20px;
}

.form-container .row-input {
	padding: 0px 5px;
}

.form-container .req-input.input-password {
	margin-bottom: 0px;
}

.form-container .req-input.confirm-password {
	margin-top: 0px;
}

.form-container {
	margin: 10px;
	padding: 10px;
	border-radius: 0px;
	background: #aaaaaa;
	color: #00838F;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.form-container .form-title {
	font-size: 25px;
	color: inherit;
	text-align: center;
	margin-bottom: 10px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.form-container .submit-row {
	padding: 0px 0px;
}

.form-container .btn.submit-form {
	margin-top: 15px;
	padding: 12px;
	background: #555555;
	color: white;
	border-radius: 0px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.form-container .btn.submit-form:focus {
	outline: 0px;
	color: white;
}

.form-container .btn.submit-form:hover {
	background: #444444;
	color: white;
}

.form-container .tooltip.top .tooltip-arrow {
	border-top-color: #555555 !important;
}

.form-container .tooltip.top.tooltip-invalid .tooltip-arrow {
	border-top-color: #E57373 !important;
}

.form-container .tooltip.top.tooltip-invalid .tooltip-inner::before {
	background: #E57373;
}

.form-container .tooltip.top.tooltip-invalid .tooltip-inner {
	background: #FFEBEE !important;
	color: #E57373;
}

.form-container .tooltip.top.tooltip-valid .tooltip-arrow {
	border-top-color: #81C784 !important;
}

.form-container .tooltip.top.tooltip-valid .tooltip-inner::before {
	background: #81C784;
}

.form-container .tooltip.top.tooltip-valid .tooltip-inner {
	background: #E8F5E9 !important;
	color: #81C784;
}

.form-container .tooltip.top .tooltip-inner::before {
	content: " ";
	width: 100%;
	height: 6px;
	background: #555555;
	position: absolute;
	bottom: 5px;
	right: 0px;
}

.form-container .tooltip.top .tooltip-inner {
	border: 0px solid #555555;
	background: #E0F7FA !important;
	color: #00ACC1;
	font-weight: bold;
	font-size: 13px;
	border-radius: 0px;
	padding: 10px 15px;
}

.form-container .tooltip {
	max-width: 150px;
	opacity: 1 !important;
}

.form-container .message-box {
	width: 100%;
	height: auto;
}

.form-container textarea:focus, .form-container textarea:hover {
	background: #fff;
	outline: none;
	border: 0px;
}

.form-container .req-input textarea {
	max-width: calc(100% - 50px);
	width: 100%;
	height: 80px;
	border: 0px;
	color: #777;
	padding: 10px 9px 0px 9px;
	float: left;
}

.form-container input[type=text]:focus, .form-container input[type=password]:focus,
	.form-container input[type=email]:focus, .form-container input[type=tel]:focus,
	.form-container input[type=cap]:focus, .form-container select {
	background: #fff;
	color: #777;
	border-left: 0px;
	outline: none;
}

.form-container input[type=text]:hover, .form-container input[type=password]:hover,
	.form-container input[type=email]:hover, .form-container input[type=tel]:hover,
	.form-container input[type=cap]:hover, .form-container select {
	background: #fff;
}

.form-container input[type=text], .form-container input[type=password],
	.form-container input[type=email], input[type=tel], input[type=cap],
	form-container select {
	width: calc(100% - 50px);
	float: left;
	border-radius: 0px;
	border: 0px solid #ddd;
	padding: 0px 9px;
	height: 40px;
	line-height: 40px;
	color: #000;
	background: #fff;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	font-size: 16px;
font-weight: 600;
}

.hovereffect {
	width: 100%;
	float: left;
	overflow: hidden;
	position: relative;
	text-align: center;
	cursor: default;
	height: 250px;
	margin: 15px 5px 15px 5px;
	background-repeat: round;
}

.hovereffect .overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: auto;
	overflow-x: hidden;
	top: 0;
	left: 0;
	background-color: transperent;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	top: 0;
}

.hovereffect img {
	display: block;
	position: relative;
}

.hovereffect h2 {
	color: #fff;
	text-align: left;
	position: relative;
	font-size: 19px;
	padding: 10px;
	background: rgba(0, 0, 0, 0.8);
	-webkit-transform: translateY(90px);
	-ms-transform: translateY(90px);
	transform: translateY(90px);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.hovereffect:hover h2 {
	-webkit-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(35px);
	margin: 0px;
}

.hovereffect p.info {
	display: inline-block;
	text-decoration: none;
	padding: 10px;
	color: #4d4b4b;
	background-color: transparent;
	opacity: 0;
	filter: alpha(opacity = 0);
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	font-weight: normal;
	text-align: justify;
	font-size: 13px;
	line-height: 17px;
	margin: 7px;
}

.hovereffect:hover p.info {
	opacity: 1;
	filter: alpha(opacity = 100);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	color: #fff;
}

.news {
	display: block;
	display: -webkit-box;
	height: 109.2px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.625;
}

.filter {
	padding: 10px;
	margin-bottom: 0;
	font-size: 15px;
	font-weight: normal;
	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;
	background-image: none;
	border: 1px solid #ccc;
	width: 100%;
	background-color: white;
	color: #706f70;
}

.filter.active {
	background-color: #c80808;
	border: 1px solid #c80808;
	color: white;
	font-weight: bold;
	font-size: 15px;
}

.filter:HOVER {
	background-color: #c80808;
	border: 1px solid #c80808;
	color: white;
	font-weight: bold;
	font-size: 15px;
}
 
.caret-up {
	width: 0;
	height: 0;
	border-left: 4px solid rgba(0, 0, 0, 0);
	border-right: 4px solid rgba(0, 0, 0, 0);
	border-bottom: 4px solid;
	display: inline-block;
	margin-left: 2px;
	vertical-align: middle;
}

 
#career {
	padding: 100px 0;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0%;
  }
}
/* PROGRESS */
.progress {
	background-color: #e5e9eb;
	height: 0.4em !important;
	position: relative;
	width: 20em;
}

.progress-bar {
	animation-duration: 1s;
	animation-name: width;
	background-image: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6,
		#ff2d55);
	background-size: 24em 0.25em;
	height: 100%;
	position: relative;
}

.progress-shadow {
	background-image: linear-gradient(to bottom, #eaecee, transparent);
	height: 4em;
position: relative;
top: 0;
	transform: skew(45deg);
	transform-origin: 0 0;
	width: 100%;
	-webkit-transform: skew(45deg);
	-webkit-transform: skew(45deg);
	-ms-transform: skew(45deg);
	-o-transform: skew(45deg);
}

/* ANIMATIONS */
@keyframes width {
  0%, 100% {
    transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
  }
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.widget .panel-body {
	padding: 0px;
}

.widget .list-group {
	margin-bottom: 0;
}

.widget .panel-title {
	display: inline
}

.widget .label-info {
	float: right;
}

.widget li.list-group-item {
	border-radius: 0;
	border: 0;
	border-top: 1px solid #ddd;
}

.widget li.list-group-item:hover {
	background-color: rgba(86, 61, 124, .1);
}

.widget .mic-info {
	color: #666666;
	font-size: 11px;
}

.widget .action {
	margin-top: 5px;
}

.widget .comment-text {
	font-size: 12px;
}

#contant-1 {
	background: #ffffff;
}

.contant-1-head:after {
	content: "";
	height: 2px;
	position: absolute;
	width: 102px;
}

.contant-1-head h1 {
	font-size: 36px;
	font-weight: 700;
	color: #c80808;
}

.contant-1-text {
	padding: 40px 10px 30px 10px;
	vertical-align: middle;
}

.contant-1-text h2 {
	color: #8C9494;
	font-size: 35px;
	font-weight: 400;
}

.contant-1-text p {
	color: #717171;
	font-size: 14px;
	font-weight: 400;
	margin: 0px;
	text-align: justify; 
}

.edit-button-2 {
	background: none;
	border: 3px solid #AAB2B5;
	border-radius: 30px;
	color: #636c6c;
	padding: 8px 50px;
	font-size: 21px;
	font-weight: 700;
	margin-top: 50px
}

.edit-button-2:hover {
	background: none;
	border: 3px solid #AAB2B5;
	color: #636c6c;
}
 

.edit-button-3 {
	background: none;
	border: 3px solid #AAB2B5;
	border-radius: 30px;
	color: #636c6c;
	padding: 8px 50px;
	font-size: 21px;
	font-weight: 700;
	margin-top: 50px
}

.edit-button-3:hover {
	background: none;
	border: 3px solid #AAB2B5;
	color: #636c6c;
}

.gallery-block {
	padding-bottom: 10px;
	padding-top: 10px;
}

.gallery-block .heading {
	margin-bottom: 50px;
	text-align: center;
}

.gallery-block .heading h2 {
	font-weight: bold;
	font-size: 1.4rem;
	text-transform: uppercase;
}

.gallery-block.cards-gallery h6 {
	font-size: 17px;
	font-weight: bold;
}

.gallery-block.cards-gallery .card {
	transition: 0.4s ease;
}

.gallery-block.cards-gallery .card img {
border-radius: 7px;
}

 
.gallery-block.cards-gallery a {
	color: #212529;
}

.gallery-block.cards-gallery a:hover {
	text-decoration: none;
} 

#gbanner {
	background: url('../images/gallery.jpg');
	background-size: cover;
	padding: 0px 0;
	position: relative;
	height: 350px;
	margin-top: 70px;
	margin-bottom: 50px;
	z-index: 1;
}

#gbanner:before {
	position: absolute;
	z-index: 99;
	background: rgba(0, 0, 0, 0.6);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
}

#gbanner .block {
	position: relative;
	z-index: 999;
	color: #fff;
	padding-top: 90px;
}

#gbanner .block h1 {
	padding-bottom: 25px;
	font-size: 32px;
	color: #c80808;
}

#gbanner .block h2 {
	font-size: 17px;
	line-height: 30px;
	font-weight: 300;
}

#gbanner .block .btn-learn {
	border: 1px solid #fff;
	color: #fff;
	border-radius: 25px;
	margin: 0 7px;
	padding: 10px 22px;
	font-size: 16px;
	transition: 0.3s;
}

#gbanner .block .btn-learn:hover {
	border-color: #c80808;
	color: #c80808;
}

#gbanner .block .buttons {
	margin-top: 40px;
}

#gbanner .block .buttons a:first-child {
	margin-left: 0;
}

#gbanner .scrolldown {
	position: absolute;
	left: 50%;
	bottom: 18%;
}

#gbanner .scrolldown .scroll {
	border-radius: 100px;
	width: 25px;
	height: 45px;
	position: absolute;
	left: 50%;
	margin: 0 0 0 -15px;
	display: inline-block;
	border: 1px solid #fff;
	z-index: 99;
}

#gbanner .scrolldown .scroll:after {
	background: #fff;
	border-radius: 300px;
	width: 4px;
	height: 9px;
	position: absolute;
	top: 10px;
	left: 50%;
	margin: 0 0 0 -2px;
	display: block;
	content: " ";
	-webkit-animation: wiggle 0.5s linear 0s infinite alternate;
	-moz-animation: wiggle 0.5s linear 0s infinite alternate;
	-o-animation: wiggle 0.5s linear 0s infinite alternate;
	animation: wiggle 0.5s linear 0s infinite alternate;
}

#cbanner {
	background: url('../images/career.jpg');
	height: 70%;
	background-size: cover;
	padding: 0px 0;
	position: relative;
	z-index: 1;
}

#cbanner:before {
	position: absolute;
	z-index: 99;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
}

#cbanner .block {
	position: relative;
	z-index: 999;
	color: #fff;
	padding-top: 120px;
}

#cbanner .block h1 {
	padding-bottom: 25px;
	font-size: 32px;
	color: #c80808;
}

#cbanner .block h2 {
	font-size: 17px;
	line-height: 30px;
	font-weight: 300;
}

#cbanner .block .btn-learn {
	border: 1px solid #fff;
	color: #fff;
	border-radius: 25px;
	margin: 0 7px;
	padding: 10px 22px;
	font-size: 16px;
	transition: 0.3s;
}

#cbanner .block .btn-learn:hover {
	border-color: #c80808;
	color: #c80808;
}

#cbanner .block .buttons {
	margin-top: 40px;
}

#cbanner .block .buttons a:first-child {
	margin-left: 0;
}

#cbanner .scrolldown {
	position: absolute;
	left: 50%;
	bottom: 18%;
}

#cbanner .scrolldown .scroll {
	border-radius: 100px;
	width: 25px;
	height: 45px;
	position: absolute;
	left: 50%;
	margin: 0 0 0 -15px;
	display: inline-block;
	border: 1px solid #fff;
	z-index: 99;
}

#cbanner .scrolldown .scroll:after {
	background: #fff;
	border-radius: 300px;
	width: 4px;
	height: 9px;
	position: absolute;
	top: 10px;
	left: 50%;
	margin: 0 0 0 -2px;
	display: block;
	content: " ";
	-webkit-animation: wiggle 0.5s linear 0s infinite alternate;
	-moz-animation: wiggle 0.5s linear 0s infinite alternate;
	-o-animation: wiggle 0.5s linear 0s infinite alternate;
	animation: wiggle 0.5s linear 0s infinite alternate;
}

.pName {
	color: #FFF;
}

.pro {
	margin: 0px 3px 5px 0px;
	padding: 5px 0px 5px 1px;
	font-size: 13px;
	line-height: 14px;
}

.pro>font {
	padding-left: 5px;
	font-size: 10px;
	font-style: normal;
	color: #FFF;
}

.pro:hover {
	cursor: pointer;
	background: rgb(239, 41, 41);
	
	color: #000;
}

.dropdown-header {
	color: #FFF;
	font-size: 16px;
	text-align: left;
	margin: 3px 2px 3px 2px;
	padding: 5px 0px 5px 0px;
	font-weight: bold;
	height: 30px;
	vertical-align: baseline;
}

#custom_carousel .item {
	color: #000000;
	background: transparent;
	padding: 15px 0;
	min-height: 200px;
}

#custom_carousel .controls {
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 5px 0 10px;
	margin: 0px 0px 0px 0px;
	white-space: nowrap;
	text-align: left;
	position: relative;
	background: transparent;
	border-right: 1px solid #ffffff;
}

#custom_carousel .controls li a, #custom_carousel .controls li>a:focus {
	font-size: 18px;
	color: #01458E;
	outline: none;
	padding: 12px;
	background: transparent;
}

#custom_carousel .controls li.active, #custom_carousel .controls li.active>a,
	#custom_carousel .controls li:HOVER>a {
	background-color: #eee;
	border-top: 2px solid #c80808;
	color: #c80808;
}

#custom_carousel .controls a small {
	overflow: hidden;
	display: block;
	font-size: 10px;
	margin-top: 5px;
	font-weight: bold;
	color: white;
}

#custom_carousel .item p {
	color: #000000;
	text-align: justify;
	font-size: 16px;
}

#custom_carousel .item h3 {
	color: #000000;
	text-align: left;
	font-size: 18px;
	margin-bottom: 5px;
	font-weight: bold;
}

#rbanner {
	background: url('../images/service-bg.jpg');
	height: 70%;
	background-size: cover;
	padding: 0px 0;
	position: relative;
	z-index: 1;
}

#rbanner:before {
	position: absolute;
	z-index: 99;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
}

#rbanner .block {
	position: relative;
	z-index: 999;
	color: #fff;
	padding-top: 120px;
}

#rbanner .block h1 {
	padding-bottom: 25px;
	font-size: 32px;
	color: #c80808;
}

#rbanner .block h2 {
	font-size: 17px;
	line-height: 30px;
	font-weight: 300;
}

#rbanner .block .btn-learn {
	border: 1px solid #fff;
	color: #fff;
	border-radius: 25px;
	margin: 0 7px;
	padding: 10px 22px;
	font-size: 16px;
	transition: 0.3s;
}

#rbanner .block .btn-learn:hover {
	border-color: #c80808;
	color: #c80808;
}

#rbanner .block .buttons {
	margin-top: 40px;
}

#rbanner .block .buttons a:first-child {
	margin-left: 0;
}

#rbanner .scrolldown {
	position: absolute;
	left: 50%;
	bottom: 18%;
}

#rbanner .scrolldown .scroll {
	border-radius: 100px;
	width: 25px;
	height: 45px;
	position: absolute;
	left: 50%;
	margin: 0 0 0 -15px;
	display: inline-block;
	border: 1px solid #fff;
	z-index: 99;
}

#rbanner .scrolldown .scroll:after {
	background: #fff;
	border-radius: 300px;
	width: 4px;
	height: 9px;
	position: absolute;
	top: 10px;
	left: 50%;
	margin: 0 0 0 -2px;
	display: block;
	content: " ";
	-webkit-animation: wiggle 0.5s linear 0s infinite alternate;
	-moz-animation: wiggle 0.5s linear 0s infinite alternate;
	-o-animation: wiggle 0.5s linear 0s infinite alternate;
	animation: wiggle 0.5s linear 0s infinite alternate;
}

#sbanner { 
	height: 70%;
	background-size: cover;
	padding: 0px 0;
	position: relative;
	z-index: 1;
}

#sbanner:before {
	position: absolute;
	z-index: 99;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
}

#sbanner .block {
    position: relative;
    z-index: 999;
    color: #fff;
    display: flex;
    height: 442.5px;
    text-align: left;
    padding: 105px;
    margin: auto 0;
    width: 100%;
    flex-direction: column;
    justify-content: center;
}
/* Banner */
 
.block h6 {
font-size: 20px;
font-weight: 600;
color: #000;
padding-bottom: 20px;
font-family: 'Montserrat';
text-align: center;
}
.block h2 {
padding-bottom: 15px;
color: #fff;
text-align: center;
font-family: 'Montserrat',sans-serif !important;
line-height: 45px;
font-weight: 900;
}
.block p {
font-size: 22px;
line-height: 34px;
color: #fff;
text-align: center;
font-family: 'Montserrat',sans-serif !important;
}
.block span {
font-weight: 600;
font-size: 35px;
font-family: 'Montserrat';
}
.product-banner .block {
  height: auto !important;
  padding: 80px !important;
}
.product-banner .block h2 {
	color: #000 !important;
font-weight: 600 !important;
padding: 0 !important;
margin: 0 !important;
font-family: unset;
line-height: normal;
padding-bottom: 15px !important;
}
.product-banner .block span {
font-weight: 900 !important;
font-family: 'Montserrat';
font-size: 40px !important;
line-height: normal !important;
letter-spacing: -1.5px;
}
.product-banner .block p {
line-height: 28px !important;
font-size: 18px !important;
padding: 0 0 35px !important;
position: relative;
letter-spacing: 0 !important;
margin: 10px auto 0;
color: #333 !important;
}
#sbanner .block .btn-learn {
	border: 1px solid #fff;
	color: #fff;
	border-radius: 25px;
	margin: 0 7px;
	padding: 10px 22px;
	font-size: 16px;
	transition: 0.3s;
}

#sbanner .block .btn-learn:hover {
	border-color: #c80808;
	color: #c80808;
}

#sbanner .block .buttons {
	margin-top: 40px;
}

#sbanner .block .buttons a:first-child {
	margin-left: 0;
}

#sbanner .scrolldown {
	position: absolute;
	left: 50%;
	bottom: 18%;
}

#sbanner .scrolldown .scroll {
	border-radius: 100px;
	width: 25px;
	height: 45px;
	position: absolute;
	left: 50%;
	margin: 0 0 0 -15px;
	display: inline-block;
	border: 1px solid #fff;
	z-index: 99;
}

#sbanner .scrolldown .scroll:after {
	background: #fff;
	border-radius: 300px;
	width: 4px;
	height: 9px;
	position: absolute;
	top: 10px;
	left: 50%;
	margin: 0 0 0 -2px;
	display: block;
	content: " ";
	-webkit-animation: wiggle 0.5s linear 0s infinite alternate;
	-moz-animation: wiggle 0.5s linear 0s infinite alternate;
	-o-animation: wiggle 0.5s linear 0s infinite alternate;
	animation: wiggle 0.5s linear 0s infinite alternate;
}

.vertical-menu {
	width: 100%; /* Set a width if you like */
}

.vertical-menu a {
	background-color: #ffffff; /* White background color */
	color: black; /* Black text color */
	display: block; /* Make the links appear below each other */
	padding: 5px 10px; /* Add some padding */
	text-decoration: none; /* Remove underline from links */
	font-size: 12px;
	text-align: left;
	margin: 2px;
}
 
.vertical-menu a.active {
	/* Add a green color to the "active/current" link */
	color: #c80808
}

.servicebox {
	border: 1px solid #c80808;
	width: 130px;
	height: 120px;
	margin: 0px 10px 20px 10px;
	padding: 15px;
	cursor: pointer;
	line-height: 15px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 3px 10px -4px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 3px 10px -4px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 3px 10px -4px rgba(0, 0, 0, 0.75);
	color: #000;
}

.service_link, .service_link:HOVER {
	position: relative;
	display: block;
	padding: 1px;
	width: 50px;
	color: white;
	letter-spacing: 2px;
	text-decoration: none;
	text-align: center;
	border: 1px solid white;
	border-radius: 3px;
	font-size: .70em;
	float: right;
	margin-right: 5px;
	top: 175px;
}

.servicebox a {
	color: #000;
}

.servicebox a:HOVER {
	color: #c80808;
}

#coe {
	padding-top: 60px;
	padding-bottom: 25px; 
	position: relative;
z-index: 1;
}
.col-md-7.col-xs-12.domain-focus {
  margin-top: 0px;
  width: 100%;
  height: 100%; 
}
.col-md-7.col-xs-12.domain-focus h2 {
  color: #c80808;
  font-size: 24px;
  display: inline-block;
  position: relative;
  text-transform: none;
  font-weight: 600;
  width: 100%;
  z-index: 1;
  text-align: left;
  padding: 0px 0px 15px 0px;
  margin: 0 !important;
  font-family: 'Montserrat';
  letter-spacing: normal;
  line-height: 35px;
}
.center-of-excellence {
word-spacing: normal;
text-align: left;
padding: 10px 0 0;
font-size: 18px;
line-height: 1.7;
letter-spacing: -0.2px;
color: #333;
}
.col-md-5.coe-image img {
    width: 90%;
    float: right;
    margin: auto;
    position: relative;
    top: auto;
    left: auto;
    margin-top: -25px;
}
#coe .container {
  width: 90% !important;
}
 
.col-md-5.coe-image {
  margin: auto;
  max-width: 40% !important;
  display: inline-flex;
  flex-flow: column;
  height: 100%;
  width: auto;
}
#offer {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fbfbfb;
}

#krancsr {
	padding-top: 90px;
	padding-bottom: 90px;
}

.fullImageSlide {
	margin-top: auto;
}
 

/* line 248, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
.custom-animation {
	backface-visibility: hidden;
	animation: jumping 9s ease-in-out 2s infinite alternate;
	animation-delay: 1s;
	transition: all .9s ease 5s;
	user-select: none;
}

/* line 256, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
.custom-animation2 {
	backface-visibility: hidden;
	animation: jumping2 9s ease-in-out 2s infinite alternate;
	animation-delay: 1s;
	transition: all 1s ease 3s;
	user-select: none;
}

/* line 264, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
.custom-animation3 {
	backface-visibility: hidden;
	animation: jumping3 9s ease-in-out 2s infinite alternate;
	animation-delay: 1s;
	transition: all 7s ease 2s;
	user-select: none;
}

/* line 272, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
.custom-animation4 {
	backface-visibility: hidden;
	animation: jumping4 9s ease-in-out 2s infinite alternate;
	animation-delay: 1s;
	transition: all 8s ease 4s;
	user-select: none;
}

/* line 280, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
.custom-animation10 {
	backface-visibility: hidden;
	animation: jumping10 9s ease-in-out 2s infinite alternate;
	animation-delay: 1s;
	transition: all 8s ease 4s;
	user-select: none;
}

/* line 288, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
.custom-animation11 {
	backface-visibility: hidden;
	animation: jumping11 9s ease-in-out 2s infinite alternate;
	animation-delay: 1s;
	transition: all 8s ease 4s;
	user-select: none;
}

/* line 511, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
.hero-app-8 {
	position: absolute;
	left: 68%;
	top: 60%;
}

@media ( max-width : 576px) {
	/* line 511, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
	.hero-app-8 {
		top: 80%;
	}
}

/* line 177, E:/167 Bizcon Business/Bizcon_html/sass/_service.scss */
.service_part .hero-app-8 {
	position: absolute;
	right: 25%;
}

/* line 474, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
.hero-app-4 {
	position: absolute;
	bottom: 20%;
	left: 50%;
}

/* line 420, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
.hero-app-1 {
	position: absolute;
	left: 4%;
	top: 10%;
}

@media ( max-width : 576px) {
	/* line 420, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
	.hero-app-1 {
		display: none;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	/* line 420, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
	.hero-app-1 {
		padding: 8px 25px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	/* line 420, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
	.hero-app-1 {
		padding: 10px 25px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	/* line 420, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
	.hero-app-1 {
		padding: 10px 25px;
	}
}
/* for cards */
 
.center {
	display: inline-block;
	vertical-align: middle;
}

.contant-2-text h4 {
	color: #ffffff;
	font-size: 16px;
	margin-top : 14px;
	line-height : 1;
}

.contant-3-text h4 {
	color: #c80808;
	font-size: 16px;
	margin-top : 14px;
	line-height : 1;
}

.testimonial {
	margin: 20px;
	padding: 20px 20px 30px 25px;
	background-color: white;
	min-height: 380px;
}

.testimonial .pic {
	display: inline-block;
	border-radius: 50%;
	margin: 0 5px 5px 0;
	width: 20%;
}

.testimonial .pic img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	vertical-align: baseline;
}

.testimonial .testimonial-profile {
	display: inline-block;
	position: relative;
	width: 77%;
}

.testimonial .title {
	display: block;
	font-size: 20px;
	font-weight: 600;
	color: #2f2f2f;
	text-transform: capitalize;
	padding-bottom: 0px;
	text-align: left;
}

.testimonial .post {
	display: block;
	font-size: 16px;
	color: #5d7aa7;
	padding-bottom: 20px;
	text-align: left;
}

.testimonial .testimonial-content {
	padding: 35px 20px 35px 30px;
	margin-bottom: 35px;
	border: 1px solid #f0f0f0;
	position: relative;
}

.testimonial-content .testimonial-icon {
	width: 50px;
	height: 45px;
	background: #ff4242;
	text-align: center;
	font-size: 22px;
	color: #fff;
	line-height: 42px;
	position: absolute;
	top: 37px;
	left: -19px;
}

.testimonial-icon:before {
	content: "";
	border-bottom: 16px solid #e41212;
	border-left: 18px solid transparent;
	position: absolute;
	top: -16px;
	left: 1px;
}

.testimonial .description {
	font-size: 15px;
	font-style: italic;
	color: #8a8a8a;
	line-height: 23px;
	margin: 0;
}

.wrap-input100 {
	width: 100%;
	position: relative;
	border: none;
	border-radius: 2px;
	margin-bottom: 15px
}

.label-input100 {
	font-size: 18px;
	color: #999999;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 40px;
	height: 100%;
	top: 0;
	left: 2px;
}

.label-input100.rs1 {
	height: 25px;
}

.input100 {
	display: block;
	width: 96%;
	background: transparent;
	font-size: 15px;
	color: #333333;
	line-height: 1.2;
	padding: 5px;
	outline: none;
	border: none;
	margin: 5px;
	padding: 0 5px 0 40px;
}

input.input100 {
	height: 25px;
}

textarea.input100 {
	min-height: 180px;
	padding-top: 15px;
	padding-bottom: 15px;
	outline: none;
	border: none;
}

/*---------------------------------------------*/
 
.caption {
	float: left;
	display: inline-block;
	font-size: 18px;
	line-height: 18px;
}

.caption.caption-green .caption-subject, .caption.caption-green i {
	color: #42a469;
	font-weight: 200;
}

.caption.caption-red .caption-subject, .caption.caption-red i {
	color: #e26a6a;
	font-weight: bold;
}

.caption.caption-purple .caption-subject, .caption.caption-purple i {
	color: #8775a7;
	font-weight: 400;
}

.caption i {
	color: #777;
	font-size: 15px;
	font-weight: 300;
	margin-top: 3px;
}

.caption-subject {
	color: #666;
	font-size: 14px;
	font-weight: 600;
}

.caption-helper {
	padding: 0;
	margin: 0;
	line-height: 13px;
	color: #9eacb4;
	font-size: 13px;
	font-weight: 400;
}

.btn-read {
	background: #ff0000;
	color: #fff;
	padding: 10px 20px;
	font-size: 12px;
	border-radius: 0px;
	text-decoration: none;
	font-weight: 500;
}

.btn-read:HOVER {
	background: #c80808;
	color: #fff;
	padding: 10px 20px;
	font-size: 14px;
	border-radius: 0px;
	text-decoration: none;
	font-weight: 500;
}

#bbanner {
	background-size: cover;
	padding: 0px 0;
	position: relative;
	z-index: 1;
}

#bbanner:before {
	position: absolute;
	z-index: 99;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
}

#bbanner .block {
	position: relative;
	z-index: 999;
	color: #fff;
	padding: 50px 0;
}

.modal-dialog .modal-content {
	border-radius: 0;
	border-top: 5px solid #c80808;
}

.modal-header .close {
  width: auto;
}
.modal-header .close {
  padding: 0 !important;
  margin: 0 !important;
}

#accordion .panel {
	border-radius: 0;
	box-shadow: none;
}

#accordion .panel-heading {
	padding: 0;
	border-radius: 0;
	background: #fff;
}

#accordion .panel-title {
	overflow: hidden;
}

#accordion .panel-title a {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	background: #333;
	text-transform: capitalize;
	padding: 13px 13px 13px 80px;
	position: relative;
	transition: all 0.30s linear 0s;
	text-align: left;
}

#accordion .panel-title a.collapsed {
	background: #fff;
	color: #333;
}

#accordion .panel-title a.collapsed:hover {
	color: #c90000;
}

#accordion .panel-title a:before, #accordion .panel-title a.collapsed:before
	{
	content: "\f107";
	font-family: "FontAwesome";
	font-weight: 900;
	width: 50px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	background: #c90000;
	transition: all 0.30s linear 0s;
}

#accordion .panel-title a.collapsed:before {
	content: "\f105";
	background: #fff;
	color: #333;
}

#accordion .panel-body {
	border-top: none;
	color: #888;
}

.header {
	text-align: center;
}

.widget-body .row {
  display: flex;
  justify-content: center;
}
.widget-body a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header h2 {
	color: #c80808;
	font-size: 24px;
	display: inline-block;
	position: relative;
	text-transform: capitalize;
	text-align: justify;
}

.header h2:before {
	content: '';
	width: 40px;
	height: 0px;
	background: #c80808;
	position: absolute;
	top: 15px;
	left: -60px;
}

.header h2:after {
	content: '';
	width: 40px;
	height: 0px;
	background: #c80808;
	position: absolute;
	top: 15px;
	right: -60px;
}

.tree, .tree ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.tree ul {
	margin-left: 1em;
	position: relative
}

.tree ul ul {
	margin-left: .5em
}

.tree ul:before {
	content: "";
	display: block;
	width: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	border-left: 1px solid
}

.tree li {
	margin: 0;
	padding: 0 1em;
	line-height: 2em;
	color: #369;
	font-weight: 700;
	position: relative
}

.tree ul li:before {
	content: "";
	display: block;
	width: 10px;
	height: 0;
	border-top: 1px solid;
	margin-top: -1px;
	position: absolute;
	top: 1em;
	left: 0
}

.tree ul li:last-child:before {
	background: #fff;
	height: auto;
	top: 1em;
	bottom: 0
}

.indicator {
	margin-right: 5px;
}

.tree li a {
	text-decoration: none;
	color: #369;
}

.tree li button, .tree li button:active, .tree li button:focus {
	text-decoration: none;
	color: #369;
	border: none;
	background: transparent;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	outline: 0;
}

.modal-xl {
	width: 90%;
	max-width: 1200px;
	height: 90vh;
}

.tabtop > li > a {  
	color: #1b2834;
	border-radius: 0px;
	border: 1px solid #ebebeb !important;
	width: auto;
	font-size: 14px;
font-weight: 600;
}
  
.tabtop li a:hover {
	color: #c80808 !important;
	text-decoration: none;
}

.tabtop .active a:hover {
	color: #fff !important;
}

.tabtop .active a {
background-color: #c80808 !important;
color: #fff !important;
font-size: 14px !important;
font-weight: 600;
}

.margin-tops {
	margin-top: 10px;
}

.tabtop li a:last-child {
	padding: 10px 22px;
}
 
.modal-body {
	padding: 0px;
	margin: 15px;
}
 
.sidebar-contact {
position: fixed;
top: 55%;
right: -400px;
transform: translateY(-50%);
width: 400px;
height: auto;
padding: 20px 30px;
background: #fff;
box-shadow: none;
box-sizing: border-box;
transition: 0.5s;
z-index: 999;
border: 1px solid #e8e8e8;
}
.wrap-input100.validate-input.form-group.careerform-vacancy input {
  font-size: 16px;
}
.wrap-input100.validate-input.form-group.careerform-vacancy {
  margin-bottom: 3.5rem;
  padding: 0px 20px 0 40px;
}
.sidebar-contact.active {
	right: 0;
}
.container-contact100-form-btn {
  display: flex;
  justify-content: center;
}
.toggle {
position: absolute;
height: 48px;
width: 48px;
text-align: center;
cursor: pointer;
background: #c80808;
top: 90%;
left: -52px;
line-height: 48px;
border-radius: 0%;
}
.toggle.active {
  background: transparent;
  left: 350px;
  top: 0;
}
.toggle:before {
	content: '\f003';
	font-family: fontAwesome;
	font-size: 18px;
	color: #fff;
}
.toggle span {
  display: none;
}
.toggle.active:before {
content: ''; 
}
.toggle.active span {
  color: black;
  font-size: 18px;
  font-weight: 800;
  font-family: unset;
  display: block;
}
@media ( max-width :768px) {
 
	.scroll {
		width: 100%;
		height: 100%;
		overflow-y: auto;
	}
	.content {
		padding: 50px 50px;
	}
}

.serviceBox { 
	padding: 38px 0 0;
	position: relative;
}

.serviceBox .service-icon {
	color: #fff;
	background: linear-gradient(#C80808, #950000);
	font-size: 45px;
	line-height: 80px;
	width: 110px;
	height: 80px;
	padding: 0 25px;
	border-radius: 10px 10px 100px;
	transform: translateX(-50%);
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 2;
}

.serviceBox .service-content {
	background: linear-gradient(#F00, #9D0000, #F00, #000);
	padding: 90px 30px;
	border-radius: 20px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.0 .05);
	position: relative;
	z-index: 1;
	height: 350px
}

.serviceBox .service-content:before {
	content: "";
	background-color: #fff;
	width: 100%;
	height: 100%;
	border-radius: 18px 18px 190px 18px;
	box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.1);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.serviceBox .title {
	color: #555;
	font-size: 19px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 15px;
}

.serviceBox .description {
	color: #888;
	font-size: 13px;
	letter-spacing: 0.5px;
	line-height: 22px;
}
 
.top-features-area {
	margin-bottom: -50px;
}

.top-features-area .features-items {
	padding: 15px 15px;
	position: relative;
	margin-top: 30px;
	margin-bottom: 50px;
	background: #ffffff;
	z-index: 1;
	border-radius: 5px;
	float: left;
	width: 100%;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0
		rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.top-features-area .features-items i {
	display: inline-block;
	font-size: 50px;
	margin-bottom: 30px;
	color: #1cb9c8;
}

.top-features-area .features-items h4 {
	text-transform: capitalize;
	font-weight: 400;
	line-height: 1.2;
}

.top-features-area .features-items span {
	color: #e7e7e7; 
	font-size: 30px;
	font-weight: 800;
	display: block;
	margin-top: 20px;
	margin-bottom: -5px;
}

.client-logos img:hover {
	filter: grayscale(0);
	transition-property: filter;
	transition-duration: .5s;
	-webkit-filter: grayscale(0%);
}

#quote-carousel {
	padding: 0 10px 30px 10px;
}


#quote-carousel .carousel-control {
	background: none;
	color: #CACACA;
	font-size: 2.3em;
	text-shadow: none;
	margin-top: 30px;
}

#quote-carousel .carousel-indicators {
	position: relative;
	right: 50%;
	top: auto;
	bottom: 0px;
	margin: auto;}

#quote-carousel .carousel-indicators li {
width: 30px;
height: 5px;
cursor: pointer;
border: 1px solid #eaeaea;
box-shadow: none;
border-radius: 30%;
opacity: 0.5;
overflow: hidden;
transition: all .4s ease-in;
vertical-align: middle;
background: #ffcaca;
}

.item blockquote {
	border-left: none;
	margin: 0;
}

body .carousel-indicators li {
	background-color: #fff;
}

body .carousel-control-prev-icon, body .carousel-control-next-icon {
	background-color: red;
}

body .no-padding {
	padding-left: 0;
	padding-right: 0;
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.services-inc-area .services-items .item {
	box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}

.services-inc-area .item .thumb {
	position: relative;
	z-index: 1;
}

.services-inc-area .item .info a {
	color: #c80808;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.default-padding {
	padding-top: 50px;
	padding-bottom: 50px;
}
 

.contact-area .contact-form p {
	position: relative;
	padding-bottom: 20px;
}

.contact-area .contact-form input {
	border: 1px solid #e7e7e7;
	border-radius: inherit;
	box-shadow: inherit;
}

.contact-area .contact-form textarea {
	border: 1px solid #e7e7e7;
	border-radius: inherit;
	box-shadow: inherit;
	min-height: 180px;
	padding: 15px 12px;
}

textarea.form-control {
	height: auto;
}

.contact-area .contact-form button {
	background: #ffffff none repeat scroll 0 0;
	border: 2px solid #c80808;
	box-shadow: inherit;
	color: #c80808; 
	font-weight: 600;
	padding: 12px 30px;
	text-transform: uppercase;
}

.contact-area .address-items li span {
	padding-left: 15px;
}

.form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow
		ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out
		.15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.services-inc-area .item .overlay>a {
	bottom: 0;
	display: flex;
	left: 0;
	width: 100%;
	padding: 15px 30px;
	position: absolute;
	z-index: 1;
	align-items: center;
}

.services-inc-area .item .overlay>a {
	color: #1cb9c8;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 5px;
}

.overlay .mask {
	opacity: 0;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.view .mask {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-attachment: fixed;
}

.flex-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
}

.view {
	position: relative;
	overflow: hidden;
	cursor: default;
}
 
.zoom img, .zoom video {
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}

.view img, .view video {
	position: relative;
	display: block;
}
 
.defaults {
	color: #495057;
}  
 
.bannerHead {
white-space: normal;
top: 0;
position: absolute;
z-index: 1;
color: white;
width: 100%;
vertical-align: middle;
padding: 0 250px;
line-height: 52px;
display: flex;
margin: auto;
align-items: center;
height: 100%;
text-align: center;
justify-content: center;
}
 .bannerHead span {
font-weight: 600;
font-size: 32px;
font-family: 'Montserrat';
}
.bannerHead span div {
  font-size: 30px;
  line-height: 42px;
  font-family: 'Montserrat';
}
.bannerHead span ol li {
  font-size: 24px;
  line-height: 35px;
}
.bannerHead.firstactive span {
  font-size: 25px;
  line-height: 40px;
  padding-bottom: 30px;
}
.bread-crumb .breadcrumb {
	position: relative;
	background: #f8f9fb;
	border-radius: 0;
	border: 0;
	margin-top: -1px;
	margin-bottom: 0;
	padding: 20px 0;
	width: 100%;
}

.bread-crumb .breadcrumb li a {
	color: #000;
	padding-right: 10px;
	padding-left: 10px;
	background-size: 8px 12px; 
	font-size: 12px;
    font-weight: 400;
    font-family: 'Montserrat';
}
.bread-crumb .breadcrumb li i {
font-size: 19px;
font-weight: 400;
font-family: "FontAwesome";
}
.homepgpckgs .package-card {
	height: 280px;
	padding-bottom: 87px;
	margin-bottom: 15px;
}

.package-card {
	width: 100%;
	margin: 5px;
	margin-bottom: 5px;
	height: 400px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.pointer {
	cursor: pointer;
}

.homepgpckg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	background: -moz-linear-gradient(top, hsla(0, 0%, 100%, 0) 0,
		rgba(0, 0, 0, .68) 100%);
	background: -webkit-linear-gradient(top, hsla(0, 0%, 100%, 0),
		rgba(0, 0, 0, .68));
	background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0,
		rgba(0, 0, 0, .68));
}

.package-card {
	text-transform: capitalize;
}

.homepg-packagehead {
	position: absolute;
	width: 100%;
	top: 10%;
}

.section-poppackages .package-card h3 {
	width: 100%;
	font-weight: 600;
	font-size: 15px;
	clear: both;
}

.homepgpckg-pckgtitle {
color: #000;
font-weight: 600;
font-size: 12px;
padding: 0 20px 10px 20px;
text-align: left;
}

.package-card .description {
display: block;
color: #666666;
font-size: 10px;
line-height: 22px;
text-align: justify;
padding: 5px;
}

.package-card h3 {
	width: 100%;
	font-weight: 500;
	font-size: 14px;
	clear: both;
	padding: 20px;
	margin-top: 0px;
}

.package-card:hover, .hover {
	-webkit-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
	box-shadow: none !important;
}

.package-card .thumbnail img {
	display: block;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
	max-width: 200%;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 0.9;
}

.package-card:hover .thumbnail img, .hover .thumbnail img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
	opacity: 1.0;
	border-radius: none;
	max-width: auto;
}

.package-card .post-meta {
	color: #999999;
	padding-left: 20px;
	text-align: left;
}

.clickable {
	cursor: pointer;
}

.panel {
	background-color: #fff;
	border: 1px solid transparent;
	border-top-color: transparent;
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-heading span {
	margin-top: -15px;
	font-size: 15px;
}

.panel-primary>.panel-heading {
	color: #c80808;
	background-color: #c80808;
	border-color: #a2a2a2
}

.panel-primary {
	border-color: #c80808;
}
.panel-warning {
	border-color: #d0af00;
}
.panel-success {
	border-color: #35b500;
}
.panel-onsite {
	border-color: #00c1a6;
}
.panel-info {
	border-color: #0082c4;
}
.panel-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 12px;
	color: inherit;
	text-align: left;
}

.counter {
	background-color: #f2f2f2;
	padding: 20px 0;
	border-radius: 5px;
}

.count-title {
	font-size: 40px;
	font-weight: normal;
	margin-top: 10px;
	margin-bottom: 0;
	text-align: center;
}

.count-text {
	font-size: 18px;
	font-weight: normal;
	margin-top: 10px;
	margin-bottom: 0;
	text-align: center;
}
 
responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.features .icon-box i {
	font-size: 32px;
	padding-right: 10px;
	line-height: 1;
}




