body {
	font-family: 'Montserrat', sans-serif;
	color: #444444;
}
a {
	color: #ff7f00;
}
a:hover {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
}
ul {
	padding: 0;
	margin: 0;
}
/*--------------------------------------------------------------

# Back to top button

--------------------------------------------------------------*/

.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}
.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background: #ff7f00;
	color: #fff;
	transition: all 0.4s;
}
.back-to-top i:hover {
	background: #6ec083;
	color: #fff;
}
/*--------------------------------------------------------------

# Top Bar

--------------------------------------------------------------*/

#topbar {
	background: #fbfbfb;
	height: 35px; line-height:35px;
	font-size: 14px; margin:0 0 20px;
	transition: all 0.5s;
}
#topbar.topbar-scrolled {
	top: -40px;
}
#topbar .contact-info a {
	line-height: 1;
	color: #444444;
	transition: 0.3s;
}
#topbar .contact-info a:hover {
	color: #ff7f00;
}
#topbar .contact-info i {
	color: #ff7f00;
	padding-right: 4px;
}
#topbar .contact-info i.icofont-phone {
	margin-left: 15px;
}
#topbar .social-links a {
	color: #424242;
	padding-left: 15px;
	display: inline-block;
	line-height: 1px;
	transition: 0.3s;
}
#topbar .social-links a:hover {
	color: #ff7f00;
}
#topbar .social-links a:first-child {
	border-left: 0;
}
/*--------------------------------------------------------------

# Header

--------------------------------------------------------------*/

#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	padding: 0 0 20px 0;
	top: 0px;
	border-style: solid;
	border-width: 1px 0px 1px 0px;
	border-color: rgba(226,226,226,0.71);
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
#header.header-scrolled {
	top: 0;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo, h3.foot_logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase; 
}
h3.foot_logo { margin:0 0 10px;}
#header .logo a,  h3.foot_logo a {
	color: #ff7f00; display:flex; flex-flow:row; align-items:stretch; 
}
#header .logo a label,  h3.foot_logo label{ margin:0;  line-height:30px; padding:0 0 0 10px;}
#header .logo a span, h3.foot_logo label span{ display:block; font-size:12px; color:#263238; padding:0 0 0 0px; line-height:16px;}
h3.foot_logo label span { color:#fff;}
#header .logo img {
	max-height: ;
}
 @media (max-width: 992px) {
#header {
	top: 0;
	padding: 15px 0;
}
#header .logo {
	font-size: 28px;
}
}
/*--------------------------------------------------------------

# Navigation Menu

--------------------------------------------------------------*/

/* Desktop Navigation */

.nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-menu > ul {
	display: flex;
}
.nav-menu > ul > li {
	position: relative;
	white-space: nowrap;
	padding: 10px 0 10px 28px;
}
.nav-menu a {
	display: block;
	position: relative;
	color: #222222;
	transition: 0.3s;
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
	color: #ff7f00;
}
.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 15px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}
.nav-menu .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}
.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #222222;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
	color: #ff7f00;
}
.nav-menu .drop-down > a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}
.nav-menu .drop-down .drop-down > a {
	padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}
.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
	visibility: visible;
	width: 100%;
}
.nav-menu > ul > li > a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: #ff7f00;
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}
 @media (max-width: 1366px) {
.nav-menu .drop-down .drop-down ul {
	left: -90%;
}
.nav-menu .drop-down .drop-down:hover > ul {
	left: -100%;
}
.nav-menu .drop-down .drop-down > a:after {
	content: "\ea9d";
}
}
/* Get Startet Button */

.get-started-btn {
	margin-left: 25px;
	color: #fff;
	background-color: #ff7f00;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
	display: inline-block;
	font-weight: 600;
	border: 0;
	border-radius: 10px;
	padding: 14px 21px;
}
.get-started-btn:hover {
	background: #ff7f00;
	color: #fff;
}
 @media (max-width: 768px) {
.get-started-btn {
	margin: 0 48px 0 0;
	padding: 6px 18px;
}
}
/* Mobile Navigation */

.mobile-nav-toggle {
	position: fixed;
	top: 18px;
	right: 15px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav-toggle i {
	color: #222222;
}
.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}
.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-nav a {
	display: block;
	position: relative;
	color: #222222;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #ff7f00;
	text-decoration: none;
}
.mobile-nav .drop-down > a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}
.mobile-nav .active.drop-down > a:after {
	content: "\eaa1";
}
.mobile-nav .drop-down > a {
	padding-right: 35px;
}
.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}
.mobile-nav .drop-down li {
	padding-left: 20px;
}
.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(9, 9, 9, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}
.mobile-nav-active {
	overflow: hidden;
}
.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}
/*--------------------------------------------------------------

# Hero Section

--------------------------------------------------------------*/

