:root{
	--colour-green: #30E514;
	--colour-dark-green: #0B393E;
	--colour-black: #1F1F1F;
	--colour-grey: #F4F4F4;
	--colour-white: #ffffff;

	--frame-width: calc(100% - 20vw);

    --animation-delay: 0s;
    --animation-duration: 1s;

	--font-main: "poppins";
  }
  /**
     * ----------------------------------------
     * animation slide-bottom
     * ----------------------------------------
     */
    @-webkit-keyframes fade-in {
      0% {
    		opacity: 0;
      }
      100% {
    		opacity: 1;
      }
    }
    @keyframes fade-in {
      0% {
  	  	opacity: 0;
      }
      100% {
  		opacity: 1;
      }
    }
  /**
   * ----------------------------------------
   * animation slide-bottom
   * ----------------------------------------
   */
  @-webkit-keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
  	opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
  			opacity: 1;
    }
  }
  @keyframes slide-bottom {
    0% {
  	  -webkit-transform: translateY(100px);
                transform: translateY(100px);
  			  opacity: 0;
    }
    100% {
  	-webkit-transform: translateY(0);
                transform: translateY(0);
  			  opacity: 1;
    }
  }
  /**
   * ----------------------------------------
   * animation slide-in-left
   * ----------------------------------------
   */
  @-webkit-keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }

  .reveal {
      position: relative;
      opacity: 0;
      transform: translateY(100px);
      transition: all 0.5s ease;
  }
  .reveal.active {
      opacity: 1;
      transform: translateY(0);
  }

  .fade-in {
    -webkit-animation: fade-in var(--animation-duration) var(--animation-delay) both;
    animation: fade-in var(--animation-duration) var(--animation-delay) both;
  }
  .slide-bottom {
    -webkit-animation: slide-bottom var(--animation-duration) var(--animation-delay) both;
    animation: slide-bottom var(--animation-duration) var(--animation-delay) both;
  }

  .slide-in-left {
  	-webkit-animation: slide-in-left var(--animation-duration) var(--animation-delay) cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  	animation: slide-in-left var(--animation-duration) var(--animation-delay) cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
/* FLEX PROPERTIES */
.align-end{
	align-content: end;
	align-self: end;
}
.align-center{
	align-content: center;
}
.space-between {
    justify-content: space-between;
}
.width-auto .col {
  width: auto;
}
.flex-container {
  display: flex;
  flex-wrap: wrap;
}
/*Menu*/
ul.menu {
	display: table;
	width: auto !important;
	margin: 0 auto 0 0;
}
ul.menu .menulink {
	padding: 5px 0px 5px 60px;
	font-size: 18px;
	text-transform: none;
	border-color:#7c2789;
	color: #aaa;
	border: none;
}
ul.menu .menulink:hover,
.navigation ul.menu li.active a {
	/*background:none !important;*/
	color: var(--colour-green);
	border:none !important;
}
ul.menu ul {
	padding-top: 26px;
	background: none;
}
ul.menu ul li {
	border: 0px solid #eee;
}
ul.menu ul li a {
	text-align: center;
	background-color: var(--colour-white);
	/*border: 1px solid #eee;*/
	border-top: none;
	color: #999;
}
ul.menu ul li a:hover {
	background-color: #eee;
	color: #333;
}
/*Main CSS*/
*{
	font-family: var(--font-main);
	color: var(--colour-dark-green);
}
.body {
	padding: 40px;
}
.frame{
	width: var(--frame-width);
	max-width: 1600px;
}

/*Elements*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, .h5, h5 {
	color: inherit;
}
h1, .h1, h2, .h2{
	font-weight: 700;
}
h3, .h3, h4, .h4{
	font-weight: 600;
}
h5, .h5, h6, .h6{
	font-weight: 500;
	text-transform: none;
}
h1,.h1 {
	font-size: 65px;
	line-height: 70px;
}
h2,.h2 {
	font-size: 55px;
	line-height: 60px;
}
h3, .h3{
	font-size: 50px;
	line-height: 50px;
}
h4, .h4 {
	font-size: 45px;
	line-height: 40px;
}
h5, .h5{
	font-size: 40px;
	line-height: 30px;
}
h6, .h6 {
	font-size: 28px;
	line-height: 25px;
}
p,a,button,input{
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
	color: inherit;
}
strong{
	font-weight: 900 !important;
}
ul:not([class]){
	padding-left: 20px;
	margin-bottom: 20px;
}
/*Header*/
/*.navigation {
	border-bottom:4px solid #068ed0;
}*/
.logo {
	display: inline-block;
	height: 100px;
	background-position: left;
	background-size: 80% auto;
	min-width: 300px;
	max-width: 300px;
	background-color: var(--colour-green);
	padding: 70px 0;
	box-shadow: 0px 13px 25px -10px rgba(48, 229, 20, 0.8);
}
.logo::before{
	content:'';
	position: absolute;
	height: 140px;
	width: 30%;
	left: -25%;
	top: 0;
	padding: 60px 0;
	/*clip-path: polygon(0% 0, 100% 0%, 100% 100%, 95% 100%);*/
	clip-path: polygon(0% 0, 100% 0%, 100% 100%, 75% 100%);
	background-color: var(--colour-green);

}
.header {
	padding: 0px;
	position: relative;
	z-index: 10;
	background-image: url('images/header-rectangle.png');
	background-repeat: no-repeat;
	background-position: 2vw top;
}
/*.header::before{
	content:"";
	position: absolute;
	top: 0;
	left: 0%;
	bottom: -29px;
	min-width: 100px;
	max-width: 100px;
	transform: rotate(-29deg);
	filter: drop-shadow(-1px 6px 15px rgba(50, 50, 0, 0.5));
	background-color: var(--colour-white);
}
.header::after{
	content:"";
	position: absolute;
	min-width: 7%;
	max-width: 7%;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: var(--colour-white);
	clip-path: polygon(0 0, 50% 0%, 100% 100%, 0% 100%);
}*/
.header .col:not(:first-child){
	padding: 15px 0;
}
.header .col.nav{
	max-width: 65%;
	flex: 1 1 auto;
}
.header .col.nav .form-search{
	margin-bottom: 20px;
	margin-left: 25px;
}
.header .col.col-user-account{
	min-width: 10%;
	justify-content: end;
	display: flex;
}
.customer-account.mobile{
	display: none;
}
.form-search.mobile{
	display: none;
}
/*Elements*/
.html-style ul li::before, ul.bullet li::before, ul.bullet-list li::before {
	color: #CCC;
}
input[type="submit"], button, .button{
	box-shadow: 0px 10px 20px rgba(48, 229, 20, 0.4);
	background-color: var(--colour-green);
	font-weight: 500;
	font-size: 16px;
	line-height: 30px;
	color: var(--colour-dark-green);
	border-color:transparent;
	padding: 12px 35px;
}
button i, .button i{
	color: var(--colour-white);
}
input[type="submit"]:hover, button:hover, .button:hover{
	box-shadow: 0px 10px 20px rgba(11, 57, 62, 0.4);
	border-color: var(--colour-dark-green);
	background-color: var(--colour-dark-green);
	color: var(--colour-white);
}
.button.btn-variant-1{
	box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.4);
	background-color: var(--colour-white);
}
.button.btn-variant-1:hover{
	background-color: var(--colour-green);
	border-color: var(--colour-green);
	color: var(--colour-white);
}
.button.btn-variant-1 i{
	color: var(--colour-green);
}
.button.btn-variant-2{
	box-shadow: 0px 10px 20px rgba(11, 57, 62, 0.4);
	background-color: var(--colour-dark-green);
	color: var(--colour-white);
}
.button.btn-variant-2:hover{
	border-color: var(--colour-white);
	background-color: var(--colour-white);
	color: var(--colour-dark-green);
}
.button.btn-variant-3,.button.btn-variant-4,.button.btn-variant-5{
	background-color: transparent;
}
.button.btn-variant-3 i,.button.btn-variant-4 i,.button.btn-variant-5 i{
	color: var(--colour-green);
}
.button.btn-variant-3{
	border-color: var(--colour-green);
}
.button.btn-variant-4{
	box-shadow: 0px 10px 20px rgba(11, 57, 62, 0.4);
	border-color: var(--colour-dark-green);
	background-color: transparent;
}
.button.btn-variant-5{
	box-shadow: 0px 10px 20px rgba(11, 57, 62, 0.4);
	border-color: var(--colour-dark-green);
}
hr{
	border-bottom: 2px solid #12624D;
}
/*Header Elements*/
.top-search > input {
    width: 80%;
    border-width: 0px;
    background-color: #EEE !important;
    font-weight: 300;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    padding: 9px 14px 9px !important;
	vertical-align: top;
	display: table-cell;
}
.top-search > button {
    width: 20%;
    border-radius: 0;
    padding: 9.5px;
    font-size: 18px;
    font-family: 'rift',sans-serif;
	vertical-align: top;
	display: table-cell;
}
.top-search {
    overflow: hidden;
	max-width: 500px;
	display: table;
	margin: 0 0 0 auto;
}
.customer-account .button{
	padding: 10px 12px;
	line-height: 0;
}

