/*------------------------------------------------------------------

 *
 * Author      : Wditsolution
 * Project     : Vigo Landing Page
 * Version     : 1.0.0
 * Description : Just a simple starter template to jump start your development.
 * Primary use : Starter Template
 * Last update : YYYY/MM/DD
 * Develop     : Badhon Khan
 *
 * -----------------------------------------------------------------*
 *                         TABLE OF CONTENTS                        *
 * -----------------------------------------------------------------*
 *
 * 01. Base Styles
 * 02. Header
 * 03. Navigation
 * 04. Footer Styles
 * 05. vigo-slider
 * 06. call-to-action
 * 07. features
 * 08. services
 * 09. about
 * 10. product-features
 * 11. recommended
 * 12. newsletter
 * 13. gallery
 * 14. pricing-table
 * 15. process
 * 16. ingredients
 * 17. testimonial
 * 18. product
 * 19. certification
 * 05. Responsive Styles
 *

 * -----------------------------------------------------------------*
 *                        Color Codes                               *
 * -----------------------------------------------------------------*

 * $white: #fff;
 * $green: #111;
 * $black: #333740;
 * $light-gray: #f1f1f1;

 * -----------------------------------------------------------------*
 *                        Font Family                               *
 * -----------------------------------------------------------------*
 *$ral: 'Raleway', sans-serif;
 *$lato: 'Lato', sans-serif;
 *$cou: 'Courgette', cursive;
-------------------------------------------------------------------*/
/*------------------------------------------
	Google Font
--------------------------------------------*/
/*------------------------------------------
	Theme Colors
--------------------------------------------*/
/**
 * ---------------------------------------------------------------------------
 * 0?. Base Styles.
 * ---------------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css?family=Courgette|Lato|Raleway:400,500,600,700,900");
body {
  font-size: 14px;
  line-height: 20px;
  font-family: "Lato", sans-serif;
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  line-height: 1;
}

section {
  padding: 20px 0;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

/******************************************************************
  Template Name: Male Fashion
  Description: Male Fashion - ecommerce teplate
  Author: Colorib
  Author URI: https://www.colorib.com/
  Version: 1.0
  Created: Colorib 
******************************************************************/

/*------------------------------------------------------------------
[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.  Product Section
7.  Intagram Section
8.  Latest Section
9.  Contact
10.  Footer Style
-------------------------------------------------------------------*/

/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: "Nunito Sans", sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Nunito Sans", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 15px;
	font-family: "Nunito Sans", sans-serif;
	color: #3d3d3d;
	font-weight: 400;
	line-height: 25px;
	margin: 0 0 15px 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: #ffffff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 45px;
	text-align: center;
}

.section-title span {
	color: #d54928;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
	display: block;
}

.section-title h2 {
	color: #111111;
	font-weight: 700;
	line-height: 46px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
  padding-right: 30px;
  padding-left: 30px;
}

.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;
	text-transform: uppercase;
	padding: 14px 30px;
	color: #ffffff;
	background: #000000;
	letter-spacing: 4px;
}

.site-btn {
	font-size: 14px;
	color: #ffffff;
	background: #111111;
	font-weight: 700;
	border: none;
	text-transform: uppercase;
	display: inline-block;
	padding: 14px 30px;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #d54928;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #111;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #d54928;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #d54928;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #111;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #d54928;
		border-left-color: transparent;
	}
}

.spacial-controls {
	position: fixed;
	width: 111px;
	height: 91px;
	top: 0;
	right: 0;
	z-index: 999;
}

