/* =================================
------------------------------------
  Arcade - Architecture
  Version: 1.0
 ------------------------------------ 
 ====================================*/





/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
html,
body {
	height: 100%;
	font-family: 'Roboto', sans-serif;
}
#header {
	/* padding: 30px 0; */
	height: 100px;
	position: fixed;
	transition: all 0.5s;
	z-index: 997;
  }
#header.header-scrolled {
	background: rgba(0, 0, 0, 0.9);
	/* padding: 20px 0; */
	height: 72px;
	transition: all 0.5s;
  }

h1,
h2,
h3,
h4,
h5,
h6 {
	/* color: #222222; */
	margin: 0;
	/* margin-bottom: 10px; */
	font-weight: 700;
}

h1 {
	font-size: 60px;
	margin-bottom: 40px;
}

h1 span {
	background: #F79F21;
	padding: 0 10px;
	color: #222222;
	display: inline-block;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 24px;
	/* color:#F79F21; */
	color:grey;
	/* margin-bottom: 30px; */
}

h4 {
	font-size: 15px;
}

p {
	font-size: 15px;
	color: #727272;
	line-height: 2;
}

.spad1 {
	padding: 30px 0;
}


.spad2 {
	padding: 50px 0 100px;
}


img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*------------------------
  Helper css
--------------------------*/
.sp-title {
	font-size: 60px;
	margin-bottom: 40px;
}
.sp-title1 {
	font-size: 60px;
	/* margin-bottom: 40px; */
}

.sp-title span {
	background: #F79F21;
	padding: 0 10px;
	color: white;
	display: inline-block;
}

.pt100 {
	padding-top: 100px;
}

.pb100 {
	padding-bottom: 100px;
}

.pt50 {
	padding-top: 50px;
}

.pb50 {
	padding-bottom: 50px;
}

.mb100 {
	margin-bottom: 100px;
}

.spad {
	padding: 100px 0;
}

.section-title {
	margin-bottom: 75px;
}

.section-title h1,
.section-title h2 {
	display: inline-block;
	/* background: #F79F21; */
	/* padding: 0 20px; */
	color:#F79F21;
	margin-bottom: 0;
	font-size: 60px;
}

.set-bg {
	background-size: cover;
	background-repeat: no-repeat;
	border: #F79F21 1px solid;
}

.set-b {
	background-size: contain;
	background-repeat: no-repeat;
	/* border: #F79F21 1px solid; */
}


.pter {
  cursor: pointer;
}

/*------------------------
  Common element css
--------------------------*/
/*=== Preloder ===*/
#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
}

.loader {
	width: 30px;
	height: 30px;
	border: 3px solid #000;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	border-left-color: transparent;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
	}