.form-search form {
    position: relative;
}

.form-search form button {
    position: absolute;
    left: 0;
    border: 0;
    background-color: transparent;
    padding: 5px 0 10px 10px;
	box-shadow: none;
	color: var(--colour-green);
}
.form-search form button i{
	color: var(--colour-green);
}
.form-search form input[type="text"] {
	padding: 6.5px 5px;
    padding-left: 40px;
    border: none;
    border-bottom: 1px solid #DFDFDF;
    font-size: 16px;
    font-weight: 300;
    border-radius: 0;
}
/* Custom CSS */
.align-items-top{
	align-items: baseline !important;
}
.border-bottom{
	border-bottom: 2px solid #12624D;
}
.box-number{
	padding-top: 60px;
	padding-bottom: 60px;
}
.box-number.highlight{
	background-color: var(--colour-green);
	box-shadow: 0px 10px 20px rgba(48, 229, 20, 0.4);
}
.contact-details{
	margin-bottom: 35px;
	padding-left: 40px;
	position: relative;
}
.contact-details p em{
	position: absolute;
	left: 0;
	font-size: 24px;
}
.contact-details p:first-child{
	font-weight: 700;
	font-size: 19px;
	line-height: 28px;
}
.margin-bottom-30{
	margin-bottom: 30px;
}
.margin-bottom-50{
	margin-bottom: 50px;
}
.margin-bottom-70{
	margin-bottom: 70px;
}
.margin-top-20{
	margin-top: 20px;
}
.margin-top-70{
	margin-top: 70px;
}
.pad-bottom-100{
	padding-bottom: 100px;
}
.pad-left-40{
	padding-left: 40px;
}
.row-form-hide-title-description .pb-block-type-form h2{
	display: none;
}
.row-home-category{
	margin-bottom: 30px;
	row-gap: 30px;
	justify-content: center;
}
.row-home-category .pb-block-type-image{
	position: relative;
}
.row-home-category .pb-column{
	transition: all 0.35s ease 0s;
}
.row-home-category .pb-column:hover{
	transform:translateY(-10px);
}
.row-home-category .pb-column:hover  .pb-block-type-image::before{
	transform:rotate(45deg);
}
.row-home-category .pb-block-type-text p{
	position: absolute;
	z-index: 1;
	bottom: 7px;
	right: 25px;
}
.row-home-category .pb-block-type-text p a{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: var(--colour-white);
}
.row-home-category img{
	box-shadow: 0px 10px 20px rgba(11, 57, 62, 0.4);
	width: 100%;
}
.row-home-category .pb-block-type-image::before{
	content: "\e0fc";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	top: 21px;
	right: 25px;
	font-weight: 400;
	font-size: 35px;
	color: var(--colour-white);
	transition: all 0.35s ease 0s;
}
.row-home-category .pb-block-type-image::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(11, 57, 62, 0) 50.52%, #0B393E 100%);
	pointer-events: none;
}
.services-details{
	margin-top: 20px;
}
.services-details strong{
	font-weight: 700;
	font-size: 19px;
	line-height: 35px;
}
.shadow-box{
  filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
}
.shadow-box .pb-block-content{
	clip-path: polygon(0 0, 100% 0%, 100% 14%, 0% 100%);
	background-color: var(--colour-green);
}
.strike-through{
	text-decoration: line-through;
}
.subtitle{
	background-color: #0F5F4A;
	display: table;
	font-weight: 300;
	font-size: 14px;
	padding: 4px 20px;
}
/* HERO BANNER */
.banner{
	padding: 0;
}
.banner p{
	color: var(--colour-white) !important;
}
.banner .slider-wrapper .slide-inner{
	text-align: left;
}
.banner .button{
	text-transform: uppercase;
}
.banner .button em{
	color: var(--colour-white);
}
.banner .tns-controls{
	display: none;
}
.banner .tns-nav{
	max-width: 300px;
	position: absolute;
	z-index: 9;
	top: 80%;
	left: 11vw;
}
.banner button{
	background-color: #D9D9D9;
	opacity: 0.3;
	margin-right: 10px;
	padding: 3px 29px;
}
.banner button.tns-nav-active{
	background-color: var(--colour-white);
	opacity: 1;
}
.banner::after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(images/banner-polygon.png);
	background-position: bottom right;
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
	width: 100%;
	height: 430px;
	max-width: 50vw;
}
.banner figure{
	position: absolute;
    right: 150px;
	bottom: -60px;
	max-width: 45vw;
}
.banner figure img{
	width:100%;
}
.slider-wrapper .slide-cell{
	padding: 40px 11vw;
}
/* FORMS */
.form-block{
	border: none;
	padding: 30px;
}
.form-block .field label{
	color: var(--colour-dark-green);
}
input[type="text"], input[type="number"], input[type="password"], input[type="email"], input[type="tel"], textarea, select{
	border:none;
	border-bottom: 1px solid #ACACAC;
	border-radius: 0;
}
.form-block input[type="submit"],.form-block button,.form-block .button{
	width: 100%;
	text-transform: uppercase;
}
.form_table .field{
	padding: 10px;
}
.form_table .field.submit{
	display: block;
	text-align: center;
}
.form_table .field.submit button{
	display: block;
	margin: 0 auto 15px;
}
.form-sign-up-form button{
	background-color: var(--colour-white);
	color: var(--colour-dark-green) !important;
	box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.4);
}
/* Footer */
.footer {
	background-color:var(--colour-dark-green);
	color: var(--colour-white);
	padding:0 0 24px;
}
.footer .frame{
	border-top: 2px solid #12624D;
	padding-top:140px;
}
.footer p{
	color:var(--colour-white);
}
.footer > .frame > .coltable > .col{
	width: calc(70%/4);
}
.footer > .frame > .coltable > .col:first-child{
	width: 30%;
}
.footer .foot-menu {
	border: none;
}
.footer .foot-menu > li {
	margin-bottom: 8px;
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
	color: var(--colour-white);
}
.footer .foot-menu > li a {
	border-color: transparent !important;
	color: var(--colour-white);
	padding: 0;
}
.footer .foot-menu > li a:hover {
	border-color: transparent !important;
	color: #666 !important;
}
.footer .h4 {
	font-size: 18px;
	line-height: 27px;
	font-weight: 700;
	margin: 0 0 10px;
	letter-spacing: 0;
}
.foot-lower p {
	font-weight: 300;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	letter-spacing: 0.005em;
	margin: 0;
}
.footer p a {
	color:rgba(255,255,255,0.5);
}
.footer .break {
	width: 80px;
	/*height: 3px;*/
	margin: 20px 0 20px;
	border-radius: 10px;
	background-color: var(--colour-white);
}
.footer .foot-menu {
	margin: 0;
	padding-top: 0;
}
.footer .foot-menu > li a {
	border-color:#0d63a1;
	color: var(--colour-white);
}
.footer .foot-menu > li a:hover {
	border-color:var(--colour-white);
	color: var(--colour-white);
}
.footer .foot-product-wrap {
	background-color: var(--colour-white);
	box-sizing: border-box;
	border-radius: 8px;
	overflow: hidden;
	color: #000;
}
.footer .foot-product-wrap .h4 {
	font-size: 24px;
	color: #90469b;
}
.footer .foot-product-wrap a {
	color: #068ed0;
	text-decoration: none;
}
.footer .foot-product-wrap p {
	color:#999;
	margin: 0;
}
.foot-lower {
	text-align: center;
	padding-top: 130px;
}
.foot-logo img {
	max-width: 325px;
}

