/*!
Theme Name: Bemunchie Online
Author: Bemunchie Online
Author URI: https://www.bemunchieonline.co.uk
Description: This is custom developed theme for In and Around
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: In & Around
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

CupidShopper is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

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

:root{
	
    --primary-color: #E86028;
	--secondary-color: rgb(230, 230, 230);
}


html,
body {
	height: 100%;
	font-family: 'Open Sans', sans-serif !important;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	scroll-behavior: smooth;
}
:target:before {
  content: '';
  display: block;
  margin-top: 30px;
  visibility: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 600;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

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

img {
	max-width: 100%;
}

a{
	text-decoration: none !important;
	color: #3aafa9;
}

a:hover {
    color: #000;
}

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

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

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

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

.section-title {
	text-align: center;
	margin: 3px 0 5px 0;
}

.section-title h2 {
	font-size: 26px;
	border-bottom: 2px solid #000;
	display: inline;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}

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

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

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

/* buttons */

.site-btn {
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: 600;
	padding: 14px 30px 14px;
	text-transform: uppercase;
	background: #000;
	color: #fff;
	line-height: normal;
	cursor: pointer;
	text-align: center;
}

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

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

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

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

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

/* Preloder */

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

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

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

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

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

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

.element {
	margin-bottom: 100px;
}

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

/* Accordion */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-top {
	padding: 0px 0 0px;
	background-color: #1A2451;
}

.site-logo {
}

.header-search-form {
	width: 100%;
	position: relative;
	padding: 0 10px;
	background-color: #;
	display: block;
}

.header-search-form input {
	width: 100%;
	height: 44px;
	font-size: 14px;
	/* border-radius: 90px; */
	border: none;
	padding: 0 19px;
	/* background: #ddd; */
	border-top: 1px solid #ddd;
	/* box-shadow: 0px 3px 8px #ddd; */
}

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

.user-panel .up-item {
	display: inline-block;
	font-size: 14px;
	margin: 0 10px;
}

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