#slide-section {
	margin-top: 6em;
}
#hero {
	width: 100%;
	height: 80vh;
	overflow: hidden;
	position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	border-radius: 15px;
}
#hero .carousel-item::before {
	content: '';
	background-color: transparent;
	background-image: linear-gradient(90deg, rgba(40,40,40,0.67) 17%, rgba(40,40,40,0.29) 45%);
}
#hero .carousel-item img {
	border-radius: 10px;
}
#hero .carousel-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	top: 80px;
	left: 50px;
	right: 50px;
}
#hero .container {
	text-align: center;
}
#hero h2 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 48px;
	font-weight: 700;
}
#hero p {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	margin: 0 auto 30px auto;
	color: #fff;
}
#hero .carousel-inner .carousel-item {
	transition-property: opacity;
	background-position: center top;
}
#hero .carousel-inner .carousel-item,  #hero .carousel-inner .active.carousel-item-left,  #hero .carousel-inner .active.carousel-item-right {
	opacity: 0;
}
#hero .carousel-inner .active,  #hero .carousel-inner .carousel-item-next.carousel-item-left,  #hero .carousel-inner .carousel-item-prev.carousel-item-right {
	opacity: 1;
	transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,  #hero .carousel-inner .carousel-item-prev,  #hero .carousel-inner .active.carousel-item-left,  #hero .carousel-inner .active.carousel-item-right {
	left: 0;
	transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev, #hero .carousel-control-next {
	width: 10%;
	top: 112px;
}
 @media (max-width: 992px) {
#hero .carousel-control-prev, #hero .carousel-control-next {
	top: 66px;
}
#slide-section {
	margin-top: 2em;
}
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
	background: none;
	font-size: 36px;
	line-height: 1;
	width: auto;
	height: auto;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 10px;
	transition: 0.3s;
	color: rgba(255, 255, 255, 0.5);
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
	background: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
	cursor: pointer;
	background: #fff;
	overflow: hidden;
	border: 0;
	width: 12px;
	height: 12px;
	border-radius: 50px;
	opacity: .6;
	transition: 0.3s;
}
#hero .carousel-indicators li.active {
	opacity: 1;
	background: #ff7f00;
}
#hero .btn-get-started {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 14px 32px;
	border-radius: 4px;
	transition: 0.5s;
	line-height: 1;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	background: #ff7f00;
}
#hero .btn-get-started:hover {
	background: #ff7f00;
}
 @media (max-width: 992px) {
#hero {
	height: 100vh;
}
#hero .carousel-container {
	top: 66px;
}
}
 @media (max-width: 768px) {
#hero h2 {
	font-size: 28px;
}
}
 @media (min-width: 1024px) {
#hero .carousel-control-prev, #hero .carousel-control-next {
	width: 5%;
}
}
 @media (max-height: 500px) {
#hero {
	height: 120vh;
}
}
/*--------------------------------------------------------------

# Sections General

--------------------------------------------------------------*/

section {
	padding: 50px 0 30px;
}
.heading h3 {
	font-family: "Roboto Slab";
	line-height: 33px;
	font-weight: 400;
	font-style: normal;
	color: #333;
	font-size: 25px;
}
.heading h2 {
	font-family: Montserrat;
	text-transform: uppercase;
	line-height: 45px;
	font-weight: 700;
	font-size: 35px;
}
.heading h2:after {
	display: block;
	content: '';
	clear: both;
	height: 34px;
	width: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 20px;
	background-size: cover;
	background-image: url(../../assets/img/icon.png);
}
.imgbox h5 a {
	color: #000;
}
.imgbox h5 a:hover {
	color: #000;
	text-decoration: none;
}
.imgbox {
	background-color: #F3F3F2;
	background-position: center right;
	background-image: linear-gradient(to right, rgb(255 255 255), rgb(167 0 185 / 0%)),  url(https://manufacturer.stylemixthemes.com/furniture/wp-content/uploads/sites/9/2018/11/photo-15.jpg);
	background-size: cover;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	margin: 0px 10px 0px 0px;
	padding: 30px 30px 30px 30px;
}
.imgbox2 {
	background-color: #F3F3F2;
	background-position: center right;
	background-image: linear-gradient(to right, rgb(255 255 255), rgb(255 255 255 / 48%)),  url(https://manufacturer.stylemixthemes.com/furniture/wp-content/uploads/sites/9/2018/11/shutterstock_640286518.jpg);
	background-size: cover;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	margin: 0px 10px 0px 0px;
	padding: 30px 30px 30px 30px;
}
#engroup {
	padding-top: 5em;
	padding-bottom: 5em;
	background-color: #000;
}
#engroup h3 {
	color: #fff;
}
#engroup h2 {
	color: #fff;
}
#engroup #comm {
	text-align: center;
	color: #fff;
}
#engroup #comm i {
	font-size: 50px;
}
#engroup #comm h5 {
	margin-top: 20px;
	margin-bottom: 20px;
}
#engroup #comm h6 {
	margin-top: 40px;
	margin-bottom: 20px;
}
#engroup {
}
.section-bg {
	background-color: #f8fcf9;
}
.section-title {
	text-align: center;
	padding-bottom: 30px;
}
.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}
.section-title h2::before {
	content: '';
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
}
.section-title h2::after {
	content: '';
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #ff7f00;
	bottom: 0;
	left: calc(50% - 20px);
}
.section-title p {
	margin-bottom: 0;
	font-size: 14px;
	color: #919191;
}
/*--------------------------------------------------------------

# Featured Services

--------------------------------------------------------------*/