@keyframes loader {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
.site-btn {
	display: inline-block;
	font-weight: 700;
	border: 4px solid;
	min-width: 200px;
	text-align: center;
	padding: 19px 0;
	position: relative;
	background-color: transparent;
	margin-right: 15px;
	z-index: 1;
	
}

.site-btn:after,
.site-btn:before {
	position: absolute;
	content: "";
	width: 26px;
	height: 4px;
	right: -15px;
}

.site-btn:after {
	bottom: 8px;
}

.site-btn:before {
	bottom: 18px;
}

.site-btn.sb-light {
	color: #fff;
}

.site-btn.sb-light:after,
.site-btn.sb-light:before {
	background: #fff;
}

.site-btn.sb-dark {
	color:  #fff ;
}

.site-btn.sb-dark:after,
.site-btn.sb-dark:before {
	background:  #fff ;
}

.site-btn.sb-solid-color {
	background:  #fff;
	border-color:  #fff;
}

.site-btn.sb-solid-color:after,
.site-btn.sb-solid-color:before {
	background: #222222;
}

.site-btn.sb-solid-dark {
	background: #222;
	border-color: #222;
	color: #F79F21;
}

.site-btn.sb-solid-dark:after,
.site-btn.sb-solid-dark:before {
	background: #F79F21;
}

.element {
	margin-bottom: 100px;
}

/*===  Accordion ===*/
.accordion-area .panel {
	margin-bottom: 15px;
}

.accordion-area .panel-header {
	background: #f0f0f0;
	display: block;
	padding: 12px 50px;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	-webkit-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.accordion-area .panel-header.active {
	background: #F79F21;
}

.accordion-area .panel-header.active .panel-link:after {
	content: "-";
}

.accordion-area .panel-header.active .panel-link.collapsed:after {
	content: "+";
}

.accordion-area .panel-link {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50px;
	background: #F79F21;
	border: none;
	cursor: pointer;
}

.accordion-area .panel-body p {
	font-size: 14px;
	margin-bottom: 0;
	padding-top: 25px;
}

.accordion-area .panel-body {
	padding: 0 5px;
}

.accordion-area .panel-link:after {
	content: "+";
	position: absolute;
	left: 50%;
	font-size: 16px;
	font-weight: 700;
	top: 50%;
	line-height: 16px;
	margin-top: -8px;
	margin-left: -4px;
}

/*===  Tab  ===*/
.tab-element .nav-tabs {
	border-bottom: none;
	margin-bottom: 35px;
}

.tab-element .nav-tabs .nav-link {
	border: none;
	background: #f0f0f0;
	border-radius: 0;
	margin-right: 5px;
	font-size: 14px;
	font-weight: 500;
	color: #222;
	padding: 15px 30px;
}

.tab-element .nav-tabs .nav-link.active {
	background: #F79F21;
}

.tab-element .nav-tabs .nav-link.active,
.tab-element .nav-tabs .nav-link:hover {
	border: none;
}

.tab-element .tab-pane h4 {
	font-size: 18px;
	margin: 25px 0 20px;
}

.tab-element .tab-pane p {
	font-size: 14px;
}

/*===  Loader ===*/
.circle-progress {
	text-align: center;
	padding-top: 30px;
	display: inline-block;
}

.circle-progress .prog-circle {
	position: relative;
	margin-bottom: -155px;
}

.circle-progress .prog-circle:after {
	position: absolute;
	content: "";
	width: 177px;
	height: 177px;
	left: 9px;
	top: 9px;
	border-radius: 50%;
	border: 2px solid #fff;
	z-index: 1;
}

.circle-progress canvas {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.circle-progress .progress-info {
	width: 100%;
	border-radius: 150px;
	margin: 0 auto;
	padding-top: 22px;
}

.circle-progress .progress-info h2 {
	font-size: 48px;
}

.circle-progress .prog-title {
	text-align: center;
	margin-top: 100px;
}

.circle-progress .prog-title h3 {
	font-size: 18px;
	color: #727272;
}

.img-popup-warp .mfp-content {
	opacity: 0;
	-webkit-transform: scale(0.8);
	    -ms-transform: scale(0.8);
	        transform: scale(0.8);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
	opacity: 1;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

/*----------------------------------------*/
/*  Header CSS
/*----------------------------------------*/
.nav-menu .active ul li a  {
  color:rgb(247, 116, 34);
}

.header-area {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 50;
}
.gear {
	margin-left: 5rem;
}

.hmmm {
	background-position: center center !important;
}

.logo-area {
	float: left;
	display: inline-block;
	/* background: #121212; */
	padding: 20px 60px 30px;
}

.phone-number {
	float: right;
	cursor: pointer;
	display: inline-block;
	padding: 5px 10px;
	background: #F79F21;
	font-weight: 700;
	letter-spacing: 1px;
	margin-top: 30px;
	margin-right: 50px;
}

.nav-switch {
	display: none;
}

.nav-menu {
	display: inline-block;
	float: right;
}

.nav-menu ul {
	list-style: none;
}

.nav-menu ul li {
	display: inline;
}

.nav-menu ul li a {
	display: inline-block;
	padding: 40px 10px 5px;
	text-transform: uppercase;
	margin-right: 30px;
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	position: relative;
}

.nav-menu ul li a:after {
	position: absolute;
	content: "";
	width: 5px;
	height: 0;
	left: 50%;
	margin-left: 1px;
	top: 0;
	background: #F79F21;
	color: #F79F21 !important;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.nav-menu ul li a:hover:after {
	height: 25px;
	/* color: green !important; */
	
}
.nav-menu ul li a:hover {
	/* height: 25px; */
	color: lightgreen !important;
	
}
.nav-menu ul li.active>a:after {
	height: 25px;
	/* color: green !important; */
}

/*---------------------------------------*/
/*  Hero Section CSS
/*----------------------------------------*/
.hero-section {
	height: 960px;
	background: #ededed;
	position: relative;
}

.left-bar {
	position: absolute;

	/* width: 100px; */
	margin-left: 2%;
	height: 100%;
	display: inline-block;
	/* background: #121212; */
	z-index: 20;
}

.left-bar .left-bar-content {
	position: absolute;
	width: 100%;
	bottom: 0;
	text-align: center;
	margin-bottom: 330px;
}

.social-links a {
	display: block;
	color: white;
	margin-bottom: 20px;
	font-size: 20px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.social-links a:hover {
	font-size: 30px;
	/* color: #F79F21; */
}

.hero-right-text {
	position: absolute;
	right: 140px;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	-webkit-transform-origin: right center;
	    -ms-transform-origin: right center;
	        transform-origin: right center;
	bottom: 60%;
	z-index: 30;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 20px;
}

.hero-slider .hero-slide-item {
	width: 100%;
	height: 960px;
	display: table;
}

.hero-slider .hero-slide-item .slide-inner {
	display: table-cell;
	vertical-align: middle;
	position: relative;
}
.hero-slider.owl-theme .owl-nav {
	margin-top: 0;
}

.hero-slider.owl-theme .owl-nav div {
	background: transparent;
	color:white;
	border: white 2px solid;
	border-radius: 50px;
	opacity: 1;
	visibility: visible;
	padding: 0;
	-webkit-transition: all .35s;
	-moz-transition: all .35s;
	transition: all .35s;
}

.hero-slider.owl-theme .owl-nav div i {
	font-size: 36px;
	font-weight: 300;
	display: inline-block;
	position: relative;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	margin: auto;
	
	/* margin-left: 5px; */
}
/* .hero-slider.owl-theme .owl-nav div i icon_left{
	margin-left: 50px;

}
.hero-slider.owl-theme .owl-nav div i icon_right{
	margin-right: 50px;
} */

.hero-slider.owl-theme .owl-nav div:hover {
	background: #f7921a;
	/* z-index: 90; */
}

.hero-slider.owl-theme .owl-nav div {
	position: absolute;
	top: 35%;
	margin-top: -20px;
	z-index: 93330;
}

.hero-slider.owl-theme .owl-nav .owl-prev {
	/* left: -80px; */
	/* display: none; */
	visibility: visible;
	left: 20px;
	/* z-index: 90; */
	
}
/* .hero-slider:hover.owl-theme .owl-nav .owl-prev {
	left: 20px;
	visibility: visible;
	transition-timing-function: ease-in-out;
	display: block;
} */
.hero-slider.owl-theme .owl-nav .owl-next {
	/* right: -80px; */
	/* display: none; */
	visibility: visible;
	right: 20px;
}
/* .hero-slider:hover.owl-theme .owl-nav .owl-next {
	right: 20px;
	visibility: visible;
	transition-timing-function: ease-in-out;
	display: block;
} */
.mana {
	cursor: pointer;
}
.hero-slider.owl-theme .owl-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	top: auto;
}
.hero-slider.owl-theme .owl-dots .owl-dot span {
	background: transparent;
	border: 2px dotted #fff;
	height: 20px;
	width: 20px;
	/* border-radius: 50%; */
	position: relative;
}
.hero-slider.owl-theme .owl-dots .owl-dot.active span {
	border-color: #fff;
}
.hero-slider.owl-theme .owl-dots .owl-dot.active span::before {
	position: absolute;
	content: "";
	background: transparent;
	height: 11px;
	width: 11px;
	border-radius: 50%;
	border: 2px solid #fff;
	left: 3px;
	top: 3px;
}



/* .hero-slider .owl-nav {
	position: absolute;
	display: inline-block;
	left: 350px;
	bottom: 70px;
}

.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
	display: inline-block;
	margin-right: 30px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.hero-slider .owl-nav .owl-prev:hover,
.hero-slider .owl-nav .owl-next:hover {
	color: #F79F21;
}

.hero-slider .owl-nav .owl-prev i {
	margin-right: 5px;
}

.hero-slider .owl-nav .owl-next {
	margin-right: 0px;
}

.hero-slider .owl-nav .owl-next i {
	margin-left: 5px;
} */

.slide-num-holder {
	width: 153px;
	height: 250px;
	position: absolute;
	right: 60px;
	background: rgba(18, 18, 18, 0.95);
	bottom: -40px;
	z-index: 111;
	text-align: right;
	padding-right: 20px;
	padding-top: 60px;
	color: #fff;
	font-weight: 700;
}

.slide-num-holder span {
	font-size: 48px;
	color: #F79F21;
	position: relative;
	top: -10px;
	right: -10px;
}

.slide-content {
	margin-left: 410px;
	margin-bottom: 50px;
	/* padding-left: 95px; */
	/* padding-top: 170px; */
	padding-bottom: 200px;
	position: relative;
	opacity: 0;
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}

/* .slide-content:after {
	position: absolute;
	content: "";
	height: calc(100% + 50px);
	width: 330px;
	border-top: 150px solid #F79F21;
	border-left: 150px solid #F79F21;
	border-bottom: 90px solid #F79F21;
	top: 0;
	left: 0;
	opacity: 0.73;
	
} */

.slide-content h2 {
	color: #fff;
	font-size: 80px;
	line-height: 80px;
}

.slide-content p {
	color: #fff !important;
	font-size: 20px;
	width: 70%;
	/* text-transform: uppercase; */
	/* letter-spacing: 1.5px; */
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 400;
	/* color: #58e36b; */
	/* display: inline-block; */
	/* position: relative; */
	letter-spacing: 2px;
	text-shadow: rgb(20, 19, 19); 
}

.owl-item.active .slide-content {
	opacity: 1;
}

/*----------------------------------------*/
/*  Intro Section CSS
/*----------------------------------------*/
.intro-text p {
	margin-bottom: 50px;
}

/*----------------------------------------*/
/*  Service Section CSS
/*----------------------------------------*/
.service-box {
	margin-bottom: 30px;
}

.service-box .sb-icon {
	margin-bottom: 30px;
	width: 100px;
	height: 125px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background-color: #F79F21;

	background-color: transparent;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.service-box .sb-icon .sb-img-icon {
	position: absolute;
	left: 0;
	bottom: 0;
	/* left: 15px; */
	margin-bottom: 1px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.service-box .sb-icon .sb-img-icon img {
	opacity: 0.2;
	max-height: 70px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.service-box .sb-icon::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #fff;
	left: 25px;
	top: -80px;
	-webkit-transform: rotate(-65deg);
	    -ms-transform: rotate(-65deg);
	        transform: rotate(-65deg);
}

.service-box .readmore  {
	font-size: 12px;
	font-weight: 700;
	color:#F79F21;
	/* color: #222222; */
	display: inline-block;
	padding: 2px 0;
	background-color: transparent;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.service-box:hover .sb-icon {
	background-color: #F79F21;
}

.service-box:hover .sb-icon .sb-img-icon {
	left: 15px;
	margin-bottom: 5px;

}

.service-box:hover .sb-icon .sb-img-icon img {
	opacity: 1;
	/* color: #ffffff; */

}

.service-box:hover .readmore {
	background-color: #F79F21;
	padding: 2px 10px;
	color:  #464646;
}

.service-box .readmore1 {
	background-color: #F79F21;
	padding: 4px 10px;
	/* color: #ffffff; */
	font-size: 12px;
	font-weight: 700;
	/* color:#F79F21; */
	color: #464646;
	display: inline-block;
	/* padding: 2px 0; */
}

.service-box .readmore1:hover {

	color: #ffffff;
}

.accr{
	border:1px solid #f79f21;
	padding: 3px;
}
.curt{
	cursor: pointer;
}
.sox {
	margin-top: 2.5rem;
}

.loaders {
	border: 6px solid #f3f3f3;
	border-radius: 50%;
	border-top: 6px solid #f79f21;
	width: 20px;
	height: 20px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
  }


.energihub_consulting_list {
	margin-left: 30px;
	font-size: 15px;
	color:#727272;
	padding: 10px;
}

.sart {
  font-size: 12.65px !important;
}
/*----------------------------------------*/
/*  CTA Section CSS
/*----------------------------------------*/
/* .cta-section {
	position: relative;
	margin-bottom: 100px;
}

.cta-section:after {
	content: "";
	position: absolute;
	width: 67%;
	height: 100%;
	right: 0;
	top: 0;
	background: #222222;
	z-index: 2;
}

.cta-section .cta-image-box {
	position: absolute;
	width: 50%;
	height: 100%;
	left: 0;
	background-image: url("../img/cta-img.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.cta-section .container {
	position: relative;
	z-index: 9;
}

.cta-section .cta-content h2 {
	color: #fff;
}

.cta-section .cta-content p {
	color: #fff;
	margin-bottom: 30px;
}

.cta-section .cta-content .cta-img-icon {
	display: inline-block;
	height: 80px;
	position: relative;
	width: 50px;
	margin-right: 40px;
	margin-bottom: 30px;
}

.cta-section .cta-content .cta-img-icon:last-child {
	margin-right: 0;
}

.cta-section .cta-content .cta-img-icon img {
	position: absolute;
	left: 0;
	bottom: 0;
	max-height: 100%;
} */
.callto-action{
	
}
.yumm {
	font-size: 45px !important;
}
.callto-action .overlay{
	background-color: rgb(3, 3, 3);
	height: 366px;
	width: 100%;
	
}
/* .jug {
	height: 100px !important;
	width: 20rem !important;
} */

.callto-action .call-bg{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url('../img/oil7.jpg') no-repeat;
	background-size: cover;
	background-position:center;
	height: 406px;
	z-index: 4;
}
.callto-action .call-bg h2{
	text-transform: uppercase;
	color: #fff;
}

.callto-action .call-bg h6{
	color: #fff;
}

.callto-action .call-bg a{
	border: 1px solid #000;
	border-radius: 4px;
	color: #000;
	padding: 12px 68px;
	text-transform: uppercase;
	margin-top: 15px;
	margin-bottom: 15px;
	font-weight: bold;
	transition: all .6s ease-out;
	background-color: transparent;
	align-self: center;
}

.cta-form{
	border: 1px solid #fff;
	padding: 5px 15px !important;
	border-radius: 10px;
	transition: all .6s ease-out;
	background-color: rgba(255, 255, 255,90%) !important;
}

.cta-form:hover{
	background-color: rgba(255, 255, 255,100%) !important;
} 

.cta-form:hover a{
	color: #fff;
	background-color: #000;
}

.callto-action .call-bg .form-control{
	background-color: transparent !important;
	color: rgb(10, 15, 22);
}
/*----------------------------------------*/
/*  Milestones Section CSS
/*----------------------------------------*/
.milestone {
	min-height: 110px;
	padding-left: 43px;
	padding-top: 15px;
	position: relative;
}

.milestone h2 {
	margin-bottom: 0;
	font-size: 68px;
	display: inline-block;
	float: left;
	position: relative;
	z-index: 1;
}

.milestone p {
	float: left;
	font-size: 20px;
	margin-top: 10px;
	margin-left: 10px;
	line-height: 1.5;
	position: relative;
	z-index: 1;
	font-weight: 500;
}

.milestone:after {
	position: absolute;
	content: "";
	width: 110px;
	height: 110px;
	left: 0;
	top: 0;
	background: #efefef;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.milestone:hover:after {
	background: #F79F21;
}

/*----------------------------------------*/
/*  Projects Section CSS
/*----------------------------------------*/
.projects-filter-nav {
	list-style: none;
	text-align: right;
	margin-top: 20px;
}

.projects-filter-nav li {
	display: inline-block;
	margin-left: 25px;
	color: #747474;
	font-size: 18px;
	font-weight: 500;
	padding: 0 5px;
	cursor: pointer;
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}

.projects-filter-nav li.btn-active {
	background: #F79F21;
	color: #222222;
}

.projects-slider {
	padding: 0 40px;
	margin-top: 60px;
}

.projects-slider .single-project {
	height: 420px;
	width: 100%;
	background: #333;
	-o-transition: .8s;
	transition: .8s;
	-webkit-transition: .8s;
	-ms-transform: translateX(0);
	    transform: translateX(0);
	-webkit-transform: translateX(0);
	opacity: 1;
}

.projects-slider .single-project .project-content {
	padding: 50px;
	height: 100%;
	background: rgba(13, 13, 13, 0.5);
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	opacity: 0;
}

.projects-slider .single-project .project-content h2 {
	color: #fff;
	font-weight: 500;
	position: relative;
	top: 20px;
	-webkit-transition: all 0.6s ease 0s;
	-o-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}

.projects-slider .single-project .project-content p {
	color: #F79F21;
	font-weight: 500;
	position: relative;
	top: 40px;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.projects-slider .single-project .seemore {
	position: absolute;
	right: 50px;
	bottom: 30px;
	background: #F79F21;
	font-size: 14px;
	font-weight: 700;
	color: #222;
	display: inline-block;
	padding: 2px 8px;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.projects-slider .single-project .project-content {
	opacity: 1;
}

.projects-slider .single-project .project-content h2,
.projects-slider .single-project .project-content p {
	top: 0;
}

.projects-slider .single-project .seemore {
	bottom: 50px;
}

.projects-slider .single-project.__loading {
	opacity: 0;
	-ms-transform: translateX(40px);
	    transform: translateX(40px);
	-webkit-transform: translateX(40px);
}

.projects-slider .owl-nav {
	text-align: center;
	max-width: 1170px;
	margin: 40px auto 0;
	/* position: absolute; */
	
}

.projects-slider .owl-controls{
	width: 93%;
height: 100px;
/* background-color: aqua; */
position: absolute;
margin-top: -200px;
}
.projects-slider .owl-controls .owl-nav .owl-prev{
	margin-right: 490px !important;
}
.projects-slider .owl-controls .owl-nav .owl-next{
	margin-left: 490px !important;
}
@media only screen and (max-width: 800px) {
	.projects-slider .owl-controls .owl-nav .owl-prev{
		margin-right: 290px !important;
	}
	.projects-slider .owl-controls .owl-nav .owl-next{
		margin-left: 290px !important;
	}
}

@media only screen and (max-width: 768px) {
	.projects-slider .owl-controls .owl-nav .owl-prev{
		margin-right: 240px !important;
	}
	.projects-slider .owl-controls .owl-nav .owl-next{
		margin-left: 240px !important;
	}
}
@media only screen and (max-width: 414px) {
	.projects-slider .owl-controls .owl-nav .owl-prev{
		margin-right: 120px !important;
	}
	.projects-slider .owl-controls .owl-nav .owl-next{
		margin-left: 120px !important;
	}
}
@media only screen and (max-width: 375px) {
	.projects-slider .owl-controls .owl-nav .owl-prev{
		margin-right: 82px !important;
	}
	.projects-slider .owl-controls .owl-nav .owl-next{
		margin-left: 82px !important;
	}
}

.projects-slider .owl-nav .owl-prev,
.projects-slider .owl-nav .owl-next {
	display: inline-block;
	margin-right: 20px;
	font-size: 14px;
	font-weight: 700;
	color: #222222;
	letter-spacing: 1px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	padding: 0 5px;
	background: transparent;
	color:white;
	border: white 2px solid;
	border-radius: 50px;
}

.projects-slider .owl-nav .owl-prev:hover,
.projects-slider .owl-nav .owl-next:hover {
	background: #F79F21;
}

.projects-slider .owl-nav .owl-prev i {
	margin-right: 5px;
}

.projects-slider .owl-nav .owl-next {
	margin-right: 0px;
}

.projects-slider .owl-nav .owl-next i {
	margin-left: 5px;
}

.projects-slider .owl-nav .owl-next {
	margin-right: 0px;
}

/*----------------------------------------*/
/*  Client Section CSS
/*----------------------------------------*/
.client-slider .single-brand {
	display: table;
	height: 80px;
	width: 100%;
}

.client-slider .single-brand a {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.client-slider .single-brand a img {
	width: auto;
	margin: 0 auto;
	opacity: 1;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

/* .client-slider .single-brand a:hover img {
	opacity: 1;
} */
.fud {
	/* background-color: rgba(239, 234, 234, 0.45); */
	padding: 0 !important;
}


/*----------------------------------------*/
/*  Footer Section CSS
/*----------------------------------------*/
.footer-section {
	padding-top: 110px;
	padding-bottom: 110px;
	border-top: 1px solid #F79F21;
	position: relative;
}

.footer-section .copyright {
	position: absolute;
	top: 50%;
	margin-top: -80px;
	left: 60px;
	color: #737373;
}

.footer-section .footer-social {
	width: 60px;
	text-align: center;
	position: absolute;
	right: 60px;
	top: 110px;
	padding-top: 20px;
	background: #F79F21;
}

.footer-item ul {
	list-style: none;
}

.footer-item ul li {
	display: block;
	margin-bottom: 10px;
}

.footer-item ul li a {
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	color: #737373;
	padding: 0 5px;
}

.con{
	color: #737373;
	font-size: 15px;
	font-weight: 700;
	padding: 0 5px;
}
.footer-item ul li a:hover {
	background: lightgreen;
}

.energihub_small_size {
	font-size: 10px;
}

/*----------------------------------------*/
/*  Other pages CSS
/*----------------------------------------*/
.page-header-section {
	/* height: 445px; */
	/* padding-top: 100px; */
}

.page-header-section .header-title {
	font-size: 82px;
	color: #fff;
}

.page-header-section .header-title span {
	background: none;
	color:#F79F21;
}

/*----------------------------------------*/
/*  About page CSS
/*----------------------------------------*/
.testimonials-section {
	position: relative;
	margin: 60px 0;
}

.testimonials-section h1 {
	color: #fff;
}

.testimonials-section:after {
	content: "";
	position: absolute;
	width: 67%;
	height: 100%;
	right: 0;
	top: 0;
	background: #222222;
	z-index: 2;
}

.testimonials-section .testimonials-image-box {
	position: absolute;
	width: 50%;
	height: calc(100% + 120px);
	left: 0;
	top: -60px;
	background-image: url("../img/feature.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.testimonials-section .container {
	position: relative;
	z-index: 9;
}
.cont {
	padding: 5rem;
	padding-bottom: 7rem;
	/* background-position: center center; */
}

.testimonials-section .qut {
	color: #F79F21;
	font-size: 36px;
	margin-bottom: 20px;
}

.ts-item p {
	color: #fff;
	font-style: italic;
	margin-bottom: 50px;
}

.ts-item h4 {
	font-size: 15px;
	font-weight: 400;
	color:#F79F21;
	margin-bottom: 0;
}

.ts-item span {
	font-size: 12px;
	color: #fff;
}

.team-member {
	padding-right: 67px;
	position: relative;
}

.team-member img {
	min-width: 100%;
}

.team-member .member-info {
	position: absolute;
	padding-left: 35px;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 230px;
	background: #fff;
	bottom: 37px;
	right: 0;
	-webkit-box-shadow: 6px 7px 20px rgba(114, 114, 114, 0.21);
	        box-shadow: 6px 7px 20px rgba(114, 114, 114, 0.21);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.team-member .member-info h2 {
	font-size: 30px;
	margin-bottom: 0;
}
.team-member .member-info h3 {
	font-size: 21px !important;
	margin-bottom: 0;
}

.xas {
	font-size: 14px !important;
}

.team-member .member-info p {
	color: #222222;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 0;
}
.xaz {
	position: relative;
}

.team-member:hover .member-info {
	background: #F79F21;
	-webkit-box-shadow: 0px 0px 0px rgba(114, 114, 114, 0.21);
	        box-shadow: 0px 0px 0px rgba(114, 114, 114, 0.21);
}

.promo-section {
	padding-top: 30px;
	/* padding-bottom: 150px; */
}

.promo-text h1 {
	margin-bottom: 20px;
}

.promo-text p {
	font-size: 16px;
	font-weight: 500;
	color: #222;
	margin-bottom: 0;
}

.slide-num-holder.test-slider {
	right: auto;
	left: 100%;
	bottom: -160px;
	width: 160px;
	height: 230px;
	padding-right: 30px;
	padding-top: 80px;
}

/*----------------------------------------*/
/*  Service page CSS
/*----------------------------------------*/
.service-slider {
	position: relative;
}

.service-slider .owl-controls {
	position: absolute;
	height: 100%;
	width: 14px;
	left: 0;
	top: 0;
	display: -ms-grid;
	display: grid;
}

.service-slider .owl-dots {
	display: table-cell;
	vertical-align: middle;
}

.service-slider .owl-dots .owl-dot {
	width: 14px;
	height: 13px;
	margin-bottom: 10px;
	background: #e8e8e8;
}

.service-slider .owl-dots .owl-dot.active {
	background: #F79F21;
}

.service-text h2 {
	font-size: 30px;
	margin-bottom: 30px;
}

.service-text p {
	margin-bottom: 50px;
}

.service-text ol {
	list-style: none;
}

.service-text ol li {
	font-size: 20px;
	font-weight: 700;
	color: #727272;
	margin-bottom: 20px;
}

.solid-service-box {
	text-align: center;
	background: #fff;
	padding: 50px 30px;
	-webkit-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.solid-service-box h2 {
	font-size: 48px;
	color: #727272;
	margin-bottom: 20px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.solid-service-box h3 {
	margin-bottom: 20px;
}

.solid-service-box p {
	font-size: 14px;
	/* margin-bottom: 20px; */
}

.solid-service-box .readmore {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #222;
	opacity: 0;
	visibility: hidden;
	position: relative;
	/* bottom: -20px; */
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.solid-service-box:hover {
	background: #F79F21;
}



.solid-service-box:hover h2 {
	color: #222;
}

.solid-service-box:hover .readmore {
	visibility: visible;
	opacity: 1;
	bottom: 0;
}

.promo-box {
	width: 1383px;
	margin: 0 auto;
	padding: 40px 0;
}

.promo-box .promo-text h1,
.promo-box .promo-text p {
	color: #fff;
}

/*----------------------------------------*/
/*  Blog page CSS
/*----------------------------------------*/
.blog-post {
	margin-bottom: 120px;
}

.blog-post .thumb {
	padding: 25px;
	position: relative;
}

.blog-post .thumb:after {
	position: absolute;
	content: "";
	width: 100%;
	height: calc(100% - 100px);
	top: 0;
	left: 0;
	background: #f0f0f0;
	z-index: -1;
	-webkit-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.blog-post .post-date {
	font-size: 14px;
	font-weight: 700;
	color: #222;
	display: inline-block;
	background: #F79F21;
	padding: 4px 15px;
	margin-bottom: 20px;
}

.blog-post h2 {
	font-size: 30px;
}

.blog-post h2 a {
	color: #222;
}

.blog-post p {
	margin-bottom: 0;
}

.blog-post .post-meta {
	margin-bottom: 40px;
}

.blog-post .post-meta a {
	color: #727272;
	font-size: 12px;
	margin-right: 10px;
}

.blog-post .post-meta a i {
	font-size: 16px;
	margin-left: 5px;
}

.blog-post:hover .thumb:after {
	background: #F79F21;
}

.pagination {
	display: inline-block;
	padding: 20px 30px;
	background: #222;
	border-radius: 0;
}

.pagination a {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.pagination a.active {
	font-size: 48px;
	color: #F79F21;
}

.search {
	position: relative;
}

.widget-area {
	margin-bottom: 80px;
}

.widget-area .widget-title {
	font-size: 22px;
	margin-bottom: 40px;
}

.widget-area .search input {
	width: 100%;
	background: #f0f0f0;
	border: none;
	font-size: 12px;
	padding: 10px;
	padding-right: 35px;
	font-style: italic;
}

.widget-area .search button {
	position: absolute;
	right: 0;
	top: 0;
	background: none;
	border: none;
	color: #838383;
	height: 100%;
	width: 40px;
}

.widget-area ul {
	list-style: none;
}

.widget-area ul li a {
	font-size: 15px;
	display: inline-block;
	margin-bottom: 15px;
	font-weight: 500;
	color: #727272;
	padding: 3px 10px;
	padding-left: 25px;
	position: relative;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.widget-area ul li a:after {
	position: absolute;
	content: "+";
	color: #838383;
	left: 5px;
	top: 3px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.widget-area ul li a:hover {
	background: #F79F21;
	color: #222;
}

.widget-area ul li a:hover:after {
	color: #222;
}

.widget-area ul li:last-child a {
	margin-bottom: 0;
}

.widget-area .rp-widget .rp-widget-item {
	margin-bottom: 30px;
	overflow: hidden;
}

.widget-area .rp-widget .rp-widget-item:last-child {
	margin-bottom: 0;
}

.widget-area .rp-widget .thumb {
	width: 68px;
	height: 68px;
	float: left;
	margin-right: 30px;
	background: #ddd;
	display: block;
}

.widget-area .rp-widget .rp-content {
	padding-left: 98px;
}

.widget-area .rp-widget h4 {
	line-height: 1.5;
	margin-bottom: 0;
}

.widget-area .rp-widget p {
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 0;
}

.widget-area .quote-widget span {
	font-size: 47px;
	font-style: italic;
	color: #727272;
}

.widget-area .quote-widget p {
	font-style: italic;
	margin-bottom: 0;
	font-size: 13px;
}

.widget-area .instagram-widget {
	padding-top: 30px;
}

.widget-area .instagram-widget a {
	display: block;
	overflow: hidden;
	width: 33.33333%;
	float: left;
	position: relative;
}

.widget-area .instagram-widget a:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #F79F21;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.widget-area .instagram-widget a:before {
	position: absolute;
	content: "+";
	color: #fff;
	font-weight: 500;
	text-align: center;
	font-size: 36px;
	line-height: 36px;
	width: 20px;
	top: 50%;
	margin-top: -13px;
	left: 50%;
	margin-left: -10px;
	text-shadow: 0 0 20px #999;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 2;
}

.widget-area .instagram-widget a:hover:after,
.widget-area .instagram-widget a:hover:before {
	opacity: 1;
}

.widget-area .instagram-widget a img {
	min-width: 100%;
}

/*----------------------------------------*/
/*  Contact page CSS
/*----------------------------------------*/
.cf-social {
	margin-top: 15px;
}

.cf-social a {
	color: #222;
	margin-right: 25px;
}

.contact-form {
	padding-top: 10px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	font-size: 13px;
	border: none;
	background: #f0f0f0;
	padding: 15px 20px;
	margin-bottom: 20px;
}

.contact-form textarea {
	height: 200px;
	margin-bottom: 30px;
}

.contact-form ::-webkit-input-placeholder {
	font-style: italic;
}

.contact-form :-ms-input-placeholder {
	font-style: italic;
}

.contact-form ::-ms-input-placeholder {
	font-style: italic;
}

.contact-form ::placeholder {
	font-style: italic;
}

.map-area {
	height: 685px;
	width: 100%;
	display: block;
	background: #f0f0f0;
	margin-bottom: 2px;
}

/*----------------------------------------*/
/*  Portfolio page CSS
/*----------------------------------------*/
.portfolio-filter {
	list-style: none;
}

.portfolio-filter li {
	display: inline-block;
	margin-right: 40px;
	font-size: 14px;
	color: #222;
	cursor: pointer;
	font-weight: 500;
}

.portfolio-filter li.active {
	text-decoration: underline;
	-webkit-text-decoration-color: #2046f2;
	        text-decoration-color: #2046f2;
}

.portfolio-warp {
	display: block;
	overflow: hidden;
}

.portfolio-warp .grid-item {
	width: 20%;
	background-position: center;
}

.portfolio-warp .grid-item:after {
	content: '';
	display: block;
	clear: both;
}

.portfolio-warp .grid-item.grid-wide,
.portfolio-warp .grid-item.grid-long {
	width: 40%;
}

.portfolio-warp .grid-item a {
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(186, 255, 0, 0.45);
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.portfolio-warp .grid-item a:after {
	position: absolute;
	content: "+";
	left: 50%;
	top: 60%;
	width: 48px;
	margin-left: -24px;
	margin-top: -24px;
	color: #fff;
	font-size: 48px;
	line-height: 48px;
	text-align: center;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.portfolio-warp .grid-item:hover a {
	opacity: 1;
}

.portfolio-warp .grid-item:hover a:after {
	top: 50%;
}

.portfolio-warp .grid-sizer {
	width: 20%;
}

/* ===========================
  Responsive
==============================*/
@media only screen and (max-width: 1477px) {
	.slide-num-holder.test-slider {
		left: auto;
		right: 0;
	}
}

@media only screen and (max-width: 1400px) {
	.promo-box {
		width: 100%;
	}
}

/* Medium screen : 992px. */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.phone-number {
		margin-right: 30px;
	}
	.nav-menu ul li a {
		margin-right: 20px;
	}
	.slide-content {
		margin-left: 220px;
	}
	.milestone p {
		margin-left: 10px;
		font-size: 17px;
	}
	.milestone h2 {
		font-size: 55px;
	}
	.milestone:after {
		width: 90px;
		height: 90px;
	}
	.slide-num-holder {
		right: 20px;
	}
	.hero-right-text {
		right: 100px;
	}
}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.logo-area {
		padding: 20px 40px 30px;
	}
	.slide-content {
		margin-left: 120px;
		/* text-align: right; */
		/* margin-bottom: -35px; */
		padding-left: 120px;
		padding-top: 120px;
		/* padding-bottom: 30px; */
	}
	.slide-content h2 {
		font-size: 60px;
		line-height: 60px;
	}

	.slide-content p {
		font-size: 16px;
		/* line-height: 60px; */
	}
	.slide-content:after {
		border-top: 100px solid #F79F21;
		border-left: 100px solid #F79F21;
		border-bottom: 60px solid #F79F21;
	}
	.hero-slider .owl-nav {
		left: 170px;
	}
	.slide-num-holder {
		right: 20px;
	}
	.hero-right-text {
		bottom: 70%;
		right: 100px;
	}
	.nav-menu ul li a {
		margin-right: 5px;
		font-size: 13px;
		padding: 37px 7px 5px;
	}
	.phone-number {
		font-size: 12px;
		margin-right: 10px;
	}
	.team-member {
		margin-bottom: 30px;
	}
	.portfolio-warp .grid-item {
		width: 50%;
	}
	.portfolio-warp .grid-item.grid-wide,
	.portfolio-warp .grid-item.grid-long {
		width: 50%;
	}
	.portfolio-warp .grid-sizer {
		width: 50%;
	}
	.solid-service-box {
		margin-bottom: 30px;
	}
	.cta-section {
		/* background: #222; */
		margin-bottom: 0;
	}
	.cta-sectio {
		/* background: #222; */
		/* margin-bottom: 0; */
	}
	.testimonials-section {
		background: #222;
		margin: 0;
	}
	.testimonials-image-box,
	.testimonials-section:after,
	.cta-image-box,
	.cta-section:after {
		display: none;
	}
	.hero-section,
	.hero-slider .hero-slide-item {
		height: 850px;
	}
	.milestone,
	.solid-service-box {
		margin-bottom: 30px;
	}
	.footer-section .footer-social {
		width: auto;
		top: -25px;
		right: 50%;
		padding: 10px;
		margin-right: -133px;
	}
	.footer-section .social-links a {
		display: inline-block;
		padding: 0 15px;
		margin-bottom: 0;
	}
	.projects-filter-nav {
		text-align: left;
	}
	.projects-filter-nav li {
		margin-left: 0;
		margin-right: 15px;
	}
	.footer-section .copyright {
		position: relative;
		width: 100%;
		max-width: 720px;
		margin: 40px auto 0;
		left: 0;
		top: 0;
		margin-bottom: -50px;
		padding-left: 15px;
	}
}

/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {
	h1,
	.sp-title {
		font-size: 45px;
	}
	.ggg {
		font-size: 45px !important;

	}

	.slide-content {
		margin-left: 120px;
		/* margin-bottom: -35px; */
		padding-left: 120px;
		padding-top: 120px;
		/* padding-bottom: 30px; */
	}
	.slide-content h2 {
		font-size: 60px;
		line-height: 60px;
	}

	.slide-content p {
		font-size: 16px;
		/* line-height: 60px; */
	}
	.slide-content:after {
		border-top: 100px solid #F79F21;
		border-left: 100px solid #F79F21;
		border-bottom: 60px solid #F79F21;
	}

	.page-header-section .container .header-title {
		font-size: 55px;
	}
	.left-bar {
		width: 70px;
	}
	.slide-content:after,
	.hero-right-text,
	.phone-number {
		display: none;
	}
	.phone-number{
		display: none !important;
	}
	.nav-switch {
		position: absolute;
		right: 20px;
		font-size: 30px;
		color: #fff;
		top: 20px;
		display: block;
	}
	.nav-menu {
		position: absolute;
		width: calc(100% - 90px);
		left: 80px;
		background: #121212;
		top: 100%;
		margin-top: 11px;
		display: none;
	}
	.nav-menu ul li a {
		display: block;
		padding: 16px 21px;
		border-bottom: 1px solid #202020;
		margin-right: 0;
	}
	.nav-menu ul li a:after {
		left: 20px;
	}
	.nav-menu ul li.active>a:after,
	.nav-menu ul li a:hover:after {
		height: 10px;
	}
	.hero-section {
		height: auto;
	}
	.hero-slider .hero-slide-item {
		padding: 150px 0;
		height: 100vh;
	}
	.slide-content h2 {
		font-size: 60px;
		line-height: 60px;
	}


	.hero-slider .owl-nav {
		padding-left: 70px;
		width: 100%;
		text-align: center;
		left: 0;
	}
	.slide-content {
		margin-left: 70px;
		/* padding: 0; */
		/* text-align: center; */
	}
	.slide-num-holder,
	.slide-num-holder.test-slider {
		right: 0;
		height: 75px;
		width: 136px;
		padding-top: 18px;
	}
	.slide-num-holder span,
	.slide-num-holder.test-slider span {
		font-size: 40px;
	}
	.slide-num-holder.test-slider {
		bottom: -135px;
	}
	.team-member {
		margin-bottom: 30px;
	}
	.portfolio-warp .grid-item {
		width: 50%;
	}
	.portfolio-warp .grid-item.grid-wide,
	.portfolio-warp .grid-item.grid-long {
		width: 50%;
	}
	.portfolio-warp .grid-sizer {
		width: 50%;
	}
	.cta-section {
		/* background: #222; */
		margin-bottom: 0;
	}
	.testimonials-section {
		background: #222;
		margin: 0;
	}
	.testimonials-image-box,
	.testimonials-section:after,
	.cta-image-box,
	.cta-section:after {
		display: none;
	}
	.milestone,
	.solid-service-box {
		margin-bottom: 30px;
	}
	.projects-filter-nav {
		text-align: left;
	}
	.footer-section .footer-social {
		width: auto;
		top: -25px;
		right: 50%;
		padding: 10px;
		margin-right: -133px;
	}
	.footer-section .social-links a {
		display: inline-block;
		padding: 0 15px;
		margin-bottom: 0;
	}
	.footer-section .copyright {
		position: relative;
		width: 100%;
		max-width: 720px;
		margin: 40px auto 0;
		left: 0;
		top: 0;
		margin-bottom: -50px;
		padding-left: 15px;
		text-align: center;
	}
	.footer-item {
		margin-bottom: 40px;
	}
}

/* small mobile :320px. */
@media only screen and (max-width: 479px) {
	.logo-area {
		padding: 20px 30px 30px;
	}
	.header-area {
		/* background: #121212; */
		padding-right: 66px;
	}
	.nav-menu {
		width: 100%;
		left: 0;
		margin-top: 0;
		border-top: 2px solid;
	}
	.left-bar {
		display: none;
	}
	.hero-slider .owl-nav {
		padding-left: 0;
	}
	.slide-content {
		/* margin-left: 0; */
		padding: 0 15px;
	}
	.slide-content h2 {
		font-size: 35px;
		line-height: 1.5;
	}
	.portfolio-warp .grid-item {
		width: 100%;
	}
	.portfolio-warp .grid-item.grid-wide,
	.portfolio-warp .grid-item.grid-long {
		width: 100%;
	}
	.portfolio-warp .grid-sizer {
		width: 100%;
	}
	.projects-slider {
		padding: 0 15px;
	}
}



.malik {
    background: #f79f21;
    color: white;
}
.phone-number {
	float: right;
	display: inline-block;
	padding: 5px 10px;
	background: #f79f21;
	font-weight: 700;
	letter-spacing: 1px;
	margin-top: 30px;
	margin-right: 50px;
}


.page-header-section {
	/* height: 445px; */
	/* padding-top: 200px; */
}

.page-header-section .header-title {
	font-size: 82px;
	color: #fff;
}

.page-header-section .header-title span {
	background: none;
	color: #f79f21;
}
.rew {
	margin-bottom: 35px !important;
}

.spad {
	padding: 100px 0;
}
.set-bg {
	background-size: cover;
	background-repeat: no-repeat;
}


.section-title {
	margin-bottom: 75px;
}

.section-title h1,
.section-title h2 {
	display: inline-block;
	/* background: #f79f21; */
	/* padding: 0 20px; */
	margin-bottom: 0;
	font-size: 60px;
}
.far {
	background: #f79f21;
}
.yam {
	/* padding: 0 20px; */
	margin-bottom: 30px;
	font-size: 60px;
}

.mb100 {
   margin-bottom: 100px;
}

.team-member {
	padding-right: 67px;
	position: relative;
}

.team-member img {
	min-width: 100%;
}

.team-member .member-info {
	position: absolute;
	padding-left: 35px;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 230px;
	background: #fff;
	bottom: 37px;
	right: 0;
	-webkit-box-shadow: 6px 7px 20px rgba(114, 114, 114, 0.21);
	        box-shadow: 6px 7px 20px rgba(114, 114, 114, 0.21);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.team-member .member-info h2 {
	font-size: 30px;
	margin-bottom: 0;
}

.team-member .member-info p {
	color: #222222;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 0;
}

.team-member:hover .member-info {
	background: #f79f21;
    color: white;
	-webkit-box-shadow: 0px 0px 0px rgba(114, 114, 114, 0.21);
	        box-shadow: 0px 0px 0px rgba(114, 114, 114, 0.21);
}

.ger {
	padding-left: 9rem;
}
.card-header {
	padding: .3rem 1.2rem !important;
}
.carousel-inner .active.col-lg-3.carousel-item + .carousel-item + .carousel-item {
	position: absolute;
	top: 0;
	right: -50%;  /*change this with javascript in the future*/
	z-index: -1;
	display: block;
	visibility: visible;
}



@media (min-width: 768px) and (max-width: 991px) {
    /* Show 4th slide on md if col-md-4*/
    .carousel-inner .active.col-md-4.carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -33.3333%;  /*change this with javascript in the future*/
        z-index: -1;
        display: block;
        visibility: visible;
    }
}
@media (min-width: 576px) and (max-width: 768px) {
    /* Show 3rd slide on sm if col-sm-6*/
    .carousel-inner .active.col-lg-3.carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -50%;  /*change this with javascript in the future*/
        z-index: -1;
        display: block;
        visibility: visible;
    }
}

@media (min-width: 576px) {
    .carousel-item {
        margin-right: 0;
    }
    /* show 2 items */
    .carousel-inner .active + .carousel-item {
        display: block;
    }
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item {
        transition: none;
    }
    .carousel-inner .carousel-item-next {
        position: relative;
        transform: translate3d(0, 0, 0);
    }
    /* left or forward direction */
    .active.carousel-item-left + .carousel-item-next.carousel-item-left,
    .carousel-item-next.carousel-item-left + .carousel-item,
    .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    /* farthest right hidden item must be also positioned for animations */
    .carousel-inner .carousel-item-prev.carousel-item-right {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: block;
        visibility: visible;
    }
    /* right or prev direction */
    .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
    .carousel-item-prev.carousel-item-right + .carousel-item,
    .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }
}
/* MD */
@media (min-width: 768px) {
    /* show 3rd of 3 item slide */
    .carousel-inner .active + .carousel-item + .carousel-item {
        display: block;
    }
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item {
        transition: none;
    }
    .carousel-inner .carousel-item-next {
        position: relative;
        transform: translate3d(0, 0, 0);
    }
    /* left or forward direction */
    .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    /* right or prev direction */
    .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }
}

/* LG */
@media (min-width: 991px) {
    /* show 4th item */
    .carousel-inner .active + .carousel-item + .carousel-item + .carousel-item {
        display: block;
    }
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item + .carousel-item {
        transition: none;
    }
    /* Show 5th slide on lg if col-lg-3 */
    .carousel-inner .active.col-lg-3.carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -25%;  /*change this with javascript in the future*/
        z-index: -1;
        display: block;
        visibility: visible;
    }
    /* left or forward direction */
    .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    /* right or prev direction //t - previous slide direction last item animation fix */
    .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }
}


.gun {
	/* border: 1px solid #f79f21; */
	padding: 40px;
	cursor: pointer;
}

.yum {
	padding-right: 7rem;
}
.turn {
  padding-right: 7rem;
  background: #f79f21;
}


.freek {
  /* background: #e8ab2a; */
  color: green;
  position: relative;
  margin-top: 20px;
  /* margin-left: 58px; */
  background: white;
  padding: 15px;
  /* border: 1px solid #e8ab2a; */
  border-radius: 20px;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.freek:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* color: #000; */
  background: red;
  border-radius: 20px;
  border: 1px solid red;
  padding: 15px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.freek:hover:before,
.freek:focus:before,
.freek:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
	border: 1px solid white;
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.freek:hover,
.freek:focus,
.freek:active {
    color: white;
	border: 1px solid white;
  /* border-color: #fff; */
}

.freek:hover {
    color: white;
	border: 1px solid white;
}
.hup {
	display: flex;
}

.content:not(:first-child) {
	display: none;
  }
  .badmus:not(:first-child) {
	display: none;
  }

  





.phone-number {
	float: right;
	display: inline-block;
	padding: 5px 10px;
	background: #f79f21;
	font-weight: 700;
	letter-spacing: 1px;
	margin-top: 30px;
	margin-right: 50px;
}



.page-header-section {
	/* height: 445px; */
	padding-top: 100px;
    background-position: center center;
}

.page-header-section .header-title {
	font-size: 82px;
	color: #fff;
}

.page-header-section .header-title span {
	background: none;
	color: #f79f21;
}

.spad {
	padding: 50px 0;
}
.set-bg {
	background-size: cover;
	background-repeat: no-repeat;
}






.pt100 {
	padding-top: 100px;
}

.section-title {
	margin-bottom: 75px;
}

.section-title h1,
.section-title h2 {
	display: inline-block;
	/* background: #f79f21; */
	/* padding: 0 20px; */
	margin-bottom: 0;
	font-size: 60px;
}

.buv h1 {
	display: inline-block;
	background: #f79f21;
	 padding: 0 20px;
	margin-bottom: 0;
	font-size: 60px;
}

.cf-social {
	margin-top: 15px;
}

.cf-social a {
	color: #222;
	margin-right: 25px;
}

.contact-form {
	padding-top: 10px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	font-size: 13px;
	border: none;
	background: #f0f0f0;
	padding: 15px 20px;
	margin-bottom: 20px;
}

.contact-form textarea {
	height: 200px;
	margin-bottom: 30px;
}

.contact-form ::-webkit-input-placeholder {
	font-style: italic;
}

.contact-form :-ms-input-placeholder {
	font-style: italic;
}

.contact-form ::-ms-input-placeholder {
	font-style: italic;
}

.contact-form ::placeholder {
	font-style: italic;
}

.map-area {
	height: 685px;
	width: 100%;
	display: block;
	background: #f0f0f0;
	margin-bottom: 2px;
}

.site-btn {
	display: inline-block;
	font-weight: 700;
	border: 4px solid;
	min-width: 200px;
	text-align: center;
	padding: 19px 0;
	position: relative;
	background-color: transparent;
	margin-right: 15px;
	z-index: 1;
}

.site-btn:after,
.site-btn:before {
	position: absolute;
	content: "";
	width: 26px;
	height: 4px;
	right: -15px;
}

.site-btn:after {
	bottom: 8px;
}

.site-btn:before {
	bottom: 18px;
}

.site-btn.sb-light {
	color: #fff;
}

.site-btn.sb-light:after,
.site-btn.sb-light:before {
	background: #fff;
}

.site-btn.sb-dark {
	color:lightgreen ;
}

.site-btn.sb-dark:after,
.site-btn.sb-dark:before {
	background:lightgreen ;
}

.site-btn.sb-solid-color {
	background: #baff00;
	border-color: #baff00;
}

.site-btn.sb-solid-color:after,
.site-btn.sb-solid-color:before {
	background: #222222;
}

.site-btn.sb-solid-dark {
	background: #222;
	border-color: #222;
	color: #baff00;
}

.site-btn.sb-solid-dark:after,
.site-btn.sb-solid-dark:before {
	background: #baff00;
}




.classes-section {
	padding-top: 90px;
	padding-bottom: 95px;
}
.classes-section.classes-page {
	padding-bottom: 60px;
}
.classes-slider {
	margin: 0;
}
.classes-slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 12px;
}
.classes-slider.owl-carousel .owl-dots button {
	width: 9px;
	height: 9px;
	display: inline-block;
	background: #ebebeb;
	border-radius: 50%;
	margin-right: 10px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.classes-slider.owl-carousel .owl-dots button.owl-dot.active {
	width: 42px;
	border-radius: 50px;
	background: #f67831;
}
.classes-slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}
.classes-slider .col-lg-4 {
	max-width: 100%;
}
.single-class-item {
	height: 255px;
	position: relative;
	margin-bottom: 30px;
}
.single-class-item .si-text {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	padding-left: 30px;
	padding-top: 10px;
	padding-bottom: 15px;
}
.single-class-item .si-text h4 {
	font-size: 22px;
	font-weight: 600;
	color: rgb(194, 193, 193);
}
.single-class-item .si-text span {
	font-size: 14px;
	color: #ffffff;
}
.single-class-item .si-text span i {
	color: #e85d39;
	margin-right: 4px;
}



@media only screen and (max-width: 765px) {
/* .happy {
	display: block !important;
} */
.gear {
	margin-left: 0;
}
.saad {
	display: block !important;
}

}
.saad {
	display: flex;
}


.sun {
	background: #f79f21;
	color: white;
}
.snn {
	font-size: 40px;
}

.snnn {
	font-size: 45px;
}

.mom {
	margin-top: 8%;

}
.snnp {
	font-size: 60px;
}

/* .gyi {
	font-size: 17px;
} */

.mnb {
	margin-top: 5rem;
	margin-bottom: 11rem;
}





.kon {
	width: 500px;
	/* padding: 20px; */
}





@media only screen and (max-width: 375px) {
 .move{
	 margin-top: 3em !important;
	 margin-bottom: 3em !important;
 }

 .phone-number{
	 display: none;
 }
}
@media only screen and (max-width: 414px) {
	.move{
		margin-top: 3em !important;
		margin-bottom: 3em !important;
	}
   
	.phone-number{
		display: none;
	}
}

/* .bg-gray {
	background-color: #f5f5f5
} */

.section-back-image {
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

.overlay {
	position: relative;
	z-index: 1;
}

.overlay:before {
	background: rgba(0, 0, 0, 0.5);
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
  }
  .hud {
	  background-position: center center;
  }
  .tent{
	  /* color: black; */
	  /* font-size: 17px; */
  }
.felt {
	background-color: #f79f21;
	width: 300px;
	color: white;
	padding: 10px;
}
  .guy {
	border: 1px solid rgba(0, 0, 0, 0.2) !important;
	/* height: 400px !important; */
} 
/* .xab {
	border: 1px solid #f79f21;
    width: 200px;
} */

.vab{
	border: 1px solid #f79f21;
	/* box-shadow: 5px 10px !important; */
}
.vax {
	border-top: 1px solid #f79f21;
}
.bann {
	color: #f79f21;
	font-size: 25px;
}
.jinv {
	border: 1px solid red;
	padding: 10px;
}
.hurt {
	padding: 0 !important;
	margin-bottom: 9px !important;
}
.cav {
	/* font-size: 13px; */
	width: 350px;
}

.fasd {
	color: rgba(0, 0, 0,  0.4);
}

@media only screen and (max-width: 767px){
	.awe{
		margin-top: 2rem;
	}
}
.guly {
	border: 1px solid #f79f21 !important;
	height: 400px !important;
	width: 300px;
	font-size: 19px;
	color: rgba(0, 0, 0,  0.6);
}
.fodl{
	font-size: 30px;
	color: #f79f21;
}
  
  @media only screen and (max-width: 767px) {
	  .suck {
		  margin-bottom: 1rem;
	  }
	  .nuh {
		  /* width: 483px !important; */
		  margin-right: 1.5rem;
	  }
  }













  
.ftco-section {
	padding-bottom: 3em;
	position: relative; }
	@media (max-width: 767.98px) {
	  .ftco-section {
		/* padding: 6em 0;  */
	} }

		
.heading-section .subheading {
	font-size: 12px;
	display: block;
	font-weight: 700;
	color: #f79f21;
	text-transform: uppercase;
	letter-spacing: 2px; }
  
  .heading-section h2 {
	font-size: 50px;
	font-weight: 500; }
	@media (max-width: 767.98px) {
	  .heading-section h2 {
		font-size: 28px; } }
  
  .heading-section.heading-section-white .subheading {
	color: #000000; }
  
  .heading-section.heading-section-white h2 {
	color: #000000; }
  
  .heading-section.heading-section-white p {
	color: rgba(255, 255, 255, 0.9); }


.tabulation-2 .nav-pills .nav-item .nav-link {
	background: #fff;
	border-radius: 4px;
	color: rgba(0, 0, 0, 0.2);
	font-weight: 500;
	-webkit-box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15); }
	.tabulation-2 .nav-pills .nav-item .nav-link span {
	color: #f79f21; }
	.tabulation-2 .nav-pills .nav-item .nav-link.active {
	color: #fff;
	background: #f79f21; }
	.tabulation-2 .nav-pills .nav-item .nav-link.active span {
		color: #fff; }

.tabulation-2 .tab-content {
	background: #fff;
	padding: 20px;
	-webkit-box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15); }

.tabulation .nav-pills .nav-item .nav-link {
	background: #fff;
	border-radius: 0;

	color: grey;
	font-weight: 500;
	font-size: 16px;
	line-height: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff; }
	@media (max-width: 1199.98px) {
	.tabulation .nav-pills .nav-item .nav-link {
		font-size: 13px; } }
	.tabulation .nav-pills .nav-item .nav-link span {
	color: #000000;
	font-size: 28px; }
	.tabulation .nav-pills .nav-item .nav-link.active {
	color: lightgreen;
	background: #fff;
	border: 1px solid #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.1); }
	.tabulation .nav-pills .nav-item .nav-link.active span {
		color: #f79f21; }
.fnm {
	width: 50px;
	height: 50px;
}
.tabulation .tab-content {
	background: #fff;
	padding: 0; }
	.tabulation .tab-content .img {
	width: 100%;
	height: 300px;
	margin-bottom: 20px; }
	.tabulation .tab-content h3 {
	font-weight: 600;
    font-size: 30px; }
	.tabulation .tab-content h3 a {
	color: #f79f21; }
.tabulation .tab-content ul {
margin: 0;
padding: 0; }
.tabulation .tab-content ul li {
	list-style: none;
	margin: 0 0 7px 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 7px 10px; }
	.tabulation .tab-content ul li span.fa {
	font-size: 12px;
	margin-right: 15px;
	color: #f79f21; }


.tab-content > .tab-pane {
	display: none; }
	
	.tab-content > .active {
	display: block; }
										

	.tabulation-2 .tab-content {
		background: #fff;
		padding: 20px;
		-webkit-box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15);
		-moz-box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15);
		box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15); }
			  

.fio {
	display: flex;
}

@media only screen and (max-width: 767px) {
	.fio {
		display: block;
	}
}
@media only screen and (max-width: 450px) {
	.fio {
		padding-right: 25px;
	}
}
.bodd {
	font-weight: 900 !important;
}
.cer {
	width: 600px !important;
}
.grid { 
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	align-items: stretch;
	justify-items: center;
	}
  .grid img {
	border: 1px solid #ccc;
	box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
	max-width: 100%;
  }
  .sab{
	border: 1px solid #ccc;
	box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
	max-width: 100%;
	
  }
  .cer-ul{
	  color: #727272;
  }
.geer {
	margin-bottom: 5rem;
}
.cxn {
	background-size: cover;
	background-position-x: center;
}
.tas {
	/* font-family:'Times New Roman', Times, serif !important; */
	font-size: 14px;
	margin-bottom: -0.3rem !important;
}
.taz {
	font-family:'Times New Roman', Times, serif !important;
	margin-bottom: 0rem !important;
}
.nbv {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);

}
/* h2{ */
	/* text-align:center; */
	/* padding: 20px; */
  /* } */
  /* Slider */
  
/* 
  .owl-stage-outer .owl-stage .owl-item {
	  width: 217px !important;
	  margin-right: 20px !important;
  } */


  #owl-demo .item{
	margin: 3px;
  }
  #owl-demo .item img{
	display: block;
	width: 100%;
	height: auto;
  }
  .zax {
	  color: #f79f21;
  }

  .momlz {
	font-size: 40px;
	width: 110px;
	height: 70px;
	margin-left: 41.2%;
	/* margin-top: 20%; */
	color: #f79f21 !important;
	
}


.moml {
	font-size: 30px;
	width: 100px;
	height: 60px;
	margin-left: 33%;
	/* margin-top: 20%; */
	color: #f79f21 !important;
	
}
.momls {
	font-size: 30px;
	width: 100px;
	height: 60px;
	margin-left: 34%;
	/* margin-top: 20%; */
	color: #f79f21 !important;
	
}
.jass {
	padding-bottom: 2.4rem !important;
}
.krew {
	margin-left: 1.5rem;
}
.wess {
	display: none;
}
.werr {
	padding-left: 1.5rem;
}

@media only screen and (max-width: 767px){
.wess {
   display: block;
}
.werr {
	padding-left: 0;
}

.deer {
	padding-left: 1.5rem;
}
}
.moni {
	/* font-size: 30px; */
	width: 350px;
	height: 200px;
	/* margin-left: 33%; */
	/* margin-top: 20%; */
	/* color: #f79f21 !important; */
	
}
.buy {
	color: #f79f21;
	margin-left: 32%;

}

.fad {
	width: 200px !important;
}
.sold {
	/* background-color: #f79f21; */
	/* height: 60px;
	width: 60px;
	border-radius: 50%; */
}

.newsletter-pop{
	width: 320px;
	visibility: hidden;
	opacity: 0;
	height: 215px;
	background-color: rgba(241, 241, 241,95%);
	position: fixed;
	bottom: 5px;
	right: 5px;
	z-index: 1;
	padding: 3px 20px;
	border-radius: 5px;
	/* transform: translateY(220px); */
	transition: all .9s ease-in-out;
}

.newsletter-items h4{
	font-size: 15px;
	font-style: italic;
	color: red;
}

 .form-control::placeholder{
	font-style: italic;
	font-size: 13px;
} 
.newsletter-items .input-group .form-control:active{
	border: none !important;
}

.newsletter-items button{
	float: right !important;
	margin: 0 auto !important;
	background-color: red;
	font-size: 13px;
	text-transform: uppercase;
}

.newsletter-items button:focus{
	border: none !important;
}

.letter-header span.close i{
	font-size: 16px !important;
	font-weight: 400 !important;
	transition: all .5s ease-out;
}

.newsletter-pop:hover .letter-header span.close i{
	color: red ;
}


.home-p-form-wrapper {
	border: 1px solid #ddd;
	padding: 30px;
}

.home-2 .home-p-form-wrapper {
	border: none;
	padding: 0;
}
.home-2 .home-p-form-wrapper {
	border: none;
	padding: 0;
}
.home-p-form-wrapper {
	border: 1px solid #ddd;
	padding: 30px;
}
/* .section-padding {
	padding: 100px 0;
	position: relative;
	float: left;
	width: 100%;
} */

.btn-filled-2:hover {
	color: #fff;
}
.tp-caption a.btn-border {
	border: 1px solid #fff !Important;
}

.btn-filled-2:before {
	background: #333;
}

.section-title-2 h3 {
	color: gray;
	font-size: 35px;
	text-transform: uppercase;
	margin: 15px 0;
	padding-bottom: 16px;
	position: relative;
	z-index: 1;

}

.section-title-2 h3 span {
	color: #f7921a;
}

.section-title-2 h3:before {
	position: absolute;
	content: "";
	background: #e0e0e0;
	height: 3px;
	width: 65px;
	left: 0;
	right: 0;
	bottom: 0;
}




.section-tittle {
	position: relative
}

@media (max-width: 575px) {
	.section-tittle {
		margin-bottom: 0px
	}
}

.section-tittle .front-text {
	position: relative;
	z-index: 2;

}

.section-tittle .front-text h2 {
	color: red;
	font-size: 70px;
	font-weight: 700;
	line-height: 1.2;
	/* padding: 20px; */
	/* text-transform: uppercase; */
	font-family: "Teko", sans-serif
}

.section-tittle .front-text1 h2 {
	color: #f79f21;
	font-size: 60px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	font-family: "Teko", sans-serif
}

@media (max-width: 575px) {
	.section-tittle .front-text h2 {
		font-size: 40px;
		line-height: 1.4
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.section-tittle .front-text h2 {
		font-size: 40px;
		line-height: 1.4
	}
}

.section-tittle span.back-text {
	font-size: 140px;
	font-weight: 800;
	text-transform: uppercase;
	-webkit-text-stroke: 1px #f6f7f8;
	-webkit-text-fill-color: transparent;
	margin: 0;
	line-height: 1;
	position: absolute;
	transform: translateY(-114%);
	right: 0;
	padding-top: 81px;
	left: 12px
}


.section-tittle span.back-text1 {
	font-size: 80px;
	font-weight: 800;
	text-transform: uppercase;
	-webkit-text-stroke: 1px #f6f7f8;
	-webkit-text-fill-color: transparent;
	margin: 0;
	line-height: 1;
	position: absolute;
	transform: translateY(-114%);
	right: 0;
	padding-top: 81px;
	left: 12px
}

@media (max-width: 575px) {
	.section-tittle span.back-text {
		font-size: 56px;
		transform: translateY(-136%)
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.section-tittle span.back-text {
		font-size: 56px;
		transform: translateY(-136%)
	}
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.section-tittle span.back-text {
		font-size: 89px
	}
}

.section-tittle.section-tittle2 .front-text h2 {
	font-size: 80px
}

@media (max-width: 575px) {
	.section-tittle.section-tittle2 .front-text h2 {
		font-size: 45px;
		padding-bottom: 28px;
		padding-left: 15px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.section-tittle.section-tittle2 .front-text h2 {
		font-size: 45px;
		padding-bottom: 28px;
		padding-left: 15px;
	}
}



.section-tittle.section-tittle2 span.back-text {
	/* transform: translateY(-123%) */
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.section-tittle.section-tittle2 span.back-text {
		font-size: 109px
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
	.section-tittle.section-tittle2 span.back-text {
		font-size: 99px
	}
}

@media only screen and (min-width: 1441px) and (max-width: 1800px) {
	.section-tittle.section-tittle2 span.back-text {
		font-size: 112px
	}
}

@media (max-width: 575px) {
	.section-tittle.section-tittle2 span.back-text {
		font-size: 46px;
		transform: translateY(-136%)
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.section-tittle.section-tittle2 span.back-text {
		font-size: 55px;
		transform: translateY(-136%)
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.section-tittle.section-tittle2 span.back-text {
		font-size: 80px;
		transform: translateY(-128%)
	}
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.section-tittle.section-tittle2 span.back-text {
		font-size: 90px;
		transform: translateY(-118%)
	}
}

.section-tittle.section-tittle3 .front-text h2 {
	font-size: 70px
}

@media (max-width: 575px) {
	.section-tittle.section-tittle3 .front-text h2 {
		font-size: 40px
	}
}

.section-tittle.section-tittle3 span.back-text {
	transform: translateY(-114%)
}

@media (max-width: 575px) {
	.section-tittle.section-tittle3 span.back-text {
		font-size: 56px;
		transform: translateY(-136%)
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.section-tittle.section-tittle3 span.back-text {
		font-size: 98px;
		transform: translateY(-131%)
	}
}

.section-tittle.section-tittle4 .front-text h2 {
	font-size: 70px;
	color: #fff
}

@media (max-width: 575px) {
	.section-tittle.section-tittle4 .front-text h2 {
		font-size: 35px
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.section-tittle.section-tittle4 .front-text h2 {
		font-size: 40px
	}
}

.section-tittle.section-tittle4 span.back-text {
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
	transform: translateY(-113%)
}

@media (max-width: 575px) {
	.section-tittle.section-tittle4 span.back-text {
		font-size: 56px;
		transform: translateY(-129%)
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.section-tittle.section-tittle4 span.back-text {
		font-size: 56px;
		transform: translateY(-130%)
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.section-tittle.section-tittle4 span.back-text {
		font-size: 117px;
		transform: translateY(-118%)
	}
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.section-tittle.section-tittle4 span.back-text {
		font-size: 117px;
		transform: translateY(-113%)
	}
}

.section-tittle.section-tittle6 .front-text h2 {
	font-size: 70px;
	color: #fff
}

@media (max-width: 575px) {
	.section-tittle.section-tittle6 .front-text h2 {
		font-size: 40px
	}
}

.section-tittle.section-tittle6 span.back-text {
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
	transform: translateY(-113%)
}

@media (max-width: 575px) {
	.section-tittle.section-tittle6 span.back-text {
		font-size: 56px;
		transform: translateY(-136%)
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.section-tittle.section-tittle6 span.back-text {
		font-size: 83px;
		transform: translateY(-137%)
	}
}





.testimonial-section {
	position: relative;
	z-index: 1
}

.testimonial-section .dots {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url(../img/bg-dots.png) 0 0 repeat;
	z-index: -1
}


.section-heading h2 {
	font-size: 32px;
	display: block;
	color: #f79f21;
}

.section-heading span {
	display: inline-block;
	text-transform: uppercase;
	font-size: 30px;
	color: #263a4f;
	font-weight: 600;
	letter-spacing: 0;
	font-family: work sans, sans-serif;
	position: relative;
	margin-bottom: 10px;
	z-index: 1
}
.talls {
	border: 1px solid green;
	border-radius: 50%;
	padding-bottom: 30px;
	padding-left: 37px;
}
.talg {
	border: 1px solid green;
	border-radius: 50%;
	padding-bottom: 30px;
	padding-left: 43px;
	padding-right: 45px;
	padding-top: 10px;
}
.section-heading span:before {
	background-color: transparent;
	position: absolute;
	content: "";
	width: 20px;
	height: 30px;
	left: calc(50% - 10px);
	top: calc(50% - 15px);
	border: 3px solid #f79f21;
	opacity: .5;
	z-index: -1
}

.mb-40 {
	margin-bottom: 40px
}


.testi-item img {
	width: 100px!important;
	height: 100px;
	line-height: 100px;
	border-radius: 50%
}

.testi-content {
	padding-left: 20px
}

.testi-content h3 {
	font-size: 16px;
	display: inline-block;
	font-weight: 600;
	margin: 0
}

.testi-content span {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	font-family: work sans, sans-serif
}


.testi-item {
	background-color: #fff;
	position: relative;
	padding: 30px;
	height: 220px;
	border-left: 2px solid #f79f21;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

.testi-item .fa-quote-right {
	position: absolute;
	right: 30px;
	bottom: 25px;
	font-size: 50px;
	color: lightgreen;
	opacity: .5
}

.testi-content .rattings {
	display: inline-block;
	margin-left: 5px
}

.testi-content .rattings li {
	display: inline-block
}

.testi-content .rattings li i {
	font-size: 10px;
	color: red;
	display: inline-block
}

.owl-controls .owl-dots {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: -50px;
	text-align: center;
	display: none !important;
}

.owl-controls .owl-dots .owl-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 1px;
	background-color: #555;
	margin: 0 3px;
	position: relative;
	text-align: center
}

.owl-controls .owl-dots .owl-dot.active {
	background-color: #f79f21
}
.bg-grey {
	background-color: #f9fafa
}

.single-wprocess {
	position: relative;
	padding: 30px;
	border: 1px solid #f7921a;
	background: rgba(0, 0, 0, 0.4);
}

.single-wprocess:hover {
	border: 1px solid transparent;
}

.single-wprocess-icon {
	color: #f7921a;
	font-size: 40px;
}

.single-wprocess h5 {
	color: #fff;
	text-transform: uppercase;
	margin: 20px 0;
}

.single-wprocess p {
	color: #fff;
}

.single-wprocess:after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
}


/* ul.checkmark {
	li {
	 &::before {
      content: ""; 
      position: absolute; 
      left: 2px; 
      top: 5px; 
      width: 3px;
      height: 6px;
      border: solid $main_color;
      border-width: 0 2px 2px 0;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
		}
	}
} */




/* ul .list li  {
	list-style-type: none;
  }
   
  ul .list li::before {
	display: inline-block;
	width: 16px;
	height: 16px;
	content: "";
	background: url("../img/classes/tool2.jpg") no-repeat 0 0;
	background-size: 100%;
	margin-right: 10px;
  } */
  /* .fim::before {
	background: none !important;
  } */


  .ftco-section {
  /* padding: 7em 0; */
  position: relative; }
  @media (max-width: 767.98px) {
    .ftco-section {
      /* padding: 6em 0;  */
	} 
}

	  
.work {
	display: block;
	width: 100%;
	height: 270px;
	margin-bottom: 0;
	background-position: top center !important;
	z-index: 0;
	position: relative; }
	.work:after {
	  position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  content: '';
	  background: #000000;
	  opacity: 0;
	  z-index: 0;
	  -moz-transition: all 0.3s ease;
	  -o-transition: all 0.3s ease;
	  -webkit-transition: all 0.3s ease;
	  -ms-transition: all 0.3s ease;
	  transition: all 0.3s ease; }
	.work .text {
	  opacity: 0; }
	  .work .text span {
		color: rgba(255, 255, 255, 0.5); }
	.work h2 {
	  color: #fff;
	  line-height: 1.2;
	  font-size: 18px; }
	  .work h2 a {
		color: #fff; }
	.work .desc {
	  z-index: 1; }
	.work .icon {
	  position: absolute;
	  top: 20px;
	  right: 20px;
	  width: 30px;
	  height: 30px;
	  content: '';
	  z-index: 1;
	  background: #fff;
	  opacity: 0;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  border-radius: 50%;
	  -moz-transition: all 0.3s ease;
	  -o-transition: all 0.3s ease;
	  -webkit-transition: all 0.3s ease;
	  -ms-transition: all 0.3s ease;
	  transition: all 0.3s ease; }
	  .work .icon span {
		color: #d9ba2b; }
	.work:hover:after {
	  opacity: .8; }
	.work:hover .icon {
	  opacity: 1; }
	.work:hover .text {
	  opacity: 1; }

	  .image-popup {
		cursor: -webkit-zoom-in;
		cursor: -moz-zoom-in;
		cursor: zoom-in; }
.single-wprocess:before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
}

.single-wprocess:before,
.single-wprocess:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

.single-wprocess:hover:before,
.single-wprocess:hover:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}


.categories-area .single-cat {
	border: 1px solid #e1ebf7;
	border-radius: 6px;
	padding: 12px;
	-webkit-transition: all .4s ease-out 0s;
	-moz-transition: all .4s ease-out 0s;
	-ms-transition: all .4s ease-out 0s;
	-o-transition: all .4s ease-out 0s;
	transition: all .4s ease-out 0s;
	position: relative;
	z-index: 1;
	background: #fff;
	height: 400px;
}

@media (max-width: 575px) {
	.categories-area .single-cat {
		padding: 40px 22px;
		margin-top:20px;
		height: 420px;
	}
}
@media (max-width: 768px) {
	.categories-area .single-cat {
		margin-top:20px;
		height: 400px;
	}
}
@media (max-width: 375px) {
	.categories-area .single-cat {
		margin-top:20px;
		height: 430px;
	}
}
@media (max-width: 800px) {
	.categories-area .single-cat {
		margin-top:20px;
		/* height: 400px; */
	}
}

/* .categories-area .single-cat::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 0;
	background: #ff5f13;
	transition: .6s;
	bottom: 0;
	left: 0;
	z-index: -1;
	border-radius: 6px
} */

.categories-area .single-cat .cat-icon span {
	color: #f15f22;
	font-size: 50px;
	margin-bottom: 30px;
	display: block
}

.categories-area .single-cat .cat-cap h5>a {
	font-size: 20px;
	font-weight: 700;
	/* margin-bottom: 21px; */
	display: block;
	-webkit-transition: all .2s ease-out 0s;
	-moz-transition: all .2s ease-out 0s;
	-ms-transition: all .2s ease-out 0s;
	-o-transition: all .2s ease-out 0s;
	transition: all .2s ease-out 0s;
	font-family: "Barlow", sans-serif;
	color: red;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.categories-area .single-cat .cat-cap h5>a {
		font-size: 26px
	}
}

@media (max-width: 575px) {
	.categories-area .single-cat .cat-cap h5>a {
		font-size: 26px
	}
}

.categories-area .single-cat .cat-cap p {
	margin-bottom: 36px;
	color: #f79f21;
	font-size: 16px;
	-webkit-transition: all .2s ease-out 0s;
	-moz-transition: all .2s ease-out 0s;
	-ms-transition: all .2s ease-out 0s;
	-o-transition: all .2s ease-out 0s;
	transition: all .2s ease-out 0s
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.categories-area .single-cat .cat-cap p {
		font-size: 15px
	}
}

.categories-area .single-cat .cat-cap a {
	color: gray;
	font-size: 16px;
	font-weight: 600;
	-webkit-transition: all .2s ease-out 0s;
	-moz-transition: all .2s ease-out 0s;
	-ms-transition: all .2s ease-out 0s;
	-o-transition: all .2s ease-out 0s;
	transition: all .2s ease-out 0s
}

.bottom{
	/* margin-bottom: 2px solid #f79f21 !important; */
	border-bottom:  3px solid lightgreen;
}

.sbot{
	text-align: left;
	border-bottom:  1px solid lightgreen;
	color: #f79f21 ;
}
.text-color{
	color: #f79f21 ;
}

.small{
	font-weight: 200;
	font-size: small;
	color: gray;
}
.deal {
	text-decoration: none !important;
	
}
.hasd {
	color: #f79f21;
	cursor: pointer;
}
.accor {
	border-radius: 50px !important;
	background: white;
	border: 1px solid #f79f21;
}

/* .categories-area .single-cat:hover {
	border: 1px solid transparent
} */

/* .categories-area .single-cat:hover::before {
	height: 100%
} */

/* .categories-area .single-cat:hover .cat-icon span {
	color: #fff
} */

/* .categories-area .single-cat:hover .cat-cap h5 {
	color: #fff
}

.categories-area .single-cat:hover .cat-cap p {
	color: #fff
}

.categories-area .single-cat:hover .cat-cap a {
	color: #fff
} */
.moretext {
	display: none;
}

.but {
	background-color: #f79f21;
	border: none;
	color: white;
	padding: 3px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	border-radius: 12%;
  }
  

  /* ACCORDION STYLE */


  
  .panel-default>.panel-heading a {
	display: block;
	padding: 10px 15px;
  }
  
  .panel-default>.panel-heading a:after {
	content: "";
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	float: right;
	transition: transform .25s linear;
	-webkit-transition: -webkit-transform .25s linear;
  }
  
  /* .panel-default>.accor[aria-expanded="true"] {
	background: #f79f21;
  } */
  
  .panel-default>.panel-heading a[aria-expanded="true"]:after {
	content: "\2212";
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	padding-right: 20px;
	padding-top: 20px !important;
	font-size: 20px;
	font-weight:bold;
	color: red !important;
	/* margin-top: 40px !important; */
  }
  
  .panel-default>.panel-heading a[aria-expanded="false"]:after {
	content: "\002b";
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
	padding-right: 10px !important;
	padding-top: 10px !important;
	font-size: 20px;
	font-weight:bolder;
	color: green !important;
	
  }




  /* SECOND ACCORDION STYLE */



  .panel-defaults>.panel-headings a {
	display: block;
	padding: 10px 15px;
  }
  
  .panel-defaults>.panel-headings a:after {
	content: "";
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	float: right;
	transition: transform .25s linear;
	-webkit-transition: -webkit-transform .25s linear;
  }


  .panel-defaults>.panel-headings a[aria-expanded="true"]:after {
	content: "\2212";
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	padding-right: 20px;
	padding-top: 10px !important;
	font-size: 20px;
	font-weight:bold;
	color: red !important;
	/* margin-top: 40px !important; */
  }
.curs {
	cursor: pointer;
}
.skl {
	padding-top: 2rem !important;
}
  .car-btn{
	  position: absolute;
	  left: 36%;
	  top: 40%;
  }
  .cars{
	  color: red;
	  font-size: 45px;
	  margin-bottom: 20px;
	  font-weight: 700;
	  font-family: 'Teko' sans-serif;
  }

  @media only screen and (max-width: 800px){
	.car-btn{
		position: absolute;
		left: 35%;
		top: 46%;
	}
	.cars{
		font-size: 30px;
	}
	.faz {
		margin-top: 2rem;
	}
  }


  
  
  .panel-defaults>.panel-headings a[aria-expanded="false"]:after {
	content: "\002b";
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
	padding-right: 10px !important;
	/* padding-top: 10px !important; */
	font-size: 20px;
	font-weight:bolder;
	color: green !important;
	
  }


  .sho{
	  display: none ;
  }

  .ser {
	  display: none;
  }
  @media only screen and (max-width: 777px){
	  .smal {
		  margin-top: 1.5rem !important;
	  }
	  .brek {
		  display: none;
	  }
	  .ser {
		  display: inline;
	  }
	  .fot {
		  font-size: 13px;
	  }
  }

  /* END ACCORDION STYLE */

  .insight_shadow{
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }




  /* insight unsubcribe */

  .newsletter-subscribe {
	color:#313437;
	background-color:#fff;
	padding:50px 0;
	margin:0 auto 25px;

  }
  
  .newsletter-subscribe p {
	color:#7d8285;
	line-height:1.5;
  }
  
  .newsletter-subscribe h2 {
	font-size:24px;
	font-weight:bold;
	margin-bottom:25px;
	line-height:1.5;
	padding-top:0;
	margin-top:0;
	color:#7d8285;
  }
  
  .newsletter-subscribe .intro {
	font-size:16px;
	max-width:500px;
	margin:0 auto 25px;
  }
  
  /* .newsletter-subscribe .intro p {
	margin-bottom:35px;
  } */
  
  /* .newsletter-subscribe form {
	justify-content:center;
  } */
  
  .newsletter-subscribe form .form-control {
	background:#eff1f4;
	border:none;
	border-radius:3px;
	box-shadow:none;
	outline:none;
	color:inherit;
	text-indent:9px;
	height:45px;
	margin-right:10px;
	min-width:250px;
	margin:0 auto ;

  }
  
  .newsletter-subscribe form .btn {
	padding:16px 32px;
	border:none;
	background:none;
	box-shadow:none;
	text-shadow:none;
	opacity:0.9;
	text-transform:uppercase;
	font-weight:bold;
	font-size:13px;
	letter-spacing:0.4px;
	line-height:1;
  }
  
  .newsletter-subscribe form .btn:hover {
	opacity:1;
  }
  
  .newsletter-subscribe form .btn:active {
	transform:translateY(1px);
  }
  
  .newsletter-subscribe form .btn-primary {
	background-color:#f79f21 !important;
	color:#fff;
	outline:none !important;
  }
  
  .art-img{
	/* height: 450px; */
	width: 100%;
  }
  .art-date{
	  font-weight: 100;
  }
  


  




  /* PAGINATION STYLE */

  .physicianList ul{margin: 0; padding: 0; list-style: none;}
.physicianList ul li{display: inline-block; width: 240px; float: left; margin-right: 15px; margin-bottom: 15px;}
.physicianBox{
	border: 1px solid #ddd;
	color: #333;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 20px;
	background-color: #f5f5f5;
	
}
.physicianBox .physicianPic {
	padding: 15px 0;
	background-color: #fff;
  text-align: center;
}
.physicianBox .physicianPic img{
	border: 6px solid #f8f8f8;
	-webkit-border-radius: 50%;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
    margin: 0 auto;
    height: 120px;
    width: 120px;
}
.physicianInfo{
	padding: 10px;
	text-align: center;
	border-top: 1px solid #eee;
}
.physicianInfo h6{font-size: 16px; margin:0;}
.physicianBox strong{color: #444;}
.physicianBox p{font-size: 13px; margin: 0; line-height: 22px;}
.physicianBio{position:absolute; right: 0; bottom: 3px;}
.physicianModal{text-align: center;}
.physicianModal .physicianPic img {
    border: 6px solid #f8f8f8;
	-webkit-border-radius: 50%;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
    margin: 0 auto;
    height: 180px;
    width: 180px;
}
.physicianModal .info p, .physicianModal .info .text-info{margin: 0;}
.showBioBtn{background-color: #337ab7; padding: 5px 10px; color: #fff; font-size: 12px;}

/*Pagination CSS*/
#page_navigation {
  clear:both;
  margin: 20px 0;
	margin-left: 43%;

}
#page_navigation a{
	padding:3px 6px;
	border:1px solid #f79f21;
	margin:2px;
	color:black;
	text-decoration:none;
	/* text-align: center !important; */
	/* margin-left: 40%; */
	
}
.active_page{
	background:#f79f21;
	color:white !important;
}

.equal_size{
 height:354px;
}

.hov a:hover{
color:#ED1C24 ;
}

/* END PAGINATION STYLE */



/* validation */

.success input {
	border-color: #2ecc77;
  }
  
  .error input {
	border-color: #e74c3c;
  }
  
  /* .form-group i {
	position: absolute;
	right: 12px;
	top: 38px;
	visibility: hidden;
  } */
  
  .success i.fa-check-circle {
	color: #2ecc77;
	visibility: visible;
  }
  
  .error i.fa-exclamation-circle {
	color: #e74c3c;
	visibility: visible;
  }
  
   small {
	color: #2ecc77;
	position: absolute;
	left: 0;
	visibility: hidden;
  }
  
  .error small {
	color: #e74c3c;
	visibility: visible;
  }
/*SHARE ON SOCIAL MEDIA MENU*/
/*Format Social Sharing Menu*/
/*format Facebook Icon*/
a.w-inline-block.social-share-btn.fb {
	background-color: #3B5998 !important;
	color: white !important;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
	margin-right: 40px;}
	a.w-inline-block.social-share-btn.fb:hover {
	background-color: white !important;
	color: #3B5998 !important;}
	
	/*format Twitter Icon*/
	a.w-inline-block.social-share-btn.tw {
	background-color: #55ACEE !important;
	color: white !important;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
	margin-right: 40px;}
	a.w-inline-block.social-share-btn.tw:hover {
	background-color: white !important;
	color: #55ACEE !important;}
	
	/*format Google Icon*/
	a.w-inline-block.social-share-btn.gplus {
	background-color: #dd4b39 !important;
	color: white !important;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
	margin-right: 40px;}
	a.w-inline-block.social-share-btn.gplus:hover {
	background-color: white !important;
	color: #dd4b39 !important;}
	
	/*format Email Icon*/
	a.w-inline-block.social-share-btn.email {
	background-color: #430297 !important;
	color: white !important;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
	margin-right: 40px;}
	a.w-inline-block.social-share-btn.email:hover {
	background-color: white !important;
	color: #430297 !important;}
	
	/*format Reddit Icon*/
	a.w-inline-block.social-share-btn.redd {
	background-color: #ff5700 !important;
	color: white !important;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
	margin-right: 40px;}
	a.w-inline-block.social-share-btn.redd:hover {
	background-color: white !important;
	color: #ff5700 !important;}
	
	/*Format LinkedIn Button*/
	a.w-inline-block.social-share-btn.lnk {
	background-color: #0077b5 !important;
	color: white !important;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
	margin-right: 40px;}
	a.w-inline-block.social-share-btn.lnk:hover {
	background-color: white !important;
	color: #0077b5 !important;}
	
	/*remove random writing after social icons*/
	#kn-scene_560 li.kn-link.kn-link-1,#kn-scene_560 li.kn-link.kn-link-2, #kn-scene_560 li.kn-link.kn-link-3, #kn-scene_560 li.kn-link.kn-link-4, #kn-scene_560 li.kn-link.kn-link-5 {
	font-size: 0;}
	
	/*format hover over social icons*/
	.fa:hover {
	opacity: 0.9;}
	
	
	/*Animate Social Sharing Menu*/
	.w-inline-block,
	.menu-open-button {
	background: #EEEEEE;
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin-left: -40px;
	position: absolute;
	color: #FFFFFF;
	text-align: center;
	line-height: 80px;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: -webkit-transform ease-out 200ms;
	transition: -webkit-transform ease-out 200ms;
	transition: transform ease-out 200ms;
	transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;}
	
	.menu-open {
	display: none;}
	
	.lines {
	width: 25px;
	height: 3px;
	background: #596778;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -12.5px;
	margin-top: -1.5px;
	-webkit-transition: -webkit-transform 200ms;
	transition: -webkit-transform 200ms;
	transition: transform 200ms;
	transition: transform 200ms, -webkit-transform 200ms;}
	
	.line-1 {
	-webkit-transform: translate3d(0, -8px, 0);
	transform: translate3d(0, -8px, 0);
	visibility: hidden;}
	
	.line-2 {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	visibility: hidden;}
	
	.menu-open:checked + .menu-open-button .line-1 {
	-webkit-transform: translate3d(0, 0, 0) rotate(45deg);
	transform: translate3d(0, 0, 0) rotate(45deg);
	visibility: visible;}
	
	.menu-open:checked + .menu-open-button .line-2 {
	-webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
	transform: translate3d(0, 0, 0) rotate(-45deg);
	visibility: visible;}
	
	.fa-share-alt {
	visibility: visible;
	color: #f7df59;}
	
	.menu-open:checked + .menu-open-button .fa-share-alt {
	visibility: hidden;}
	
	.menu {
	/* margin: auto; */
	position: inherit;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 80px;
	height: 80px;
	text-align: center;
	box-sizing: border-box;
	font-size: 26px;
	
}
	
	/* .menu-item {
	transition: all 0.1s ease 0s;
	} */
	
	.w-inline-block:hover {
	background: #EEEEEE;
	color: #3290B1;}
	
	.w-inline-block:nth-child(3) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;}
	
	.w-inline-block:nth-child(4) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;}
	
	.w-inline-block:nth-child(5) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;}
	
	.w-inline-block:nth-child(6) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;}
	
	.w-inline-block:nth-child(7) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;}
	
	.w-inline-block:nth-child(8) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;}
	
	.w-inline-block:nth-child(9) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;}
	
	.menu-open-button {
	z-index: 2;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-webkit-transition-duration: 400ms;
	transition-duration: 400ms;
	-webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
	transform: scale(1.1, 1.1) translate3d(0, 0, 0);
	cursor: pointer;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);}
	
	.menu-open-button:hover {
	-webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
	transform: scale(1.2, 1.2) translate3d(0, 0, 0);}
	
	.menu-open:checked + .menu-open-button {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	-webkit-transition-duration: 200ms;
	transition-duration: 200ms;
	-webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
	transform: scale(0.8, 0.8) translate3d(0, 0, 0);}
	
	.menu-open:checked ~ .w-inline-block {
	-webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
	transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);}
	
	.menu-open:checked ~ .w-inline-block:nth-child(3) {
	transition-duration: 180ms;
	-webkit-transition-duration: 180ms;
	-webkit-transform: translate3d(0.08361px, -104.99997px, 0);
	transform: translate3d(0.08361px, -104.99997px, 0);}
	
	.menu-open:checked ~ .w-inline-block:nth-child(4) {
	transition-duration: 280ms;
	-webkit-transition-duration: 280ms;
	-webkit-transform: translate3d(90.9466px, -52.47586px, 0);
	transform: translate3d(90.9466px, -52.47586px, 0);}
	
	.menu-open:checked ~ .w-inline-block:nth-child(5) {
	transition-duration: 380ms;
	-webkit-transition-duration: 380ms;
	-webkit-transform: translate3d(90.9466px, 52.47586px, 0);
	transform: translate3d(90.9466px, 52.47586px, 0);}
	
	.menu-open:checked ~ .w-inline-block:nth-child(6) {
	transition-duration: 480ms;
	-webkit-transition-duration: 480ms;
	-webkit-transform: translate3d(0.08361px, 104.99997px, 0);
	transform: translate3d(0.08361px, 104.99997px, 0);}
	
	.menu-open:checked ~ .w-inline-block:nth-child(7) {
	transition-duration: 580ms;
	-webkit-transition-duration: 580ms;
	-webkit-transform: translate3d(-90.86291px, 52.62064px, 0);
	transform: translate3d(-90.86291px, 52.62064px, 0);}
	
	.menu-open:checked ~ .w-inline-block:nth-child(8) {
	transition-duration: 680ms;
	-webkit-transition-duration: 680ms;
	-webkit-transform: translate3d(-91.03006px, -52.33095px, 0);
	transform: translate3d(-91.03006px, -52.33095px, 0);}
	
	.menu-open:checked ~ .w-inline-block:nth-child(9) {
	transition-duration: 780ms;
	-webkit-transition-duration: 780ms;
	-webkit-transform: translate3d(-0.25084px, -104.9997px, 0);
	transform: translate3d(-0.25084px, -104.9997px, 0);}


	/* insight  */
  .image_info {

	font-style: italic;

  }

  .siz {
	  font-size: 15px;
  }
 