.user-panel .up-item a {
	font-size: 14px;
	color: #fff;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

.user-panel .up-item:first-child {
	margin-right: 6px;
}

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

.shopping-card span {
	position: absolute;
	top: -28px;
	right: -37px;
	height: 20px;
	min-width: 20px;
	color: #fff;
	font-size: 13px;
	background: #3aafa9;
	text-align: center;
	border-radius: 30px;
	padding: 0 2px;
	/* margin-left: -7px; */
}

.main-navbar {text-align: center;width: 100%;/* float: right; */}

.slicknav_menu {
	display: none;
}

.main-menu {
	list-style: none;
	margin-bottom: 0;
	/* text-align-last: center; */
	padding: 0% 0;
}

.main-menu li {
	display: inline-block;
	position: relative;
	/* width: 16%; */
	margin: 0px 35px;
}

.main-menu li a {
	display: inline-block;
	font-size: 16px;
	color: #737373 !important;
	margin: 0px 0px;
	line-height: 33px;
	padding: 12px 0;
	position: relative;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1.3px;
	font-family: 'PT Serif', serif;
}

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

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


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

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

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

.main-menu .sub-menu li a:hover {
	color: #f7931e;
}

.nav-switch {
	display: none;
}

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

.hero-section {
	/* padding-bottom: 54px; */
	background: #fff9f4;
}

.hero-slider .hs-item {
	position: relative;
	height: 68vh;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.top-letest-product-section {
	padding-top: 1rem;
	padding-bottom: 2.5rem;
}

.top-letest-product-section .section-title {
	margin-bottom: 30px;
}

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

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

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

.product-slider .owl-nav button.owl-prev {
	float: left;
	left: -92px;
}
.product-item:hover .pi-pic a img {
    transition:  all 0.6s ease;
    transform: scale(1.03, 1.03);
}

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

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

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

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

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

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

.product-item .pi-links a.add-card {
	padding-top: 5px;
	font-size: 11px;
}

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

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

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

.product-item .pi-text {
	padding: 16px 0;
	text-align: center;
	/* height: 87px; */
	/* display: flex; */
	/* justify-content: space-between; */
}

.product-item .pi-text h6 {
	overflow: hidden;
	font-weight: 600;
	color: #3aaca6;
	letter-spacing: 1px;
	font-size: 15px;
}

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

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

.product-filter-section {
	padding-bottom: 60px;
}

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

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

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

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

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

.banner {
	padding: 70px 34px 70px;
	position: relative;
	margin-bottom: 0;
	background-color: #f6c92d;
}

.banner .tag-new {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	background: #50e550;
	line-height: 3;
	text-transform: uppercase;
	padding: 7px 18px 2px;
	border-radius: 80px;
}

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

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

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

.footer-section {
	background-color: var(--primary-color);
}

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

.footer-widget {
	margin-bottom: 0px;
	overflow: hidden;
}

.footer-widget h2 {
	font-size: 20px;
	/* font-weight: 700; */
	text-transform: uppercase;
	color: #fa6513;
	margin-bottom: 25px;
	letter-spacing: 0.5px;
}

.footer-widget p {
	color: #8f8f8f;
}

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

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

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

.footer-widget ul li a {
	display: inline-block;
	position: relative;
	/* padding-left: 20px; */
	font-size: 13px;
	color: #fafafa;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
	transition: all 0.6s ease;
}

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

.footer-widget ul li a:hover {
	color: #fa5f09;
	margin-left: 10px;
	transition: all 0.6s ease;
}

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

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

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

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

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

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

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

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

.social-links-warp p {
	padding: 10px 0;
	/* margin-top: 3rem; */
	color: #fbfbfb;
	font-weight: 500;
}

.social-links a {
	margin-right: 5px;
	display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.page-top-info {
	background: #f8f7f7;
	padding: 60px 0 70px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact-section {
	padding: 60px 0;
	position: relative;
}

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

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

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

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

.contact-form input,
.contact-form textarea {
	width: 100%;
	height: 35px;
	border: 1px solid #ddd;
	padding: 0 18px;
	background: transparent;
	border-radius: 2px;
	margin-bottom: 10px;
	font-size: 14px;
	margin-top: 5px;
}

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

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

.map iframe {
	width: 100%;
	height: 100%;
}
/* ----------------
  Responsive
---------------------*/

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

/* Medium screen : 992px. */

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

/* Tablet :768px. */

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

/* Large Mobile :480px. */

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

	.slicknav_menu .slicknav_menutxt {
	}

	a.slicknav_btn.slicknav_collapsed {
		background: #000000;
	}

	.slicknav_nav .slicknav_row, .slicknav_nav a {
		font-size: 20px;
		margin: 0;
		letter-spacing: 0.5px;
	}
}

/* Medium Mobile :480px. */

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

/* Small Mobile :320px. */

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

/*
Abhishek Custom Style    
*/

.section-padding{padding: 4rem 0px 4rem 0;}

.product-item .pi-pic img {
    height: 450px;
    object-fit: cover;
}

.category-card{
    margin: 30px 0px
}
.category-card img {
    height: 350px;
    object-fit: cover;
}
.category-card .card-img-overlay{bottom: 0 !important;top: unset;background: linear-gradient(360deg, black, transparent);}
.category-card .card-img-overlay .card-title{color: #fff; font-weight: 800; letter-spacing: 1px; text-transform: uppercase}
.category-card .card-img-overlay .card-text{color: #fff; font-size: 16px}
.category-card{overflow: hidden;}
.category-card:hover img {transform: scale(1.1, 1.1); transition: all .8s}
.category-card img {transition: all .8s;}
.prdct-cat-image img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.product_cat_wrap {
    background: #fde9d8;
    margin-top: 20px;
    background-color: #f6c92d;
}

.prdct-cat-details {
    margin: 8% 0;
    text-align: left;
}
.small-space {
    padding: 0px 4px;
}

.prdct-cat-details h4 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    color: #282828;
}
.small-space {
    padding: 0px 5px !important;
}
.ft-wp-gallery-masonry .ftg-masonry-4-column.ftg-masonry-5px-margin {
    width: calc(24.7% - 10px)!important;
}

section.gallery-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}
section.gallery-section .section-title {
    margin-bottom: 20px;
}
section.cat-section .card {
    margin: 5px 0;
}

section.cat-section .card img {
    height: 280px;
    object-fit: cover;
    object-position: bottom;
}

section.cat-section .card .card-img-overlay{
	text-align: center;
}
img.his-her-img {object-position: unset !important;}
.add-photo a {
    color: #000;
    padding: 0px 0px;
    border-bottom: 1px solid #000;
    display: inline-block;
    margin: 0px 10px;
}

.add-photo {
    text-align: center;
    width: 100%;
    margin: 0 0 20px 0;
}

.swiper-contain {
        background: #000000;
        /* height: 40px; */
        width: 100%;
        /* position: fixed; */
        top: 0;
        z-index: 102;
        overflow: hidden;
    }
    .swiper-item{
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        display: none;
    }
    @-webkit-keyframes fadeInUp {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .fadeInUp {
        display: block;
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp
    }
    .swiper-item {
    width: 100%;
    text-align: center;
}

.swiper-item a h3 {
    display: inline-flex;
    font-size: 12px;
    /* line-height: 40px; */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    /* font-weight: 600; */
    margin: 0;
}

.swiper-item a h3 span p {
    color: #fff;
    display: block;
    background-color: #ca0000;
    margin: 7px 15px;
    padding: 3px 8px;
}
.site-logo img {
    height: 120px;
    width: auto;
    margin: 5px 0 5px 0;
    padding: 5px 0;
    transition: all 0.6s ease;
}
.myfixedHeader {
    top: 5.5% !important;
}
header.header-section {
    background-color: var(--primary-color);
    padding: 0px 0;
    position: relative;
    z-index: 9;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-wrapper {
    /* position: absolute; */
    /* width: 100%; */
    z-index: 9999 !important;
}
section.banner-bottom {
    background-color: #f6c92d;
    text-align: center;
}

.banner-bottom-content a h3 {
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 2px;
    color: #000;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.banner-bottom-content {
    text-align: center;
    width: 100%;
}

.shop-nwbtn {
    text-align: center;
    display: none;
    position: absolute;
    top: 40%;
    width: 100%;
}

.btn-shop {
    border: 1px solid #4c7881 !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: #4c7881 !important;
    color: #fff !important;
}

.product-item {
    position: relative;
}

.product-item:hover .shop-nwbtn {
    display: block;
}
.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 40%;
    left: -3%;
}

.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    right: -3%;
}

.owl-nav button i {
    font-size: 25px;
    border: 0;
    color: #333;
}

section.banner-section {
    padding: 1rem 0 0 0;
}
.container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 95%;
}

@media(max-width: 568px){
	.woocommerce ul.products li.product a img{
		height: 200px !important;
		object-fit: cover
	}
}

.know-abt-image img {
    height: 230px;
    width: 100% !important;
}

.know-abt-wrapper {
    position: relative;
    margin: 15px 0;
    text-align: center;
}

.play-button {
    position: absolute;
    top: 37%;
    text-align: center;
    left: 43%;
}

.play-button img {
    height: 80px;
    width: 80px !important;
}

.know-abt-wrapper:before {content: '';position: absolute;background-color: #00000014;height: 100%;width: 100%;top: 0;left: 0;}
section.Know-abt-section {
    padding: 2rem 0px 0rem 0;
}
section.Social-media {
    text-align: center;
    padding: 15px 0;
}

.descript {
    background-color: #f6c92d;
    width: 100%;
    padding: 18px 0;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    border-radius: 2px;
}

.context p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
    color: #fff;
}
.gallery-section .modal {
    top: 13%;
}

.gallery-section .modal .modal-dialog {
    max-width: 55% !important;
}
.gallery-image a img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.gallery-image a img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

div#addmodal .modal-dialog {background-color: #fff;border: 0 !important;max-width: 25% !important;}

div#addmodal {
    z-index: 99999;
    border: 0;
    border-radius: 9px;
    top: 15%;
}

div#addmodal .modal-content {
    border: 0;
    border-radius: 7px;
}