.featured-services {
	padding: 20px 0;
}
.featured-services .icon-box {
	padding: 20px;
}
.featured-services .icon-box-bg {
	background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}
.featured-services .icon {
	margin-bottom: 15px;
}
.featured-services .icon i {
	color: #ff7f00;
	font-size: 42px;
}
.featured-services .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 18px;
}
.featured-services .title a {
	color: #222222;
	transition: 0.3s;
}
.featured-services .icon-box:hover .title a {
	color: #ff7f00;
}
.featured-services .description {
	line-height: 24px;
	font-size: 14px;
}
/*--------------------------------------------------------------

# About Us

--------------------------------------------------------------*/

.about .content h3 {
	font-weight: 700;
	font-size: 28px;
}
.about .content ul {
	list-style: none;
	padding: 0;
}
.about .content ul li {
	padding-bottom: 10px;
}
.about .content ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #ff7f00;
}
.about .content p:last-child {
	margin-bottom: 0;
}
/*--------------------------------------------------------------

# Why Us

--------------------------------------------------------------*/

.why-us {
	padding: 0;
}
.why-us .row {
	overflow: hidden;
}
.why-us .content-item {
	padding: 40px;
	border-left: 1px solid #eee;
	border-bottom: 1px solid #eee;
	margin: -1px;
}
.why-us .content-item span {
	display: block;
	font-size: 24px;
	font-weight: 400;
	color: #6ec083;
}
.why-us .content-item h4 {
	font-size: 26px;
	font-weight: 300;
	padding: 0;
	margin: 20px 0;
}
.why-us .content-item p {
	color: #aaaaaa;
	font-size: 15px;
	margin: 0;
	padding: 0;
}
 @media (max-width: 768px) {
.why-us .content-item {
	padding: 40px 0;
}
}
/*--------------------------------------------------------------

# Our Clients

--------------------------------------------------------------*/

.clients .owl-item {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}
.clients .owl-item img {
	width: 80%;
	opacity: 0.5;
	transition: 0.3s;
}
.clients .owl-item img:hover {
	opacity: 1;
}
.clients .owl-nav, .clients .owl-dots {
	margin-top: 5px;
	text-align: center;
}
.clients .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}
.clients .owl-dot.active {
	background-color: #ff7f00 !important;
}
/*--------------------------------------------------------------

# Services

--------------------------------------------------------------*/

.services .icon-box {
	text-align: center;
	padding: 70px 20px 80px 20px;
	transition: all ease-in-out 0.3s;
	background: #fff;
	box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}
.services .icon-box .icon {
	margin: 0 auto;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: ease-in-out 0.3s;
	position: relative;
}
.services .icon-box .icon i {
	font-size: 36px;
	transition: 0.5s;
	position: relative;
}
.services .icon-box .icon svg {
	position: absolute;
	top: 0;
	left: 0;
}
.services .icon-box .icon svg path {
	transition: 0.5s;
	fill: #f5f5f5;
}
.services .icon-box h4 {
	font-weight: 600;
	margin: 10px 0 15px 0;
	font-size: 22px;
}
.services .icon-box h4 a {
	color: #222222;
	transition: ease-in-out 0.3s;
}
.services .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}
.services .icon-box:hover {
	border-color: #fff;
	box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}
.services .iconbox-blue i {
	color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
	color: #fff;
}
.services .iconbox-blue:hover .icon path {
	fill: #47aeff;
}
.services .iconbox-orange i {
	color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
	color: #fff;
}
.services .iconbox-orange:hover .icon path {
	fill: #ffa76e;
}
.services .iconbox-pink i {
	color: #e80368;
}
.services .iconbox-pink:hover .icon i {
	color: #fff;
}
.services .iconbox-pink:hover .icon path {
	fill: #e80368;
}
.services .iconbox-yellow i {
	color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
	color: #fff;
}
.services .iconbox-yellow:hover .icon path {
	fill: #ffbb2c;
}
.services .iconbox-red i {
	color: #ff5828;
}
.services .iconbox-red:hover .icon i {
	color: #fff;
}
.services .iconbox-red:hover .icon path {
	fill: #ff5828;
}
.services .iconbox-teal i {
	color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
	color: #fff;
}
.services .iconbox-teal:hover .icon path {
	fill: #11dbcf;
}
/*--------------------------------------------------------------

# Cta

--------------------------------------------------------------*/

.cta {
	background: #ff7f00;
	padding: 30px 0 ;
}
.cta h3 {
	color: #fff;
	font-size: 30px;
	font-weight: 700; margin:10px 0 0; text-transform:uppercase;
}
.cta p {
	color: #fff;
}
.cta .cta-btn {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 30px;
	background-color: #fff;
	transition: 0.5s;
	margin: 10px;
	border: 2px solid #fff;
	color: #ff7f00;
	border-radius: 14px;
}
.cta .cta-btn:hover {
	background: #fff;
	color: #ff7f00;
}
 @media (max-width: 1024px) {
.cta {
	background-attachment: scroll;
}
}
 @media (min-width: 769px) {
.cta .cta-btn-container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
}
/*--------------------------------------------------------------

# Portfolio

--------------------------------------------------------------*/