/*Index Assets*/

/*Section*/
.pb-section h1,.pb-section .h1{
	color: var(--colour-green);
}
.pb-section h2,.pb-section .h2{
	color: var(--colour-dark-green);
}
.pb-section p:not([class]){
	color: var(--colour-dark-green);
}
.section-variant-1, .pb-section.section-variant-1{
	background-color:var(--colour-grey);
}
.section-variant-2, .pb-section.section-variant-2 {
	background-color:var(--colour-dark-green);
}
.section-variant-2 *, .pb-section.section-variant-2 *,.section-variant-2 p, .pb-section.section-variant-2 p {
	color: var(--colour-white);
}
.section-variant-3, .pb-section.section-variant-3{
	background-color:var(--colour-green);
}
.section-variant-4, .pb-section.section-variant-4{
	background-color:var(--colour-white);
}
.section-variant-5, .pb-section.section-variant-5{
	background-color:var(--colour-white);
}
.body .frame > *:last-child {
	margin-bottom:0;
}
.payment-summary {
	border: none;
	background-color: #652D90;
}
.payment-summary .button {
	border: none;
	background-color: #068ed0;
	color: var(--colour-white);
}
.payment-summary .button:hover {
	background-color: var(--colour-white);
	color: #652D90;
}
/* POST SLIDER - TESTIMONIAL */
.post-slide-testimonial .slide-content-wrap{
	padding: 36px 26px;
	background-color: #FCFCFC;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.post-slide-testimonial .slide-content-wrap .testimonial-title{
	display: block;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: var(--colour-black);
	margin-bottom: 2px;
}
.post-slide-testimonial .slide-content-wrap .testimonial-author{
	font-weight: 300;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.005em;
	color: var(--colour-black);
}
.post-slide-testimonial .slide-content-wrap .star-rating em{
	font-size: 23px;
	line-height: 23px;
	color: #F8B805;
}
.slider-testimonial .tns-outer .tns-controls{
	overflow: visible;
}
.slider-testimonial .tns-outer .tns-controls button{
	width: 35px;
	height: 35px;
	padding: 0px 11px;
	box-shadow: none;
}
.slider-testimonial .tns-outer .tns-controls button:hover{
	box-shadow: none;
}
.slider-testimonial .tns-outer .tns-controls button:first-of-type{
	transform: translateX(-60%);
}
.slider-testimonial .tns-outer .tns-controls button:last-of-type{
	transform: translateX(60%);
}
.slider-testimonial .tns-outer .tns-controls button:first-of-type,.tns-outer .tns-controls button:last-of-type{
	border-radius: 100%;
}
.slider-testimonial .tns-outer .tns-controls button:first-of-type:hover,.slider-testimonial .slider-wrapper:hover .tns-outer .tns-controls button:first-of-type{
	transform: translateX(-60%);
}
.slider-testimonial .tns-outer .tns-controls button:last-of-type:hover,.slider-testimonial .slider-wrapper:hover .tns-outer .tns-controls button:last-of-type{
	transform: translateX(60%);
}
.slider-testimonial .tns-outer .tns-controls button::before {
	font-size: 20px;
}
.slider-testimonial .tns-outer .tns-controls button:first-of-type::before {
    content: '\f053';
}
.slider-testimonial .tns-outer .tns-controls button:last-of-type::before {
    content: '\f054';
}
.slider-testimonial .tns-nav{
	display: none;
}