div#addmodal .modal-content .modal-header h4 {
    font-size: 17px;
}

div#addmodal .modal-content .modal-header .close {
    float: right !important;
    margin: 0;
    padding: 0px;
}

div#addmodal .modal-content .modal-header {
    display: flow-root;
}

form.wpcf7-form.init p {font-size: 14px;margin: 0;letter-spacing: 0.5px;}

form.wpcf7-form.init p label span input {
    width: 100% !important;
    margin-top: 10px;
    margin-bottom: 0;
}

input.wpcf7-form-control.wpcf7-submit {
    font-size: 16px;
    margin-top: 20px;
    padding: 5px 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #4c7881;
    color: #fff;
    border: 1px solid #4c7881;
}
.features-list ul {
    display: inline-flex;
    width: 100%;
    margin: 0;
}

.features-list ul li {
    width: 20%;
    text-align: center;
    list-style: none;
    border-right: 1px solid #ddd;
}

.features-list {
    width: 100%;
}

.features-image img {
    height: 45px;
    width: 45px;
}

.features-content h3 {
    color: #676565;
    font-size: 14px;
    margin: 13px 0 0 0;
    line-height: 23px;
    letter-spacing: 0.5px;
}

.features-list ul li:last-child {
    border: 0;
}

section.features-section {
    background-color: #000000;
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
}
.social-links {
    margin: 30px 0 0px 0;
    text-align: center;
}