.portfolio .portfolio-item {
	margin-bottom: 30px;
}
.portfolio #portfolio-flters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}
.portfolio #portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 15px 10px 15px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #444444;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
	color: #fff;
	background: #ff7f00;
}
.portfolio #portfolio-flters li:last-child {
	margin-right: 0;
}
.portfolio .portfolio-wrap {
	transition: 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background: rgba(34, 34, 34, 0.6);
}
.portfolio .portfolio-wrap::before {
	content: "";
	background: rgba(34, 34, 34, 0.6);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all ease-in-out 0.3s;
	z-index: 2;
	opacity: 0;
}
.portfolio .portfolio-wrap img {
	transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
	font-size: 20px;
	color: #fff;
	font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
	text-align: center;
	z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
	color: #fff;
	margin: 0 5px 0 0;
	font-size: 28px;
	display: inline-block;
	transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
	color: #6ec083;
}
.portfolio .portfolio-wrap:hover::before {
	opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
	transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
	opacity: 1;
}
/*--------------------------------------------------------------

# Team

--------------------------------------------------------------*/

.team .member {
	text-align: center;
	margin-bottom: 20px;
	box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
	padding: 30px 20px;
	background: #fff;
}
.team .member img {
	max-width: 60%;
	border-radius: 50%;
	margin: 0 0 30px 0;
}
.team .member h4 {
	font-weight: 700;
	margin-bottom: 2px;
	font-size: 18px;
}
.team .member span {
	font-style: italic;
	display: block;
	font-size: 13px;
}
.team .member p {
	padding-top: 10px;
	font-size: 14px;
	font-style: italic;
	color: #aaaaaa;
}
.team .member .social {
	margin-top: 15px;
}
.team .member .social a {
	color: #919191;
	transition: 0.3s;
}
.team .member .social a:hover {
	color: #ff7f00;
}
.team .member .social i {
	font-size: 18px;
	margin: 0 2px;
}
/*--------------------------------------------------------------

# Contact

--------------------------------------------------------------*/

.contact .info{
	border-top: 3px solid #ff7f00;
	border-bottom: 3px solid #ff7f00;
	padding:30px 30px 10px 30px;
	background: #fff;
	width: 100%; margin:0 0 25px;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
 .map_area{
	border: 5px solid #fff;
	padding:0;
	background: #fff;
	width: 100%; margin:0 0 25px;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
 .map_area h4{ width:100%; float:left; padding:10px 15px; font-size:24px; color:#ff7f00; font-weight:700; margin:0; }
 .map_area iframe{ width:100%; height:360px;}
.contact .info i {
	font-size: 20px;
	color: #ff7f00;
	float: left;
	width: 44px;
	height: 44px;
	background: #eaf6ed;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}
.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #222222;
}
.contact .info p {
	padding: 0 0 10px 60px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #555555;
}
.contact .info .social-links {
	padding-left: 60px;
}
.contact .info .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #333;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	margin-right: 10px;
}
.contact .info .social-links a:hover {
	background: #ff7f00;
	color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
	background: #ff7f00;
	color: #fff;
}
.contact .php-email-form {
	width: 100%;
	border-top: 3px solid #ff7f00;
	border-bottom: 3px solid #ff7f00;
	padding: 30px;
	background: #fff;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .php-email-form .form-group {
	padding-bottom: 8px;
}
.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}
.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}
.contact .php-email-form .error-message br + br {
	margin-top: 25px;
}
.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}
.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}
.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
	border-color: #ff7f00;
}
.contact .php-email-form input {
	height: 44px;
}
.contact .php-email-form textarea {
	padding: 10px 12px; height:100px;
}
.contact .php-email-form button[type="submit"] {
	background: #ff7f00;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
	background: #6ec083;
}
 @-webkit-keyframes animate-loading {
 0% {
 transform: rotate(0deg);
}
 100% {
 transform: rotate(360deg);
}
}
 @keyframes animate-loading {
 0% {
 transform: rotate(0deg);
}
 100% {
 transform: rotate(360deg);
}
}
/*--------------------------------------------------------------

# Breadcrumbs

--------------------------------------------------------------*/

.breadcrumbs {
	padding: 15px 0;
	background: #fbfbfb;
	min-height: 40px;
	margin-top: 122px;
}
 @media (max-width: 992px) {
.breadcrumbs {
	margin-top: 66px;
}
}
.breadcrumbs h2 {
	font-size: 28px;
	font-weight: 300;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}
.breadcrumbs ol li + li {
	padding-left: 10px;
}
.breadcrumbs ol li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: #3c3c3c;
	content: "/";
}
 @media (max-width: 768px) {
.breadcrumbs .d-flex {
	display: block !important;
}
.breadcrumbs ol {
	display: block;
}
.breadcrumbs ol li {
	display: inline-block;
}
}
/*--------------------------------------------------------------

# Portfolio Details

--------------------------------------------------------------*/

