/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Banner Section
6.  Deal Of The Week
7.  Latest Blog
8.  Logo Carousel
9.  Contact
10.  Footer

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

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

html,
body {
	height: 100%;
	font-family: "Muli", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 300;
	font-family: "Muli", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 26px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 20px;
	font-family: "Muli", sans-serif;
	color: #585756;
	font-weight: 300;
	line-height: 26px;
	margin: 0 0 25px 0;
}

img {
	max-width: 100%;
}

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

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

ul,
ol {
	padding: 0 0 0 40px;
	margin: 0;
	font-size: 20px;
	color: #585756;
	font-weight: 300;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 40px;
	text-align: center;
}

.section-title .product-price {
	font-size: 24px;
	font-weight: 700;
	color: #000000;
	margin-top: 10px
}

.section-title .product-price span {
	font-size: 16px;
	font-weight: 400;
	color: #000000;
}

.section-title h2 {
	color: #252525;
	font-size: 36px;
	font-weight: 400;
	margin-bottom: 38px;
	position: relative;
}

.section-title h2:before {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -14px;
	width: 80px;
	height: 3px;
	background: #8021b9;
	content: "";
	margin: 0 auto;
}

.section-title p {
	color: #6e6e6e;
}

.set-bg {
	background-repeat:no-repeat;background-attachment:scroll;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;


}

.spad {
	padding-top: 150px;
	padding-bottom: 50px;
}

.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;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	padding: 16px 36px;
	color: #ffffff;
	background: #1088ba;
	/*background: rgb(46,214,225);
background: linear-gradient(90deg, rgba(46,214,225,1) 0%, rgba(70,160,212,1) 33%, rgba(130,31,184,1) 100%);*/
	text-transform: uppercase;
	border: 0
}

.download-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	padding: 9px 18px;
	color: #ffffff;
	background: #4cc0ed;
	text-transform: uppercase;
	border: 0
}

.parallax-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	padding: 16px 36px;
	color: #ffffff;
	background: transparent;
	text-transform: uppercase;
	border: 1px solid #FFF
}

.site-btn {
	color: #ffffff!important;
	background: #1088ba;
	border: 0;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 17px 48px 15px;
	cursor: pointer;
	border-radius: 0
}

.primary-btn-pro {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	padding: 18px 35px;
	color: #ffffff;
	background: #1088ba;
	text-transform: uppercase;
	border: 0
}

@media (max-width: 768px) {
	.primary-btn {
		padding: 10px 24px;
	}
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #131313;
}
.loader-hours,
.loader-minutes{
	display: none;
}

.loader-seconds{
	margin-bottom: 10px
}

.loader-message {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -13px;
	color: #FFF;
	font-size: 25px;
	width: 100%
}
.loader-text{
	font-size: 16px;
	font-weight: 100
}

.loader-spin {
	position: absolute;
	top: 39%;
	left: 0;
	margin-top: -13px;
	color: #1088ba;
	font-size: 28px;
	width: 100%
}

.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;
	}
}

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

.ht-right .lan-selector {
	max-width: 142px;
	cursor: pointer;
	display: inline-block;
	position: relative;
}

.ht-right .lan-selector .ddcommon {
	max-width: 142px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: none;
	cursor: pointer;
	padding: 0 20px;
}

.ht-right .lan-selector .ddcommon .ddTitle .ddTitleText img {
	padding-right: 5px;
}

.ht-right .lan-selector .ddcommon .ddTitle .ddTitleText span {
	font-size: 14px;
	color: #252525;
}

.ht-right .lan-selector .ddcommon .ddTitle .ddArrow:before {
	content: "3";
	font-family: "ElegantIcons";
	font-size: 14px;
	color: #636363;
	float: right;
	position: relative;
	right: 0;
	line-height: 26px;
}

.ht-right .lan-selector .ddcommon .ddChild {
	background: #fff;
	max-width: 142px;
	width: 100%;
	position: relative;
	left: 0;
}

.ht-right .lan-selector .ddcommon .ddChild ul {
	width: 100%;
	max-width: 142px;
}

.ht-right .lan-selector .ddcommon .ddChild ul li {
	line-height: 23px;
	padding: 0px 10px;
	list-style: none;
}

.ht-right .lan-selector .ddcommon .ddChild ul li img {
	padding-right: 10px;
}

.ht-right .lan-selector .ddcommon .ddChild ul li span {
	font-size: 13px;
	color: #000;
	letter-spacing: 0.325px;
}

.header-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #e5e5e5;
	background: transparent!important;
}

.header-top .ht-left {
	float: left;
}
.header-top .ht-left a{
	color:#000;
}

.header-top .ht-left .mail-service {
	font-size: 16px;
	color: #252525;
	float: left;
	border-right: 1px solid #E5E5E5;
	padding-top: 10px;
	padding-bottom: 15px;
	padding-right: 10px;
}

.header-top .ht-left .mail-service i {
	margin-right: 5px;
}

.header-top .ht-left .phone-service {
	float: right;
	font-size: 14px;
	color: #252525;
	line-height: 17px;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 10px;
}

.header-top .ht-left .phone-service i {
	margin-right: 5px;
}

.header-top .ht-right {
	float: right;
}

.header-top .ht-right .login-panel {
	float: right;
	font-size: 14px;
	color: #252525;
	display: inline-block;
	padding-left: 20px;
	padding-right: 20px;
	border-left: 1px solid #e5e5e5;
	padding-top: 10px;
	padding-bottom: 0px;
}

.header-top .ht-right .login-panel .language {
	max-width: 27px
}

.header-top .ht-right .login-panel i {
	margin-right: 8px;
}

.header-top .ht-right .lan-selector {
	float: right;
	margin-top: 10px;
	margin-bottom: 0px;
}

.header-top .ht-right .top-social {
	float: right;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 0px;
	border-right: 1px solid #e5e5e5;
}

.header-top .ht-right .top-social a {
	color: #252525;
	font-size: 16px;
	display: inline-block;
	margin-left: 15px;
}

.inner-header {
	padding: 10px 0;
}

.inner-header .logo {
	padding: 15px 0;
}

.inner-header .logo a {
	display: inline-block;
}
.inner-header .logo img {
	max-height: 112px
}

.top-align{
	margin-top: 3px
}

.inner-header .advanced-search {
	height: 50px;
	border: 1px solid #ebebeb;
}

.inner-header .advanced-search .category-btn {
	max-width: 30%;
	float: left;
	background: transparent;
	border: none;
	padding-left: 23px;
	padding-top: 11px;
	padding-bottom: 13px;
	padding-right: 60px;
	font-size: 16px;
	color: #252525;
	position: relative;
}

.inner-header .advanced-search .category-btn:before {
	position: absolute;
	right: 0;
	top: 14px;
	width: 1px;
	height: 20px;
	background: #e5e5e5;
	content: "";
}

.inner-header .advanced-search .category-btn:after {
	position: absolute;
	right: 11px;
	top: 10px;
	content: "3";
	font-family: "ElegantIcons";
	font-size: 16px;
	color: #b2b2b2;
}

.inner-header .advanced-search .input-group {
	max-width: 100%;
	height: 100%;
}

.inner-header .advanced-search .input-group input {
	width: 100%;
	height: 100%;
	border: none;
	font-size: 16px;
	color: #d1d1d1;
	padding-left: 20px;
}

.inner-header .advanced-search .input-group button {
	font-size: 16px;
	color: #ffffff;
	position: absolute;
	right: -3px;
	top: -1px;
	border: 1px solid #1088ba;
	background: #1088ba;
	padding: 12px 16px 12px;
	cursor: pointer;
}

.inner-header .nav-right {
	padding: 30px 0;
}

.inner-header .nav-right li {
	list-style: none;
	display: inline-block;
	font-size: 20px;
	margin-left: 15px;
}

.inner-header .nav-right li.heart-icon a {
	color: #252525;
	position: relative;
	display: inline-block;
}

.inner-header .nav-right li.heart-icon a span {
	position: absolute;
	right: -8px;
	top: -1px;
	height: 15px;
	width: 15px;
	background: #e7ab3c;
	color: #ffffff;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
	text-align: center;
	line-height: 15px;
}

.inner-header .nav-right li.cart-icon {
	position: relative;
	margin-right: 1px
}

.inner-header .nav-right li.cart-icon:hover .cart-hover {
	opacity: 1;
	visibility: visible;
	top: 60px;
}

.inner-header .nav-right li.cart-icon a {
	color: #252525;
	position: relative;
	display: inline-block;
}
.inner-header .nav-right li.cart-icon i {
	font-size: 28px
}
.inner-header .nav-right li.cart-icon .fa-shopping-cart {
	font-size: 34px
}

.inner-header .nav-right li.cart-icon a span {
	position: absolute;
	right: -12px;
	top: -4px;
	height: 23px;
	width: 23px;
	/*background: rgb(46,214,225);
	background: linear-gradient(180deg, rgba(46,214,225,1) 0%, rgba(70,160,212,1) 50%, rgba(130,31,184,1) 100%);*/
	background: #1088ba;
	color: #ffffff;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	line-height: 22px;
}