.footer-widget.contact-widget h3 {
    font-size: 17px;
    color: #fff;
}
form.newsletter {
    display: inline-flex;
    width: 100%;
    margin-top: 20px;
}


form.newsletter input {
    width: 70%;
    background-color: #fcfcfc;
    border: 0;
    border-radius: 0;
    font-size: 12px;
}

button.btn.btn-subscribe {
    background-color: #fa5f09;
    color: #fff;
    margin-left: -3px;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 12px;
}
.card-img-overlay a {
    background-color: #f6c92d;
}
section.cat-section {
    padding: 60px 0;
}

.main-title h3 {
    font-size: 30px;
    margin-bottom: 0px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-family: 'PT Serif', serif;
    color: #8e9091;
}

.category-image img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    /* object-position: bottom; */
}

.category-box {
    /* border: 1px solid #efefef; */
    padding: 0px 0px;
    border-radius: 3px;
    position: relative;
    -webkit-box-shadow: 1px -1px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px -1px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 1px -1px 5px 0px rgb(189 189 189 / 75%);
    margin: 5px 5px;
}

.category-content h3 {
    font-size: 20px;
    letter-spacing: 0.8px;
    color: #000;
    margin-bottom: 5px;
}

.category-content {
    text-align: center;
    padding: 10px 0 5px 0;
}

.category-content a {
    display: none;
    border: 1px solid #4c7881;
    padding: 5px 20px;
    background-color: #4c7881;
    color: #fff;
}

.category-box:hover .category-content a {
    display: block;
    top: 50%;
    position: absolute;
    left: 30%;
}
.category-content a:hover {
    color: #fff;
    margin-top: 10px;
    transition: all 0.6s;
}
.gutter {
    padding: 0 !important;
}

.Banner-Image-content {
    background-color: #009b9d;
    height: 300px;
    display: table;
    width: 100%;
}
.arrival-banner {
    background-color: #009b9d;
}
.arrival-banner img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.content-wrap {
    display: table-cell;
    vertical-align: middle;
}