.portfolio-details {
	padding-top: 40px;
}
.portfolio-details .portfolio-details-container {
	position: relative;
}
.portfolio-details .portfolio-details-carousel {
	position: relative;
	z-index: 1;
}
.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
	margin-top: 5px;
	text-align: left;
}
.portfolio-details .portfolio-details-carousel .owl-dot {
	display: inline-block;
	margin: 0 10px 0 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}
.portfolio-details .portfolio-details-carousel .owl-dot.active {
	background-color: #ff7f00 !important;
}
.portfolio-details .portfolio-info {
	padding: 30px;
	position: absolute;
	right: 0;
	bottom: -70px;
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	z-index: 2;
}
.portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
	margin-top: 10px;
}
.portfolio-details .portfolio-description {
	padding-top: 50px;
}
.portfolio-details .portfolio-description h2 {
	width: 50%;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
	padding: 0 0 0 0;
}
 @media (max-width: 992px) {
.portfolio-details .portfolio-description h2 {
	width: 100%;
}
.portfolio-details .portfolio-info {
	position: static;
	margin-top: 30px;
}
}
/*--------------------------------------------------------------

# Footer

--------------------------------------------------------------*/

/*footer*/

.col_white_amrc {
	color: #fff;
}
footer {
	width: 100%;
	background-color: #263238;
	min-height: 250px;
	padding: 10px 0px 25px 0px;
}
.pt2 {
	padding-top: 40px;
	margin-bottom: 20px;
}
footer p {
	font-size: 13px;
	color: #ccc;
	padding-bottom: 0px;
	margin-bottom: 8px;
}
.mb10 {
	padding-bottom: 15px;
}
.footer_ul_amrc {
	margin: 0px;
	list-style-type: none;
	font-size: 14px;
	padding: 0px 0px 10px 0px;
}
.footer_ul_amrc li {
	padding: 0px 0px 5px 0px;
}
.footer_ul_amrc li a {
	color: #ccc;
}
.footer_ul_amrc li a:hover {
	color: #ff7f00;
	text-decoration: none;
}
.fleft {
	float: left;
}
.padding-right {
	padding-right: 10px;
}
.footer_ul2_amrc {
	margin: 0px;
	list-style-type: none;
	padding: 0px;
}
.footer_ul2_amrc li p {
	display: table;
}
.footer_ul2_amrc li a:hover {
	text-decoration: none;
}
.footer_ul2_amrc li i {
	margin-top: 5px;
}
.bottom_border {
	border-bottom: 1px solid #323f45;
	padding-bottom: 20px;
}
.foote_bottom_ul_amrc {
	list-style-type: none;
	padding: 0px;
	display: table;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
.foote_bottom_ul_amrc li {
	display: inline;
}
.foote_bottom_ul_amrc li a {
	color: #999;
	margin: 0 12px;
}
.social_footer_ul {
	display: table;
	margin: 15px auto 0 auto;
	list-style-type: none;
}
.social_footer_ul li {
	padding-left: 20px;
	padding-top: 10px;
	float: left;
}
.social_footer_ul li a {
	color: #ccc;
	border: 1px solid #ccc;
	padding: 8px;
	border-radius: 50%;
}
.social_footer_ul li i {
	width: 20px;
	height: 20px;
	text-align: center;
}
.box20,  .box20 .icon li a {
	overflow: hidden;
}
.box20 {
	box-shadow: 0 0 5px #a3a3a3;
}
.box20 .post,  .box20 .title {
	text-transform: capitalize;
	width: 60%;
}
.box20 {
	position: relative;
}
.box20:after,  .box20:before {
	position: absolute;
	content: "";
}
.box20:before {
	width: 80%;
	height: 220%;
	background: #ff7f00;
	top: -50%;
	left: -100%;
	z-index: 1;
	transform: rotate(25deg);
	transform-origin: center top 0;
	transition: all 0.5s ease 0s;
}
.box20:hover:before {
	left: 10%;
}
.box20:after {
	width: 55%;
	height: 175%;
	background-color: rgba(0, 0, 0, 0.35);
	bottom: -1000%;
	left: 53%;
	transform: rotate(-33deg);
	transform-origin: center bottom 0;
	transition: all 0.8s ease 0s;
}
.box20 .box-content,  .box20 .icon {
	width: 100%;
	padding: 0 20px;
	position: absolute;
	left: 0;
	z-index: 2;
	transition: all 1.1s ease 0s;
}
.box20:hover:after {
	bottom: -70%;
}
.box20 img {
	width: 100%;
	height: auto;
}
.box20 .box-content {
	top: -100%;
	color: #fff;
}
.box20:hover .box-content {
	top: 30px;
}
.box20 .title {
	font-size: 20px;
	margin-top: 10px;
}
.box20 .icon li a,  .box20 .post {
	display: inline-block;
	font-size: 14px;
}
.box20 .post {
	margin-top: 5px;
}
.box20 .icon {
	list-style: none;
	margin: 0;
	bottom: -100%;
}
.box20:hover .icon {
	bottom: 25px;
}
.box20 .icon li {
	display: inline-block;
}
.box20 .icon li a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	background: #ff0000;
	border-radius: 50%;
	margin: 0 3px;
	color: #fff;
	text-align: center;
	transition: all 0.5s ease 0s;
}
.box20 .icon li a:hover {
	background: #fff;
}
.box20 .button {
	background-color: #8e909b;
	border-radius: 3px;
	display: inline-block;
	padding: 6px 12px;
	margin-top: 10px;
}
.box20 .button:hover {
	background-color: #000000;
}
.box20 a,  box20 a:link,  box20 a:visited,  box20 a:hover,  box20 a:active {
	color: #ffffff !important;
}
.icon {
	display: inline-block;
	height: 60px;
	width: auto;
}
.fas {
	font-size: 32px;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 100px;
	height: 55px;
	width: 55px;
	line-height: 55px;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}
