
html,
body {
	height: 100%;
	scroll-behavior: smooth;
}



h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #fff;
    font-weight: 600;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 14px;
	color: #fff;
	line-height: 1.6;
}

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
-----------------------*/

.section-title {
	text-align: center;
}

.section-title h2 {
	font-size: 36px;
	color: #444;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.spad {
	/* padding-top: 105px; */
	/* padding-bottom: 105px; */
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

/* buttons */

.site-btn {
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: 600;
	min-width: 167px;
	padding: 18px 47px 14px;
	border-radius: 50px;
	text-transform: uppercase;
	background: #f54d07;
	color: #fff;
	line-height: normal;
	cursor: pointer;
	text-align: center;
}

.site-btn:hover {
	color: #fff;
}

.site-btn.sb-white {
	background: #fff;
	color: #111111;
}

.site-btn.sb-line {
	background: transparent;
	color: #fff;
	-webkit-box-shadow: inset 0 0 0 1px #f54d07;
	box-shadow: inset 0 0 0 1px #f54d07;
}

.site-btn.sb-dark {
	background: #413a3a;
}

.site-btn.sb-dark.sb-line {
	background-color: transparent;
	color: #111;
	-webkit-box-shadow: inset 0 0 0 1px #f54d07;
	box-shadow: inset 0 0 0 1px #f54d07;
}
button.site-btn.sb-line.sb-dark:hover {
	background: #f54d07;
	color: #fff;
	transition: all .3s linear;
}
/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.elements-section {
	padding-top: 100px;
}

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

.element {
	margin-bottom: 100px;
}

.element:last-child {
	margin-bottom: 0;
}

/* Accordion */

.accordion-area {
	margin-top: 50px;
	border-top: 2px solid #e1e1e1;
}

.accordion-area .panel {
	border-bottom: 2px solid #e1e1e1;
}

.accordion-area .panel-link {
	background-image: url("../img/arrow-down.png");
	background-repeat: no-repeat;
	background-position: right 10px top 30px;
}

.faq-accordion.accordion-area .panel-link,
.faq-accordion.accordion-area .panel-link.active.collapsed {
	padding: 17px 100px 17px 20px;
}

.faq-accordion.accordion-area .panel-link:after {
	right: 44px;
}

.accordion-area .panel-header .panel-link.collapsed {
	background-image: url("../img/arrow-down.png");
}

.accordion-area .panel-link.active {
	background-image: url("../img/arrow-up.png");
}

.accordion-area .panel-link.active {
	background-color: transparent;
}

.accordion-area .panel-link,
.accordion-area .panel-link.active.collapsed {
	text-align: left;
	position: relative;
	width: 100%;
	font-size: 14px;
	font-weight: 700;
	color: #414141;
	padding: 0;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	border: none;
	min-height: 69px;
	background-color: transparent;
	border-radius: 0;
}

.accordion-area .panel-body {
	padding-top: 10px;
}

.accordion-area .panel-body p {
	color: #8f8f8f;
	margin-bottom: 25px;
	line-height: 1.8;
}

.accordion-area .panel-body p span {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #f51167;
}

.accordion-area .panel-body img {
	margin-bottom: 25px;
}

.accordion-area .panel-body h4 {
	font-size: 18px;
	margin-bottom: 20px;
}

/*------------------
  Header section
---------------------*/

.header-top {
	padding: 18px 0 14px;
}

.site-logo {
	display: inline-block;
}

.header-search-form {
	width: 100%;
	position: relative;
	padding: 0 10px;
	text-align: center;
}

.header-search-form input {
	width: 100%;
	height: 44px;
	font-size: 14px;
	border-radius: 50px;
	border: none;
	padding: 0 19px;
	background: #f0f0f0;
}

.header-search-form button {
	position: absolute;
	height: 100%;
	right: 18px;
	top: 0;
	font-size: 26px;
	color: #000;
	border: none;
	cursor: pointer;
	background-color: transparent;
}

.user-panel .up-item {
	font-size: 14px;
	margin-top: 6px;
}

.user-panel .up-item i {
	font-size: 22px;
}

.user-panel .up-item a {
	font-size: 14px;
	color: #444;
}
.user-panel a {
	color: #444;
}
.user-panel .up-item:first-child {
	margin-right: 29px;
}

.shopping-card {
	display: inline-block;
	position: relative;
}

.shopping-card span {
	position: absolute;
	top: -4px;
	left: 100%;
	height: 16px;
	min-width: 16px;
	color: #fff;
	font-size: 13px;
	background: #f51167;
	text-align: center;
	border-radius: 30px;
	padding: 0 2px;
	margin-left: -7px;
}

.main-navbar {
	background: #ffffff;
	/* position: absolute; */
	width: 100%;
	z-index: 999;
}

.slicknav_menu {
	display: none;
}

.main-menu {
	list-style: none;
	/* display: inline-block; */
	text-align: center;
}

.main-menu li {
	display: inline-block;
	position: relative;
}

.main-menu li a {
	display: inline-block;
	font-size: 16px;
	color: #0f1111;
	margin-right: 50px;
	line-height: 1;
	padding: 25px 0;
	position: relative;
}

.main-menu li a .new {
	position: absolute;
	top: -8px;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: #f51167;
	line-height: 1;
	text-transform: uppercase;
	left: calc(50% - 21px);
	padding: 5px 9px 1px;
	border-radius: 15px;
	width: 42px;
}

.main-menu li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
}

.main-menu li:hover>a {
	color: #f54d07;
	transition: all .3s linear;
}

.main-menu .sub-menu {
	position: absolute;
	list-style: none;
	width: 220px;
	left: 0;
	top: 100%;
	padding: 20px 0;
	visibility: hidden;
	opacity: 0;
	margin-top: 50px;
	background: #fff;
	z-index: 99;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
	box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
}

.main-menu .sub-menu li {
	display: block;
}

.main-menu .sub-menu li a {
	display: block;
	color: #000;
	margin-right: 0;
	padding: 8px 20px;
}

.main-menu .sub-menu li a:hover {
	color: #f54d07;
	transition: all .3s linear;
}

.nav-switch {
	display: none;
}

/* ----------------
  Features
---------------------*/

.hero-section {
	padding-bottom: 54px;
}

.hero-slider .hs-item {
	position: relative;
}