.content-wrap h3 {
    font-size: 65px;
    margin: 0px 0px 15px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.content-wrap p {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
}

.btn-dark {
    background-color: #000;
    border-radius: 0;
    padding: 7px 20px;
    letter-spacing: 0.7px;
    border: 1px solid #000;
}

.btn-dark:hover {background-color: transparent;color: #000;}

section.Banner-Image-section .row {
    -webkit-box-shadow: -1px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: -1px 0px 5px 0px rgb(177 177 177 / 75%);
}

section.Banner-Image-section {padding-bottom: 60px;}
.main-title {
    width: 100%;
}
section.about-home-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.about-content p {
    font-size: 16px;
    letter-spacing: 0.6px;
    text-align: justify;
    font-weight: 400;
    line-height: 30px;
    color: #717171;
}
.header-quote {
    background-color: #a8abab;
    text-align: center;
    padding: 3px 0;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.quote-text {
    width: 100%;
}

.quote-text p {
    color: #fff;
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 30px;
}
section.hero-section2 {
    margin: 30px 0;
}
.tab-content-wrap {
    /* background-color: #F7CF29; */
    padding: 35px 25px;
    border-radius: 20px;
}
.tabcontent {
    margin: 5px 0 10px 0;
    border-radius: 10px;
}

.magzine-cover img {
    height: 200px;
    width: auto;
}
.tab button:last-child {
    margin-right: 0;
}

.magzine-list button {
    padding: 0;
    margin: 10px 10px;
    border: 0;
    width: auto;
}

.magzine-list button:first-child {
    margin-left: 0;
}

.magzine-list {
    margin-bottom: 30px;
}

.content h3 {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    font-family: 'PT Serif', serif;
    color: #fbfbfb;
}

.content p {
    font-size: 14px;
    letter-spacing: 0.2px;
    font-weight: 600;
    line-height: 28px;
    color: #fbfbfb;
}

.magzine-info h3 {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    font-family: 'PT Serif', serif;
    color: #3e3e3e;
}

.magzine-info h5 {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
    text-transform: capitalize;
    letter-spacing: 0.2px;
    font-weight: 600;
}

.magzine-info p {
    font-size: 15px;
    letter-spacing: 0.2px;
    font-weight: 600;
    line-height: 28px;
}

.magzine-list ul {
    column-count: 3;
}

.magzine-list ul li {
    font-size: 15px;
    letter-spacing: 0.2px;
    font-weight: 550;
    line-height: 28px;
    color: #585858;
    list-style-position: inside;
}
section.magzines-section {
    padding: 0rem 0;
    padding-top: 2rem;
}
section.advertise-section {
    padding: 1rem 0;
    background-color: #f9f9f9;
}

.table-price table tr th {
    background-color: var(--primary-color);
    margin: 0px;
    padding: 7px 30px;
    color: #fff;
    font-weight: 400;
    /* text-align: center; */
    font-size: 17px;
    letter-spacing: 0.5px;
}

.table-price table tr {
    margin: 0px;
}

.table-price table tr td {
    font-size: 14px;
    padding: 0px 35px;
    line-height: 35px;
    color: #8a8a8a;
    font-weight: 550;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #f7cf291f;
}
.media-pck img {
    height: 325px;
    margin-bottom: 20px;
}

.media-pck p a {
    color: #333;
    font-weight: 550;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.media-pck {text-align: center;}
.advertise-row {
    background-color: #eeeeee;
    padding: 45px 70px;
    margin: 20px 0;
    border-radius: 20px;
}

.advertise-dis-wrap h3 {
    font-size: 17px;
    color: #8a8a8a;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    font-weight: 600;
}

.advertise-dis-wrap {
    margin: 0px 5px;
}

.advertise-dis-wrap p {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
}
section.testi-section {
    padding: 1rem 0;
}

.testi-wrapper {
    border-radius: 20px;
    padding: 28px 40px;
    background-color: #eeeeee;
    margin: 10px 20px;
    position: relative;
}
.testi-logo {
    position: absolute;
    right: -20px;
    top: -45px;
}

.testi-logo img {
    height: 105px;
    width: 150px !important;
    transform: rotate(20deg);
    position: relative;
}
.testi-wrapper p {
    font-size: 13.5px;
    line-height: 25px;
    letter-spacing: 0.3px;
    font-weight: 550;
}

.testi-wrapper h3 {
    font-size: 15px;
    font-weight: 550;
    font-style: oblique;
    letter-spacing: 0.5px;
    line-height: 30px;
    margin-bottom: 0;
}
.feedback-ttile h3 {
    font-size: 23px;
    margin-bottom: 30px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-family: 'PT Serif', serif;
    color: #8e9091;
}

.feebback-box {
    /* background-color: #eee; */
    /* padding: 20px; */
    margin: 0px;
    /* border-radius: 10px; */
    /*     position: relative;
    padding:50px 40px;
    margin:1em auto 50px;
    text-align:center;
    color: #fff; */
    
 /* css3 */
    
 /*
 NOTES:
 -webkit-border-radius:220px 120px; // produces oval in safari 4 and chrome 4
 -webkit-border-radius:220px / 120px; // produces oval in chrome 4 (again!) but not supported in safari 4
 Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
 */
    /*     -webkit-border-top-left-radius:220px 120px;
    -webkit-border-top-right-radius: 230px 120px;
    -webkit-border-bottom-right-radius:220px 120px;
    -webkit-border-bottom-left-radius:220px 120px;
    -moz-border-radius:220px / 120px;
    border-radius:220px / 120px; */
}

.feebback-box p {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.2px;
    font-weight: 550;
    margin-bottom: 0;
    padding: 55px 40px 20px 50px;
    color: #fcfcfc;
}
.adv-logo img {
    height: 150px;
    width: 150px !important;
    object-fit: contain;
    object-position: center;
}

.adv-logo {
    margin: 20px 3px;
}
.ad-row {
    margin: -80px 0 20px 0;
}
section.abt-cntct-section {
    background-color: #f9f9f9;
    padding: 1rem 0 2rem 0;
}

.review-abt {
    background-color: #eee;
    padding: 20px 30px;
    border-radius: 15px;
}

.review-image img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.review-image {
    margin-bottom: 10px;
}

.review-content h3 {font-size: 22px;font-weight: 500;font-family: 'PT Serif', serif;color: #6f6f6f;margin-bottom: 10px;line-height: 30px;}

.review-content p {
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #333;
    font-weight: 550;
}

.review-content {
    height: 270px;
    overflow-y: scroll;
}
img.hide-class {
    display: none;
}

.review-abt:hover .review-image .second-image {
    display: inline-block;
    -moz-transition: all 350ms ease-in-out 0s;
    -webkit-transition: all 350ms ease-in-out 0s;
    transition: all .4s ease 0s;
}

.review-abt:hover .review-image .first-image {
    display: none;
}
.main-title.text-left h3 {
    text-align: left;
}

.contact-wrap {
    padding: 10px 25px;
    background-color: #eee;
    border-radius: 15px;
}

.sales-add p, .sales-add p a {
    margin: 0;
    line-height: 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1px;
    color: #333;
}

.sales-add {
    margin-bottom: 9px;
}
div.wpforms-container-full .wpforms-form input[type=submit], div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form .wpforms-page-button {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    font-size: 15px !important;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff !important;
}

.contact-title .main-title h3 {
    margin-bottom: 0px;
    font-size: 30px;
}
.social-links-warp p a {
    color: #000;
    font-weight: 600 !important;
}
.header-wrapper.myfixedHeader {
    top: 0 !important;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.header-wrapper.myfixedHeader .main-logo-wrapper a img {
    height: 100px;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.tab button {
    margin: 0px 35px 0px;
    padding: 0;
    border: 0;
}

.tab button:first-child {
    margin-left: 0;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #357EC7;
}
/* Create an active/current "tab button" class */
.tab button.active {
  /* background-color: #357EC7; */
}
.tabcontent {
    display: none;
}
.topbar {
    background-color: #fff;
}
.magzines-section .tab {
    width: 100%;
    text-align: center;
}
.is-sticky .header-wrapper .header-section .main-logo-wrapper a img {
    height: 65px;
    background-color: var(--primary-color);
}
.sticky-wrapper {height: 186px !important;}
.feebback-box:before {
/*     content: "";
    position:absolute; */
    /*z-index:-1;*/
/*     bottom: -10px;
    right: 50%;
    height: 18px;
    border-right: 60px solid var(--primary-color);
    background: var(--primary-color); /* need this for webkit - bug in handling of border-radius */ */
 /* css3 */
/*     -webkit-border-bottom-right-radius:80px 50px;
    -moz-border-radius-bottomright:80px 50px;
    border-bottom-right-radius:80px 50px; */
 /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */
/*     -webkit-transform:translate(0, -2px);
    -moz-transform:translate(0, -2px);
    -ms-transform:translate(0, -2px);
    -o-transform:translate(0, -2px);
    transform: rotate(-30deg); */
}

.feebback-box:after {
/*     content: "";
    position:absolute; */
    /* z-index:-1;*/
/*     bottom: -19px;
    right: 55%;
    width: 53px;
    height: 20px; */
/*     background: var(--primary-color); */
 /* css3 */
/*     -webkit-border-bottom-right-radius: 61px 76px;
    -moz-border-radius-bottomright:40px 50px;
    border-bottom-right-radius: 147px 125px;  */
 /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */
/*     -webkit-transform:translate(-30px, -2px);
    -moz-transform:translate(-30px, -2px);
    -ms-transform:translate(-30px, -2px);
    -o-transform:translate(-30px, -2px);
    transform: rotate(-32deg);
    border-bottom-left-radius: 200px; */
}
.banner-text {
    /* background-color: #f7cf29 !important; */
    background: linear-gradient(45deg, #f7cf29b3,#f7cf29cf, #000000c7) !important;
}

.banner-text #n2-ss-2item2 {
    background: transparent !important;
}
img.angie-image {
    object-position: top;
}
.is-sticky .main-logo-wrapper {
    transform: translate(-115%, -69px);
    position: absolute;
    /* width: 269px; */
    object-fit: contain;
    /* height: 41px !important; */
    /* top: 0; */
    /* left: 0; */
}
.is-sticky .topbar .main-navbar {
    text-align: end;
}
.bg-1 {
    background-image: url(https://www.inandaround.uk.com/wp-content/uploads/2021/09/aaa.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 250px;
    width: 70%;
    position: relative;
    top: 0px;
}
.bg-2 {
    background-image: url(https://www.inandaround.uk.com/wp-content/uploads/2021/08/shape2.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 125px;
    width: 52%;
    position: relative;
    top: -75px;
    right: -245px;
}

.bg-2 p {
    top: 5%;
    position: relative;
}

.bg-3 {
    background-image: url(https://www.inandaround.uk.com/wp-content/uploads/2021/09/22wa.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 230px;
    width: 75%;
    position: relative;
    top: -60px;
    right: -25%;
}
.bg-3 p {
    padding: 60px 60px 40px 65px;
}
.magzines-section .tab .tablinks {
    background-color: transparent;
}

.magzine-download a {
    color: #0073d0;
    font-size: 18px;
    font-weight: 600;
    line-height: 47px;
    margin: 0;
    letter-spacing: 0.2px;
}
.magzine-cover:hover .second-magzine-image {
    display: inline-block;
    -moz-transition: all 350ms ease-in-out 0s;
    -webkit-transition: all 350ms ease-in-out 0s;
    transition: all .4s ease 0s;
}

img.second-magzine-image {
    display: none;
}

.magzine-cover:hover img {
    display: none;
}
.btm-margin {
    margin-bottom: 20px;
}
.header-social ul {
    display: inline-flex;
    margin: 0;
    margin-top: 15px;
    float: right;
}

.header-social ul li a img {
    height: 28px;
    width: 28px;
}

.header-social ul li {
    list-style: none;
    margin: 0px 7px;
}

.is-sticky .header-wrapper .topbar .main-menu li {
    margin: 0px 20px;
}
.main-title {
    margin-bottom: 25px;
}

/*Mobile Devices Inc Iphone 5,6,7,8 Portrait*/
@media (max-width: 767px) {
	:target:before {
	    margin-top: 80px !important;
	}
	.header-social ul {
	    margin: 10px 0;
	}
	.table-price table tr th {
		padding: 10px 6px;
	}
	.table-price table tr td {
		padding: 10px 7px;
	}
	.magzine-cover img {
	    height: 95px;
	}
	.magzine-download a{
		font-size: 13px;
	}

	.tab button {margin: 4px 10px !important;}

	.tab {
	    padding: 7px;
	}

	div#tabs-content {
	    padding: 10px;
	}

	.magzine-list ul {
	    column-count: 2;
	}

	.media-pck {
	    margin: 20px 0;
	}

	.advertise-row {
	    padding: 25px;
	}

	.advertise-dis-wrap {
	    margin: 20px 0;
	}

	.adv-logo img {
	    height: 130px;
	    width: auto;
	}

	.adv-logo {
	    text-align: center;
	}
	.review-abt {
	    margin: 20px 0;
	}
	.site-logo img {
		height: 90px;
	}
	.site-logo img {
		margin: 0;
	}
	.mobile-menu-container {
		width: 100%;
	}
	.sticky-wrapper{height: auto !important;}
	.bg-1 {
		top: 0;
		right: 0;
		background-size: 100% 100%;
		width: 100%;
		height: 180px;
	}

	.bg-2 {
		width: 75%;
		right: 0;
		top: 0;
		height: 140px;
	}

	.bg-3 {
		top: 0;
		width: 95%;
		height: 180px;
		right: 0;
	}
	.bg-3 p {
		padding-top: 45px;
	}

	.feedback {margin-bottom: 40px;}
    .ad-row {
		margin-top: 0;
	}
}
/*Mobile Devices Inc Iphone 5,6,7,8 Landscape*/
@media only screen and (min-device-width: 480px) and (max-device-width: 640px) and (orientation: landscape) {

}
/*Ipad and Ipad Pro Portrait*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:portrait) {
 
}
/*Ipad and Ipad Pro Landscape*/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {

}
/*Portrait and landscape iPad Pro*/
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {

}

/ (1440x900) WXGA+ Display /
@media  screen and (max-width: 1440px) {

}
 
/ (1680x1050) WSXGA+ Display /
@media  screen and (max-width: 1680px) {
 
}

/ (1920x1080) Full HD Display /
@media  screen and (max-width: 1920px) {
 
}

/ (2048x1152) Full HD Display /
@media  screen and (max-width: 2048px) {

}
/ (2560x1440) Full HD Display /
@media  screen and (max-width: 2560px) {

}
/ (3440x1440) Full HD Display /
@media  screen and (max-width: 3440px) {
}