.circle-icon {
	background: rgba(0, 0, 0, 0.1);
	width: 66px;
	height: 66px;
	border-radius: 50%;
	text-align: center;
	font-size: 50px;
	vertical-align: middle;
	padding: 5px;
}
h2.sector {
	font-size: 26px;
	color: #555555;
}
.box20 {
	margin-bottom: 36px;
	border-radius: 15px;
}
 @media only screen and (max-width: 990px) {
.box20 {
	margin-bottom: 30px;
}
.box20 .title {
	font-size: 16px;
}
}
 @media only screen and (max-width: 479px) {
.box20 .title {
	font-size: 16px;
}
}
.counter {
	padding: 20px 0;
	border-radius: 5px;
}
.counter i {
	font-size: 40px;
	color: #ff7f00;
}
.count-title {
	font-size: 40px;
	font-weight: normal;
	margin-top: 10px;
	margin-bottom: 0;
	text-align: center;
}
.count-text {
	font-size: 13px;
	font-weight: normal;
	margin-top: 10px;
	margin-bottom: 0;
	text-align: center;
}
.box16 {
	/*text-align: center;*/

	color: #fff;
	position: relative;
}
.box16 .box-content,  .box16:after {
	width: 100%;
	position: absolute;
	left: 0;
}
.box16:after {
	content: "";
	height: 100%;
	background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0, rgba(0, 0, 0, 0.08) 69%, rgb(0 0 0 / 0%) 100%);
	top: 0;
	transition: all 0.5s ease 0s;
}
.box16 .post,  .box16 .title {
	transform: translateY(145px);
	transition: all 0.4s cubic-bezier(0.13, 0.62, 0.81, 0.91) 0s;
}
.box16:hover:after {
	background: linear-gradient( to bottom, rgb(255 127 0), rgb(255 127 0));
 );
}
.box16 {
	min-height: 400px;
	max-height: 800px;
}
.box16 .box-content {
	padding: 20px;
	margin-bottom: 20px;
	bottom: 0;
	z-index: 1;
}
.box16 .title {
	font-size: 34px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.box16 .box-content a {
	border: 2px solid #fff;
	border-radius: 5px;
	padding: 10px 20px;
	color: #fff;
	margin-top: 20px;
}
.box16 .post {
	display: block;
	padding: 8px 0;
	font-size: 15px;
}
.box16 .social li a,  .box17 .icon li a {
	border-radius: 50%;
	font-size: 20px;
	color: #fff;
}
.box16:hover .post,  .box16:hover .title {
	transform: translateY(0);
}
.box16 .social {
	list-style: none;
	padding: 0 0 5px;
	margin: 40px 0 25px;
	opacity: 0;
	position: relative;
	transform: perspective(500px) rotateX(-90deg) rotateY(0) rotateZ(0);
	transition: all 0.6s cubic-bezier(0, 0, 0.58, 1) 0s;
}
.box16:hover .social {
	opacity: 1;
	transform: perspective(500px) rotateX(0) rotateY(0) rotateZ(0);
}
 @media only screen and (max-width: 990px) {
.box16 {
	margin-bottom: 30px;
}
}
#hovimg {
	background-image: url(../../assets/img/image1.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 6em;
	padding-bottom: 4em;
}
#hovimg .box16 img {
width:100%; height:260px; object-fit:cover;
    
}
#hovimg h3, #hovimg h2{ color:#fff ;}
.about_us {
	width: 100%;
	padding: 50px 0;
	text-align: center;
}
.about_us h2 {
	font-size: 36px;
	text-transform: uppercase;
	font-weight: 700;
}
.about_us ul {
	width: 100%;
	float: left;
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: space-between;
	padding: 0;
	margin: 20px 0;
}
.about_us ul li {
	flex: 1;
	list-style: none;
	padding: 15px;
	margin: 0 10px;
}
.about_us figure {
	width: 100%;
	float: left;
	margin: 0;
	margin: 10px 0 10px;
}
.about_us figure i {
	font-size: 60px;
	color: #ff7f00;
}
.about_us ul li:nth-child(2) {
	background: #f9f9f9;
}
.about_us ul li h3 {
	font-size: 20px;
	font-weight: 700;
}
.about_us ul li p {
	font-size: 14px;
	line-height: 24px;
	margin: 0;
}
.page-banner {
	background-image: url(../img/about.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	margin: 125px 0 0;
	min-height: 300px;
	padding: 90px 0 0;
}
.page-banner::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(0,0,0,.5);
	top: 0;
}
.breadcrumb {
	background: transparent;
	margin-bottom: 0px;
	padding: 30px 0px;
	text-align: center;
	position: relative;
	z-index: 10;
}
.breadcrumb h1 {
	color: #fff;
	font-size: 48px;
	width: 100%; text-transform:capitalize;
} 
.breadcrumb ul {
	width: 100%;
	text-align: center;
}
.breadcrumb ul li {
	padding-right: 18px;
	display: inline-block;
	list-style: none;
	color: #eb5e28;
}
.breadcrumb ul li a {
	color: #eb5e28;
}
.inner_page figure {
	width: 100%;
	float: left;
	margin: 0;
	margin: 0 0 10px;
}
.inner_page figure img {
	width: 100%;
}
.inner_page figure i {
	font-size: 48px;
	color: #ff7f00;
}
.inner_page ul {
	width: 100%;
	float: left;
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: space-between;
	padding: 0;
	margin: 0px 0;
}
.inner_page ul li {
	flex: 0 0 100%;
	list-style: none;
	padding: 20px;
	text-align: center;
	margin: 0 0 25px 0px;
	background: #f9f9f9;
}
.inner_page ul li p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	text-align: justify;
	line-height: 24px;
}
.inner_page ul li h3 {
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	color: #000;
}
.product_listing {
	width: 100%;
	padding: 50px 0 50px 0;
}
.sort_by {
	width: 100%;
	float: left;
	text-align: right;
	padding-right: 15px;
}
.product_listing h2 {
	width: 100%;
	float: left;
	margin: 0 0 15px;
	font-size: 32px;
	padding-left: 15px; text-transform:capitalize;
	font-weight: 700;
	border-left: solid 4px #ff7f00;
}
.product_listing p {
	margin: 0 0 20px;
	font-size: 16px;
	font-weight: 500;
	text-align: justify;
	line-height: 26px;
}
.product_listing h3 {
	width: 100%;
	float: left;
	margin: 0 0 0px;
	font-size: 24px;
	font-weight: 700;
	color: #ff7f00;
}
.product_listing ul.cont_part {
	margin: 0 0 20px;
	font-size: 16px;
	font-weight: 500;
	text-align: justify;
	line-height: 26px;
	padding: 0 0 0 20px;
	width: 100%;
	float: left;
}
.product_listing ul.listing {
	width: 100%;
	float: left;
	margin: 0px 0 0;
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	list-style: none;
	justify-content: space-between;
}
.product_listing ul.listing li {
	flex: 0 0 32%;
	text-align: center;
	margin: 15px 0%; transition:ease-in .3s;
	border: solid 1px #f1f1f1;
}
.product_listing ul.listing li:hover{ box-shadow:0 0 10px 0 #ccc;}
.product_listing ul.listing li figure {
	width: 100%;
	float: left;
	margin: 0;
	overflow: hidden;
	padding: 10px;
}
.product_listing ul.listing li figure img {
	max-width: 100%;
	transition: ease-in .3s; max-height:170px;
}
.product_listing ul.listing li:hover img {
	transform: scale(1.1);
}
.product_listing ul.listing li .pro_dtls {
	width: 100%;
	float: left;
	padding: 15px;
}
.product_listing ul.listing li h3 {
	width: 100%;
	float: left;
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 20px;
	text-transform: uppercase;
}
.product_listing ul.listing li a h3 {
	color: #ff7f00;
}
.product_listing ul.listing li:hover a h3{ color:#000;}
.product_listing ul.listing li .pro_dtls .rating {
	width: 100%;
	float: left;
	text-align: center;
	color: #fad31e
}
.product_listing ul.listing li .pro_dtls label.price {
	width: 100%;
	float: left;
	font-weight: 700;
	margin: 10px 0;
	color: #323232;
}
.product_listing ul.listing li .pro_dtls button {
	width: 100%;
	background: #ec1d1d;
	height: 35px;
	text-transform: uppercase;
	border: none;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}
.product_listing ul.listing li .pro_dtls button:hover {
	background: #434343;
}
.prodct_dtls_area {
	width: 100%;
	float: left;
	padding: 50px 0 50px 0;
}
.pro_img {
	width: 100%;
	float: left;
	border: solid 1px #eee;
	text-align: center;
	padding: 20px;
}

.pro_img img{ max-height:300px; width:auto; max-width:100%;}

.top_srch{ width:100%; float:left; display:flex; align-items:center; justify-content:space-between;}
.top_srch input{ width:300px; border:solid 1px #eee; padding:0 15px; height:45px; border-radius:3px;  }

.modal-body{ max-height:500px; overflow-y:scroll;}
.modal-body .forms_field{ width:100%; float:left;}
.modal-body .forms_field ul{ width:100%; float:left; margin:0 0 15px;}
.modal-body .forms_field ul li{ width:100%; float:left; padding:8px 0; list-style:none;}
.modal-body .forms_field ul li label{ width:100%; font-weight:700;}
.modal-body .forms_field ul li select{ width:auto; height:40px; border:solid 1px #ccc; border-radius:3px; padding:0 15px;}
.modal-body .forms_field ul li select.full{ width:100%;}
.modal-body .forms_field ul li input{ width:100%; height:40px; border:solid 1px #ccc; border-radius:3px; padding:0 15px;}
.modal-body .forms_field ul li input[type=checkbox] { width:15px; display:inline-block; line-height:15px; padding:0; margin:0 5px 0 0; height:15px;}
.modal-body .forms_field ul li input[type="file" i] { line-height:31px;}
.modal-body .forms_field ul li textarea{ width:100%; height:100px; border:solid 1px #ccc; border-radius:3px; padding:15px;}
.modal-body .forms_field button{ width:auto; float:right; background:#005082; border:none; color:#fff; font-size:16px; font-weight:700; padding:8px 15px; cursor:pointer }
.modal-body .forms_field button.cancel_btn{ background:#a5a5a5; margin-right:10px;}

.work_feed_area .work_listing{ width:100%; float:left; padding:0px; border:solid 1px #f1f1f1; margin:0px 0;}
.work_feed_area .work_listing h4{ width:auto; float:left; font-size:15px;  font-weight:700; color:#000; margin:0; }
.work_feed_area .work_listing .icon_rt{ width:auto; float:right;}
.work_feed_area .work_listing .icon_rt a{ width:auto; padding:7px 12px; display:inline-block; border-radius:50%; box-shadow:0 0 5px 0 #ccc; margin:0 3px; font-size:18px; color:#005082;}
.work_feed_area .work_listing .price_top{ width:100%; float:left; padding:5px 0;}
.work_feed_area .work_listing .work_dtls{ width:100%; float:left; padding:5px 0;}
.work_feed_area .work_listing .work_tag{ width:100%; float:left; margin:0 0 15px;}
.work_feed_area .work_listing .work_tag li{ width:auto; display:inline-block; font-size:15px;}
.work_feed_area .work_listing .work_tag li a{ background:#ccc; border-radius:3px; width:auto; padding:3px 10px; color:#000;}
.work_feed_area .work_listing .location_area{ width:100%; float:left; margin:10px 0;}
.work_feed_area .work_listing .location_area li{ width:auto; display:inline-block; font-size:15px; margin:0 25px  0 0;}
.work_feed_area .work_listing .location_area li i{ color:#005082; font-size:20px;}
.work_feed_area .work_listing .cta_area{ width:100%; float:left; margin:10px 0;}
.work_feed_area .work_listing  a.aplly{ width:auto; display:inline-block; padding:7px 15px; font-size:14px; background:#ff7f00; color:#fff; font-weight:700; } 
.work_feed_area .work_listing td{ vertical-align:middle;}

.pro_list_ind{}
.pro_list_ind .box20{ border-radius:0; box-shadow:none; background:#263238;}
.pro_list_ind .box20 img{ max-height:200px; object-fit:cover; width:100%;}
.pro_list_ind .box20:before, .pro_list_ind .box20:after{ display:none;}
.pro_list_ind .box20 .box-content{ position:static !important; max-width:100% !important;}
.pro_list_ind .box20 .button{ background:#ff7f00 !important;}
.social-links{ float:right;}
#topbar .social-links a{ font-size:18px;}
#topbar .social-links a.twitter{ color:#60b8ff;}
#topbar .social-links a.facebook{ color:#3e54aa;}
#topbar .social-links a.instagram{ color: #ca165c;
font-weight:bold;}
#topbar .social-links a.skype{ color:#2aade3;}
#topbar .social-links a.linkedin{ color:#0274b3;}

figure.carrer_img img{ width:100%; height:auto;}

.news_listing{ width:100%; float:left; display:flex; flex-flow:row wrap; margin:15px 0;}
.news_listing figure{flex:0 0 25%; margin:0;}
.news_listing figure img{ width:100%; height:100%; object-fite:cover;}
.news_listing .rt_dtls{ flex:0 0 75%; background:#f7f7f7; padding:15px;}
.news_listing .rt_dtls h3{ width:100%; float:left; font-size:18px; margin:0 0 10px; font-weight:700;}
.news_listing .rt_dtls p{ width:100%; float:left; font-size:14px; margin:0 0 0px; line-height:24px; font-weight:500;}

.board_member{ width:100%; float:left; margin:10px 0;}
.board_member figure{ width:100%; float:left; margin:0;}
.board_member figure img{ width:100%; height:auto;}
.board_member .box_content{ width:100%; float:left; background:#ff7f00; color:#fff; padding:10px; text-align:center;}
.board_member .box_content h3{ width:100%; float:left; font-size:18px; font-weight:700; margin:0 0 0;}
.board_member .box_content p{ width:100%; float:left; font-size:14px; margin:0;}