.hero-slider .hs-item span {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 3px;
	margin-bottom: 5px;
	display: block;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item h2 {
	font-size: 60px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item p {
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 35px;
	position: relative;
	top: 100px;
	opacity: 0;
}

.hero-slider .hs-item .site-btn {
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item .sb-line {
	margin-right: 5px;
}

.hero-slider .hs-item .container {
    position: relative;
    /* padding-top: 170px; */
    top: 42%;
    left: 0%;
}

.hero-slider .hs-item .offer-card {
	position: absolute;
	right: 0;
	top: 226px;
	width: 162px;
	height: 162px;
	border-radius: 50%;
	background: #f51167;
	text-align: center;
	padding-top: 20px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
}

.hero-slider .hs-item .offer-card:after {
	position: absolute;
	content: "";
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 1px solid #f96790;
	left: 5px;
	top: 5px;
	border-radius: 50%;
}

.hero-slider .hs-item .offer-card span {
	font-size: 18px;
	text-transform: lowercase;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item .offer-card h2 {
	font-size: 72px;
	font-weight: 400;
	line-height: 1;
}

.hero-slider .hs-item .offer-card p {
	text-transform: uppercase;
	line-height: 1;
	font-size: 14px;
}

.hero-slider .slider-nav-warp {
	max-width: 1145px;
	bottom: 0;
	margin: -78px auto 0;
}

.hero-slider .slider-nav {
	display: inline-block;
	padding: 0 38px;
	position: relative;
}

.hero-slider .owl-dots {
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 9px;
}

.hero-slider .owl-dots .owl-dot {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 15px;
	margin-right: 10px;
	opacity: 0.25;
}

.hero-slider .owl-dots .owl-dot.active {
	opacity: 1;
}

.hero-slider .owl-dots .owl-dot:last-child {
	margin-right: 0;
}

.hero-slider .owl-nav button.owl-next,
.hero-slider .owl-nav button.owl-prev {
	font-size: 27px;
	position: absolute;
	color: #fff;
	opacity: 0.5;
	bottom: -20px;
}

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

.hero-slider .owl-nav button.owl-prev {
	left: 0;
}

.hero-slider .owl-item.active .hs-item h2,
.hero-slider .owl-item.active .hs-item span,
.hero-slider .owl-item.active .hs-item p,
.hero-slider .owl-item.active .hs-item .site-btn {
	top: 0;
	opacity: 1;
}

.hero-slider .owl-item.active .hs-item span {
	-webkit-transition: all 0.5s ease 0.2s;
	-o-transition: all 0.5s ease 0.2s;
	transition: all 0.5s ease 0.2s;
}

.hero-slider .owl-item.active .hs-item h2 {
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}

.hero-slider .owl-item.active .hs-item p {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

.hero-slider .owl-item.active .hs-item .site-btn {
	-webkit-transition: all 0.5s ease 0.8s;
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}

.hero-slider .owl-item.active .hs-item .offer-card {
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 0.5s ease 1s;
	-webkit-transition: all 0.5s ease 1s;
	-o-transition: all 0.5s ease 1s;
	transition: all 0.5s ease 1s;
}

.slide-num-holder {
	float: right;
	z-index: 1;
	color: #fff;
	position: relative;
	font-size: 24px;
	font-weight: 700;
	position: relative;
	margin-top: -22px;
}

.slide-num-holder span:first-child {
	margin-right: 41px;
}

.slide-num-holder:after {
	position: absolute;
	content: "";
	height: 30px;
	width: 1px;
	background: #fff;
	left: 50%;
	top: 0;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}

/* ------------------
  Features section
---------------------*/

.feature {
	text-align: center;
	background: #f8f8f8;
	height: 100%;
}

.feature:nth-child(2) {
	background: #f54d07;
}

.feature:nth-child(2) h2 {
	color: #fff;
}

.feature .feature-inner {
	padding: 20px 25px;
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
}

.feature .feature-icon {
	display: inline-block;
	margin-right: 15px;
}

.feature h2 {
	font-size: 24px;
	text-transform: uppercase;
	display: inline-block;
	color: #444;
}

/* ----------------------
  Latest product section
------------------------*/

.top-letest-product-section {
	/* padding-top: 70px; */
	/* padding-bottom: 25px; */
}

.top-letest-product-section .section-title {
	margin-bottom: 35px;
	padding-top: 45px;
}

.product-slider .owl-nav {
	position: absolute;
	top: calc(50% - 60px);
	width: 100%;
	left: 0;
}

.product-slider .owl-nav button.owl-next,
.product-slider .owl-nav button.owl-prev {
	color: #f54d07;
	font-size: 42px;
	position: relative;
}

.product-slider .owl-nav button.owl-next {
	float: right;
	right: -92px;
}

.product-slider .owl-nav button.owl-prev {
	float: left;
	left: -92px;
}

.product-item .pi-pic {
	position: relative;
	display: block;
}

.product-item .tag-new,
.product-item .tag-sale {
	position: absolute;
	right: 16px;
	top: 14px;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: #50e550;
	line-height: 1;
	text-transform: uppercase;
	padding: 5px 9px 1px;
	border-radius: 15px;
	width: 42px;
}

.product-item .tag-sale {
	text-align: center;
	padding: 5px 0px 1px;
	min-width: 65px;
	background: #f51167;
}

.product-item .pi-links {
	width: 100%;
	position: absolute;
	right: 0;
	bottom: 18px;
	z-index: 9;
	padding-right: 15px;
	text-align: right;
}

.product-item .pi-links a {
	display: inline-table;
	width: 36px;
	height: 36px;
	background: #fff;
	border-radius: 60px;
	font-size: 18px;
	line-height: 18px;
	padding-top: 9px;
	overflow: hidden;
	color: #000;
	position: relative;
	-webkit-box-shadow: 1px 0 32px rgba(0, 0, 0, 0.2);
	box-shadow: 1px 0 32px rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	text-align: center;
}

.product-item .pi-links a i {
	display: inline-block;
	color: #000;
}

.product-item .pi-links a.add-card {
	padding-top: 8px;
}

.product-item .pi-links a.add-card span {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	position: absolute;
	right: 19px;
	top: 20px;
	opacity: 0;
}

.product-item .pi-links a.add-card:hover {
	width: 148px;
	padding: 8px 18px 0;
	text-align: left;
}

.product-item .pi-links a.add-card:hover span {
	opacity: 1;
	top: 10px;
	-webkit-transition: all 0.4s ease 0.3s;
	-o-transition: all 0.4s ease 0.3s;
	transition: all 0.4s ease 0.3s;
}

.product-item .pi-text {
	padding-top: 22px;
	height: 87px;
	background: #ddd;
	text-align: center;
}

.product-item .pi-text h6 {
	float: right;
	padding-left: 40px;
	overflow: hidden;
	font-weight: 700;
	color: #111111;
}

.product-item .pi-text p {
	font-size: 16px;
	color: #111111;
	margin-bottom: 0;
}

/* -----------------------
  Product filter section
-------------------------*/

.product-filter-section {
	/* padding-bottom: 60px; */
	text-align: center;
	background: #c9c9c9;
}

.product-filter-section .section-title {
	margin-bottom: 35px;
}

.product-filter-menu {
	list-style: none;
	margin: 0 -10px;
	padding-bottom: 15px;
}

.product-filter-menu li {
	margin: 0 10px 10px;
	display: inline-block;
}

.product-filter-menu li a {
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	background: #f54d07;
	display: block;
	width: 100%;
	padding: 10px 34px;
	border-radius: 31px;
}

/* ----------------
  Banner section
---------------------*/

.banner {
	padding: 50px 34px 47px;
	position: relative;
	margin-bottom: 70px;
}

.banner .tag-new {
	position: absolute;
	right: 26px;
	top: 27px;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	background: #50e550;
	line-height: 1;
	text-transform: uppercase;
	padding: 7px 16px 1px;
	border-radius: 80px;
}

.banner span {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 3px;
	margin-bottom: 5px;
	display: block;
}

.banner h2 {
	font-size: 48px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
	color: #282828;
}

/* ----------------
  Footer section
---------------------*/

.footer-section {
	background: #282828;
	padding-top: 30px;
	/* margin-top: 30px; */
}

.footer-logo {
	padding-bottom: 60px;
}

.footer-widget {
	/* margin-bottom: 70px; */
	overflow: hidden;
}

.footer-widget h2 {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 45px;
}

.footer-widget p {
	color: #fff;
}

.footer-widget.about-widget p {
	/* margin-bottom: 50px; */
	letter-spacing: -0.01em;
}

.footer-widget ul {
	list-style: none;
	float: left;
	margin-right: 37px;
}

.footer-widget ul:last-child {
	margin-right: 0;
}

.footer-widget ul li a {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	color: #fff;
	margin-bottom: 6px;
}

.footer-widget ul li a:after {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	left: 0;
	top: 8px;
	border: 1px solid #f54d07;
	border-radius: 50%;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.footer-widget ul li a:hover {
	color: #fff;
}

.footer-widget ul li a:hover:after {
	width: 7px;
	height: 7px;
	top: 6px;
	background: #f54d07;
}

.fw-latest-post-widget .lp-item {
	margin-bottom: 30px;
	display: block;
	overflow: hidden;
}

.fw-latest-post-widget .lp-thumb {
	width: 64px;
	height: 64px;
	float: left;
	margin-right: 22px;
}

.fw-latest-post-widget .lp-content {
	overflow: hidden;
	padding-top: 2px;
}

.fw-latest-post-widget .lp-content h6 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	/* opacity: 0.25; */
	color: #fff !important;
	margin-bottom: 1px;
}

.fw-latest-post-widget .lp-content span {
	display: block;
	font-size: 12px;
	color: #fff;
	margin-bottom: 4px;
}

.fw-latest-post-widget .lp-content .readmore {
	font-size: 12px;
	color: #f54d07;
}

.contact-widget .con-info span {
	float: left;
	color: #f54d07;
	margin-right: 15px;
	overflow: hidden;
}

.social-links-warp {
	border-top: 2px solid #3b3535;
	padding: 8px 0;
}

.social-links a {
	margin-right: 35px;
	display: inline-block;
	/* color: #333 !important; */
}

.social-links a:last-child {
	margin-right: 0;
}

.social-links a i {
	font-size: 30px;
	color: #d7d7d7;
	float: left;
	margin-right: 19px;
	overflow: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.social-links a span {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #444;
	padding-top: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.social-links a.instagram:hover i {
	color: #2F5D84;
}

.social-links a.google-plus:hover i {
	color: #E04B37;
}

.social-links a.twitter:hover i {
	color: #5abed6;
}

.social-links a.pinterest:hover i {
	color: #CD212D;
}

.social-links a.facebook:hover i {
	color: #39599F;
}

.social-links a.twitter:hover i {
	color: #5abed6;
}

.social-links a.youtube:hover i {
	color: #D12227;
}

.social-links a.tumblr:hover i {
	color: #37475E;
}

.social-links a:hover span {
	color: #282828;
}

/* --------------
  Other Pages
------------------*/

.page-top-info {
	/* background: #f8f7f7; */
	/* padding: 60px 0 70px; */
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 50vh;
}

.page-top-info h4 {
	color: #414141;
	font-weight: 700;
	text-transform: uppercase;
}

.site-pagination {
	font-size: 14px;
	font-weight: 600;
	color: #414141;
}

.site-pagination a {
	display: inline-block;
	font-size: 14px;
	color: #414141;
}

/* --------------
  Category page
------------------*/

.filter-widget {
	margin-bottom: 100px;
	padding-top: 30px;
}

.filter-widget .fw-title {
	font-size: 18px;
	font-weight: 700;
	color: #414141;
	text-transform: uppercase;
	margin-bottom: 45px;
}

.category-menu {
	list-style: none;
}

.category-menu li a {
	display: block;
	position: relative;
	font-size: 12px;
	color: #414141;
	border-bottom: 1px solid #ebebeb;
	padding: 12px 0 5px 20px;
}

.category-menu li a span {
	float: right;
}

.category-menu li a:after {
	position: absolute;
	content: "";
	width: 9px;
	height: 9px;
	left: 0;
	top: 13px;
	border: 1px solid #f51167;
	border-radius: 50%;
}

.category-menu li a:hover {
	color: #e4b532;
}

.category-menu li a:hover:after {
	background: #f51167;
}

.category-menu li a:last-child a {
	margin-bottom: 0;
}

.category-menu li .sub-menu {
	list-style: none;
	overflow: hidden;
	height: 0;
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	opacity: 0;
	-webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
	transition: opacity 0.4s, -webkit-transform 0.4s;
	-o-transition: transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

.category-menu li .sub-menu li a {
	padding-left: 45px;
}

.category-menu li:hover>a {
	color: #f51167;
}

.category-menu li.active>.sub-menu {
	display: block;
	height: auto;
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.price-range-wrap .price-range {
	border-radius: 0;
	margin-right: 13px;
	margin-bottom: 28px;
}

.price-range-wrap .price-range.ui-widget-content {
	border: none;
	background: #ebebeb;
	height: 2px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-range {
	background: #ebebeb;
	border-radius: 0;
}

.price-range-wrap .price-range .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
	background: #414141;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
	border: none;
	background: #414141;
	height: 14px;
	width: 14px;
	outline: none;
	top: -6px;
	cursor: ew-resize;
	margin-left: 0;
	border-radius: 0;
	border-radius: 20px;
}

.price-range-wrap .price-range .ui-slider-handle.ui-corner-all.ui-state-default span {
	position: absolute;
	font-size: 14px;
	top: 35px;
}

.price-range-wrap .range-slider {
	color: #444444;
	margin-top: 22px;
}

.price-range-wrap {
	border-bottom: 2px solid #ebebeb;
	padding-bottom: 40px;
	margin-bottom: 50px;
}

.price-range-wrap h4 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	color: #414141;
	margin-bottom: 45px;
}

.price-range-wrap .range-slider .price-input input {
	color: #444444;
	border: none;
	outline: none;
	max-width: 80px;
	pointer-events: none;
}

.price-range-wrap .range-slider .price-input input:nth-child(1) {
	float: left;
}

.price-range-wrap .range-slider .price-input input:nth-child(2) {
	float: right;
}

.fw-color-choose,
.fw-size-choose {
	border-bottom: 2px solid #ebebeb;
	padding-bottom: 40px;
	margin-bottom: 50px;
}

.fw-color-choose .cs-item {
	display: inline-block;
	position: relative;
	margin-right: 14px;
}

.fw-color-choose .cs-item:last-child {
	margin-right: 0;
}

.fw-color-choose label {
	width: 26px;
	height: 26px;
	border-radius: 50px;
	background: #333;
	position: relative;
	cursor: pointer;
}

.fw-color-choose label.cs-gray {
	background: #d7d7d7;
}

.fw-color-choose label.cs-orange {
	background: #6f91ff;
}

.fw-color-choose label.cs-yollow {
	background: #6f91ff;
}

.fw-color-choose label.cs-green {
	background: #8fc99c;
}

.fw-color-choose label.cs-purple {
	background: #bc83b1;
}

.fw-color-choose label.cs-blue {
	background: #9ee7f4;
}

.fw-color-choose label span {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 45px;
	font-size: 11px;
	color: #414141;
}

.fw-color-choose input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.fw-color-choose input[type=radio]:checked+label {
	-webkit-box-shadow: 0 0 0 2px #f51167;
	box-shadow: 0 0 0 2px #f51167;
}

.fw-color-choose input[type=radio]:checked+label span {
	color: #b09d81;
}

.fw-size-choose .sc-item {
	display: inline-block;
	position: relative;
	margin-right: 5px;
}

.fw-size-choose label {
	display: inline-block;
	height: 30px;
	min-width: 30px;
	text-align: center;
	font-size: 14px;
	color: #414141;
	font-weight: 500;
	cursor: pointer;
	border-radius: 50px;
	padding: 7px 6px 0;
}

.fw-size-choose input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.fw-size-choose input[type=radio]:checked+label {
	background: #f51167;
	color: #fff;
}

/* --------------
  Product page
------------------*/

.product-section {
	padding-top: 70px;
	padding-bottom: 65px;
}

.back-link {
	padding-bottom: 50px;
}

.back-link a {
	font-size: 12px;
	color: #414141;
}

.product-pic-zoom {
	margin-bottom: 35px;
}

.product-thumbs-track {
	width: 1200px;
}

.product-thumbs .pt {
	width: 116px;
	height: 116px;
	float: left;
	margin-right: 31px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.product-thumbs .pt:last-child {
	margin-right: 0;
}

.product-thumbs .pt.active:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border: 2px solid #f51167;
	z-index: 1;
}

.product-details .p-title {
	font-size: 18px;
	font-weight: 700;
	color: #414141;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.product-details .p-price {
	font-size: 24px;
	color: #414141;
	font-weight: 700;
	margin-bottom: 20px;
}

.product-details .p-stock {
	font-size: 12px;
	color: #000;
	font-weight: 700;
	color: #414141;
	margin-bottom: 10px;
}

.product-details .p-stock span {
	color: #f51167;
}

.product-details .p-rating {
	margin-bottom: 15px;
}

.product-details .p-rating i {
	color: #f51167;
}

.product-details .p-rating i.fa-fade {
	color: #e6e6e6;
}

.product-details .p-review {
	margin-bottom: 30px;
}

.product-details .p-review a {
	color: #414141;
	font-size: 14px;
	margin-right: 12px;
	margin-left: 12px;
}

.product-details .p-review a:first-child {
	margin-left: 0;
}

.product-details .fw-size-choose {
	border-bottom: none;
	margin-bottom: 30px;
	padding-bottom: 0;
}

.product-details .fw-size-choose p {
	float: left;
	margin-right: 38px;
	text-transform: uppercase;
	font-weight: 700;
	color: #414141;
	padding-top: 10px;
	margin-bottom: 0;
}

.product-details .fw-size-choose label {
	width: 33px;
	height: 33px;
	font-size: 12px;
	border: 2px solid #414141;
}

.product-details .fw-size-choose input[type=radio]:checked+label {
	border: 2px solid #f51167;
}

.product-details .fw-size-choose .disable label {
	border: 2px solid #e1e1e1;
	color: #cacaca;
}

.product-details .site-btn {
	min-width: 190px;
}

.product-details .social-sharing {
	padding-top: 50px;
}

.product-details .social-sharing a {
	color: #d7d7d7;
	margin-right: 23px;
	font-size: 14px;
}

.product-details .social-sharing a:hover {
	color: #414141;
}

.quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 40px;
}

.quantity p {
	float: left;
	margin-right: 15px;
	text-transform: uppercase;
	font-weight: 700;
	color: #414141;
	padding-top: 10px;
	margin-bottom: 0;
}

.quantity .pro-qty {
	width: 94px;
	height: 36px;
	border: 1px solid #ddd;
	padding: 0 15px;
	border-radius: 40px;
	float: left;
}

.quantity .pro-qty .qtybtn {
	width: 15px;
	display: block;
	float: left;
	line-height: 36px;
	cursor: pointer;
	text-align: center;
	font-size: 18px;
	color: #404040;
}

.quantity .pro-qty input {
	width: 28px;
	float: left;
	border: none;
	height: 36px;
	line-height: 40px;
	padding: 0;
	font-size: 14px;
	text-align: center;
	background-color: transparent;
}

.related-product-section {
	padding-bottom: 70px;
}

.related-product-section .section-title h2 {
	font-size: 24px;
	margin-bottom: 60px;
}

/* ----------------
  Cart page
---------------------*/

.scrollbar {
	margin: 80px auto 0;
	width: 100%;
	height: 7px;
	line-height: 0;
	background: #ececec;
	overflow: hidden;
}

.scrollbar .handle {
	width: 100px;
	height: 100%;
	background: #fff;
	cursor: pointer;
}

.scrollbar .handle .mousearea {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 7px;
	background: #b09d81;
	border-radius: 30px;
}

.cart-table {
	padding: 40px 34px 0;
	background: #f0f0f0;
	border-radius: 27px;
	overflow: hidden;
}

.cart-table h3 {
	font-weight: 700;
	margin-bottom: 37px;
}

.cart-table table {
	width: 100%;
	min-width: 442px;
	margin-bottom: 17px;
}

.cart-table table tr th {
	font-size: 12px;
	font-weight: 400;
	color: #414141;
	text-align: center;
	padding-bottom: 25px;
}

.cart-table table tr th.product-th {
	text-align: left;
}

.cart-table table tr th.size-th {
	padding-right: 70px;
}

.cart-table table tr th.quy-th {
	padding-right: 20px;
}

.cart-table .product-col {
	display: table;
	margin-bottom: 19px;
}

.cart-table .product-col img {
	display: table-cell;
	vertical-align: middle;
	float: left;
	width: 73px;
}

.cart-table .product-col .pc-title {
	display: table-cell;
	vertical-align: middle;
	padding-left: 30px;
}

.cart-table .product-col .pc-title h4 {
	font-size: 16px;
	color: #414141;
	font-weight: 700;
	margin-bottom: 3px;
}

.cart-table .product-col .pc-title p {
	margin-bottom: 0;
	font-size: 16px;
	color: #414141;
}

.cart-table .quy-col {
	padding-right: 20px;
}

.cart-table .quantity {
	margin-bottom: 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cart-table .quantity .pro-qty {
	width: 80px;
	background: #fff;
	border-color: #fff;
}

.cart-table .quantity .pro-qty .qtybtn {
	width: 10px;
}

.cart-table .size-col,
.cart-table .total-col {
	text-align: center;
}

.cart-table .size-col h4,
.cart-table .total-col h4 {
	font-size: 18px;
	color: #414141;
	font-weight: 400;
}

.cart-table .size-col h4 {
	padding-right: 70px;
}

.cart-table .total-cost {
	background: #f51167;
	margin: 0 -34px;
	text-align: right;
	padding: 22px 0;
	padding-right: 50px;
}

.cart-table .total-cost h6 {
	line-height: 1;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.cart-table .total-cost h6 span {
	margin-left: 38px;
}

.card-right .site-btn {
	margin-bottom: 14px;
	width: 100%;
	min-height: 57px;
	padding: 23px 47px 14px;
}

.promo-code-form {
	position: relative;
	margin-bottom: 14px;
}

.promo-code-form input {
	width: 100%;
	height: 58px;
	border: 2px solid #f0f0f0;
	padding-left: 24px;
	padding-right: 100px;
	font-size: 16px;
	border-radius: 80px;
}

.promo-code-form button {
	position: absolute;
	right: 24px;
	top: 0;
	height: 100%;
	background-color: transparent;
	border: none;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	color: #f51167;
	cursor: pointer;
}

/* ----------------
  Checkout Page
---------------------*/

.checkout-form .cf-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	border-radius: 50px;
	background: #3b3b3b;
	padding: 21px 29px 20px;
	margin-bottom: 66px;
}

.checkout-form p {
	font-size: 16px;
	color: #414141;
}

.checkout-form h4 {
	font-size: 18px;
	color: #414141;
}

.checkout-form input[type=text] {
	width: 100%;
	height: 44px;
	border: none;
	padding: 0 18px;
	background: #f0f0f0;
	border-radius: 40px;
	margin-bottom: 20px;
	font-size: 14px;
}

.checkout-form .address-inputs {
	margin-bottom: 54px;
}

.address-rb {
	text-align: right;
	margin-bottom: 30px;
}

.address-rb .cfr-item {
	display: inline-block;
}

.cf-radio-btns .cfr-item {
	margin-bottom: 15px;
}

.cf-radio-btns label {
	display: block;
	font-size: 16px;
	color: #414141;
	margin-bottom: 0;
	padding-left: 30px;
	position: relative;
	cursor: pointer;
}

.cf-radio-btns label:after {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	left: 4px;
	top: 8px;
	background: #414141;
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.cf-radio-btns label:before {
	position: absolute;
	content: "";
	width: 13px;
	height: 13px;
	left: 0;
	top: 4px;
	border: 2px solid #e1e1e1;
	border-radius: 40px;
}

.cf-radio-btns input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.cf-radio-btns input[type=radio]:checked+label:after {
	opacity: 1;
}

.shipping-btns {
	margin-bottom: 50px;
}

.shipping-btns .cf-radio-btns label {
	font-size: 18px;
	font-weight: 600;
	padding-left: 37px;
}

.payment-list {
	list-style: none;
	margin-bottom: 40px;
}

.payment-list li {
	font-size: 18px;
	font-weight: 600;
	color: #414141;
	margin-bottom: 20px;
}

.payment-list li a,
.payment-list li span {
	padding-left: 40px;
}

.submit-order-btn {
	width: 100%;
	min-height: 58px;
}

.checkout-cart {
	background: #f0f0f0;
	padding: 40px 24px 30px;
	border-radius: 25px;
}

.checkout-cart h3 {
	margin-bottom: 30px;
}

.checkout-cart .product-list {
	list-style: none;
}

.checkout-cart .product-list li {
	overflow: hidden;
	display: block;
	margin-bottom: 29px;
}

.checkout-cart .product-list .pl-thumb {
	float: left;
	overflow: hidden;
	margin-right: 22px;
	width: 99px;
}

.checkout-cart .product-list .pl-thumb img {
	min-width: 100%;
}

.checkout-cart .product-list h6 {
	font-weight: 700;
	color: #414141;
	padding-top: 15px;
	margin-bottom: 5px;
}

.checkout-cart .product-list p {
	font-size: 16px;
	margin-bottom: 0;
}

.checkout-cart .price-list {
	padding-left: 17px;
	padding-right: 5px;
	list-style: none;
}

.checkout-cart .price-list li {
	overflow: hidden;
	display: block;
	font-size: 18px;
	color: #414141;
	margin-bottom: 10px;
}

.checkout-cart .price-list li span {
	float: right;
	width: 60px;
	text-align: left;
}

.checkout-cart .price-list li.total {
	padding-top: 35px;
	font-weight: 700;
}

/* ----------------
  Contact Page
---------------------*/

.contact-section {
	padding-top: 80px;
	padding-bottom: 0;
	position: relative;
}

.contact-info h3 {
	margin-bottom: 50px;
}

.contact-social {
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 85px;
	padding-top: 20px;
}

.contact-social a {
	display: -ms-inline-flex;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 32px;
	height: 32px;
	background: #f0f0f0;
	color: #414141;
	font-size: 14px;
	border-radius: 50%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 12px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.contact-social a:hover {
	color: #fff;
	background: #f51167;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	height: 44px;
	border: none;
	padding: 0 18px;
	background: #f0f0f0;
	border-radius: 40px;
	margin-bottom: 17px;
	font-size: 14px;
}

.contact-form textarea {
	padding-top: 16px;
	border-radius: 18px;
	height: 175px;
	margin-bottom: 32px;
}

.map {
	position: absolute;
	width: calc(50% - 15px);
	height: 89%;
	right: 0;
	top: 0;
	background: #ddd;
}

.map iframe {
	width: 100%;
	height: 100%;
}

/* ----------------
  Responsive
---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1175px;
		overflow: hidden;
	}
}

@media (max-width: 1350px) {
	.product-slider .owl-nav {
		position: relative;
		left: 0;
		top: 0;
		text-align: center;
		padding-top: 20px;
	}
	.product-slider .owl-nav button.owl-prev,
	.product-slider .owl-nav button.owl-next {
		float: none;
		left: 0;
		right: 0;
		margin: 0 10px;
	}
}

/* Medium screen : 992px. */


@media (max-width: 1379px) {
    .Nahid_hassan {
        /* width: 581px !important; */
    }
    .filter-box-img {
    margin: 0px !important;
}
.product-item.imagebox {
    /* width: 50%; */
} 
div#babu {
    width: 97%;
    overflow-x: hidden;
}
div#nahid-12 {
    width: 664px !important;
}
    
}

@media (max-width: 1730px) {
   
.product-item.imagebox {
    /* width: 60%; */
}   
    
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.hero-slider .slider-nav-warp {
		max-width: 930px;
	}
	.footer-widget ul {
		margin-right: 5px;
	}
	.social-links a {
		margin-right: 20px;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.site-logo {
		margin-bottom: 20px;
	}
	.header-search-form {
		margin-bottom: 15px;
	}
	.user-panel {
		text-align: center;
	}
	.main-menu {
		text-align: center;
	}
	.sub-menu {
		text-align: left;
	}
	.main-menu li a {
		margin-right: 30px;
	}
	.hero-slider .slider-nav-warp {
		max-width: 690px;
	}
	.hero-slider .hs-item .offer-card {
		top: 20px;
	}
	.feature h2 {
		font-size: 18px;
	}
	.product-filter-menu {
		text-align: center;
	}
	.product-filter-menu li {
		margin: 0 5px 10px;
	}
	.social-links {
		text-align: center;
	}
	.social-links a {
		margin-right: 20px;
	}
	.social-links a span {
		display: none;
	}
	.cart-table,
	.checkout-cart,
	.product-thumbs {
		margin-bottom: 50px;
	}
	.map {
		position: relative;
		width: 100%;
		background: #ddd;
		height: 400px;
		margin-top: 70px;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.site-logo {
		margin-bottom: 20px;
	}
	.header-search-form {
		margin-bottom: 15px;
	}
	.user-panel {
		text-align: center;
	}
	.main-menu {
		display: none;
	}
	.slicknav_btn {
		background-color: #565656;
	}
	.slicknav_menu {
		background: #282828;
		display: block;
	}
	.slicknav_menu .new {
		font-size: 10px;
		font-weight: 700;
		color: #fff;
		background: #f51167;
		line-height: 1;
		text-transform: uppercase;
		padding: 5px 9px 1px;
		border-radius: 15px;
		width: 42px;
		margin-left: 5px;
	}
	.hero-slider .slider-nav-warp {
		max-width: 510px;
	}
	.hero-slider .hs-item h2 {
		font-size: 50px;
	}
	.hero-slider .hs-item .offer-card {
		display: none;
	}
	.product-filter-menu {
		text-align: center;
	}
	.product-filter-menu li {
		margin: 0 2px 10px;
	}
	.footer-widget ul {
		margin-right: 25px;
	}
	.social-links {
		text-align: center;
	}
	.social-links a {
		margin-right: 15px;
	}
	.social-links a span {
		display: none;
	}
	.cart-table,
	.checkout-cart,
	.product-thumbs {
		margin-bottom: 50px;
	}
	.cart-table .size-col h4,
	.cart-table table tr th.size-th,
	.cart-table table tr th.quy-th,
	.cart-table .quy-col {
		padding-right: 0;
		width: 70px;
	}
	.cart-table .quy-col {
		width: 80px;
	}
	.address-rb {
		text-align: left;
	}
	.map {
		position: relative;
		width: 100%;
		background: #ddd;
		height: 400px;
		margin-top: 70px;
	}
}

/* Medium Mobile :480px. */

@media only screen and (min-width: 576px) and (max-width: 766px) {
	.hero-slider .slider-nav-warp {
		padding: 0 15px;
	}
	.banner .tag-new {
		position: relative;
		display: inline-block;
		margin-bottom: 18px;
		right: 0;
		top: 0;
	}
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.hero-slider .slider-nav-warp {
		max-width: 510px;
		padding: 0 15px;
	}
	
	.col-xs-6{
	    width:50%;
	}
	
	.hero-slider .hs-item h2 {
		font-size: 35px;
	}
	.hero-slider .hs-item .sb-line {
		margin-bottom: 15px;
	}
	.section-title h2 {
		font-size: 28px;
	}
	.feature h2 {
		font-size: 18px;
	}
	.banner .tag-new {
		position: relative;
		display: inline-block;
		margin-bottom: 18px;
		right: 0;
		top: 0;
	}
	.social-links {
		text-align: center;
	}
	.social-links a i {
		font-size: 20px;
		margin-right: 0;
	}
	.social-links a span {
		display: none;
	}
}
#Your-Favorites{
	position: relative;
}
#Your-Favorites .owl-nav {

}

#Your-Favorites .owl-nav .owl-prev {
	position: absolute;
	left: 0;
	top: 35%;
	font-size: 30px;
	color: #ddd;
	background: #444;
	padding: 0 10px !important;
}

#Your-Favorites .owl-nav .owl-next {
	position: absolute;
	right: 0;
	top: 35%;
	font-size: 30px;
	color: #ddd;
	background: #444;
	padding: 0 10px !important;
}
section.about_us_section {
	/* padding: 30px 0; */
	background: #eee;
}

section.about_us_section .about-info h3 {
	padding-bottom: 20px;
	letter-spacing: .5px;
	color: #fff;
	font-size: 30px;
}
section.about_us_section .about-info p {
	font-size: 16px;
	color: #fff;
	text-transform: capitalize;
}
section.about_us_section .about-info .social-link{}
section.about_us_section .about-info .social-link .fa {
	font-size: 18px;
	color: #444;
	margin: 0 5px;
	width: 30px;
	height: 30px;
	background: #e8e6e6;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	border: 1px solid #555;
}







.serviceBox {
	color: #999;
	text-align: center;
	padding: 10px 0 15px;
	position: relative;
	margin: 20px 0;
	box-shadow: 0px 10px 30px 0px rgb(50 50 50 / 16%);
}
.serviceBox:before, .serviceBox:after {
	content: "";
	background: #282828;
	width: 150px;
	height: 10px;
	transform: translateX(-50%);
	position: absolute;
	top: 0;
	left: 50%;
	clip-path: polygon(7% 0%, 93% 0%, 100% 100%, 0% 100%);
}
.serviceBox:after {
	width: 100%;
	height: 15px;
	border-radius: 0 0 10px 10px;
	top: auto;
	bottom: 0;
	clip-path: none;
	background: #282828 !important;
}
.serviceBox .service-content {
	background: #fff;
	padding: 12px 18px;
	border-radius: 10px;
}
.serviceBox .service-content:before {
	content: "";
	background: #f54d07;
	width: 128px;
	height: 100px;
	transform: translateX(-50%);
	position: absolute;
	top: 0;
	left: 50%;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.serviceBox .service-icon {
	margin: 0 auto 20px;
	position: relative;
	z-index: 1;
}


.serviceBox .service-icon:before{
	content: "";
	background: linear-gradient(to right, #dedfe1, #f3f3f3);
	width: 88%;
	height: 88%;
	border-radius: 50%;
	box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
	transform: translateX(-50%) translateY(-50%);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
}
.serviceBox .title {
	color: #1e5270;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.serviceBox .description{
	font-size: 14px;
	line-height: 24px;
	margin: 0;
	height: 70px;
	overflow: hidden;
}
.serviceBox.green:before {
	background: #282828;
}
.serviceBox.green:after,
.serviceBox.green .service-content:before{
	background: #f54d07;
}
.serviceBox.green .title {
	color: #f54d07;
}
@media only screen and (max-width:990px){
	.serviceBox{ margin: 0 0 30px; }
}
.Our-service-section .title h3 {
	text-align: center;
	margin-top: 16px;
	text-transform: capitalize;
	color: #333;
}





.team {
	text-align: center
}

.section-title {
	text-align: center;
	font-size: 30px;
	position: relative;
	margin-bottom: 16px;
	margin-top: 0;
}

.team .team-item {
	text-align: left;
	margin-bottom: 30px;
	box-shadow: 0px 10px 30px 0px rgb(50 50 50 / 16%);
}

.team .team-item figure {
	position: relative;
	overflow: hidden
}

img {
	max-width: 100%;
}

.team .team-item figure figcaption {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: rgba(9, 9, 9, .6);
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease
}

.team .team-item figure figcaption .info {
	position: absolute;
	color: #fff;
	float: left;
	bottom: 10px;
	left: 20px;
	margin-left: -80px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease
}

.team .team-item figure:hover figcaption {
	opacity: 1
}

.team .team-item figure:hover figcaption .info {
	margin-left: 0
}

.team .team-item figure figcaption .info h3 {
	font-size: 20px;
	color: #fff;
	text-transform: capitalize;
}

.team .team-item figure figcaption .info p {
	color: #fff
}

.team .team-item figure:hover figcaption .social {
	margin-bottom: 0
}

.team .team-item figure figcaption .social {
	position: absolute;
	float: right;
	bottom: 28px;
	margin-bottom: -80px;
	right: 20px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease
}

.team .team-item figure figcaption .social a {
	color: #282828;
	font-size: 15px;
	width: 36px;
	height: 36px;
	background: #fff;
	display: inline-block;
	text-align: center;
	line-height: 36px;
	border-radius: 2px;
}
.blog-title h3{
	padding: 20px 0;
	letter-spacing: .5px;
	color: #333;
	font-size: 30px;
	text-align: center;
}






/** blog-classic-grid **/

.blog-classic-grid{
	position: relative;
}

.blog-classic-grid .news-block-one{
	margin-bottom: 40px;
}

.blog-classic-grid .news-block-one .btn-style-four{
	/* padding-left: 73px; */
}

.blog-classic-grid .news-block-one .btn-style-four:before{
	background: #1d165c;
	height: 1px;
	width: 54px;
	top: 13px;
}

.blog-classic-grid .pagination-wrapper{
	position: relative;
	display: block;
	margin-top: 20px;
}

.sidebar-page-container{
	position: relative;
	padding: 130px 0px;
}

.blog-classic-sidebar .news-block-one{
	margin-bottom: 40px;
}

.blog-classic-sidebar .news-block-one .lower-content .btn-style-four span{
	position: relative;
	display: inline-block;
	width: 22px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	border-radius: 3px;
	background: #fff;
}

.blog-classic-sidebar .news-block-one .lower-content .btn-style-four:before{
	top: 8px;
}

.blog-classic-sidebar .news-block-one .lower-content .btn-style-four:hover{
	padding-left: 0px;
	color: #1d165c !important;
}

.blog-classic-sidebar .news-block-one .lower-content .btn-style-four:hover:before{
	opacity: 0;
}

.blog-classic-sidebar .news-block-one .lower-content .btn-style-four:hover span{
	color: #fff;
}

.news-section{
	position: relative;
	padding-bottom: 125px;
}

.news-section .title-inner{
	position: relative;
	padding: 125px 0px 163px 0px;
}

.news-block-one .inner-box{
	position: relative;
	display: block;
}

.news-block-one .inner-box .image-box{
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 5px;
}

.news-block-one .inner-box .image-box:before{
	position: absolute;
	content: '';
	width: 0%;
	height: 100%;
	top: 0px;
	right: 0px;
	opacity: 0.9;
	z-index: 1;
	transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box:before{
	width: 100%;
	left: 0px;
}

.news-block-one .inner-box .image-box img{
	width: 100%;
	border-radius: 5px;
	transition: all 500ms ease;
}

.news-block-one .inner-box .lower-content{
	position: relative;
	/* padding-top: 22px; */
}

.news-block-one .inner-box .lower-content .file-box{
	position: relative;
	display: block;
	/* margin-bottom: 14px; */
}

.news-block-one .inner-box .lower-content .file-box i {
	position: relative;
	display: inline-block;
	font-size: 14px;
	color: #444!important;
	margin-right: 10px;
}

.news-block-one .inner-box .lower-content .file-box p{
	position: relative;
	display: inline-block;
	margin: 0;
	padding-bottom: 6px;
}

.news-block-one .inner-box .lower-content .title-box{
	position: relative;
	display: block;
	padding-left: 75px;
	margin-bottom: 21px;
	min-height: 55px;
}

.news-block-one .inner-box .lower-content .title-box .post-date{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 55px;
	height: 55px;
	text-align: center;
	border-radius: 5px;
	background: #f51167;
	padding: 8px 0px;
}

.news-block-one .inner-box .lower-content .title-box .post-date p {
	/* display: block; */
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	line-height: 20px;
	margin: 0 !important;
}

.news-block-one .inner-box .lower-content .title-box .post-date span{
	position: relative;
	display: block;
	font-size: 13px;
	line-height: 18px;
	text-transform: uppercase;
	color: #fff;
}

.news-block-one .inner-box .lower-content .title-box h4{
	line-height: 26px;
	font-size: 22px;
}

.news-block-one .inner-box .lower-content .text{
	position: relative;
	margin-bottom: 21px;
}

.news-section .lower-content .inner-content{
	position: relative;
	margin-top: -125px;
}

.news-section .title-inner .pattern-layer .pattern-1{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 1335px;
	height: 100%;
	background-repeat: no-repeat;
}

.news-section .title-inner .pattern-layer .pattern-2{
	position: absolute;
	right: 0px;
	top: 0px;
	width: 1350px;
	height: 100%;
	background-repeat: no-repeat;
}
.pagination-wrapper ul.pagination.clearfix {
	justify-content: center;
	margin-bottom: 22px;
}
.pagination-wrapper ul.pagination.clearfix li a {
	margin: 0 2px;
	background: #f51167;
	padding: 8px 12px;
	font-size: 20px;
	color: #fff;
}

section.blog-details-section .blog-info h3 {
	color: #333;
	text-transform: capitalize;
	padding: 10px 0;
}

section.blog-details-section .blog-time {
	font-size: 18px;
	color: #333;
	font-weight: 400;
	padding-bottom: 10px;
	text-transform: capitalize;
}

section.blog-details-section .blog-info p {
	font-size: 15px;
	text-transform: capitalize;
	color: #333;
	font-weight: 400;
}

section.blog-details-section .blog-cotation {
	background: #ddd;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 12px;
}

section.blog-details-section .blog-cotation p{
	font-size: 15px;
	text-transform: capitalize;
	color: #333;
	font-weight: 400;
	font-style: italic;
}

section.blog-details-section .name-author p {
	margin: 0;
	font-weight: 600;
}
section.blog-details-section p{
	font-size: 15px;
	text-transform: capitalize;
	color: #333;
	height: 30px;
	font-weight: 400;
	overflow: hidden;
}

section.blog-details-section .sub-image-info {
	font-size: 15px;
	text-transform: capitalize;
	color: #333;
	font-weight: 400;
	padding-top: 12px;
}

section.blog-details-section .share-article h5 {
	display: inline-block;
	text-transform: capitalize;
	color: #333;
}

section.blog-details-section .share-article {
	text-align: center;
}

section.blog-details-section .share-article .left{
	float: left;
}

section.blog-details-section .share-article .right{
	float: right;
}

section.blog-details-section .social-link {
	text-align: center;
	padding-bottom: 30px;
}

section.blog-details-section .social-link a .fa {
	margin: 0 5px;
	width: 30px;
	height: 30px;
	background: #ddd;
	line-height: 30px;
	color: #333;
	border-radius: 5px;
}

section.blog-details-section .share-article .left a {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

section.blog-details-section .share-article .right a {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

section.blog-details-section .share-article {
	text-align: center;
	border-bottom: 2px solid #ddd;
	margin-bottom: 10px;
	padding-bottom: 5px;
}

section.blog-details-section .comment-info {
	display: inline;
}

section.blog-details-section .comment-info p{
	font-size: 15px;
	text-transform: capitalize;
	color: #333;
	font-weight: 400;
}

section.blog-details-section .sengle-comment img {
	float: left;
	margin-right: 10px;
	border-radius: 10px;
}
section.blog-details-section .comment-aria h4 {
	color: #333;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.comment-action .Reply {
	float: right;
	color: #333;
	font-weight: 400;
	text-transform: capitalize;
}

div#sengle-comment-Reply {
	margin-left: 40px;
	margin-top: 22px;
	margin-bottom: 10px;
}

section.blog-details-section {
	padding-top: 35px;
}

section.send-information {
	margin: 30px 0;
}

section.send-information a.btn {
	background: #c73e15;
	color: #fff;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 400;
	margin-top: 10px;
}
.textaria-sec {
	padding-bottom: 12px;
}

.queck-link{}

.queck-link .side-menu-service {
	list-style: none;
	max-height: 466px;
	overflow: hidden;
	margin: 20px 0;
}

.queck-link .side-menu-service:hover{
	overflow-y: scroll;
	overflow-x: hidden;
}

.queck-link .side-menu-service li{}
.queck-link .side-menu-service li a{
	font-size: 18px;
	color: #e83d21;
	text-transform: capitalize;
}
.queck-link .side-menu-service li a .media{
	margin-top: 20px;
}
.queck-link .side-menu-service li .media img{
	width: 55px;
	padding: 5px;
	margin-top: 5px;
}
.queck-link .side-menu-service li a .media-body{
	padding: 5px;
}
.queck-link .side-menu-service li a .media-body h5{}
.queck-link .side-menu-service li a .media-body p{
	margin: 0;
}
.blog-grid {
	margin-top: -30px; }

.blog {
	margin-top: 30px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	-ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	-o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s; }

.blog-thumb {
	overflow: hidden; }
.blog-thumb a {
	display: block;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
	text-align: center;
}
.blog-thumb a img {
	max-width: 100%; }

.blog-content {
	padding: 25px; }
.blog-content .blog-meta {
	margin-bottom: 7px; }
.blog-content .blog-meta span {
	font-size: 14px;
	color: #777;
	line-height: 30px;
	padding-right: 25px;
	font-weight: 500; }
.blog-content .blog-meta span:last-child {
	padding-right: 0; }
.blog-content .blog-meta a {
	color: #777; }
.blog-content .blog-meta a:hover {
	color: #47BB8F; }
.blog-content h5 {
	font-weight: 700;
	color: #333;
	margin-bottom: 10px; }
.blog-content h5 a {
	color: #333; }
.blog-content h5 a:hover {
	color: #47BB8F; }
.blog-content p {
	margin-bottom: 10px; }
.blog-content p:first-letter {
	text-transform: capitalize; }

.blog:hover .blog-thumb a {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1); }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-content {
		padding: 20px; } }


.blog-style-2 {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
	position: relative;
	border-bottom: 1px solid #ddd; }
.blog-style-2::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 1px;
	width: 0;
	background: #47BB8F;
	-webkit-transition: all 0.4s cubic-bezier(0.63, 0.01, 0.36, 0.99) 0s;
	-moz-transition: all 0.4s cubic-bezier(0.63, 0.01, 0.36, 0.99) 0s;
	-ms-transition: all 0.4s cubic-bezier(0.63, 0.01, 0.36, 0.99) 0s;
	-o-transition: all 0.4s cubic-bezier(0.63, 0.01, 0.36, 0.99) 0s;
	transition: all 0.4s cubic-bezier(0.63, 0.01, 0.36, 0.99) 0s; }
.blog-style-2:hover::after {
	width: 100%; }
.blog-style-2 .blog-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-direction: reverse;
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column-reverse;
	-moz-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap; }

.blog-video .blog-thumb a::after {
	content: "\f103";
	font-family: "Flaticon";
	left: 50%;
	top: 50%;
	height: 70px;
	width: 70px;
	z-index: 2;
	position: absolute;
	line-height: 70px;
	font-size: 70px;
	margin-top: -35px;
	margin-left: -35px;
	color: #ffffff;
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out 0.1s;
	-moz-transition: all 0.3s ease-in-out 0.1s;
	-ms-transition: all 0.3s ease-in-out 0.1s;
	-o-transition: all 0.3s ease-in-out 0.1s;
	transition: all 0.3s ease-in-out 0.1s; }

.blog-video:hover .blog-thumb a::after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1; }

/* Blog Horaizontal Style */
.blog-horaizontal {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none; }
.blog-horaizontal .blog-thumb {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 45%;
	-moz-box-flex: 0;
	-moz-flex: 0 0 45%;
	-ms-flex: 0 0 45%;
	flex: 0 0 45%; }
.blog-horaizontal .blog-thumb a {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	position: relative; }
.blog-horaizontal .blog-thumb a::before {
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s; }
.blog-horaizontal .blog-content {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 55%;
	-moz-box-flex: 0;
	-moz-flex: 0 0 55%;
	-ms-flex: 0 0 55%;
	flex: 0 0 55%;
	padding: 0;
	padding-left: 30px;
	margin-top: -7px; }
.blog-horaizontal .blog-content h6 {
	font-size: 14px;
	line-height: 30px;
	color: #b7b7b7;
	text-transform: uppercase;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	margin-bottom: 5px; }
.blog-horaizontal .blog-content p {
	font-size: 16px;
	line-height: 30px;
	color: #777777; }
.blog-horaizontal .blog-meta {
	text-transform: uppercase; }
.blog-horaizontal .blog-meta span {
	padding-right: 5px; }
.blog-horaizontal .blog-meta span:after {
	content: "-";
	padding-left: 5px; }
.blog-horaizontal .blog-meta span:last-child:after {
	display: none; }
.blog-horaizontal:hover .blog-thumb a::before {
	visibility: visible;
	opacity: 1; }

@media only screen and (max-width: 767px) {
	.blog-horaizontal {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap; }
	.blog-horaizontal .blog-thumb {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 100%;
		-moz-box-flex: 0;
		-moz-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%; }
	.blog-horaizontal .blog-content {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 100%;
		-moz-box-flex: 0;
		-moz-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		padding-left: 0;
		padding-top: 30px; } }
/* Small Blog */
.small-blog {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 50px; }
.small-blog .small-blog-thumb {
	margin-right: 20px;
	display: inline-block;
	position: relative; }
.small-blog .small-blog-thumb::before {
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	position: absolute;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s; }
.small-blog .small-blog-content {
	-webkit-flex-shrink: 100;
	-moz-flex-shrink: 100;
	-ms-flex-negative: 100;
	flex-shrink: 100; }
.small-blog .small-blog-content h6 {
	font-family: "Roboto", sans-serif;
	color: #646464;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 0;
	margin-top: -5px; }
.small-blog .small-blog-content h6 a {
	color: #646464; }
.small-blog .small-blog-content h6 a:hover {
	color: #47BB8F; }
.small-blog .small-blog-meta span {
	font-family: "Roboto Condensed", sans-serif;
	display: inline-block;
	color: #232323;
	font-size: 13px;
	line-height: 20px;
	font-weight: 500; }
.small-blog:hover .small-blog-thumb::before {
	opacity: 1;
	visibility: visible; }
.widgets:not(.footer-widgets).widgets-leftside {
	padding-right: 20px; }
.widgets:not(.footer-widgets).widgets-rightside {
	padding-left: 20px; }
.widgets:not(.footer-widgets) .single-widget {
	/* margin-top: 50px; */
}
.widgets:not(.footer-widgets) .single-widget h5.widget-title {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	color: #ffffff;
	background: #47BB8F;
	padding: 10px 30px;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 40px; }
.widgets:not(.footer-widgets) .about-widget {
	background: #fafafa; }
.widgets:not(.footer-widgets) .about-widget .about-widget-person-image {
	height: 110px;
	width: 110px;
	text-align: center;
	line-height: 110px;
	border-radius: 100%;
	overflow: hidden;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%); }
.widgets:not(.footer-widgets) .about-widget .about-widget-content {
	padding-top: 70px;
	padding-bottom: 50px;
	position: relative; }
.widgets:not(.footer-widgets) .about-widget .about-widget-content h6 {
	font-size: 16px;
	color: #2f2f2f;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	margin-bottom: 7px; }
.widgets:not(.footer-widgets) .about-widget .about-widget-content p {
	font-size: 14px;
	line-height: 26px;
	color: #777777; }
.widgets:not(.footer-widgets) .about-widget .social-icons ul li a {
	color: #555555; }
.widgets:not(.footer-widgets) .about-widget .social-icons ul li a:hover {
	color: #47BB8F; }
.widgets:not(.footer-widgets) .search-widget form {
	padding: 30px;
	border: 1px solid #f1f1f1;
	position: relative; }
.widgets:not(.footer-widgets) .search-widget form input {
	background: #f9f9f9;
	border: 1px solid #f9f9f9;
	font-size: 14px;
	color: #a6a6a6;
	padding: 10px;
	}
.widgets:not(.footer-widgets) .search-widget form input::-webkit-input-placeholder {
	color: #a6a6a6; }
.widgets:not(.footer-widgets) .search-widget form input:-ms-input-placeholder {
	color: #a6a6a6; }
.widgets:not(.footer-widgets) .search-widget form input:-moz-placeholder {
	color: #a6a6a6; }
.widgets:not(.footer-widgets) .search-widget form input::-moz-placeholder {
	color: #a6a6a6; }
.widgets:not(.footer-widgets) .search-widget form button {
	position: absolute;
	right: 30px;
	top: 50%;
	height: 50px;
	/* width: 50px; */
	line-height: 52px;
	margin-top: -25px;
	background: transparent;
	border: none;
	padding: 0;
	color: #a6a6a6;
	}
.widgets:not(.footer-widgets) .search-widget form button:hover {
	color: #777777; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-thumb {
	margin-right: 20px;
	display: inline-block;
	position: relative; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-thumb::before {
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	position: absolute;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-content {
	-webkit-flex-shrink: 100;
	-moz-flex-shrink: 100;
	-ms-flex-negative: 100;
	flex-shrink: 100; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-content h6 {
	font-family: "Roboto", sans-serif;
	color: #646464;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 0;
	margin-top: -5px; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-content h6 a {
	color: #646464; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-content h6 a:hover {
	color: #47BB8F; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-meta span {
	font-family: "Roboto Condensed", sans-serif;
	display: inline-block;
	color: #232323;
	font-size: 13px;
	line-height: 20px;
	font-weight: 500; }
.widgets:not(.footer-widgets) .widget-recent-post ul {
	padding-left: 0; }
.widgets:not(.footer-widgets) .widget-recent-post ul li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px; }
.widgets:not(.footer-widgets) .widget-recent-post ul li:last-child {
	margin-bottom: 0; }
.widgets:not(.footer-widgets) .widget-recent-post ul li:hover .widget-recent-post-thumb::before {
	opacity: 1;
	visibility: visible; }
.widgets:not(.footer-widgets) .widget-newsletter form {
	position: relative; }
.widgets:not(.footer-widgets) .widget-newsletter form input {
	border: 1px solid #e4e4e4;
	font-size: 14px;
	color: #aaaaaa;
	padding-right: 55px; }
.widgets:not(.footer-widgets) .widget-newsletter form input::-webkit-input-placeholder {
	color: #aaaaaa; }
.widgets:not(.footer-widgets) .widget-newsletter form input:-ms-input-placeholder {
	color: #aaaaaa; }
.widgets:not(.footer-widgets) .widget-newsletter form input:-moz-placeholder {
	color: #aaaaaa; }
.widgets:not(.footer-widgets) .widget-newsletter form input::-moz-placeholder {
	color: #aaaaaa; }
.widgets:not(.footer-widgets) .widget-newsletter form button {
	position: absolute;
	background: #47BB8F;
	color: #ffffff;
	height: 40px;
	right: 5px;
	top: 5px;
	width: 40px;
	border: none;
	outline: none;
	font-size: 20px; }
.widgets:not(.footer-widgets) .widget-social ul {
	padding-left: 0;
	margin-bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap; }
.widgets:not(.footer-widgets) .widget-social ul li {
	display: block;
	padding: 0;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 25%;
	-moz-box-flex: 0;
	-moz-flex: 0 0 25%;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	margin-top: 1px;
	text-align: center; }
.widgets:not(.footer-widgets) .widget-social ul li a {
	display: block;
	background: #f9f9f9;
	padding: 20px 0;
	border-right: 1px solid #e4e4e4; }
.widgets:not(.footer-widgets) .widget-social ul li:nth-child(4n) a {
	border-right: none; }
.widgets:not(.footer-widgets) .widget-categories ul {
	padding-left: 0;
	list-style: none;
	margin-bottom: 0; }
.widgets:not(.footer-widgets) .widget-categories ul li {
	line-height: 26px;
	font-weight: 400;
	color: #646464;
	border-top: 1px solid #e5e5e5;
	padding-top: 15px;
	padding-bottom: 11px;
	font-size: 16px; }
.widgets:not(.footer-widgets) .widget-categories ul li:first-child {
	border-top: none;
	padding-top: 0; }
.widgets:not(.footer-widgets) .widget-categories ul li:last-child {
	padding-bottom: 0; }
.widgets:not(.footer-widgets) .widget-categories ul li a {
	position: relative;
	color: #646464;
	display: block;
	padding-left: 30px; }
.widgets:not(.footer-widgets) .widget-categories ul li a:before {
	content: url(images/icons/widget-dot.png);
	padding-right: 23px;
	position: absolute;
	top: 0;
	left: 0; }
.widgets:not(.footer-widgets) .widget-categories ul li a:hover {
	color: #47BB8F; }
.widgets:not(.footer-widgets) .widget-categories ul li span {
	float: right; }
.widgets:not(.footer-widgets) .widget-instagram > ul {
	margin-left: -2px;
	margin-top: -2px;
	margin-right: -2px;
	margin-bottom: -2px;
	padding-left: 0; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li {
	display: inline-block;
	height: 118px;
	width: 118px;
	overflow: hidden;
	padding: 2px;
	vertical-align: middle;
	position: relative; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li a {
	display: block;
	position: relative; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li a:before {
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	position: absolute;
	background: rgba(25, 25, 25, 0.7);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li ul.likes-comments {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	text-align: center;
	list-style: none;
	padding-left: 0;
	padding-bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	margin-top: 20px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li ul.likes-comments li {
	display: inline-block;
	padding-bottom: 0;
	font-weight: 400;
	font-size: 14px;
	margin: 0 5px;
	color: #fff; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li ul.likes-comments li span {
	padding-left: 3px; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li:hover a {
	z-index: 1; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li:hover a:before {
	visibility: visible;
	opacity: 1; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li:hover ul.likes-comments {
	margin-top: 0;
	visibility: visible;
	opacity: 1;
	z-index: 2; }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.widgets:not(.footer-widgets).widgets-leftside {
		padding-right: 0; }
	.widgets:not(.footer-widgets).widgets-rightside {
		padding-left: 0; }
	.widgets:not(.footer-widgets) .widget-instagram > ul > li {
		display: inline-block;
		height: 98px;
		width: 98px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.widgets:not(.footer-widgets) {
		margin-top: 100px; }
	.widgets:not(.footer-widgets).widgets-leftside {
		padding-right: 0; }
	.widgets:not(.footer-widgets).widgets-rightside {
		padding-left: 0; }
	.widgets:not(.footer-widgets) .widget-instagram > ul > li {
		display: inline-block;
		height: 115px;
		width: 115px; } }
@media only screen and (max-width: 767px) {
	.widgets:not(.footer-widgets) {
		margin-top: 100px; }
	.widgets:not(.footer-widgets).widgets-leftside {
		padding-right: 0; }
	.widgets:not(.footer-widgets).widgets-rightside {
		padding-left: 0; }
	.widgets:not(.footer-widgets) .widget-instagram > ul > li {
		display: inline-block;
		height: 115px;
		width: 115px; } }
@media only screen and (max-width: 575px) {
	.widgets:not(.footer-widgets) {
		margin-top: 100px; }
	.widgets:not(.footer-widgets).widgets-leftside {
		padding-right: 0; }
	.widgets:not(.footer-widgets).widgets-rightside {
		padding-left: 0; }
	.widgets:not(.footer-widgets) .widget-instagram > ul > li {
		display: inline-block;
		height: 98px;
		width: 98px; } }


/*Blog Sidebar*/
.widgets:not(.footer-widgets) .search-widget form {
	padding: 0px 5px;
	margin-bottom: 12px;
}
/*.widgets:not(.footer-widgets) .single-widget {
margin-top: 20px;
}*/
.widgets:not(.footer-widgets) .single-widget h5.widget-title {
	padding: 6px 25px;
	margin-bottom: 15px;
}

/* .breadcrumb-option{
         margin-bottom: 15px;
         }*/
.tagcloud a {
	height: 35px;
	border: 1px solid #d3d3d3;
	font-size: 14px;
	line-height: 1;
	color: #1d2d5d;
	display: inline-block;
	padding: 10px 15px;
	margin-bottom: 10px;
	margin-right: 6px;
}
.section-padding-sm {
	padding: 25px 0;
}
.modal {
	z-index: 99999;
}
.modal-header {
	display: block;
}
.packageFeaturesBox {
	border-radius: 10px;
	border: 1px solid #ddd;
	padding: 10px;
	margin: 10px;
	min-height: 220px;
	/*width: 32%;*/
	align-content: center;
	/*margin: 0.3%;*/
	text-align: center;
}
.package-pheader p{
	color: #777777;
}
.package-section .package-pheader.sm-content h4{
	color: #333333;
}
.package_margin_top{
	margin-top: 15px;
}
/* h3{
color: #333;
}*/
.doodle_footer-socail{
	text-align: center;
}

/**
    Pagination Styles
*/
.cr-pagination {
	margin: 38px 0;
	}
.cr-pagination ul {
	display: inline-block;
	vertical-align: middle;
	padding-left: 0;
	margin-bottom: 0; }
.cr-pagination ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
	margin-top: 10px; }
.cr-pagination ul li:first-child {
	margin-left: 0; }
.cr-pagination ul li:last-child {
	margin-right: 0; }
.cr-pagination ul li a {
	border: 1px solid #dddddd;
	padding: 4px 15px;
	color: #777777;
	display: inline-block;
	vertical-align: middle; }
.cr-pagination ul li a:hover {
	background: #47BB8F;
	color: #ffffff;
	border-color: #47BB8F; }


/**
    Blog Details Styles
*/
.blog-details-thumb {
	margin-bottom: 50px; }

.blog-details-video {
	margin-bottom: 50px; }

h2.blog-details-title {
	font-size: 36px;
	font-weight: 700;
	color: #333333;
	font-family: "Roboto", sans-serif; }

.blog-details-meta {
	padding-left: 0; }
.blog-details-meta li {
	font-size: 13px;
	font-weight: 500;
	color: #a8a8a8;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0.5px; }
.blog-details-meta li:after {
	content: "-";
	padding: 0 10px; }
.blog-details-meta li:last-child:after {
	display: none; }
.blog-details-meta li a {
	color: #a8a8a8; }
.blog-details-meta li a:hover {
	color: #47BB8F; }

.blog-details-content {
	padding-bottom: 50px;
	border-bottom: 1px solid #e1e1e1; }
.blog-details-content p {
	margin-bottom: 30px; }
.blog-details-content blockquote {
	margin-bottom: 30px; }
.blog-details-content ol {
	margin-top: 30px;
	margin-bottom: 30px;
	list-style: decimal-leading-zero;
	list-style-position: inside; }
.blog-details-content ol li {
	margin-bottom: 10px; }
.blog-details-content img {
	margin-bottom: 20px; }

.blog-details-block {
	margin-top: 70px; }

.blog-details-authorbox {
	padding: 40px;
	background: #f7f7f7;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between; }

.blog-details-authoriamge {
	height: 95px;
	width: 95px;
	display: block;
	overflow: hidden;
	border-radius: 5px;
	margin-right: 25px; }
.blog-details-authoriamge img {
	width: 100%; }

.blog-details-authordes {
	-webkit-flex-shrink: 100;
	-moz-flex-shrink: 100;
	-ms-flex-negative: 100;
	flex-shrink: 100; }
.blog-details-authordes h6 {
	line-height: 28px;
	font-size: 16px;
	color: #5f5f5f;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px; }
.blog-details-authordes p {
	margin-bottom: 0; }

.blog-details-social {
	border: 1px solid #e9e9e9;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 5px 20px; }
.blog-details-social h6 {
	font-size: 16px;
	font-weight: 400;
	color: #636363;
	margin-right: 10px;
	margin-bottom: 0; }

.blog-details-social-icons {
	margin-right: 30px; }

.blog-details-social-icons,
.blog-details-tags {
	padding: 5px 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center; }

.blog-details-tags ul {
	margin-bottom: 0;
	padding-left: 0; }
.blog-details-tags ul li {
	display: inline-block;
	font-size: 16px;
	color: #808080;
	font-weight: 300; }
.blog-details-tags ul li:after {
	content: ","; }
.blog-details-tags ul li:last-child:after {
	display: none; }
.blog-details-tags ul li a {
	color: #808080;
	display: inline-block; }
.blog-details-tags ul li a:hover {
	color: #47BB8F; }

.blog-details-block.commentbox form {
	margin-top: -10px; }
.blog-details-block.commentbox form .single-input {
	margin-top: 30px; }
.blog-details-block.commentbox form .single-input button {
	margin-top: 10px; }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 32px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 28px; } }
@media only screen and (max-width: 767px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 26px; } }
@media only screen and (max-width: 575px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 26px; }

	.blog-details-authorbox {
		padding: 30px;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap; }

	.blog-details-authordes {
		margin-top: 20px; } }
/* Commentlist */
.comment {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 60px; }
.comment:first-child {
	margin-top: 0; }
.comment.reply {
	margin-left: 150px; }

.comment__content {
	-webkit-flex-shrink: 100;
	-moz-flex-shrink: 100;
	-ms-flex-negative: 100;
	flex-shrink: 100;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	align-items: flex-start; }
.comment__content a.reply {
	font-size: 14px;
	color: #47BB8F;
	font-weight: 600;
	text-transform: uppercase; }
.comment__content a.reply:hover {
	color: #333333; }

.comment__content__top {
	margin-right: 30px;
	margin-bottom: 10px; }
.comment__content__top h6 {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 700;
	color: #5f5f5f;
	text-transform: uppercase; }
.comment__content__top span {
	font-size: 14px;
	line-height: 20px;
	color: #a2a2a2;
	font-weight: 400;
	text-transform: uppercase; }

.comment__content__bottom {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 100%;
	-moz-box-flex: 0;
	-moz-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%; }

@media only screen and (max-width: 767px) {
	.comment.reply {
		margin-left: 50px; } }
@media only screen and (max-width: 575px) {
	.comment.reply {
		margin-left: 30px; }

	.comment {
		margin-top: 38px;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap; }

	.comment__content {
		padding-top: 20px; }

	.pg-blog-authorbox {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 20px; }

	.pg-blog-authordes {
		padding-top: 20px; } }
/* Commentbox */
.commentbox .single-input {
	margin-top: 50px; }
.commentbox .single-input input, .commentbox .single-input select, .commentbox .single-input textarea {
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s; }
.commentbox .single-input input:focus, .commentbox .single-input input:active, .commentbox .single-input select:focus, .commentbox .single-input select:active, .commentbox .single-input textarea:focus, .commentbox .single-input textarea:active {
	border-color: #47BB8F; }

.blog-details-thumb .slick-slide:focus, .blog-details-thumb .slick-slide:active {
	outline: none; }


/**
    Blog Details Styles
*/
.blog-details-thumb {
	margin-bottom: 50px; }

.blog-details-video {
	margin-bottom: 50px; }

h2.blog-details-title {
	font-size: 36px;
	font-weight: 700;
	color: #333333;
	font-family: "Roboto", sans-serif; }

.blog-details-meta {
	padding-left: 0; }
.blog-details-meta li {
	font-size: 13px;
	font-weight: 500;
	color: #a8a8a8;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0.5px; }
.blog-details-meta li:after {
	content: "-";
	padding: 0 10px; }
.blog-details-meta li:last-child:after {
	display: none; }
.blog-details-meta li a {
	color: #a8a8a8; }
.blog-details-meta li a:hover {
	color: #47BB8F; }

.blog-details-content {
	padding-bottom: 50px;
	border-bottom: 1px solid #e1e1e1; }
.blog-details-content p {
	margin-bottom: 30px;
	color: #333;
	font-size: 22px;
	}
.blog-details-content blockquote {
	margin-bottom: 30px; }
.blog-details-content ol {
	margin-top: 30px;
	margin-bottom: 30px;
	list-style: decimal-leading-zero;
	list-style-position: inside; }
.blog-details-content ol li {
	margin-bottom: 10px; }
.blog-details-content img {
	margin-bottom: 20px; }

.blog-details-block {
	margin-top: 70px; }

.blog-details-authorbox {
	padding: 40px;
	background: #f7f7f7;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between; }

.blog-details-authoriamge {
	height: 95px;
	width: 95px;
	display: block;
	overflow: hidden;
	border-radius: 5px;
	margin-right: 25px; }
.blog-details-authoriamge img {
	width: 100%; }

.blog-details-authordes {
	-webkit-flex-shrink: 100;
	-moz-flex-shrink: 100;
	-ms-flex-negative: 100;
	flex-shrink: 100; }
.blog-details-authordes h6 {
	line-height: 28px;
	font-size: 16px;
	color: #5f5f5f;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px; }
.blog-details-authordes p {
	margin-bottom: 0; }

.blog-details-social {
	border: 1px solid #e9e9e9;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 5px 20px; }
.blog-details-social h6 {
	font-size: 16px;
	font-weight: 400;
	color: #636363;
	margin-right: 10px;
	margin-bottom: 0; }

.blog-details-social-icons {
	margin-right: 30px; }

.blog-details-social-icons,
.blog-details-tags {
	padding: 5px 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center; }

.blog-details-tags ul {
	margin-bottom: 0;
	padding-left: 0; }
.blog-details-tags ul li {
	display: inline-block;
	font-size: 16px;
	color: #808080;
	font-weight: 300; }
.blog-details-tags ul li:after {
	content: ","; }
.blog-details-tags ul li:last-child:after {
	display: none; }
.blog-details-tags ul li a {
	color: #808080;
	display: inline-block; }
.blog-details-tags ul li a:hover {
	color: #47BB8F; }

.blog-details-block.commentbox form {
	margin-top: -10px; }
.blog-details-block.commentbox form .single-input {
	margin-top: 30px; }
.blog-details-block.commentbox form .single-input button {
	margin-top: 10px; }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 32px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 28px; } }
@media only screen and (max-width: 767px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 26px; } }
@media only screen and (max-width: 575px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 26px; }

	.blog-details-authorbox {
		padding: 30px;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap; }

	.blog-details-authordes {
		margin-top: 20px; } }

/**
    Contact Page Styles
*/
.pg-contact-form .small-title {
	padding-right: 300px; }
.pg-contact-form form {
	margin-left: -6px;
	margin-right: -6px; }
.pg-contact-form .single-input {
	margin: 0 6px;
	margin-top: 22px; }
.pg-contact-form input,
.pg-contact-form select,
.pg-contact-form textarea {
	border: 1px solid #999999;
	border-radius: 5px;
	color: #aaaaaa;
	font-size: 16px;
	width: 100%;
	padding: 10px 10px;
}
.pg-contact-form input:-moz-placeholder,
.pg-contact-form select:-moz-placeholder,
.pg-contact-form textarea:-moz-placeholder {
	color: #aaaaaa; }
.pg-contact-form input::-moz-placeholder,
.pg-contact-form select::-moz-placeholder,
.pg-contact-form textarea::-moz-placeholder {
	color: #aaaaaa; }
.pg-contact-form input:-ms-input-placeholder,
.pg-contact-form select:-ms-input-placeholder,
.pg-contact-form textarea:-ms-input-placeholder {
	color: #aaaaaa; }
.pg-contact-form input::-webkit-input-placeholder,
.pg-contact-form select::-webkit-input-placeholder,
.pg-contact-form textarea::-webkit-input-placeholder {
	color: #aaaaaa; }
.pg-contact-form input:focus, .pg-contact-form input:active,
.pg-contact-form select:focus,
.pg-contact-form select:active,
.pg-contact-form textarea:focus,
.pg-contact-form textarea:active {
	border-color: #47BB8F; }
.pg-contact-form button {
	margin-top: 20px;
	border-radius: 5px;
	overflow: hidden;
	padding: 12px 19px;
	z-index: 3;
	font-size: 18px;
	/* background: #e23c1b; */
	color: #444;
	border-color: #e23c1b;
	text-transform: uppercase;
}
.pg-contact-form.pg-contact-form-2 form {
	margin-left: -15px;
	margin-right: -15px; }
.pg-contact-form.pg-contact-form-2 .single-input {
	margin-left: 15px;
	margin-right: 15px; }
.pg-contact-form.pg-contact-form-2 .single-input input,
.pg-contact-form.pg-contact-form-2 .single-input select,
.pg-contact-form.pg-contact-form-2 .single-input textarea {
	border: none;
	border-bottom: 1px solid #999999;
	border-radius: 0;
	padding: 0; }
.pg-contact-form.pg-contact-form-2 .single-input input:focus, .pg-contact-form.pg-contact-form-2 .single-input input:active,
.pg-contact-form.pg-contact-form-2 .single-input select:focus,
.pg-contact-form.pg-contact-form-2 .single-input select:active,
.pg-contact-form.pg-contact-form-2 .single-input textarea:focus,
.pg-contact-form.pg-contact-form-2 .single-input textarea:active {
	border-color: #47BB8F; }
.pg-contact-form.pg-contact-form-2 .single-input button {
	border-radius: 0; }

.pg-contact-details ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none; }
.pg-contact-details ul li:last-child {
	margin-bottom: 0; }
.pg-contact-details .single-quick-contact {
	padding-top: 20px;
	padding-bottom: 20px; }
.pg-contact-details .single-quick-contact i {
	font-size: 30px;
	line-height: 30px;
	color: #47BB8F;
	display: inline-block;
	margin-bottom: 30px; }
.pg-contact-details .single-quick-contact h5 {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	line-height: 24px;
	color: #333333;
	font-weight: 700;
	letter-spacing: 0.5px; }
.pg-contact-details .single-quick-contact p {
	font-size: 16px;
	letter-spacing: 0.5px;
	color: #777777;
	margin-bottom: 0; }
.pg-contact-details .single-quick-contact p a {
	color: #777777; }
.pg-contact-details .single-quick-contact p a::after {
	content: "/";
	padding: 0 3px; }
.pg-contact-details .single-quick-contact p a:last-child::after {
	display: none; }
.pg-contact-details .single-quick-contact p a:hover {
	color: #47BB8F; }

.contact-map {
	margin-top: 30px; }

.contact-google-map {
	height: 450px;
	width: 100%;
	border: 1px solid #dddddd;
	border-radius: 10px; }

.pg-contact-form-map-wrapper .pg-contact-form .small-title {
	padding-right: 150px; }
.pg-contact-form-map-wrapper .pg-contact-map-wrapper .small-title {
	padding-right: 190px; }
.pg-contact-form-map-wrapper .pg-contact-map-wrapper .contact-map {
	margin-top: 60px; }
.pg-contact-form-map-wrapper .pg-contact-map-wrapper .contact-google-map {
	height: 350px;
	border-radius: 0; }

.pg-contact-map-fullscreen .contact-google-map {
	border-radius: 0;
	border: none; }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.pg-contact-form-map-wrapper .pg-contact-form .small-title {
		padding-right: 0; }
	.pg-contact-form-map-wrapper .pg-contact-map-wrapper .small-title {
		padding-right: 0; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.pg-contact-details {
		margin-top: 60px; }

	.pg-contact-form .small-title {
		padding-right: 100px; }

	.contact-google-map {
		height: 350px; }

	.pg-contact-map-wrapper {
		margin-top: 50px; }

	.pg-contact-details.mobile-mt-0 {
		margin-top: 0; } }
@media only screen and (max-width: 767px) {
	.pg-contact-details {
		margin-top: 60px; }

	.pg-contact-form .small-title {
		padding-right: 50px; }

	.contact-google-map {
		height: 350px; }

	.pg-contact-details.mobile-mt-0 {
		margin-top: 0; }

	.pg-contact-map-wrapper {
		margin-top: 50px; } }
@media only screen and (max-width: 575px) {
	.pg-contact-details {
		margin-top: 50px; }

	.pg-contact-form .small-title {
		padding-right: 0; }

	.contact-google-map {
		height: 350px; }

	.pg-contact-form-map-wrapper .pg-contact-form .small-title {
		padding-right: 0; }

	.pg-contact-form-map-wrapper .pg-contact-map-wrapper .small-title {
		padding-right: 0; } }
.cr-contact-message-modal {
	position: fixed;
	top: auto;
	bottom: 0;
	left: 0;
	right: auto;
	width: 100%;
	background: rgba(25, 25, 25, 0.95);
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	transform: translateY(100%);
	visibility: hidden;
	opacity: 1;
	z-index: -9;
	-webkit-transition: 0.5s ease-out 0s;
	-moz-transition: 0.5s ease-out 0s;
	-ms-transition: 0.5s ease-out 0s;
	-o-transition: 0.5s ease-out 0s;
	transition: 0.5s ease-out 0s;
	padding: 30px;
	padding-right: 60px;
	-webkit-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2); }
.cr-contact-message-modal .form-messege {
	font-size: 20px;
	margin-bottom: 0;
	line-height: 1.3; }
.cr-contact-message-modal .form-messege.error {
	color: #f6644F; }
.cr-contact-message-modal .form-messege.success {
	color: #47BB8F; }
.cr-contact-message-modal.is-visible {
	opacity: 1;
	visibility: visible;
	z-index: 99999;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0); }
.cr-contact-message-modal button {
	position: absolute;
	right: 25px;
	top: 30px;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	background: transparent;
	color: #ffffff;
	outline: none;
	border: none;
	font-size: 20px; }

@media only screen and (max-width: 767px) {
	.cr-contact-message-modal {
		padding-right: 40px; }
	.cr-contact-message-modal button {
		right: 10px;
		top: 10px; } }
		
		
.pg-contact-us-area.section-padding-lg.bg-white {
    padding: 35px 0;
}

.user-panel {
    float: right;
}

.social-links {
    text-align: center;
}
.social-links-warp p {
    margin-bottom: 0;
}

.page-top-info h1 {
    color: #fff;
}

.product-overlay {
    /* text-align: center; */
    /* background: #000000a3; */
    /* position: absolute; */
    /* top: 0px; */
    /* opacity: 0; */
    /* overflow: hidden; */
}

/*.product-item:hover .product-overlay {*/
/*    opacity: 1;*/
/*    overflow: visible;*/
/*    transition: all .3s linear;*/
/*}*/

.product-overlay a .fa {
    color: #fff;
    font-size: 34px;
}

.product-overlay a {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.top-letest-product-section .product-overlay {
    /* position: absolute; */
    /* text-align: center; */
    /* background: #dc0404a3; */
    /* content: ''; */
    /* width: 100%; */
    /* height: 100%; */
    /* top: 0; */
    /* opacity: 0; */
    /* overflow: hidden; */
}
.top-letest-product-section .product-item:hover .product-overlay{
     /* opacity: 1; */
     /* overflow: visible; */
     /* transition: all .3s linear; */
}

.top-letest-product-section .product-overlay a .fa{
    color: #fff;
    font-size: 34px;
}

.top-letest-product-section .product-overlay a{
     position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}
.social-icons.social-icons-rounded.social-icons-colorized ul {
    list-style: none;
}


.social-icons.social-icons-rounded.social-icons-colorized ul li{
    
display: inline-block;
    
margin: 0 5px;
}

.social-icons.social-icons-rounded.social-icons-colorized ul li .fa{
    
color: #c02e27;
    
font-size: 22px;
}

.service-icon img {
    /* height: 140px; */
}

.product-item {
    margin: 0;
}

/*.work-button.text-center button {*/
/*    color: #444;*/
/*    background: transparent;*/
/*    border: none;*/
/*    font-size: 18px;*/
/*    padding: 14px 25px;*/
/*    border-radius: 5px;*/
/*    border: 1px solid #fc5c0f;*/
/*    margin: 0 5px;*/
/*    text-transform: capitalize;*/
/*    position: relative;*/
/*}*/

.work-remp div{
    width:200px;
    background:#ddd;
    height:200px;
}

.google_map iframe {
    height: 200px;
    border: 1px solid #ddd !important;
}


.our_mission_vi .nav li a {
    font-size: 20px;
    color: #fff;
    /* padding: 10px; */
    /* border: 1px solid #ddd; */
}

.our_mission_vi .nav li {
    padding:10px;
    /* border: 1px solid #ddd; */
    margin: 0 5px;
}



















/* The Image Box */
div.img {
    border: 1px solid #ccc;
}

div.img:hover {
    border: 1px solid #777;
}

/* The Image */
div.img img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

/* Description of Image */
div.desc {
    padding: 15px;
    text-align: center;
}

* {
    box-sizing: border-box;
}

/* Add Responsiveness */
.responsive {
    /* padding: 0 6px; */
    /* float: left; */
    box-shadow: 0.3rem 0.4rem 0.4rem rgb(0 0 0 / 40%);
    /* width: 24.99999%; */
    overflow: hidden;
    margin: 15px 0;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}



/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}


/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}



/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}


@-webkit-keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0.1)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}


.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.responsive img:hover {
    transform: scale(1.15);
}

.responsive img{
    transition:transform 400ms ease-out;
}































#team {
    background: #eee !important;
    text-align: center;
    padding: 30px 0;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #108d6f;
    border-color: #108d6f;
    box-shadow: none;
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #007b5e;
    border-color: #007b5e;
}

section {
    /* padding: 60px 0; */
}

section .section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    margin-top: 30px;
    font-size: 38px;
    text-transform: uppercase;
}

#team .card {
    border: none;
    background: #ffffff;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.frontside .card,
.backside .card {
    min-height: 312px;
}

.backside .card a {
    font-size: 18px;
    color: #007b5e !important;
}

.frontside .card .card-title,
.backside .card .card-title {
    color: #007b5e !important;
}

.frontside .card .card-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}




























.section-title {
	font-size: 28px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	/* font-weight: 400; */
	display: inline-block;
	position: relative;
}
.section-title:after,
.section-title:before {
	content: '';
	position: absolute;
	bottom: 0;
}
.section-title:after {
	height: 2px;
	background-color: rgb(252 92 15);
	left: 25%;
	right: 25%;
}

.section-title:before {
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
	background-color: #fc5c0f;
	left: 50%;
	transform: translatex(-50%);
	bottom: -6px;
	z-index: 9;
	border-radius: 50%;
}

/* CAROUSEL STARTS */
.customer-feedback .owl-item img {
	width: 85px;
	height: 85px;
	position: relative;
	left: 46%;
}

.feedback-slider-item {
	position: relative;
	padding: 60px;
	/* left: 50%; */
	margin-top: -40px;
}

.customer-name {
	margin-top: 15px;
	margin-bottom: 25px;
	font-size: 20px;
	color: #444;
	font-weight: 500;
}

.feedback-slider-item p {
    line-height: 1.875;
    font-size: 20px;
    color: #444;
}

.customer-rating {
	background-color: #eee;
	border: 3px solid #fff;
	color: rgba(1, 1, 1, 0.702);
	font-weight: 700;
	border-radius: 50%;
	position: absolute;
	width: 47px;
	height: 47px;
	line-height: 44px;
	font-size: 15px;
	right: 0;
	top: 77px;
	text-indent: -3px;
}

.thumb-prev .customer-rating {
	top: -20px;
	left: 0;
	right: auto;
}

.thumb-next .customer-rating {
	top: -20px;
	right: 0;
}

.customer-rating i {
	color: rgb(251, 90, 13);
	position: absolute;
	top: 10px;
	right: 5px;
	font-weight: 600;
	font-size: 12px;
}

/* GREY BACKGROUND COLOR OF THE ACTIVE SLIDER */
.feedback-slider-item:after {
	content: '';
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0;
	top: 103px;
	background-color: #f6f6f6;
	border: 1px solid rgba(251, 90, 13, .1);
	border-radius: 10px;
	z-index: -1;
}

.thumb-prev,
.thumb-next {
	position: absolute;
	z-index: 99;
	top: 45%;
	width: 98px;
	height: 98px;
	left: -90px;
	cursor: pointer;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.thumb-next {
	left: auto;
	right: -90px;
}

.feedback-slider-thumb img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
}

.feedback-slider-thumb:hover {
	opacity: .8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.customer-feedback .owl-nav [class*="owl-"] {
	position: relative;
	display: inline-block;
	bottom: 45px;
	transition: all .2s ease-in;
}

.customer-feedback .owl-nav i {
	background-color: transparent;
	color: rgb(251, 90, 13);
	font-size: 25px;
}

.customer-feedback .owl-prev {
	left: -15px;
}

.customer-feedback .owl-prev:hover {
	left: -20px;
}

.customer-feedback .owl-next {
	right: -15px;
}

.customer-feedback .owl-next:hover {
	right: -20px;
}

/* DOTS */
.customer-feedback .owl-dots {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 35px;
}
.customer-feedback .owl-dot {
	display: inline-block;
}

.customer-feedback .owl-dots .owl-dot span {
	width: 11px;
	height: 11px;
	margin: 0 5px;
	background: #fff;
	border: 1px solid rgb(251, 90, 13);
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
	border-radius: 50%;
}

.customer-feedback .owl-dots .owl-dot.active span {
	background-color: rgb(251, 90, 13);
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {
	.feedback-slider-item:after {
		left: 30px;
		right: 30px;
	}
	.customer-feedback .owl-nav [class*="owl-"] {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		margin-top: 45px;
		bottom: auto;
	}
	.customer-feedback .owl-prev {
		left: 0;
	}
	.customer-feedback .owl-next {
		right: 0;
	}
	
}


.them-product-gallary{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.backgroud-imge-product-overlay {
    text-align: center;
    /* background: #000000bd; */
}

.filter-box-img {
    /* width: 29%; */
    display: inline-block;
    margin: 30px;
}
.customer-feedback {
    background: #000000c4;
    padding: 60px 0;
}

.media.service_img img {
    width: 250px;
    margin-right: 20px;
}

.service-box p {
    font-size: 18px;
    color: #333;
    font-weight: 400;
    text-transform: capitalize;
}

.service-box h5 {
    font-size: 25px;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.service-box {
    margin: 15px 0;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
}
.service-overlay {
    background: #e9e9e9cf;
    text-align: center;
    padding-bottom: 30px;
}
.work-button {
    margin-bottom: 12px;
}
section.product-filter-section h2 {
    color: #444;
}




.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

section.our_client_section {
    padding: 30px 0;
    text-align: center;
}
section.our_client_section h2 {
    color: #444;
}

.product-discription {
    /* position: absolute; */
    left: 50%;
    /* top: 70%; */
    transform: translate(-50%, -50%);
}

.product-discription h5{
    color:#fff !important;
}

.product-discription p{
    color:#fff;
}


#team .section-title{
    color:#444;
}

.our_mission_vi .nav li.active {
    background: #ddd;
}

.our_mission_vi p {
    font-size: 18px;
}
/********************** Effect 12 *************************/
/*.product-item {*/
/*	float: left;*/
/*	display: inline-block;*/
/*	width: 100%;*/
	/* max-width: 300px; */
/*	margin-right: 1.5%;*/
/*	position: relative;*/
/*	cursor: pointer;*/
/*	overflow: hidden;*/
/*}*/
/*.product-item img {*/
/*  transform: scale(1);*/
/*	max-width: 100%;*/
/*  transition: 0.5s ease all;*/
/*  transform: rotate(-360deg);*/
/*}*/
/*.product-item .product-discription {*/
/*	text-decoration: none;*/
/*	color: #fff;*/
/*	width: 100%;*/
/*	left: 0;*/
/*	text-align: center;*/
/*	font-size: 40px;*/
/*	height: 0px;*/
/*	position: absolute;*/
/*	transition: 0.5s ease all;*/
/*	visibility: hidden;*/
/*	opacity: 0;*/
	/* bottom: 150px; */
/*	transform: scale(0.3);*/
/*}	*/
/*.product-item:hover .product-discription {*/
  /* background: rgba(0,0,0,0.2); */
/*  visibility: visible;*/
/*  height: 50%;*/
/*  padding: 24.1% 0;*/
/*  opacity: 1;*/
/*  bottom: 3px;*/
/*  transform: scale(1);*/
/*  text-shadow: */
/*		-0   -1px 1px #000000,*/
/*		 0   -1px 1px #000000,*/
/*		-0    1px 1px #000000,*/
/*		 0    1px 1px #000000,*/
/*		-1px -0   1px #000000,*/
/*		 1px -0   1px #000000,*/
/*		-1px  0   1px #000000,*/
/*		 1px  0   1px #000000,*/
/*		-1px -1px 1px #000000,*/
/*		 1px -1px 1px #000000,*/
/*		-1px  1px 1px #000000,*/
/*		 1px  1px 1px #000000,*/
/*		-1px -1px 1px #000000,*/
/*		 1px -1px 1px #000000,*/
/*		-1px  1px 1px #000000,*/
/*		 1px  1px 1px #000000;*/
/*}*/
/*.product-item:hover img {*/
/*  transform: scale(1.5);*/
/*  transform: rotate(0deg);*/
/*}*/

.product-discription.tab-text h4 {
    color: #fff !important;
    letter-spacing: .5px;
    text-transform: capitalize;
    text-align: center;
}

.product-discription.tab-text p {
    color: #fff !important;
    letter-spacing: .5px;
    text-transform: capitalize;
    text-align: center;
}

.product-discription h4 {
    color: #fff !important;
    letter-spacing: .5px;
    text-transform: capitalize;
    text-align: center;
}

.product-discription p {
    color: #fff !important;
    letter-spacing: .5px;
    text-transform: capitalize;
    text-align: center;
}


.filter_btn {
    color: #0a0909;
    border: 1px solid #e41f1f;
    border-radius: 6px;
    margin: 0 5px;
    font-size: 1.5em;
    padding: 10px 35px;
    /* width: 100%; */
    cursor: pointer;
}
    .filter_btn:hover {
        color: #333;
    }


 .filter_btn-4{
        position: relative;
        overflow: hidden;
    }
    .filter_btn-4:before {
        content: '';
        display: block;
        position: absolute;
        background: #333;
        width: 0%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
                -moz- transform: translate(-50%, -50%);
        transition: all .5s;
            -webkit-transition: all .5s;
                -moz-transition: all .5s;
    }
    .filter_btn-4:hover:before {
        width: 100%;
        z-index: -1;
    }





.imagebox{
    position: relative;
    /* width:500px; */
    /* height: 300px; */
    background-size: cover;
    border:2px solid #fff;
    overflow: hidden;
}
.imagebox img{
    width: 100%;
    transition: .5s;
}
.main-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: .5s;
}
.main-content:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateX(-100%) scale(1) skew(-45deg);
    transition: .5s;
}
.content{
    position: absolute;
    top: 57%;
    /* transform: translateY(-50%); */
    /* padding: 30px 50px; */
    text-align: center;
}
.content h4{
    padding: 0px;
    color: #fff;
    margin-bottom: 20px;
    /* font-size: 30px; */
    transform: translateY(-100%) scale(0);
    transition: .5s;
}
.content p{
    padding: 0px;
    color: #fff;
    
    font-size: 17px;
    transform: scale(2);
    transition: .5s;
    opacity: 0;
}

.imagebox:hover .content h4{
    transform: translateY(0) scale(1);
}
.imagebox:hover .content p{
    transform: scale(1);
    opacity: 1;
}
.imagebox:hover img{
     transform: scale(1.5) translateX(50px);
     transition: .5s;
}
.imagebox:hover .main-content:before{
    opacity: 1;
    background: rgba(255,0,0,.8);
    transform: translateX(0) scale(1) skew(-45deg);

}

.product-discription.content .fa {
    font-size: 40px;
    color: #fff;
}

.our_mission_vi ul li a.active {
    background: #e05848 !important;
    border: 0;
    color: #fff !important;
}









/* Included color classes.. 
	.red 
	.blue 
	.yellow 
*/

figure.photo {
  position: relative;
  overflow: hidden;
  /* margin: 10px; */
  /* min-width: 220px; */
  /* max-width: 310px; */
  /* max-height: 220px; */
  width: 100%;
  background: #000000;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

figure.photo * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

figure.photo img {
  max-width: 100%;
  position: relative;
  opacity: 0.4;
  display: block;
}

figure.photo figcaption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

figure.photo h2 {
  position: absolute;
  left: 40px;
  right: 40px;
  color: #fff !important;
  display: inline-block;
  background: #000000;
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  padding: 12px 5px;
  margin: 0;
  top: 50%;
  text-transform: uppercase;
  font-weight: 400;
}

figure.photo h2 span {
  font-weight: 800;
}

figure.photo:before {
  height: 100%;
  width: 100%;
  top: 0px;
  left: -165px;
  content: '';
  background: #161515;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(110deg) translateY(-50%);
  transform: rotate(110deg) translateY(-50%);
}

figure.photo a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

figure.photo.blue {
  background: #123851;
}

figure.photo.blue h2 {
  background: #0a212f;
}

figure.photo.red {
  background: #581a14;
}

figure.photo.red h2 {
  background: #36100c;
}

figure.photo.yellow {
  background: #7f5006;
}

figure.photo.yellow h2 {
  background: #583804;
}

figure.photo:hover img,
figure.photo.hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.photo:hover h2,
figure.photo.hover h2 {
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
}

figure.photo:hover:before,
figure.photo.hover:before {
  -webkit-transform: rotate(110deg) translateY(-150%);
  transform: rotate(110deg) translateY(-150%);
}


/* Demo purposes only */
/* html {
  height: 100%;
}
body {
  background-color: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  margin: 0;
  height: 100%;
} */

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}











.imagebox{
    position: relative;
    /* width:500px; */
    /* height: 300px; */
    background-size: cover;
    border:2px solid #fff;
    overflow: hidden;
    margin: 15px 0;
}
.imagebox img{
    width: 100%;
    transition: .5s;
}
.main-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: .5s;
}
.main-content:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateX(-100%) scale(1) skew(-45deg);
    transition: .5s;
}
.content{
    position: absolute;
    top: 57%;
    /* transform: translateY(-50%); */
    /* padding: 30px 50px; */
    text-align: center;
}
.content h4{
    padding: 0px;
    color: #fff;
    margin-bottom: 20px;
    /* font-size: 30px; */
    transform: translateY(-100%) scale(0);
    transition: .5s;
}
.content p{
    padding: 0px;
    color: #fff;
    
    font-size: 17px;
    transform: scale(2);
    transition: .5s;
    opacity: 0;
}

.imagebox:hover .content h4{
    transform: translateY(0) scale(1);
}
.imagebox:hover .content p{
    transform: scale(1);
    opacity: 1;
}
.imagebox:hover img{
     transform: scale(1.5) translateX(50px);
     transition: .5s;
}
.imagebox:hover .main-content:before{
    opacity: 1;
    background: rgb(0 0 0 / 70%);
    transform: translateX(0) scale(1) skew(-45deg);
}

.product-discription.content .fa {
    font-size: 40px;
    color: #fff;
    position: absolute;
    top: -50%;
    left: 32%;
}

.product-item .fa {
    font-size: 30px !important;
    color: #fff;
    position: absolute;
    top: 46%;
    left: 48%;
    opacity: 0;
}

.product-item:hover .fa{
    opacity: 1;
    transition:all .3s linear;
}
.discription-service {
    text-align: center;
    padding: 20px 0;
}

.service-box .card {
    border: 0;
}

.service-box img:hover {
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.5);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.5);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.5);
    transition: all 200ms ease-in;
    transform: scale(0.90);
    overflow: hidden;
}

section.top-letest-product-section .fa {
    position: absolute;
    top: 50%;
    left: 43%;
    color: #fff;
    font-size: 30px;
    opacity:0;
}
section.control-icon:hover .fa {
    opacity:1;
    transition:all .3s linear;
}


@media (max-width: 575.98px) { 
    
    .filter_btn {
    color: #0a0909;
    border: 1px solid #e41f1f;
    border-radius: 0;
    font-size: 1.5em;
    padding: 3px 25px;
    /* width: 100%; */
    margin-bottom: 10px;
}
    .customer-feedback .owl-dots {
    position: absolute;
    display: none;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
}
section .section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    margin-top: -0;
    font-size: 32px;
    text-transform: uppercase;
}

.customer-feedback {
    background: #000000c4;
    padding: 20px 0;
}

.thumb-next {
    left: auto;
    right: -90px;
    display: none;
}

.thumb-prev, .thumb-next {
    position: absolute;
    z-index: 99;
    top: 45%;
    display: none;
    width: 98px;
    height: 98px;
    left: -90px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.customer-feedback .owl-item img {
    width: 85px;
    height: 85px;
    position: relative;
    left: 30%;
}
.header-search-form {
    width: 100%;
    position: relative;
    padding: 0 10px;
    display: none;
}

.nav-brand-logo {
    display: inline-block;
}

.user-panel {
    float: none; 
}

.page-top-info h1 {
    color: #fff;
    font-size: 60px;
}


.product-item .fa {
    font-size: 30px !important;
    color: #fff;
    position: absolute;
    top: 37%;
    left: 48%;
    opacity: 0;
}
.spad {
    padding-top: 40px;
    padding-bottom: 0; 
}
.filter-widget {
    margin-bottom: 40px;
}
.filter-widget .fw-title {
    font-size: 18px;
    font-weight: 700;
    color: #414141;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h3.contact-form-title {
    font-size: 28px;
}





    
}
figure.photo:hover .fa{
    opacity:1;
    transition:all .3s linear;
}

.customer-logos {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.customer-feedback-slider {
    background: #33333394;
    width: 100%;
    text-align: center;
    height: 100%;
}

canvas.pg-canvas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

button.slick-prev.slick-arrow {
    position: absolute;
    left: 0;
    top: 39%;
    z-index: 9;
    border: 0;
    font-size: 0;
    padding: 16px 7px;
    background: #6b6b6b;
}

/*customer-logos:hover .slick-arrow {*/
/*    opacity: 1;*/
/*    transition:all .3s linear;*/
/*}*/

button.slick-next.slick-arrow{
    position: absolute;
    right: 0;
    top: 39%;
    z-index: 9;
    border: 0;
    font-size: 0;
    padding: 16px 7px;
    background: #6b6b6b;
}

.paralax-img-bg {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    width: 100%;
}
.paralax-img-bg1{
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    width: 100%;
}

div#about-bg-color {
    background: #000000db;
}

.about-info {
    padding: 20px 0;
}

.about-img {
    padding: 20px 0;
}
.discription-service h4 {
    color: #333;
}

.pg-contact-form button:hover {
    background: #b32d21;
    color: #fff;
    transition: all .3s linear;
}

section#team-section {
    text-align: center;
}





@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Poppins:400,400i,500,600,700,800");
    .project-area .section-title h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .project-area .section-title h2 {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.grid > [class*=col-] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.grid-item {
  position: relative;
}
.grid-item img {
  width: 100%;
}
.grid-item:hover .grid-hover-link {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}

.grid-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.grid-hover::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(254, 72, 76, 0.9);
  z-index: -1;
}
.grid-hover h3 {
  position: relative;
  margin: -3.125rem 0 0.25rem;
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .grid-hover h3 {
    font-size: 1.3125rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid-hover h3 {
    font-size: 1.25rem;
    margin: -2.5rem 0 0.25rem;
  }
}
.grid-hover span {
  font-weight: 500;
  position: relative;
  display: block;
  padding-bottom: 20px;
}

.grid-hover-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding-top: 5rem;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid-hover-link {
    padding-top: 5.625rem;
  }
}
.grid-hover-link a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #ffffff;
  text-align: center;
  margin: 0 0.5rem;
}
.grid-hover-link a:hover {
  background-color: #ffffff;
}
.grid-hover-link a:hover span::before {
  color: #fe484c;
}
.grid-hover-link a span {
  display: inline-block;
  line-height: 1;
}
.mouse-move {
  overflow: hidden;
  perspective: 1600px;
}

.mouse-move .grid-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate3d(1, 0, 0, 90deg);
  transform: rotate3d(1, 0, 0, 90deg);
  pointer-events: none;
}

.mouse-move.in-top .grid-hover {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation: in-top 0.3s ease 0s 1 forwards;
  animation: in-top 0.3s ease 0s 1 forwards;
}

.mouse-move.in-right .grid-hover {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-animation: in-right 0.3s ease 0s 1 forwards;
  animation: in-right 0.3s ease 0s 1 forwards;
}

.mouse-move.in-bottom .grid-hover {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: in-bottom 0.3s ease 0s 1 forwards;
  animation: in-bottom 0.3s ease 0s 1 forwards;
}

.mouse-move.in-left .grid-hover {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-animation: in-left 0.3s ease 0s 1 forwards;
  animation: in-left 0.3s ease 0s 1 forwards;
}

.mouse-move.out-top .grid-hover {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation: out-top 0.3s ease 0s 1 forwards;
  animation: out-top 0.3s ease 0s 1 forwards;
}

.mouse-move.out-right .grid-hover {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-animation: out-right 0.3s ease 0s 1 forwards;
  animation: out-right 0.3s ease 0s 1 forwards;
  margin-left: 1px;
}

.mouse-move.out-bottom .grid-hover {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: out-bottom 0.3s ease 0s 1 forwards;
  animation: out-bottom 0.3s ease 0s 1 forwards;
}

.mouse-move.out-left .grid-hover {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-animation: out-left 0.3s ease 0s 1 forwards;
  animation: out-left 0.3s ease 0s 1 forwards;
}

@keyframes in-top {
  from {
    transform: rotate3d(-1, 0, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes in-right {
  from {
    transform: rotate3d(0, -1, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes in-bottom {
  from {
    transform: rotate3d(1, 0, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes in-left {
  from {
    transform: rotate3d(0, 1, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes out-top {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(-1, 0, 0, 104deg);
  }
}
@keyframes out-right {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(0, -1, 0, 104deg);
  }
}
@keyframes out-bottom {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(1, 0, 0, 104deg);
  }
}
@keyframes out-left {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(0, 1, 0, 104deg);
  }
}
.grid-hover h3{
    color: #fff;
    position: relative;
    font-size: 1.5rem;
    position: relative;
    margin: 6rem 0 0.25rem;
    text-align: center;}
  @media (min-width: 992px) and (max-width: 1199px) {
  .grid-hover h3 {
    font-size: 1.3125rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid-hover h3 {
    font-size: 1.25rem;
    margin: -2.5rem 0 0.25rem;
  }
}
.grid-hover span {
  font-weight: 500;
  position: relative;
  display: block;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}
.grid-hover-link{display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fa{color: #fff;}



button.filter_btn:hover {
    background: #fc5c0f;
    transition: all .3s linear;
    color: #fff;
}

.pg-contact-us-area.section-padding-lg h3 {
    color: #444;
}

.pg-contact-us-area.section-padding-lg p {
    color: #444;
    font-size: 18px;
}
.order-2.order-lg-2 {
    background: #cfcfcf;
    padding-top: 20px;
}
.Nahid_hassan {
    /* width: 460px; */
}


.row {
    /* overflow-x: hidden; */
}

.nav-brand-logo {
    padding: 10px 0;
}

.them-product-gallary-1{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height:auto;
    background-attachment: fixed;
}

.single-contant {
    background: #ffffffc7;
    padding: 10px;
}

.single-contant p {
    color: #444;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
}

.single-contant h4 {
    color: #444;
    text-transform: capitalize;
}
section.responsible {
    position: relative;
}
div#single-box-1 {
    position: relative;
    left: 56%;
    padding: 20px;
    top:50%;
}

div#single-box-1 h2 {
    color: #444;
    text-transform: capitalize;
}
.single-contant h2 {
    color: #444;
    text-transform: capitalize;
}
.welcome-text .single-box {
    text-align: center;
    padding: 40px 0;
}

.welcome-text .single-box h2 {
    color: #444;
    text-transform: capitalize;
    padding-bottom: 15px;
}

.welcome-text .single-box p {
    color: #444;
    text-transform: capitalize;
}

.welcome-text .single-box .btn {
    background: #f54d07;
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
}
.Top-selling-product h2 {
    color: #444;
}
.product-slider {
    margin-top: 50px;
}






.mt-60{
    margin-top:60px;
}

.section-block-grey {
    /* padding: 20px 0; */
    background-color: #f9f9f9;
}

.serv-section-2 {
    position: relative;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
    border-radius: 5px;
    overflow: hidden;
    /* padding: 30px; */
}

/*.serv-section-2:before {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0px;*/
/*    z-index: 0;*/
/*    content: " ";*/
/*    width: 120px;*/
/*    height: 120px;*/
/*    background: #f5f5f5;*/
/*    border-bottom-left-radius: 136px;*/
/*    transition: all 0.4s ease-in-out;*/
/*    -webkit-transition: all 0.4s ease-in-out;*/
/*}*/

.serv-section-2-icon {
    /* position: absolute; */
    /* top: 18px; */
    /* right: 22px; */
    /* max-width: 100px; */
    /* z-index: 1; */
    /* text-align: center; */
}

.serv-section-2-icon i {
    color: #5f27cd;
    font-size: 48px;
    line-height: 65px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.serv-section-desc {
    position: relative;
}

.serv-section-2 h4 {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.serv-section-2 h5 {
    color: #333;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
}

.section-heading-line-left {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #5f27cd;
    border-radius: 25%;
    margin-top: 15px;
    margin-bottom: 5px;
}

.serv-section-2 p {
    margin-top: 25px;
    padding-right: 50px;
}

/*.serv-section-2:hover .serv-section-2-icon i {*/
/*    color: #fff;*/
/*}*/

/*.serv-section-2:hover:before {*/
/*    background: #5f27cd;*/
/*}*/

.section-heading h3 {
    color: #444;
    text-transform: capitalize;
}


/* =================================
------------------------------------
  Divisima | eCommerce Template
  Version: 1.0
 ------------------------------------
 ====================================*/
/*@font-face {*/
/*  font-family: "hobo";*/
/*  src: url('/fonts/hobo.tff');*/
/*}*/

@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
/*@font-face{*/
/*    font-family:"hobo-4";*/
/*    src:url("https://candyfonts.com/wp-data/2019/03/23/44734/hobo.ttf") format("woff"),*/
/*    url("https://candyfonts.com/wp-data/2019/03/23/44734/hobo.ttf") format("opentype"),*/
/*    url("https://candyfonts.com/wp-data/2019/03/23/44734/hobo.ttf") format("truetype");*/
/*}*/

/*@font-face {*/
/*    font-family: hobo;*/
/*    src: url('{{ public_path('fonts/hobo.tff') }}');*/
/*}*/

/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	scroll-behavior: smooth;
}



h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #fff;
    font-weight: 600;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 14px;
	color: #fff;
	line-height: 1.6;
}

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
-----------------------*/

.section-title {
	text-align: center;
}

.section-title h2 {
	font-size: 36px;
	color: #444;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.spad {
	/* padding-top: 105px; */
	/* padding-bottom: 105px; */
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

/* buttons */

.site-btn {
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: 600;
	min-width: 167px;
	padding: 18px 47px 14px;
	border-radius: 50px;
	text-transform: uppercase;
	background: #f54d07;
	color: #fff;
	line-height: normal;
	cursor: pointer;
	text-align: center;
}

.site-btn:hover {
	color: #fff;
}

.site-btn.sb-white {
	background: #fff;
	color: #111111;
}

.site-btn.sb-line {
	background: transparent;
	color: #fff;
	-webkit-box-shadow: inset 0 0 0 1px #f54d07;
	box-shadow: inset 0 0 0 1px #f54d07;
}

.site-btn.sb-dark {
	background: #413a3a;
}

.site-btn.sb-dark.sb-line {
	background-color: transparent;
	color: #111;
	-webkit-box-shadow: inset 0 0 0 1px #f54d07;
	box-shadow: inset 0 0 0 1px #f54d07;
}
button.site-btn.sb-line.sb-dark:hover {
	background: #f54d07;
	color: #fff;
	transition: all .3s linear;
}
/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.elements-section {
	padding-top: 100px;
}

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

.element {
	margin-bottom: 100px;
}

.element:last-child {
	margin-bottom: 0;
}

/* Accordion */

.accordion-area {
	margin-top: 50px;
	border-top: 2px solid #e1e1e1;
}

.accordion-area .panel {
	border-bottom: 2px solid #e1e1e1;
}

.accordion-area .panel-link {
	background-image: url("../img/arrow-down.png");
	background-repeat: no-repeat;
	background-position: right 10px top 30px;
}

.faq-accordion.accordion-area .panel-link,
.faq-accordion.accordion-area .panel-link.active.collapsed {
	padding: 17px 100px 17px 20px;
}

.faq-accordion.accordion-area .panel-link:after {
	right: 44px;
}

.accordion-area .panel-header .panel-link.collapsed {
	background-image: url("../img/arrow-down.png");
}

.accordion-area .panel-link.active {
	background-image: url("../img/arrow-up.png");
}

.accordion-area .panel-link.active {
	background-color: transparent;
}

.accordion-area .panel-link,
.accordion-area .panel-link.active.collapsed {
	text-align: left;
	position: relative;
	width: 100%;
	font-size: 14px;
	font-weight: 700;
	color: #414141;
	padding: 0;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	border: none;
	min-height: 69px;
	background-color: transparent;
	border-radius: 0;
}

.accordion-area .panel-body {
	padding-top: 10px;
}

.accordion-area .panel-body p {
	color: #8f8f8f;
	margin-bottom: 25px;
	line-height: 1.8;
}

.accordion-area .panel-body p span {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #f51167;
}

.accordion-area .panel-body img {
	margin-bottom: 25px;
}

.accordion-area .panel-body h4 {
	font-size: 18px;
	margin-bottom: 20px;
}

/*------------------
  Header section
---------------------*/

.header-top {
	padding: 18px 0 14px;
}

.site-logo {
	display: inline-block;
}

.header-search-form {
	width: 100%;
	position: relative;
	padding: 0 10px;
	text-align: center;
}

.header-search-form input {
	width: 100%;
	height: 44px;
	font-size: 14px;
	border-radius: 50px;
	border: none;
	padding: 0 19px;
	background: #f0f0f0;
}

.header-search-form button {
	position: absolute;
	height: 100%;
	right: 18px;
	top: 0;
	font-size: 26px;
	color: #000;
	border: none;
	cursor: pointer;
	background-color: transparent;
}

.user-panel .up-item {
	font-size: 14px;
	margin-top: 6px;
}

.user-panel .up-item i {
	font-size: 22px;
}

.user-panel .up-item a {
	font-size: 14px;
	color: #444;
}
.user-panel a {
	color: #444;
}
.user-panel .up-item:first-child {
	margin-right: 29px;
}

.shopping-card {
	display: inline-block;
	position: relative;
}

.shopping-card span {
	position: absolute;
	top: -4px;
	left: 100%;
	height: 16px;
	min-width: 16px;
	color: #fff;
	font-size: 13px;
	background: #f51167;
	text-align: center;
	border-radius: 30px;
	padding: 0 2px;
	margin-left: -7px;
}

.main-navbar {
	background: #ffffff;
	/* position: absolute; */
	width: 100%;
	z-index: 999;
}

.slicknav_menu {
	display: none;
}

.main-menu {
	list-style: none;
	/* display: inline-block; */
	text-align: center;
	float: right;
}

.main-menu li {
	/* display: inline-block; */
	position: relative;
	padding: 17px 0px;
}

.main-menu li a {
	display: inline-block;
	font-size: 16px;
	color: #000;
	margin-right: 7px;
	border: 1px solid #e4b532;
	line-height: 1;
	border-radius: 9px;
	background: #e4b532;
	padding: 13px 9px;
	position: relative;
}

.main-menu li a .new {
	position: absolute;
	top: -8px;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: #f51167;
	line-height: 1;
	text-transform: uppercase;
	left: calc(50% - 21px);
	padding: 5px 9px 1px;
	border-radius: 15px;
	width: 42px;
}

.main-menu li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
}

.main-menu li:hover>a {
	color: #f54d07;
	transition: all .3s linear;
}

.main-menu .sub-menu {
	position: absolute;
	list-style: none;
	width: 220px;
	left: 0;
	top: 100%;
	padding: 20px 0;
	visibility: hidden;
	opacity: 0;
	margin-top: 50px;
	background: #fff;
	z-index: 99;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
	box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
}

.main-menu .sub-menu li {
	display: block;
}

.main-menu .sub-menu li a {
	display: block;
	color: #000;
	margin-right: 0;
	padding: 8px 20px;
}

.main-menu .sub-menu li a:hover {
	color: #f54d07;
	transition: all .3s linear;
}

.nav-switch {
	display: none;
}

/* ----------------
  Features
---------------------*/

.hero-section {
	padding-bottom: 54px;
	folot: left !important;
}

.hero-slider .hs-item {
	position: relative;
}

.hero-slider .hs-item span {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 3px;
	margin-bottom: 5px;
	display: block;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item h2 {
	font-size: 60px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item p {
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 35px;
	position: relative;
	top: 100px;
	opacity: 0;
}

.hero-slider .hs-item .site-btn {
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item .sb-line {
	margin-right: 5px;
}

.hero-slider .hs-item .container {
    position: relative;
    /* padding-top: 170px; */
    top: 42%;
    left: 0%;
}

.hero-slider .hs-item .offer-card {
	position: absolute;
	right: 0;
	top: 226px;
	width: 162px;
	height: 162px;
	border-radius: 50%;
	background: #f51167;
	text-align: center;
	padding-top: 20px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
}

.hero-slider .hs-item .offer-card:after {
	position: absolute;
	content: "";
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 1px solid #f96790;
	left: 5px;
	top: 5px;
	border-radius: 50%;
}

.hero-slider .hs-item .offer-card span {
	font-size: 18px;
	text-transform: lowercase;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item .offer-card h2 {
	font-size: 72px;
	font-weight: 400;
	line-height: 1;
}

.hero-slider .hs-item .offer-card p {
	text-transform: uppercase;
	line-height: 1;
	font-size: 14px;
}

.hero-slider .slider-nav-warp {
	max-width: 1145px;
	bottom: 0;
	margin: -78px auto 0;
}

.hero-slider .slider-nav {
	display: inline-block;
	padding: 0 38px;
	position: relative;
}

.hero-slider .owl-dots {
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 9px;
}

.hero-slider .owl-dots .owl-dot {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 15px;
	margin-right: 10px;
	opacity: 0.25;
}

.hero-slider .owl-dots .owl-dot.active {
	opacity: 1;
}

.hero-slider .owl-dots .owl-dot:last-child {
	margin-right: 0;
}

.hero-slider .owl-nav button.owl-next,
.hero-slider .owl-nav button.owl-prev {
	font-size: 27px;
	position: absolute;
	color: #fff;
	opacity: 0.5;
	bottom: -20px;
}

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

.hero-slider .owl-nav button.owl-prev {
	left: 0;
}

.hero-slider .owl-item.active .hs-item h2,
.hero-slider .owl-item.active .hs-item span,
.hero-slider .owl-item.active .hs-item p,
.hero-slider .owl-item.active .hs-item .site-btn {
	top: 0;
	opacity: 1;
}

.hero-slider .owl-item.active .hs-item span {
	-webkit-transition: all 0.5s ease 0.2s;
	-o-transition: all 0.5s ease 0.2s;
	transition: all 0.5s ease 0.2s;
}

.hero-slider .owl-item.active .hs-item h2 {
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}

.hero-slider .owl-item.active .hs-item p {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

.hero-slider .owl-item.active .hs-item .site-btn {
	-webkit-transition: all 0.5s ease 0.8s;
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}

.hero-slider .owl-item.active .hs-item .offer-card {
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 0.5s ease 1s;
	-webkit-transition: all 0.5s ease 1s;
	-o-transition: all 0.5s ease 1s;
	transition: all 0.5s ease 1s;
}

.slide-num-holder {
	float: right;
	z-index: 1;
	color: #fff;
	position: relative;
	font-size: 24px;
	font-weight: 700;
	position: relative;
	margin-top: -22px;
}

.slide-num-holder span:first-child {
	margin-right: 41px;
}

.slide-num-holder:after {
	position: absolute;
	content: "";
	height: 30px;
	width: 1px;
	background: #fff;
	left: 50%;
	top: 0;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}

/* ------------------
  Features section
---------------------*/

.feature {
	text-align: center;
	background: #f8f8f8;
	height: 100%;
}

.feature:nth-child(2) {
	background: #f54d07;
}

.feature:nth-child(2) h2 {
	color: #fff;
}

.feature .feature-inner {
	padding: 20px 25px;
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
}

.feature .feature-icon {
	display: inline-block;
	margin-right: 15px;
}

.feature h2 {
	font-size: 24px;
	text-transform: uppercase;
	display: inline-block;
	color: #444;
}

/* ----------------------
  Latest product section
------------------------*/

.top-letest-product-section {
	/* padding-top: 70px; */
	/* padding-bottom: 25px; */
}

.top-letest-product-section .section-title {
	margin-bottom: 35px;
	padding-top: 45px;
}

.product-slider .owl-nav {
	position: absolute;
	top: calc(50% - 60px);
	width: 100%;
	left: 0;
}

.product-slider .owl-nav button.owl-next,
.product-slider .owl-nav button.owl-prev {
	color: #f54d07;
	font-size: 42px;
	position: relative;
}

.product-slider .owl-nav button.owl-next {
	float: right;
	right: -92px;
}

.product-slider .owl-nav button.owl-prev {
	float: left;
	left: -92px;
}

.product-item .pi-pic {
	position: relative;
	display: block;
}

.product-item .tag-new,
.product-item .tag-sale {
	position: absolute;
	right: 16px;
	top: 14px;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: #50e550;
	line-height: 1;
	text-transform: uppercase;
	padding: 5px 9px 1px;
	border-radius: 15px;
	width: 42px;
}

.product-item .tag-sale {
	text-align: center;
	padding: 5px 0px 1px;
	min-width: 65px;
	background: #f51167;
}

.product-item .pi-links {
	width: 100%;
	position: absolute;
	right: 0;
	bottom: 18px;
	z-index: 9;
	padding-right: 15px;
	text-align: right;
}

.product-item .pi-links a {
	display: inline-table;
	width: 36px;
	height: 36px;
	background: #fff;
	border-radius: 60px;
	font-size: 18px;
	line-height: 18px;
	padding-top: 9px;
	overflow: hidden;
	color: #000;
	position: relative;
	-webkit-box-shadow: 1px 0 32px rgba(0, 0, 0, 0.2);
	box-shadow: 1px 0 32px rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	text-align: center;
}

.product-item .pi-links a i {
	display: inline-block;
	color: #000;
}

.product-item .pi-links a.add-card {
	padding-top: 8px;
}

.product-item .pi-links a.add-card span {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	position: absolute;
	right: 19px;
	top: 20px;
	opacity: 0;
}

.product-item .pi-links a.add-card:hover {
	width: 148px;
	padding: 8px 18px 0;
	text-align: left;
}

.product-item .pi-links a.add-card:hover span {
	opacity: 1;
	top: 10px;
	-webkit-transition: all 0.4s ease 0.3s;
	-o-transition: all 0.4s ease 0.3s;
	transition: all 0.4s ease 0.3s;
}

.product-item .pi-text {
	padding-top: 22px;
	height: 87px;
	background: #ddd;
	text-align: center;
}

.product-item .pi-text h6 {
	float: right;
	padding-left: 40px;
	overflow: hidden;
	font-weight: 700;
	color: #111111;
}

.product-item .pi-text p {
	font-size: 16px;
	color: #111111;
	margin-bottom: 0;
}

/* -----------------------
  Product filter section
-------------------------*/

.product-filter-section {
	/* padding-bottom: 60px; */
	text-align: center;
	background: #c9c9c9;
}

.product-filter-section .section-title {
	margin-bottom: 35px;
}

.product-filter-menu {
	list-style: none;
	margin: 0 -10px;
	padding-bottom: 15px;
}

.product-filter-menu li {
	margin: 0 10px 10px;
	display: inline-block;
}

.product-filter-menu li a {
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	background: #f54d07;
	display: block;
	width: 100%;
	padding: 10px 34px;
	border-radius: 31px;
}

/* ----------------
  Banner section
---------------------*/

.banner {
	padding: 50px 34px 47px;
	position: relative;
	margin-bottom: 70px;
}

.banner .tag-new {
	position: absolute;
	right: 26px;
	top: 27px;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	background: #50e550;
	line-height: 1;
	text-transform: uppercase;
	padding: 7px 16px 1px;
	border-radius: 80px;
}

.banner span {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 3px;
	margin-bottom: 5px;
	display: block;
}

.banner h2 {
	font-size: 48px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
	color: #282828;
}

/* ----------------
  Footer section
---------------------*/

.footer-section {
	background: #0a0a0a;
	padding-top: 30px;
	margin-top: 50px;
}

.footer-logo {
	padding-bottom: 60px;
}

.footer-widget {
	/* margin-bottom: 70px; */
	overflow: hidden;
}

.footer-widget h2 {
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	color: #c49a30;
	margin-bottom: 21px;
}

.footer-widget p {
	color: #fff;
}

.footer-widget.about-widget p {
	/* margin-bottom: 50px; */
	letter-spacing: -0.01em;
	text-align: justify;
}

.footer-widget ul {
	list-style: none;
	float: left;
	margin-right: 37px;
}

.footer-widget ul:last-child {
	margin-right: 0;
}

.footer-widget ul li a {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	color: #fff;
	margin-bottom: 6px;
}

.footer-widget ul li a:after {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	left: 0;
	top: 8px;
	border: 1px solid #f54d07;
	border-radius: 50%;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.footer-widget ul li a:hover {
	color: #fff;
}

.footer-widget ul li a:hover:after {
	width: 7px;
	height: 7px;
	top: 6px;
	background: #f54d07;
}

.fw-latest-post-widget .lp-item {
	margin-bottom: 30px;
	display: block;
	overflow: hidden;
}

.fw-latest-post-widget .lp-thumb {
	width: 64px;
	height: 64px;
	float: left;
	margin-right: 22px;
}

.fw-latest-post-widget .lp-content {
	overflow: hidden;
	padding-top: 2px;
}

.fw-latest-post-widget .lp-content h6 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	/* opacity: 0.25; */
	color: #fff !important;
	margin-bottom: 1px;
}

.fw-latest-post-widget .lp-content span {
	display: block;
	font-size: 12px;
	color: #fff;
	margin-bottom: 4px;
}

.fw-latest-post-widget .lp-content .readmore {
	font-size: 12px;
	color: #f54d07;
}

.contact-widget .con-info span {
	float: left;
	color: #f54d07;
	margin-right: 15px;
	overflow: hidden;
}

.social-links-warp {
	border-top: 2px solid #3b3535;
	padding: 8px 0;
	background: #4a3600;
}

.social-links a {
	margin-right: 54px;
	display: inline-block;
	/* color: #333 !important; */
}

.social-links a:last-child {
	margin-right: 0;
}

.social-links a i {
	font-size: 30px;
	color: #d7d7d7;
	float: left;
	margin-right: 10px;
	overflow: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.social-links a span {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #b5b30e;
	padding-top: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.social-links a.instagram:hover i {
	color: #2F5D84;
}

.social-links a.google-plus:hover i {
	color: #E04B37;
}

.social-links a.twitter:hover i {
	color: #5abed6;
}

.social-links a.pinterest:hover i {
	color: #CD212D;
}

.social-links a.facebook:hover i {
	color: #39599F;
}

.social-links a.twitter:hover i {
	color: #5abed6;
}

.social-links a.youtube:hover i {
	color: #D12227;
}

.social-links a.tumblr:hover i {
	color: #37475E;
}

.social-links a:hover span {
	color: #282828;
}

/* --------------
  Other Pages
------------------*/

.page-top-info {
	/* background: #f8f7f7; */
	/* padding: 60px 0 70px; */
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 400px;
	position: relative;
}

.page-top-info h4 {
	color: #414141;
	font-weight: 700;
	text-transform: uppercase;
}

.site-pagination {
	font-size: 14px;
	font-weight: 600;
	color: #414141;
}

.site-pagination a {
	display: inline-block;
	font-size: 14px;
	color: #414141;
}

/* --------------
  Category page
------------------*/

.filter-widget {
	margin-bottom: 100px;
	padding-top: 30px;
}

.filter-widget .fw-title {
	font-size: 18px;
	font-weight: 700;
	color: #414141;
	text-transform: uppercase;
	margin-bottom: 45px;
}

.category-menu {
	list-style: none;
}

.category-menu li a {
	display: block;
	position: relative;
	font-size: 14px;
	color: #414141;
	border-bottom: 1px solid #ebebeb;
	padding: 11px 0 5px 20px;
}

.category-menu li a span {
	float: right;
}

.category-menu li a:after {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	left: 0;
	top: 13px;
	border: 1px solid #e4b532;
	border-radius: 50%;
}

.category-menu li a:hover {
	color: #a27a0c;
}

.category-menu li a:hover:after {
	background: #885718;
}

.category-menu li a:last-child a {
	margin-bottom: 0;
}

.category-menu li .sub-menu {
	list-style: none;
	overflow: hidden;
	height: 0;
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	opacity: 0;
	-webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
	transition: opacity 0.4s, -webkit-transform 0.4s;
	-o-transition: transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

.category-menu li .sub-menu li a {
	padding-left: 45px;
}

.category-menu li:hover>a {
	color: #f51167;
}

.category-menu li.active>.sub-menu {
	display: block;
	height: auto;
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.price-range-wrap .price-range {
	border-radius: 0;
	margin-right: 13px;
	margin-bottom: 28px;
}

.price-range-wrap .price-range.ui-widget-content {
	border: none;
	background: #ebebeb;
	height: 2px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-range {
	background: #ebebeb;
	border-radius: 0;
}

.price-range-wrap .price-range .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
	background: #414141;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
	border: none;
	background: #414141;
	height: 14px;
	width: 14px;
	outline: none;
	top: -6px;
	cursor: ew-resize;
	margin-left: 0;
	border-radius: 0;
	border-radius: 20px;
}

.price-range-wrap .price-range .ui-slider-handle.ui-corner-all.ui-state-default span {
	position: absolute;
	font-size: 14px;
	top: 35px;
}

.price-range-wrap .range-slider {
	color: #444444;
	margin-top: 22px;
}

.price-range-wrap {
	border-bottom: 2px solid #ebebeb;
	padding-bottom: 40px;
	margin-bottom: 50px;
}

.price-range-wrap h4 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	color: #414141;
	margin-bottom: 45px;
}

.price-range-wrap .range-slider .price-input input {
	color: #444444;
	border: none;
	outline: none;
	max-width: 80px;
	pointer-events: none;
}

.price-range-wrap .range-slider .price-input input:nth-child(1) {
	float: left;
}

.price-range-wrap .range-slider .price-input input:nth-child(2) {
	float: right;
}

.fw-color-choose,
.fw-size-choose {
	border-bottom: 2px solid #ebebeb;
	padding-bottom: 40px;
	margin-bottom: 50px;
}

.fw-color-choose .cs-item {
	display: inline-block;
	position: relative;
	margin-right: 14px;
}

.fw-color-choose .cs-item:last-child {
	margin-right: 0;
}

.fw-color-choose label {
	width: 26px;
	height: 26px;
	border-radius: 50px;
	background: #333;
	position: relative;
	cursor: pointer;
}

.fw-color-choose label.cs-gray {
	background: #d7d7d7;
}

.fw-color-choose label.cs-orange {
	background: #6f91ff;
}

.fw-color-choose label.cs-yollow {
	background: #6f91ff;
}

.fw-color-choose label.cs-green {
	background: #8fc99c;
}

.fw-color-choose label.cs-purple {
	background: #bc83b1;
}

.fw-color-choose label.cs-blue {
	background: #9ee7f4;
}

.fw-color-choose label span {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 45px;
	font-size: 11px;
	color: #414141;
}

.fw-color-choose input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.fw-color-choose input[type=radio]:checked+label {
	-webkit-box-shadow: 0 0 0 2px #f51167;
	box-shadow: 0 0 0 2px #f51167;
}

.fw-color-choose input[type=radio]:checked+label span {
	color: #b09d81;
}

.fw-size-choose .sc-item {
	display: inline-block;
	position: relative;
	margin-right: 5px;
}

.fw-size-choose label {
	display: inline-block;
	height: 30px;
	min-width: 30px;
	text-align: center;
	font-size: 14px;
	color: #414141;
	font-weight: 500;
	cursor: pointer;
	border-radius: 50px;
	padding: 7px 6px 0;
}

.fw-size-choose input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.fw-size-choose input[type=radio]:checked+label {
	background: #f51167;
	color: #fff;
}

/* --------------
  Product page
------------------*/

.product-section {
	padding-top: 70px;
	padding-bottom: 65px;
}

.back-link {
	padding-bottom: 50px;
}

.back-link a {
	font-size: 12px;
	color: #414141;
}

.product-pic-zoom {
	margin-bottom: 35px;
}

.product-thumbs-track {
	width: 1200px;
}

.product-thumbs .pt {
	width: 116px;
	height: 116px;
	float: left;
	margin-right: 31px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.product-thumbs .pt:last-child {
	margin-right: 0;
}

.product-thumbs .pt.active:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border: 2px solid #f51167;
	z-index: 1;
}

.product-details .p-title {
	font-size: 18px;
	font-weight: 700;
	color: #414141;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.product-details .p-price {
	font-size: 24px;
	color: #414141;
	font-weight: 700;
	margin-bottom: 20px;
}

.product-details .p-stock {
	font-size: 12px;
	color: #000;
	font-weight: 700;
	color: #414141;
	margin-bottom: 10px;
}

.product-details .p-stock span {
	color: #f51167;
}

.product-details .p-rating {
	margin-bottom: 15px;
}

.product-details .p-rating i {
	color: #f51167;
}

.product-details .p-rating i.fa-fade {
	color: #e6e6e6;
}

.product-details .p-review {
	margin-bottom: 30px;
}

.product-details .p-review a {
	color: #414141;
	font-size: 14px;
	margin-right: 12px;
	margin-left: 12px;
}

.product-details .p-review a:first-child {
	margin-left: 0;
}

.product-details .fw-size-choose {
	border-bottom: none;
	margin-bottom: 30px;
	padding-bottom: 0;
}

.product-details .fw-size-choose p {
	float: left;
	margin-right: 38px;
	text-transform: uppercase;
	font-weight: 700;
	color: #414141;
	padding-top: 10px;
	margin-bottom: 0;
}

.product-details .fw-size-choose label {
	width: 33px;
	height: 33px;
	font-size: 12px;
	border: 2px solid #414141;
}

.product-details .fw-size-choose input[type=radio]:checked+label {
	border: 2px solid #f51167;
}

.product-details .fw-size-choose .disable label {
	border: 2px solid #e1e1e1;
	color: #cacaca;
}

.product-details .site-btn {
	min-width: 190px;
}

.product-details .social-sharing {
	padding-top: 50px;
}

.product-details .social-sharing a {
	color: #d7d7d7;
	margin-right: 23px;
	font-size: 14px;
}

.product-details .social-sharing a:hover {
	color: #414141;
}

.quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 40px;
}

.quantity p {
	float: left;
	margin-right: 15px;
	text-transform: uppercase;
	font-weight: 700;
	color: #414141;
	padding-top: 10px;
	margin-bottom: 0;
}

.quantity .pro-qty {
	width: 94px;
	height: 36px;
	border: 1px solid #ddd;
	padding: 0 15px;
	border-radius: 40px;
	float: left;
}

.quantity .pro-qty .qtybtn {
	width: 15px;
	display: block;
	float: left;
	line-height: 36px;
	cursor: pointer;
	text-align: center;
	font-size: 18px;
	color: #404040;
}

.quantity .pro-qty input {
	width: 28px;
	float: left;
	border: none;
	height: 36px;
	line-height: 40px;
	padding: 0;
	font-size: 14px;
	text-align: center;
	background-color: transparent;
}

.related-product-section {
	padding-bottom: 70px;
}

.related-product-section .section-title h2 {
	font-size: 24px;
	margin-bottom: 60px;
}

/* ----------------
  Cart page
---------------------*/

.scrollbar {
	margin: 80px auto 0;
	width: 100%;
	height: 7px;
	line-height: 0;
	background: #ececec;
	overflow: hidden;
}

.scrollbar .handle {
	width: 100px;
	height: 100%;
	background: #fff;
	cursor: pointer;
}

.scrollbar .handle .mousearea {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 7px;
	background: #b09d81;
	border-radius: 30px;
}

.cart-table {
	padding: 40px 34px 0;
	background: #f0f0f0;
	border-radius: 27px;
	overflow: hidden;
}

.cart-table h3 {
	font-weight: 700;
	margin-bottom: 37px;
}

.cart-table table {
	width: 100%;
	min-width: 442px;
	margin-bottom: 17px;
}

.cart-table table tr th {
	font-size: 12px;
	font-weight: 400;
	color: #414141;
	text-align: center;
	padding-bottom: 25px;
}

.cart-table table tr th.product-th {
	text-align: left;
}

.cart-table table tr th.size-th {
	padding-right: 70px;
}

.cart-table table tr th.quy-th {
	padding-right: 20px;
}

.cart-table .product-col {
	display: table;
	margin-bottom: 19px;
}

.cart-table .product-col img {
	display: table-cell;
	vertical-align: middle;
	float: left;
	width: 73px;
}

.cart-table .product-col .pc-title {
	display: table-cell;
	vertical-align: middle;
	padding-left: 30px;
}

.cart-table .product-col .pc-title h4 {
	font-size: 16px;
	color: #414141;
	font-weight: 700;
	margin-bottom: 3px;
}

.cart-table .product-col .pc-title p {
	margin-bottom: 0;
	font-size: 16px;
	color: #414141;
}

.cart-table .quy-col {
	padding-right: 20px;
}

.cart-table .quantity {
	margin-bottom: 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cart-table .quantity .pro-qty {
	width: 80px;
	background: #fff;
	border-color: #fff;
}

.cart-table .quantity .pro-qty .qtybtn {
	width: 10px;
}

.cart-table .size-col,
.cart-table .total-col {
	text-align: center;
}

.cart-table .size-col h4,
.cart-table .total-col h4 {
	font-size: 18px;
	color: #414141;
	font-weight: 400;
}

.cart-table .size-col h4 {
	padding-right: 70px;
}

.cart-table .total-cost {
	background: #f51167;
	margin: 0 -34px;
	text-align: right;
	padding: 22px 0;
	padding-right: 50px;
}

.cart-table .total-cost h6 {
	line-height: 1;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.cart-table .total-cost h6 span {
	margin-left: 38px;
}

.card-right .site-btn {
	margin-bottom: 14px;
	width: 100%;
	min-height: 57px;
	padding: 23px 47px 14px;
}

.promo-code-form {
	position: relative;
	margin-bottom: 14px;
}

.promo-code-form input {
	width: 100%;
	height: 58px;
	border: 2px solid #f0f0f0;
	padding-left: 24px;
	padding-right: 100px;
	font-size: 16px;
	border-radius: 80px;
}

.promo-code-form button {
	position: absolute;
	right: 24px;
	top: 0;
	height: 100%;
	background-color: transparent;
	border: none;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	color: #f51167;
	cursor: pointer;
}

/* ----------------
  Checkout Page
---------------------*/

.checkout-form .cf-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	border-radius: 50px;
	background: #3b3b3b;
	padding: 21px 29px 20px;
	margin-bottom: 66px;
}

.checkout-form p {
	font-size: 16px;
	color: #414141;
}

.checkout-form h4 {
	font-size: 18px;
	color: #414141;
}

.checkout-form input[type=text] {
	width: 100%;
	height: 44px;
	border: none;
	padding: 0 18px;
	background: #f0f0f0;
	border-radius: 40px;
	margin-bottom: 20px;
	font-size: 14px;
}

.checkout-form .address-inputs {
	margin-bottom: 54px;
}

.address-rb {
	text-align: right;
	margin-bottom: 30px;
}

.address-rb .cfr-item {
	display: inline-block;
}

.cf-radio-btns .cfr-item {
	margin-bottom: 15px;
}

.cf-radio-btns label {
	display: block;
	font-size: 16px;
	color: #414141;
	margin-bottom: 0;
	padding-left: 30px;
	position: relative;
	cursor: pointer;
}

.cf-radio-btns label:after {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	left: 4px;
	top: 8px;
	background: #414141;
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.cf-radio-btns label:before {
	position: absolute;
	content: "";
	width: 13px;
	height: 13px;
	left: 0;
	top: 4px;
	border: 2px solid #e1e1e1;
	border-radius: 40px;
}

.cf-radio-btns input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.cf-radio-btns input[type=radio]:checked+label:after {
	opacity: 1;
}

.shipping-btns {
	margin-bottom: 50px;
}

.shipping-btns .cf-radio-btns label {
	font-size: 18px;
	font-weight: 600;
	padding-left: 37px;
}

.payment-list {
	list-style: none;
	margin-bottom: 40px;
}

.payment-list li {
	font-size: 18px;
	font-weight: 600;
	color: #414141;
	margin-bottom: 20px;
}

.payment-list li a,
.payment-list li span {
	padding-left: 40px;
}

.submit-order-btn {
	width: 100%;
	min-height: 58px;
}

.checkout-cart {
	background: #f0f0f0;
	padding: 40px 24px 30px;
	border-radius: 25px;
}

.checkout-cart h3 {
	margin-bottom: 30px;
}

.checkout-cart .product-list {
	list-style: none;
}

.checkout-cart .product-list li {
	overflow: hidden;
	display: block;
	margin-bottom: 29px;
}

.checkout-cart .product-list .pl-thumb {
	float: left;
	overflow: hidden;
	margin-right: 22px;
	width: 99px;
}

.checkout-cart .product-list .pl-thumb img {
	min-width: 100%;
}

.checkout-cart .product-list h6 {
	font-weight: 700;
	color: #414141;
	padding-top: 15px;
	margin-bottom: 5px;
}

.checkout-cart .product-list p {
	font-size: 16px;
	margin-bottom: 0;
}

.checkout-cart .price-list {
	padding-left: 17px;
	padding-right: 5px;
	list-style: none;
}

.checkout-cart .price-list li {
	overflow: hidden;
	display: block;
	font-size: 18px;
	color: #414141;
	margin-bottom: 10px;
}

.checkout-cart .price-list li span {
	float: right;
	width: 60px;
	text-align: left;
}

.checkout-cart .price-list li.total {
	padding-top: 35px;
	font-weight: 700;
}

/* ----------------
  Contact Page
---------------------*/

.contact-section {
	padding-top: 80px;
	padding-bottom: 0;
	position: relative;
}

.contact-info h3 {
	margin-bottom: 50px;
}

.contact-social {
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 85px;
	padding-top: 20px;
}

.contact-social a {
	display: -ms-inline-flex;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 32px;
	height: 32px;
	background: #f0f0f0;
	color: #414141;
	font-size: 14px;
	border-radius: 50%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 12px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.contact-social a:hover {
	color: #fff;
	background: #f51167;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	height: 44px;
	border: none;
	padding: 0 18px;
	background: #f0f0f0;
	border-radius: 40px;
	margin-bottom: 17px;
	font-size: 14px;
}

.contact-form textarea {
	padding-top: 16px;
	border-radius: 18px;
	height: 175px;
	margin-bottom: 32px;
}

.map {
	position: absolute;
	width: calc(50% - 15px);
	height: 89%;
	right: 0;
	top: 0;
	background: #ddd;
}

.map iframe {
	width: 100%;
	height: 100%;
}

/* ----------------
  Responsive
---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1175px;
		overflow: hidden;
	}
}

@media (max-width: 1350px) {
	.product-slider .owl-nav {
		position: relative;
		left: 0;
		top: 0;
		text-align: center;
		padding-top: 20px;
	}
	.product-slider .owl-nav button.owl-prev,
	.product-slider .owl-nav button.owl-next {
		float: none;
		left: 0;
		right: 0;
		margin: 0 10px;
	}
}

/* Medium screen : 992px. */


@media (max-width: 1379px) {
    .Nahid_hassan {
        /* width: 581px !important; */
    }
    .filter-box-img {
    margin: 0px !important;
}
.product-item.imagebox {
    /* width: 50%; */
} 
div#babu {
    width: 97%;
    overflow-x: hidden;
}
div#nahid-12 {
    width: 664px !important;
}
    
}

@media (max-width: 1730px) {
   
.product-item.imagebox {
    /* width: 60%; */
}   
    
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.hero-slider .slider-nav-warp {
		max-width: 930px;
	}
	.footer-widget ul {
		margin-right: 5px;
	}
	.social-links a {
		margin-right: 20px;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.site-logo {
		margin-bottom: 20px;
	}
	.header-search-form {
		margin-bottom: 15px;
	}
	.user-panel {
		text-align: center;
	}
	.main-menu {
		text-align: center;
	}
	.sub-menu {
		text-align: left;
	}
	.main-menu li a {
		margin-right: 30px;
	}
	.hero-slider .slider-nav-warp {
		max-width: 690px;
	}
	.hero-slider .hs-item .offer-card {
		top: 20px;
	}
	.feature h2 {
		font-size: 18px;
	}
	.product-filter-menu {
		text-align: center;
	}
	.product-filter-menu li {
		margin: 0 5px 10px;
	}
	.social-links {
		text-align: center;
	}
	.social-links a {
		margin-right: 20px;
	}
	.social-links a span {
		display: none;
	}
	.cart-table,
	.checkout-cart,
	.product-thumbs {
		margin-bottom: 50px;
	}
	.map {
		position: relative;
		width: 100%;
		background: #ddd;
		height: 400px;
		margin-top: 70px;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.site-logo {
		margin-bottom: 20px;
	}
	.header-search-form {
		margin-bottom: 15px;
	}
	.user-panel {
		text-align: center;
	}
	.main-menu {
		display: none;
	}
	.slicknav_btn {
		background-color: #565656;
	}
	.slicknav_menu {
		background: #282828;
		display: block;
	}
	.slicknav_menu .new {
		font-size: 10px;
		font-weight: 700;
		color: #fff;
		background: #f51167;
		line-height: 1;
		text-transform: uppercase;
		padding: 5px 9px 1px;
		border-radius: 15px;
		width: 42px;
		margin-left: 5px;
	}
	.hero-slider .slider-nav-warp {
		max-width: 510px;
	}
	.hero-slider .hs-item h2 {
		font-size: 50px;
	}
	.hero-slider .hs-item .offer-card {
		display: none;
	}
	.product-filter-menu {
		text-align: center;
	}
	.product-filter-menu li {
		margin: 0 2px 10px;
	}
	.footer-widget ul {
		margin-right: 25px;
	}
	.social-links {
		text-align: center;
	}
	.social-links a {
		margin-right: 15px;
	}
	.social-links a span {
		display: none;
	}
	.cart-table,
	.checkout-cart,
	.product-thumbs {
		margin-bottom: 50px;
	}
	.cart-table .size-col h4,
	.cart-table table tr th.size-th,
	.cart-table table tr th.quy-th,
	.cart-table .quy-col {
		padding-right: 0;
		width: 70px;
	}
	.cart-table .quy-col {
		width: 80px;
	}
	.address-rb {
		text-align: left;
	}
	.map {
		position: relative;
		width: 100%;
		background: #ddd;
		height: 400px;
		margin-top: 70px;
	}
}

/* Medium Mobile :480px. */

@media only screen and (min-width: 576px) and (max-width: 766px) {
	.hero-slider .slider-nav-warp {
		padding: 0 15px;
	}
	.banner .tag-new {
		position: relative;
		display: inline-block;
		margin-bottom: 18px;
		right: 0;
		top: 0;
	}
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.hero-slider .slider-nav-warp {
		max-width: 510px;
		padding: 0 15px;
	}
	.welcome-text .single-box h2 {
    font-size: 27px;
}

.Top-selling-product h2 {
    font-size: 27px;
}

.mens-contant h3 {
    font-size: 27px;
}

.womens-contant h3 {
    font-size: 24px;
}
.section-heading h3 {
    font-size: 24px;
}
.single-contant h2 {
    font-size: 28px;
}

div#single-box-1 {
    position: relative;
    left: 10% !important;
    padding: 20px !important;
    top: 50% !important;
}

	.hero-slider .hs-item h2 {
		font-size: 35px;
	}
	.hero-slider .hs-item .sb-line {
		margin-bottom: 15px;
	}
	.section-title h2 {
		font-size: 28px;
	}
	.feature h2 {
    font-size: 13px;
}
	.banner .tag-new {
		position: relative;
		display: inline-block;
		margin-bottom: 18px;
		right: 0;
		top: 0;
	}
	.social-links {
		text-align: center;
	}
	.social-links a i {
		font-size: 20px;
		margin-right: 0;
	}
	.social-links a span {
		display: none;
	}
}
#Your-Favorites{
	position: relative;
}
#Your-Favorites .owl-nav {

display: block;
}

#Your-Favorites .owl-nav .owl-prev {
	position: absolute;
	left: 0;
	top: 35%;
	width: 50px;
	font-size: 30px;
	color: #ddd;
	background: #444;
	padding: 0 10px !important;
	height: 50px;
	border-radius: 50%;
}

#Your-Favorites .owl-nav .owl-next {
	position: absolute;
	width: 50px;
	right: 0;
	top: 35%;
	font-size: 30px;
	color: #ddd;
	background: #444;
	padding: 0 10px !important;
	height: 50px;
	border-radius: 50%;
}
section.about_us_section {
	/* padding: 30px 0; */
	background: #eee;
}

section.about_us_section .about-info h3 {
	padding-bottom: 0;
	letter-spacing: .5px;
	color: #444;
	font-size: 30px;
}
section.about_us_section .about-info p {
	font-size: 16px;
	color: #444;
	text-align: justify;
	text-transform: capitalize;
}
section.about_us_section .about-info .social-link{}
section.about_us_section .about-info .social-link .fa {
	font-size: 18px;
	color: #444;
	margin: 0 5px;
	width: 30px;
	height: 30px;
	background: #e8e6e6;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	border: 1px solid #555;
}







.serviceBox {
	color: #999;
	text-align: center;
	padding: 10px 0 15px;
	position: relative;
	margin: 20px 0;
	box-shadow: 0px 10px 30px 0px rgb(50 50 50 / 16%);
}
.serviceBox:before, .serviceBox:after {
	content: "";
	background: #282828;
	width: 150px;
	height: 10px;
	transform: translateX(-50%);
	position: absolute;
	top: 0;
	left: 50%;
	clip-path: polygon(7% 0%, 93% 0%, 100% 100%, 0% 100%);
}
.serviceBox:after {
	width: 100%;
	height: 15px;
	border-radius: 0 0 10px 10px;
	top: auto;
	bottom: 0;
	clip-path: none;
	background: #282828 !important;
}
.serviceBox .service-content {
	background: #fff;
	padding: 12px 18px;
	border-radius: 10px;
}
.serviceBox .service-content:before {
	content: "";
	background: #f54d07;
	width: 128px;
	height: 100px;
	transform: translateX(-50%);
	position: absolute;
	top: 0;
	left: 50%;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.serviceBox .service-icon {
	margin: 0 auto 20px;
	position: relative;
	z-index: 1;
}


.serviceBox .service-icon:before{
	content: "";
	background: linear-gradient(to right, #dedfe1, #f3f3f3);
	width: 88%;
	height: 88%;
	border-radius: 50%;
	box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
	transform: translateX(-50%) translateY(-50%);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
}
.serviceBox .title {
	color: #1e5270;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.serviceBox .description{
	font-size: 14px;
	line-height: 24px;
	margin: 0;
	height: 70px;
	overflow: hidden;
}
.serviceBox.green:before {
	background: #282828;
}
.serviceBox.green:after,
.serviceBox.green .service-content:before{
	background: #f54d07;
}
.serviceBox.green .title {
	color: #f54d07;
}
@media only screen and (max-width:990px){
	.serviceBox{ margin: 0 0 30px; }
}
.Our-service-section .title h3 {
	text-align: center;
	margin-top: 16px;
	text-transform: capitalize;
	color: #333;
}





.team {
	text-align: center
}

.section-title {
	text-align: center;
	font-size: 30px;
	position: relative;
	margin-bottom: 16px;
	margin-top: 0;
}

.team .team-item {
	text-align: left;
	margin-bottom: 30px;
	box-shadow: 0px 10px 30px 0px rgb(50 50 50 / 16%);
}

.team .team-item figure {
	position: relative;
	overflow: hidden
}

img {
	max-width: 100%;
}

.team .team-item figure figcaption {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: rgba(9, 9, 9, .6);
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease
}

.team .team-item figure figcaption .info {
	position: absolute;
	color: #fff;
	float: left;
	bottom: 10px;
	left: 20px;
	margin-left: -80px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease
}

.team .team-item figure:hover figcaption {
	opacity: 1
}

.team .team-item figure:hover figcaption .info {
	margin-left: 0
}

.team .team-item figure figcaption .info h3 {
	font-size: 20px;
	color: #fff;
	text-transform: capitalize;
}

.team .team-item figure figcaption .info p {
	color: #fff
}

.team .team-item figure:hover figcaption .social {
	margin-bottom: 0
}

.team .team-item figure figcaption .social {
	position: absolute;
	float: right;
	bottom: 28px;
	margin-bottom: -80px;
	right: 20px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease
}

.team .team-item figure figcaption .social a {
	color: #282828;
	font-size: 15px;
	width: 36px;
	height: 36px;
	background: #fff;
	display: inline-block;
	text-align: center;
	line-height: 36px;
	border-radius: 2px;
}
.blog-title h3{
	padding: 20px 0;
	letter-spacing: .5px;
	color: #333;
	font-size: 30px;
	text-align: center;
}






/** blog-classic-grid **/

.blog-classic-grid{
	position: relative;
}

.blog-classic-grid .news-block-one{
	margin-bottom: 40px;
}

.blog-classic-grid .news-block-one .btn-style-four{
	/* padding-left: 73px; */
}

.blog-classic-grid .news-block-one .btn-style-four:before{
	background: #1d165c;
	height: 1px;
	width: 54px;
	top: 13px;
}

.blog-classic-grid .pagination-wrapper{
	position: relative;
	display: block;
	margin-top: 20px;
}

.sidebar-page-container{
	position: relative;
	padding: 130px 0px;
}

.blog-classic-sidebar .news-block-one{
	margin-bottom: 40px;
}

.blog-classic-sidebar .news-block-one .lower-content .btn-style-four span{
	position: relative;
	display: inline-block;
	width: 22px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	border-radius: 3px;
	background: #fff;
}

.blog-classic-sidebar .news-block-one .lower-content .btn-style-four:before{
	top: 8px;
}

.blog-classic-sidebar .news-block-one .lower-content .btn-style-four:hover{
	padding-left: 0px;
	color: #1d165c !important;
}

.blog-classic-sidebar .news-block-one .lower-content .btn-style-four:hover:before{
	opacity: 0;
}

.blog-classic-sidebar .news-block-one .lower-content .btn-style-four:hover span{
	color: #fff;
}

.news-section{
	position: relative;
	padding-bottom: 125px;
}

.news-section .title-inner{
	position: relative;
	padding: 125px 0px 163px 0px;
}

.news-block-one .inner-box{
	position: relative;
	display: block;
}

.news-block-one .inner-box .image-box{
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 5px;
}

.news-block-one .inner-box .image-box:before{
	position: absolute;
	content: '';
	width: 0%;
	height: 100%;
	top: 0px;
	right: 0px;
	opacity: 0.9;
	z-index: 1;
	transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box:before{
	width: 100%;
	left: 0px;
}

.news-block-one .inner-box .image-box img{
	width: 100%;
	border-radius: 5px;
	transition: all 500ms ease;
}

.news-block-one .inner-box .lower-content{
	position: relative;
	/* padding-top: 22px; */
}

.news-block-one .inner-box .lower-content .file-box{
	position: relative;
	display: block;
	/* margin-bottom: 14px; */
}

.news-block-one .inner-box .lower-content .file-box i {
	position: relative;
	display: inline-block;
	font-size: 14px;
	color: #444!important;
	margin-right: 10px;
}

.news-block-one .inner-box .lower-content .file-box p{
	position: relative;
	display: inline-block;
	margin: 0;
	padding-bottom: 6px;
}

.news-block-one .inner-box .lower-content .title-box{
	position: relative;
	display: block;
	padding-left: 75px;
	margin-bottom: 21px;
	min-height: 55px;
}

.news-block-one .inner-box .lower-content .title-box .post-date{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 55px;
	height: 55px;
	text-align: center;
	border-radius: 5px;
	background: #f51167;
	padding: 8px 0px;
}

.news-block-one .inner-box .lower-content .title-box .post-date p {
	/* display: block; */
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	line-height: 20px;
	margin: 0 !important;
}

.news-block-one .inner-box .lower-content .title-box .post-date span{
	position: relative;
	display: block;
	font-size: 13px;
	line-height: 18px;
	text-transform: uppercase;
	color: #fff;
}

.news-block-one .inner-box .lower-content .title-box h4{
	line-height: 26px;
	font-size: 22px;
}

.news-block-one .inner-box .lower-content .text{
	position: relative;
	margin-bottom: 21px;
}

.news-section .lower-content .inner-content{
	position: relative;
	margin-top: -125px;
}

.news-section .title-inner .pattern-layer .pattern-1{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 1335px;
	height: 100%;
	background-repeat: no-repeat;
}

.news-section .title-inner .pattern-layer .pattern-2{
	position: absolute;
	right: 0px;
	top: 0px;
	width: 1350px;
	height: 100%;
	background-repeat: no-repeat;
}
.pagination-wrapper ul.pagination.clearfix {
	justify-content: center;
	margin-bottom: 22px;
}
.pagination-wrapper ul.pagination.clearfix li a {
	margin: 0 2px;
	background: #f51167;
	padding: 8px 12px;
	font-size: 20px;
	color: #fff;
}

section.blog-details-section .blog-info h3 {
	color: #333;
	text-transform: capitalize;
	padding: 10px 0;
}

section.blog-details-section .blog-time {
	font-size: 18px;
	color: #333;
	font-weight: 400;
	padding-bottom: 10px;
	text-transform: capitalize;
}

section.blog-details-section .blog-info p {
	font-size: 15px;
	text-transform: capitalize;
	color: #333;
	font-weight: 400;
}

section.blog-details-section .blog-cotation {
	background: #ddd;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 12px;
}

section.blog-details-section .blog-cotation p{
	font-size: 15px;
	text-transform: capitalize;
	color: #333;
	font-weight: 400;
	font-style: italic;
}

section.blog-details-section .name-author p {
	margin: 0;
	font-weight: 600;
}
section.blog-details-section p{
	font-size: 15px;
	text-transform: capitalize;
	color: #333;
	height: 30px;
	font-weight: 400;
	overflow: hidden;
}

section.blog-details-section .sub-image-info {
	font-size: 15px;
	text-transform: capitalize;
	color: #333;
	font-weight: 400;
	padding-top: 12px;
}

section.blog-details-section .share-article h5 {
	display: inline-block;
	text-transform: capitalize;
	color: #333;
}

section.blog-details-section .share-article {
	text-align: center;
}

section.blog-details-section .share-article .left{
	float: left;
}

section.blog-details-section .share-article .right{
	float: right;
}

section.blog-details-section .social-link {
	text-align: center;
	padding-bottom: 30px;
}

section.blog-details-section .social-link a .fa {
	margin: 0 5px;
	width: 30px;
	height: 30px;
	background: #ddd;
	line-height: 30px;
	color: #333;
	border-radius: 5px;
}

section.blog-details-section .share-article .left a {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

section.blog-details-section .share-article .right a {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

section.blog-details-section .share-article {
	text-align: center;
	border-bottom: 2px solid #ddd;
	margin-bottom: 10px;
	padding-bottom: 5px;
}

section.blog-details-section .comment-info {
	display: inline;
}

section.blog-details-section .comment-info p{
	font-size: 15px;
	text-transform: capitalize;
	color: #333;
	font-weight: 400;
}

section.blog-details-section .sengle-comment img {
	float: left;
	margin-right: 10px;
	border-radius: 10px;
}
section.blog-details-section .comment-aria h4 {
	color: #333;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.comment-action .Reply {
	float: right;
	color: #333;
	font-weight: 400;
	text-transform: capitalize;
}

div#sengle-comment-Reply {
	margin-left: 40px;
	margin-top: 22px;
	margin-bottom: 10px;
}

section.blog-details-section {
	padding-top: 35px;
}

section.send-information {
	margin: 30px 0;
}

section.send-information a.btn {
	background: #c73e15;
	color: #fff;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 400;
	margin-top: 10px;
}
.textaria-sec {
	padding-bottom: 12px;
}

.queck-link{}

.queck-link .side-menu-service {
	list-style: none;
	max-height: 466px;
	overflow: hidden;
	margin: 20px 0;
}

.queck-link .side-menu-service:hover{
	overflow-y: scroll;
	overflow-x: hidden;
}

.queck-link .side-menu-service li{}
.queck-link .side-menu-service li a{
	font-size: 18px;
	color: #e83d21;
	text-transform: capitalize;
}
.queck-link .side-menu-service li a .media{
	margin-top: 20px;
}
.queck-link .side-menu-service li .media img{
	width: 55px;
	padding: 5px;
	margin-top: 5px;
}
.queck-link .side-menu-service li a .media-body{
	padding: 5px;
}
.queck-link .side-menu-service li a .media-body h5{}
.queck-link .side-menu-service li a .media-body p{
	margin: 0;
}
.blog-grid {
	margin-top: -30px; }

.blog {
	margin-top: 30px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	-ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	-o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s; }

.blog-thumb {
	overflow: hidden; }
.blog-thumb a {
	display: block;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
	text-align: center;
}
.blog-thumb a img {
	max-width: 100%; }

.blog-content {
	padding: 25px; }
.blog-content .blog-meta {
	margin-bottom: 7px; }
.blog-content .blog-meta span {
	font-size: 14px;
	color: #777;
	line-height: 30px;
	padding-right: 25px;
	font-weight: 500; }
.blog-content .blog-meta span:last-child {
	padding-right: 0; }
.blog-content .blog-meta a {
	color: #777; }
.blog-content .blog-meta a:hover {
	color: #47BB8F; }
.blog-content h5 {
	font-weight: 700;
	color: #333;
	margin-bottom: 10px; }
.blog-content h5 a {
	color: #333; }
.blog-content h5 a:hover {
	color: #47BB8F; }
.blog-content p {
	margin-bottom: 10px; }
.blog-content p:first-letter {
	text-transform: capitalize; }

.blog:hover .blog-thumb a {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1); }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-content {
		padding: 20px; } }


.blog-style-2 {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
	position: relative;
	border-bottom: 1px solid #ddd; }
.blog-style-2::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 1px;
	width: 0;
	background: #47BB8F;
	-webkit-transition: all 0.4s cubic-bezier(0.63, 0.01, 0.36, 0.99) 0s;
	-moz-transition: all 0.4s cubic-bezier(0.63, 0.01, 0.36, 0.99) 0s;
	-ms-transition: all 0.4s cubic-bezier(0.63, 0.01, 0.36, 0.99) 0s;
	-o-transition: all 0.4s cubic-bezier(0.63, 0.01, 0.36, 0.99) 0s;
	transition: all 0.4s cubic-bezier(0.63, 0.01, 0.36, 0.99) 0s; }
.blog-style-2:hover::after {
	width: 100%; }
.blog-style-2 .blog-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-direction: reverse;
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column-reverse;
	-moz-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap; }

.blog-video .blog-thumb a::after {
	content: "\f103";
	font-family: "Flaticon";
	left: 50%;
	top: 50%;
	height: 70px;
	width: 70px;
	z-index: 2;
	position: absolute;
	line-height: 70px;
	font-size: 70px;
	margin-top: -35px;
	margin-left: -35px;
	color: #ffffff;
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out 0.1s;
	-moz-transition: all 0.3s ease-in-out 0.1s;
	-ms-transition: all 0.3s ease-in-out 0.1s;
	-o-transition: all 0.3s ease-in-out 0.1s;
	transition: all 0.3s ease-in-out 0.1s; }

.blog-video:hover .blog-thumb a::after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1; }

/* Blog Horaizontal Style */
.blog-horaizontal {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none; }
.blog-horaizontal .blog-thumb {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 45%;
	-moz-box-flex: 0;
	-moz-flex: 0 0 45%;
	-ms-flex: 0 0 45%;
	flex: 0 0 45%; }
.blog-horaizontal .blog-thumb a {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	position: relative; }
.blog-horaizontal .blog-thumb a::before {
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s; }
.blog-horaizontal .blog-content {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 55%;
	-moz-box-flex: 0;
	-moz-flex: 0 0 55%;
	-ms-flex: 0 0 55%;
	flex: 0 0 55%;
	padding: 0;
	padding-left: 30px;
	margin-top: -7px; }
.blog-horaizontal .blog-content h6 {
	font-size: 14px;
	line-height: 30px;
	color: #b7b7b7;
	text-transform: uppercase;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	margin-bottom: 5px; }
.blog-horaizontal .blog-content p {
	font-size: 16px;
	line-height: 30px;
	color: #777777; }
.blog-horaizontal .blog-meta {
	text-transform: uppercase; }
.blog-horaizontal .blog-meta span {
	padding-right: 5px; }
.blog-horaizontal .blog-meta span:after {
	content: "-";
	padding-left: 5px; }
.blog-horaizontal .blog-meta span:last-child:after {
	display: none; }
.blog-horaizontal:hover .blog-thumb a::before {
	visibility: visible;
	opacity: 1; }

@media only screen and (max-width: 767px) {
	.blog-horaizontal {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap; }
	.blog-horaizontal .blog-thumb {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 100%;
		-moz-box-flex: 0;
		-moz-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%; }
	.blog-horaizontal .blog-content {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 100%;
		-moz-box-flex: 0;
		-moz-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		padding-left: 0;
		padding-top: 30px; } }
/* Small Blog */
.small-blog {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 50px; }
.small-blog .small-blog-thumb {
	margin-right: 20px;
	display: inline-block;
	position: relative; }
.small-blog .small-blog-thumb::before {
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	position: absolute;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s; }
.small-blog .small-blog-content {
	-webkit-flex-shrink: 100;
	-moz-flex-shrink: 100;
	-ms-flex-negative: 100;
	flex-shrink: 100; }
.small-blog .small-blog-content h6 {
	font-family: "Roboto", sans-serif;
	color: #646464;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 0;
	margin-top: -5px; }
.small-blog .small-blog-content h6 a {
	color: #646464; }
.small-blog .small-blog-content h6 a:hover {
	color: #47BB8F; }
.small-blog .small-blog-meta span {
	font-family: "Roboto Condensed", sans-serif;
	display: inline-block;
	color: #232323;
	font-size: 13px;
	line-height: 20px;
	font-weight: 500; }
.small-blog:hover .small-blog-thumb::before {
	opacity: 1;
	visibility: visible; }
.widgets:not(.footer-widgets).widgets-leftside {
	padding-right: 20px; }
.widgets:not(.footer-widgets).widgets-rightside {
	padding-left: 20px; }
.widgets:not(.footer-widgets) .single-widget {
	/* margin-top: 50px; */
}
.widgets:not(.footer-widgets) .single-widget h5.widget-title {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	color: #ffffff;
	background: #47BB8F;
	padding: 10px 30px;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 40px; }
.widgets:not(.footer-widgets) .about-widget {
	background: #fafafa; }
.widgets:not(.footer-widgets) .about-widget .about-widget-person-image {
	height: 110px;
	width: 110px;
	text-align: center;
	line-height: 110px;
	border-radius: 100%;
	overflow: hidden;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%); }
.widgets:not(.footer-widgets) .about-widget .about-widget-content {
	padding-top: 70px;
	padding-bottom: 50px;
	position: relative; }
.widgets:not(.footer-widgets) .about-widget .about-widget-content h6 {
	font-size: 16px;
	color: #2f2f2f;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	margin-bottom: 7px; }
.widgets:not(.footer-widgets) .about-widget .about-widget-content p {
	font-size: 14px;
	line-height: 26px;
	color: #777777; }
.widgets:not(.footer-widgets) .about-widget .social-icons ul li a {
	color: #555555; }
.widgets:not(.footer-widgets) .about-widget .social-icons ul li a:hover {
	color: #47BB8F; }
.widgets:not(.footer-widgets) .search-widget form {
	padding: 30px;
	border: 1px solid #f1f1f1;
	position: relative; }
.widgets:not(.footer-widgets) .search-widget form input {
	background: #f9f9f9;
	border: 1px solid #f9f9f9;
	font-size: 14px;
	color: #a6a6a6;
	padding: 10px;
	}
.widgets:not(.footer-widgets) .search-widget form input::-webkit-input-placeholder {
	color: #a6a6a6; }
.widgets:not(.footer-widgets) .search-widget form input:-ms-input-placeholder {
	color: #a6a6a6; }
.widgets:not(.footer-widgets) .search-widget form input:-moz-placeholder {
	color: #a6a6a6; }
.widgets:not(.footer-widgets) .search-widget form input::-moz-placeholder {
	color: #a6a6a6; }
.widgets:not(.footer-widgets) .search-widget form button {
	position: absolute;
	right: 30px;
	top: 50%;
	height: 50px;
	/* width: 50px; */
	line-height: 52px;
	margin-top: -25px;
	background: transparent;
	border: none;
	padding: 0;
	color: #a6a6a6;
	}
.widgets:not(.footer-widgets) .search-widget form button:hover {
	color: #777777; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-thumb {
	margin-right: 20px;
	display: inline-block;
	position: relative; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-thumb::before {
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	position: absolute;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-content {
	-webkit-flex-shrink: 100;
	-moz-flex-shrink: 100;
	-ms-flex-negative: 100;
	flex-shrink: 100; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-content h6 {
	font-family: "Roboto", sans-serif;
	color: #646464;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 0;
	margin-top: -5px; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-content h6 a {
	color: #646464; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-content h6 a:hover {
	color: #47BB8F; }
.widgets:not(.footer-widgets) .widget-recent-post .widget-recent-post-meta span {
	font-family: "Roboto Condensed", sans-serif;
	display: inline-block;
	color: #232323;
	font-size: 13px;
	line-height: 20px;
	font-weight: 500; }
.widgets:not(.footer-widgets) .widget-recent-post ul {
	padding-left: 0; }
.widgets:not(.footer-widgets) .widget-recent-post ul li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px; }
.widgets:not(.footer-widgets) .widget-recent-post ul li:last-child {
	margin-bottom: 0; }
.widgets:not(.footer-widgets) .widget-recent-post ul li:hover .widget-recent-post-thumb::before {
	opacity: 1;
	visibility: visible; }
.widgets:not(.footer-widgets) .widget-newsletter form {
	position: relative; }
.widgets:not(.footer-widgets) .widget-newsletter form input {
	border: 1px solid #e4e4e4;
	font-size: 14px;
	color: #aaaaaa;
	padding-right: 55px; }
.widgets:not(.footer-widgets) .widget-newsletter form input::-webkit-input-placeholder {
	color: #aaaaaa; }
.widgets:not(.footer-widgets) .widget-newsletter form input:-ms-input-placeholder {
	color: #aaaaaa; }
.widgets:not(.footer-widgets) .widget-newsletter form input:-moz-placeholder {
	color: #aaaaaa; }
.widgets:not(.footer-widgets) .widget-newsletter form input::-moz-placeholder {
	color: #aaaaaa; }
.widgets:not(.footer-widgets) .widget-newsletter form button {
	position: absolute;
	background: #47BB8F;
	color: #ffffff;
	height: 40px;
	right: 5px;
	top: 5px;
	width: 40px;
	border: none;
	outline: none;
	font-size: 20px; }
.widgets:not(.footer-widgets) .widget-social ul {
	padding-left: 0;
	margin-bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap; }
.widgets:not(.footer-widgets) .widget-social ul li {
	display: block;
	padding: 0;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 25%;
	-moz-box-flex: 0;
	-moz-flex: 0 0 25%;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	margin-top: 1px;
	text-align: center; }
.widgets:not(.footer-widgets) .widget-social ul li a {
	display: block;
	background: #f9f9f9;
	padding: 20px 0;
	border-right: 1px solid #e4e4e4; }
.widgets:not(.footer-widgets) .widget-social ul li:nth-child(4n) a {
	border-right: none; }
.widgets:not(.footer-widgets) .widget-categories ul {
	padding-left: 0;
	list-style: none;
	margin-bottom: 0; }
.widgets:not(.footer-widgets) .widget-categories ul li {
	line-height: 26px;
	font-weight: 400;
	color: #646464;
	border-top: 1px solid #e5e5e5;
	padding-top: 15px;
	padding-bottom: 11px;
	font-size: 16px; }
.widgets:not(.footer-widgets) .widget-categories ul li:first-child {
	border-top: none;
	padding-top: 0; }
.widgets:not(.footer-widgets) .widget-categories ul li:last-child {
	padding-bottom: 0; }
.widgets:not(.footer-widgets) .widget-categories ul li a {
	position: relative;
	color: #646464;
	display: block;
	padding-left: 30px; }
.widgets:not(.footer-widgets) .widget-categories ul li a:before {
	content: url(images/icons/widget-dot.png);
	padding-right: 23px;
	position: absolute;
	top: 0;
	left: 0; }
.widgets:not(.footer-widgets) .widget-categories ul li a:hover {
	color: #47BB8F; }
.widgets:not(.footer-widgets) .widget-categories ul li span {
	float: right; }
.widgets:not(.footer-widgets) .widget-instagram > ul {
	margin-left: -2px;
	margin-top: -2px;
	margin-right: -2px;
	margin-bottom: -2px;
	padding-left: 0; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li {
	display: inline-block;
	height: 118px;
	width: 118px;
	overflow: hidden;
	padding: 2px;
	vertical-align: middle;
	position: relative; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li a {
	display: block;
	position: relative; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li a:before {
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	position: absolute;
	background: rgba(25, 25, 25, 0.7);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li ul.likes-comments {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	text-align: center;
	list-style: none;
	padding-left: 0;
	padding-bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	margin-top: 20px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li ul.likes-comments li {
	display: inline-block;
	padding-bottom: 0;
	font-weight: 400;
	font-size: 14px;
	margin: 0 5px;
	color: #fff; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li ul.likes-comments li span {
	padding-left: 3px; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li:hover a {
	z-index: 1; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li:hover a:before {
	visibility: visible;
	opacity: 1; }
.widgets:not(.footer-widgets) .widget-instagram > ul > li:hover ul.likes-comments {
	margin-top: 0;
	visibility: visible;
	opacity: 1;
	z-index: 2; }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.widgets:not(.footer-widgets).widgets-leftside {
		padding-right: 0; }
	.widgets:not(.footer-widgets).widgets-rightside {
		padding-left: 0; }
	.widgets:not(.footer-widgets) .widget-instagram > ul > li {
		display: inline-block;
		height: 98px;
		width: 98px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.widgets:not(.footer-widgets) {
		margin-top: 100px; }
	.widgets:not(.footer-widgets).widgets-leftside {
		padding-right: 0; }
	.widgets:not(.footer-widgets).widgets-rightside {
		padding-left: 0; }
	.widgets:not(.footer-widgets) .widget-instagram > ul > li {
		display: inline-block;
		height: 115px;
		width: 115px; } }
@media only screen and (max-width: 767px) {
	.widgets:not(.footer-widgets) {
		margin-top: 100px; }
	.widgets:not(.footer-widgets).widgets-leftside {
		padding-right: 0; }
	.widgets:not(.footer-widgets).widgets-rightside {
		padding-left: 0; }
	.widgets:not(.footer-widgets) .widget-instagram > ul > li {
		display: inline-block;
		height: 115px;
		width: 115px; } }
@media only screen and (max-width: 575px) {
	.widgets:not(.footer-widgets) {
		margin-top: 100px; }
	.widgets:not(.footer-widgets).widgets-leftside {
		padding-right: 0; }
	.widgets:not(.footer-widgets).widgets-rightside {
		padding-left: 0; }
	.widgets:not(.footer-widgets) .widget-instagram > ul > li {
		display: inline-block;
		height: 98px;
		width: 98px; } }


/*Blog Sidebar*/
.widgets:not(.footer-widgets) .search-widget form {
	padding: 0px 5px;
	margin-bottom: 12px;
}
/*.widgets:not(.footer-widgets) .single-widget {
margin-top: 20px;
}*/
.widgets:not(.footer-widgets) .single-widget h5.widget-title {
	padding: 6px 25px;
	margin-bottom: 15px;
}

/* .breadcrumb-option{
         margin-bottom: 15px;
         }*/
.tagcloud a {
	height: 35px;
	border: 1px solid #d3d3d3;
	font-size: 14px;
	line-height: 1;
	color: #1d2d5d;
	display: inline-block;
	padding: 10px 15px;
	margin-bottom: 10px;
	margin-right: 6px;
}
.section-padding-sm {
	padding: 25px 0;
}
.modal {
	z-index: 99999;
}
.modal-header {
	display: block;
}
.packageFeaturesBox {
	border-radius: 10px;
	border: 1px solid #ddd;
	padding: 10px;
	margin: 10px;
	min-height: 220px;
	/*width: 32%;*/
	align-content: center;
	/*margin: 0.3%;*/
	text-align: center;
}
.package-pheader p{
	color: #777777;
}
.package-section .package-pheader.sm-content h4{
	color: #333333;
}
.package_margin_top{
	margin-top: 15px;
}
/* h3{
color: #333;
}*/
.doodle_footer-socail{
	text-align: center;
}

/**
    Pagination Styles
*/
.cr-pagination {
	margin: 38px 0;
	}
.cr-pagination ul {
	display: inline-block;
	vertical-align: middle;
	padding-left: 0;
	margin-bottom: 0; }
.cr-pagination ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
	margin-top: 10px; }
.cr-pagination ul li:first-child {
	margin-left: 0; }
.cr-pagination ul li:last-child {
	margin-right: 0; }
.cr-pagination ul li a {
	border: 1px solid #dddddd;
	padding: 4px 15px;
	color: #777777;
	display: inline-block;
	vertical-align: middle; }
.cr-pagination ul li a:hover {
	background: #47BB8F;
	color: #ffffff;
	border-color: #47BB8F; }


/**
    Blog Details Styles
*/
.blog-details-thumb {
	margin-bottom: 50px; }

.blog-details-video {
	margin-bottom: 50px; }

h2.blog-details-title {
	font-size: 36px;
	font-weight: 700;
	color: #333333;
	font-family: "Roboto", sans-serif; }

.blog-details-meta {
	padding-left: 0; }
.blog-details-meta li {
	font-size: 13px;
	font-weight: 500;
	color: #a8a8a8;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0.5px; }
.blog-details-meta li:after {
	content: "-";
	padding: 0 10px; }
.blog-details-meta li:last-child:after {
	display: none; }
.blog-details-meta li a {
	color: #a8a8a8; }
.blog-details-meta li a:hover {
	color: #47BB8F; }

.blog-details-content {
	padding-bottom: 50px;
	border-bottom: 1px solid #e1e1e1; }
.blog-details-content p {
	margin-bottom: 30px; }
.blog-details-content blockquote {
	margin-bottom: 30px; }
.blog-details-content ol {
	margin-top: 30px;
	margin-bottom: 30px;
	list-style: decimal-leading-zero;
	list-style-position: inside; }
.blog-details-content ol li {
	margin-bottom: 10px; }
.blog-details-content img {
	margin-bottom: 20px; }

.blog-details-block {
	margin-top: 70px; }

.blog-details-authorbox {
	padding: 40px;
	background: #f7f7f7;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between; }

.blog-details-authoriamge {
	height: 95px;
	width: 95px;
	display: block;
	overflow: hidden;
	border-radius: 5px;
	margin-right: 25px; }
.blog-details-authoriamge img {
	width: 100%; }

.blog-details-authordes {
	-webkit-flex-shrink: 100;
	-moz-flex-shrink: 100;
	-ms-flex-negative: 100;
	flex-shrink: 100; }
.blog-details-authordes h6 {
	line-height: 28px;
	font-size: 16px;
	color: #5f5f5f;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px; }
.blog-details-authordes p {
	margin-bottom: 0; }

.blog-details-social {
	border: 1px solid #e9e9e9;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 5px 20px; }
.blog-details-social h6 {
	font-size: 16px;
	font-weight: 400;
	color: #636363;
	margin-right: 10px;
	margin-bottom: 0; }

.blog-details-social-icons {
	margin-right: 30px; }

.blog-details-social-icons,
.blog-details-tags {
	padding: 5px 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center; }

.blog-details-tags ul {
	margin-bottom: 0;
	padding-left: 0; }
.blog-details-tags ul li {
	display: inline-block;
	font-size: 16px;
	color: #808080;
	font-weight: 300; }
.blog-details-tags ul li:after {
	content: ","; }
.blog-details-tags ul li:last-child:after {
	display: none; }
.blog-details-tags ul li a {
	color: #808080;
	display: inline-block; }
.blog-details-tags ul li a:hover {
	color: #47BB8F; }

.blog-details-block.commentbox form {
	margin-top: -10px; }
.blog-details-block.commentbox form .single-input {
	margin-top: 30px; }
.blog-details-block.commentbox form .single-input button {
	margin-top: 10px; }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 32px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 28px; } }
@media only screen and (max-width: 767px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 26px; } }
@media only screen and (max-width: 575px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 26px; }

	.blog-details-authorbox {
		padding: 30px;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap; }

	.blog-details-authordes {
		margin-top: 20px; } }
/* Commentlist */
.comment {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 60px; }
.comment:first-child {
	margin-top: 0; }
.comment.reply {
	margin-left: 150px; }

.comment__content {
	-webkit-flex-shrink: 100;
	-moz-flex-shrink: 100;
	-ms-flex-negative: 100;
	flex-shrink: 100;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	align-items: flex-start; }
.comment__content a.reply {
	font-size: 14px;
	color: #47BB8F;
	font-weight: 600;
	text-transform: uppercase; }
.comment__content a.reply:hover {
	color: #333333; }

.comment__content__top {
	margin-right: 30px;
	margin-bottom: 10px; }
.comment__content__top h6 {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 700;
	color: #5f5f5f;
	text-transform: uppercase; }
.comment__content__top span {
	font-size: 14px;
	line-height: 20px;
	color: #a2a2a2;
	font-weight: 400;
	text-transform: uppercase; }

.comment__content__bottom {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 100%;
	-moz-box-flex: 0;
	-moz-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%; }

@media only screen and (max-width: 767px) {
	.comment.reply {
		margin-left: 50px; } }
@media only screen and (max-width: 575px) {
	.comment.reply {
		margin-left: 30px; }

	.comment {
		margin-top: 38px;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap; }

	.comment__content {
		padding-top: 20px; }

	.pg-blog-authorbox {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 20px; }

	.pg-blog-authordes {
		padding-top: 20px; } }
/* Commentbox */
.commentbox .single-input {
	margin-top: 50px; }
.commentbox .single-input input, .commentbox .single-input select, .commentbox .single-input textarea {
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s; }
.commentbox .single-input input:focus, .commentbox .single-input input:active, .commentbox .single-input select:focus, .commentbox .single-input select:active, .commentbox .single-input textarea:focus, .commentbox .single-input textarea:active {
	border-color: #47BB8F; }

.blog-details-thumb .slick-slide:focus, .blog-details-thumb .slick-slide:active {
	outline: none; }


/**
    Blog Details Styles
*/
.blog-details-thumb {
	margin-bottom: 50px; }

.blog-details-video {
	margin-bottom: 50px; }

h2.blog-details-title {
	font-size: 36px;
	font-weight: 700;
	color: #333333;
	font-family: "Roboto", sans-serif; }

.blog-details-meta {
	padding-left: 0; }
.blog-details-meta li {
	font-size: 13px;
	font-weight: 500;
	color: #a8a8a8;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0.5px; }
.blog-details-meta li:after {
	content: "-";
	padding: 0 10px; }
.blog-details-meta li:last-child:after {
	display: none; }
.blog-details-meta li a {
	color: #a8a8a8; }
.blog-details-meta li a:hover {
	color: #47BB8F; }

.blog-details-content {
	padding-bottom: 50px;
	border-bottom: 1px solid #e1e1e1; }
.blog-details-content p {
	margin-bottom: 30px;
	color: #333;
	font-size: 22px;
	}
.blog-details-content blockquote {
	margin-bottom: 30px; }
.blog-details-content ol {
	margin-top: 30px;
	margin-bottom: 30px;
	list-style: decimal-leading-zero;
	list-style-position: inside; }
.blog-details-content ol li {
	margin-bottom: 10px; }
.blog-details-content img {
	margin-bottom: 20px; }

.blog-details-block {
	margin-top: 70px; }

.blog-details-authorbox {
	padding: 40px;
	background: #f7f7f7;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between; }

.blog-details-authoriamge {
	height: 95px;
	width: 95px;
	display: block;
	overflow: hidden;
	border-radius: 5px;
	margin-right: 25px; }
.blog-details-authoriamge img {
	width: 100%; }

.blog-details-authordes {
	-webkit-flex-shrink: 100;
	-moz-flex-shrink: 100;
	-ms-flex-negative: 100;
	flex-shrink: 100; }
.blog-details-authordes h6 {
	line-height: 28px;
	font-size: 16px;
	color: #5f5f5f;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px; }
.blog-details-authordes p {
	margin-bottom: 0; }

.blog-details-social {
	border: 1px solid #e9e9e9;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 5px 20px; }
.blog-details-social h6 {
	font-size: 16px;
	font-weight: 400;
	color: #636363;
	margin-right: 10px;
	margin-bottom: 0; }

.blog-details-social-icons {
	margin-right: 30px; }

.blog-details-social-icons,
.blog-details-tags {
	padding: 5px 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center; }

.blog-details-tags ul {
	margin-bottom: 0;
	padding-left: 0; }
.blog-details-tags ul li {
	display: inline-block;
	font-size: 16px;
	color: #808080;
	font-weight: 300; }
.blog-details-tags ul li:after {
	content: ","; }
.blog-details-tags ul li:last-child:after {
	display: none; }
.blog-details-tags ul li a {
	color: #808080;
	display: inline-block; }
.blog-details-tags ul li a:hover {
	color: #47BB8F; }

.blog-details-block.commentbox form {
	margin-top: -10px; }
.blog-details-block.commentbox form .single-input {
	margin-top: 30px; }
.blog-details-block.commentbox form .single-input button {
	margin-top: 10px; }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 32px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 28px; } }
@media only screen and (max-width: 767px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 26px; } }
@media only screen and (max-width: 575px) {
	.blog-details-content img.alignright {
		float: none;
		padding-left: 0; }

	h2.blog-details-title {
		font-size: 26px; }

	.blog-details-authorbox {
		padding: 30px;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap; }

	.blog-details-authordes {
		margin-top: 20px; } }

/**
    Contact Page Styles
*/
.pg-contact-form .small-title {
	padding-right: 300px; }
.pg-contact-form form {
	margin-left: -6px;
	margin-right: -6px; }
.pg-contact-form .single-input {
	margin: 0 6px;
	margin-top: 22px; }
.pg-contact-form input,
.pg-contact-form select,
.pg-contact-form textarea {
	border: 1px solid #999999;
	border-radius: 5px;
	color: #aaaaaa;
	font-size: 16px;
	width: 100%;
	padding: 10px 10px;
}
.pg-contact-form input:-moz-placeholder,
.pg-contact-form select:-moz-placeholder,
.pg-contact-form textarea:-moz-placeholder {
	color: #aaaaaa; }
.pg-contact-form input::-moz-placeholder,
.pg-contact-form select::-moz-placeholder,
.pg-contact-form textarea::-moz-placeholder {
	color: #aaaaaa; }
.pg-contact-form input:-ms-input-placeholder,
.pg-contact-form select:-ms-input-placeholder,
.pg-contact-form textarea:-ms-input-placeholder {
	color: #aaaaaa; }
.pg-contact-form input::-webkit-input-placeholder,
.pg-contact-form select::-webkit-input-placeholder,
.pg-contact-form textarea::-webkit-input-placeholder {
	color: #aaaaaa; }
.pg-contact-form input:focus, .pg-contact-form input:active,
.pg-contact-form select:focus,
.pg-contact-form select:active,
.pg-contact-form textarea:focus,
.pg-contact-form textarea:active {
	border-color: #47BB8F; }
.pg-contact-form button {
	margin-top: 20px;
	border-radius: 5px;
	overflow: hidden;
	padding: 12px 19px;
	z-index: 3;
	font-size: 18px;
	/* background: #e23c1b; */
	color: #444;
	border-color: #e23c1b;
	text-transform: uppercase;
}
.pg-contact-form.pg-contact-form-2 form {
	margin-left: -15px;
	margin-right: -15px; }
.pg-contact-form.pg-contact-form-2 .single-input {
	margin-left: 15px;
	margin-right: 15px; }
.pg-contact-form.pg-contact-form-2 .single-input input,
.pg-contact-form.pg-contact-form-2 .single-input select,
.pg-contact-form.pg-contact-form-2 .single-input textarea {
	border: none;
	border-bottom: 1px solid #999999;
	border-radius: 0;
	padding: 0; }
.pg-contact-form.pg-contact-form-2 .single-input input:focus, .pg-contact-form.pg-contact-form-2 .single-input input:active,
.pg-contact-form.pg-contact-form-2 .single-input select:focus,
.pg-contact-form.pg-contact-form-2 .single-input select:active,
.pg-contact-form.pg-contact-form-2 .single-input textarea:focus,
.pg-contact-form.pg-contact-form-2 .single-input textarea:active {
	border-color: #47BB8F; }
.pg-contact-form.pg-contact-form-2 .single-input button {
	border-radius: 0; }

.pg-contact-details ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none; }
.pg-contact-details ul li:last-child {
	margin-bottom: 0; }
.pg-contact-details .single-quick-contact {
	padding-top: 20px;
	padding-bottom: 20px; }
.pg-contact-details .single-quick-contact i {
	font-size: 30px;
	line-height: 30px;
	color: #47BB8F;
	display: inline-block;
	margin-bottom: 30px; }
.pg-contact-details .single-quick-contact h5 {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	line-height: 24px;
	color: #333333;
	font-weight: 700;
	letter-spacing: 0.5px; }
.pg-contact-details .single-quick-contact p {
	font-size: 16px;
	letter-spacing: 0.5px;
	color: #777777;
	margin-bottom: 0; }
.pg-contact-details .single-quick-contact p a {
	color: #777777; }
.pg-contact-details .single-quick-contact p a::after {
	content: "/";
	padding: 0 3px; }
.pg-contact-details .single-quick-contact p a:last-child::after {
	display: none; }
.pg-contact-details .single-quick-contact p a:hover {
	color: #47BB8F; }

.contact-map {
	margin-top: 30px; }

.contact-google-map {
	height: 450px;
	width: 100%;
	border: 1px solid #dddddd;
	border-radius: 10px; }

.pg-contact-form-map-wrapper .pg-contact-form .small-title {
	padding-right: 150px; }
.pg-contact-form-map-wrapper .pg-contact-map-wrapper .small-title {
	padding-right: 190px; }
.pg-contact-form-map-wrapper .pg-contact-map-wrapper .contact-map {
	margin-top: 60px; }
.pg-contact-form-map-wrapper .pg-contact-map-wrapper .contact-google-map {
	height: 350px;
	border-radius: 0; }

.pg-contact-map-fullscreen .contact-google-map {
	border-radius: 0;
	border: none; }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.pg-contact-form-map-wrapper .pg-contact-form .small-title {
		padding-right: 0; }
	.pg-contact-form-map-wrapper .pg-contact-map-wrapper .small-title {
		padding-right: 0; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.pg-contact-details {
		margin-top: 60px; }

	.pg-contact-form .small-title {
		padding-right: 100px; }

	.contact-google-map {
		height: 350px; }

	.pg-contact-map-wrapper {
		margin-top: 50px; }

	.pg-contact-details.mobile-mt-0 {
		margin-top: 0; } }
@media only screen and (max-width: 767px) {
	.pg-contact-details {
		margin-top: 60px; }

	.pg-contact-form .small-title {
		padding-right: 50px; }

	.contact-google-map {
		height: 350px; }

	.pg-contact-details.mobile-mt-0 {
		margin-top: 0; }

	.pg-contact-map-wrapper {
		margin-top: 50px; } }
@media only screen and (max-width: 575px) {
	.pg-contact-details {
		margin-top: 50px; }

	.pg-contact-form .small-title {
		padding-right: 0; }

	.contact-google-map {
		height: 350px; }

	.pg-contact-form-map-wrapper .pg-contact-form .small-title {
		padding-right: 0; }

	.pg-contact-form-map-wrapper .pg-contact-map-wrapper .small-title {
		padding-right: 0; } }
.cr-contact-message-modal {
	position: fixed;
	top: auto;
	bottom: 0;
	left: 0;
	right: auto;
	width: 100%;
	background: rgba(25, 25, 25, 0.95);
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	transform: translateY(100%);
	visibility: hidden;
	opacity: 1;
	z-index: -9;
	-webkit-transition: 0.5s ease-out 0s;
	-moz-transition: 0.5s ease-out 0s;
	-ms-transition: 0.5s ease-out 0s;
	-o-transition: 0.5s ease-out 0s;
	transition: 0.5s ease-out 0s;
	padding: 30px;
	padding-right: 60px;
	-webkit-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2); }
.cr-contact-message-modal .form-messege {
	font-size: 20px;
	margin-bottom: 0;
	line-height: 1.3; }
.cr-contact-message-modal .form-messege.error {
	color: #f6644F; }
.cr-contact-message-modal .form-messege.success {
	color: #47BB8F; }
.cr-contact-message-modal.is-visible {
	opacity: 1;
	visibility: visible;
	z-index: 99999;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0); }
.cr-contact-message-modal button {
	position: absolute;
	right: 25px;
	top: 30px;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	background: transparent;
	color: #ffffff;
	outline: none;
	border: none;
	font-size: 20px; }

@media only screen and (max-width: 767px) {
	.cr-contact-message-modal {
		padding-right: 40px; }
	.cr-contact-message-modal button {
		right: 10px;
		top: 10px; } }
		
		
.pg-contact-us-area.section-padding-lg.bg-white {
    padding: 35px 0;
}

.user-panel {
    float: right;
}

.social-links {
    text-align: center;
    margin: 25px;
}
.social-links-warp p {
    margin-bottom: 0;
    font-size: 16px;
}

.page-top-info h1 {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-overlay {
    /* text-align: center; */
    /* background: #000000a3; */
    /* position: absolute; */
    /* top: 0px; */
    /* opacity: 0; */
    /* overflow: hidden; */
}

/*.product-item:hover .product-overlay {*/
/*    opacity: 1;*/
/*    overflow: visible;*/
/*    transition: all .3s linear;*/
/*}*/

.product-overlay a .fa {
    color: #fff;
    font-size: 34px;
}

.product-overlay a {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.top-letest-product-section .product-overlay {
    /* position: absolute; */
    /* text-align: center; */
    /* background: #dc0404a3; */
    /* content: ''; */
    /* width: 100%; */
    /* height: 100%; */
    /* top: 0; */
    /* opacity: 0; */
    /* overflow: hidden; */
}
.top-letest-product-section .product-item:hover .product-overlay{
     /* opacity: 1; */
     /* overflow: visible; */
     /* transition: all .3s linear; */
}

.top-letest-product-section .product-overlay a .fa{
    color: #fff;
    font-size: 34px;
}

.top-letest-product-section .product-overlay a{
     position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}
.social-icons.social-icons-rounded.social-icons-colorized ul {
    list-style: none;
}


.social-icons.social-icons-rounded.social-icons-colorized ul li{
    
display: inline-block;
    
margin: 0 5px;
}

.social-icons.social-icons-rounded.social-icons-colorized ul li .fa{
    
color: #c02e27;
    
font-size: 22px;
}

.service-icon img {
    /* height: 140px; */
}

.product-item {
    margin: 0;
}

/*.work-button.text-center button {*/
/*    color: #444;*/
/*    background: transparent;*/
/*    border: none;*/
/*    font-size: 18px;*/
/*    padding: 14px 25px;*/
/*    border-radius: 5px;*/
/*    border: 1px solid #fc5c0f;*/
/*    margin: 0 5px;*/
/*    text-transform: capitalize;*/
/*    position: relative;*/
/*}*/

.work-remp div{
    width:200px;
    background:#ddd;
    height:200px;
}

.google_map iframe {
    height: 200px;
    border: 1px solid #ddd !important;
}


.our_mission_vi .nav li a {
    font-size: 20px;
    color: #fff;
    /* padding: 10px; */
    /* border: 1px solid #ddd; */
}

.our_mission_vi .nav li {
    padding:10px;
    /* border: 1px solid #ddd; */
    margin: 0 5px;
}



















/* The Image Box */
div.img {
    border: 1px solid #ccc;
}

div.img:hover {
    border: 1px solid #777;
}

/* The Image */
div.img img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

/* Description of Image */
div.desc {
    padding: 15px;
    text-align: center;
}

* {
    box-sizing: border-box;
}

/* Add Responsiveness */
.responsive {
    /* padding: 0 6px; */
    /* float: left; */
    box-shadow: 0.3rem 0.4rem 0.4rem rgb(0 0 0 / 40%);
    /* width: 24.99999%; */
    overflow: hidden;
    margin: 15px 0;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}



/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}


/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}



/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}


@-webkit-keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0.1)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}


.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.responsive img:hover {
    transform: scale(1.15);
}

.responsive img{
    transition:transform 400ms ease-out;
}































#team {
    background: #eee !important;
    text-align: center;
    padding: 30px 0;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #108d6f;
    border-color: #108d6f;
    box-shadow: none;
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #007b5e;
    border-color: #007b5e;
}

section {
    /* padding: 60px 0; */
}

section .section-title {
    text-align: center;
    color: #444;
    margin-bottom: 50px;
    margin-top: 30px;
    font-size: 38px;
    text-transform: uppercase;
}

#team .card {
    border: none;
    background: #ffffff;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.frontside .card,
.backside .card {
    min-height: 312px;
}

.backside .card a {
    font-size: 18px;
    color: #007b5e !important;
}

.frontside .card .card-title,
.backside .card .card-title {
    color: #007b5e !important;
}

.frontside .card .card-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}




























.section-title {
	font-size: 28px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	/* font-weight: 400; */
	display: inline-block;
	position: relative;
}
.section-title:after,
.section-title:before {
	content: '';
	position: absolute;
	bottom: 0;
}
.section-title:after {
	height: 2px;
	background-color: rgb(252 92 15);
	left: 25%;
	right: 25%;
}

.section-title:before {
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
	background-color: #fc5c0f;
	left: 50%;
	transform: translatex(-50%);
	bottom: -6px;
	z-index: 9;
	border-radius: 50%;
}

/* CAROUSEL STARTS */
.customer-feedback .owl-item img {
	width: 85px;
	height: 85px;
	position: relative;
	left: 46%;
}

.feedback-slider-item {
	position: relative;
	padding: 60px;
	/* left: 50%; */
	margin-top: -40px;
}

.customer-name {
	margin-top: 15px;
	margin-bottom: 25px;
	font-size: 20px;
	color: #444;
	font-weight: 500;
}

.feedback-slider-item p {
    line-height: 1.875;
    font-size: 20px;
    color: #444;
}

.customer-rating {
	background-color: #eee;
	border: 3px solid #fff;
	color: rgba(1, 1, 1, 0.702);
	font-weight: 700;
	border-radius: 50%;
	position: absolute;
	width: 47px;
	height: 47px;
	line-height: 44px;
	font-size: 15px;
	right: 0;
	top: 77px;
	text-indent: -3px;
}

.thumb-prev .customer-rating {
	top: -20px;
	left: 0;
	right: auto;
}

.thumb-next .customer-rating {
	top: -20px;
	right: 0;
}

.customer-rating i {
	color: rgb(251, 90, 13);
	position: absolute;
	top: 10px;
	right: 5px;
	font-weight: 600;
	font-size: 12px;
}

/* GREY BACKGROUND COLOR OF THE ACTIVE SLIDER */
.feedback-slider-item:after {
	content: '';
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0;
	top: 103px;
	background-color: #f6f6f6;
	border: 1px solid rgba(251, 90, 13, .1);
	border-radius: 10px;
	z-index: -1;
}

.thumb-prev,
.thumb-next {
	position: absolute;
	z-index: 99;
	top: 45%;
	width: 98px;
	height: 98px;
	left: -90px;
	cursor: pointer;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.thumb-next {
	left: auto;
	right: -90px;
}

.feedback-slider-thumb img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
}

.feedback-slider-thumb:hover {
	opacity: .8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.customer-feedback .owl-nav [class*="owl-"] {
	position: relative;
	display: inline-block;
	bottom: 45px;
	transition: all .2s ease-in;
}

.customer-feedback .owl-nav i {
	background-color: transparent;
	color: rgb(251, 90, 13);
	font-size: 25px;
}

.customer-feedback .owl-prev {
	left: -15px;
}

.customer-feedback .owl-prev:hover {
	left: -20px;
}

.customer-feedback .owl-next {
	right: -15px;
}

.customer-feedback .owl-next:hover {
	right: -20px;
}

/* DOTS */
.customer-feedback .owl-dots {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 35px;
}
.customer-feedback .owl-dot {
	display: inline-block;
}

.customer-feedback .owl-dots .owl-dot span {
	width: 11px;
	height: 11px;
	margin: 0 5px;
	background: #fff;
	border: 1px solid rgb(251, 90, 13);
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
	border-radius: 50%;
}

.customer-feedback .owl-dots .owl-dot.active span {
	background-color: rgb(251, 90, 13);
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {
	.feedback-slider-item:after {
		left: 30px;
		right: 30px;
	}
	.customer-feedback .owl-nav [class*="owl-"] {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		margin-top: 45px;
		bottom: auto;
	}
	.customer-feedback .owl-prev {
		left: 0;
	}
	.customer-feedback .owl-next {
		right: 0;
	}
	
}


.them-product-gallary{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.backgroud-imge-product-overlay {
    text-align: center;
    /* background: #000000bd; */
}

.filter-box-img {
    /* width: 29%; */
    display: inline-block;
    margin: 30px;
}
.customer-feedback {
    background: #000000c4;
    padding: 60px 0;
}

.media.service_img img {
    width: 250px;
    margin-right: 20px;
}

.service-box p {
    font-size: 18px;
    color: #333;
    font-weight: 400;
    text-transform: capitalize;
}

.service-box h5 {
    font-size: 25px;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.service-box {
    margin: 15px 0;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
}
.service-overlay {
    background: #e9e9e9cf;
    text-align: center;
    padding-bottom: 30px;
}
.work-button {
    margin-bottom: 12px;
}
section.product-filter-section h2 {
    color: #444;
}




.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

section.our_client_section {
    padding: 30px 0;
    text-align: center;
}
section.our_client_section h2 {
    color: #444;
}

.product-discription {
    /* position: absolute; */
    left: 50%;
    /* top: 70%; */
    transform: translate(-50%, -50%);
}

.product-discription h5{
    color:#fff !important;
}

.product-discription p{
    color:#fff;
}


#team .section-title{
    color:#444;
}

.our_mission_vi .nav li.active {
    background: #ddd;
}

.our_mission_vi p {
    font-size: 18px;
    color: #444;
    text-align: justify;
}
/********************** Effect 12 *************************/
/*.product-item {*/
/*	float: left;*/
/*	display: inline-block;*/
/*	width: 100%;*/
	/* max-width: 300px; */
/*	margin-right: 1.5%;*/
/*	position: relative;*/
/*	cursor: pointer;*/
/*	overflow: hidden;*/
/*}*/
/*.product-item img {*/
/*  transform: scale(1);*/
/*	max-width: 100%;*/
/*  transition: 0.5s ease all;*/
/*  transform: rotate(-360deg);*/
/*}*/
/*.product-item .product-discription {*/
/*	text-decoration: none;*/
/*	color: #fff;*/
/*	width: 100%;*/
/*	left: 0;*/
/*	text-align: center;*/
/*	font-size: 40px;*/
/*	height: 0px;*/
/*	position: absolute;*/
/*	transition: 0.5s ease all;*/
/*	visibility: hidden;*/
/*	opacity: 0;*/
	/* bottom: 150px; */
/*	transform: scale(0.3);*/
/*}	*/
/*.product-item:hover .product-discription {*/
  /* background: rgba(0,0,0,0.2); */
/*  visibility: visible;*/
/*  height: 50%;*/
/*  padding: 24.1% 0;*/
/*  opacity: 1;*/
/*  bottom: 3px;*/
/*  transform: scale(1);*/
/*  text-shadow: */
/*		-0   -1px 1px #000000,*/
/*		 0   -1px 1px #000000,*/
/*		-0    1px 1px #000000,*/
/*		 0    1px 1px #000000,*/
/*		-1px -0   1px #000000,*/
/*		 1px -0   1px #000000,*/
/*		-1px  0   1px #000000,*/
/*		 1px  0   1px #000000,*/
/*		-1px -1px 1px #000000,*/
/*		 1px -1px 1px #000000,*/
/*		-1px  1px 1px #000000,*/
/*		 1px  1px 1px #000000,*/
/*		-1px -1px 1px #000000,*/
/*		 1px -1px 1px #000000,*/
/*		-1px  1px 1px #000000,*/
/*		 1px  1px 1px #000000;*/
/*}*/
/*.product-item:hover img {*/
/*  transform: scale(1.5);*/
/*  transform: rotate(0deg);*/
/*}*/

.product-discription.tab-text h4 {
    color: #fff !important;
    letter-spacing: .5px;
    text-transform: capitalize;
    text-align: center;
}

.product-discription.tab-text p {
    color: #fff !important;
    letter-spacing: .5px;
    text-transform: capitalize;
    text-align: center;
}

.product-discription h4 {
    color: #fff !important;
    letter-spacing: .5px;
    text-transform: capitalize;
    text-align: center;
}

.product-discription p {
    color: #fff !important;
    letter-spacing: .5px;
    text-transform: capitalize;
    text-align: center;
}


.filter_btn {
    color: #0a0909;
    border: 1px solid #e41f1f;
    border-radius: 6px;
    margin: 0 5px;
    font-size: 1.5em;
    padding: 10px 35px;
    /* width: 100%; */
    cursor: pointer;
}
    .filter_btn:hover {
        color: #333;
    }


 .filter_btn-4{
        position: relative;
        overflow: hidden;
    }
    .filter_btn-4:before {
        content: '';
        display: block;
        position: absolute;
        background: #333;
        width: 0%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
                -moz- transform: translate(-50%, -50%);
        transition: all .5s;
            -webkit-transition: all .5s;
                -moz-transition: all .5s;
    }
    .filter_btn-4:hover:before {
        width: 100%;
        z-index: -1;
    }





.imagebox{
    position: relative;
    /* width:500px; */
    /* height: 300px; */
    background-size: cover;
    border:2px solid #fff;
    overflow: hidden;
}
.imagebox img{
    width: 100%;
    transition: .5s;
}
.main-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: .5s;
}
.main-content:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateX(-100%) scale(1) skew(-45deg);
    transition: .5s;
}
.content{
    position: absolute;
    top: 57%;
    /* transform: translateY(-50%); */
    /* padding: 30px 50px; */
    text-align: center;
}
.content h4{
    padding: 0px;
    color: #fff;
    margin-bottom: 20px;
    /* font-size: 30px; */
    transform: translateY(-100%) scale(0);
    transition: .5s;
}
.content p{
    padding: 0px;
    color: #fff;
    
    font-size: 17px;
    transform: scale(2);
    transition: .5s;
    opacity: 0;
}

.imagebox:hover .content h4{
    transform: translateY(0) scale(1);
}
.imagebox:hover .content p{
    transform: scale(1);
    opacity: 1;
}
.imagebox:hover img{
     transform: scale(1.5) translateX(50px);
     transition: .5s;
}
.imagebox:hover .main-content:before{
    opacity: 1;
    background: rgba(255,0,0,.8);
    transform: translateX(0) scale(1) skew(-45deg);

}

.product-discription.content .fa {
    font-size: 40px;
    color: #fff;
}

.our_mission_vi ul li a.active {
    background: #e05848 !important;
    border: 0;
    color: #fff !important;
}









/* Included color classes.. 
	.red 
	.blue 
	.yellow 
*/

figure.photo {
  position: relative;
  overflow: hidden;
  /* margin: 10px; */
  /* min-width: 220px; */
  /* max-width: 310px; */
  /* max-height: 220px; */
  width: 100%;
  background: #000000;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

figure.photo * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

figure.photo img {
  max-width: 100%;
  position: relative;
  opacity: 0.4;
  display: block;
}

figure.photo figcaption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

figure.photo h2 {
  position: absolute;
  left: 40px;
  right: 40px;
  color: #fff !important;
  display: inline-block;
  background: #000000;
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  padding: 12px 5px;
  margin: 0;
  top: 50%;
  text-transform: uppercase;
  font-weight: 400;
}

figure.photo h2 span {
  font-weight: 800;
}

figure.photo:before {
  height: 100%;
  width: 100%;
  top: 0px;
  left: -165px;
  content: '';
  background: #161515;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(110deg) translateY(-50%);
  transform: rotate(110deg) translateY(-50%);
}

figure.photo a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

figure.photo.blue {
  background: #123851;
}

figure.photo.blue h2 {
  background: #0a212f;
}

figure.photo.red {
  background: #581a14;
}

figure.photo.red h2 {
  background: #36100c;
}

figure.photo.yellow {
  background: #7f5006;
}

figure.photo.yellow h2 {
  background: #583804;
}

figure.photo:hover img,
figure.photo.hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.photo:hover h2,
figure.photo.hover h2 {
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
}

figure.photo:hover:before,
figure.photo.hover:before {
  -webkit-transform: rotate(110deg) translateY(-150%);
  transform: rotate(110deg) translateY(-150%);
}


/* Demo purposes only */
/* html {
  height: 100%;
}
body {
  background-color: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  margin: 0;
  height: 100%;
} */

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}











.imagebox{
    position: relative;
    /* width:500px; */
    /* height: 300px; */
    background-size: cover;
    border:2px solid #fff;
    overflow: hidden;
    margin: 15px 0;
}
.imagebox img{
    width: 100%;
    transition: .5s;
}
.main-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: .5s;
}
.main-content:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateX(-100%) scale(1) skew(-45deg);
    transition: .5s;
}
.content{
    position: absolute;
    top: 57%;
    /* transform: translateY(-50%); */
    /* padding: 30px 50px; */
    text-align: center;
}
.content h4{
    padding: 0px;
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    transform: translateY(-100%) scale(0);
    transition: .5s;
}
.content p{
    padding: 0px;
    color: #fff;
    font-size: 17px;
    transform: scale(2);
    transition: .5s;
    opacity: 0;
    display: none;
}

.imagebox:hover .content h4{
    transform: translateY(0) scale(1);
}
.imagebox:hover .content p{
    transform: scale(1);
    opacity: 1;
}
.imagebox:hover img{
     transform: scale(1.5) translateX(50px);
     transition: .5s;
}
.imagebox:hover .main-content:before{
    opacity: 1;
    background: rgb(0 0 0 / 70%);
    transform: translateX(0) scale(1) skew(-45deg);
}

.product-discription.content .fa {
    font-size: 40px;
    color: #fff;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-item .fa {
    font-size: 30px !important;
    color: #fff;
    position: absolute;
    top: 46%;
    left: 48%;
    opacity: 0;
}

.product-item:hover .fa{
    opacity: 1;
    transition:all .3s linear;
}
.discription-service {
    text-align: center;
    padding: 20px 0;
}

.service-box .card {
    border: 0;
}

.service-box img:hover {
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.5);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.5);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.5);
    transition: all 200ms ease-in;
    transform: scale(0.90);
    overflow: hidden;
}

section.top-letest-product-section .fa {
    position: absolute;
    top: 50%;
    left: 43%;
    color: #fff;
    font-size: 30px;
    opacity:0;
}
section.control-icon:hover .fa {
    opacity:1;
    transition:all .3s linear;
}


@media (max-width: 575.98px) { 
    
    .filter_btn {
    color: #0a0909;
    border: 1px solid #e41f1f;
    border-radius: 0;
    font-size: 1.5em;
    padding: 3px 25px;
    /* width: 100%; */
    margin-bottom: 10px;
}
    .customer-feedback .owl-dots {
    position: absolute;
    display: none;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
}
section .section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    margin-top: -0;
    font-size: 32px;
    text-transform: uppercase;
}

.customer-feedback {
    background: #000000c4;
    padding: 20px 0;
}

.thumb-next {
    left: auto;
    right: -90px;
    display: none;
}

.thumb-prev, .thumb-next {
    position: absolute;
    z-index: 99;
    top: 45%;
    display: none;
    width: 98px;
    height: 98px;
    left: -90px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.customer-feedback .owl-item img {
    width: 85px;
    height: 85px;
    position: relative;
    left: 30%;
}
.header-search-form {
    width: 100%;
    position: relative;
    padding: 0 10px;
    display: none;
}

.nav-brand-logo {
    display: inline-block;
}

.user-panel {
    float: none; 
}

.page-top-info h1 {
    color: #fff;
    font-size: 51px;
}


.product-item .fa {
    font-size: 30px !important;
    color: #fff;
    position: absolute;
    top: 37%;
    left: 48%;
    opacity: 0;
}
.spad {
    padding-top: 40px;
    padding-bottom: 0; 
}
.filter-widget {
    margin-bottom: 40px;
}
.filter-widget .fw-title {
    font-size: 18px;
    font-weight: 700;
    color: #414141;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h3.contact-form-title {
    font-size: 26px;
}





    
}
figure.photo:hover .fa{
    opacity:1;
    transition:all .3s linear;
}

.customer-logos {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.customer-feedback-slider {
    background: #33333394;
    width: 100%;
    text-align: center;
    height: 100%;
}

canvas.pg-canvas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

button.slick-prev.slick-arrow {
    position: absolute;
    left: 0;
    top: 39%;
    z-index: 9;
    border: 0;
    font-size: 0;
    padding: 16px 7px;
    background: #6b6b6b;
}

/*customer-logos:hover .slick-arrow {*/
/*    opacity: 1;*/
/*    transition:all .3s linear;*/
/*}*/

button.slick-next.slick-arrow{
    position: absolute;
    right: 0;
    top: 39%;
    z-index: 9;
    border: 0;
    font-size: 0;
    padding: 16px 7px;
    background: #6b6b6b;
}

.paralax-img-bg {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    width: 100%;
}
.paralax-img-bg1{
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    width: 100%;
}

div#about-bg-color {
    background: #e8e8e8db;
}

.about-info {
    padding: 20px 0;
}

.about-img {
    padding: 20px 0;
}
.discription-service h4 {
    color: #333;
}

.pg-contact-form button:hover {
    background: #b32d21;
    color: #fff;
    transition: all .3s linear;
}

section#team-section {
    text-align: center;
    background: #e9e9e9;
}





@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Poppins:400,400i,500,600,700,800");
    .project-area .section-title h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .project-area .section-title h2 {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.grid > [class*=col-] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.grid-item {
  position: relative;
}
.grid-item img {
  width: 100%;
}
.grid-item:hover .grid-hover-link {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}

.grid-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.grid-hover::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(254, 72, 76, 0.9);
  z-index: -1;
}
.grid-hover h3 {
  position: relative;
  margin: -3.125rem 0 0.25rem;
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .grid-hover h3 {
    font-size: 1.3125rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid-hover h3 {
    font-size: 1.25rem;
    margin: -2.5rem 0 0.25rem;
  }
}
.grid-hover span {
  font-weight: 500;
  position: relative;
  display: block;
  padding-bottom: 20px;
}

.grid-hover-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding-top: 5rem;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid-hover-link {
    padding-top: 5.625rem;
  }
}
.grid-hover-link a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #ffffff;
  text-align: center;
  margin: 0 0.5rem;
}
.grid-hover-link a:hover {
  background-color: #ffffff;
}
.grid-hover-link a:hover span::before {
  color: #fe484c;
}
.grid-hover-link a span {
  display: inline-block;
  line-height: 1;
}
.mouse-move {
  overflow: hidden;
  perspective: 1600px;
}

.mouse-move .grid-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate3d(1, 0, 0, 90deg);
  transform: rotate3d(1, 0, 0, 90deg);
  pointer-events: none;
}

.mouse-move.in-top .grid-hover {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation: in-top 0.3s ease 0s 1 forwards;
  animation: in-top 0.3s ease 0s 1 forwards;
}

.mouse-move.in-right .grid-hover {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-animation: in-right 0.3s ease 0s 1 forwards;
  animation: in-right 0.3s ease 0s 1 forwards;
}

.mouse-move.in-bottom .grid-hover {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: in-bottom 0.3s ease 0s 1 forwards;
  animation: in-bottom 0.3s ease 0s 1 forwards;
}

.mouse-move.in-left .grid-hover {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-animation: in-left 0.3s ease 0s 1 forwards;
  animation: in-left 0.3s ease 0s 1 forwards;
}

.mouse-move.out-top .grid-hover {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation: out-top 0.3s ease 0s 1 forwards;
  animation: out-top 0.3s ease 0s 1 forwards;
}

.mouse-move.out-right .grid-hover {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-animation: out-right 0.3s ease 0s 1 forwards;
  animation: out-right 0.3s ease 0s 1 forwards;
  margin-left: 1px;
}

.mouse-move.out-bottom .grid-hover {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: out-bottom 0.3s ease 0s 1 forwards;
  animation: out-bottom 0.3s ease 0s 1 forwards;
}

.mouse-move.out-left .grid-hover {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-animation: out-left 0.3s ease 0s 1 forwards;
  animation: out-left 0.3s ease 0s 1 forwards;
}

@keyframes in-top {
  from {
    transform: rotate3d(-1, 0, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes in-right {
  from {
    transform: rotate3d(0, -1, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes in-bottom {
  from {
    transform: rotate3d(1, 0, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes in-left {
  from {
    transform: rotate3d(0, 1, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes out-top {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(-1, 0, 0, 104deg);
  }
}
@keyframes out-right {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(0, -1, 0, 104deg);
  }
}
@keyframes out-bottom {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(1, 0, 0, 104deg);
  }
}
@keyframes out-left {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(0, 1, 0, 104deg);
  }
}
.grid-hover h3{
    color: #fff;
    position: relative;
    font-size: 1.5rem;
    position: relative;
    margin: 6rem 0 0.25rem;
    text-align: center;}
  @media (min-width: 992px) and (max-width: 1199px) {
  .grid-hover h3 {
    font-size: 1.3125rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid-hover h3 {
    font-size: 1.25rem;
    margin: -2.5rem 0 0.25rem;
  }
}
.grid-hover span {
  font-weight: 500;
  position: relative;
  display: block;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}
.grid-hover-link{display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fa{color: #261616;}



button.filter_btn:hover {
    background: #fc5c0f;
    transition: all .3s linear;
    color: #fff;
}

.pg-contact-us-area.section-padding-lg h3 {
    color: #444;
}

.pg-contact-us-area.section-padding-lg p {
    color: #444;
    font-size: 18px;
}
.order-2.order-lg-2 {
    background: #cfcfcf;
    padding-top: 20px;
}
.Nahid_hassan {
    /* width: 460px; */
}


.row {
    /* overflow-x: hidden; */
}

.nav-brand-logo {
    padding: 22px 0;
    width: 250px;
    float: left;
}

.them-product-gallary-1{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height:auto;
    background-attachment: fixed;
}

.single-contant {
    background: #ffffffc7;
    padding: 10px;
}

.single-contant p {
    color: #444;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
}

.single-contant h4 {
    color: #855c2b;
    margin-top: 40px;
    text-transform: capitalize;
}
section.responsible {
    position: relative;
}
div#single-box-1 {
    position: relative;
    left: 56%;
    padding: 20px;
    top:50%;
}

div#single-box-1 h2 {
    color: #855c2b;
    text-transform: capitalize;
}
.single-contant h2 {
    color: #855c2b;
    text-transform: capitalize;
}
.welcome-text .single-box {
    text-align: center;
    padding: 60px 0;
}

.welcome-text .single-box h2 {
    color: #444;
    text-transform: capitalize;
    padding-bottom: 15px;
}

.welcome-text .single-box p {
    color: #444;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.welcome-text .single-box .btn {
    background: #f54d07;
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
}
.Top-selling-product h2 {
    color: #444;
}
.product-slider {
    margin-top: 50px;
}






.mt-60{
    margin-top:60px;
}

.section-block-grey {
    background-color: #f9f9f9;
    padding-top: 50px;
}

.serv-section-2 {
    position: relative;
    border: 1px solid #eee;
    background: #fff;
    text-align: center;
    box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
    border-radius: 42px;
    overflow: hidden;
    /* padding: 30px; */
    margin: 15px 0;
}

/*.serv-section-2:before {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0px;*/
/*    z-index: 0;*/
/*    content: " ";*/
/*    width: 120px;*/
/*    height: 120px;*/
/*    background: #f5f5f5;*/
/*    border-bottom-left-radius: 136px;*/
/*    transition: all 0.4s ease-in-out;*/
/*    -webkit-transition: all 0.4s ease-in-out;*/
/*}*/

/*.serv-section-2-icon {*/
/*    position: absolute;*/
/*    top: 18px;*/
/*    right: 22px;*/
/*    max-width: 100px;*/
/*    z-index: 1;*/
/*    text-align: center;*/
/*}*/

.serv-section-2-icon i {
    color: #5f27cd;
    font-size: 48px;
    line-height: 65px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.serv-section-desc {
    position: relative;
}

.serv-section-2 h4 {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.serv-section-2 h5 {
    color: #333;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
}

.section-heading-line-left {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #5f27cd;
    border-radius: 25%;
    margin-top: 15px;
    margin-bottom: 5px;
}

.serv-section-2 p {
    margin-top: 25px;
    padding-right: 50px;
}

.serv-section-2:hover .serv-section-2-icon i {
    color: #fff;
}

.serv-section-2:hover:before {
    background: #5f27cd;
}

.section-heading h3 {
    color: #c49a30;
    text-transform: capitalize;
}


.section-heading {
    text-align: center;
    padding-bottom: 15px;
}

.categoriesa-bgimg{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height:50vh;
}

.womens-contant {
    text-align: center;
    padding-top: 15%;
}

.mens-contant {
    text-align: center;
    padding-top: 15%;
}
.womens-contant .btn {
    background: #f54d07;
    padding: 10px 34px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    color:#fff;
}
.banner-overlay {
    background: #0009;
    height: 100%;
    width: 100%;
}
.womens-contant h3 {
    padding-bottom: 20px;
}

.mens-contant .btn {
    background: #f54d07;
    padding: 10px 34px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    color:#fff;
}
.banner-overlay {
    background: #0009;
    height: 100%;
    width: 100%;
}
.mens-contant h3 {
    padding-bottom: 20px;
}

.mens-product-title {
    text-align: center;
    padding: 30px 0;
}

.women-product-title {
    text-align: center;
    padding: 30px 0;
}

.mens-product-title h3 {
    color: #444;
    text-transform: uppercase;
}

.women-product-title h3 {
    color: #444;
    text-transform: uppercase;
}
section.top-letest-product-section {
    padding-bottom: 30px;
}

.womens-fashion-section .owl-nav .owl-next {
    position: absolute;
    right: 50px;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.womens-fashion-section .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}


.mens-fashion-section .owl-nav .owl-next {
    position: absolute;
    right: 3px;
    height: 50px;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding-bottom: 5px !important;
    width: 50px;
    border-radius: 50%;
}

.mens-fashion-section .owl-nav .owl-next span{
    position: absolute;
    top: -18px;
    left: 18px;
}

.mens-fashion-section .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    top: 43%;
    width:50px;
    height:50px;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
    border-radius:50%;
}

.mens-fashion-section .owl-nav .owl-prev span{
    position: absolute;
    top: -18px;
    left: 18px;
}

.mission img {
    margin-right: 20px;
}

.vision img {
    margin-left: 20px;
}

.mission {
    margin-bottom: 20px;
}

.vision {
    margin-bottom: 20px;
}
.mens-contant h3 {
    text-transform: capitalize;
    color: #fff;
}
.product_frontend .owl-nav .owl-prev span {
    position: absolute;
    left: 16px;
    top: -18px;
}
.product_frontend .owl-nav .owl-next span {
    position: absolute;
    left: 20px;
    top: -19px;
}

.serv-section-2-icon img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    padding: 10px;
}
div#vision {
    margin-top: 30px;
}

.mission_contant h3 {
    color: #444;
}

.vision_contant h3 {
    color: #444;
}

.banner_overlay {
    background: #000000d1 !important;
    width: 100%;
    height: 100%;
}

.blog-details-content.clearfix h2 {
    color: #444;
}

.blog-details-content.clearfix h4 {
    color: #444;
}

.backside p {
    color: #444;
    text-transform: capitalize;
}

a.social-icon.text-xs-center .fa {
    color: #007b5e;
}

.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%
}






.left_activities {
    position: relative;
    overflow: hidden;
    left: 50%;
    top: 8%;
    transform: translateX(-50%);
}

.single_box_3 {
    position: relative;
    overflow: hidden;
    background: #3a83ce;
    width: 600px;
    height: 600px;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.single_title_4 {
    position: absolute;
    right: 16%;
    bottom: 25%;
}

.single_title_3 {
    position: absolute;
    left: 17%;
    bottom: 25%;
}


.single_title_2 {
    position: absolute;
    left: 18%;
    top: 29%;
}


.single_title_1 {
    position: absolute;
    right: 20%;
    top: 29%;
}

.single_box_3 .single_title_1 :before {
    content: '';
    width: 597px;
    height: 7px;
    background: #fff;
    position: absolute;
    left: -338px;
    top: 200%;
}

.single_box_3 .single_title_1 :after {
    content: '';
    width: 633px;
    height: 7px;
    background: #fff;
    position: absolute;
    left: -358px;
    top: 193%;
    transform: rotate(
90deg
);
}

.single_box_1 {
    position: relative;
    width: 285px;
    height: 300px;
    top: 0;
    left: 30px;
    background: #f48b29;
    border-radius: 10%;
}

.single_box_2 {
    position: absolute;
    width: 285px;
    height: 300px;
    right: 33px;
    top: 0;
    background: #005792;
    border-radius: 10%;
}

.single_box_4 {
    position: absolute;
    width: 285px;
    height: 300px;
    bottom: 561px;
    right: 27px;
    background: #6155a6;
    border-radius: 10%;
}

.single_box_5 {
    position: relative;
    left: 35px;
    bottom: 557px;
    width: 285px;
    height: 300px;
    background: #0e918c;
    border-radius: 10%;
}

.single_box_1 ul li {
    text-align: left;
    text-transform: capitalize;
    color: #ffffff;
    margin: 5px 0;
    font-size: 18px;
}

.single_box_2 ul li {
    text-align: left;
    text-transform: capitalize;
    color: #ffffff;
    margin: 5px 0;
    font-size: 18px;
}


.single_box_4 ul li {
    text-align: left;
    text-transform: capitalize;
    color: #ffffff;
    margin: 5px 0;
    font-size: 18px;
}

.single_box_5 ul li {
    text-align: left;
    text-transform: capitalize;
    color: #ffffff;
    margin: 5px 0;
    font-size: 18px;
}

.single_box_4 ul {
    padding-top: 36%;
    padding-left: 34%;
}

.single_box_5 ul {
    padding: 20% 26px;
}

.single_box_2 ul {
    padding-left: 36%;
    padding-top: 13%;
}

.single_box_1 ul {
    padding-top: 16%;
    padding-left: 9%;
}

.Single_Buying_House h2 {
    color: #444;
    text-align: center;
    margin: 25px 0;
}

.Single_Buying_House p {
    color: #444;
    font-size: 20px;
}

.Single_Buying_House h5 {
    color: #444;
}
.single_feature h2 {
    color: #444;
}

.title_secion_general h2 {
    color: #fff;
    text-align: center;
    margin-top: 45px;
}

.single_feature h4 {
    color: #fff;
}

.single_list {
    padding-left: 46px;
    padding-top: 20px;
}




.single_event {
    margin-bottom: 20px;
}

div#event_information {
    position: relative;
    bottom: 53px;
    background: #fff;
    margin: 0 20px;
    border-radius: 10px;
}

.event_time .btn {
    background: #444;
    color: #fff;
    padding: 3px 10px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    margin-right: 10px;
}

.event_time span .fa {
    font-size: 16px;
    color: #e8353a;
    margin-right: 10px;
}

.event_time {
    margin-bottom: 10px;
}

.event_cost a {
    margin: 0 10px;
    color: #444444;
}

.event_cost a:hover{
    color: #3570b1;
    transition: all .3s linear;
}

.single_event .card {
    height: 470px;
}

.Event_Management {
    margin: 10px 0;
}

.Event_Management li a {
    background: #3570b1;
    color: #fff;
    margin: 0 5px;
    border: 1px solid #3570b1;
}

.Event_Management li a:hover {
    background: #fff;
    color: #3570b1;
    transition: all .3s linear;
    border: 1px solid #3570b1;
}

.event_discription p {
    color: #444;
}

div#event_information h5 {
    color: #444;
    margin-bottom: 10px;
}

div#event_information .btn {
    background: #444;
    color: #fff;
    font-size: 16px;
}


.production_box_main {
    background: #fff;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: relative;
    left: 50%;
    /* top: 47%; */
    margin-top: 17%;
    transform: translateX(-50%);
}

.production_discription {
    position: relative;
    margin-bottom: 160px;
}
.production_box_main h4 {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 60px;
    transform: translate(-50%, -50%);
    border: 2px solid #0692c7;
    padding: 67px;
    border-radius: 10px;
    background: #0692c7;
}

.production_box-1 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    left: 20%;
    top: -13%;
    border-radius: 15px;
}

.production_box-2 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    left: 10%;
    top: 13%;
    border-radius: 15px;
}

.production_box-3 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    right: 020%;
    top: -13%;
    border-radius: 15px;
}

.production_box-4 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    right: 41%;
    top: -20%;
    border-radius: 15px;
}

.production_box-5 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    left: 5%;
    top: 41%;
    border-radius: 15px;
}

.production_box-6 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    right: 10%;
    top: 13%;
    border-radius: 15px;
}

.production_box-7 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    right: 6%;
    top: 39%;
    border-radius: 15px;
}

.production_box-8 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    right: 10%;
    top: 67%;
    border-radius: 15px;
}

.production_box-9 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    right: 20%;
    top: 94%;
    border-radius: 15px;
}

.production_box-10 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    top: 100%;
    border-radius: 15px;
    left: 41%;
}

.production_box-11 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    top: 68%;
    border-radius: 15px;
    left: 10%;
}

.production_box-12 {
    width: 200px;
    height: 100px;
    background: #0692c7;
    position: absolute;
    left: 20%;
    top: 94%;
    border-radius: 15px;
}

.production_box-1 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_box-2 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_box-3 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_box-4 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_box-5 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_box-6 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_box-7 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_box-8 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_box-9 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_box-10 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_box-11 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_box-12 p {
    text-align: center;
    margin-top: 17%;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.production_title {
    text-align: center;
    text-transform: capitalize;
    color: #444;
}

div#single-box-1 li {
    font-size: 18px;
    color: #444;
    font-weight: 400;
}

.single-contant li {
    font-size: 18px;
    font-weight: 400;
    color: #444;
}

.production_overlay {
    background: #000000d9;
    width: 100%;
    height: 100%;
}

.production_overlay .production_title {
    margin-top: 26px;
}

.single_feature {
    margin-bottom: 20px;
}

.single_feature {
    margin-top: -280px;
}

.woven-item-contant {
    text-align: center;
    padding-top: 12%;
}

.woven-item-contant a {
    background: #f54d07;
    padding: 10px 34px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
}

.sweat-cardigan-pullovers-contant {
    text-align: center;
    padding-top: 12%;
}

.sweat-cardigan-pullovers-contant a{
    background: #f54d07;
    padding: 10px 34px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
}

.tank-top-lingerie-contant {
    text-align: center;
    padding-top: 12%;
}

.tank-top-lingerie-contant a{
    background: #f54d07;
    padding: 10px 34px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
}

.knit-t-shirt-dress-contant {
    text-align: center;
    padding-top: 12%;
}

.knit-t-shirt-dress-contant a{
    background: #f54d07;
    padding: 10px 34px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
}

.denim-item-contant {
    text-align: center;
    padding-top: 12%;
}

.denim-item-contant a{
    background: #f54d07;
    padding: 10px 34px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
}

.sweater-contant {
    text-align: center;
    padding-top: 12%;
}

.sweater-contant a{
    background: #f54d07;
    padding: 10px 34px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
}

.jackets-contant {
    text-align: center;
    padding-top: 12%;
}

.jackets-contant a{
    background: #f54d07;
    padding: 10px 34px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
}

.knit-t-shirt-dress-product button.owl-prev {
    position: absolute;
    left: 0;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.knit-t-shirt-dress-product button.owl-next {
    position: absolute;
    right: 50px;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.woven-item-product-title {
    text-align: center;
    padding: 15px 0;
}

.woven-item-product-title h3 {
    color: #444;
    text-transform: capitalize;
}

.denim-item-product-title {
    text-align: center;
    padding: 15px 0;
}

.denim-item-product-title h3{
    color: #444;
    text-transform: capitalize;
}

.sweat-cardigan-pullovers-product-title {
    text-align: center;
    padding: 15px 0;
}

.sweat-cardigan-pullovers-product-title h3{
    color: #444;
    text-transform: capitalize;
}

.tank-top-lingerie-product-title {
    text-align: center;
    padding: 15px 0;
}

.tank-top-lingerie-product-title h3{
    color: #444;
    text-transform: capitalize;
}

.knit-t-shirt-dress-product-title {
    text-align: center;
    padding: 15px 0;
}

.knit-t-shirt-dress-product-title h3{
    color: #444;
    text-transform: capitalize;
}

.womens-product-title {
    text-align: center;
    padding: 15px 0;
}

.womens-product-title h3{
    color: #444;
    text-transform: capitalize;
}

.sweater-product-title {
    text-align: center;
    padding: 15px 0;
}

.sweater-product-title h3{
    color: #444;
    text-transform: capitalize;
}

.jackets-product-title {
    text-align: center;
    padding: 15px 0;
}

.jackets-product-title h3{
    color: #444;
    text-transform: capitalize;
}

.tank-top-lingerie-product button.owl-prev {
    position: absolute;
    left: 0;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.tank-top-lingerie-product button.owl-next {
    position: absolute;
    right: 50px;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}



.denim-item-product-slide button.owl-prev {
    position: absolute;
    left: 0;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.denim-item-product-slide button.owl-next {
    position: absolute;
    right: 50px;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.sweat-cardigan-pullovers-product-slide button.owl-prev {
    position: absolute;
    left: 0;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.sweat-cardigan-pullovers-product-slide button.owl-next {
    position: absolute;
    right: 50px;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.sweater-product-slide button.owl-prev {
    position: absolute;
    left: 0;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.sweater-product-slide button.owl-next {
    position: absolute;
    right: 50px;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.jackets-product-slide button.owl-prev {
    position: absolute;
    left: 0;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.jackets-product-slide button.owl-next {
    position: absolute;
    right: 50px;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.woven-item-product-slide button.owl-prev {
    position: absolute;
    left: 0;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.woven-item-product-slide button.owl-next {
    position: absolute;
    right: 50px;
    top: 43%;
    font-size: 50px !important;
    margin: 0;
    background: #fff !important;
    padding: 0;
}

.vbox-container img {
    width: 800px;
    height: 800px;
}

.vbox-overlay {
    background: #fdfdfd;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: hidden !important;
}

.vbox-content {
    text-align: center;
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    top: 0 !important;
    margin-top: 60px !important;
}

.vbox-close {
    cursor: pointer;
    position: fixed;
    top: -1px;
    right: 0;
    width: 46px;
    height: 40px;
    padding: 10px 20px 10px 0;
    display: block;
    background: url(close.gif) no-repeat #16161700 !important;
    background-position: 10px center;
    color: #fff;
    text-indent: -100px;
    overflow: visible;
}

.nav-brand-logo img {
    width: 238px;
}

.banner_section {
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100% !important;
}

.single_list ul li {
    color: #fff;
    font-size: 18px;
}

.single_title_2 p {
    font-size: 18px;
}

.single_title_1 p {
    font-size: 18px;
}

.single_title_3 p {
    font-size: 18px;
}

.single_title_4 p {
    font-size: 18px;
}

.mission_list h4 {
    color: #444;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.vission_list h4 {
    color: #444;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.vission_list ul {
    padding-left: 40px;
}

.mission_list ul {
    padding-left: 40px;
}

.vission_list ul li {
    font-size: 18px;
    text-transform: capitalize;
    color: #444;
}

.vission_list {
    padding-bottom: 20px;
}

div#fashion_info {
    text-align: center;
    padding-top: 12%;
}

div#fashion_info a {
    background: #868612;
    padding: 10px 34px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
}

div#fashion_discription_title {
    text-align: center;
    padding: 15px 0;
}

div#fashion_discription_title h3 {
    text-transform: capitalize;
    color: #000;
    border: 1px solid #ddd;
    width: 30%;
    border-radius: 23px;
    padding: 5px;
    background: #e4b532;
    margin: 20px  auto  0 auto;
}