.spacial-controls .search-switch {
	display: block;
	height: 100%;
	padding-top: 30px;
	background: #323232;
	text-align: center;
	cursor: pointer;
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: 0 0;
	color: #999;
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 28px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*---------------------
  Header
-----------------------*/

.header {
	background: #f7f7f7;
}

.header__top {
	background: #111111;
	padding: 10px 0;
}

.header__top__left p {
	color: #ffffff;
	margin-bottom: 0;
}

.header__top__right {
	text-align: right;
}

.header__top__links {
	display: inline-block;
	margin-right: 25px;
}

.header__top__links a {
	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-right: 28px;
	display: inline-block;
}

.header__top__links a:last-child {
	margin-right: 0;
}

.header__top__hover {
	display: inline-block;
	position: relative;
}

.header__top__hover:hover ul {
	top: 24px;
	opacity: 1;
	visibility: visible;
}

.header__top__hover span {
	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: inline-block;
	cursor: pointer;
}

.header__top__hover span i {
	font-size: 20px;
	position: relative;
	top: 3px;
	right: 2px;
}

.header__top__hover ul {
	background: #ffffff;
	display: inline-block;
	padding: 2px 0;
	position: absolute;
	left: 0;
	top: 44px;
	opacity: 0;
	visibility: hidden;
	z-index: 3;
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__top__hover ul li {
	list-style: none;
	font-size: 13px;
	color: #111111;
	padding: 2px 15px;
	cursor: pointer;
}

.header__logo {
    padding: 7px 0;
}
.header__logo a {
	display: inline-block;
	font-family: 'Oswald';
    color: #d54928;
    font-size: 20px;
    font-weight: 700;
}
.header__logo a img{
	width: 183px;
}
.header__menu {
	padding: 26px 0 25px;
    text-align: end;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 45px;
	position: relative;
}

.header__menu ul li.active a:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.header__menu ul li:hover a:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.header__menu ul li:hover .dropdown {
	top: 32px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li:last-child {
	margin-right: 0;
}

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 56px;
	width: 150px;
	background: #111111;
	text-align: left;
	padding: 5px 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__menu ul li .dropdown li {
	display: block;
	margin-right: 0;
}

.header__menu ul li .dropdown li a {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	padding: 5px 20px;
	text-transform: capitalize;
}

.header__menu ul li .dropdown li a:after {
	display: none;
}

.header__menu ul li a {
	font-size: 18px;
	color: #111111;
	display: block;
	font-weight: 600;
	position: relative;
	padding: 3px 0;
}

.header__menu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #d54928;
	content: "";
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.header__nav__option {
	text-align: right;
	padding: 30px 0;
}

.header__nav__option a {
	display: inline-block;
	margin-right: 26px;
	position: relative;
}

.header__nav__option a span {
	color: #cab11d;
	font-size: 11px;
	position: absolute;
	left: 5px;
	top: 8px;
}

.header__nav__option a:last-child {
	margin-right: 0;
}

.header__nav__option .price {
	font-size: 15px;
	color: #111111;
	font-weight: 700;
	display: inline-block;
	margin-left: -20px;
	position: relative;
	top: 3px;
}

.offcanvas-menu-wrapper {
	display: none;
}

.canvas__open {
	display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero__slider.owl-carousel .owl-item.active .hero__text h6 {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text h2 {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text p {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text .primary-btn {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-nav button {
	font-size: 36px;
	color: #333333;
	position: absolute;
	left: 75px;
	top: 50%;
	margin-top: -18px;
	line-height: 29px;
}

.hero__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 75px;
}

.hero__items {
	height: 613px;
    padding-top: 120px;
}

.hero__text h6 {
	color: #111111;
    font-size: 35px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 30px;
    position: relative;
    top: 100px;
    opacity: 0;
    -webkit-transition: all, 0.6s;
    -o-transition: all, 0.6s;
    transition: all, 0.6s;
}

.hero__text h2 {
	color: #111111;
	font-size: 34px;
	font-weight: 700;
	line-height: 40px;
	margin-bottom: 30px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.6s;
	-o-transition: all, 0.6s;
	transition: all, 0.6s;
}

.hero__text p {
    font-size: 33px;
    line-height: 28px;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.9s;
	-o-transition: all, 0.9s;
	transition: all, 0.9s;
}

.hero__text .primary-btn {
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 1.1s;
	-o-transition: all, 1.1s;
	transition: all, 1.1s;
}

.hero__text .primary-btn span {
	font-size: 20px;
	position: relative;
	top: 4px;
	font-weight: 700;
}

.hero__social {
	margin-top: 190px;
}

.hero__social a {
	font-size: 16px;
	color: #3d3d3d;
	display: inline-block;
	margin-right: 32px;
}

.hero__social a:last-child {
	margin-right: 0;
}

/*---------------------
  Banner
-----------------------*/

.blog {
	padding-bottom: 55px;
}

.banner__item {
	position: relative;
	overflow: hidden;
}

.banner__item:hover .banner__item__text a:after {
	width: 40px;
	background: #d54928;
}

.banner__item.banner__item--middle {
	margin-top: -75px;
}

.banner__item.banner__item--middle .banner__item__pic {
	float: none;
}

.banner__item.banner__item--middle .banner__item__text {
	position: relative;
	top: 0;
	left: 0;
	max-width: 100%;
	padding-top: 22px;
}

.banner__item.banner__item--last {
	margin-top: 100px;
}

.banner__item__pic {
	float: right;
}

.banner__item__text {
	max-width: 300px;
	position: absolute;
	left: 0;
	top: 140px;
}

.banner__item__text h2 {
	color: #111111;
	font-weight: 700;
	line-height: 46px;
	margin-bottom: 10px;
}

.banner__item__text a {
	display: inline-block;
	color: #111111;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	padding: 3px 0;
	position: relative;
}

.banner__item__text a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #111111;
	content: "";
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

/*---------------------
  Categories
-----------------------*/

.categories {
	background: #ffffff;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 125px;
    padding-left: 35px;
    padding-right: 46px;
}

.categories__text {
	padding-top: 40px;
	position: relative;
	z-index: 1;
}

.categories__text:before {
	position: absolute;
	left: -485px;
	top: 0;
	height: 300px;
	width: 600px;
	background: #ffffff;
	z-index: -1;
	content: "";
}

.categories__text h2 {
	color: #b7b7b7;
	line-height: 72px;
	font-size: 34px;
}

.categories__text h2 span {
	font-weight: 700;
	color: #111111;
}

.categories__hot__deal {
	position: relative;
	z-index: 5;
}

.categories__hot__deal img {
	min-width: 100%;
}

.hot__deal__sticker {
	height: 100px;
	width: 100px;
	background: #111111;
	border-radius: 50%;
	padding-top: 22px;
	text-align: center;
	position: absolute;
	right: 0;
	top: -36px;
}

.hot__deal__sticker span {
	display: block;
	font-size: 15px;
	color: #ffffff;
	margin-bottom: 4px;
}

.hot__deal__sticker h5 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
}

.categories__deal__countdown span {
	color: #d54928;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
	display: block;
}

.categories__deal__countdown h2 {
	color: #111111;
	font-weight: 700;
	line-height: 46px;
	margin-bottom: 25px;
}

.categories__deal__countdown .categories__deal__countdown__timer {
	margin-bottom: 20px;
	overflow: hidden;
	margin-left: -30px;
}

.categories__deal__countdown .categories__deal__countdown__timer .cd-item {
	width: 25%;
	float: left;
	margin-bottom: 25px;
	text-align: center;
	position: relative;
}

.categories__deal__countdown .categories__deal__countdown__timer .cd-item:after {
	position: absolute;
	right: 0;
	top: 7px;
	content: ":";
	font-size: 24px;
	font-weight: 700;
	color: #3d3d3d;
}

.categories__deal__countdown .categories__deal__countdown__timer .cd-item:last-child:after {
	display: none;
}

.categories__deal__countdown .categories__deal__countdown__timer .cd-item span {
	color: #111111;
	font-weight: 700;
	display: block;
	font-size: 36px;
}

.categories__deal__countdown .categories__deal__countdown__timer .cd-item p {
	margin-bottom: 0;
}

/*---------------------
  Instagram
-----------------------*/

.instagram {
	padding-bottom: 0;
}

.instagram__pic__item {
	width: 33.33%;
	float: left;
	height: 261px;
	background-position: center center;
}

.instagram__text {
	padding-top: 130px;
}

.instagram__text h2 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 30px;
}

.instagram__text p {
	margin-bottom: 65px;
}

.instagram__text h3 {
	color: #d54928;
	font-weight: 700;
}

/*---------------------
  Product
-----------------------*/

.product {
	padding-top: 0;
	padding-bottom: 60px;
}

.filter__controls {
	text-align: center;
	margin-bottom: 45px;
}

.filter__controls li {
	color: #b7b7b7;
	font-size: 24px;
	font-weight: 700;
	list-style: none;
	display: inline-block;
	margin-right: 88px;
	cursor: pointer;
}

.filter__controls li:last-child {
	margin-right: 0;
}

.filter__controls li.active {
	color: #111111;
}

.product__item {
	overflow: hidden;
    padding: 33px;
    width: 100%;
	background: white;
	margin: 7px;
    box-shadow: 0 1px 9px rgba(0,0,0,0.19), 0 4px 4px rgba(0,0,0,0.23);
}




.product__item.sale .product__item__pic .label {
	color: #ffffff;
	background: #111111;
}

.product__item.sale .product__item__text .rating i {
	color: #f7941d;
}

.product__item.sale .product__item__text .rating i:nth-last-child(1) {
	color: #b7b7b7;
}

.product__item:hover .product__item__pic .product__hover {
	right: 20px;
	opacity: 1;
}

.product__item:hover .product__item__text a {
	top: 22px;
	opacity: 1;
	visibility: visible;
}

.product__item:hover .product__item__text h6 {
	opacity: 0;
}

.product__item:hover .product__item__text .product__color__select {
	opacity: 1;
}

.product__item__pic {
	height: 320px;
	position: relative;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.product__item__pic .product-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: transparent;
	padding: 20px;
}

.product__item__pic .label {
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 15px 2px;
    background: #000000;
    position: absolute;
    left: -33px;
    top: -32px;
}

.product__item__pic .product__hover {
	position: absolute;
	right: -200px;
	top: 20px;
	-webkit-transition: all, 0.8s;
	-o-transition: all, 0.8s;
	transition: all, 0.8s;
}

.product__item__pic .product__hover li {
	list-style: none;
	margin-bottom: 10px;
	position: relative;
}

.product__item__pic .product__hover li:hover span {
	opacity: 1;
	visibility: visible;
}

.product__item__pic .product__hover li span {
	color: #ffffff;
	background: #111111;
	display: inline-block;
	padding: 4px 10px;
	font-size: 12px;
	position: absolute;
	left: -78px;
	top: 5px;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__item__pic .product__hover li span:after {
	position: absolute;
	right: -2px;
	top: 5px;
	height: 15px;
	width: 15px;
	background: #111111;
	content: "";
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: -1;
}

.product__item__pic .product__hover li img {
	background: #ffffff;
	padding: 10px;
	display: inline-block;
}

.product__item__text {
	padding-top: 25px;
	position: relative;
}

.product__item__text a {
	font-size: 15px;
	color: #d54928;
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__item__text h6 {
	color: #111111;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 5px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__item__text .rating {
	margin-bottom: 6px;
}

.product__item__text .rating i {
	font-size: 14px;
	color: #b7b7b7;
	margin-right: -5px;
}

.product__item__text h5 {
	color: #0d0d0d;
	font-weight: 700;
}

.product__item__text .product__color__select {
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: 0;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__text .product__color__select label {
	display: inline-block;
	height: 12px;
	width: 12px;
	background: #5e64d1;
	border-radius: 50%;
	margin-bottom: 0;
	margin-right: 5px;
	position: relative;
	cursor: pointer;
}

.product__item__text .product__color__select label.black {
	background: #404a47;
}

.product__item__text .product__color__select label.grey {
	background: #d5a667;
}

.product__item__text .product__color__select label.active:after {
	opacity: 1;
}

.product__item__text .product__color__select label:after {
	position: absolute;
	left: -3px;
	top: -3px;
	height: 18px;
	width: 18px;
	border: 1px solid #b9b9b9;
	content: "";
	border-radius: 50%;
	opacity: 0;
}

.product__item__text .product__color__select label input {
	position: absolute;
	visibility: hidden;
}

/*---------------------
  Shop
-----------------------*/

.shop__sidebar {
	padding-right: 20px;
}

.shop__sidebar__search {
	margin-bottom: 45px;
}

.shop__sidebar__search form {
	position: relative;
}

.shop__sidebar__search form input {
	width: 100%;
	font-size: 15px;
	color: #b7b7b7;
	padding-left: 20px;
	border: 1px solid #e5e5e5;
	height: 42px;
}

.shop__sidebar__search form input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.shop__sidebar__search form input::-moz-placeholder {
	color: #b7b7b7;
}

.shop__sidebar__search form input:-ms-input-placeholder {
	color: #b7b7b7;
}

.shop__sidebar__search form input::-ms-input-placeholder {
	color: #b7b7b7;
}

.shop__sidebar__search form input::placeholder {
	color: #b7b7b7;
}

.shop__sidebar__search form button {
	color: #b7b7b7;
	font-size: 15px;
	border: none;
	background: transparent;
	position: absolute;
	right: 0;
	padding: 0 15px;
	top: 0;
	height: 100%;
}

.shop__sidebar__accordion .card {
	border: none;
	border-radius: 0;
	margin-bottom: 25px;
}

.shop__sidebar__accordion .card:last-child {
	margin-bottom: 0;
}

.shop__sidebar__accordion .card:last-child .card-body {
	padding-bottom: 0;
	border-bottom: none;
}

.shop__sidebar__accordion .card-body {
	padding: 0;
	padding-top: 10px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}

.shop__sidebar__accordion .card-heading {
	cursor: pointer;
}

.shop__sidebar__accordion .card-heading a {
	color: #111111;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	display: block;
}

.shop__sidebar__categories ul,
.shop__sidebar__price ul,
.shop__sidebar__brand ul {
	height: 357px;
}

.shop__sidebar__categories ul li,
.shop__sidebar__price ul li,
.shop__sidebar__brand ul li {
	list-style: none;
}

.shop__sidebar__categories ul li a,
.shop__sidebar__price ul li a,
.shop__sidebar__brand ul li a {
	color: #b7b7b7;
	font-size: 15px;
	line-height: 32px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.shop__sidebar__categories ul li a:hover,
.shop__sidebar__price ul li a:hover,
.shop__sidebar__brand ul li a:hover {
	color: #111111;
}

.shop__sidebar__brand ul {
	height: auto;
}

.shop__sidebar__price ul {
	height: auto;
}

.shop__sidebar__size {
	padding-top: 15px;
}

.shop__sidebar__size label {
	color: #111111;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	border: 1px solid #e5e5e5;
	padding: 6px 25px;
	margin-bottom: 10px;
	margin-right: 5px;
	cursor: pointer;
}

.shop__sidebar__size label.active {
	background: #111111;
	color: #ffffff;
	border-color: #111111;
}

.shop__sidebar__size label input {
	position: absolute;
	visibility: hidden;
}

.shop__sidebar__color {
	padding-top: 15px;
}

.shop__sidebar__color label {
	height: 30px;
	width: 30px;
	border-radius: 50%;
	position: relative;
	margin-right: 10px;
	display: inline-block;
	margin-bottom: 10px;
	cursor: pointer;
}

.shop__sidebar__color label.c-1 {
	background: #0b090c;
}

.shop__sidebar__color label.c-2 {
	background: #20315f;
}

.shop__sidebar__color label.c-3 {
	background: #f1af4d;
}

.shop__sidebar__color label.c-4 {
	background: #636068;
}

.shop__sidebar__color label.c-5 {
	background: #57594d;
}

.shop__sidebar__color label.c-6 {
	background: #e8bac4;
}

.shop__sidebar__color label.c-7 {
	background: #d6c1d7;
}

.shop__sidebar__color label.c-8 {
	background: #ed1c24;
}

.shop__sidebar__color label.c-9 {
	background: #ffffff;
}

.shop__sidebar__color label:after {
	position: absolute;
	left: -3px;
	top: -3px;
	height: 36px;
	width: 36px;
	border: 1px solid #e5e5e5;
	content: "";
	border-radius: 50%;
}

.shop__sidebar__color label input {
	position: absolute;
	visibility: hidden;
}

.shop__sidebar__tags {
	padding-top: 15px;
}

.shop__sidebar__tags a {
	color: #404040;
	font-size: 13px;
	font-weight: 700;
	background: #f1f5f8;
	padding: 5px 18px;
	display: inline-block;
	text-transform: uppercase;
	margin-right: 6px;
	margin-bottom: 10px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.shop__sidebar__tags a:hover {
	background: #111111;
	color: #ffffff;
}

.shop__sidebar__accordion .card-heading a:after,
.shop__sidebar__accordion .card-heading>a.active[aria-expanded=false]:after {
	content: "ï„‡";
	font-family: "FontAwesome";
	font-size: 24px;
	font-weight: 700;
	color: #111111;
	position: absolute;
	right: 0;
	top: 2px;
	line-height: 20px;
}

.shop__sidebar__accordion .card-heading.active a:after {
	content: "ï„‡";
	font-family: "FontAwesome";
	font-size: 24px;
	font-weight: 700;
	color: #111111;
	position: absolute;
	right: 0;
	top: 2px;
	line-height: 20px;
}

.shop__product__option {
	margin-bottom: 45px;
}

.shop__product__option p {
	color: #111111;
	margin-bottom: 0;
}

.shop__product__option__right {
	text-align: right;
}

.shop__product__option__right p {
	display: inline-block;
	margin-bottom: 0;
}

.shop__product__option__right .nice-select {
	float: none;
	display: inline-block;
	padding: 0;
	line-height: 26px;
	height: auto;
	border: none;
	padding-right: 28px;
}

.shop__product__option__right .nice-select:after {
	border-bottom: 1.5px solid #111111;
	border-right: 1.5px solid #111111;
	height: 8px;
	right: 12px;
	width: 8px;
}

.shop__product__option__right .nice-select span {
	color: #111111;
	font-size: 15px;
	font-weight: 700;
}

.shop__product__option__right .nice-select .list {
	border-radius: 0;
}

.product__pagination {
	padding-top: 25px;
	text-align: center;
}

.product__pagination a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	color: #111111;
	height: 30px;
	width: 30px;
	border: 1px solid transparent;
	border-radius: 50%;
	line-height: 30px;
	text-align: center;
}

.product__pagination a.active {
	border-color: #111111;
}

.product__pagination a:hover {
	border-color: #111111;
}

.product__pagination span {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	color: #111111;
	padding-left: 10px;
	padding-right: 15px;
}

/*---------------------
  Shop
-----------------------*/

.product__details__pic {
	/* text-align: center; */
	background: #ffffff;
	padding: 40px 0 0px;
	margin-bottom: 100px;
}

.product__details__pic .nav-tabs {
	border-bottom: none;
	width: 105px;
}

.product__details__pic .nav-tabs .nav-item {
	margin-bottom: 10px;
}

.product__details__pic .nav-tabs .nav-item:last-child {
	margin-bottom: 0;
}

.product__details__pic .nav-tabs .nav-item .nav-link {
	padding: 0;
	display: block;
}

.product__details__pic .nav-tabs .nav-item .nav-link .product__thumb__pic {
	height: 130px;
	width: 95px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.product__details__pic .nav-tabs .nav-item .nav-link .product__thumb__pic i {
	height: 56px;
	width: 56px;
	border: 4px solid #ffffff;
	border-radius: 50%;
	font-size: 20px;
	color: #ffffff;
	line-height: 48px;
	display: inline-block;
	text-align: center;
}

.product__details__pic .nav-tabs .nav-item.show .nav-link,
.product__details__pic .nav-tabs .nav-link.active {
	background-color: transparent;
	border-color: transparent;
}

.product__details__breadcrumb {
	margin-bottom: 30px;
}

.product__details__breadcrumb a {
	font-size: 15px;
	color: #111111;
	margin-right: 18px;
	display: inline-block;
	position: relative;
}

.product__details__breadcrumb a:after {
	position: absolute;
	right: -14px;
	top: 0;
	content: "ï„…";
	font-family: "FontAwesome";
}

.product__details__breadcrumb span {
	font-size: 15px;
	color: #b7b7b7;
	display: inline-block;
}

.product__details__pic__item {
	position: relative;
}

.product__details__pic__item a {
	height: 56px;
	width: 56px;
	border: 4px solid #ffffff;
	border-radius: 50%;
	font-size: 20px;
	color: #ffffff;
	line-height: 48px;
	text-align: center;
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -28px;
	margin-left: -28px;
}

.product__details__text {
	/* text-align: center; */
}

.product__details__text h4 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 10px;
}

.product__details__text .rating {
	margin-bottom: 20px;
}

.product__details__text .rating i {
	font-size: 15px;
	color: #f7941d;
	display: inline-block;
	margin-right: -5px;
}

.product__details__text .rating span {
	display: inline-block;
	color: #3d3d3d;
	margin-left: 5px;
}

.product__details__text h3 {
	color: #0d0d0d;
	font-weight: 700;
	margin-bottom: 16px;
}

.product__details__text h3 span {
	color: #b7b7b7;
	font-size: 20px;
	font-weight: 400;
	margin-left: 10px;
	text-decoration: line-through;
}

.product__details__text p {
	margin-bottom: 35px;
}

.product__details__option {
	margin-bottom: 30px;
}

.product__details__option__size {
	display: inline-block;
	margin-right: 50px;
}

.product__details__option__size span {
	color: #111111;
	display: inline-block;
	margin-right: 10px;
}

.product__details__option__size label {
	color: #111111;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	border: 1px solid #e5e5e5;
	padding: 6px 15px;
	margin-bottom: 0;
	margin-right: 5px;
	cursor: pointer;
}

.product__details__option__size label.active {
	background: #111111;
	color: #ffffff;
	border-color: #111111;
}

.product__details__option__size label input {
	position: absolute;
	visibility: hidden;
}

.product__details__option__color {
	display: inline-block;
	position: relative;
	top: 10px;
}

.product__details__option__color span {
	color: #111111;
	display: inline-block;
	margin-right: 10px;
	position: relative;
	top: -9px;
}

.product__details__option__color label {
	height: 30px;
	width: 30px;
	border-radius: 50%;
	position: relative;
	margin-right: 10px;
	margin-bottom: 0;
	display: inline-block;
	cursor: pointer;
}

.product__details__option__color label.c-1 {
	background: #0b090c;
}

.product__details__option__color label.c-2 {
	background: #20315f;
}

.product__details__option__color label.c-3 {
	background: #f1af4d;
}

.product__details__option__color label.c-4 {
	background: #ed1c24;
}

.product__details__option__color label.c-9 {
	background: #ffffff;
}

.product__details__option__color label:after {
	position: absolute;
	left: -3px;
	top: -3px;
	height: 36px;
	width: 36px;
	border: 1px solid #e5e5e5;
	content: "";
	border-radius: 50%;
}

.product__details__option__color label input {
	position: absolute;
	visibility: hidden;
}

.product__details__cart__option {
	margin-bottom: 25px;
}

.product__details__cart__option .quantity {
	display: inline-block;
	margin-right: 20px;
}

.product__details__cart__option .quantity .pro-qty {
	width: 100px;
	height: 40px;
	border: 1px solid #e5e5e5;
	position: relative;
}

.product__details__cart__option .quantity .pro-qty input {
	color: #0d0d0d;
	font-size: 15px;
	font-weight: 700;
	width: 70px;
	height: 100%;
	text-align: center;
	border: none;
}

.product__details__cart__option .quantity .pro-qty .qtybtn {
	font-size: 18px;
	color: #0d0d0d;
	position: absolute;
	right: 15px;
	top: 3px;
	height: 10px;
	width: 10px;
	cursor: pointer;
	font-weight: 600;
}

.product__details__cart__option .quantity .pro-qty .qtybtn.inc {
	top: 16px;
}

.product__details__btns__option {
	margin-bottom: 40px;
}

.product__details__btns__option a {
	display: inline-block;
	font-size: 13px;
	color: #3d3d3d;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	margin-right: 20px;
}

.product__details__btns__option a:last-child {
	margin-right: 0;
}

.product__details__last__option h5 {
	color: #111111;
	font-weight: 700;
	font-size: 20px;
	position: relative;
	margin-bottom: 26px;
}

.product__details__last__option h5 span {
	background: #ffffff;
	padding: 0 30px;
}

.product__details__last__option h5:before {
	position: absolute;
	left: 0;
	right: 0;
	top: 10px;
	height: 1px;
	width: 460px;
	background: #e5e5e5;
	content: "";
	z-index: -1;
	margin: 0 auto;
}

.product__details__last__option ul {
	padding-top: 40px;
}

.product__details__last__option ul li {
	list-style: none;
	font-size: 15px;
	color: #111111;
	font-weight: 700;
	line-height: 30px;
}

.product__details__last__option ul li span {
	font-weight: 400;
	color: #b7b7b7;
}

.product__details__tab {
	padding-top: 60px;
}

.product__details__tab .nav-tabs {
	border-bottom: 1px solid #e5e5e5;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.product__details__tab .nav-tabs .nav-item {
	margin-right: 50px;
}

.product__details__tab .nav-tabs .nav-item:last-child {
	margin-right: 0;
}

.product__details__tab .nav-tabs .nav-item .nav-link {
	font-size: 20px;
	color: #b7b7b7;
	padding: 0;
	border: none;
	font-weight: 700;
	padding-bottom: 10px;
	border-bottom: 2px solid transparent;
}

.product__details__tab .nav-tabs .nav-item .nav-link.active {
	border-bottom: 2px solid #d54928;
}

.product__details__tab__content {
	padding-top: 35px;
}

.note {
	color: #111111;
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 25px;
}

.product__details__tab__content__item {
	margin-bottom: 30px;
}

.product__details__tab__content__item:last-child {
	margin-bottom: 0;
}

.product__details__tab__content__item h5 {
	color: #111111;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.product__details__tab__content__item p {
	margin-bottom: 0;
}

/*---------------------
  Related
-----------------------*/

.related {
	padding-bottom: 55px;
}

.related-title {
	color: #111111;
	font-weight: 700;
	margin-bottom: 45px;
	text-align: center;
}

/*---------------------
  Footer
-----------------------*/

.footer {
	background: #111 !important;
	padding-top: 70px;
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about .footer__logo {
	margin-bottom: 30px;
}

.footer__about .footer__logo a {
	display: inline-block;
}

.footer__about p {
	color: #ffffff;
	margin-bottom: 30px;
}

.footer__widget {
	margin-bottom: 30px;
}

.footer__widget h6 {
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.footer__widget ul li {
	line-height: 36px;
	list-style: none;
}

.footer__widget ul li a {
	color: #ffffff;
	font-size: 15px;
}

.footer__widget .footer__newslatter p {
	color: #ffffff;
}

.footer__widget .footer__newslatter form {
	position: relative;
}

.footer__widget .footer__newslatter form input {
	width: 100%;
	font-size: 15px;
	color: #3d3d3d;
	background: transparent;
	border: none;
	padding: 15px 0;
	border-bottom: 2px solid #ffffff;
}

.footer__widget .footer__newslatter form input::-webkit-input-placeholder {
	color: #3d3d3d;
}

.footer__widget .footer__newslatter form input::-moz-placeholder {
	color: #3d3d3d;
}

.footer__widget .footer__newslatter form input:-ms-input-placeholder {
	color: #3d3d3d;
}

.footer__widget .footer__newslatter form input::-ms-input-placeholder {
	color: #3d3d3d;
}

.footer__widget .footer__newslatter form input::placeholder {
	color: #3d3d3d;
}

.footer__widget .footer__newslatter form button {
	color: #b7b7b7;
	font-size: 16px;
	position: absolute;
	right: 5px;
	top: 0;
	height: 100%;
	background: transparent;
	border: none;
}

.footer__copyright__text {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
	margin-top: 40px;
}

.footer__copyright__text p {
	color: #ffffff;
	margin-bottom: 0;
}

.footer__copyright__text p i {
	color: #d54928;
}

.footer__copyright__text p a {
	color: #d54928;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option {
	background: #f3f2ee;
	padding: 161px 0;
}

.breadcrumb__text h4 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 8px;
}

.breadcrumb__links a {
	font-size: 15px;
    color: #ffffff;
    margin-right: 18px;
    display: inline-block;
    position: relative;
}

.breadcrumb__links a:after {
	position: absolute;
	right: -14px;
	top: 0;
	content: "ï„…";
	font-family: "FontAwesome";
}

.breadcrumb__links span {
	font-size: 15px;
	color: #ffffff;
	display: inline-block;
}

@media(max-width:767px){
	.banner-element{
		display: none;
	}
}

/*---------------------
  Breadcrumb Blog
-----------------------*/

.breadcrumb-blog {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 350px;
}

.breadcrumb-blog h2 {
	color: #ffffff;
	font-size: 60px;
	font-weight: 700;
}

/*---------------------
  About
-----------------------*/

.about {
	padding-bottom: 70px;
}

.about__pic {
	margin-bottom: 35px;
}

.about__pic img {
	min-width: 100%;
}

.about__item {
	margin-bottom: 30px;
}

.about__item h4 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 10px;
}

.about__item p {
	margin-bottom: 0;
}

/*---------------------
  Testimonial
-----------------------*/

.testimonial {
	background: #f3f2ee;
}

.testimonial__text {
	text-align: center;
	padding: 130px 150px 175px;
}

.testimonial__text span {
	color: #d54928;
	font-size: 72px;
}

.testimonial__text p {
	color: #111111;
	font-size: 20px;
	font-style: italic;
	line-height: 30px;
	padding-top: 12px;
	margin-bottom: 25px;
}

.testimonial__author {
	display: inline-block;
}

.testimonial__author__pic {
	float: left;
	margin-right: 20px;
}

.testimonial__author__pic img {
	height: 60px;
	width: 60px;
	border-radius: 50%;
}

.testimonial__author__text {
	overflow: hidden;
	padding-top: 3px;
}

.testimonial__author__text h5 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 5px;
}

.testimonial__author__text p {
	color: #b7b7b7;
	margin-bottom: 0 !important;
	padding-top: 0;
}

.testimonial__pic {
	height: 600px;
}

/*---------------------
  Counter
-----------------------*/

.counter {
	padding-bottom: 0;
}

.counter .container {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 70px;
}

.counter__item {
	margin-bottom: 30px;
	overflow: hidden;
}

.counter__item .counter__item__number {
	float: left;
	margin-right: 15px;
}

.counter__item .counter__item__number h2 {
	color: #bb9733;
	font-weight: 700;
	font-size: 60px;
	line-height: 50px;
	font-family: 'Oswald';
	display: inline-block;
}

.counter__item .counter__item__number strong {
	color: #bb9733;
    font-weight: 700;
    font-size: 60px;
    line-height: 50px;
    display: inline-block;
    font-family: 'Oswald';
}

.counter__item span {
	display: block;
	color: #3d3d3d;
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
	overflow: hidden;
}

/*---------------------
  Testimonial
-----------------------*/

.team {
	padding-bottom: 70px;
}

.team__item {
	margin-bottom: 30px;
}

.team__item img {
	min-width: 100%;
	margin-bottom: 25px;
}

.team__item h4 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 8px;
}

.team__item span {
	font-size: 15px;
	display: block;
	color: #b7b7b7;
}

/*---------------------
  Clients
-----------------------*/

.clients {
	padding-top: 0;
	padding-bottom: 25px;
}

.client__item {
	display: block;
	margin-bottom: 75px;
	text-align: center;
}

/*---------------------
  Shopping Cart
-----------------------*/

.shopping__cart__table {
	margin-bottom: 30px;
}

.shopping__cart__table table {
	width: 100%;
}

.shopping__cart__table table thead {
	border-bottom: 1px solid #f2f2f2;
}

.shopping__cart__table table thead tr th {
	color: #111111;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	padding-bottom: 25px;
}

.shopping__cart__table table tbody tr {
	border-bottom: 1px solid #f2f2f2;
}

.shopping__cart__table table tbody tr td {
	padding-bottom: 30px;
	padding-top: 30px;
}

.shopping__cart__table table tbody tr td.product__cart__item {
	width: 400px;
}

.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__pic {
	float: left;
	margin-right: 30px;
}

.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__text {
	overflow: hidden;
	padding-top: 21px;
}

.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__text h6 {
	color: #111111;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 10px;
}

.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__text h5 {
	color: #0d0d0d;
	font-weight: 700;
}

.shopping__cart__table table tbody tr td.quantity__item {
	width: 175px;
}

.shopping__cart__table table tbody tr td.quantity__item .quantity .pro-qty-2 {
	width: 80px;
}

.shopping__cart__table table tbody tr td.quantity__item .quantity .pro-qty-2 input {
	width: 50px;
	border: none;
	text-align: center;
	color: #111111;
	font-size: 16px;
}

.shopping__cart__table table tbody tr td.quantity__item .quantity .pro-qty-2 .qtybtn {
	font-size: 16px;
	color: #888888;
	width: 10px;
	cursor: pointer;
}

.shopping__cart__table table tbody tr td.cart__price {
	color: #111111;
	font-size: 18px;
	font-weight: 700;
	width: 140px;
}

.shopping__cart__table table tbody tr td.cart__close i {
	font-size: 18px;
	color: #111111;
	height: 40px;
	width: 40px;
	background: #f3f2ee;
	border-radius: 50%;
	line-height: 40px;
	text-align: center;
}

.continue__btn.update__btn {
	text-align: right;
}

.continue__btn.update__btn a {
	color: #ffffff;
	background: #111111;
	border-color: #111111;
}

.continue__btn.update__btn a i {
	margin-right: 5px;
}

.continue__btn a {
	color: #111111;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	border: 1px solid #e1e1e1;
	padding: 14px 35px;
	display: inline-block;
}

.cart__discount {
	margin-bottom: 60px;
}

.cart__discount h6 {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.cart__discount form {
	position: relative;
}

.cart__discount form input {
	font-size: 14px;
	color: #b7b7b7;
	height: 50px;
	width: 100%;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
}

.cart__discount form input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.cart__discount form input::-moz-placeholder {
	color: #b7b7b7;
}

.cart__discount form input:-ms-input-placeholder {
	color: #b7b7b7;
}

.cart__discount form input::-ms-input-placeholder {
	color: #b7b7b7;
}

.cart__discount form input::placeholder {
	color: #b7b7b7;
}

.cart__discount form button {
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: #111111;
	padding: 0 30px;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
}

.cart__total {
	background: #f3f2ee;
	padding: 35px 40px 40px;
}

.cart__total h6 {
	color: #111111;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.cart__total ul {
	margin-bottom: 25px;
}

.cart__total ul li {
	list-style: none;
	font-size: 16px;
	color: #444444;
	line-height: 40px;
	overflow: hidden;
}

.cart__total ul li span {
	font-weight: 700;
	color: #d54928;
	float: right;
}

.cart__total .primary-btn {
	display: block;
	padding: 12px 10px;
	text-align: center;
	letter-spacing: 2px;
}

/*---------------------
  Checkout
-----------------------*/

.coupon__code {
	color: #0d0d0d;
	font-size: 14px;
	border-top: 2px solid #77b527;
	background: #f5f5f5;
	padding: 23px 30px 18px;
	margin-bottom: 50px;
}

.coupon__code span {
	margin-right: 15px;
}

.coupon__code a {
	color: #0d0d0d;
}

.checkout__title {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 25px;
	margin-bottom: 30px;
}

.checkout__input {
	margin-bottom: 6px;
}

.checkout__input p {
	color: #111111;
	margin-bottom: 12px;
}

.checkout__input p span {
	color: #d54928;
}

.checkout__input input {
	height: 50px;
	width: 100%;
	border: 1px solid #e1e1e1;
	font-size: 14px;
	color: #b7b7b7;
	padding-left: 20px;
	margin-bottom: 20px;
}

.checkout__input input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.checkout__input input::-moz-placeholder {
	color: #b7b7b7;
}

.checkout__input input:-ms-input-placeholder {
	color: #b7b7b7;
}

.checkout__input input::-ms-input-placeholder {
	color: #b7b7b7;
}

.checkout__input input::placeholder {
	color: #b7b7b7;
}

.checkout__input__checkbox label {
	font-size: 15px;
	color: #0d0d0d;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	margin-bottom: 16px;
	display: block;
}

.checkout__input__checkbox label input {
	position: absolute;
	visibility: hidden;
}

.checkout__input__checkbox label input:checked~.checkmark {
	border-color: #d54928;
}

.checkout__input__checkbox label input:checked~.checkmark:after {
	opacity: 1;
}

.checkout__input__checkbox label .checkmark {
	position: absolute;
	left: 0;
	top: 3px;
	height: 14px;
	width: 14px;
	border: 1.5px solid #d7d7d7;
	content: "";
	border-radius: 2px;
}

.checkout__input__checkbox label .checkmark:after {
	position: absolute;
	left: 1px;
	top: -3px;
	width: 14px;
	height: 7px;
	border: solid #d54928;
	border-width: 1.5px 1.5px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	content: "";
	opacity: 0;
}

.checkout__input__checkbox p {
	color: #0d0d0d;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 22px;
}

.checkout__order {
	background: #f3f2ee;
	padding: 30px;
}

.checkout__order .order__title {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 1px solid #d7d7d7;
	padding-bottom: 25px;
	margin-bottom: 30px;
}

.checkout__order p {
	color: #444444;
	font-size: 16px;
	line-height: 28px;
}

.checkout__order .site-btn {
	width: 100%;
	margin-top: 8px;
}

.checkout__order__products {
	font-size: 16px;
	color: #111111;
	overflow: hidden;
	margin-bottom: 18px;
}

.checkout__order__products span {
	float: right;
}

.checkout__total__products {
	margin-bottom: 20px;
}

.checkout__total__products li {
	font-size: 16px;
	color: #444444;
	list-style: none;
	line-height: 26px;
	overflow: hidden;
	margin-bottom: 15px;
}

.checkout__total__products li:last-child {
	margin-bottom: 0;
}

.checkout__total__products li span {
	color: #111111;
	float: right;
}

.checkout__total__all {
	border-top: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
	padding: 15px 0;
	margin-bottom: 26px;
}

.checkout__total__all li {
	list-style: none;
	font-size: 16px;
	color: #111111;
	line-height: 40px;
	overflow: hidden;
}

.checkout__total__all li span {
	color: #d54928;
	font-weight: 700;
	float: right;
}

/*---------------------
    Blog
-----------------------*/

.blog {
	padding-bottom: 55px;
}

.latest {
	padding-bottom: 55px;
}

.blog__item {
	margin-bottom: 45px;
}

.blog__item:hover a::after {
	width: 40px;
	background: #d54928;
}

.blog__item:hover .blog__item__text {
	-webkit-box-shadow: 0px 15px 60px rgba(67, 69, 70, 0.05);
	box-shadow: 0px 15px 60px rgba(67, 69, 70, 0.05);
}

.blog__item__pic {
	height: 270px;
}

.blog__item__text {
	padding: 30px 30px 25px;
	margin: 0 30px;
	margin-top: -35px;
	background: #ffffff;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__item__text span {
	color: #3d3d3d;
	font-size: 13px;
	display: block;
	margin-bottom: 10px;
}

.blog__item__text span img {
	margin-right: 6px;
}

.blog__item__text h5 {
	color: #0d0d0d;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 10px;
}

.blog__item__text a {
	display: inline-block;
	color: #111111;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	padding: 3px 0;
	position: relative;
}

.blog__item__text a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #111111;
	content: "";
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar__item {
	text-align: center;
	margin-bottom: 65px;
}

.blog__sidebar__item:last-child {
	margin-bottom: 0;
}

.blog__sidebar__item form input {
	height: 50px;
	font-size: 15px;
	color: #444444;
	padding-left: 20px;
	border: 1px solid #e1e1e1;
	width: 100%;
	margin-bottom: 20px;
}

.blog__sidebar__item form input::-webkit-input-placeholder {
	color: #444444;
}

.blog__sidebar__item form input::-moz-placeholder {
	color: #444444;
}

.blog__sidebar__item form input:-ms-input-placeholder {
	color: #444444;
}

.blog__sidebar__item form input::-ms-input-placeholder {
	color: #444444;
}

.blog__sidebar__item form input::placeholder {
	color: #444444;
}

.blog__sidebar__title {
	text-align: center;
	margin-bottom: 35px;
}

.blog__sidebar__title h4 {
	color: #111111;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
}

.blog__sidebar__title h4::before {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5px;
	width: 70px;
	background: #e1e1e1;
	content: "";
	margin: 0 auto;
}

.blog__sidebar__social a {
	display: inline-block;
	font-size: 18px;
	color: #111111;
	width: 50px;
	height: 50px;
	background: #f2f2f2;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	margin-right: 6px;
}

.blog__sidebar__social a:last-child {
	margin-right: 6px;
}

.recent__item {
	display: block;
	overflow: hidden;
	margin-bottom: 25px;
	text-align: left;
}

.recent__item__pic {
	float: left;
	margin-right: 25px;
}

.recent__item__text {
	overflow: hidden;
}

.recent__item__text h6 {
	color: #111111;
	line-height: 21px;
	font-weight: 700;
}

.recent__item__text span {
	font-size: 13px;
	color: #888888;
}

/*---------------------
  Blog Hero
-----------------------*/

.blog-hero {
	background: #f3f2ee;
	padding-top: 125px;
	padding-bottom: 190px;
}

.blog__hero__text h2 {
	color: #111111;
	font-size: 42px;
	font-weight: 700;
	line-height: 50px;
	margin-bottom: 18px;
}

.blog__hero__text ul li {
	list-style: none;
	font-size: 15px;
	color: #3d3d3d;
	display: inline-block;
	margin-right: 40px;
	position: relative;
}

.blog__hero__text ul li:after {
	position: absolute;
	right: -25px;
	top: 0;
	content: "|";
}

.blog__hero__text ul li:last-child {
	margin-right: 0;
}

.blog__hero__text ul li:last-child:after {
	display: none;
}

/*---------------------
  Blog Details
-----------------------*/

.blog-details {
	margin-top: -115px;
	padding-top: 0;
}

.blog__details__content {
	position: relative;
}

.blog__details__pic {
	margin-bottom: 60px;
}

.blog__details__pic img {
	min-width: 100%;
	border-radius: 5px;
}

.blog__details__share {
	text-align: center;
	position: absolute;
	left: -120px;
	top: 0;
}

.blog__details__share span {
	color: #111111;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	display: block;
	margin-bottom: 30px;
}

.blog__details__share ul li {
	list-style: none;
	margin-bottom: 15px;
}

.blog__details__share ul li a {
	color: #ffffff;
	font-size: 18px;
	height: 46px;
	display: inline-block;
	width: 46px;
	border-radius: 50%;
	line-height: 46px;
	text-align: center;
	background: #4267b2;
}

.blog__details__share ul li a.twitter {
	background: #1da1f2;
}

.blog__details__share ul li a.youtube {
	background: #fe0003;
}

.blog__details__share ul li a.linkedin {
	background: #0173b2;
}

.blog__details__text {
	margin-bottom: 50px;
}

.blog__details__text p {
	font-size: 18px;
	line-height: 34px;
}

.blog__details__text p:last-child {
	margin-bottom: 0;
}

.blog__details__quote {
	background: #f3f2ee;
	padding: 50px 40px 35px;
	border-radius: 5px;
	position: relative;
	margin-bottom: 45px;
}

.blog__details__quote i {
	font-size: 16px;
	color: #ffffff;
	height: 50px;
	width: 50px;
	background: #d54928;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	position: absolute;
	left: 40px;
	top: -25px;
}

.blog__details__quote p {
	color: #111111;
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
	margin-bottom: 20px;
}

.blog__details__quote h6 {
	color: #d54928;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
}

.blog__details__option {
	border-top: 1px solid #e5e5e5;
	padding-top: 15px;
	margin-bottom: 70px;
}

.blog__details__author__pic {
	display: inline-block;
	margin-right: 15px;
}

.blog__details__author__pic img {
	height: 46px;
	width: 46px;
	border-radius: 50%;
}

.blog__details__author__text {
	display: inline-block;
}

.blog__details__author__text h5 {
	color: #111111;
	font-weight: 700;
}

.blog__details__tags {
	text-align: right;
}

.blog__details__tags a {
	display: inline-block;
	color: #111111;
	font-weight: 700;
	margin-right: 10px;
}

.blog__details__tags a:last-child {
	margin-right: 0;
}

.blog__details__btns {
	margin-bottom: 40px;
}

.blog__details__btns__item {
	display: block;
	border: 1px solid #ebebeb;
	padding: 25px 30px 30px;
	margin-bottom: 30px;
}

.blog__details__btns__item.blog__details__btns__item--next {
	text-align: right;
}

.blog__details__btns__item.blog__details__btns__item--next p span {
	margin-right: 0;
	margin-left: 5px;
}

.blog__details__btns__item p {
	color: #b7b7b7;
	margin-bottom: 10px;
}

.blog__details__btns__item p span {
	font-size: 20px;
	position: relative;
	top: 4px;
	margin-right: 5px;
}

.blog__details__btns__item h5 {
	color: #111111;
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
}

.blog__details__comment h4 {
	color: #333333;
	font-weight: 700;
	margin-bottom: 35px;
	text-align: center;
}

.blog__details__comment form input {
	height: 50px;
	width: 100%;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
	font-size: 15px;
	color: #b7b7b7;
	margin-bottom: 30px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__details__comment form input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form input::-moz-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form input:-ms-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form input::-ms-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form input::placeholder {
	color: #b7b7b7;
}

.blog__details__comment form input:focus {
	border-color: #000000;
}

.blog__details__comment form textarea {
	height: 120px;
	width: 100%;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
	padding-top: 12px;
	font-size: 15px;
	color: #b7b7b7;
	margin-bottom: 24px;
	resize: none;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__details__comment form textarea::-webkit-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form textarea::-moz-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form textarea:-ms-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form textarea::-ms-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form textarea::placeholder {
	color: #b7b7b7;
}

.blog__details__comment form textarea:focus {
	border-color: #000000;
}

.blog__details__comment form button {
	letter-spacing: 4px;
	padding: 14px 35px;
}

/*---------------------
  Map
-----------------------*/

.map {
	height: 500px;
}

.map iframe {
	width: 100%;
}

/*---------------------
  Contact
-----------------------*/

.contact__text .section-title {
	text-align: left;
	margin-bottom: 40px;
}

.contact__text .section-title h2 {
	font-size: 48px;
	margin-bottom: 18px;
}

.contact__text .section-title p {
	color: #707070;
	line-height: 26px;
	margin-bottom: 0;
}

.contact__text ul li {
	list-style: none;
	margin-bottom: 26px;
}

.contact__text ul li:last-child {
	margin-bottom: 0;
}

.contact__text ul li h4 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 8px;
}

.contact__text ul li p {
	line-height: 27px;
	margin-bottom: 0;
}

.contact__form input {
	height: 50px;
	width: 100%;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
	font-size: 15px;
	color: #b7b7b7;
	margin-bottom: 30px;
}

.contact__form input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.contact__form input::-moz-placeholder {
	color: #b7b7b7;
}

.contact__form input:-ms-input-placeholder {
	color: #b7b7b7;
}

.contact__form input::-ms-input-placeholder {
	color: #b7b7b7;
}

.contact__form input::placeholder {
	color: #b7b7b7;
}

.contact__form textarea {
	height: 150px;
	width: 100%;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
	padding-top: 12px;
	font-size: 15px;
	color: #b7b7b7;
	margin-bottom: 24px;
	resize: none;
}

.contact__form textarea::-webkit-input-placeholder {
	color: #b7b7b7;
}

.contact__form textarea::-moz-placeholder {
	color: #b7b7b7;
}

.contact__form textarea:-ms-input-placeholder {
	color: #b7b7b7;
}

.contact__form textarea::-ms-input-placeholder {
	color: #b7b7b7;
}

.contact__form textarea::placeholder {
	color: #b7b7b7;
}

.contact__form button {
	letter-spacing: 4px;
	padding: 14px 35px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@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) {
	.categories__text h2 {
		font-size: 26px;
	}
	.header__menu ul li {
		margin-right: 38px;
	}
	.hero__slider.owl-carousel .owl-nav button {
		left: 2px;
	}
	.hero__slider.owl-carousel .owl-nav button.owl-next {
		right: 2px;
	}
	.testimonial__text {
		padding: 130px 45px 175px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header__menu ul li {
		margin-right: 10px;
	}
	.header__nav__option a {
		margin-right: 10px;
	}
	.header__nav__option .price {
		margin-left: 0;
	}
	.hero__slider.owl-carousel .owl-nav button {
		left: 2px;
	}
	.hero__slider.owl-carousel .owl-nav button.owl-next {
		right: 2px;
	}
	.banner__item.banner__item--middle {
		margin-top: 0;
	}
	.banner__item.banner__item--last {
		margin-top: 0;
	}
	.banner__item {
		margin-bottom: 40px;
	}
	.banner {
		padding-bottom: 60px;
	}
	.categories__text {
		margin-bottom: 40px;
	}
	.categories__hot__deal {
		margin-bottom: 40px;
	}
	.instagram__text {
		padding-top: 70px;
	}
	.shop__sidebar {
		padding-right: 0;
		padding-top: 40px;
	}
	.cart__discount {
		margin-top: 40px;
	}
	.testimonial__text {
		padding: 100px 105px 100px;
	}
	.blog__details__share {
		position: relative;
		left: 0;
		margin-bottom: 18px;
	}
	.blog__details__share span {
		margin-bottom: 14px;
		margin-right: 0;
	}
	.blog__details__share ul li {
		margin-bottom: 15px;
		display: inline-block;
		margin-right: 10px;
	}
	.blog__details__share ul li:last-child {
		margin-right: 0;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.canvas__open {
		display: block;
		font-size: 22px;
		color: #ffffff;
		background: #f3c952;
		height: 50px;
		width: 50px;
		padding: 7px;
		line-height: 35px;
		text-align: center;
		border-radius: 100%;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 25px;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		width: 300px;
		height: 100%;
		background: #ffffff;
		padding: 50px 20px 30px 30px;
		display: block;
		
		z-index: 9999;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
	}
	.offcanvas-menu-wrapper.active {
		opacity: 1;
		left: 0;
	}
	.offcanvas__menu {
		display: none;
	}
	.slicknav_btn {
		display: none;
	}
	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 20px;
	}
	.slicknav_nav ul {
		margin: 0;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 7px 0;
		margin: 0;
		color: #111111;
		font-weight: 600;
	}
	.slicknav_nav .slicknav_arrow {
		color: #111111;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #111111;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #111111;
	}
	.slicknav_nav {
		display: block !important;
	}
	.offcanvas__option {
		text-align: center;
		margin-bottom: 30px;
	}
	.offcanvas__links {
		display: inline-block;
		margin-right: 25px;
	}
	.offcanvas__links a {
		color: #111111;
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 2px;
		margin-right: 16px;
		display: inline-block;
		font-weight: 600;
	}
	.offcanvas__links a:last-child {
		margin-right: 0;
	}
	.offcanvas__top__hover {
		display: inline-block;
		position: relative;
	}
	.offcanvas__top__hover:hover ul {
		top: 24px;
		opacity: 1;
		visibility: visible;
	}
	.offcanvas__top__hover span {
		color: #111111;
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 2px;
		display: inline-block;
		cursor: pointer;
		font-weight: 600;
	}
	.offcanvas__top__hover span i {
		font-size: 20px;
		position: relative;
		top: 3px;
		right: 2px;
	}
	.offcanvas__top__hover ul {
		background: #111111;
		display: inline-block;
		padding: 2px 0;
		position: absolute;
		left: 0;
		top: 44px;
		opacity: 0;
		visibility: hidden;
		z-index: 3;
		-webkit-transition: all, 0.3s;
		-o-transition: all, 0.3s;
		transition: all, 0.3s;
	}
	.offcanvas__top__hover ul li {
		list-style: none;
		font-size: 13px;
		color: #ffffff;
		padding: 2px 15px;
		cursor: pointer;
	}
	.offcanvas__nav__option {
		text-align: center;
		margin-bottom: 25px;
	}
	.offcanvas__nav__option a {
		display: inline-block;
		margin-right: 26px;
		position: relative;
	}
	.offcanvas__nav__option a span {
		color: #0d0d0d;
		font-size: 11px;
		position: absolute;
		left: 5px;
		top: 8px;
	}
	.offcanvas__nav__option a:last-child {
		margin-right: 0;
	}
	.offcanvas__nav__option .price {
		font-size: 15px;
		color: #111111;
		font-weight: 700;
		display: inline-block;
		margin-left: -20px;
		position: relative;
		top: 3px;
	}
	.offcanvas__text p {
		color: #111111;
		margin-bottom: 0;
	}
	.header__top {
		display: none;
	}
	.header .container {
		position: relative;
	}
	.header__menu {
		display: none;
	}
	.header__nav__option {
		display: none;
	}
	.search-model-form input {
		width: 100%;
		font-size: 24px;
	}
	.hero__slider.owl-carousel .owl-nav button {
		left: 15px;
		top: 80%;
	}
	.hero__slider.owl-carousel .owl-nav button.owl-next {
		left: 75px;
		right: 0;
	}
	.banner__item.banner__item--middle {
		margin-top: 0;
	}
	.banner__item.banner__item--last {
		margin-top: 0;
	}
	.banner__item {
		margin-bottom: 40px;
	}
	.banner {
		padding-bottom: 60px;
	}
	.banner__item__pic {
		float: none;
	}
	.banner__item__pic img {
		min-width: 100%;
	}
	.banner__item__text {
		max-width: 100%;
		position: relative;
		top: 0;
		padding-top: 22px;
	}
	.filter__controls li {
		margin-right: 15px;
	}
	.categories__text {
		margin-bottom: 40px;
	}
	.categories__hot__deal {
		margin-bottom: 40px;
	}
	.instagram__text {
		padding-top: 70px;
	}
	.instagram__pic__item {
		width: 50%;
	}
	.shop__product__option__right {
		text-align: left;
		padding-top: 20px;
	}
	.shop__sidebar {
		padding-right: 0;
		margin-bottom: 40px;
	}
	.testimonial__text {
		padding: 100px 40px 100px;
	}
	.product__details__breadcrumb {
		text-align: left;
	}
	.product__details__pic .nav-tabs {
		width: auto;
		margin-bottom: 40px;
	}
	.product__details__pic .nav-tabs .nav-item {
		margin-bottom: 0;
		margin-right: 10px;
	}
	.product__details__option__size {
		display: block;
		margin-right: 0;
		margin-bottom: 25px;
	}
	.product__details__last__option h5:before {
		width: 440px;
	}
	.product__details__tab .nav-tabs .nav-item {
		margin-bottom: 15px;
	}
	.shopping__cart__table {
		overflow-y: auto;
	}
	.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__pic {
		float: none;
		margin-right: 0;
	}
	.continue__btn {
		text-align: center;
	}
	.continue__btn.update__btn {
		text-align: center;
		margin-top: 20px;
	}
	.cart__discount {
		margin-top: 40px;
	}
	.checkout__order {
		margin-top: 20px;
	}
	.blog__details__share {
		position: relative;
		left: 0;
		margin-bottom: 18px;
	}
	.blog__details__share span {
		margin-bottom: 14px;
		margin-right: 0;
	}
	.blog__details__share ul li {
		margin-bottom: 15px;
		display: inline-block;
		margin-right: 10px;
	}
	.blog__details__share ul li:last-child {
		margin-right: 0;
	}
	.blog__details__author {
		text-align: center;
		margin-bottom: 20px;
	}
	.blog__details__tags {
		text-align: center;
	}
	.contact__text {
		margin-bottom: 40px;
	}
	.hero__social {
		margin-top: 180px;
	}

	.three-poster {
		padding: 0px !important;
	}

	
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.cart__total {
		padding: 35px 30px 40px;
	}
	.hero__items {
		height: auto;
		padding-top: 130px;
		padding-bottom: 40px;
	}
	.hero__text h2 {
		font-size: 36px;
		line-height: 48px;
	}
	.hero__social {
		margin-top: 145px;
	}
	.categories__deal__countdown .categories__deal__countdown__timer {
		margin-left: 0;
	}
	.instagram__pic__item {
		width: 100%;
	}
	.testimonial__text {
		padding: 60px 40px 60px;
	}
	/* .product__details__pic .nav-tabs .nav-item .nav-link .product__thumb__pic {
		width: 100%;
	} */

	.product__details__pic .nav-tabs .nav-item .nav-link .product__thumb__pic {
		height: 110px;
		width: 75px;
	}
	.product__details__pic .nav-tabs .nav-item {
		margin-bottom: 10px;
		width: calc(33.33% - 10px);
	}
	.product__details__last__option h5:before {
		width: 280px;
	}
	.product__details__cart__option .quantity {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.product__details__last__option h5 span {
		font-size: 16px;
	}
	.blog__hero__text h2 {
		font-size: 36px;
	}
	.categories__text h2 {
		font-size: 30px;
		line-height: 55px;
	}
	.categories__text:before {
		height: 250px;
	}
	.three-poster {
		padding: 0px;
	}
	.btn-two-outer {
        padding-right: 3px;
        left: 23px !important;
        top: 1em !important;
        padding-top: 6px;
}


.shape-imgd {
    bottom: 41px !important;
    left: -30px !important;
    width: 101px !important;
}

.shape-img {
    bottom: 13px !important;
    left: -38px !important;
    top: 17em !important;
    width: 70% !important;
}

.features_products {
    margin-top: -3rem !important;
    margin-bottom: 0rem !important;

}

.middle_button {
    padding-top: 5em !important;
	padding: 75px !important;
}

.vie_more {
    margin-top: 0rem !important;
    margin-bottom: 3em !important;
}

/* counter  */
.counter__item span {
    text-align: center;
    margin-top: 1em;
}
.counter__item .counter__item__number {
    float: none;
    margin-right: 15px;
    text-align: center;
}

.counter__item {
    margin-bottom: 30px;
    overflow: hidden;
    margin: 0em;
    width: 100%;
}

.button {
    position: absolute;
    width: 500px;
	left: -94px !important;
    top: 147px !important;
}
}

/* new css start from here */

.tab-content{
    text-align: center;
  }

/* 
  .features-bg::before {
	content: "";
	position: absolute;
	left: 0;
	top: -41px;
	width: 100%;
	height: 41px;
	background-image: url(../img/Product_random/features_shape01.png);
	background-repeat: repeat-x;
	background-position: center;
  } */


  .protein_banner-one{
	/* background-position: -26px 0px; */
    background-repeat: no-repeat;
    background-size: cover;
	height: auto;
  }
  .protein_banner-two{
	/* background-position: -26px 0px; */
    background-repeat: no-repeat;
    background-size: cover;
	height: auto;
  }
  .protein_banner-three{
	/* background-position: -26px 0px; */
    background-repeat: no-repeat;
    background-size: cover;
	height: auto;
  }


  .three-poster{
	background: black;
    padding: 36px;
  }

  /* .protein_banner-one .content-overlay {
	background: rgba(0,0,0,0.7);
	position: absolute;
	height: 99%;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
  }
  
  .protein_banner-one:hover .content-overlay{
	opacity: 1;
  } */

  
.overlay {
	position: absolute;
	top: 0;
	left: 16px;
    /* width: 96%; */
    width: 360px;
    height: 100%;
	background: rgba(0, 0, 0, 0);
	transition: background 0.5s ease;
  }
  
  .container:hover .overlay {
	display: block;
	background: rgba(0, 0, 0, .3);
  }
  

  .button {
	position: absolute;
    width: 500px;
    left: -52px;
    top: 280px;
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease;
  }
  
  .button a {
	width: 200px;
    padding: 12px 48px;
    text-align: center;
    background: #1b1e25;
    color: white;
    border: solid 1px white;
    z-index: 1;

  }
  
  .protein_banner-one:hover .button {
	opacity: 1;
  }
  
  .protein_banner-two:hover .button {
	opacity: 1;
  }
  
  .protein_banner-three:hover .button {
	opacity: 1;
  }
  

  .cool-prallex{
	background: url(../img/product_random/one-banner.jpg);
	/* Set a specific height */
	min-height: 250px; 

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

  }

  .cool-prallex-one{
	background: url(../img/product_random/two_banner.jpg);
	/* Set a specific height */
	min-height: 250px; 

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  }
  .cool-prallex-two{
	background: url(../img/product_random/three_banner.jpg);
	/* Set a specific height */
	min-height: 250px; 

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  }

  .middle_button{
	text-align: center;
    padding: 222px;
  }

  @media (min-width: 768px) {
    .mobile-banner{
          display: none;
	}
}
@media (max-width: 768px) {
    .dextop_banner{
     display: none;
    }
}

.wrapper {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	justify-content: center;
  }
  .wrapper > * {
	margin: 0 1rem 2rem;
  }
  
  /**************************************************
  ** CARDS STYLING 
  ***************************************************/
  /* Card outside box. Here is where the 
  ** dimensions, shadows and borders are set 
  ------------------------------------------ */
  .cards {
	position: relative;
	overflow: hidden;
	display: flex;
  
	width: 100%; /* Box dimensions */
	height: auto;
	border: none;
	margin-bottom: 1em;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
	  0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	transition: box-shadow 0.56s ease-in-out; /* Animation */
	/* background-color: rgba(0,0,0,.2); /* for debugging */
  }
  /* Shows an outer shadow */
  .cards:hover {
	/* Just for styling */
	cursor: pointer;
	box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14),
	  0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
  }
  
  /* Cards titles styling
  ------------------------------------------ */
  .card__title {
	/* Just for styling */
	align-self: flex-end;
	padding: 0.5rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 2rem;
	line-height: 1;
	font-weight: 600;
  }
  
  /* Styles for:
  ** - Using IMG tag inside a container
  ------------------------------------------ */
  /* The image container */
  .card__thumbnail {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center; /* horizontal center */
	align-items: center; /* vertical center */
  
	width: 100%; /* Thumbnail dimensions. */
	height: 100%; /*** Change the height to make the image smaller ***/
	/* background-color: rgba(0,0,0,.2);  /* for debugging */
  }
  /* Sets the image dimensions */
  .card__thumbnail > img {
	/* Tip: use 1:1 ratio images */
	height: 100%; /* or width when img.width > img.height */
  }
  /* Styles the title inside the img container */
  .card__thumbnail > .card__title {
	/* Just for styling */
	position: absolute;
	left: 0;
	bottom: 0;
  }
  
/*------------------------------------------
	Theme Colors Class
--------------------------------------------*/
.white {
  color: white !important;
}

.black {
  color: #333740 !important;
}

.green {
  color: #111 !important;
}

.bg-white {
  background: white !important;
}

.bg-black {
  background: #333740 !important;
}

.bg-green {
  background: #111 !important;
}

/*------------------------------------------
	Global Class
--------------------------------------------*/
.ral {
  font-family: "Raleway", sans-serif;
}

.lato {
  font-family: "Lato", sans-serif;
}

.cou {
  font-family: "Courgette", cursive;
}

.pd-0 {
  padding: 0;
}

.pdl-0 {
  padding-left: 0;
}

.pdr-0 {
  padding-right: 0;
}

.pdb-0 {
  padding-bottom: 0;
}

.mr-0 {
  margin: 0 !important;
}

.mrl-0 {
  margin-left: 0;
}

.mrr-0 {
  margin-right: 0;
}

.mrt-0 {
  margin-top: 0 !important;
}

.mrb-0 {
  margin-bottom: 0 !important;
}

.mr-auto {
  margin: 0 auto;
}

.pos-r {
  position: relative;
}

.pos-a {
  position: absolute;
}

.width-auto {
  width: auto !important;
}

.display-block {
  display: block;
}

.display-inline-block {
  display: inline-block;
}

.border-0 {
  border: 0;
}

.focus-none:focus {
  box-shadow: none;
  border-color: transparent;
}

.border-radius-0 {
  border-radius: 0;
}

.border-transparent {
  border-color: transparent;
}
.border-transparent:active, .border-transparent:focus {
  border-color: transparent;
}

.bg-transparent {
  background: transparent;
}

.container-1650 {
  max-width: 1650px;
}

.cursor-pointer {
  cursor: pointer;
}

.page-title {
  padding-bottom: 23px;
}
.page-title .page-sub-title {
  font-family: "Courgette", cursive;
  color: #111;
  font-size: 14px;
}
.page-title .page-main-title {
  font-size: 20px;
  font-weight: 600;
}

.vigo-btn {
  font-size: 12px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
}
.vigo-btn:hover {
  color: #111 !important;
  background: white !important;
  border: 1px solid #111 !important;
}

.hvr-shutter-out-horizontal {
  transition-duration: 0.50s !important;
}
.hvr-shutter-out-horizontal:hover {
  border-color: #111;
  color: #111 !important;
}
.hvr-shutter-out-horizontal:before {
  background: white;
  transition-duration: 0.50s;
}

.hvr-shutter-in-horizontal {
  transition-duration: 0.50s !important;
}
.hvr-shutter-in-horizontal:before {
  background: white;
  transition-duration: 0.50s;
}
.hvr-shutter-in-horizontal:hover {
  border-color: white !important;
  color: white !important;
  background: #111 !important;
}

.white-btn:hover {
  background: #111 !important;
  color: white !important;
  border-color: white !important;
  transform: translateY(-5px);
}

.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.highlight-text {
  font-weight: 700;
}

.before-none:before {
  display: none;
}

.vigo-loder {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #111;
  z-index: 30;
}

.mixitup-control-active {
  color: #111 !important;
}

.sk-rotating-plane {
  width: 40px;
  height: 40px;
  background-color: #fff;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateY(-50%);
  margin: 0;
  -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
  animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }

  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }

  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
#container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}

#play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: url(../img/play-button.png) no-repeat 50% 50%;
  background-size: auto, cover;
  z-index: 10;
}

.page-title {
  position: relative;
}
.page-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 80px;
  border-radius: 20px;
  background: #111;
}

/* ==========================
	Custom Media Query
============================= */
@media (min-width: 1024px) {
  body {
    font-size: 15px;
    line-height: 25px;
    font-family: "Lato", sans-serif;
  }

  h1 {
    font-size: 72px;
    line-height: 82px;
    font-weight: 400;
  }

  h2 {
    font-size: 47px;
    line-height: 41px;
    font-weight: 500;
  }

  h3 {
    font-size: 36px;
    line-height: 35px;
  }

  h4 {
    font-size: 34px;
    line-height: 38px;
  }

  h5 {
    font-size: 24px;
    line-height: 35px;
  }

  h6 {
    font-size: 18px;
    line-height: 35px;
  }

  i {
    line-height: 1 !important;
  }

  .page-title .page-sub-title {
    line-height: 1;
  }
  .page-title .page-main-title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .custom-container {
    max-width: 1650px;
  }

  .vigo-btn {
    font-size: 18px;
    padding-left: 25px !important;
    padding-right: 25px !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    font-weight: 300;
    letter-spacing: 1px;
  }

  .page-title {
    padding-bottom: 30px;
    margin-bottom: 50px;
    position: relative;
  }
  .page-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 80px;
    border-radius: 20px;
    background: #111;
  }
  .page-title .page-sub-title {
    font-size: 24px;
    line-height: 34px;
  }
  .page-title .page-main-title {
    font-size: 34px;
    line-height: 44px;
    color: #333740;
  }

  .is-sticky .main-nav {
    border-bottom: 1px solid #c8c8c8;
  }

  .hvr-shutter-out-horizontal {
    padding-left: 24px;
    padding-right: 24px;
    overflow: hidden;
  }
  .hvr-shutter-out-horizontal:hover {
    border-color: #111;
    color: #111 !important;
  }
  .hvr-shutter-out-horizontal:before {
    background: white;
    transition-duration: 0.50s;
  }

  .hvr-shutter-in-horizontal {
    padding-left: 24px;
    padding-right: 24px;
    overflow: hidden;
  }
  .hvr-shutter-in-horizontal:before {
    background: white;
    transition-duration: 0.50s;
  }
  .hvr-shutter-in-horizontal:hover {
    border-color: white !important;
    color: white !important;
    background: #111 !important;
  }
}
@media (max-width: 1024px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }

  .page-title {
    padding-bottom: 8px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .page-title {
    padding-bottom: 15px;
  }
  .page-title .page-sub-title {
    line-height: 24px;
  }
  .page-title .page-main-title {
    line-height: 30px;
  }
}
/**
 * ---------------------------------------------------------------------------
 * 0?. Header Styles
 * ---------------------------------------------------------------------------
 */
.header-info .media {
  width: 25px;
  height: 25px;
  border-radius: 100%;
}
.header-info .header-meta {
  margin-right: 5px;
}

.social-media i {
  font-size: 18px;
  margin: 0 3px;
}

.modal-dialog textarea,
.modal-dialog input {
  margin-bottom: 10px;
}

.header-top a {
  transition: 0.5s;
}
.header-top a:hover {
  text-decoration: none;
  color: #d54928 !important;
}
.header-top .header-meta .header-meta-main-btn .media-body {
  transition: 0.5s;
}
.header-top .header-meta .header-meta-main-btn:hover .media-body {
  color: #d54928 !important;
}
.header-top .social-media a i {
  transition: 0.5s;
}
.header-top .social-media a:hover i {
  color: #333740 !important;
}

header {
  position: relative;
}
/* header:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  border-bottom: 1px dashed #111;
} */

@media (min-width: 576px) {
  .header-top .custom-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) {
  .header-top .custom-container {
    padding-left: 0;
    padding-right: 0;
  }

  header .social-media {
    padding: 0;
    padding-left: 18px;
  }

  .header-info i {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 100%;
    margin-right: 10px !important;
    font-size: 18px;
    position: relative;
  }
  .header-info i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header-info .media {
    width: auto;
    height: auto;
    border-radius: 100%;
  }
  .header-info .header-meta {
    background: transparent !important;
    margin-right: 36px;
  }
  .header-info .header-meta .header-meta-main-btn {
    margin-right: 10px;
    background: transparent !important;
  }
  .header-info .header-meta .search-form i {
    width: auto;
    height: auto;
    background: transparent;
    margin: 0 !important;
  }
  .header-info .header-meta .search-form i:before {
    position: static;
    left: auto;
    height: auto;
  }
  .header-info .header-meta-ph {
    margin-right: 46px;
  }

  .ct-slider-text {
    transform: translateX(-24px);
  }

  .social-media i {
    margin-left: 0;
    margin-right: 16px;
  }
}
/**
 * ---------------------------------------------------------------------------
 * 0?. Navigation
 * ---------------------------------------------------------------------------
 */
.main-nav {
  position: relative;
  z-index: 20;
  padding: 0;
}
.main-nav nav .nav-link {
  transition: 0.5s;
}
.main-nav nav .nav-link:hover {
  color: #111 !important;
}
.main-nav nav .navbar-brand img {
  max-width: 100px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(1352%) hue-rotate(347deg) brightness(91%) contrast(88%);
}
.main-nav nav .navbar-light .navbar-toggler {
  padding: 5px;
}
.main-nav .vigo-btn {
  padding: 7px 5px;
  position: relative;
  z-index: 10;
  transform: translateX(7px);
}
.main-nav .main-logo {
  position: absolute;
  width: 100%;
  top: 8px;
}
.main-nav .navbar-toggler {
  position: relative;
  z-index: 10;
  padding: 3px 5px;
  transform: translateX(-7px);
}
.main-nav .navbar-toggler .navbar-toggler-icon {
  font-size: 15px;
}

.main-nav .current a {
  color: #111 !important;
}

@media (min-width: 768px) {
  .main-nav .navbar-expand-lg {
    padding-top: 0;
  }
  .main-nav .nav-link {
    color: #333740 !important;
  }
}
@media (min-width: 992px) {
  .main-nav .main-logo {
    position: static;
  }
}
@media (min-width: 1024px) {
  .main-nav .main-logo {
    position: absolute;
  }

  .main-nav .main-logo {
    display: inline-block !important;
    left: 0 !important;
    width: auto;
    top: 10px;
  }
}
@media (min-width: 1200px) {
  .header-top {
    padding: 10px 0;
  }

  .main-nav {
    padding-bottom: 0;
  }
  .main-nav .navbar-nav {
    margin-right: 52px;
  }
  .main-nav .navbar-expand-lg {
    padding: 2px 0;
  }
  .main-nav .nav-link {
    font-size: 17px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .main-nav nav .navbar-brand img {
    max-width: 100%;
  }

  .header-info .header-meta-search-btn {
    margin-right: 0;
  }
  .header-info .header-meta-search-icon {
    margin-right: 5px !important;
  }

  .main-nav .vigo-btn {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }
}
/**
 * ---------------------------------------------------------------------------
 * 0?. Footer Styles
 * ---------------------------------------------------------------------------
 */
footer {
  padding: 25px 30px;
  background: #111 !important;
  background-size: cover;
  background-attachment: fixed;
}
footer .footer-title {
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
footer .footer-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 50px;
  background: #111;
  border-radius: 20px;
}
footer .footer-box {
  margin-bottom: 25px;
}
footer .footer-content {
  margin-bottom: 20px;
}
footer .payment-method {
  margin-top: 10px;
}
footer .payment-method img {
  margin-bottom: 8px;
}
footer .footer-contact-form textarea,
footer .footer-contact-form input {
  margin-bottom: 10px;
}
footer .contact-address li {
  padding: 0 0 10px;
}
footer .contact-address li i {
  margin-right: 15px;
}
footer .contact-address li:last-child {
  padding-bottom: 0;
}
footer .footer-box-border {
  position: relative;
}
footer .footer-box-border:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 180px;
  background: #111;
  transform: translate(-50%, -50%);
}

.copyright {
  padding: 20px 0;
  letter-spacing: 2px;
}
.copyright .social-media {
  margin-top: 20px;
  margin-bottom: 10px;
}
.copyright .social-media a i {
  transition: 0.5s;
}
.copyright .social-media a:hover i {
  color: #111 !important;
}
.copyright a {
  transition: 0.5s;
}
.copyright a:hover {
  text-decoration: none;
  color: #111 !important;
}

@media (max-width: 575px) {
  footer {
    padding-top: 25px !important;
    padding-bottom: 23px !important;
  }

  .copyright {
    padding-top: 6px;
    padding-bottom: 28px;
  }
}
@media (min-width: 768px) {
  footer {
    padding: 35px 0 12px;
  }

  .footer-title,
  .footer-box,
  .copyright,
  .footer-contact-form,
  .footer-content {
    text-align: left !important;
  }

  .footer-title:before {
    left: 0 !important;
    transform: translateX(0) !important;
  }

  .copyright-box {
    text-align: left;
  }

  .footer-contact-form textarea {
    min-height: 140px;
  }
}
@media (min-width: 1024px) {
  footer {
    padding: 29px 0 9px;
  }
}
@media (min-width: 1200px) {
  footer {
    padding: 95px 0 70px;
  }
  footer .footer-title {
    font-size: 34px;
    line-height: 44px;
    padding-bottom: 19px;
    margin-bottom: 23px;
  }

  .copyright .social-media {
    margin-top: 0;
  }
  .copyright .copyright-text {
    margin: 0;
  }

  .footer-content {
    font-size: 15px;
    line-height: 25px;
  }

  footer .vigo-send-message {
    font-size: 24px;
    line-height: 34px;
    margin: 0;
    padding-bottom: 10px;
  }
  footer .vigo-send-message:before {
    display: none;
  }

  footer .footer-content {
    margin-bottom: 54px;
  }

  footer .footer-contact-form textarea {
    margin-top: 2px;
    margin-bottom: 15px;
    height: 222px;
  }

  .contact-office-hours p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
  }

  .contact-address {
    margin-top: 24px;
  }

  footer .contact-address .list-group-item:last-child,
  footer .contact-address .list-group-item:first-child {
    border-radius: 0;
  }
  footer .contact-address li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
  }
  footer .contact-address li i {
    font-size: 18px;
  }
  footer .contact-address .fa-map-marker {
    margin-top: 5px;
  }
}
@media (max-width: 1024px) {
  footer .contact-address .fa-map-marker {
    margin-top: 5px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 40px 0 12px;
  }
}
/*---------- Slider Section---------*/
.main-slider {
  padding: 0;
}
.main-slider .slider-text-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.main-slider .slider-title {
  font-size: 14px;
  margin-bottom: 10px;
}
.main-slider .slider-title br {
  display: none;
}
.main-slider .vigo-btn {
  font-size: 12px;
  padding: 5px 10px;
}
.main-slider .owl-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-slider .slider-title {
    font-size: 33px;
    line-height: 35px;
  }
  .main-slider .slider-text-box {
    transform: translateY(-60%);
    padding-left: 50px;
  }
  .main-slider .vigo-btn {
    font-size: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-weight: 500;
  }
  .main-slider .owl-nav {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
  }
  .main-slider .owl-nav div {
    display: inline-block;
    background: #fff;
    border: 1px solid rgba(221, 221, 221, 0.35);
    padding: 10px;
    transition: 0.5s;
  }
  .main-slider .owl-nav div i {
    color: #333740;
    transition: 0.5s;
  }
  .main-slider .owl-nav div:hover {
    border-color: #111;
  }
  .main-slider .owl-nav div:hover i {
    color: #111;
  }
  .main-slider .owl-nav .owl-next {
    float: right;
  }

  .main-slider p {
    padding-right: 40px;
  }
}
@media (min-width: 1200px) {
  .main-slider .slider-title {
    font-size: 62px;
    line-height: 82px;
  }
  .main-slider .slider-text-box {
    transform: translateY(-60%);
  }
  .main-slider .vigo-btn {
    font-size: 18px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .main-slider .ct-slider-text a {
    font-weight: 300;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }
}
/*---------- Call To Action Section---------*/
a.back_to_top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border-radius: 5px;
    color: #111;
    font-size: 20px;
}
.footer-logo a:first-child {
    padding-right: 100px;
}
.footer-logo img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(1352%) hue-rotate(347deg) brightness(91%) contrast(88%);
}
.header-logo {
  filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(1352%) hue-rotate(347deg) brightness(91%) contrast(88%);
}
.call-to-action {
  padding: 8px 0;
}
.call-to-action .call-to-action-title {
  font-size: 17px;
  font-weight: 500;
  margin: 5px 0 0 !important;
}
.call-to-action .call-to-action-subtitle {
  font-size: 14px;
}
.call-to-action .call-to-action-big-img {
  margin: 10px 0 10px;
}
.call-to-action .call-to-action-content {
  padding: 10px 0 0;
}
.call-to-action .call-to-action-view-btn {
  padding: 10px 0 15px;
}

@media (min-width: 768px) {
  .call-to-action {
    background: #111;
  }
  .call-to-action .call-to-action-big-img {
    position: absolute;
    left: 15px;
    top: 40%;
    min-width: 55%;
    z-index: 10;
    transform: translateY(-50%);
  }
  .call-to-action .call-to-action-big-img img {
    margin: 0;
  }
  .call-to-action .call-to-action-content {
    text-align: left;
    padding: 25px 0;
  }
}
@media (min-width: 1024px) {
  .call-to-action {
    padding: 35px 0;
  }
  .call-to-action .call-to-action-title {
    font-size: 25px;
  }
  .call-to-action .call-to-action-content {
    text-align: left;
    padding: 0;
  }
  .call-to-action .call-to-action-big-img {
    top: 20%;
  }
}
@media (min-width: 1200px) {
  .call-to-action {
    padding: 50px 0 52px;
  }
  .call-to-action .call-to-action-subtitle {
    font-size: 24px;
    line-height: 34px;
  }
  .call-to-action .call-to-action-title {
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0 !important;
  }
  .call-to-action .call-to-action-view-btn {
    padding: 0;
  }
  .call-to-action .call-to-action-view-btn a {
    margin-left: -20px;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 38px !important;
    padding-right: 38px !important;
  }
}
@media (min-width: 1430px) {
  .call-to-action .call-to-action-big-img {
    top: -10px;
    left: 8px;
  }
}
/*---------- features Section---------*/
.features {
  padding: 17px 0;
  border-bottom: 1px solid #f3f3f3;
}
.features .features-box {
  padding-bottom: 20px;
  padding-top: 11px;
}
.features .features-box:last-child {
  padding-bottom: 0;
}
.features .features-title {
  padding-bottom: 5px;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 700;
  padding-top: 15px;
}
.features .card-text {
  text-align: center;
}
.features .features-box img {
  width: 50px;
}

.content-product-features-img {
  margin: 13px 0;
}

@media (max-width: 1024px) {
  .features .features-body {
    padding: 0 12px;
  }
  .features .features-title {
    font-size: 18px;
    line-height: 28px;
  }

  .product-features .content-product-features-img {
    margin: 8px 0 18px;
  }
}
@media (min-width: 768px) {
  .features {
    padding-top: 40px;
    background: url("../img/features-bg.png") no-repeat;
    background-size: 100%;
  }
}
@media (min-width: 1200px) {
  .features {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .features .features-box img {
    width: auto;
  }
  .features .features-title {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (min-width: 1400px) {
  .features {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
/*---------- services Section---------*/
.services {
  padding-top: 17px;
}
.services .services-box {
  padding-left: 15px;
  margin-bottom: 15px;
}
.services .services-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #111;
  border-radius: 10px;
}
.services .services-container-title {
  margin-bottom: 22px;
  margin-top: 8px;
  text-align: center;
}
.services .services-container-title .page-sub-title {
  font-family: "Courgette", cursive;
  color: #111;
  font-size: 14px;
}
.services .services-container-title .page-main-title {
  font-size: 20px;
  font-weight: 600;
}
.services .services-box-title {
  font-weight: 600;
  margin-bottom: 5px;
}
.services .offer-limit {
  font-size: 20px;
  margin: 5px;
}
.services .about-content {
  margin-top: -5px;
}
.services .services-box-title {
  padding-bottom: 5px;
}
.services .offer-limit {
  font-size: 14px;
}
.services .product-offers-btn a {
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 2px;
}
.services .services-big-img {
  margin-top: 10px;
}

@media (max-width: 575px) {
  .services {
    padding-top: 17px !important;
    padding-bottom: 20px !important;
  }
}
@media (min-width: 768px) {
  .services {
    padding: 20px 0 35px;
  }
  .services .services-container-title {
    text-align: left;
  }
  .services .services-container-title .page-sub-title {
    line-height: 1;
  }
  .services .services-box-title {
    line-height: 1;
    padding-bottom: 5px;
  }
  .services .services-box {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1024px) {
  .services {
    padding: 43px 0 37px;
  }
}
@media (min-width: 1200px) {
  .services {
    padding: 77px 0 52px;
  }
  .services .services-container-title .page-sub-title {
    font-size: 24px;
    line-height: 34px;
  }
  .services .services-container-title .page-main-title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
  }
  .services .services-box {
    margin-bottom: 28px;
  }
  .services .offer-limit {
    font-size: 34px;
    line-height: 44px;
    font-weight: 800;
  }
  .services .product-offers {
    font-size: 24px;
    line-height: 34px;
    padding-right: 45px;
    font-weight: 600;
  }
  .services .services-box-bottom-border {
    border-bottom: 1px solid #c8c8c8;
    margin-bottom: 13px;
    padding-bottom: 4px;
  }
  .services .services-box-title {
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 0;
  }
  .services .services-offer-text-highlights {
    font-size: 24px;
    font-weight: 500;
  }
  .services .product-offers-btn a {
    padding: 12px 32px !important;
  }
  .services .product-offers-btn {
    margin-top: 9px;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 38px 0 40px;
  }
  .services .page-sub-title {
    line-height: 24px;
  }
  .services .page-main-title {
    line-height: 28px;
  }
}
@media (max-width: 1024px) {
  .services .services-box-title {
    padding-bottom: 8px;
  }
  .services .services-box {
    padding-left: 22px;
    padding-right: 30px;
    margin-bottom: 30px;
  }
  .services .services-box .services-box-title {
    font-size: 16px;
  }
  .services .product-offers {
    font-weight: 500;
    font-size: 16px;
  }
  .services .offer-limit {
    font-size: 20px;
  }
  .services .services-container-title .page-main-title {
    font-size: 18px;
  }
}
/*---------- about Section---------*/
.about-section {
  background: url("../img/about-bg.jpg");
  background-size: cover;
  text-align: center;
}
.about-section .about-content-title {
  margin-top: 15px;
  font-size: 20px;
  padding-bottom: 15px;
}
.about-section .about-content-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 4px;
  background: white;
  border-radius: 20px;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .about-section {
    padding: 35px 0;
  }
}
@media (min-width: 1024px) {
  .about-section {
    padding: 40px 0;
    text-align: left;
  }
  .about-section .about-content-title {
    margin-top: 0;
    line-height: 1;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .about-section .about-content-title:before {
    left: 0;
    transform: translateX(0);
  }
}
@media (min-width: 1200px) {
  .about-section {
    padding: 102px 0 94px;
  }
  .about-section .about-content-title {
    font-size: 47px;
    line-height: 57px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .about-section .about-content p {
    margin-bottom: 25px;
  }
  .about-section .about-section-btn {
    margin-top: 16px;
    padding: 14px 48px !important;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    border-color: #333740;
    color: #333740 !important;
  }
  .about-section .about-section-btn i {
    font-size: 18px;
  }
  .about-section .about-section-btn:hover {
    color: #fff !important;
  }
  .about-section #video {
    margin-top: 10px;
  }
  .about-section .about-section-area {
    padding-left: 31px;
  }
  .about-section .about-section-text-area p {
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 575px) {
  .about-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding: 41px 0 42px;
  }
}
@media (max-width: 1024px) {
  .about-section .about-section-area {
    padding-left: 28px;
  }
  .about-section .about-section-btn {
    border-color: #333740;
    color: #333740 !important;
    overflow: hidden;
  }
  .about-section .about-section-text-area {
    padding-bottom: 20px;
  }
  .about-section .about-section-text-area p {
    margin-bottom: 10px;
  }
}
/*---------- Product Features Section---------*/
.product-features {
  background: #f1f1f1;
  padding-bottom: 25px;
}
.product-features .media {
  margin: 10px 0;
  transition: 0.5s;
}
.product-features .media:hover {
  transform: translateY(-5px);
}
.product-features .media:hover .product-features-img,
.product-features .media:hover .media-body {
  background: #111;
  color: white;
}
.product-features .media:hover .media-body {
  box-shadow: -36px 0px #111, 0 0px 0px 0;
}
.product-features .media:hover .product-features-title {
  color: #fff;
}
.product-features .product-features-img {
  background: white;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  transition: 0.5s;
  box-shadow: 0px 0px 23px -8px rgba(51, 51, 51, 0.34118);
}
.product-features .product-features-title {
  font-size: 14px;
  font-weight: 600;
}
.product-features .media-body {
  background: white;
  padding: 15px 9px;
  transition: 0.5s;
  box-shadow: -36px 0px #fff, 0 0px 0px 0;
}

.product-features .product-features-img img {
  width: 25px;
}

@media (max-width: 575px) {
  .product-features {
    padding-top: 18px !important;
    padding-bottom: 24px !important;
  }
}
@media (min-width: 768px) {
  .product-features {
    padding: 34px 0;
  }
}
@media (min-width: 1024px) {
  .product-features {
    padding: 40px 0 30px;
  }
  .product-features .product-features-title {
    line-height: 1;
  }
  .product-features .product-features-content {
    font-size: 14px;
    line-height: 20px;
  }
  .product-features .media-body {
    padding: 10px 10px;
  }
  .product-features .flex-lg-row-reverse:hover .media-body {
    box-shadow: 36px 0px #111, 0 0px 0px 0;
  }
  .product-features .flex-lg-row-reverse:hover .product-features-title {
    color: #fff;
  }
  .product-features .flex-lg-row-reverse .media-body {
    box-shadow: 36px 0px #fff, 0 0px 0px 0;
  }
  .product-features .product-features-mr-lg-0 {
    margin: 0;
  }
  .product-features .order-lg-1 {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .product-features {
    padding: 94px 0 82px;
  }
  .product-features .product-features-title {
    font-size: 24px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 0;
    color: #333740;
  }
  .product-features .product-features-content {
    font-size: 15px;
    line-height: 25px;
    color: #333740;
  }
  .product-features .media-body {
    padding: 15px 13px;
  }
  .product-features .flex-lg-row-reverse .media-body {
    padding: 15px 13px;
  }
  .product-features .product-features-main-title {
    padding-bottom: 10px;
  }
  .product-features .product-features-left {
    padding-right: 30px;
  }
  .product-features .product-features-right {
    padding-left: 30px;
  }

  .product-features-content {
    transition: 0.5s;
  }

  .product-features .flex-lg-row-reverse:hover .product-features-content {
    color: #fff;
  }

  .product-features .media:hover .product-features-content {
    color: #fff;
  }

  .product-features .media {
    margin: 21px 0;
  }

  .right-first-child {
    margin-top: 0 !important;
  }
}
@media (max-width: 768px) {
  .product-features {
    padding: 39px 0 43px;
  }
  .product-features .page-title {
    margin-bottom: 33px;
  }
  .product-features .media-body {
    text-align: left !important;
  }
}
@media (max-width: 1024px) {
  .product-features .product-features-title {
    font-size: 16px;
  }
  .product-features .media-body {
    padding: 20px;
  }
  .product-features .media {
    margin: 15px 0;
  }
  .product-features .right-first-child {
    margin-top: 0;
  }
}
/*---------- Recommended Section---------*/
.recommended {
  padding-bottom: 2px;
}
.recommended .recommended-container-title {
  margin-bottom: 20px;
  text-align: center;
}
.recommended .recommended-container-title .page-sub-title {
  font-family: "Courgette", cursive;
  color: #111;
  font-size: 14px;
}
.recommended .recommended-container-title .page-main-title {
  font-size: 18px;
  font-weight: 600;
}
.recommended .recommended-big-img {
  margin-bottom: 20px;
}
.recommended .recommended-box {
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 23px -8px rgba(51, 51, 51, 0.34118);
}
.recommended .recommended-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 0;
  background: #111;
  transition: 0.5s;
}
.recommended .recommended-box:hover:before {
  height: 100%;
}
.recommended .recommended-box {
  text-align: center;
}

@media (max-width: 575px) {
  .recommended {
    padding-top: 20px !important;
    padding-bottom: 6px !important;
  }
}
@media (min-width: 768px) {
  .recommended {
    padding: 35px 0 16px;
  }
}
@media (min-width: 1024px) {
  .recommended {
    padding: 40px 0 20px;
  }
}
@media (min-width: 768px) {
  .recommended .recommended-box,
  .recommended .recommended-container-title {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .recommended .recommended-box {
    padding: 15px;
  }
  .recommended .recommended-box p {
    line-height: 20px;
  }
  .recommended .recommended-container-title {
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .recommended {
    padding: 97px 0 81px;
  }
  .recommended .recommended-container-title {
    margin-bottom: 60px;
    text-align: left;
    margin-top: 25px;
  }
  .recommended .recommended-container-title .page-sub-title {
    font-size: 18px;
    line-height: 28px;
  }
  .recommended .recommended-container-title .page-main-title {
    font-size: 24px;
    line-height: 34px;
    color: #333740;
    font-weight: 700;
  }
  .recommended .recommended-box {
    padding: 30px 30px 30px 20px;
    transition: 0.5s;
    text-align: left;
    margin-right: 25px;
  }
  .recommended .recommended-box:hover {
    transform: translateY(-10px);
  }
  .recommended .recommended-box-title {
    font-size: 18px;
    line-height: 28px;
    color: #333740;
    font-weight: 700;
  }
  .recommended .recommended-box p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .recommended .recommended-right-box {
    margin-left: 5px;
  }

  .recommended-area {
    padding-left: 44px;
  }
}
@media (max-width: 768px) {
  .recommended {
    padding: 39px 0 23px;
  }
  .recommended .page-sub-title {
    line-height: 24px;
  }
  .recommended .page-main-title {
    line-height: 28px;
  }
}
@media (max-width: 1024px) {
  .recommended .recommended-big-img {
    margin-top: 10px;
  }
  .recommended .recommended-box img {
    width: 115px;
  }
}
/*---------- Newsletter Section---------*/
.newsletter {
  background: url("../img/newsletter-bg.jpg");
  background-size: cover;
  background-position: center center;
}
.newsletter input[type=text],
.newsletter input[type=email] {
  text-align: center;
  margin-bottom: 10px;
}
.newsletter ::-webkit-input-placeholder {
  text-align: center;
  color: white;
}
.newsletter :-moz-placeholder {
  /* Firefox 18- */
  text-align: center;
  color: white;
}
.newsletter ::-moz-placeholder {
  /* Firefox 19+ */
  text-align: center;
  color: white;
}
.newsletter :-ms-input-placeholder {
  text-align: center;
  color: white;
}
.newsletter .justify-content-center .vigo-btn {
  background: #fff !important;
}
.newsletter .white-btn:hover {
  background: transparent !important;
  color: #fdfdfd !important;
}
.newsletter input {
  font-size: 14px;
  padding: 5px .75rem;
}

@media (max-width: 575px) {
  .newsletter {
    padding-top: 17px !important;
    padding-bottom: 24px !important;
  }
}
@media (min-width: 768px) {
  .newsletter {
    padding: 35px 0;
  }
  .newsletter input {
    padding: 7px;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .newsletter {
    padding: 40px 0 30px;
  }
  .newsletter .page-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .newsletter {
    padding: 40px 0;
  }
  .newsletter input[type=text],
  .newsletter input[type=email] {
    margin-bottom: 0;
    padding: 10px;
  }
  .newsletter .vigo-btn {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .newsletter {
    padding: 53px 0 60px;
  }
  .newsletter input[type=text],
  .newsletter input[type=email] {
    font-size: 24px;
    line-height: 34px;
    padding: 13px !important;
  }
  .newsletter .vigo-btn {
    font-size: 24px;
    padding: 15px 40px !important;
  }
  .newsletter .newsletter-input {
    margin: 0 10px;
  }
}
@media (min-width: 1400px) {
  .newsletter input[type=text],
  .newsletter input[type=email] {
    padding: 22px;
  }
}
/*---------- Newsletter Section---------*/
.gallery .gallery-filter-btn-group {
  width: 100%;
  margin-bottom: 15px;
  justify-content: center;
}
.gallery .gallery-filter-btn-group .btn-secondary {
  background: transparent;
  color: #333740;
  font-size: 13px;
  padding: 4px;
}
.gallery .gallery-filter-btn-group .btn-secondary:hover {
  background-color: transparent;
  color: #111;
}
.gallery .item-desc {
  font-size: 14px;
}
.gallery .gallery-category {
  font-size: 12px;
}
.gallery .filtr-item {
  padding: 0 0px 10px;
}
.gallery .gallery-content-box {
  margin-bottom: 5px;
  padding: 5px;
  box-shadow: 0px 0px 23px -8px rgba(51, 51, 51, 0.34118);
}
.gallery .gallery-overlay:hover:before {
  opacity: 1;
}
.gallery .gallery-overlay:hover .search-icon {
  opacity: 1;
}
.gallery .gallery-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.5s;
  background: rgba(206, 167, 82, 0.7);
}
.gallery .gallery-overlay .search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: 0.5s;
  transform: translate(-50%, -50%);
}

@media (max-width: 575px) {
  .gallery {
    padding-top: 20px !important;
  }
}
@media (min-width: 768px) {
  .gallery {
    padding: 35px 0 22px;
  }
  .gallery .gallery-filter-btn-group {
    text-align: center;
    display: inline-block;
  }
  .gallery .gallery-filter-btn-group .btn-secondary {
    padding: 15px;
  }
  .gallery .gallery-content-box {
    margin-bottom: 15px;
  }
  .gallery .item-desc {
    line-height: 1;
  }
  .gallery .gallery-menu-box {
    display: inline-block;
    padding-left: 58px;
    padding-right: 58px;
    margin-bottom: 13px;
    margin-top: 10px;
    box-shadow: 0px 4px 16px 3px rgba(51, 51, 51, 0.08);
  }
}
@media (min-width: 1024px) {
  .gallery {
    padding: 40px 0 0;
  }
}
@media (min-width: 1024px) {
  .gallery {
    padding: 40px 0 14px;
  }
  .gallery .item-desc {
    font-size: 18px;
  }
  .gallery .gallery-content-box {
    padding: 15px 0;
  }
  .gallery .gallery-content-box {
    margin-bottom: 30px;
  }
  .gallery .gallery-menu-box {
    display: inline-block;
    padding-left: 58px;
    padding-right: 58px;
    margin-bottom: 13px;
    margin-top: 10px;
	filter: drop-shadow(2px 4px 6px black); 
 }
}
@media (min-width: 1200px) {
  .gallery {
    padding: 94px 0 58px;
  }
  .gallery .gallery-category {
    font-size: 18px;
    line-height: 28px;
    color: #333740;
  }
  .gallery .gallery-filter-btn-group .btn-secondary {
    font-size: 24px;
    padding: 20px 30px;
  }
  .gallery .gallery-filter-btn-group {
    margin-bottom: 26px;
  }
  .gallery .filtr-container {
    margin-top: 20px;
  }
  .gallery .item-desc {
    color: #333740;
    font-size: 24px;
    line-height: 34px;
  }

  .gallery-hover {
    transition: 0.5s;
    display: inline-block;
  }
  .gallery-hover:hover {
    transform: translateY(-10px);
  }
}
@media (max-width: 1024px) {
  .gallery {
    padding: 40px 0 0;
  }
  .gallery .gallery-content-box {
    padding: 15px 0 10px;
  }
}
/*---------- Pricing Table Section---------*/
.vigo-price {
  padding-top: 0;
  padding-bottom: 15px;
}
.vigo-price .list-group {
  margin-bottom: 10px;
}
.vigo-price li {
  padding: 2px 0;
  font-size: 12px;
}
.vigo-price li .pricing {
  padding: 0 0 10px;
}
.vigo-price .vigo-pricing-table {
  margin: 10px 0;
  padding: 15px 10px;
  box-shadow: 0px 0px 23px -8px rgba(51, 51, 51, 0.34118);
}
.vigo-price .pricing-icon-box {
  height: 65px;
  margin-bottom: 8px;
}
.vigo-price .price-package {
  padding: 5px 0;
  font-weight: 700;
}
.vigo-price .price-package:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: transparent;
}
.vigo-price .price-package p {
  background: #fff;
  display: inline-block;
  padding: 0 10px;
}
.vigo-price .vigo-btn {
  padding-left: 16px;
  padding-right: 16px;
}

.vigo-price .pricing-icon-box {
  height: 50px;
}
.vigo-price .pricing-icon-box img {
  width: 65px;
}

@media (max-width: 575px) {
  .vigo-product {
    padding-top: 20px !important;
    padding-bottom: 16px !important;
  }
}
@media (min-width: 768px) {
  .vigo-price {
    padding: 0 0 26px;
  }
  .vigo-price .price-package:before {
    background: #c7c7c7;
  }
}
@media (max-width: 768px) {
  .vigo-price {
    padding-top: 18px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .vigo-price {
    padding: 0 0 32px;
  }
}
@media (min-width: 1200px) {
  .vigo-price {
    padding: 0 0 92px;
  }
  .vigo-price li {
    font-size: 24px;
    line-height: 34px;
    padding: 0;
  }
  .vigo-price li .pricing {
    font-weight: 900;
    font-size: 34px;
    padding-bottom: 23px;
    padding-top: 10px;
    color: #333740;
  }
  .vigo-price .vigo-pricing-table {
    padding: 50px 0;
    transition: 0.5s;
  }
  .vigo-price .vigo-pricing-table:hover {
    transform: translateY(-7px);
    border-bottom: 7px solid #111;
    box-shadow: 0px 0px 44px -8px rgba(51, 51, 51, 0.34118);
  }
  .vigo-price .pricing-icon-box {
    margin-bottom: 40px;
  }
  .vigo-price .price-package p {
    color: #333740;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
  }
  .vigo-price .pricing-order-now {
    padding-top: 16px;
  }
  .vigo-price .vigo-btn {
    padding-left: 20px;
    padding-right: 20px;
  }
  .vigo-price .vigo-price li .pricing {
    line-height: 44px;
  }
  .vigo-price .list-group-item .highlight-text {
    color: #333740;
  }
}
/*---------- Process Section---------*/
.process {
  background: url("../img/process-bg.jpg");
  background-size: cover;
  background-position: center center;
  padding-bottom: 7px;
}
.process .process-box {
  margin-bottom: 15px;
}
.process .process-box img {
  margin-bottom: 5px;
  width: 40px;
}
.process .page-title {
  margin-bottom: 10px;
}
.process .page-title:before {
  display: none;
}

@media (min-width: 768px) {
  .process {
    padding: 35px 0;
  }
  .process .process-box {
    margin-bottom: 0;
  }

  .process-box:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: url("../img/dotted-border-img.png");
    width: 2px;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .process {
    padding-top: 20px !important;
    padding-bottom: 5px !important;
  }
}
@media (max-width: 768px) {
  .process {
    padding: 40px 0 38px;
  }
}
@media (min-width: 1024px) {
  .process {
    padding: 40px 0;
  }
}
@media (min-width: 1200px) {
  .process {
    padding: 42px 0 53px;
  }
  .process .process-box {
    margin-top: 28px;
  }
  .process .process-box img {
    width: auto;
    transition: 0.5s;
  }
  .process .process-box p {
    font-size: 24px;
    margin-top: 5px !important;
  }
  .process .process-box:hover img {
    transform: translateY(-10px);
  }
}
/*---------- Ingredients Section---------*/
.ingredients .accordion-menu {
  padding: 10px;
  color: #333740;
  font-weight: 700;
}
.ingredients .item {
  margin-bottom: 13px;
}
.ingredients .item a {
  transition: 0.5s;
}
.ingredients .item a:hover {
  text-decoration: none;
}
.ingredients .item a .subtitle {
  font-size: 13px;
  display: none;
}
.ingredients .accordion-menu {
  box-shadow: 0px 0px 23px -8px rgba(51, 51, 51, 0.34118);
}
.ingredients .collapsed {
  background: white;
}
.ingredients .accordion-content {
  padding: 10px;
}
.ingredients .accordion-content {
  background: #111;
  padding: 5px 20px 15px 10px;
  color: white;
}
.ingredients .active {
  background: #111;
  color: white;
}
.ingredients .active .subtitle {
  display: block !important;
}
.ingredients .active i {
  transition: 0.5s;
  transform: rotate(45deg);
}
.ingredients .ingredients-Name {
  margin-bottom: 20px;
  font-size: 14px;
}
.ingredients .active {
  padding-bottom: 3px;
}

@media (max-width: 575px) {
  .ingredients {
    padding-top: 20px !important;
    padding-bottom: 25px !important;
  }
}
@media (min-width: 768px) {
  .ingredients {
    padding: 35px 0;
  }
  .ingredients .ingredients-name {
    margin-bottom: 36px;
  }
}
@media (min-width: 1024px) {
  .ingredients {
    padding: 40px 0 6px;
  }
}
@media (min-width: 1200px) {
  .ingredients {
    padding: 95px 0 65px;
  }
  .ingredients .ingredients-Name {
    margin-bottom: 20px;
  }
  .ingredients .accordion-menu {
    font-size: 18px;
    padding: 26px 45px;
  }

  .ingredients .ingredients-Name {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 24px;
  }
  .ingredients .accordion-content {
    padding: 0px 55px 25px 46px;
  }

  .ingredients .item a .subtitle {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
  }

  #vigoaccordion .active {
    padding-bottom: 10px;
  }

  .vigoaccordion-content {
    border-radius: 10px;
  }
}
@media (max-width: 1024px) {
  .ingredients .accordion-content,
  .ingredients .active {
    padding-left: 15px;
  }
  .ingredients .ingredients-big {
    margin-bottom: 34px;
  }
}
@media (max-width: 768px) {
	.ingredients {
		padding: 40px 0;
  }

  .ingredients .ingredients-big {
	  margin: 0;
	}
  .ingredients .page-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
	.row.product-gallery{
		flex-direction: column-reverse;
	}
}
/*---------- Testimonial Section---------*/
.testimonial {
	background: linear-gradient(0deg, rgb(185 156 57 / 48%), rgb(0 0 0 / 49%)), url(../img/banner/banner4.jpg);
	/* backdrop-filter: blur(19px); */
	background-size: cover;
	background-position: center;
	}


.testimonial .owl-dots {
  text-align: center;
}
.testimonial .owl-dots div {
  width: 17px;
  height: 3px;
  margin: 0 5px;
  background: #acadb1;
  display: inline-block;
}
.testimonial .owl-dots .active {
  background: #111;
  transition: 0.5s;
}
.testimonial .testimonial-box .quotes-img {
  width: 40px;
}
.testimonial .author-meta .media-body {
  margin-top: 10px;
}
.testimonial .author-meta .media-body h5 {
  font-size: 16px;
  margin: 0;
}

@media (max-width: 575px) {
  .testimonial {
    padding-top: 24px !important;
    padding-bottom: 20px !important;
  }
}
@media (min-width: 768px) {
  .testimonial {
    padding: 35px 0;
  }
}
@media (min-width: 1024px) {
  .testimonial {
    padding: 40px 0;
  }
  .testimonial .author-meta h5 {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (min-width: 1200px) {
  .testimonial {
    padding: 100px 0 96px;
  }
  .testimonial .testimonial-content {
    padding: 0 165px 14px;
  }
  .testimonial .author-meta h5 {
    font-size: 24px;
  }
  .testimonial .author-meta p {
    font-size: 18px;
    line-height: 28px;
  }
  .testimonial .owl-dots {
    margin-top: 30px;
  }

  .testimonial .testimonial-box .quotes-img {
    width: 64px;
  }

  .testimonial .author-meta .media-body h5 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
  }

  .testimonial .author-meta img {
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .testimonial {
    padding: 40px 0 33px;
  }
}
/*---------- Certification Section---------*/
.vigo-product {
  padding-bottom: 0;
}
.vigo-product .page-title {
  padding-bottom: 12px;
}
.vigo-product .product-box {
  text-align: center;
}
.vigo-product .flexslider {
  margin-bottom: 0;
  border: 0;
}
.vigo-product .flex-active-slide img {
  transition: 0.5s;
  /* box-shadow: 0px 1px 22px -1px rgba(0, 0, 0, 0.21); */
  filter: drop-shadow(2px 4px 6px rgb(0, 0, 0));
}
.vigo-product .flex-direction-nav a {
  margin: -12px 0 0 !important;
}
.vigo-product .vigo-small-img {
  padding-top: 10px;
  padding-bottom: 10px;
}
.vigo-product .product-box {
  margin-top: 10px;
}
.vigo-product .product_rating i {
  font-size: 14px;
  color: #eab230;
  letter-spacing: 4px;
}
.vigo-product .rating_subtitle {
  margin-left: 5px;
  font-size: 14px;
}
.vigo-product .product-price {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 800;
}
.vigo-product .product-content {
  padding-top: 10px;
  padding-bottom: 20px;
  margin-top: 20px;
  border-top: 1px solid #c8c8c8;
  padding-left: 10px;
  padding-right: 10px;
}
.vigo-product .product-view {
  overflow: hidden;
}
.vigo-product .vigo-btn {
  padding: 10px 5px;
}
.vigo-product .product-box-content .flexslider .slides > li {
  margin-right: 15px !important;
}
.vigo-product input {
  background: #f1f1f1;
  border-radius: 5px;
}
.vigo-product input:focus {
  background: #f1f1f1;
}
.vigo-product input[type=text],
.vigo-product input[type=email] {
  text-align: center;
}
.vigo-product ::-webkit-input-placeholder {
  text-align: center;
}
.vigo-product :-moz-placeholder {
  /* Firefox 18- */
  text-align: center;
}
.vigo-product ::-moz-placeholder {
  /* Firefox 19+ */
  text-align: center;
}

@media (min-width: 768px) {
  .vigo-product {
    padding: 35px 0 0;
  }
  .vigo-product input {
    padding: 6px;
  }
  .vigo-product .product-view {
    margin-top: 5px;
    padding-top: 10px;
    border-top: 1px solid #c8c8c8;
  }
  .vigo-product .product-box {
    text-align: left;
  }
  .vigo-product .page-title {
    padding-bottom: 30px;
  }
  .vigo-product .product-quantity {
    margin-bottom: 18px;
  }
}
@media (min-width: 1200px) {
  .vigo-product .product_rating i {
    font-size: 28px;
  }
}
@media (min-width: 1400px) {
  .vigo-product {
    padding: 90px 0 0;
  }
  .vigo-product .product-box-title {
    padding-top: 30px;
  }
  .vigo-product .product-box-title h5 {
    font-size: 24px;
    line-height: 34px;
    margin: 0;
  }
  .vigo-product .product-content {
    padding-top: 23px;
    padding-bottom: 40px;
    margin-top: 15px;
  }
  .vigo-product .vigo-btn {
    font-size: 24px;
  }
  .vigo-product .product-view {
    margin-top: 10px;
    padding-top: 18px;
  }
  .vigo-product .slides > li {
    transition: 0.5s;
  }
  .vigo-product .slides > li:hover {
    transform: translateY(-5px);
	filter: drop-shadow(2px 4px 6px black);
  }
  .vigo-product .product-price {
    font-size: 24px;
    line-height: 34px;
    font-weight: 900;
  }
}
@media (max-width: 768px) {
  .vigo-product {
    padding: 38px 0 20px;
  }
}
/*---------- Certification Section---------*/
.certification {
  padding-bottom: 23px;
}
.certification .certification-img-box {
  margin-bottom: 15px;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.21);
}

@media (min-width: 1200px) {
  .certification {
    padding: 88px 0 102px;
  }
  .certification .certification-img-box {
    margin-top: 10px !important;
    margin-bottom: 0;
  }

  .certification .certification-img-box {
    transition: 0.5s;
  }
  .certification .certification-img-box:hover {
    transform: translateY(-5px);
  }
}
@media (max-width: 768px) {
  .certification {
    padding-bottom: 27px;
  }
}



.my-slides li img{
	width: 50% !important;
	margin: auto;
}
/*-------------------------
	Responsive Section
---------------------------*/
/**
 * ---------------------------------------------------------------------------
 * 0?. Responsive Styles
 * ---------------------------------------------------------------------------
 */

/* Full Width Banner Styles */
section.p-0 {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

section.p-0 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Enhanced Product Information Section Styles */
.product-info-section {
  margin-top: 40px;
}

.product-info-section .info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-info-section .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
}

.product-info-section h4 {
  border-bottom: 2px solid #d54928;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.product-info-section ul li {
  line-height: 1.8;
  font-size: 14px;
}

.product-info-section .quality-badge {
  margin-top: 30px;
}

.product-info-section .badge-item {
  padding: 15px;
  transition: transform 0.3s ease;
}

.product-info-section .badge-item:hover {
  transform: scale(1.05);
}

.product-info-section .badge-item i {
  display: block;
  margin-bottom: 10px;
}

.product-info-section .badge-item p {
  font-size: 14px;
  font-weight: bold;
  color: #111;
}

.product-info-section .badge-item small {
  font-size: 12px;
  color: #666;
}

.product_description h3 {
  border-bottom: 3px solid #d54928;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

/* Responsive adjustments for product info sections */
@media (max-width: 768px) {
  .product-info-section {
    padding: 30px 0 !important;
  }
  
  .product-info-section .info-card {
    margin-bottom: 20px;
    padding: 20px !important;
    height: auto !important;
  }
  
  .product-info-section .info-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .product-info-section .info-card ul li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .product-info-section .badge-item {
    margin-bottom: 20px;
    padding: 10px !important;
  }
  
  .product-info-section .badge-item i {
    font-size: 1.5em !important;
    margin-bottom: 8px;
  }
  
  .product-info-section .badge-item p {
    font-size: 13px;
  }
  
  .product-info-section .badge-item small {
    font-size: 11px;
  }
  
  .product-info-section .quality-badge {
    padding: 20px 15px !important;
  }
  
  .product-info-section .quality-badge h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .product_description {
    padding: 20px 0;
  }
  
  .product_description h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .product_description p {
    font-size: 14px;
    line-height: 1.7;
    padding: 0 15px !important;
  }
  
  /* Product gallery responsive */
  .product-gallery .col-md-2 {
    margin-bottom: 15px;
  }
  
  .product__details__text {
    margin-top: 20px;
  }
  
  .product__details__text h4 {
    font-size: 22px;
  }
  
  .product__details__text h3 {
    font-size: 18px;
  }
  
  .product__details__text p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .benfits h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  
  .benifits-ui li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .product__details__option {
    margin-top: 15px;
  }
  
  .product__details__cart__option {
    margin-top: 20px;
  }
  
  .primary-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
  }
  
  /* Product gallery mobile adjustments */
  .product-gallery {
    margin-bottom: 20px;
  }
  
  .product-gallery .col-md-2 {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 15px;
  }
  
  .product-gallery .col-md-2 ul {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
  }
  
  .product-gallery .col-md-2 ul li {
    min-width: 80px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  .product-gallery .col-md-10 {
    width: 100%;
    margin-top: 15px;
    padding: 0 15px;
  }
  
  .product__details__pic__item {
    padding: 0;
  }
  
  .product__details__pic__item img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    display: block;
  }
  
  .product__thumb__pic {
    width: 100%;
    height: auto;
    min-height: 80px;
  }
  
  .shop-details {
    padding: 20px 0;
  }
  
  .product__details__pic {
    padding: 15px 0;
  }
  
  /* Product details text mobile */
  .product__details__text {
    padding: 15px;
  }
  
  .product__details__option {
    margin-top: 15px;
  }
  
  .product__details__option__size {
    margin-bottom: 10px;
  }
  
  .product__details__option__size span {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }
  
  .product__details__option__size label {
    display: block;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .product-info-section {
    padding: 20px 0 !important;
  }
  
  .product-info-section .info-card {
    padding: 15px !important;
    margin-bottom: 15px;
  }
  
  .product-info-section .info-card h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .product-info-section .info-card h4 i {
    font-size: 16px;
  }
  
  .product-info-section .info-card ul li {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .product-info-section .info-card ul li i {
    font-size: 12px;
    margin-right: 6px;
  }
  
  .product-info-section .badge-item {
    padding: 8px !important;
    margin-bottom: 15px;
  }
  
  .product-info-section .badge-item i {
    font-size: 1.3em !important;
    margin-bottom: 6px;
  }
  
  .product-info-section .badge-item p {
    font-size: 12px;
  }
  
  .product-info-section .badge-item small {
    font-size: 10px;
  }
  
  .product-info-section .quality-badge {
    padding: 15px 10px !important;
  }
  
  .product-info-section .quality-badge h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .product_description {
    padding: 15px 0;
  }
  
  .product_description h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .product_description p {
    font-size: 13px;
    line-height: 1.6;
    padding: 0 10px !important;
  }
  
  .product__details__text {
    padding: 10px;
  }
  
  .product__details__text h4 {
    font-size: 20px;
  }
  
  .product__details__text h3 {
    font-size: 16px;
  }
  
  .product__details__text p {
    font-size: 13px;
  }
  
  .benfits h3 {
    font-size: 16px;
  }
  
  .benifits-ui li {
    font-size: 12px;
  }
  
  .product__details__option__size {
    font-size: 13px;
  }
  
  .product__details__option__size label {
    font-size: 13px;
  }
  
  /* Ensure images are responsive */
  .product__details__pic__item img,
  .product__thumb__pic {
    max-width: 100%;
    height: auto;
  }
  
  /* Product gallery thumbnails on mobile */
  .product-gallery .col-md-2 ul li {
    min-width: 60px;
  }
  
  .product__thumb__pic {
    width: 100%;
    height: auto;
  }
}

/*# sourceMappingURL=style.css.map */