/* BROWSE PAGE */
.wrapper-product{
	background-color: var(--colour-white);
	padding-top: 0;
}
.no-filter-items{
	line-height: 60px;
}
.category-box.category-image > li{
	width: 50%;
	padding: 15px;
}
.category-box.category-image > li > .box{
	border: none;
	border-radius: 0;
}
.category-box.category-image .image img{
	border-radius: 0;
}
.product-box.category-box .image{
	position: relative;
}
.product-box.category-box .image:hover::after{
	opacity: 0;
}
.product-box.category-box .image::after{
	content:"";
	position: absolute;
	top:0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(11, 57, 62, 0) 48.44%, #0B393E 100%);
	transition: all 0.5s ease;
}
.product-box.category-box i{
	position: absolute;
	color: var(--colour-white);
	right: 40px;
	top: 40px;
	font-size: 45px;
	z-index: 2;
	transition: all 0.5s ease;
}
.product-box.category-box .title{
	position: absolute;
	bottom: 0;
	right: 40px;
	padding-bottom: 40px;
	color: var(--colour-white);
	font-weight: 700;
	font-size: 30px;
	line-height: 45px;
}
.product-box.category-box a:hover .title small, .product-box.category-box a:hover .title{
	color: var(--colour-green);
}
.product-box.category-box .title small{
	display: none;
}
.product-box .title a{
	font-weight: 400;
    font-size: 15px;
    line-height: 20px;
	color: #58585A;
}
.product-box .options-add{
	position: relative;
	top: 0;
	left: 0;
}
.product-box .box .options-add .button.bt-add{
	width: 100%;
	display: block;
	opacity: 1;
	background-color: var(--colour-green);
	text-align: center;
}
.product-box .box .options-add .button.bt-add span{
	color: var(--colour-white);
}
.product-box .options{
	padding: 0;
}
.product-box > li > .box{
	overflow: hidden;
}
.product-box .title{
	color: #58585A;
}
.product-box .options .options-price{
	color: #0B393E;
	padding-top: 0;
}
.product-box .box .options-add .button.bt-add{
	border-radius: 0;
}
.product-box .box .options-add .button.bt-add b,.product-box .box .options-add .button.bt-add:hover b{
	width: unset;
}
.product-box .box .options-add .button.bt-add b{
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	margin-left: 6px;
}
.product-box .title,.product-box .options-price{
	padding: 12px 20px;
}
.product-image-container{
	padding: 0;
	box-shadow: none;
	border: 1px solid #DCE0E6;
}
.product-image-container .main-link{
	padding: 0;
}
.search-box .form-block .field input.form-control, .search-box .form-block .field input{
	font-family: var(--font-main);
	font-weight: 400;
	border: 1px solid #AAAAAA;
	border-radius: 8px;
}
.search-box .form-block .field button{
	width: unset;
	box-shadow: none;
}
.search-box .form-block .field button i{
	color: #58585A;
	font-weight: 400;
}
.sidebox.default-filters .links li > a{
	color: #5C5C5C;
}
.sidebox ul.links li.selected a{
	color: var(--colour-dark-green);
}
.sidebox .links li > a{
	background: linear-gradient(to right, var(--colour-green) 50%, transparent 50%);
	background-size: 200% 100%;
	background-position: right center;
}
.sidebox .sidebox-top{
	color: #777777;
}
.sort-box p{
	color: #777;
}
.sort-box .form-block{
	padding: 15px 0;
}
.pagination > li:first-child > a, .pagination > li:last-child > a,.pagination > li > a,.pagination > .active > a,.pagination > .active > a:hover,.pagination > li.disabled:first-child > a:hover,.pagination > li.disabled:last-child > a{
	border-radius: 0;
	top: 0;
	margin: 0;
	width: unset;
	padding: 10.8824px 16.3235px;
	font-weight: 400;
	font-size: 15px;
	line-height: 22px;
	border: 1px solid #D4D4D4 !important;
}
.pagination > li:first-child > a{
	border-radius: 6.52941px 0px 0px 6.52941px;
}
.pagination > li:last-child > a,.pagination > li.disabled:last-child > a{
	border-radius: 0px 6.52941px 6.52941px 0px;
}
.pagination > li.disabled:last-child > a:hover{
	border-width: 1px !important;
}
.pagination > li.disabled:first-child > a{
	border: 1px solid #D4D4D4 !important;
}
.pagination > .active > a{
	background-color: var(--colour-green);
}
.zulu-search .body{
	padding: 0;
}
.zulu-search .product-browse-header{
	background-color: transparent;
	padding: 50px 0;
}
.zulu-search .product-browse-header.custom-bg{
	padding: 110px 0;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}