.inner-header .nav-right li.cart-icon .cart-hover {
	position: absolute;
	right: -70px;
	top: 100px;
	width: 350px;
	background: #ffffff;
	z-index: 99;
	text-align: left;
	padding: 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
	box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table {
	width: 100%;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td {
	padding-bottom: 20px;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td.si-pic img {
	border: 1px solid #ebebeb;
	max-width: 75px
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td.si-text {
	padding-left: 18px;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td.si-text .product-selected p {
	color: #1088ba;
	line-height: 30px;
	margin-bottom: 7px;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td.si-text .product-selected h6 {
	color: #232530;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td.si-close {
	color: #252525;
	font-size: 16px;
	cursor: pointer;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-total {
	overflow: hidden;
	border-top: 1px solid #e5e5e5;
	padding-top: 26px;
	margin-bottom: 30px;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-total span {
	font-size: 14px;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	float: left;
	font-weight: 700
}

.inner-header .nav-right li.cart-icon .cart-hover .select-total h5 {
	color: #000;
	float: right;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-button .view-card {
	font-size: 12px;
	letter-spacing: 2px;
	display: block;
	text-align: center;
	background: #1088ba;
	color: #ffffff;
	padding: 15px 30px 12px;
	margin-bottom: 10px;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-button .checkout-btn {
	font-size: 12px;
	letter-spacing: 2px;
	display: block;
	text-align: center;
	color: #ffffff;
	padding: 15px 30px 12px;
}

.inner-header .nav-right li.cart-price {
	font-size: 18px;
	font-weight: 700;
	color: #252525;
}

.nav-item {
	background: transparent;;
	/*background: rgb(0,212,255);
background: linear-gradient(90deg, rgba(0,212,255,1) 0%, rgba(9,136,213,1) 38%, rgba(0,67,124,1) 100%);*/
	/*background: rgb(0,212,255);
background: linear-gradient(90deg, rgba(0,212,255,1) 0%, rgba(9,136,213,1) 41%, rgba(22,52,134,1) 100%);*/
	/*background: rgb(70,160,212);
background: linear-gradient(90deg, rgba(70,160,212,1) 0%, rgba(91,117,204,1) 17%, rgba(130,31,184,1) 100%);*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 1000000
}

.nav-item .nav-depart {
	float: left;
}

.nav-item .nav-depart .depart-btn {
	background: transparent;
	color: #ffffff;
	padding: 14px 84px 14px 18px;
	cursor: pointer;
	position: relative;
}

.nav-item .nav-depart .depart-btn:hover .depart-hover {
	top: 52px;
	opacity: 1;
	visibility: visible;
	z-index: 99;
}

.nav-item .nav-depart .depart-btn:before {
	position: absolute;
	color: #ffffff;
	right: 20px;
	top: 13px;
	content: "";
	font-family: FontAwesome;
	font-size: 18px;
}

.nav-item .nav-depart .depart-btn i {
	color: #ffffff;
	font-size: 16px;
}

.nav-item .nav-depart .depart-btn span {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	margin-left: 16px;
}

.nav-item .nav-depart .depart-btn .depart-hover {
	position: absolute;
	width: 100%;
	background: #fff;
	left: 0;
	top: 62px;
	opacity: 0;
	visibility: hidden;
	padding-bottom: 29px;
	-webkit-box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
	box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-item .nav-depart .depart-btn .depart-hover li {
	list-style: none;
}

.nav-item .nav-depart .depart-btn .depart-hover li.active a {
	color: #1088ba;
}

.nav-item .nav-depart .depart-btn .depart-hover li a {
	display: block;
	font-size: 16px;
	color: #000000;
	padding-left: 40px;
	padding-top: 16px;
	padding-right: 30px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-item .nav-depart .depart-btn .depart-hover li a:hover {
	color: #1088ba;
}

.nav-item .nav-menu {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	position: relative;
	float: right
}

.nav-item .nav-menu li {
	list-style: none;
	display: inline-block;
	margin-left: -5px;
	position: relative;
}

.nav-item .nav-menu li.active a {
	background: #1088ba;
}

.nav-item .nav-menu li a {
	font-size: 13px;
	font-weight: 600!important;
	display: block;
	color: #202020;
	/*border-right: 2px solid #3b3b3b;*/
	text-transform: uppercase;
	padding: 12px 20px 15px!important;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-item .nav-menu li:hover>a {
	background: #1088ba;
	color: #FFF;
}

.nav-item .nav-menu li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	top: 52px;
}

.nav-item .nav-menu li .dropdown {
	position: absolute;
	right: 0;
	top: 82px;
	width: 220px;
	z-index: 99;
	background: #4cc0ed;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-item .nav-menu li .dropdown li {
	display: block;
	margin-left: 0;
}

.nav-item .nav-menu li .dropdown li:hover>a {
	background: transparent;
	color: #FFF;
}

.nav-item .nav-menu li .dropdown li a {
	border-right: 0;
	padding: 13px 20px 12px 30px;
	text-transform: capitalize;
}

.slicknav_menu {
	display: none;
}

/*---------------------
  Hero Section
-----------------------*/

.hero-section{
	height: 520px;	
}


.hero-items .single-hero-items {
	height: 700px;
	position: relative;
}

.hero-items .single-hero-items span {
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 28px;
	display: inline-block;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-items .single-hero-items h1,
.hero-items .single-hero-items h2 {
	color: #202020;
	font-size: 65px;	
	font-weight: 200;
	margin-bottom: 16px;
	position: relative;	
	top: 50px;
	opacity: 0;
}

.hero-items .single-hero-items p {
	color: #202020;
	font-size: 20px;
	margin-bottom: 42px;
	position: relative;
	font-weight: 400;
	top: 100px;
	opacity: 0;
}

.hero-items .single-hero-items .primary-btn {
	position: relative;
	top: 100px;
	opacity: 0;
}

.hero-items .off-card {
	height: 154px;
	width: 154px;
	padding-top: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 140px;
	position: absolute;
	left: 47%;
	top: 160px;
	background: #e7ab3c;
	z-index: 1;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
}

.hero-items .off-card:after {
	position: absolute;
	left: 5px;
	top: 5px;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 2px dashed #ffffff;
	content: "";
	border-radius: 50%;
	z-index: -1;
}

.hero-items .off-card h2 {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
}

.hero-items .off-card h2 span {
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	margin-top: 6px;
}

.hero-items .owl-item.active .single-hero-items span,
.hero-items .owl-item.active .single-hero-items h1,
.hero-items .owl-item.active .single-hero-items h2,
.hero-items .owl-item.active .single-hero-items p,
.hero-items .owl-item.active .single-hero-items .primary-btn {
	top: 0;
	opacity: 1;
}

.hero-items .owl-item.active .single-hero-items span {
	-webkit-transition: all 0.2s ease 0.2s;
	-o-transition: all 0.2s ease 0.2s;
	transition: all 0.2s ease 0.2s;
}

.hero-items .owl-item.active .single-hero-items h1,
.hero-items .owl-item.active .single-hero-items h2 {
	-webkit-transition: all 0.4s ease 0.4s;
	-o-transition: all 0.4s ease 0.4s;
	transition: all 0.4s ease 0.4s;
}

.hero-items .owl-item.active .single-hero-items p {
	-webkit-transition: all 0.6s ease 0.6s;
	-o-transition: all 0.6s ease 0.6s;
	transition: all 0.6s ease 0.6s;
}

.hero-items .owl-item.active .single-hero-items .primary-btn {
	-webkit-transition: all 0.8s ease 0.8s;
	-o-transition: all 0.8s ease 0.8s;
	transition: all 0.8s ease 0.8s;
}

.hero-items .owl-item.active .single-hero-items .off-card {
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 1s ease 1s;
	-o-transition: all 1s ease 1s;
	transition: all 1s ease 1s;
}

.hero-items .owl-nav button[type=button] {
	font-size: 30px;
	position: absolute;
	left: 40px;
	top: 45%;
	color: #000!important;
}

.hero-items .owl-nav button[type=button]:hover {
	color: #dfad51;
}

.hero-items .owl-nav button[type=button].owl-next {
	left: auto;
	right: 40px;
}

/*---------------------
  Banner Section
-----------------------*/

.banner-section {
	padding: 80px 50px;
}

.single-banner {
	position: relative;
	z-index: 1;
}

.single-banner:hover::before {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

/*.single-banner::before {
	position: absolute;
	left: 35px;
	top: 30px;
	border: 13px solid #ffffff;
	content: "";
	opacity: 0.3;
	width: calc(100% - 70px);
	height: calc(100% - 60px);
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}*/

.single-banner img {
	min-width: 100%;
}

.single-banner .inner-text {
	position: absolute;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}

.single-banner .inner-text h4 {
	color: #000;
	font-weight: 400;
	padding: 20px 28px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 0px;
	width: 90%;
	height: 90%;
	/*font-size: 30px*/
}
.single-banner .inner-text h4:hover {
	color: transparent;
	background: transparent;
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}

/*---------------------
  Women Banner Section
-----------------------*/

.categories-banner {
	padding-right: 65px;
	padding-left: 65px;
	padding-top: 90px;
	padding-bottom: 70px;
}

.product-large {
	height: 290px;
	margin-left: -15px;
	margin-right: -15px;
	text-align: center;
	padding-top: 45px;
}

.product-large h2 {
	color: #000;
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 18px;
}

.product-large a {
	color: #000;
	font-size: 18px;
	font-weight: 500;
	display: inline-block;
	position: relative;
}

.product-large a:before {
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #ffffff;
	content: "";
}

.filter-control {
	text-align: center;
	margin-bottom: 45px;
	padding-top: 32px;
}

.filter-control ul li {
	list-style: none;
	display: inline-block;
	font-size: 20px;
	color: #b2b2b2;
	margin-right: 22px;
	position: relative;
	cursor: pointer;
}

.filter-control ul li.active {
	color: #171717;
}

.filter-control ul li.active:before {
	opacity: 1;
}

.filter-control ul li:before {
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 2px;
	background: #171717;
	content: "";
	opacity: 0;
}

.filter-control ul li:last-child {
	margin-right: 0;
}

.product-slider .owl-nav button[type=button] {
	font-size: 30px;
	position: absolute;
	left: -62px;
	top: 25%;
	color: #171717;
	opacity: 0.3;
}

.product-slider .owl-nav button[type=button].owl-next {
	left: auto;
	right: -62px;
	color: #171717;
	opacity: 1;
}

.product-slider .owl-dots {
	text-align: center;
	margin-top: 27px;
}

.product-slider .owl-dots button {
	width: 6px;
	height: 6px;
	background: #D8D9DA;
	border-radius: 50%;
	margin-right: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.product-slider .owl-dots button:last-child {
	margin-right: 0;
}

.product-slider .owl-dots button.active {
	width: 30px;
	background: #252525;
	border-radius: 50px;
}

.product-item {
	margin-bottom: 86px;
}

.product-item:hover .pi-pic .icon {
	top: 15px;
	opacity: 1;
}

.product-item:hover .pi-pic ul {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	bottom: 45%;
}

.product-item:hover .pi-pic img {
	opacity:0.3;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
} 

.product-item .pi-pic {
	overflow: hidden;
	position: relative;
}

.product-item .pi-pic img {
	min-width: 100%;
}

.product-item .pi-pic .sale {
	color: #ffffff;
	font-size: 10px;
	background: #76BC42;
	position: absolute;
	left: 0;
	top: 20px;
	padding: 5px 10px;
	text-transform: uppercase;
}

.product-item .pi-pic .sale.pp-sale {
	background: #e7ab3c;
}

.product-item .pi-pic .icon {
	font-size: 20px;
	color: #252525;
	position: absolute;
	right: 21px;
	top: -15px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.product-item .pi-pic ul {
	position: absolute;
	left: 0;
	bottom: -52px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	width: 100%;
}

.product-item .pi-pic ul li {
	list-style: none;
	display: inline-block;
	background: #ffffff;
}

.product-item .pi-pic ul li.w-icon.active a {
	background: rgb(46,214,225);
background: linear-gradient(90deg, rgba(46,214,225,1) 0%, rgba(70,160,212,1) 33%, rgba(130,31,184,1) 100%);
	color: #ffffff;
}

.product-item .pi-pic ul li a {
	font-size: 16px;
	font-weight: 700;
	color: #252525;
	display: block;
	padding: 12px 18px 12px 19px;
}

.product-item .pi-text {
	text-align: center;
	padding-top: 26px;
}

.product-item .pi-text .catagory-name {
	font-size: 10px;
	color: #b2b2b2;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.product-item .pi-text a {
	display: block;
}

.product-item .pi-text a h5 {
	color: #252525;
	font-size: 24px;
}

.product-item .pi-text .product-price {
	color: #212121;
	font-size: 20px;
	font-weight: 700;
	margin-top: 10px
}

.product-item .pi-text .product-price span {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	text-decoration: line-through;
}

/*---------------------
  Deal Of The Week
-----------------------*/

.deal-of-week {
	padding-top: 80px;
	padding-bottom: 80px;
	margin-left: 65px;
	margin-right: 65px;
}

.countdown-timer {
	text-align: center;
	margin-bottom: 50px;
}

.countdown-timer .cd-item {
	display: inline-block;
	background: #ffffff;
	margin-right: 35px;
	padding: 10px 14px;
	border-radius: 5px;
}

.countdown-timer .cd-item:last-child {
	margin-right: 0;
}

.countdown-timer .cd-item span {
	color: #e7ab3c;
	font-weight: 700;
	line-height: 40px;
	font-size: 36px;
}

.countdown-timer .cd-item p {
	font-size: 16px;
	color: #b2b2b2;
	margin-bottom: 0;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

/*---------------------
  Man Banner
-----------------------*/

.man-banner {
	padding-right: 65px;
	padding-left: 65px;
	padding-top: 80px;
	padding-bottom: 80px;
}

/*---------------------
  Instagram Photo
-----------------------*/

.instagram-photo {
	overflow: hidden;
}

.instagram-photo .insta-item {
	float: left;
	width: 16.66%;
	height: 320px;
	text-align: center;
	position: relative;
}

.instagram-photo .insta-item:hover:before {
	opacity: 1;
}

.instagram-photo .insta-item:hover .inside-text {
	opacity: 1;
	visibility: visible;
	z-index: 99;
}

.instagram-photo .insta-item:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	content: "";
	opacity: 0;
	-webkit-transition: all 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.instagram-photo .insta-item .inside-text {
	padding-top: 130px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	-webkit-transition: all 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.instagram-photo .insta-item .inside-text i {
	font-size: 30px;
	color: #ffffff;
}

.instagram-photo .insta-item .inside-text h5 {
	margin-top: 14px;
}

.instagram-photo .insta-item .inside-text h5 a {
	color: #ffffff;
}

/*---------------------
  Latest Blog
-----------------------*/

.latest-blog {
	padding-top: 72px;
	padding-bottom: 80px;
}

.latest-blog .section-title {
	margin-bottom: 55px;
}

.single-latest-blog {
	margin-bottom: 25px;
}

.single-latest-blog img {
	min-width: 100%;
}

.single-latest-blog .latest-text {
	padding-top: 25px;
}

.single-latest-blog .latest-text .tag-list {
	margin-bottom: 8px;
}

.single-latest-blog .latest-text .tag-list .tag-item {
	font-size: 16px;
	color: #a2a1a1;
	display: inline-block;
	margin-right: 15px;
}

.single-latest-blog .latest-text .tag-list .tag-item i {
	color: #e7ab3c;
}

.single-latest-blog .latest-text a {
	display: block;
}

.single-latest-blog .latest-text a h4 {
	color: #252525;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 16px;
}

.benefit-items {
	border: 1px solid #ebebeb;
	margin-top: 45px;
}

.benefit-items .single-benefit {
	padding-top: 30px;
	padding-bottom: 25px;
	padding-left: 55px;
	padding-right: 55px;
	border-right: 1px solid #F3F4F0;
}

.benefit-items .single-benefit .sb-icon {
	float: left;
	margin-right: 20px;
}

.benefit-items .single-benefit .sb-text {
	display: table;
}

.benefit-items .single-benefit .sb-text h6 {
	color: #252525;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

.benefit-items .single-benefit .sb-text p {
	margin-bottom: 0;
	color: #252525;
	line-height: 20px;
}

/*---------------------
  Partner Logo
-----------------------*/

.partner-logo {
	background: #303030;
	padding: 38px 0;
}

.logo-carousel .logo-item {
	display: table;
}

.logo-carousel .logo-item .tablecell-inner {
	display: table-cell;
	height: 45px;
	vertical-align: middle;
}

.owl-carousel .owl-item img {
	display: block;
	width: auto;
}

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

.footer-section {
	background: #161616;
	padding-top: 75px;
	color:#FFF;
}

.footer-section .footer-company a{
	color:#FFF;
}

.footer-section ul{
	margin: 0;
	padding: 0;
}

.footer-left {
	margin-bottom: 30px;
}

.footer-left .footer-logo {
	margin-bottom: 14px;
}

.footer-left .footer-logo a {
	display: inline-block;
}
.footer-section .footer-logo img {
	max-height: 115px!important
}

.footer-left ul li {
	list-style: none;
	color: #b2b2b2;
	font-size: 16px;
	line-height: 30px;
}

.footer-left .footer-social {
	padding-top: 25px;
}

.footer-left .footer-social a {
	display: inline-block;
	height: 40px;
	width: 40px;
	background: #fff;
	color: #1088ba;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	margin-right: 7px;
	position: relative;
	z-index: 1;
}

.footer-left .footer-social a:hover {
	background: #1088ba;
	color: #fff;
}

.footer-left .footer-social a:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #1088ba;
	content: "";
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	z-index: -1;
}

.footer-widget {
	margin-bottom: 30px;
}

.footer-widget h5 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 26px;
}

.footer-widget ul li {
	list-style: none;
}

.footer-widget ul li a {
	line-height: 36px;
	font-size: 16px;
	color: #fff;
}

.newslatter-item h5 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 30px;
}

.newslatter-item p {
	color: #fff;
	line-height: 26px;
}

.newslatter-item .subscribe-form {
	position: relative;
}

.newslatter-item .subscribe-form input {
	color: #b2b2b2;
	background: #303030;
	width: 100%;
	height: 46px;
	font-size: 16px;
	border: none;
	padding-left: 20px;
}

.newslatter-item .subscribe-form input::-webkit-input-placeholder {
	color: #b2b2b2;
}

.newslatter-item .subscribe-form input::-moz-placeholder {
	color: #b2b2b2;
}

.newslatter-item .subscribe-form input:-ms-input-placeholder {
	color: #b2b2b2;
}

.newslatter-item .subscribe-form input::-ms-input-placeholder {
	color: #b2b2b2;
}

.newslatter-item .subscribe-form input::placeholder {
	color: #b2b2b2;
}

.newslatter-item .subscribe-form button {
	display: inline-block;
	color: #ffffff;
	background: #e7ab3c;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	border: 1px solid #e7ab3c;
	position: absolute;
	right: 0;
	top: 0;
	padding: 13px 20px 12px;
	cursor: pointer;
}

.copyright-reserved {
	border-top: 1px solid #fff;
	padding: 15px 0;
	margin-top: 35px;
	
}

.copyright-reserved .copyright-text {
	font-size: 16px;
	color: #fff;
	margin-top: 32px
	margin-bottom: 32px;
	text-align: center;
}

.copyright-reserved .copyright-text a {
	color: #fff;
}

.copyright-reserved .copyright-text i {
	color: #fff;
}

.copyright-reserved .copyright-text a:hover {
	color: #fff;
}

.copyright-reserved .payment-pic {
	float: right;
}

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

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-text {
	border-bottom: 1px solid #ebebeb;
	border-top: 1px solid #ebebeb;
	padding: 15px 0;
}

.breadcrumb-text.product-more a:nth-child(1):after {
	color: #252525;
}

.breadcrumb-text a {
	display: inline-block;
	font-size: 16px;
	color: #252525;
	margin-right: 28px;
	position: relative;
}

.breadcrumb-text a:after {
	position: absolute;
	right: -18px;
	top: 0px;
	content: "";
	font-family: "FontAwesome";
	font-size: 16px;
	color: #b2b2b2;
}

.breadcrumb-text span {
	display: inline-block;
	color: #b2b2b2;
}

/*---------------------
  Product Shop
-----------------------*/

.product-shop {
	padding-top: 60px;
	padding-bottom: 80px;
}

.filter-widget {
	margin-bottom: 45px;
}

.filter-widget .fw-title {
	color: #252525;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 26px;
}

.filter-widget .filter-catagories li {
	list-style: none;
}

.filter-widget .filter-catagories li a {
	display: inline-block;
	color: #636363;
	font-size: 16px;
	line-height: 39px;
}

.filter-widget .fw-brand-check .bc-item {
	margin-bottom: 3px;
}

.filter-widget .fw-brand-check .bc-item label {
	position: relative;
	cursor: pointer;
	padding-left: 28px;
}

.filter-widget .fw-brand-check .bc-item label input {
	position: absolute;
	visibility: hidden;
}

.filter-widget .fw-brand-check .bc-item label input:checked~span {
	background: #e7ab3c;
	border-color: #e7ab3c;
}

.filter-widget .fw-brand-check .bc-item label .checkmark {
	position: absolute;
	left: 0;
	top: 5px;
	height: 15px;
	width: 15px;
	border: 2px solid #ebebeb;
	border-radius: 2px;
}

.filter-widget .fw-brand-check .bc-item label .checkmark:after {
	left: 0;
	top: 0;
	width: 10px;
	height: 8px;
	border: solid white;
	border-width: 3px 3px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}

.filter-widget .filter-range-wrap {
	margin-bottom: 40px;
}

.filter-widget .filter-range-wrap .range-slider {
	margin-bottom: 25px;
}

.filter-widget .filter-range-wrap .range-slider .price-input {
	position: relative;
}

.filter-widget .filter-range-wrap .range-slider .price-input:after {
	position: absolute;
	left: 58px;
	top: 13px;
	height: 1px;
	width: 17px;
	background: #ebebeb;
	content: "";
}

.filter-widget .filter-range-wrap .range-slider .price-input input {
	font-size: 16px;
	color: #252525;
	max-width: 20%;
	text-align: center;
	border: 1px solid #ebebeb;
	border-radius: 2px;
}

.filter-widget .filter-range-wrap .range-slider .price-input input:nth-child(1) {
	margin-right: 28px;
}

.filter-widget .filter-range-wrap .price-range {
	border-radius: 0;
}

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

.filter-widget .filter-range-wrap .price-range.ui-widget-content .ui-slider-handle {
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #ffffff;
	border: none;
	-webkit-box-shadow: 1px 6px 14px -4px #425c6d;
	box-shadow: 1px 6px 14px -4px #425c6d;
	outline: none;
}

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

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

.filter-widget .filter-btn {
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
	background: #1088ba;
	/*background: rgb(46,214,225);
background: linear-gradient(90deg, rgba(46,214,225,1) 0%, rgba(70,160,212,1) 33%, rgba(130,31,184,1) 100%);*/
	padding: 9px 26px 7px;
	border-radius: 0px;
	display: inline-block;
	text-transform: uppercase;
}

.filter-widget .fw-color-choose .cs-item {
	width: 50%;
	float: left;
	margin-bottom: 4px;
}

.filter-widget .fw-color-choose .cs-item input {
	position: absolute;
	visibility: hidden;
}

.filter-widget .fw-color-choose .cs-item label {
	cursor: pointer;
	position: relative;
	padding-left: 33px;
	font-size: 16px;
	color: #636363;
}

.filter-widget .fw-color-choose .cs-item label.cs-violet:before {
	background: #8230E3;
}

.filter-widget .fw-color-choose .cs-item label.cs-blue:before {
	background: #2773BE;
}

.filter-widget .fw-color-choose .cs-item label.cs-yellow:before {
	background: #EEEE21;
}

.filter-widget .fw-color-choose .cs-item label.cs-red:before {
	background: #DC3232;
}

.filter-widget .fw-color-choose .cs-item label.cs-green:before {
	background: #81D742;
}

.filter-widget .fw-color-choose .cs-item label:before {
	position: absolute;
	left: 0;
	top: 4px;
	height: 18px;
	width: 18px;
	background: #252525;
	border-radius: 50%;
	content: "";
}

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

.filter-widget .fw-size-choose .sc-item:last-child {
	margin-right: 0;
}

.filter-widget .fw-size-choose .sc-item input {
	position: absolute;
	visibility: hidden;
}

.filter-widget .fw-size-choose .sc-item label {
	font-size: 16px;
	color: #252525;
	font-weight: 700;
	height: 40px;
	width: 47px;
	border: 1px solid #ebebeb;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	cursor: pointer;
}

.filter-widget .fw-size-choose .sc-item label.active {
	background: #252525;
	color: #ffffff;
}

.filter-widget .fw-tags a {
	display: inline-block;
	font-size: 16px;
	color: #636363;
	padding: 5px 15px;
	border: 1px solid #ebebeb;
	margin-right: 5px;
	margin-bottom: 9px;
	border-radius: 2px;
}

.checkmark:after {
	position: absolute;
	content: "";
}

.product-show-option {
	margin-bottom: 30px;
}

.product-show-option .select-option {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.product-show-option .select-option .nice-select {
	border-radius: 0;
	border: 1px solid #ECEDEE;
	height: 40px;
	line-height: 35px;
}

.product-show-option .select-option .nice-select .list {
	margin-top: 0;
	border-radius: 0;
	width: 100%;
}

.product-show-option .select-option .nice-select:after {
	border-bottom: 2px solid #4c4c4c;
	border-right: 2px solid #4c4c4c;
	height: 7px;
	right: 22px;
	top: 47%;
	width: 7px;
	opacity: 0.7;
}

.product-show-option .select-option .nice-select span {
	font-size: 16px;
	color: #4c4c4c;
}

.product-show-option .select-option .sorting {
	margin-right: 20px;
}

.product-show-option .select-option .sorting.nice-select {
	padding-right: 70px;
}

.product-show-option .select-option .p-show.nice-select {
	padding-right: 105px;
}

.product-show-option .select-option .p-show.nice-select:before {
	position: absolute;
	right: 48px;
	top: 0;
	content: "09";
	font-size: 16px;
	color: #252525;
}

.product-show-option p {
	margin-bottom: 0;
	color: #000;
	line-height: 39px;
	font-size: 15px
}

.prduct-list .product-item {
	margin-bottom: 25px;
}

.loading-more {
	text-align: center;
	padding-top: 10px;
}

.loading-more i {
	font-size: 22px;
	color: #663333;
	margin-right: 6px;
	position: relative;
	top: 7px;
}

.loading-more a {
	font-size: 18px;
	font-weight: 700;
	color: #252525;
	position: relative;
	display: inline-block;
}

.loading-more a:before {
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #e7ab3c;
	content: "";
}

/*---------------------
  Product Details
-----------------------*/

.product-shop.page-details {
	padding-bottom: 60px;
}

.product-pic-zoom {
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
}

.product-pic-zoom img {
	min-width: 100%;
}

.product-pic-zoom .zoom-icon {
	position: absolute;
	right: 20px;
	top: 20px;
}

.product-pic-zoom .zoom-icon i {
	color: #4c4c4c;
	font-size: 14px;
	width: 40px;
	height: 40px;
	border: 1px solid #d7d7d7;
	text-align: center;
	border-radius: 50%;
	line-height: 37px;
}

.product-thumbs .pt {
	cursor: pointer;
	position: relative;
}

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

.ps-slider .owl-nav button[type=button] {
	height: 30px;
	width: 30px;
	background: #ffffff;
	color: #a7a7a7;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	font-size: 20px;
	-webkit-box-shadow: 0px 6px 10px -1px #e9e9e9;
	box-shadow: 0px 6px 10px -1px #e9e9e9;
	position: absolute;
	left: -16px;
	top: 50%;
	-webkit-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	transform: translateY(-15px);
}

.ps-slider .owl-nav button[type=button].owl-next {
	left: auto;
	right: -16px;
}

.product-details .pd-title {
	position: relative;
	margin-bottom: 6px;
}

.product-details .pd-title span {
	display: block;
	font-size: 12px;
	color: #b2b2b2;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	line-height: 23px;
}

.product-details .pd-title h3 {
	color: #252525;
	font-weight: 700;
}

.product-details .pd-title .heart-icon {
	color: #252525;
	font-size: 18px;
	position: absolute;
	right: 0;
	top: 0;
}

.product-details .pd-rating {
	margin-bottom: 10px;
}

.product-details .pd-rating i {
	font-size: 12px;
	display: inline-block;
	color: #FAC451;
	margin-right: -3px;
}

.product-details .pd-rating span {
	font-size: 12px;
	color: #999591;
}

.product-details .pd-desc {
	margin-bottom: 24px;
}

.product-details .pd-desc p {
	color: #636363;
}

.product-details .pd-desc h4 {
	color: #212121;
	font-weight: 700;
	font-size: 28px
}

.product-details .pd-desc h4 span {
	font-size: 18px;
	font-weight: 400;
	color: #b7b7b7;
	text-decoration: line-through;
	display: inline-block;
	margin-left: 13px;
}

.product-details .pd-color {
	margin-bottom: 25px;
}

.product-details .pd-color h6 {
	color: #252525;
	font-weight: 700;
	float: left;
	margin-right: 28px;
}

.product-details .pd-color .pd-color-choose {
	display: inline-block;
}

.product-details .pd-color .pd-color-choose .cc-item {
	display: inline-block;
	margin-right: 10px;
}

.product-details .pd-color .pd-color-choose .cc-item input {
	position: absolute;
	visibility: hidden;
}

.product-details .pd-color .pd-color-choose .cc-item label {
	height: 20px;
	width: 20px;
	background: #252525;
	border-radius: 50%;
	cursor: pointer;
	margin-bottom: 0;
}

.product-details .pd-color .pd-color-choose .cc-item label.cc-yellow {
	background: #EEEE21;
}

.product-details .pd-color .pd-color-choose .cc-item label.cc-violet {
	background: #8230E3;
}

.product-details .pd-size-choose {
	margin-bottom: 30px;
}

.product-details .pd-size-choose .sc-item {
	display: inline-block;
	margin-right: 5px;
}

.product-details .pd-size-choose .sc-item:last-child {
	margin-right: 0;
}

.product-details .pd-size-choose .sc-item input {
	position: absolute;
	visibility: hidden;
}

.product-details .pd-size-choose .sc-item label {
	font-size: 16px;
	color: #252525;
	font-weight: 700;
	height: 40px;
	width: 47px;
	border: 1px solid #ebebeb;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	cursor: pointer;
}

.product-details .pd-size-choose .sc-item label.active {
	background: #252525;
	color: #ffffff;
}

.product-details .quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 33px;
}

.product-details .quantity .pro-qty {
	width: 123px;
	height: 46px;
	border: 2px solid #ebebeb;
	padding: 0 15px;
	float: left;
	margin-right: 14px;
}

.product-details .quantity .pro-qty .qtybtn {
	font-size: 24px;
	color: #b2b2b2;
	float: left;
	line-height: 38px;
	cursor: pointer;
	width: 18px;
}

.product-details .quantity .pro-qty .qtybtn.dec {
	font-size: 30px;
}

.product-details .quantity .pro-qty input {
	text-align: center;
	width: 52px;
	font-size: 14px;
	font-weight: 700;
	border: none;
	color: #4c4c4c;
	line-height: 40px;
	float: left;
}

.product-details .quantity .primary-btn.pd-cart {
	padding: 14px 70px 10px;
}

.product-details .pd-tags {
	margin-bottom: 27px;
}

.product-details .pd-tags li {
	list-style: none;
	font-size: 16px;
	color: #636363;
	line-height: 30px;
}

.product-details .pd-tags li span {
	color: #252525;
	font-weight: 700;
	text-transform: uppercase;
}

.product-details .pd-share {
	overflow: hidden;
}

.product-details .pd-share .p-code {
	font-size: 16px;
	color: #252525;
	float: left;
}

.product-details .pd-share .pd-social {
	float: right;
}

.product-details .pd-share .pd-social a {
	display: inline-block;
	color: #252525;
	font-size: 22px;
	margin-left: 15px;
}

.product-tab {
	padding-top: 60px;
}
.tab-item ul  {
	border-bottom: 1px solid #ebebeb;
}
.tab-item ul li:nth-child(1) a {
	border-right: 1px solid #ebebeb;
}

.tab-item ul li:nth-child(2) a {
	border-right: 1px solid #ebebeb;
}

.tab-item ul li:nth-child(3) a {
	border-right: 1px solid #ebebeb;
}

.tab-item ul li a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	color: #b2b2b2;
	text-transform: uppercase;
	padding: 18px 61px;
	position: relative;
	border-top: 1px solid #ebebeb;
	border-left: 1px solid #ebebeb;
}

.tab-item ul li a.active {
	color: #252525;
}

.tab-item ul li a.active:before {
	opacity: 1;
}

.tab-item ul li a::before {
	position: absolute;
	left: 0;
	top: -1px;
	width: 100%;
	height: 0px;
	background: #1088ba;
	content: "";
	opacity: 0;
}

.product-content {
	padding-top: 40px;
}

.product-content h5 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 23px;
}

.product-content p {
	margin-bottom: 34px;
}

.product-content img {
	min-width: 100%;
}

.specification-table {
	padding-top: 52px;
}

.specification-table table {
	width: 100%;
}

.specification-table table tr td {
	border: 1px solid #EFF0F2;
	text-align: center;
	padding-top: 18px;
	padding-bottom: 18px;
}

.specification-table table tr td.p-catagory {
	width: 310px;
	text-align: left;
	padding-left: 34px;
	font-size: 16px;
	color: #4c4c4c;
	font-weight: 700;
	text-transform: uppercase;
}

.specification-table table tr td .pd-rating i {
	font-size: 12px;
	display: inline-block;
	color: #FAC451;
	margin-right: -3px;
}

.specification-table table tr td .pd-rating span {
	font-size: 12px;
	color: #999591;
}

.specification-table table tr td .p-price {
	color: #1088ba;
	font-size: 16px;
	font-weight: 700;
}

.specification-table table tr td .text-add {
	font-size: 16px;
	color: #252525;
	font-weight: 100;
	text-align: left;
	padding: 0 15px
}

.specification-table table tr td .p-stock,
.specification-table table tr td .p-size,
.specification-table table tr td .p-code {
	font-size: 16px;
	color: #4c4c4c;
	font-weight: 700;
}

.specification-table table tr td .p-weight {
	font-size: 14px;
	color: #4c4c4c;
	font-weight: 700;
}

.specification-table table tr td .p-size {
	text-transform: uppercase;
}

.specification-table table tr td .cs-color {
	display: inline-block;
	height: 20px;
	width: 20px;
	background: #252525;
	border-radius: 50%;
}

.customer-review-option {
	padding-top: 55px;
}

.customer-review-option h4 {
	color: #292f3b;
	font-weight: 700;
	margin-bottom: 35px;
}

.customer-review-option .comment-option .co-item {
	margin-bottom: 20px;
}

.customer-review-option .comment-option .co-item .avatar-pic {
	float: left;
	margin-right: 20px;
}

.customer-review-option .comment-option .co-item .avatar-pic img {
	height: 63px;
	width: 63px;
	border-radius: 50%;
}

.customer-review-option .comment-option .co-item .avatar-text {
	display: table;
}

.customer-review-option .comment-option .co-item .avatar-text .at-rating {
	line-height: 9px;
}

.customer-review-option .comment-option .co-item .avatar-text .at-rating i {
	font-size: 12px;
	display: inline-block;
	color: #FAC451;
	margin-right: -3px;
}

.customer-review-option .comment-option .co-item .avatar-text h5 {
	color: #252525;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 10px;
}

.customer-review-option .comment-option .co-item .avatar-text h5 span {
	color: #b2b2b2;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-left: 22px;
	position: relative;
}

.customer-review-option .comment-option .co-item .avatar-text h5 span:before {
	position: absolute;
	left: -18px;
	top: -5px;
	content: "-";
	font-size: 18px;
	color: #b2b2b2;
}

.customer-review-option .comment-option .co-item .avatar-text .at-reply {
	font-size: 14px;
	color: #636363;
}

.customer-review-option .personal-rating {
	margin-bottom: 50px;
	padding-top: 10px;
}

.customer-review-option .personal-rating h6 {
	color: #252525;
}

.customer-review-option .personal-rating .rating i {
	font-size: 12px;
	display: inline-block;
	color: #FAC451;
	margin-right: -3px;
}

.customer-review-option .leave-comment h4 {
	color: #292f3b;
	font-weight: 700;
	margin-bottom: 35px;
}

.customer-review-option .leave-comment .comment-form input {
	width: 100%;
	font-size: 16px;
	color: #636363;
	height: 50px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	margin-bottom: 30px;
}

.customer-review-option .leave-comment .comment-form textarea {
	width: 100%;
	resize: none;
	font-size: 16px;
	color: #636363;
	height: 116px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 45px;
}

/*---------------------
  Related Products
-----------------------*/

.related-products {
	padding-top: 0;
	padding-bottom: 50px;
}

.related-products .section-title {
	margin-bottom: 50px;
}

.related-products .section-title h2:before {
	display: none;
}

/*---------------------
  Shopping Cart
-----------------------*/

.shopping-cart {
	padding-top: 80px;
	padding-bottom: 60px;
}

.cart-table {
	margin-bottom: 40px;
}

.cart-table table {
	width: 100%;
	min-width: 480px;
	border: 1px solid #ebebeb;
}

.cart-table table tr th {
	font-size: 16px;
	color: #252525;
	font-weight: 700;
	border-bottom: 1px solid #ebebeb;
	text-align: center;
	padding: 18px 0 19px;
	text-transform: uppercase;
}

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

.cart-table table tr td {
	text-align: center;
	padding-bottom: 34px;
}

.cart-table table tr td.first-row {
	padding-top: 30px;
}

.cart-table table tr td.cart-pic {
	width: 21%;
}

.cart-table table tr td.cart-title {
	text-align: left;
}

.cart-table table tr td.cart-title h5 {
	color: #252525;
}

.cart-table table tr td.p-price {
	width: 16%;
}

.cart-table table tr td.p-price,
.cart-table table tr td.total-price {
	color: #1088ba;
	font-size: 16px;
	font-weight: 700;
}

.cart-table table tr td.qua-col {
	width: 16%;
}

.cart-table table tr td.qua-col .quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cart-table table tr td.qua-col .pro-qty {
	width: 123px;
	height: 46px;
	border: 2px solid #ebebeb;
	padding: 0 15px;
	float: left;
}

.cart-table table tr td.qua-col .pro-qty .qtybtn {
	font-size: 24px;
	color: #b2b2b2;
	float: left;
	line-height: 38px;
	cursor: pointer;
	width: 18px;
}

.cart-table table tr td.qua-col .pro-qty .qtybtn.dec {
	font-size: 30px;
}

.cart-table table tr td.qua-col .pro-qty input {
	text-align: center;
	width: 52px;
	font-size: 14px;
	font-weight: 700;
	border: none;
	color: #4c4c4c;
	line-height: 40px;
	float: left;
}

.cart-table table tr td.total-price {
	width: 12%;
}

.cart-table table tr td.close-td {
	font-size: 16px;
	color: #252525;
	width: 8%;
}

.cart-table table tr td.close-td i {
	cursor: pointer;
}

.cart-buttons {
	margin-bottom: 34px;
}

.cart-buttons .continue-shop {
	color: #b2b2b2;
	border: 2px solid #ebebeb;
	background: #ffffff;
	margin-right: 8px;
	padding: 12px 20px 12px 20px;
	margin-bottom: 10px;
}

.cart-buttons .up-cart {
	color: #252525;
	background: #f3f3f3;
	border: 2px solid #ebebeb;
	padding: 12px 20px 12px 20px;
}

.discount-coupon {
	margin-bottom: 30px;
}

.discount-coupon h6 {
	color: #232530;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.discount-coupon .coupon-form {
	position: relative;
}

.discount-coupon .coupon-form input {
	width: 100%;
	height: 46px;
	border: 2px solid #ebebeb;
	color: #b2b2b2;
	font-size: 14px;
	padding-left: 20px;
}

.discount-coupon .coupon-form .coupon-btn {
	position: absolute;
	right: 0;
	top: 0;
	color: #252525;
	background: transparent;
	border: 1px solid transparent;
	padding: 13px 25px 10px 35px;
}

.proceed-checkout ul {
	border: 2px solid #ebebeb;
	background: #f3f3f3;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 16px;
	padding-bottom: 20px;
}

.proceed-checkout ul li {
	list-style: none;
	font-size: 16px;
	font-weight: 700;
	color: #252525;
	text-transform: uppercase;
	overflow: hidden;
}

.proceed-checkout ul li.subtotal {
	font-weight: 400;
	text-transform: capitalize;
	border-bottom: 1px solid #ffffff;
	padding-bottom: 14px;
}

.proceed-checkout ul li.subtotal span {
	font-weight: 700;
}

.proceed-checkout ul li.cart-total {
	padding-top: 10px;
}

.proceed-checkout ul li.cart-total span {
	color: #e7ab3c;
}

.proceed-checkout ul li span {
	float: right;
}

.proceed-checkout .proceed-btn {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	background: #252525;
	text-transform: uppercase;
	padding: 15px 25px 14px 25px;
	display: block;
	text-align: center;
}

/*---------------------
  Check Out
-----------------------*/

.checkout-section {
	padding-top: 80px;
	padding-bottom: 80px;
}

.checkout-content {
	margin-bottom: 50px;
}

.checkout-content .content-btn,
.checkout-content input {
	color: #252525;
	font-size: 16px;
	border: 2px solid #ebebeb;
	padding: 14px 20px;
	background: #f3f3f3;
	text-align: center;
	display: block;
}

.checkout-content input {
	height: 56px !important;
}

.checkout-form h4 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 30px;
}

.checkout-form label {
	color: #252525;
	font-size: 16px;
	margin-bottom: 5px;
}

.checkout-form label span {
	color: #d85d5c;
}

.checkout-form input {
	width: 100%;
	height: 46px;
	border: 2px solid #ebebeb;
	margin-bottom: 25px;
	padding-left: 15px;
}

.checkout-form input.street-first {
	margin-bottom: 20px;
}

.checkout-form .create-item {
	padding-top: 15px;
}

.checkout-form .create-item label {
	position: relative;
	cursor: pointer;
	padding-left: 32px;
	margin-bottom: 0;
	font-size: 14px;
	color: #252525;
}

.checkout-form .create-item label input {
	position: absolute;
	visibility: hidden;
}

.checkout-form .create-item label input:checked~span {
	background: #e7ab3c;
	border-color: #e7ab3c;
}

.checkout-form .create-item label .checkmark {
	position: absolute;
	left: 0;
	top: 3px;
	height: 13px;
	width: 13px;
	border: 2px solid #B2B2B2;
	border-radius: 2px;
}

.checkout-form .create-item label .checkmark:after {
	left: 0;
	top: 0;
	width: 9px;
	height: 6px;
	border: solid #ffffff;
	border-width: 2px 2px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}

.checkout-form .place-order .order-total {
	border: 2px solid #ebebeb;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 22px;
	padding-bottom: 35px;
}

.checkout-form .place-order .order-total .order-table {
	margin-bottom: 64px;
}

.checkout-form .place-order .order-total .order-table li {
	list-style: none;
	color: #252525;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 5px;
	padding-top: 30px;
}

.checkout-form .place-order .order-total .order-table li:first-child {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 20px;
	padding-top: 0;
}

.checkout-form .place-order .order-total .order-table li.fw-normal {
	font-weight: 400;
	text-transform: capitalize;
}

.checkout-form .place-order .order-total .order-table li.fw-normal span {
	font-weight: 700;
}

.checkout-form .place-order .order-total .order-table li.total-price span {
	color: #e7ab3c;
}

.checkout-form .place-order .order-total .order-table li span {
	float: right;
}

.checkout-form .place-order .order-total .payment-check {
	margin-bottom: 50px;
}

.checkout-form .place-order .order-total .payment-check .pc-item label {
	position: relative;
	cursor: pointer;
	padding-left: 32px;
	margin-bottom: 0;
	font-size: 14px;
	color: #252525;
}

.checkout-form .place-order .order-total .payment-check .pc-item label input {
	position: absolute;
	visibility: hidden;
}

.checkout-form .place-order .order-total .payment-check .pc-item label input:checked~span {
	background: #e7ab3c;
	border-color: #e7ab3c;
}

.checkout-form .place-order .order-total .payment-check .pc-item label .checkmark {
	position: absolute;
	left: 0;
	top: 3px;
	height: 13px;
	width: 13px;
	border: 2px solid #B2B2B2;
	border-radius: 2px;
}

.checkout-form .place-order .order-total .payment-check .pc-item label .checkmark:after {
	left: 0;
	top: 0;
	width: 9px;
	height: 6px;
	border: solid #ffffff;
	border-width: 2px 2px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}

.checkout-form .place-order .order-total .order-btn {
	text-align: center;
}

.checkout-form .place-order .order-total .order-btn .place-btn {
	padding: 13px 40px 11px;
	background: #000000;
	border-color: #000000;
}

/*---------------------
  Blog Section
-----------------------*/

.blog-section {
	padding-top: 80px;
	padding-bottom: 80px;
}

.blog-section .loading-more {
	padding-top: 0;
}

.blog-sidebar .search-form {
	margin-bottom: 55px;
}

.blog-sidebar .search-form h4 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 12px;
}

.blog-sidebar .search-form form {
	position: relative;
}

.blog-sidebar .search-form form input {
	height: 46px;
	width: 100%;
	border: 2px solid #ECECEC;
	padding-left: 20px;
	font-size: 18px;
	color: #b2b2b2;
}

.blog-sidebar .search-form form button {
	position: absolute;
	right: 0;
	top: 0;
	color: #ffffff;
	background: #252525;
	border: 1px solid #252525;
	height: 46px;
	padding: 0 15px;
	cursor: pointer;
}

.blog-sidebar .blog-catagory {
	margin-bottom: 41px;
}

.blog-sidebar .blog-catagory h4 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 14px;
}

.blog-sidebar .blog-catagory ul li {
	list-style: none;
}

.blog-sidebar .blog-catagory ul li a {
	font-size: 16px;
	color: #636363;
	line-height: 39px;
}

.blog-sidebar .recent-post {
	margin-bottom: 55px;
}

.blog-sidebar .recent-post h4 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 28px;
}

.blog-sidebar .recent-post .recent-blog .rb-item {
	overflow: hidden;
	margin-bottom: 30px;
	display: block;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-pic {
	float: left;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-pic img {
	height: 80px;
	width: 80px;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-text {
	display: table;
	padding-left: 16px;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-text h6 {
	color: #252525;
	line-height: 24px;
	font-weight: 700;
	margin-bottom: 10px;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-text p {
	margin-bottom: 0;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #e7ab3c;
	letter-spacing: 2px;
	line-height: 20px;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-text p span {
	color: #b2b2b2;
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 0;
}

.blog-sidebar .blog-tags h4 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 20px;
}

.blog-sidebar .blog-tags .tag-item a {
	display: inline-block;
	font-size: 16px;
	color: #636363;
	padding: 5px 15px;
	border: 1px solid #ebebeb;
	margin-right: 5px;
	margin-bottom: 9px;
	border-radius: 2px;
}

.blog-item {
	margin-bottom: 42px;
}

.blog-item .bi-pic img {
	min-width: 100%;
}

.blog-item .bi-text {
	padding-top: 24px;
}

.blog-item .bi-text h4 {
	color: #252525;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 16px;
}

.blog-item .bi-text p {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #e7ab3c;
	letter-spacing: 2px;
	line-height: 20px;
}

.blog-item .bi-text p span {
	color: #b2b2b2;
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 0;
}

/*---------------------
  Blog Details
-----------------------*/

.blog-details {
	padding-top: 72px;
	padding-bottom: 80px;
}

.blog-details-inner .blog-detail-title {
	text-align: center;
	margin-bottom: 25px;
}

.blog-details-inner .blog-detail-title h2 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 15px;
}

.blog-details-inner .blog-detail-title p {
	margin-bottom: 0;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #e7ab3c;
	letter-spacing: 2px;
	line-height: 20px;
	display: inline-block;
	position: relative;
}

.blog-details-inner .blog-detail-title p:before {
	position: absolute;
	left: -175px;
	top: 8px;
	height: 1px;
	width: 125px;
	background: #ebebeb;
	content: "";
}

.blog-details-inner .blog-detail-title p:after {
	position: absolute;
	right: -175px;
	top: 7px;
	height: 1px;
	width: 125px;
	background: #ebebeb;
	content: "";
}

.blog-details-inner .blog-detail-title p span {
	color: #b2b2b2;
	font-size: 14px;
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 0;
}

.blog-details-inner .blog-large-pic img {
	min-width: 100%;
}

.blog-details-inner .blog-detail-desc {
	margin-top: 22px;
	margin-bottom: 32px;
}

.blog-details-inner .blog-detail-desc p {
	font-size: 18px;
	line-height: 30px;
}

.blog-details-inner .blog-detail-desc p:first-of-type:first-letter {
	float: left;
	font-size: 60px;
	text-transform: uppercase;
	color: #252525;
	margin-top: 14px;
	margin-right: 10px;
}

.blog-details-inner .blog-quote {
	margin-bottom: 65px;
}

.blog-details-inner .blog-quote p {
	position: relative;
	color: #252525;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	padding-left: 32px;
}

.blog-details-inner .blog-quote p span {
	color: #161715;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.blog-details-inner .blog-quote p:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 88px;
	width: 3px;
	background: #e7ab3c;
	content: "";
}

.blog-details-inner .blog-more {
	margin-bottom: 32px;
}

.blog-details-inner .blog-more img {
	min-width: 100%;
}

.blog-details-inner p {
	font-size: 18px;
	line-height: 30px;
}

.blog-details-inner .tag-share {
	overflow: hidden;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 54px;
	margin-top: 46px;
}

.blog-details-inner .tag-share .details-tag {
	float: left;
}

.blog-details-inner .tag-share .details-tag ul li {
	list-style: none;
	display: inline-block;
	color: #171717;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	margin-right: 16px;
}

.blog-details-inner .tag-share .details-tag ul li i {
	font-size: 18px;
	color: #e7ab3c;
}

.blog-details-inner .tag-share .blog-share {
	float: right;
}

.blog-details-inner .tag-share .blog-share .social-links {
	display: inline-block;
}

.blog-details-inner .tag-share .blog-share .social-links a {
	display: inline-block;
	color: #171717;
	margin-left: 25px;
}

.blog-details-inner .tag-share .blog-share span {
	font-size: 16px;
	color: #2d292f;
}

.blog-details-inner .blog-post {
	padding-top: 72px;
	margin-bottom: 58px;
}

.blog-details-inner .blog-post .prev-blog {
	display: block;
}

.blog-details-inner .blog-post .prev-blog .pb-pic {
	float: left;
	position: relative;
	margin-top: 7px;
}

.blog-details-inner .blog-post .prev-blog .pb-pic i {
	position: absolute;
	left: -32px;
	top: 35%;
	font-size: 18px;
	color: #b2b2b2;
}

.blog-details-inner .blog-post .prev-blog .pb-pic img {
	height: 70px;
	width: 70px;
}

.blog-details-inner .blog-post .prev-blog .pb-text {
	display: table;
	padding-left: 20px;
}

.blog-details-inner .blog-post .prev-blog .pb-text span {
	font-size: 14px;
	color: #b2b2b2;
	letter-spacing: 2px;
}

.blog-details-inner .blog-post .prev-blog .pb-text h5 {
	font-size: 20px;
	color: #252525;
	line-height: 26px;
	font-weight: 700;
	margin-top: 10px;
}

.blog-details-inner .blog-post .next-blog {
	display: block;
}

.blog-details-inner .blog-post .next-blog .nb-pic {
	float: right;
	position: relative;
	margin-top: 7px;
}

.blog-details-inner .blog-post .next-blog .nb-pic i {
	position: absolute;
	right: -28px;
	top: 35%;
	font-size: 18px;
	color: #b2b2b2;
}

.blog-details-inner .blog-post .next-blog .nb-pic img {
	height: 70px;
	width: 70px;
}

.blog-details-inner .blog-post .next-blog .nb-text {
	display: table;
	padding-right: 20px;
	text-align: right;
}

.blog-details-inner .blog-post .next-blog .nb-text span {
	font-size: 14px;
	color: #b2b2b2;
	letter-spacing: 2px;
}

.blog-details-inner .blog-post .next-blog .nb-text h5 {
	font-size: 20px;
	color: #252525;
	line-height: 26px;
	font-weight: 700;
	margin-top: 10px;
}

.blog-details-inner .posted-by {
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding: 40px 65px;
}

.blog-details-inner .posted-by .pb-pic {
	float: left;
}

.blog-details-inner .posted-by .pb-text {
	padding-left: 22px;
	display: table;
}

.blog-details-inner .posted-by .pb-text a {
	display: block;
}

.blog-details-inner .posted-by .pb-text a h5 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 13px;
}

.blog-details-inner .posted-by .pb-text p {
	line-height: 30px;
	margin-bottom: 0;
}

.blog-details-inner .leave-comment {
	padding-top: 55px;
}

.blog-details-inner .leave-comment h4 {
	color: #292f3b;
	font-weight: 700;
	margin-bottom: 35px;
}

.blog-details-inner .leave-comment .comment-form input {
	width: 100%;
	font-size: 16px;
	color: #636363;
	height: 50px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	margin-bottom: 30px;
}

.blog-details-inner .leave-comment .comment-form textarea {
	width: 100%;
	resize: none;
	font-size: 16px;
	color: #636363;
	height: 116px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 45px;
}

/*---------------------
  Map
-----------------------*/

.map {
	padding-top: 20px;
	padding-bottom: 0;
}

.map-inner {
	height: 360px;
	position: relative;
}

.map-inner iframe {
	width: 100%;
}

.map-inner .icon {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-14px, -21px);
	-ms-transform: translate(-14px, -21px);
	transform: translate(-14px, -21px);
}

.map-inner .icon i {
	font-size: 48px;
	color: #e7ab3c;
}

/*---------------------
  Contact Section
-----------------------*/

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

.contact-title {
	margin-bottom: 30px;
}

.contact-title h4 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 16px;
}

.contact-widget .cw-item {
	background: #ffffff;
	/*-webkit-box-shadow: 0px 8px 35px 10px #E8E8E8;
	box-shadow: 0px 8px 35px 10px #E8E8E8;*/
	padding-left: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 10px;
}

.contact-widget .cw-item .ci-icon {
	float: left;
	margin-top: 12px;
}

.contact-widget .cw-item .ci-icon i {
	font-size: 34px;
	color: #1088ba;
}

.contact-widget .cw-item .ci-text {
	display: table;
	padding-left: 30px;
}

.contact-widget .cw-item .ci-text span {
	color: #b2b2b2;
	font-size: 16px;
}

.contact-widget .cw-item .ci-text p {
	font-size: 18px;
	color: #252525;
	margin-bottom: 0;
}

.contact-form .leave-comment h4 {
	color: #292f3b;
	font-weight: 700;
	margin-bottom: 20px;
}

.contact-form .leave-comment p {
	margin-bottom: 38px;
}

.contact-form .leave-comment .comment-form input {
	width: 100%;
	font-size: 16px;
	color: #636363;
	height: 50px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	margin-bottom: 30px;
}

.contact-form .leave-comment .comment-form textarea {
	width: 100%;
	resize: none;
	font-size: 16px;
	color: #636363;
	height: 150px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 35px;
}

.contact-form .leave-comment .comment-form .site-btn {
	padding: 13px 35px 11px;
}

/*---------------------
  Faq Section
-----------------------*/

.faq-section {
	padding-top: 80px;
	padding-bottom: 54px;
}

.faq-accordin .card {
	border: none;
	margin-bottom: 22px;
}

.faq-accordin .card .card-heading {
	font-size: 22px;
	color: #252525;
	font-weight: 700;
	cursor: pointer;
}

.faq-accordin .card .card-heading a {
	padding-left: 42px;
	display: block;
}

.faq-accordin .card .card-body {
	padding: 0;
	padding-top: 13px;
	padding-bottom: 10px;
}

.faq-accordin .card .card-body p {
	margin-bottom: 0;
}

.faq-accordin .card-heading a:after,
.faq-accordin .card-heading>a.active[aria-expanded=false]:after {
	content: "";
	font-family: "FontAwesome";
	font-size: 14px;
	color: #404040;
	height: 25px;
	width: 25px;
	text-align: center;
	line-height: 25px;
	background: #EFEFF0;
	margin-top: 3px;
	position: absolute;
	left: 0;
	top: 0;
}

.faq-accordin .card-heading a[aria-expanded=true]:after,
.faq-accordin .card-heading>a.active:after {
	content: "";
	font-family: "FontAwesome";
	float: left;
	font-size: 13px;
	color: #ffffff;
	background: #e7ab3c;
}

/*---------------------
  Register Form
-----------------------*/

.register-login-section {
	padding-top: 72px;
	padding-bottom: 80px;
}

.register-form h2,
.login-form h2 {
	color: #252525;
	font-weight: 700;
	text-align: center;
	margin-bottom: 35px;
}

.register-form form .group-input,
.login-form form .group-input {
	margin-bottom: 25px;
}

.register-form form .group-input label,
.login-form form .group-input label {
	display: block;
	font-size: 18px;
	color: #252525;
	margin-bottom: 13px;
}

.register-form form .group-input input,
.login-form form .group-input input {
	border: 1px solid #ebebeb;
	height: 50px;
	width: 100%;
	padding-left: 20px;
	padding-right: 15px;
}

.register-form form .register-btn,
.register-form form .login-btn,
.login-form form .register-btn,
.login-form form .login-btn {
	width: 100%;
	letter-spacing: 2px;
	margin-top: 5px;
}

.register-form .switch-login,
.login-form .switch-login {
	text-align: center;
	margin-top: 22px;
}

.register-form .switch-login .or-login,
.login-form .switch-login .or-login {
	color: #252525;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
}

.register-form .switch-login .or-login:before,
.login-form .switch-login .or-login:before {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: #9f9f9f;
	content: "";
}

.login-form .group-input.gi-check {
	margin-bottom: 8px;
}

.login-form .group-input .gi-more {
	overflow: hidden;
}

.login-form .group-input .gi-more label {
	position: relative;
	cursor: pointer;
	padding-left: 28px;
	font-size: 14px;
	color: #6B6B6B;
	float: left;
}

.login-form .group-input .gi-more label input {
	position: absolute;
	visibility: hidden;
}

.login-form .group-input .gi-more label input:checked~span {
	border-color: #6C6C6C;
}

.login-form .group-input .gi-more label input:checked~span:after {
	border-color: #6c6c6c;
}

.login-form .group-input .gi-more label .checkmark {
	position: absolute;
	left: 0;
	top: 4px;
	height: 13px;
	width: 13px;
	border: 1px solid #6C6C6C;
	border-radius: 2px;
}

.login-form .group-input .gi-more label .checkmark:after {
	left: 2px;
	top: -2px;
	width: 13px;
	height: 6px;
	border: solid #ffffff;
	border-width: 2px 2px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}

.login-form .group-input .gi-more .forget-pass {
	float: right;
	line-height: 20px;
	margin-top: -2px;
	font-size: 14px;
	color: #6B6B6B;
}

.title-page{
	font-weight: 100;
	padding: 25px 0 25px;
	text-align: center;
	border-bottom: 1px solid #e5e5e5;
	font-size: 24px;
	background-repeat:no-repeat;background-attachment:scroll;background-position:top center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;
}

/* ------------------------------ Responsive Media Styles ---------------------------- */

@media only screen and (min-width: 1200px) and (max-width: 1920px) {
	.inner-header .advanced-search .input-group button {
		right: -14px;
	}
	.product-item .pi-pic ul li a {
		padding: 12px 12px 12px 11px;
	}
	.nav-item .nav-menu li a {
		padding: 16px 29px 15px;
	}
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device: 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.inner-header .advanced-search .category-btn {
		max-width: 36%;
	}
	.inner-header .advanced-search .input-group {
		max-width: 100%;
	}
	.nav-item .nav-menu li a {
		padding: 16px 26px 15px;
	}
	.hero-items .owl-nav button[type=button] {
		left: 5px;
	}
	.hero-items .owl-nav button[type=button].owl-next {
		right: 5px;
	}
	.countdown-timer .cd-item {
		margin-right: 26px;
	}
	.product-details .quantity .primary-btn.pd-cart {
		padding: 14px 30px 10px;
	}
	.tab-item ul li a {
		padding: 18px 39px;
	}
	.inner-header .advanced-search .input-group button {
		right: -7px;
	}
	.product-shop .product-item .pi-pic ul li a {
		padding: 12px 12px 12px 11px;
	}
	.related-products .product-item .pi-pic ul li a {
		padding: 16px 12px 12px 11px;
	}
	.title-page{
		font-size: 35px
	}

	.inner-header .logo img {
		max-height: 100px!important
	}
}

@media only screen and (max-width: 991px) {
	  
	.banner-section {
		padding: 80px 0 50px;
	}
	.single-banner {
		margin-bottom: 30px;
	}
	.women-banner {
		padding-right: 0;
		padding-left: 0;
	}
	.product-large {
		margin-left: 0;
		margin-right: 0;
	}
	.deal-of-week {
		margin-left: 0;
		margin-right: 0;
	}
	.product-slider .owl-nav button[type=button] {
		display: none;
	}
	.man-banner {
		padding-right: 0;
		padding-left: 0;
	}
	.place-order {
		padding-top: 30px;
	}
	.blog-tags {
		padding-bottom: 40px;
	}
	.blog-details-inner .blog-post .prev-blog {
		margin-bottom: 40px;
	}
	.contact-form {
		padding-top: 40px;
	}
	.product-large.m-large {
		margin-top: 40px;
	}
	.hero-items .owl-nav button[type=button] {
		left: 5px;
	}
	.hero-items .owl-nav button[type=button].owl-next {
		right: 5px;
	}
	.product-shop.page-details .product-details {
		padding-top: 30px;
	}
	.inner-header .advanced-search .input-group button {
		right: -8px;
	}
	.inner-header .logo img {
		max-height: 90px!important
	}

}

/* Tablet Device: 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-top .ht-right .login-panel {
		padding-left: 10px;
	}
	.header-top .ht-right .top-social {
		padding-right: 10px;
	}
	.header-top .ht-left .mail-service {
		padding-right: 10px;
	}
	.header-top .ht-left .phone-service {
		padding-left: 10px;
	}
	.header-top .ht-right .top-social a {
		margin-left: 10px;
	}
	.inner-header .advanced-search .category-btn {
		max-width: 40%;
		padding-right: 25px;
	}
	.inner-header .advanced-search .input-group {
		max-width: 100%;
	}
	.inner-header .nav-right li {
		margin-left: 8px;
	}
	.nav-item .nav-depart .depart-btn {
		padding: 14px 40px 14px 18px;
	}
	.nav-item .nav-menu li a {
		padding: 16px 10px 15px;
	}
	.instagram-photo .insta-item .inside-text h5 {
		font-size: 14px;
	}
	.tab-item ul li a {
		padding: 18px 39px;
	}
	.hero-items .off-card {
		left: 62%;
	}
	.blog-details-inner .blog-post .prev-blog {
		padding-left: 30px;
	}
	.blog-details-inner .blog-post .next-blog {
		padding-right: 30px;
	}
	.blog-sidebar,
	.produts-sidebar-filter {
		padding-top: 50px;
	}
	.checkout-content input {
		margin-top: 50px;
	}
	.footer-left,
	.footer-widget{
		margin-bottom: 60px
	}
	.title-page{
		font-size: 28px
	}

	.inner-header .logo img {
		max-height: 90px!important
	}
}

/* Large Device: 480px */

@media only screen and (max-width: 767px) {

	.inner-header .logo img {
		max-height: 82px!important
	}
	.inner-header .logo {
		padding: 40px 0!important;
	}

	.instagram-photo .insta-item {
		width: 50%;
		height: 300px;
	}
	.copyright-reserved .copyright-text {
		float: none;
		margin-bottom: 10px;
		text-align: center;
	}
	.copyright-reserved .payment-pic {
		float: none;
		text-align: center;
	}
	.header-top .ht-left,
	.header-top .top-social {
		display: none;
	}
	.header-top .ht-right .login-panel {
		padding-top: 9px;
		padding-bottom: 7px;
	}
	.header-top .ht-right .lan-selector {
		margin-top: 5px;
		margin-bottom: 5px;
	}
	.inner-header .advanced-search .category-btn {
		display: none;
	}
	.inner-header .advanced-search .input-group {
		max-width: 100%;
	}
	.inner-header {
		padding: 0;
	}
	.inner-header .logo {
		text-align: left;
		margin-top: -20px;
		margin-bottom: -18px;
		padding: 15px 0;
	}
	.top-align{
		margin-top: 12px
	}
	.inner-header .nav-right {
		text-align: left;
		padding: 10px 0;
	}
	.inner-header .nav-right li:first-child {
		margin-left: 0;
	}
	.nav-item .nav-depart .depart-btn {
		padding: 14px 50px 14px 18px;
	}
	.nav-item {
		background: transparent;
	}
	.nav-item .nav-menu {
		display: none;
	}
	.slicknav_menu {
		display: block;
		background: transparent;
		text-align: center;
		margin-top: -96px;
	}
	.slicknav_nav {
		background: #333;
	}
	.slicknav_nav ul {
		margin: 0;
		text-align: left;
	}
	.slicknav_nav a,
	.slicknav_nav .slicknav_row {
		margin: 0;
	}
	.slicknav_nav .dropdown a {
		padding-left: 25px;
	}
	.nav-item .nav-depart .depart-btn {
		margin-top: 4px;
		background: #8021b9;
		padding: 6px 45px 6px 8px!important
	}
	.nav-item .nav-depart .depart-btn:before {
		position: absolute;
		color: #ffffff;
		right: 20px;
		top: 7px;
		content: "";
		font-family: FontAwesome;
		font-size: 18px;
	}
	.nav-item .nav-depart .depart-btn:hover .depart-hover {
		top: 34px;
		opacity: 1;
		visibility: visible;
		z-index: 99;
	}
	.slicknav_btn {
		border-radius: 0;
		background-color: transparent;
		display: inline-block;
		right: -16px;
	}
	.slicknav_icon-bar{
		color: #585756!important;
		background: #585756!important;
		height: 3px!important;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 8px 15px;
	}
	.slicknav_nav a {
		font-size: 15px;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: #1088ba;
		color: #fff;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: #1088ba;
		color: #fff;
	}
	.inner-header .nav-right li.cart-icon .cart-hover {
		left: -50px;
	}
	.product-show-option p {
		text-align: left;
	}
	.tab-item ul li a {
		padding: 18px 51px;
		margin-bottom: 10px;
	}
	.cart-table {
		overflow: auto;
	}
	.cart-table table tr th {
		font-size: 12px;
	}
	/*.hero-items .single-hero-items {
		padding: 110px 25px 80px;
		height: auto;
	}*/
	.hero-items .single-hero-items h1,
	.hero-items .single-hero-items h2 {
		font-size: 40px;
	}
	.blog-details-inner .tag-share .details-tag ul li {
		margin-right: 10px;
	}
	.blog-details-inner .tag-share .blog-share .social-links a {
		margin-left: 15px;
	}
	.blog-details-inner .blog-detail-title p:before {
		left: -135px;
		width: 100px;
	}
	.blog-details-inner .blog-detail-title p:after {
		right: -135px;
		width: 100px;
	}
	.hero-items .off-card {
		display: none;
	}
	.ps-slider .owl-nav button[type=button] {
		left: 0;
	}
	.ps-slider .owl-nav button[type=button].owl-next {
		right: 0;
	}
	.blog-details-inner .blog-post .prev-blog {
		padding-left: 30px;
	}
	.blog-details-inner .blog-post .next-blog {
		padding-right: 30px;
	}
	.blog-details-inner .posted-by {
		padding: 40px 25px;
		text-align: center;
	}
	.blog-details-inner .posted-by .pb-pic {
		float: none;
		margin-bottom: 30px;
	}
	.blog-details-inner .posted-by .pb-text {
		padding-left: 0;
	}
	.blog-sidebar,
	.produts-sidebar-filter {
		padding-top: 50px;
	}
	.checkout-content input {
		margin-top: 50px;
	}
	.footer-left,
	.footer-widget{
		margin-bottom: 60px
	}
	.title-page{
		font-size: 28px
	}
	.specification-table table tr td.p-catagory {
		padding-left: 15px
	}
	.header-top .ht-left .phone-service {
		display: none
	}
}

/* Small Device: 320px */

@media only screen and (max-width: 479px) {
	.instagram-photo .insta-item {
		width: 100%;
	}
	.inner-header .advanced-search .category-btn {
		display: none;
	}
	.inner-header .advanced-search .input-group {
		max-width: 100%;
	}
	.inner-header .nav-right li.cart-icon .cart-hover {
		width: 270px;
		padding: 20px;
	}
	.countdown-timer .cd-item {
		margin-right: 5px;
		padding: 10px 6px;
	}
	.product-show-option .select-option {
		display: inline-block;
	}
	.product-show-option .select-option .sorting.nice-select {
		margin-bottom: 10px;
	}
	.product-details .quantity .primary-btn.pd-cart {
		padding: 14px 20px 10px;
	}
	.tab-item ul li a {
		padding: 18px 30px;
		margin-bottom: 10px;
	}
	.specification-table table tr td.p-catagory {
		width: 160px;
	}
	.blog-details-inner .blog-post .next-blog .nb-pic i {
		display: none;
	}
	.blog-details-inner .blog-post .prev-blog .pb-pic i {
		display: none;
	}
	.blog-details-inner .tag-share .details-tag {
		float: none;
		margin-bottom: 10px;
	}
	.blog-details-inner .tag-share .blog-share {
		float: none;
	}
	.blog-details-inner .blog-detail-title p:before {
		left: -62px;
		width: 50px;
	}
	.blog-details-inner .blog-detail-title p:after {
		right: -62px;
		width: 50px;
	}
	.blog-details-inner .posted-by .pb-pic {
		float: none;
		margin-bottom: 15px;
	}
	.blog-details-inner .posted-by .pb-text {
		padding-left: 0;
		display: block;
	}
	.checkout-form .place-order .order-total {
		padding-left: 20px;
		padding-right: 20px;
	}
	.contact-widget .cw-item .ci-icon {
		float: none;
		margin-bottom: 5px;
	}
	.contact-widget .cw-item .ci-text {
		padding-left: 0;
	}
	.benefit-items .single-benefit {
		padding-left: 15px;
		padding-right: 15px;
	}

	.inner-header .logo img {
		max-height: 70px!important
	}
}













.overlay,
.overlay-2,
.overlay-3 {
  position: relative;
  z-index: 0;
}
.overlay::before {
  position: absolute;
  content: "";
  /*background: rgb(21,104,180);
background: linear-gradient(90deg, rgba(21,104,180,1) 0%, rgba(9,50,144,1) 23%, rgba(166,26,193,1) 100%);*/
/*background: rgb(35,106,167);
background: linear-gradient(90deg, rgba(35,106,167,1) 0%, rgba(16,136,186,1) 67%, rgba(76,192,237,1) 100%);*/
background: #FFF;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.851;
}
.overlay-2::before {
  position: absolute;
  content: "";
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
}
.overlay-3::before {
  position: absolute;
  content: "";
  /*background: rgb(21,104,180);
background: linear-gradient(90deg, rgba(21,104,180,1) 0%, rgba(9,50,144,1) 23%, rgba(166,26,193,1) 100%);*/
background: rgb(35,106,167);
background: linear-gradient(90deg, rgba(35,106,167,1) 0%, rgba(16,136,186,1) 67%, rgba(76,192,237,1) 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.831;
}
.quick-view a{
	background: #1088ba;
	color: #FFF!important;
}

.product-quantity-i {
    width: 130px;
    margin-top: 30px;  
    margin-bottom: 30px 
  }
  .product-quantity-i .number{
     font-size: 22px;
     color:#000;
  }

#example2 {
  background-color: #FFF;
  height: 130px;
  border: 1px solid #dcdedf;
  padding: 0 15px
}

#example2 .scrollos-content {
  padding: 8px;
}

#example2 .item {
  height: 140px;
  width: 140px;
}

#example2 .item + .item {
  margin-left: 14px;
}

#color_cheked{
	margin-top: 30px
}

#color_cheked [type=radio] { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* IMAGE STYLES */
#color_cheked [type=radio] + span {
  cursor: pointer;
}

/* CHECKED STYLES */
#color_cheked [type=radio]:checked + span {
  outline: 2px solid #1088ba;
}
#color_cheked .color-select{
	display: block;
	width: 30px;
	height: 30px;
	margin-right: 3px;
}
.alert-project{
	background: #f0b1b6!important;
}
.section-page{
	padding: 60px 0!important
}
.section-page a{
	color: #1088ba!important
}
.btn-outline-bitacora{
  background: #FFF;
  border:2px solid #1088ba;
  color:#1088ba;
}
.btn-outline-bitacora:hover{
  background: #1088ba;
  border:2px solid #1088ba;
  color:#FFF;
}

.btn-project{
  background:#1088ba;
  color:#fff;
}
.btn-project:hover{
  background:#1088ba;
  color:#fff;
}
.btn-project:focus{
  background:#1088ba;
  color:#fff;
}

.input-form input {
	width: 100%;
	font-size: 16px;
	color: #636363;
	height: 50px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	margin-bottom: 30px;
}

.input-form textarea {
	width: 100%;
	resize: none;
	font-size: 16px;
	color: #636363;
	height: 150px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 35px;
}



.site-section{
	padding: 60px 0;
}

.section-products{
  padding: 85px 0 100px;
}
.delete-product{
  font-size: 22px;
  color: #1088ba
}
.thead-gray{
  background: #f3f3f3;
  color: #000;
  font-weight: 100
}
.table-border-x{
  border: 1px solid #e5e4e6;
}

/*jstepper*/

.product-quantity{width:15%}
.quantity input.qty{width:40px;height:40px;float:left;padding:0;text-align:center;border:1px solid #c6c6c6;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;box-shadow:inset 0 0 2px 0 #f7f6f7;-webkit-box-shadow:inset 0 0 2px 0 #f7f6f7;-moz-box-shadow:inset 0 0 2px 0 #f7f6f7;font-weight:700}
.quantity input.number{margin:0;float:left;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;height:40px}
.quantity{float:left;margin:0 10px 0 0;width:60px;position:relative;overflow:hidden;zoom:1}
.quantity input.qty{margin:0}
.product-quantity .quantity{float:left;margin:0 10px 0 0;width:60px;position:relative;overflow:hidden;zoom:1}

.quantity input::-webkit-inner-spin-button,
.quantity input::-webkit-outer-spin-button{display:none}

.quantity input[type=number],#content .quantity noindex:-o-prefocus,.quantity input[type=number],.quantity noindex:-o-prefocus{padding-right:1.2em}
.quantity .minus,.quantity .plus{display:block;padding:0;margin:0;position:absolute;text-align:center;vertical-align:text-top;width:20px;height:20px;overflow:visible;text-decoration:none;font-weight:700;cursor:pointer;line-height:10px;font-size:12px;color:#444;border:1px solid #c6c6c6;border-left:0;background:#f7f6f7}
.quantity .minus:hover,.quantity .plus:hover{background:#d3d3d3}
.quantity .plus{top:0;right:0;border-bottom:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-moz-border-radius-bottomright:0;border-bottom-left-radius:0;border-bottom-right-radius:0}
.quantity .minus{bottom:0;right:0;-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:0;-moz-border-radius-topleft:0;-moz-border-radius-topright:0;border-top-left-radius:0;border-top-right-radius:0}
.quantity input[type=number]{
-webkit-appearance: textfield !important;
margin: 0;
-moz-appearance:textfield !important;
}
/* end jstepper*/

.color-project{
	color: #1088ba!important
}
.tab-pane-book{
  border-top: 1px solid #9b9c9c;
  border-bottom: 1px solid #9b9c9c;
  padding: 20px 6px;
  margin-top: -20px
}


.woocommerce-checkout-payment .payment_methods li{
  padding: 20px;
  list-style:none;
}

div.payment_box p:last-child,.project-page #payment div.payment_box p:last-child{margin-bottom:0}
div.payment_box #cc-expire-month,.project #payment div.payment_box #cc-expire-year,.project-page #payment div.payment_box #cc-expire-month,.project-page #payment div.payment_box #cc-expire-year{width:48%;float:left}
div.payment_box #cc-expire-year,div.payment_box #cc-expire-year{float:right}
div.payment_box span.help,div.payment_box span.help{font-size:11px;color:#777;line-height:13px;font-weight:400}
div.payment_box .form-row,div.payment_box .form-row{margin:0 0 1em}
div.payment_box .form-row select,div.payment_box .form-row select{width:48%;float:left;margin-right:3.8%}
div.payment_box{position:relative;width:96%;padding:1em 2%;margin:1em 0 1em 0;font-size:.92em;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:1.5em;background:#ddd;color:#444}
div.payment_box:after{content:"";display:block;border:8px solid #ddd;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-3px;left:0;margin:-1em 0 0 2em}


ul.payment_methods li{
  border: 1px dashed #000
}
ul.payment_methods li:hover{
  background: #f4f4f4
}
.payment-box{
  border: 1px dashed #000;
  padding: 15px 15px
}
.image-gallery-pro{
  max-height: 450px;
    text-align: center;
    position: relative;
    background: transparent;
}
.image-gallery-pro img{
  height: 430px;
  object-fit: cover!important;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {  
  .image-gallery-pro{
    max-height: 350px;
  }
  .image-gallery-pro img{
    height: 330px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 767px) {  
  .image-gallery-pro{
    max-height: 440px;
  }
  .image-gallery-pro img{
    height: 430px;
  }
}
@media (max-width: 499px) {  
  .image-gallery-pro{
    max-height: 270px;
  }
  .image-gallery-pro img{
    height: 265px;
  }
}


@media (max-width: 767px) {
  .book-card .card .card-body{
    padding: 0px
  }
}
.img-product{
	height: 500px;
	object-fit: cover!important;
}
.img-product-store{
	height: 350px;
	object-fit: cover!important;
}
.image-product-lg{
	height: 500px;
}
@media (max-width: 767px) {
	.img-product-store{
		height: 230px;
		object-fit: cover!important;
	}
}

.form-group .select-variable{
  max-width: 300px!important;
  padding: 10px 10px!important;
  height: 50px!important;
  border-radius: 0px;
  font-size: 18px!important
}



#portfolio{margin: 0 0 40px 0;}#portfolio .portfolio-item{right:0;margin:0 0 15px}#portfolio .portfolio-item .portfolio-link{position:relative;display:block;max-width:400px;margin:0 auto;cursor:pointer}#portfolio .portfolio-item .portfolio-link .portfolio-hover{position:absolute;width:100%;height:100%;-webkit-transition:all ease .5s;-moz-transition:all ease .5s;transition:all ease .5s;opacity:0;background:rgba(0,166,200,.9)}#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover{opacity:1}#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content{font-size:19px;position:absolute;top:50%;width:100%;height:20px;margin-top:-12px;text-align:center;color:#fff}#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i{margin-top:-12px}#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4{margin:0}#portfolio .portfolio-item .portfolio-caption{max-width:400px;margin:0 auto;padding:20px;text-align:center;background-color:#1088ba}#portfolio .portfolio-item .portfolio-caption h4{margin:0;text-transform:none}#portfolio .portfolio-item .portfolio-caption p{font-size:18px;margin:0;color:#FFF!important;}#portfolio *{z-index:2}@media (min-width:767px){#portfolio .portfolio-item{margin:0 0 30px}}.portfolio-modal{padding-right:0!important}.portfolio-modal .modal-dialog{margin:1rem;max-width:100vw;}.portfolio-modal .modal-content{padding:100px 0;text-align:center; background: #FFF}.portfolio-modal .modal-content h2{font-size:2.7em;margin-bottom:35px;}.portfolio-modal .modal-content p{margin-bottom:30px}.portfolio-modal .modal-content p.item-intro{font-size:16px;font-style:italic;margin:20px 0 30px;font-family:'Droid Serif','Helvetica Neue',Helvetica,Arial,sans-serif}.portfolio-modal .modal-content ul.list-inline{margin-top:0;margin-bottom:30px}.portfolio-modal .modal-content img{margin-bottom:50px}.portfolio-modal .modal-content button{cursor:pointer; font-size: 16px}.portfolio-modal .close-modal{position:absolute;top:25px;right:25px;width:75px;height:75px;cursor:pointer;background-color:transparent}.portfolio-modal .close-modal:hover{opacity:.3}.portfolio-modal .close-modal .lr{z-index:1051;width:1px;height:75px;margin-left:35px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);background-color:#000}.portfolio-modal .close-modal .lr .rl{z-index:1052;width:1px;height:75px;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);background-color:#000}@media (max-width: 768px) {.portfolio-modal .modal-content h2{font-size:1.8em;margin-bottom:35px;}}
/*.portfolio-image{
	height: 300px;
	object-fit: cover!important;
}*/

.panel-start{
  background: #1088ba!important;
  color: #FFF!important;
}

.login-box{
	border: 1px solid #cccccc!important;
}
.add_to_wishlist{
	display: inline-block;
	padding:5px 12px;
	font-size:14px;
	background: #FFF;
	color:#666;
	border:1px solid #CCC;
	border-radius:0px;
	margin-top: 15px
}
.add_to_wishlist:hover{
	border:1px solid #1088ba;
	color:#666;
}
.add_to_wishlist:visited,
.add_to_wishlist:active{
	border:1px solid #CCC;
	color:#666;
}
.heart-pink{
	color: #1088ba!important;
	font-size: 16px
}

.action i{
  font-size: 20px;
  color:#007bff;
}

.isDisabled {
  color: currentColor;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
}

.box-info{
    background-color: rgba(0, 0, 0, 0.8);
    height: 700px;
    padding: 0px 40px
  }
.hero-items .single-hero-items .phone-wu{
		text-align: center
	}  
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.hero-section{
		height: 410px;	
	}
    .hero-items .single-hero-items {
      height: 600px; } 
    .box-info{
      height: 600px;
    }
    .hero-items .single-hero-items h1,
    .hero-items .single-hero-items h2 {
		font-size: 40px!important;
		font-weight: 300;
	}
	.hero-items .single-hero-items p {
		font-size: 19px!important;
		font-weight: 200!important;
	}
	.hero-items .single-hero-items .primary-btn {
		font-size: 11px!important;
		padding: 14px 20px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
  	.hero-section{
		height: 410px;	
	}
    .hero-items .single-hero-items {
      height: 600px; } 
    .box-info{
      height: auto;
      padding: 14px 0px;
      position: absolute;
      bottom: 0
    }
    .hero-items .single-hero-items h1,
    .hero-items .single-hero-items h2 {
		font-size: 30px!important;
		font-weight: 400;
		top: 50px;
		text-align: center!important;
		margin-top: 20px
	}

	.hero-items .single-hero-items p {
		font-size: 18px!important;
		font-weight: 200!important;
		text-align: center!important;
		margin-bottom: 28px;
		padding: 10px 15px 0 15px;
	}
	.hero-items .single-hero-items .primary-btn {
		font-size: 11px!important;
		padding: 14px 20px;
		margin-bottom: 20px
	}
	.hero-items .single-hero-items .phone-wu{
		text-align: center
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
  	.hero-section{
		height: 350px;	
	}
    .hero-items .single-hero-items {
      height: 500px; } 
    .box-info{
      height: auto;
      padding: 14px 0px;
      position: absolute;
      bottom: 0
    }
    .hero-items .single-hero-items h1,
    .hero-items .single-hero-items h2 {
		font-size: 22px!important;
		font-weight: 400;
		top: 50px;
		text-align: center!important
	}

	.hero-items .single-hero-items p {
		font-size: 17px!important;
		font-weight: 200!important;
		text-align: center!important;
		margin-bottom: 22px;
	}
	.hero-items .single-hero-items .primary-btn {
		font-size: 11px!important;
		padding: 9px 12px;
	}
	.hero-items .single-hero-items .phone-wu{
		text-align: center
	}
  }
  @media only screen and (max-width: 575px) {
  	.hero-section{
		height: 300px;	
	}
    .hero-items .single-hero-items {
      height: 450px; } 
    .box-info{
      height: auto;
      padding: 14px 0px;
      position: absolute;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.7);
    }

    .hero-items .single-hero-items h1,
    .hero-items .single-hero-items h2 {
		font-size: 22px!important;
		font-weight: 300;
		top: 50px;
		text-align: center!important
	}

	.hero-items .single-hero-items p {
		font-size: 16px!important;
		font-weight: 200!important;
		text-align: center!important;
		margin-bottom: 22px;
	}
	.hero-items .single-hero-items .primary-btn {
		font-size: 11px!important;
		padding: 8px 10px;
	}
	.hero-items .single-hero-items .phone-wu{
		text-align: center
	}

    
  }  
 .my-auto{
 	margin-top: auto;
    margin-bottom: auto;
 }
 .header-section{
 	z-index: 10;
 }

 .bg-1 {

  background-size: cover;
  position: relative;
  background-attachment: scroll; /*fixed*/
  background-position: top center; 
}

@media (max-width: 768px) {
  .bg-1{
    background-size: cover;
    background-position: center;
    width: 100%;
    background-size: cover;
    background-position: bottom;
    background-attachment: scroll;
  }
  .header-section{
 	background-size: cover;
  	position: relative;
  	background-attachment: scroll; /*fixed*/
  	background-position: center center; 
 }
}

.bg-overlay-footer {
  position: relative;
  z-index: 1; }
  .bg-overlay-footer::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;

    background: rgb(35,106,167);
background: linear-gradient(90deg, rgba(35,106,167,1) 0%, rgba(16,136,186,1) 67%, rgba(76,192,237,1) 100%);
opacity: 0.851;
}  

@media only screen and (min-width: 768px) and (max-width: 991px) {
  
    .bg-overlay-footer::after {

    	background: rgb(35,106,167);
			background: linear-gradient(180deg, rgba(35,106,167,1) 0%, rgba(16,136,186,1) 23%, rgba(76,192,237,1) 100%);
  } 
 }
@media (max-width: 767px) {
    
  .bg-overlay-footer::after {
      
    background: rgb(35,106,167);
			background: linear-gradient(180deg, rgba(35,106,167,1) 0%, rgba(16,136,186,1) 23%, rgba(76,192,237,1) 100%);
  
  } 
}

.about_area .about_image img {
  width: 100%;
}
.about_area .about-title{
    
    margin-bottom: 20px;
    font-size: 36px!important;
    font-weight: 300!important
  }
@media (max-width: 767px) {
  .text-start{
    margin-bottom: 50px
  }
}
/* line 7, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
.about_area .about_info {
  padding-left: 68px;
  padding-right: 65px;
}
@media (min-width: 768px) and (max-width: 1500px) {
  .about_area .about-padding{
    
    padding-bottom: 20px
  }
  .about_area .about-title{
    
    margin-top: 50px
  }
}
@media (max-width: 767px) {
  /* line 7, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
  .about_area .about_info {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
  .about_area .about_info {
    padding-left: 30px;
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 7, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
  .about_area .about_info {
    padding-left: 30px;
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  /* line 7, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
  .about_area .about_info {
    padding-left: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
  }
}

/* line 31, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
.about_area .about_info h1 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 400;
  color: #000;
}

@media (max-width: 767px) {
  /* line 31, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
  .about_area .about_info h1 {
    font-size: 28px;
    line-height: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 31, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
  .about_area .about_info h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

/* line 45, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
/*.about_area .about_info p {
  font-family:"CalvertMTStd-Light";
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 22px;
  margin-top: 28px;
}*/

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 51, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
  /*.about_area .about_info p br {
    display: none;
  }*/
}

/* line 57, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
.about_area .about_info ul {
  margin-bottom: 56px;
}

@media (max-width: 767px) {
  /* line 57, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
  .about_area .about_info ul {
    margin-bottom: 30px;
  }
}

/* line 62, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
.about_area .about_info ul li {
  font-size: 16px;
  line-height: 28px;
  color: #727272;
  position: relative;
  padding-left: 28px;
  margin-bottom: 5px;
  font-weight: 400;
  z-index: 1;
}

/* line 71, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
.about_area .about_info ul li::before {
  position: absolute;
  left: 0;
  background-image: url(../img/svg_icon/check.svg);
  width: 16px;
  height: 16px;
  content: '';
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 83, ../../Arafath/CL/CL October/213. Business/HTML/scss/_about.scss */
.about_area .about_info .boxed-btn3 {
  padding: 13px 46px 14px 46px;
}
.btn-light{
	border: 1px solid #CCC
}

.testimonio{
  margin-bottom: 40px
}
.testimonio i{
  font-size: 34px;
  position: absolute;
  top:30px;
  left: 35px
}
.section-150{
	padding: 150px 0
}
.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 50px; 
}
.item-tes{
  background: #FFF;
  padding: 40px 40px 40px 40px;
  font-size: 16px
}
.item-tes span{
  font-style: italic;
  font-size: 18;
  font-weight: 700;
  margin-top: 30px;
  display: block;
}
@media (max-width: 767px) {

  .item-tes{
    padding: 65px 20px 40px 30px;
    margin-bottom: 30px
  }
  .testimonio i{
    font-size: 30px;
    position: absolute;
    top:18px;
    left: 28px
  }
  .section-150{
		padding: 100px 0
	}
}
.bg-gray{
	background: #f3f2f2
}
.testimonio-header{
	text-align: center;
}
.testimonio-header img{
	max-height: 150px;
	margin-bottom: 5px
}
.testimonio-header .tes-n{
	font-size: 20px;
	font-style: italic;
	margin-bottom: 25px
}


.hero-2 {
	
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  background-position: center center; }
  .hero-2 > .container .row {
    min-height: 200px;
    z-index: 2; }
  .hero-2:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    border-bottom-right-radius: 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .hero-2 h2 {
    font-weight: 300; 
    margin-bottom: 40px
}
    .hero-2 h1 {
    font-size: 50px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .hero-2 h2 {
        font-size: 2rem; } }
    .hero-2 h2 strong {
      font-weight: 700; }
  .hero-2 .sub-title {
    color: #fff;
    font-size: 1.5rem; }
  
    
.phone{
  font-size: 30px!important
}
@media (max-width: 768px) {
  .hero-2{
    background-size: cover;
    background-position: center;
    display: table;
    width: 100%;
    background-size: cover;
    background-position: bottom;
    background-attachment: scroll;
  }
}
.image-responsive{
  max-width:100%;
  height:auto;
}


/*******ACORDION**********/

* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #1088ba;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #1088ba;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #1088ba;
  border: 1px solid #1088ba;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #1088ba;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

.card-deck .card{
	border-radius: 0!important
}
.card-body .pricing-card-title{
	font-size: 60px!important
}

#color_cheked{
	margin-top: 30px;
	/*overflow-y: scroll;
	height: 95px!important;
	width: auto*/
}

#color_cheked [type=radio] { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* IMAGE STYLES */
#color_cheked [type=radio] + span {
  cursor: pointer;
}

/* CHECKED STYLES */
#color_cheked [type=radio]:checked + span {
  outline: 2px solid #f3929a;
}
#color_cheked .color-select{
	display: block;
	width: 80px;
	height: 80px;
	margin-right: 3px;
	background-size: cover;
    background-position: center;
    background-attachment: scroll;
}
.mg-image{
	margin: 40px 0;
	text-align: center;
}
.image-1{
	max-height: 500px;
	object-fit: cover;
	
}

.modal .modal-project{
  background: #fff;
  border: 1px solid #b8b7b7;
  border-radius: 0
}
.modal .modal-project .menu-icon i{
	color: #FFF;
	font-size: 7em;
	margin-bottom: 12px

}
.modal .modal-project .contact-text{
	color: #FFF;
	font-size: 1.2em;
	margin-bottom: 20px

}
.modal .modal-project .modal-close .close{
  color: #FFF;
  font-size: 80px
}
.modal .modal-project .modal-close .close span{
  color: #FFF;
  font-size: 80px;
  margin-right: 20px
}

.modal .modal-project .modal-body{
  padding: 15px 15px 80px;
}

.modal .modal-project .modal-body .contact_btn{
  padding: 12px 28px;
}

.modal .modal-project .modal-body .menu-down{
    border-right: 1px solid #d2d1d0
}

@media (max-width: 980px) {
  .modal .modal-project .modal-body .menu-down{
    padding-bottom: 50px
  }
  .modal .modal-project .modal-body .menu-up{
    padding-top: 50px
  }
  .modal .modal-project .modal-body .menu-down{
      border-right: none;
      border-bottom: 1px solid #d2d1d0
  }
}

.message-whats{
  display: inline-block;
  outline: none;
  line-height: 40px;
  padding: 2px 25px 2px 15px;
  font-size: 1.5em;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  background: #1088ba;
  color: #FFF;
  border-radius: 0px;
  position: fixed;
  bottom:20px;
  right: 20px;
  border: 2px solid #FFF;
  z-index: 100000000000
}
.message-whats i{
	color: #000
}

.message-whats:hover{
  color: #FFF
}
.message-whats img{
	width: 30px;
	margin-right: 5px;
	margin-top: -3px
}

@media (max-width: 768px) {
	.message-whats{
	    bottom:11px;
	  right: 11px;
	  font-size: 1.2em;
	 }
}

.modal .modal-project .modal-body .contact_btn{
  padding: 12px 28px;
}
.contact_btn {
  font-family: 'Montserrat', sans-serif;
  color: #212121;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 14px 30px;
  border: 2px solid #FFF;
  text-transform: capitalize;
  background: #FFF;
  cursor: pointer;
}

.contact_btn:hover {
  color: #fff;
  border: 2px solid #FFF;
  background: transparent;
}

.contact_btn:visted,
.contact_btn:active {
  color: #212121!important;
  border: 2px solid #FFF;
  text-transform: capitalize;
  background: #FFF;
}

.option-pay{
	border: 1px solid #CCC;
	margin-top: 5px;
	padding: 15px
}
.option-pay img{
	margin-right: 20px;
}
@media (max-width: 767px) {
	.option-pay img{
		margin-top: 10px;
	}
}
.fixed,
.absolute {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.breadcrumb-area {
  z-index: 1;
  height: 350px; }
 .header-section-page{
	height: 188px	
}
  @media only screen and (max-width: 767px) {
    .breadcrumb-area {
      height: 320px; } 
    .header-section-page{
			height: 185px	
		}
  }
  .breadcrumb-area .page-title {
    color: #202020;
    font-size: 30px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .breadcrumb-area .page-title {
        font-size: 26px; } 
      .header-section-page{
				height: 200px	
			} 
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .breadcrumb-area .page-title {
        font-size: 24px; } 
      .header-section-page{
				height: 210px	
			}  
    }
    @media only screen and (max-width: 767px) {
      .breadcrumb-area .page-title {
        font-size: 22px; } }
  .breadcrumb-area.contact-breadcrumb {
    height: 400px; }
    @media only screen and (max-width: 767px) {
      .breadcrumb-area.contact-breadcrumb {
        height: 300px; } }
  .breadcrumb-area .room-title {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 0; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .breadcrumb-area .room-title {
        font-size: 42px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .breadcrumb-area .room-title {
        font-size: 30px; } }
    @media only screen and (max-width: 767px) {
      .breadcrumb-area .room-title {
        font-size: 24px; } }
  .breadcrumb-area .room-price {
    font-size: 36px;
    color: #1cc3b2;
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .breadcrumb-area .room-price {
        font-size: 14px; } }
    .breadcrumb-area .room-price span {
      font-size: 18px;
      color: #ffffff; }
      @media only screen and (max-width: 767px) {
        .breadcrumb-area .room-price span {
          font-size: 12px; } }

.breadcrumb-content {
  position: relative;  
  z-index: 1;
   }
  .box-bc{
    border-radius: 10px;
  border: 1px solid #1088ba;
  display: inline-block;
  margin-top: 38px;
  padding: 20px 30px;
  position: relative;

  }
  .box-bc img{
  	max-width: 45px;
  	position: absolute;
  	left: -18px;
  	top: -18px;
  }
  .breadcrumb-content .breadcrumb {
    padding: 0;
    background-color: transparent;
    margin-bottom: 0; }
    .breadcrumb-content .breadcrumb .breadcrumb-item {
      color: #ffffff; }
      .breadcrumb-content .breadcrumb .breadcrumb-item a {
        color: #ffffff; }
        .breadcrumb-content .breadcrumb .breadcrumb-item a:hover, .breadcrumb-content .breadcrumb .breadcrumb-item a:focus {
          color: #5e0b15; }
    .breadcrumb-content .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
      content: '\f105';
      font-family: "FontAwesome";
      color: #ffffff; }
@media (max-width: 767px) {
  .breadcrumb-content .breadcrumb {
    font-size: 14px
  }
}      
.bg-img {
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat; }

  .jarallax {
  position: relative;
  z-index: 0; }
  .jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; }
.hero-1 {

  background-size: cover;
  background-attachment: fixed;
  background-position: center center; }

@media (max-width: 768px) {
  .hero-1{
    background-size: cover;
    background-position: center;
    width: 100%;
    background-size: cover;
    background-position: bottom;
    background-attachment: scroll;
  }
}
.tab-content{
	padding: 20px 20px
}
.tab-content ul li{
	margin-left: 40px!important
}
.tab-content .tab-pane .product-content p{
	margin-bottom: 14px!important
}

.price-dv{
	background: #1088ba;
	padding: 13px;
	max-width: 230px;
	text-align: right;
	color: #FFF;
}
.price-dv h4{
	color: #FFF!important;
	font-weight: 400!important;
	font-size: 26px!important;
}

/* Modal contact */

.icon-contact{
    margin-right: 5px
}
.call-h{
    font-size: 30px!important
}
.modal-ctc{
    position:fixed;
      right:20px;
      bottom:80px;
      top: auto;
      left: auto;
      width: 300px!important
}
.modal-contact{
    padding: 10px 0!important;
    
}
.modal-contact a{
    color: #000!important;
    font-size: 15px;

}
.modal-contact i{
    font-size: 24px;

}
.modal-contact .buble{
    width: 40px!important;
    height: 40px!important;    
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    padding-top: 8px;
    margin-right: 6px
}

.modal-contact .buble i{
    color: #FFF
}
.item-contact{
    padding: 6px 15px;
    display: block;
}
.item-contact:hover{
    background: #ccc
}

.buble-green{
    background: #00bb2d;
}
.buble-blue{
    background: #006AFF;
}
.buble-project{
    background: #0052a3
}
.triangulo {
     width: 0; 
     height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #fff; 
    position: absolute;
    right: 30px;
    bottom: -15px;
}
.title-call{
    background: #483e78;
    color: #FFF;
    padding: 18px 20px;
    text-align: center;
    font-weight: 100;
    font-size: 14px;
    margin-top: -10px

}
.form-call-btn{
    padding: 0 15px;
    margin-top: -10px
}
.form-call{
    padding: 15px
}
.form-call label{
    margin-bottom: 0px;
    font-size: 14px
}
.form-call input{
    height: 30px
}
.btn-project{
    background: #483e78
}
.form-call input::placeholder{
    font-size: 14px
}
.form-call .text-danger,
.form-call .text-success{
    font-size: 14px!important;
    line-height : 20px;
}
.buble-return{
    position: absolute;
    left: -20px;
    top: 10px;
    background: #FFF!important;
    cursor: pointer;

}
.buble-return i{
    color: #483e78!important
}


///////////////////////////////////////////////////
//////////////////////////////////////////////////
////////////////////// BLOG ///////////////////////
///////////////////////////////////////////////////

.text-meta{
  color:#000!important;
}
.text-meta-des{
  color:#FFF!important;
}

.site-blocks-cover.overlayw {
  position: relative; 
}
.site-blocks-cover.overlayw:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.65); 
}

.btn-outline-bitacora{
  background: #FFF;
  border:2px solid #13499f;
  color:#13499f;
}
.btn-outline-bitacora:hover{
  background: #13499f;
  border:2px solid #13499f;
  color:#FFF;
}

/* -- posts sidebar -- */

.widget-post {
    min-height: 70px;
    margin-bottom: 25px;
}

.widget-post img {
    display: block;
    float: left;
    margin-right: 10px;
    margin-top: 5px;
}

.widget-post a {
    display: block;
    color: #10161A;
    line-height: 23px
}

.widget-post a:hover {
    color: #13499f;
}

.widget-post .blog-meta {
    display: inline-block;
    text-align: left
}

.widget-post .blog-meta {
    display: inline-block;
    margin-right: 5px;
    color: #898a8a;
    font-size: 12px;
    text-align: left
}

.widget-post i {
    color: #898a8a;
    margin-right: 5px;
}

.title-widget-aside{
  padding: 5px 0px 5px;
  text-align: left; 
  position: relative;
}
.title-widget-aside img{
	position: absolute;
	top: -5px;
	right: -5px;
	max-width: 40px;
}

/*
Category sidebar
=========================== */

.list {
  list-style: none;
  margin: 0px;
  padding: 0px; 
}
.cat-list li {
  border-bottom: 2px dotted #eee;
  transition: all 0.3s ease 0s;
  padding-bottom: 12px; 
}
.cat-list li a {
  font-size: 16px;
  line-height: 20px;
  color: #777; 
}
.cat-list li a p {
  margin-bottom: 0px; 
  font-size: 15px;
}
.cat-list li + li {
  padding-top: 15px;
}
.cat-list li:hover {
  border-color: #13499f; 
}
.cat-list li:hover a {
  color: #13499f; 
}


.article-blog h2{
  margin: 20px 0 25px;
}


.dataTables_paginate .pagination .active a{
    background: #13499f;
    border-color: #13499f;
}

.pagination .active a:hover{
    background: #08295e;
    border-color: #08295e;
}

.sorting, .sorting_asc, .sorting_desc {
   display: none;   
}


/*
Blog author
=========================== */

.blog-author {
    margin: 50px 0px;
}

.blog-author .media .media-left {
    padding-right: 0px;
}

.blog-author .media {
    padding: 20px;
    border: 1px solid #EEE;
}

.blog-author .media .media-heading {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #EEE;
}

.blog-author .media .media-heading h3 {
    display: inline-block;
    margin: 0;
    font-size: 25px
}

.blog-author .media .media-heading .author-social {
  float: right;
}

.blog-author .author-social a {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 3px;
    margin-left: 5px;
    color: #FFF;
    background-color: #13499f;
}

.blog-author .media .media-body p{
      font-size: 16px!important;
 }

@media (max-width: 992px) {


  .blog-author .media .media-left {
      display: block;
      padding-right: 0;
      margin-bottom: 20px;
  }
  .blog-author .media .media-body {
      display: block;
  }
  .blog-author .media {
      text-align: center;
  }
  .blog-author .media .media-heading .author-social {
      margin-top: 10px;
      float: none;
  }
  .blog-author .media .media-left img {
      margin: auto;
  }
}

.btn-bitacora{
  background: #13499f;
  color:#FFF;
  border:2px solid #13499f;
  padding: 5px 7px;
  font-size: 12px;
  border-radius: 0;
}
.btn-bitacora:hover{
  background:#08295e;
  color:#fff;
  border:2px solid #08295e;
  text-decoration:none;
}
.reply{
  position: absolute;
  top:10px;
  right: 0;
}

.pd1{
  padding: 40px;
}
.pd2{
    padding: 35px;
  }
.title-post{
    margin:40px 0 50px;
  }

.post-date{position:absolute;width:105px;height:105px;background:#2673b5;;text-align:center;}
.post-date h2{color:#fff;font-size:40px;font-weight:400;margin-bottom:5px} .post-date h3{font-size:15px;color:#FFF;font-weight:400}
.padding-date-sm{
  padding-top:0px;
  top:-10px;
  left:-10px
}
.padding-date-md{
  padding-top:17px;
  top:17px;
  left:17px
}
.content-articles{
    margin-top: -18px;
  }
.title-article-blog{
    font-size: 32px!important;
 }

@media (max-width: 768px) {
	.reply{
    position: relative;
    bottom:0;
    right: 0;
  }
  .pd1{
    padding: 20px;
  }
  .pd2{
    padding: 12px;
    margin: 8px -10px;
  }
  .title-post{
    font-size: 2.1rem;
    text-align: center
  }
  .content-articles{
    padding: 0;
    margin-top: -30px;
  }
  .title-article-blog{
    font-size: 24px!important;
    text-align: center;
  }
  .post-date{position:absolute;width:85px;height:85px;background:#13499f;;text-align:center;}
  .post-date h2{color:#fff;font-size:30px;font-weight:400;margin-bottom:5px} .post-date h3{font-size:12px;color:#FFF;font-weight:400}
  .padding-date-md{
    padding-top:17px;
    top:-3px;
    left:-3px
  }
}
.img-articles-date{
  position: relative;
}




/* -- blog tags -- */

.blog-tags {
    margin: 40px 0px 15px;
}

.blog-tags h5 {
    margin-bottom: 0;
    display: inline-block;
}

.blog-tags a {
    display: inline-block;
    padding: 6px 13px;
    font-size: 14px;
    margin: 2px 0px;
    background: #F4F4F4;
    color: #10161A;
}

.blog-tags a:hover {
  color: #FFF;
  background-color: #13499f;
}

.blog-tags a i {
    margin-right: 3px;
    color: #13499f;
}

.blog-tags a:hover i {
  color: #FFF;
}


.site-blocks-cover .title-post-article-inner{  
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.5; 
}
@media (max-width: 991.98px) {
  .site-blocks-cover .title-post-article-inner {
    font-size: 2rem; 
  }
}
@media (max-width: 768px) {
  .site-blocks-cover .title-post-article-inner {
    font-size: 1.8rem; 
    margin-top: -40px
  }
  .media-left{
    display: block;
    width:100%;
  }
}

.no-image-autor{
  font-size:140px; 
  color:#c8caca
}

/* --comments -- */
.panel-default{
  position: relative;
  text-align: justify;
  margin-bottom: 35px;
  border:1px solid #eee;
}
.reply{
  position: absolute;
  top:10px;
  right: 0;
}
.panel-body{
  margin-top: 16px
}
.panel-heading{
  border-bottom: 1px solid #CCC
}
.panel-heading i{
  font-size: 13px
}
@media (max-width: 768px) {
  .reply{
    position: relative;
    bottom:0;
    right: 0;
  }
  .panel-default{
    font-size: 1rem;
  }
}
.text-help{
  font-size: 1rem;
}
.comment-message{
  display: block;
  /*line-height: 10px;*/
  margin: 20px 0;
  padding: 0px;
  font-size: 16px
}
.comment-message p{
  margin-bottom: 5px;
}
.avatar-title{
  position: relative;
}
.avatar-naela{
  position:absolute;
  z-index: 100;  
}
.avatar-md{
  top:90px;
  right:-30px;
}

.avatar-size-md{
  width:110px;
}
.avatar-lg{
  top:190px;
  left:50px;
}

.avatar-size-lg{
  width:290px;
}

.message-start{
    margin-left:150px;
    margin-right: -150px;
  }
.text-title{
  background: rgba(0, 0, 0, 0.8);
  padding: 30px 20px 20px;
}
.message-index{
  background: #000;
  padding: 20px 20px
}
@media (max-width: 768px) {
  .message-index{
    padding: 80px 20px
  }
}
.message-top{
  background: #000
}

.b-text{
  padding: 10px 10px;
  font-size: 14px!important
}
.text-top-b{
  margin-top: -25px
}
.btn-action{
    background: #13499f;
    color:#FFF;
    border:2px solid #13499f;
    padding: 12px 40px;
    font-size: 1.17rem;
  }
.btn-action:hover{
  background:#08295e;
  color:#fff;
  border:2px solid #08295e;
  text-decoration:none;
}
.site-blocks-cover p {
    margin-top: 30px;
    margin-bottom: 45px }

   

@media (max-width: 1439.98px) {

  .avatar-md{
    top:90px;
    right:20px;
  }

  .avatar-size-md{
    width:110px;
  }

  .avatar-lg{
    top:140px;
    left:20px;
  }

  .avatar-size-lg{
    width:230px;
  }
  .message-start{
    margin-left:100px;
    margin-right: -100px;
  }

}
@media (max-width: 991.98px) {
  .avatar-md{
    top:105px;
    right:10px;
  }

  .avatar-size-md{
    width:90px;
  }

  .avatar-lg{
    top:160px;
    left:-30px;
  }

  .avatar-size-lg{
    width:220px;
  }
  .message-start{
    margin-left:100px;
    margin-right: -130px;
  }

}
@media (max-width: 768px) {
  .avatar-md{
    top:25px;
    right:15px;
  }

  .avatar-size-md{
    width:70px;
  }
  .avatar-lg{
    top:150px;
    left:-10px;
  }
  .message-start{
    margin-left:100px;
    margin-right: -80px;
  }

  .avatar-size-lg{
    width:190px;
  }
  .btn-action{
    padding: 10px 20px;
    font-size: 1.09rem;
  }
  .site-blocks-cover p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 40px }
    .site-blocks-cover h2 {
        font-size: 1.5rem; }
}

@media (max-width: 600px) {
  .avatar-lg{
    top:160px;
    left:0px;
  }

  .avatar-size-lg{
    width:140px;
  }
  .message-start{
    margin-left:100px;
    margin-right: -30px;
    margin-top: -40px
  }
}
.image-responsive{
  max-width:100%;
  height:auto;
}
.margin-20{
  margin: 20px 35px 30px 0
}

.form-avatar{
  height:240px;
  background-position: right;
  background-repeat: no-repeat;
}
.response-alert{
  padding-right: 40px;
  position: relative;
}
.button-alert{
  position: absolute;
  top:10px;
  right: 10px;
}

.product-item-img{
	height: 450px;
	object-fit: cover!important;
}
.blog-item-description{
	margin-bottom: 20px;
}
.blog-item-description{
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	.product-item-img{
		height: 300px;
		object-fit: cover!important;
	}
	.article-blog .site-btn{
		font-size: 13px!important;
		padding: 12px 20px;
	}
	.blog-item-description p{
		font-size: 15px;
	}
}
.control-div{
	z-index:10000000;
	top: 660px;
	text-align: center;
}
.control-div button{
	height: 40px;
	width: 40px;
	background: transparent;
	border: 1px solid #000;
	cursor: pointer;
	border-radius: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.control-div{
		top: 560px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.control-div{
		top: 560px;
	}
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
	.control-div button{
		height: 30px;
		width: 30px;
		padding-top: 0px;
	}
	.control-div button i{
		font-size: 10px;
	}
	.control-div{
		top: 470px;
	}
}
@media only screen and (max-width: 575px) {
	.control-div button{
		height: 30px;
		width: 30px;
		padding-top: 0px;
	}
	.control-div button i{
		font-size: 10px;
	}
	.control-div{
		top: 420px;
	}
}