.zulu-search .product-browse-header.custom-bg h1{
	color: var(--colour-white);
	padding-left: 10vw;
	position: relative;
	z-index: 3;
}
.zulu-search .product-browse-header.custom-bg::before{
	content:"";
	display: block;
	width: 50%;
	max-width: 17.5vw;
	height: 125%;
	position: absolute;
	z-index: 2;
	top: -35px;
	left: 0;
	background-image: url('/site/file/post/GcEh5AR6/bg-feature-flip.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
}
.product-box.category-box a .image img{
	transition: all 0.5s ease;
}
.product-box.category-box a:hover .image img{
	transform: scale(1.15);
}
.product-box.category-box a:hover i{
	transform: rotate(45deg);
}
.zulu-search .product-browse-header.custom-bg::after{
	content:"";
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1;
}
/*.pro-main .category-box{
	padding: 120px 0;
}*/
.zulu-product .body{
	padding: 0;
}
.zulu-product .body .frame{
	padding: 0 40px;
}
.zulu-product .section-variant-1 h3{
	text-align: center;
	color: var(--colour-green);
	margin-bottom: 70px;
}
.product-browse-header{
	padding: 24px 0;
	background: #F7F7F7;
}
.product-browse-header .breadcrumbs{
	margin: 0;
}
.product-browse-header .breadcrumbs .breadcrumb a{
	color: #6E9397;
	font-size: 12px;
	line-height: 18px;
}
.title.mobile{
	display: none;
}
.zulu-product .body .frame.frame-product{
	padding: 120px 0;
}
.zulu-product .body .frame-product > .coltable > .col:first-child{
	padding-right: 40px;
}
.zulu-product .body .frame-product > .coltable > .col:last-child{
	padding-left: 40px;
}
.zulu-product .body .frame.frame-product .title{
	color: var(--colour-dark-green);
}
.zulu-product .price-box .attribute-label .price-highlight{
	background-color: transparent;
	color: var(--colour-green);
	font-weight: 700;
	font-size: 35px;
	line-height: 34px;
}
.zulu-product .form-block.attribute-select{
	border:none;
}
.price-box .stock-avail .opt.opt-success,.price-box .stock-avail .opt.opt-danger{
	color: #818181 !important;
	font-size: 14px;
	line-height: 26px;
	display: flex;
	align-items: center;
}
.price-box .stock-avail{
	margin-bottom: 40px;
	color: #818181;
}
.price-box .stock-avail i{
	font-size: 30px;
	color: #818181;
	font-weight: 300;
	padding-right: 12px;
}
.product-description{
	margin-top: 70px;
}
.product-description .h6{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
}
.section-related-products .tns-outer .tns-controls{
	overflow: visible;
}
.section-related-products .tns-outer .tns-controls button{
	width: 50px;
	height: 54px;
	padding: 12px;
	background: var(--colour-green);
	border-radius: 0;
	position: relative;
}
.section-related-products .tns-outer .tns-controls button:first-of-type{
	left: -35px;
}
.section-related-products .tns-outer .tns-controls button:first-of-type::after,
.section-related-products .tns-outer .tns-controls button:last-of-type::after{
	content:'';
	position: absolute;
	display: block;
	top: 0;
	left: -15px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 54px 15px;
	border-color: transparent transparent var(--colour-green) transparent;
}
.section-related-products .tns-outer .tns-controls button:last-of-type::after{
	transform: scaleX(-1);
	left: unset;
	right: -15px;
}
.section-related-products .tns-outer .tns-controls button:last-of-type{
	right: -35px;
}
/* POPDOWN CART */
.popdown-foot .coltable{
	display: flex;
}
.popdown-foot .button{
	background-color: var(--colour-dark-green);
	border-color: var(--colour-dark-green);
	margin-bottom: 5px;
	box-shadow: 0px 10px 20px rgba(11, 57, 62, 0.4);
	display: block;
	text-align: center;
}
.popdown-foot .button, .popdown-foot .button span{
	color: var(--colour-white);
}
.popdown-foot .button.bt-green{
	background-color: var(--colour-green);
	border-color: var(--colour-green);
}
/* CHECKOUT PAGE */
.page-checkout .cart-summary .form-block .field button#coupon-apply:disabled{
	box-shadow: none;
}
.page-checkout .cart-summary .form-block .field button#coupon-apply{
	padding: 7px 20px;
}
/* Product Showcase Post Block */
.pb-block-type-product_showcase .tns-outer .tns-controls{
	overflow: visible;
}
.pb-block-type-product_showcase .tns-outer .tns-controls button{
	background: var(--colour-green);
	border-radius: 0;
	position: relative;
	width: 50px;
	height: 54px;
	padding: 12px;
}
.pb-block-type-product_showcase .tns-outer .tns-controls button:first-of-type{
	left: -35px;
}
.pb-block-type-product_showcase .tns-outer .tns-controls button:last-of-type{
	right: -35px;
}
.pb-block-type-product_showcase .tns-outer .tns-controls button:first-of-type::after,
.pb-block-type-product_showcase .tns-outer .tns-controls button:last-of-type::after{
	content:'';
	position: absolute;
	display: block;
	top: 0;
	left: -15px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 54px 15px;
	border-color: transparent transparent var(--colour-green) transparent;
}
.pb-block-type-product_showcase .tns-outer .tns-controls button:last-of-type::after{
	transform: scaleX(-1);
	left: unset;
	right: -15px;
}
.product-browse-header {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.form-sign-up-form .form-block{
	background-color: transparent;
}
.form-sign-up-form .field.submit{
	width: 33.33%;
}
.form-sign-up-form .form-block .field label{
	color: var(--colour-white);
}

/*** MEGA MENU ***/
.navigation .menu li.has-mega-menu {
    position: unset;
}
.navigation .menu li.has-mega-menu a.menulink {
    position: relative;
}
.navigation .menu li.has-mega-menu a.menulink::after {
    content: "";
    position: absolute;
    left: calc(50% - 10px - 25px);
    bottom: -45px;
    transition: all 0s;
    border: 20px solid transparent;
    border-bottom-color: #dce0e6;
    pointer-events: none;
    opacity: 0;
}
.navigation .menu li.has-mega-menu.open a.menulink::after {
    opacity: 1;
    bottom: -41px;
    transition: all 0.4s cubic-bezier(0,0,0.1,0.9) 0.4s;
}

.navigation .menu .mega-menu {
    width: 100%;
    position: absolute;
    left: 0;
    top: 130px;
    display: flex;
    justify-content: left;
    padding: 0;
    -webkit-transition: all 0.4s cubic-bezier(0,0,0.1,0.9) 0s;
    -moz-transition: all 0.4s cubic-bezier(0,0,0.1,0.9) 0s;
    transition: all 0.4s cubic-bezier(0,0,0.1,0.9) 0s;
    background-color: #dce0e6;
    pointer-events: none;
    opacity: 0;
    z-index: 99999;
}
.navigation .menu li.open .mega-menu {
    opacity: 1;
    top: 140px;
    pointer-events: all;
    -webkit-transition: all 0.2s cubic-bezier(0,0,0.1,0.9) 0s;
    -moz-transition: all 0.2s cubic-bezier(0,0,0.1,0.9) 0s;
    transition: all 0.2s cubic-bezier(0,0,0.1,0.9) 0s;
}
.navigation .menu li.has-mega-menu:not(.open) .mega-menu {
    display: none;
}

.navigation .menu .mega-menu li a {
    text-transform: none;
    background-color: unset;
}
.navigation .menu .mega-menu .mm-list {
    width: 220px;
    /*padding: 10px 0;*/
    list-style: none;
    background-color: var(--colour-dark-green);
    /*min-height: calc(100vh - 250px);*/
}
.navigation .menu .mega-menu .mm-list .mm-list-item {
    position: unset;
    background-color: var(--colour-green);
    width: 100%;
}
.navigation .menu .mega-menu .mm-list .mm-list-item.open,
.navigation .menu .mega-menu .mm-list .mm-list-item:hover {
    background-color: #001828;
}
.navigation .menu .mega-menu .mm-list .mm-list-item.open > a{
	background-color: rgba(48, 229, 20, 0.9);
}
.navigation .menu .mega-menu .mm-list .mm-list-item > a {
    color: var(--colour-white);
    display: flex;
    font-weight: 500;
    letter-spacing: 1px;
    justify-content: flex-start;
    align-items: center;
    text-transform: uppercase;
    text-align: left;
    padding: 18px 22px;
    font-family: var(--font-heading);
    transition: all 0.3s cubic-bezier(0,0,0.1,0.9);
}
.navigation .menu .mega-menu .mm-list .mm-list-item > a:hover,
.navigation .menu .mega-menu .mm-list .mm-list-item.open > a {
    text-indent: 3px;
}
.navigation .menu .mega-menu .mm-list .mm-list-item > a:hover .mm-list-title, .navigation .menu .mega-menu .mm-list .mm-list-item.open > a .mm-list-title{
	color: var(--colour-white);
}
.navigation .menu .mega-menu .mm-menu {
    display: flex;
    pointer-events: none;
    flex-direction: column;
    position: absolute;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 220px;
    padding: 35px;
    text-align: center;
    transition: all 0.2s cubic-bezier(0,0,0.1,0.9);
}
.navigation .menu .mega-menu .mm-list .mm-list-item.open .mm-menu {
	background-color: var(--colour-dark-green);
    transition: all 0.2s cubic-bezier(0,0,0.1,0.9) 0s;
    display: flex !important;
    pointer-events: all;
    left: 220px;
    opacity: 1;
}

.navigation .menu .mega-menu .mm-featuremenu {
    display: flex;
    padding: 0 0 25px;
    column-gap: 3px;
}
.navigation .menu .mega-menu .mm-featuremenu .mm-feature {
    flex: 23% 1 1;
    max-width: 25%;
}
.navigation .menu .mega-menu .mm-featuremenu .mm-feature > a {
    opacity: 0.9;
    padding: 5px;
    border-radius: 0px;
    text-transform: uppercase;
    background-color: var(--colour-white);
    transition: all 0.15s cubic-bezier(0,0,0.1,0.9);
    position: relative;
    height: 100%;
    top: 0;
}
.navigation .menu .mega-menu .mm-featuremenu .mm-feature:first-child > a {
    border-radius: 5px 0 0 5px;
}
.navigation .menu .mega-menu .mm-featuremenu .mm-feature:last-child > a {
    border-radius: 0 5px 5px 0;
}
/*.navigation .menu .mega-menu .mm-featuremenu .mm-feature > a::after {
    content: "";
    position: absolute;
    transform: translateX(-50%);
    transition: all 0.6s cubic-bezier(0,0,0.1,0.9);
    left: 50%;
    width: 0px;
    bottom: 0px;
    height: 4px;
    border-radius: 5px;
    background-color: #F1712F;
}
.navigation .menu .mega-menu .mm-featuremenu .mm-feature > a:hover::after {
    transition: all 0.3s cubic-bezier(0,0,0.1,0.9);
    width: 100%;
}*/
.navigation .menu .mega-menu .mm-featuremenu .mm-feature > a:hover {
    top: -3px;
    opacity: 1;
    box-shadow: 0 3px 0 var(--colour-green);
}
.navigation .menu .mega-menu .mm-featuremenu .mm-feature > a:hover .mm-feature-heading {
    color: var(--colour-green);
}

.navigation .menu .mega-menu .mm-featuremenu .mm-feature .mm-feature-heading {
    font-size: 13px;
    line-height: 16px;
    color: #043A60;
    padding: 10px 0 15px;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    transition: all 0.2s cubic-bezier(0,0,0.1,0.9);
}
.navigation .menu .mega-menu .mm-featuremenu .mm-feature img {
    width: 85%;
    max-width: 140px;
    margin-top: 10px;
    aspect-ratio: 1/0.8;
    object-fit: contain;
}


.navigation .menu .mega-menu .mm-submenu {
    padding: 0 5px 0;
    text-align: left;
    column-count: 4;
}
.navigation .menu .mega-menu .mm-section {
    display: inline-block;
    vertical-align: top;
    transition: all 0.2s ease-in-out 0s;
    padding-right: 15px;
    width: 100%;
}
.navigation .menu .mega-menu .mm-section .mm-section-heading {
    font-weight: bold;
    margin-bottom: 0px;
    color: #F1712F;
}
.navigation .menu .mega-menu .mm-section .mm-section-heading:hover {
    color: var(--colour-white);
}
.navigation .menu .mega-menu .mm-section .mm-section-heading a {
    transition: all 0.1s ease;
    position: relative;
    left: 0;
	color: var(--colour-white);
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    text-align: left;
    margin-bottom: 0px;
    padding: 5px 0;
    margin: 2px 0;
    opacity: 1;
}
.navigation .menu .mega-menu .mm-section .mm-section-heading a:hover {
    color: var(--colour-green);
    left: 2px;
}
.navigation .menu .mega-menu .mm-section .mm-section-heading a .icon {
    color: var(--colour-white);
}
.navigation .menu .mega-menu .mm-section .mm-section-list {
  list-style: none;
}
.navigation .menu .mega-menu .mm-section .mm-section-list .mm-section-list-item {
  background-color: unset;
}
.navigation .menu .mega-menu .mm-section .mm-section-list .mm-section-list-item a {
  color: #444;
  background-color: unset;
  font-size: 14px;
  font-weight: 400;
  padding: 4px;
}
.navigation .menu .mega-menu .mm-section .mm-section-list .mm-section-list-item a:hover {
  color: #FE0003;
}

.popdown-wrapper .cart-wrap .cart-row {
    margin-bottom: 5px;
}
.popdown-wrapper .cart-wrap .cart-row > .coltable .col {
    display: table-cell !important;
}
.popdown-wrapper .cart-wrap .cart-row > .coltable .col-image {
    width: 100px !important;
    min-width: 100px;
    padding: 0;
}
.popdown-wrapper .cart-wrap .cart-row > .coltable .col-image img {
    border: 2px solid #d0d3db;
    border-radius: 3px;
    width: 100%;
    vertical-align: top;
}
.popdown-wrapper .cart-wrap .cart-row > .coltable .col-info {
    width: 55% !important;
}
.popdown-wrapper .cart-wrap .cart-row > .coltable .col-info .title {
    margin-bottom: 5px;
}
.popdown-wrapper .cart-pricing {
    margin-top: 20px;
}
.popdown-wrapper .cart-wrap .cart-row > .coltable .col-price {
    text-align: right;
}
.popdown-wrapper .cart-wrap .cart-row > .coltable .col-price p .price-qty {
    font-size: 70%;
    font-weight: normal;
}
.popdown-wrapper .cart-wrap .cart-row > .coltable .col-price p .price-qty::after {
    content: "\a";
    white-space: pre;
}

/****RESPONSIVE*****/
@media screen and (max-width:1600px) {
	.frame{
		width: calc(100% - 10vw);
	}
	.section-related-products .tns-outer .tns-controls{
		left: 40px;
		right: 40px;
	}
}
@media screen and (max-width:1300px) {
	.logo::before {
		clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0% 100%);
	}
	.customer-account.mobile{
		display: block;
	}
	.header .col.nav{
		display: flex;
		flex-wrap: wrap;
	}
	.header .col.col-user-account{
		display: none;
	}
	.row-home-category .pb-column{
		flex: 0 0 25%;
		max-width: 25%;
	}
}
@media screen and (max-width: 1280px) {
	.navigation .menu .mega-menu .mm-submenu {
		column-count: 3;
	}
	.navigation .menu .mega-menu {
        top: 110px;
    }
    .navigation .menu li.open .mega-menu {
        top: 121px;
    }
/*
    .navigation .menu .mega-menu .mm-list {
        min-height: 90vh;
    }
*/
    .navigation .menu .mega-menu .mm-featuremenu .mm-feature img {
        max-width: 100px;
    }
    .navigation .menu .mega-menu .mm-featuremenu .mm-feature .mm-feature-heading {
        font-size: 12px;
        line-height: 14px;
    }
}
@media screen and (max-width:1220px){
	.section{
		width: 100%;
	}
}
@media screen and (max-width:1200px){
	h1, .h1{
		font-size: 50px;
		line-height: 50px;
	}
	h2, .h2 {
		font-size: 45px;
		line-height: 45px;
	}
	.slider.slider-image .slide img{
		width: auto;
		height: 100%;
		max-width: unset;
		max-height: 400px;
	}
	iframe {
		width:100% !important;
	}
	.header .col.nav{
		max-width: unset;
		padding-top: 65px;
	}
	.header .mobile-menu-trigger{
		position: absolute;
		top: 15px;
		right: 3vw;
		z-index: 100;
	}
	.navigation{
		height: 100vh;
		width: 100vw;
		top: 0;
		right: unset;
		padding-top: 150px;
		margin-top: 0;
		background-color: rgba(43, 43, 43, 0.8) !important;
		z-index: 999;
	}
	.navigation ul.menu > li > a:hover,.navigation ul.menu > li.open > a{
		color: var(--colour-green);
	}
	.navigation ul.menu li > ul.menu-dropdown li a{
		background-color: var(--colour-dark-green);
		border-color: rgba(255,255,255,0.1);
		border-left: none;
	}
	.navigation ul.menu li > ul.menu-dropdown li a:hover{
		background-color: var(--colour-green);
	}
	.navigation ul.menu > li.has-children a span{
		color: var(--colour-white);
	}
	.header .mobile-menu-trigger,.header .mobile-menu-trigger.open i{
		color: var(--colour-white);
		z-index: 1000;
	}
	.navigation .menu li.has-mega-menu.open a.menulink::after {
		display: none;
	}
	ul.menu{
		width: 100% !important;
	}
	ul.menu li.has-icon .menulink{
		padding: 18px 35px;
		background-color: transparent;
	}
	ul.menu li.has-icon .menulink::after {
		background-color: transparent;
	}
	.navigation .menu li.has-mega-menu:not(.open) .mega-menu {
        height: 0px;
    }
    .navigation .menu .mega-menu {
        background: none;
        position: static;
        top: 0;
    }
    .navigation .menu .mega-menu .mm-list {
        min-height: unset;
        width: 100%;
        padding: 0;
    }
    .navigation .menu .mega-menu .mm-list .mm-list-item,
    .navigation .menu .mega-menu .mm-list .mm-list-item.open,
    .navigation .menu .mega-menu .mm-list .mm-list-item:hover {
        background-color: transparent;
    }
    .navigation .menu .mega-menu .mm-list .mm-list-item > a {
        /*background-color: #02233d;
        margin-bottom: 2px;
        padding: 14px 18px;*/
        padding: 10px 50px;
    }
    .navigation .menu .mega-menu .mm-list .mm-list-item > a .mm-list-title {
        width: 100%;
        text-align: left;
		color: var(--colour-white);

    }
    .navigation .menu .mega-menu .mm-list .mm-list-item.open .mm-menu {
        display: none !important;
        visibility: none;
        opacity: none;
        pointer-events: none !important;
    }
	.section-pad-0{
		padding-left: 0;
		padding-right: 0;
	}
	.banner figure{
		right: 35px;
		bottom: 0;
	}
	.box-number .h2{
		font-size: 35px;
	}
	.section-related-products .tns-outer .tns-controls{
		left: 20px;
		right: 20px;
	}
}
@media screen and (max-width:1000px) {
	.row-home-category .pb-column{
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.footer .coltable{
		display: flex;
		flex-wrap: wrap;
	}
	.footer .frame{
		padding-top: 70px;
	}
	.footer > .frame > .coltable > .col:first-child{
		padding-bottom: 50px;
		padding-right: 0;
	}
	.footer > .frame > .coltable > .col:first-child, .footer > .frame > .coltable > .col:last-child{
		width: 100%;
		text-align: center;
	}
	.footer > .frame > .coltable > .col:last-child{
		padding-top: 50px;
		padding-left: 0;
	}
	.footer > .frame > .coltable > .col{
		width: calc(100%/3);
	}
	.foot-lower{
		padding-top: 0;
	}
	#form-add-cart .field{
		width: 100% !important;
	}

}
@media screen and (min-width: 1200px) {
    .navigation {
        background: none;
        border: none;
    }
    .navigation ul.menu ul.menu-dropdown {
        top: 60px !important;
		z-index: 10;
    }
    .navigation ul.menu ul.menu-dropdown li {
        border-color: #444;
    }
	.navigation ul.menu li a {
	  	color: var(--colour-dark-green);
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
	}
}
@media screen and (max-width:992px) {
	.page-basket.page-checkout .body{
		padding-top: 60px;
	}
}
@media screen and (max-width:900px) {
	.header .col.nav {
	  max-width: 55%;
	}
	.form-search{
		max-width: 70%;
	}
	.customer-account{
		max-width: 30%;
	}
	.banner figure{
		display: none;
	}
	.sidebox.default-filters .links li > a{
		background: linear-gradient(to right, var(--colour-green) 50%, #ddd 50%);
		background-size: 200% 100%;
		background-position: right center;
	}
	.sidebox.default-filters ul.links li.selected a:hover{
		background: linear-gradient(to right, var(--colour-green) 50%, #ddd 50%);
		background-size: 200% 100%;
	}
	.sidebox.default-filters ul.links li.selected a {
	  	background-position: left center !important;
	}
	.coltable.page-structure > .col{
		padding: 0;
	}
}
@media screen and (max-width:810px) {
	.header{
		background-image: none;
		background-color: var(--colour-dark-green);
	}
	.logo::before {
		display: none;
		left: 0;
	}
	.header > .frame .logo-wrap {
	  	width: 100%;
		padding: 0;
	}
	.header > .frame .logo{
		background-color: transparent;
		position: relative;
		z-index: 1000;
		box-shadow: none;
	}
	.logo-wrapper{
		text-align: center;
	}
	.header .col.nav .form-search,.customer-account.mobile{
		display: none;
	}
	.header .col.col-user-account{
		display: flex;
		width: 100%;
		justify-content: center;
		column-gap: 5px;
	}
	.header .col.nav{
		position: absolute;
		right: 0;
		width: 100%;
		max-width: 100%;
	}
	.header .mobile-menu-trigger i{
		color: var(--colour-green);
	}
	.form-search.mobile{
		display: block;
	}
}
@media screen and (max-width:800px) {
	h1, .h1{
		font-size: 40px;
		line-height: 40px;
	}
	h2, .h2 {
		font-size: 35px;
		line-height: 35px;
	}
	h3, .h3{
		font-size: 30px;
		line-height: 30px;
	}
	h4, .h4{
		font-size: 25px;
		line-height: 25px;
	}
	body .header{
		padding: 0;
	}
	body.frame-full-width .body .frame{
		width: 100%;
	}
	.slider-wrapper .slide-cell{
		padding: 40px 35px;
	}
	.banner::after {
		display: none;
	}
	.zulu-product .body .frame{
		padding: 0;
	}
	/*.header > .frame .logo{
		max-width: 80%;
		background-position: center;
		background-size: 250px auto;
	}*/
	.header .coltable .col {
		width: 100% !important;
		display: block;
	}
	/*.header .col.nav{
		max-width: 20%;
	}*/
	.header .col.nav .form-search{
		margin-left: 0;
	}
    .navigation ul.menu {
        display: block;
        width: 100%;
        margin: 0;
    }
	.form-sign-up-form .field{
		width: 100% !important;
	}
	.pb-block-type-product_showcase .tns-outer .tns-controls{
		left: 20px;
		right: 20px;
	}
	.zulu-product .section-variant-1 h3{
		margin-bottom: 35px;
	}
}
@media screen and (max-width:768px) {
	.row-home-category .pb-column{
		flex: 0 0 50%;
		max-width: 50%;
	}
	.pb-row-column-4 .pb-column.col-sm-6{
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pb-row-column-4 .pb-column.col-sm-2{
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.pb-row-column-4 .pb-column.col-sm-3{
		flex: 0 0 50%;
		max-width: 50%;
	}
	.product-box.category-box .title{
		font-size: 25px;
		line-height: 30px;
	}
	.pb-block.banner > .pb-block-content{
		margin-top: 0;
		margin-bottom: 0;
	}
}
@media screen and (max-width:600px) {
	.banner figure{
		display: none;
	}
	.category-box.category-image > li {
	  	width: 100%;
	}
	.row-home-category .pb-column{
		flex: 0 0 100%;
		max-width: 100%;
	}
	.title.mobile{
		display: block;
	}
	.title.desktop{
		display: none;
	}
	.zulu-product .body .frame.frame-product{
		padding: 30px 0;
	}
	.footer {
		text-align: center;
	}
	.footer .break {
		margin-left: auto;
		margin-right: auto;
	}
	.footer > .frame > .coltable > .col:first-child{
		padding-bottom: 0;
	}
	.footer .coltable .col:first-child .h4 {
		margin-top: 0;
	}
	.footer .foot-product-wrap {
		width: 75%;
		margin: 0 auto;
	}
	.section-feature.sf-about {
		background-size: contain;
	}
	.banner .slide .slide-inner h1 {
		margin: 0;
	}
	.banner .slide .slide-inner h2 {
		font-size: 14px;
		letter-spacing: 1px;
		margin: 0;
	}
	.body {
		padding: 20px;
	}
	.top-search {
		margin: 0 auto;
	}
	.homebox .col .hb-text h3 {
		font-size: 20px;
		color: #999;
	}
	.pb-row-column-4 .pb-column.col-sm-3{
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pb-section.section-pad-5{
		padding-top: 30px;
	    padding-bottom: 30px;
	}
	.pad-left-40{
		padding-left: 0;
	}
	.box-number{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.bg-image-GcEh5AR6,.bg-image-xbdwkizE{
		background-image: none;
	}
	.zulu-product .body .frame-product > .coltable > .col:last-child{
		padding-left: 10px;
	}
	.zulu-product .body .frame-product > .coltable > .col:first-child{
		padding-right: 10px;
	}
	.zulu-product .form-block.attribute-select{
		padding-left: 0;
		padding-right: 0;
	}
	.pagination > li:first-child > a{
	}
	.pagination > li:first-child > a,.pagination > li:last-child > a{
		position: relative;
		transform: unset;
		left: 0;
	}
	.pagination > li {
	  display: inline;
	}
	#form-add-cart .field{
		padding-left: 0;
		padding-right: 0;
	}
	.form-block{
		padding: 0;
	}
	.pad-bottom-100{
		padding-bottom: 45px !important;
	}
	.product-box > li {
	  width: 50%;
	}
	.section-related-products .tns-outer .tns-controls{
		left: 30px;
		right: 30px;
	}
	.image-container .col {
	  width: 50% !important;
	}
	.pb-section.section-pad-4{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.zulu-search .product-browse-header.custom-bg{
		padding: 50px 0;
	}
	.zulu-search .product-browse-header.custom-bg::before {
		height: 140%;
	}
	.pro-main .category-box{
		padding: 30px 0;
		margin-bottom: 0;
	}
}
@media screen and (max-width:580px) {
	.zulu-product .body .section{
		padding: 0;
	}
	.popdown-foot .coltable{
		flex-wrap: wrap;
	}

	.no-filter-items{
		line-height: 55px;
	}
}
@media screen and (max-width:450px) {
	.pb-row-column-4 .pb-column.col-sm-2{
		flex: 0 0 100%;
		max-width: 100%;
	}
}
