/**
* Template Name: Multi - v4.9.1
* Template URL: https://bootstrapmade.com/multi-responsive-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Inter", serif;
}

a {
  color: #ed502e;
  text-decoration: none;
}

a:hover {
  color: #f1775d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 850px;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
}

#hero .carousel-container {
  align-items: center;
  position: absolute;
  bottom: 0;
  top:0;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #ccc;
  margin: 0;
  font-size: 100px; line-height: 104px;
}
#hero h2 em { color:#ff5a64;}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}
#hero h2 span {
  background: linear-gradient(to right,  #5d3efd 0%,#21d6a4 100%);
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 1px;
  height: 35px;
  opacity:1;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #ed502e;
}

#hero .btn-get-started {
  font-weight: 400;
  font-size:26px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 20px 60px;
  border-radius: 200px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: linear-gradient(to right, #5d3efd 0%, #21d6a4 100%);
  margin-top: 40px;
}

#hero .btn-get-started:hover {
  background: linear-gradient(to right,  #22d6a4 0%,#5e3dfd 100%);
  color:#fff;
}

@media (max-width: 992px) {
  #hero {
    height: 900px;
  }

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ed502e;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ed502e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #f06f54;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0; position: absolute; top: 0; z-index: 99;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 10002;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image:url(../../images/fancybox_sprite.png);
}
.fancybox-nav:hover span {}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url(../../images/fancybox_loading.gif) center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url(blank.gif); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: visible !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 10001;
	background:rgba(0, 0, 0, 0.9);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	font-family: "Open Sans",sans-serif;
	color: #FFF;
	font-weight: 600;
	line-height: 24px;
	white-space: nowrap;
	font-size:16px;
	text-transform:capitalize;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

#fancybox-buttons {
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 8050;
}

#fancybox-buttons.top {
	top: 10px;
}

#fancybox-buttons.bottom {
	bottom: 10px;
}

#fancybox-buttons ul {
	display: block;
	width: 166px;
	height: 30px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	border: 1px solid #111;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	   -moz-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	        box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	background: rgb(50,50,50);
	background: -moz-linear-gradient(top, rgb(68,68,68) 0%, rgb(52,52,52) 50%, rgb(41,41,41) 50%, rgb(51,51,51) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(68,68,68)), color-stop(50%,rgb(52,52,52)), color-stop(50%,rgb(41,41,41)), color-stop(100%,rgb(51,51,51)));
	background: -webkit-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -o-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -ms-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: linear-gradient(to bottom, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
}

#fancybox-buttons ul li {
	float: left;
	margin: 0;
	padding: 0;
}

#fancybox-buttons a {
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-color: transparent;
	background-image: url('fancybox_buttons.png');
	background-repeat: no-repeat;
	outline: none;
	opacity: 0.8;
}

#fancybox-buttons a:hover {
	opacity: 1;
}

#fancybox-buttons a.btnPrev {
	background-position: 5px 0;
}

#fancybox-buttons a.btnNext {
	background-position: -33px 0;
	border-right: 1px solid #3e3e3e;
}

#fancybox-buttons a.btnPlay {
	background-position: 0 -30px;
}

#fancybox-buttons a.btnPlayOn {
	background-position: -30px -30px;
}

#fancybox-buttons a.btnToggle {
	background-position: 3px -60px;
	border-left: 1px solid #111;
	border-right: 1px solid #3e3e3e;
	width: 35px
}

#fancybox-buttons a.btnToggleOn {
	background-position: -27px -60px;
}

#fancybox-buttons a.btnClose {
	border-left: 1px solid #111;
	width: 35px;
	background-position: -56px 0px;
}

#fancybox-buttons a.btnDisabled {
	opacity : 0.4;
	cursor: default;
}


#fancybox-thumbs {
	position: fixed;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 8050;
}

#fancybox-thumbs.bottom {
	bottom: 2px;
}

#fancybox-thumbs.top {
	top: 2px;
}

#fancybox-thumbs ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

#fancybox-thumbs ul li {
	float: left;
	padding: 1px;
	opacity: 0.5;
}

#fancybox-thumbs ul li.active {
	opacity: 0.75;
	padding: 0;
	border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
	opacity: 1;
}

#fancybox-thumbs ul li a {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid #222;
	background: #111;
	outline: none;
}

#fancybox-thumbs ul li img {
	display: block;
	position: relative;
	border: 0;
	padding: 0;
	max-width: none;
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url(fancybox_sprite@2x.png);
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url(fancybox_loading@2x.gif);
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}

/** owl Start **/
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0)
}
.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0)
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%
}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none
}
.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block
}
.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0!important;
  font: inherit
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block
}
.owl-carousel.owl-hidden {
  opacity: 0
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab
}
.owl-carousel.owl-rtl {
  direction: rtl
}
.owl-carousel.owl-rtl .owl-item {
  float: right
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both
}
.owl-carousel .owl-animated-in {
  z-index: 0
}
.owl-carousel .owl-animated-out {
  z-index: 1
}
.owl-carousel .fadeOut {
  animation-name: fadeOut
}
@keyframes fadeOut {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}
.owl-height {
  transition: height .5s ease-in-out
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease
}
.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3)
}
.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%
}

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; position: absolute; top: -75px; right: 5px; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px 10px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #22d6a5;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #c11111; }

      .owl-nav .owl-prev { background: url(../../images/arrow1.png) left top no-repeat !important; width: 77px; height: 14px;}
      .owl-nav .owl-next { background: url(../../images/arrow2.png) left top no-repeat !important; width: 77px; height: 14px;}
      .owl-nav span { display: none;}

/** owl End **/

/** Nav Start **/

nav{position:relative;width:100%;}
      #cssmenu,#cssmenu ul,#cssmenu ul li,#cssmenu ul li a,#cssmenu #head-mobile{border:0;list-style:none;line-height:1;display:block;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
      #cssmenu:after,#cssmenu > ul:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}
      #cssmenu #head-mobile{display:none}
      #cssmenu{}
      #cssmenu > ul{margin:0;}
      #cssmenu > ul > li{float:left}
      #cssmenu > ul > li > a{padding:5px 25px;font-size:22px;text-decoration:none;color:#1f1f1f;font-weight:300; margin: 0 10px; }
      #cssmenu > ul > li:hover > a,#cssmenu ul li.active a{}
      #cssmenu > ul > li:hover,#cssmenu ul li.active:hover,#cssmenu ul li.active,#cssmenu ul li.has-sub.active:hover{}
      #cssmenu ul li.active a{border:none;}
      #cssmenu > ul > li.has-sub > a{padding-right:30px}
      #cssmenu > ul > li.has-sub > a:after{position:absolute;top: 24px;
        right: 16px;
        width: 8px;
        height: 1px;
        display: block;
        background: #333;
        content: '';
        transform: rotate(44deg);}
      #cssmenu > ul > li.has-sub > a:before{position:absolute;top: 21px;
        right: 14px;
        display: block;
        width: 1px;
        height: 8px;
        background: #333; transform: rotate(40deg); content:'';-webkit-transition:all .25s ease;-ms-transition:all .25s ease;transition:all .25s ease}
      #cssmenu > ul > li.has-sub:hover > a:before{}
      #cssmenu ul ul{position:absolute;left:-9999px; z-index: 9999; margin: 0; padding: 0; padding: 15px 0 25px; background: #003e6a;}
      #cssmenu ul ul li{height:0;-webkit-transition:all .25s ease;-ms-transition:all .25s ease;transition:all .25s ease}
      #cssmenu ul ul li:hover{}
      #cssmenu li:hover > ul{left:auto}
      #cssmenu li:hover > ul > li{height:auto;}
      #cssmenu ul ul ul{margin-left:-350px;top:0; background: #000; width: 350px;}
      #cssmenu ul ul li a{padding:7px 25px;width:450px;font-size:15px;text-decoration:none;color:#ddd;font-weight:400; line-height: 24px;}
      #cssmenu ul ul li:last-child > a,#cssmenu ul ul li.last-item > a{border-bottom:0}
      #cssmenu ul ul li:hover > a,#cssmenu ul ul li a:hover{color:#fafafa}
      #cssmenu ul ul li.has-sub > a:after{position:absolute;top:16px;right:11px;width:8px;height:2px;display:block;background:#ddd;content:''}
      #cssmenu ul ul li.has-sub > a:before{position:absolute;top:13px;right:14px;display:block;width:2px;height:8px;background:#ddd;content:'';-webkit-transition:all .25s ease;-ms-transition:all .25s ease;transition:all .25s ease}
      #cssmenu ul ul > li.has-sub:hover > a:before{}
      #cssmenu ul ul li.has-sub:hover,#cssmenu ul li.has-sub ul li.has-sub ul li:hover{background:none;}
      #cssmenu ul ul ul li.active a{border-left:1px solid #333}
      #cssmenu > ul > li.has-sub > ul > li.active > a,#cssmenu > ul ul > li.has-sub > ul > li.active> a{border-top:1px solid #333}

/** Nav End **/

/** Tab Start **/

ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none; float: left; width: 40%;
}
ul.tabs li{
	background: none;
	color: #999999;
	display: inline-block;
	padding: 35px 0;
	cursor: pointer; width: 100%; font-family: "Frank Ruhl Libre", serif; font-size: 30px; background: url(../../images/tabArrow.png) left center no-repeat; padding-left: 50px; border-bottom: 1px solid #4c7896;
}

ul.tabs li.current{
	background: url(../../images/tabArrow2.png) left center no-repeat;
	color: #fff;
  border-bottom: 1px solid #fff;
}
ul.tabs li:last-child { border: none;}

.tab-content{
	display: none;
	padding: 15px;
}

.tab-content.current{
	display: inherit;
}

::placeholder {
  color: #fff;
  opacity: 1; / Firefox /
}

::-ms-input-placeholder { / Edge 12 -18 /
  color: #fff;
}

/** Tab End **/


/** Our CSS **/

header { width: 100%; float: left; padding: 15px 0; border-bottom: 1px solid #ccc;}
.logo { float: left;}
.menuNav { float: left; margin-left: 23%; margin-top: 18px;}
.headerRight { float: right; margin-top: 20px;}
.headerRight ul { margin: 0; padding: 0; list-style-type: none;}
.headerRight ul li { float: left; margin-left: 25px;}
#target { position: absolute; width: 50%; background: #846c54; padding: 25px; right: 0; z-index: 1; top: 103px; border-radius: 0 0 0 35px;}
#target form { width: 100%; height: 52px;}
#target input { width: 79%; height: 50px; border: none; float: left; background: none; padding-left: 20px; border: 1px solid #decdb9; border-radius: 200px; font-weight: 300;}
#target input.searchBtn { width: 20%; background: #decdb9; color: #000; font-size: 18px; padding-left: 0; border: 1px solid #decdb9; border-radius:200px; float: right;}
.headerRight ul li.search a { cursor: pointer;}
#target input.searchBtn:hover { background: #1f1f1f; border: 1px solid #1f1f1f; color: #fff;}
.footerTop { float: left; width: 100%;}
.ftLeft { float: left; width: 45%; background: #846c54; padding: 100px; height: 453px;}
.ftRight { float: right; width: 55%; height: 453px;}
.ftRight img { width: 100% !important; height: 100% !important; object-fit: cover !important; max-width: none !important;}
.ftLeft h3 { font-size: 36px; font-weight: 300; color: #fff; letter-spacing: 0.5px;}
.ftLeft h6 { font-size: 18px; font-weight: 300; color: #fff; margin-top: 15px;}
.ftLeft form { float: left; width: 100%; margin-top: 0px;}
.ftLeft form input { width: 100%; height: 56px; background: none; border: 1px solid #beb1a4; margin-top: 20px; font-size: 18px; font-weight: 300; padding: 0 15px;}
.ftLeft form input[type="submit"] { border: none; background: #decdb9; color: #666458; font-weight: 500;}
.footerBtm { background: #666458; padding: 50px 0 25px; float: left; width: 100%;}
.footerLogo { float: left; width: 100%; text-align: center;}
.fTop { float: left; width: 100%;}
.ftopLeft { float: left;}
.ftopLeft ul { margin: 0; padding: 0; list-style-type: none;}
.ftopLeft ul li { float: left; margin-right: 40px;}
.ftopLeft ul li a { font-size: 18px; font-size: 18px; font-weight: 300; color: #fff;}
.ftopRight { float: right;}
.ftopRight ul { margin: 0; padding: 0; list-style-type: none;}
.ftopRight ul li { float: left; margin-left: 25px;}
.fBtm { float: left; width: 100%; margin-top: 25px; padding-top: 25px; border-top: 1px solid #adaca6;}
.fBtm p { font-size: 15px; color: #fff;}
.product { float: left; width: 100%; margin: 120px 0;}
.productDetails h1 { font-size: 30px; color: #666458; font-weight: 300;}
.productDetails h3 {  margin-top: 20px; margin-bottom: 20px;}
.productDetails h3 span { font-size: 24px; color: #666458; font-weight: 700;}
.productDetails h5 { font-size: 18px; color: #666458; font-weight: 700; margin-top: 40px; border-bottom: 2px solid #c6b8a7; width: auto; display: inline-block; padding-bottom: 5px;}
.productDetails p { font-weight: 300; color: #666666; font-size: 16px; line-height: 30px;}
.pd1 { float: left; width: 100%; margin-top: 25px;}
.pdBtn { float: left; width: 100%; margin-top: 30px;}
.pdBtn a { background: #977a5c; font-size: 18px; font-weight: 300; color: #fff;  padding: 13px 50px;}
.pdBtn a.wish { padding: 0; margin-left: 5px;}
.cataPro { float: left; width: 100%; margin-top:0;}
.cataPro p { margin: 0; color: #000; font-weight: 400;}
.cataPro p span { color: #666;}
.cataPro p a { color: #0b9dce;}
.drrescripation { margin-top: 80px;}
.drrescripation h4 { color: #666358; font-size: 30px; font-weight: 500; letter-spacing: 0.5px; margin-bottom: 20px;}
.drrescripation p { font-size: 18px; font-weight: 300; color: #666; line-height: 34px;}
.bVideo iframe { position: absolute; width: 100%; height: 100%;}
.aboutHome { background: #846c54; padding: 100px 100px 0 0; float: left; width: 100%;}
.ahRight { float: right; width:52.5%; height: 763px;}
.ahRight img { width: 100%; height: 100%; object-fit: cover;}
.ahLeft { float: left; width: 47.5%;}
.ahLeft { position: relative;}
.ahLeft h1 { font-size: 48px; font-weight: 300; color: #fff; padding: 100px 150px 49px 120px; letter-spacing: 1px;}
.ahLeft2 { width:125%; background: #fff; float: left; height: 491px; padding: 60px 100px 0 100px;}
.ahLeft2 p { font-size: 18px; color: #666666; font-weight: 300; line-height: 34px;}
.ahLeft2 a { float: left; font-size: 18px; background: #666458; color: #fff; padding: 11px 40px; font-weight: 300; margin-top: 15px;}
.li { float: left; width: 100%; margin: 100px 0; text-align: center;}
.li ul { margin: 35px 0 0 0; padding: 0; list-style-type: none; float: left; width: 100%;}
.li ul li { float: left; width: 24.4%; margin: 0 0.3%; height: 580px; position: relative;}
.li ul li img { width: 100%; height: 100%; object-fit: cover;}
.li ul li .li1 { position: absolute; width: 100%; height: 30%; left: 0; bottom: 0; background: linear-gradient(to top,  rgba(102,100,88,1) 0%,rgba(102,100,88,0) 100%); transition-duration: 0.5s;}
.li ul li .li1 h5 { position: absolute; width: 100%; color: #fff; bottom: 35px; font-size: 36px; font-weight: 600;}
.li ul li:hover .li1 { height: 100%;}
.li h2 { font-size: 60px; font-weight: 300; color: #666458; letter-spacing: 2px;}
.homeProduct { float: left; width: 100%; margin: 0 0 100px;}
.homeProduct h2 {font-size: 60px; font-weight: 300; color: #666458; letter-spacing: 2px; text-align: center;}
#teams .lc { width: 92%; margin: 0 4%; text-align: center;}
#teams { margin-top: 40px;}
#teams .lc .lcBtm { padding-top: 25px;}
#teams .lc .lcBtm p { color: #1f1f1f; font-size: 18px; font-weight: 300;}
#teams .lc .lcBtm h5 { color: #666458; font-size: 18px; font-weight: 600; letter-spacing: 1px;}
.contactHome { float: left; width: 100%;}
.chLeft { float: left; width: 45%;}
.chLeft img { width: 100%;}
.chRight { float: right; width: 55%; background: #666458; padding: 80px 100px 0; margin-top: 100px; height: 828px;}
.chRight h4 { font-size: 48px; color: #fff; font-weight: 300; letter-spacing: 2px;}
.chRight form { margin-top: 15px;}
.chRight form label { width: 100%; font-size: 20px; color: #cccccc; font-weight: 300;}
.chRight form input { width: 100%; height: 50px; border: 1px solid #ccc; background: none; margin-top: 10px; padding:0 15px; color: #fff; font-weight: 300;}
.chRight form fieldset { float: left; width: 100%; margin: 10px 0;}
.chRight form textarea { width: 100%; height: 120px; border: 1px solid #ccc; background: none; margin-top: 10px; resize: none; padding: 15px; color: #fff; font-weight: 300;}
.chRight form input[type="submit"] { float: left; width: 152px; font-size: 18px; color: #666458; background: #decdb9; border: none; font-weight: 400; text-transform: uppercase;}

#hero.innerBanner { height: 570px;}
#hero.innerBanner .carousel-container {left: 140px; top: 220px;}
#hero.innerBanner .carousel-container h1 { font-size: 90px; color: #fff; font-weight: 300;}
#hero.innerBanner .overlayBanner {background: linear-gradient(to right,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%); position: absolute; width: 100%; height: 100%; left: 0; top: 0;}
.innerText { float: left; width: 100%; padding: 100px 0;}
.tac h3 { font-size: 36px; color: #666358; font-weight: 400; margin-top: 25px;}
.tac p { font-size: 18px; font-weight: 300; color: #666; line-height: 34px;}
.tac ul { margin: 0; padding: 0; list-style-type: none;}
.tac ul li {font-size: 18px; font-weight: 300; color: #666; line-height: 34px;}
.tac ul li a { color: #94795A !important;}
.tac p a { color: #94795A !important;}
.zig { float: left; width: 100%;}
.zigLeft { float: left; width: 57%;}
.zigRight { float: right; width: 43%; padding: 100px 100px 0;}
.zigLeft img { width: 100%;}
.zig h2 { text-align: center; font-size: 60px; color: #666358; font-weight: 400; margin-bottom: 40px;}
.zigRight p { font-size: 18px; color: #666; line-height: 34px; font-weight: 300;}
#hero.innerBanner.shopPage .carousel-container { top: 150px;}
#hero.innerBanner .carousel-container p { font-size: 30px; color: #fff; }
.shop h2 {text-align: center; font-size: 60px; color: #666358; font-weight: 400; margin-bottom: 40px;}
.shop h3 {text-align: center; font-size: 48px; color: #977a5c; font-weight: 400; text-align: center;}
.productPagePro { float: left; width: 100%; margin-top: 20px;}
.productPagePro .lc { float: left; width: 100%; margin: 20px 0; position: relative;}
.productPagePro .lc .lcTop { height: 371px; width: 100%; float: left; border: 1px solid #ccc; overflow: hidden;}
.productPagePro .lc .lcTop img { width: 100%; height: 100%; object-fit: cover;}
.homeProduct .lc .lcTop { height: 371px; width: 100%; float: left; border: 1px solid #ccc; overflow: hidden;}
.homeProduct .lc .lcTop img { width: 100%; height: 100%; object-fit: cover;}
.productPagePro .lc .lcTop img { width: 100%; height: 100%; object-fit: cover;}
.productPagePro .lc .lcBtm { float: left; width: 100%; text-align: center; margin-top: 20px; padding: 0 15px;}
.productPagePro .lc .lcBtm p { color: #666; font-weight: 300; line-height: 32px; font-size: 18px;}
.productPagePro .lc .lcBtm h5 { color: #666458; font-size: 18px; font-weight: 600;}
.shop h6 { font-size: 24px; font-weight: 300; color: #666; line-height: 44px; text-align: center;}
.innerText.shop.contactPage h2 { margin-bottom: 20px;}
.sMedia { float: left; width: 100%; text-align: center; margin-top: 35px;}
.sMedia ul { margin: 0; padding: 0; list-style-type: none;}
.sMedia ul li { display: inline-block; margin: 0 18px;}
.sMedia ul li p { font-weight: 300; color: #666458; font-size: 18px; margin-top: 10px;}
.time h4 { font-size: 24px; color: #666358; font-weight: 400;}
.cForm { float: left; width: 100%; margin-top: 30px;}
.time p { font-size: 18px; color: #666358; font-weight: 300; margin-top: 15px; background: url(../../images/c7.png) left center no-repeat ; padding-left: 35px;}
.map { float: left; width: 100%; margin-top: 25px; padding-right: 30px;}
.contactPageForm { float: left; width: 100%;}
.contactPageForm fieldset { float: left; width: 100%; margin: 15px 0;}
.contactPageForm fieldset label { font-size: 18px; font-weight: 400; color: #666; width: 100%;}
.contactPageForm fieldset input { width: 100%; height: 50px; border: 1px solid #ccc; margin-top: 10px;}
.contactPageForm fieldset textarea { width: 100%; height: 128px; border: 1px solid #ccc; margin-top: 10px;}
.contactPageForm fieldset input[type="submit"] { background: #977a5c; color: #fff; font-size: 20px; font-weight: 400; border: none;}
.time { margin-top: 20px; float: left; width: 100%;}
.productDetails .woocommerce-product-rating a { font-size: 13px;}
.productDetails .woocommerce-product-rating { margin-bottom: 0 !important;}
.productDetails form th.label label { font-size: 15px; color: #666458;}
.productDetails form table ul li span { font-size: 12px; color: #666;}
.productDetails form table tr { margin: 10px 0; display: block;}
.productDetails .quantity-wrapper { float: left; margin-bottom: 20px !important; border: 1px solid #ccc; height: 44px; margin-right: 10px !important;}
.productDetails form .variations { margin-bottom: 0 !important;}
.productDetails .quantity-wrapper button { border: none; background: none; height: 44px; font-size: 22px;}
.productDetails .quantity-wrapper input { border: none; background: none; height: 44px;}
.product_meta.cataPro p { font-size: 14px;}
.productDetails form { margin-bottom: 10px !important;}
.productDetails form button.single_add_to_cart_button.button.alt { border-radius: 0;}
.productDetails form .single_variation_wrap span.price bdi {font-size: 24px; font-weight: 700; color: #977a5c !important;}
.productImg .zoom.nslick-slide { border: 1px solid #ccc;}
#nickx-gallery li.product_thumbnail_item { border: 1px solid #ccc !important; margin: 0 0.5% !important; width: 24% !important;}
.single-product .woocommerce-tabs.wc-tabs-wrapper { width: 100%; float: left;}
.single-product .woocommerce-tabs.wc-tabs-wrapper ul { width: 100%; float: left; text-align: center; margin-top: 50px !important;}
.single-product .woocommerce-tabs.wc-tabs-wrapper ul li { display: inline-block !important; float: none; margin: 0 1% !important; width: auto !important; border: none !important; background: none !important; padding: 0 !important; font-family: "Inter", serif; border-radius:0 !important;}
.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs::before { border: none !important;}
.single-product .woocommerce-tabs.wc-tabs-wrapper ul li a { font-size: 20px !important; color: #ccc !important; padding: 0 3px !important; border: none !important; border-radius:0 !important;}
.single-product .woocommerce-tabs.wc-tabs-wrapper ul li.active { border-bottom: 2px solid #977a5c !important; color: #977a5c !important;}
.single-product .woocommerce-tabs.wc-tabs-wrapper ul li.active a {color: #977a5c !important;}
.single-product .woocommerce-tabs.wc-tabs-wrapper ul li::before { display: none;}
.single-product .woocommerce-tabs.wc-tabs-wrapper ul li::after { display: none;}
.single-product #tab-description h2 { float: left; width: 100%; margin-top: 25px; font-size: 26px; font-weight: 400; color: #666458; margin-bottom: 20px;}
.single-product #tab-description p { font-size: 16px; color: #666; line-height: 32px; font-weight: 300;}
.single-product { float: left; width: 100%; margin-bottom: 100px !important;}
.single-product #tab-additional_information h2 {font-size: 26px; font-weight: 400; color: #666458; margin-top: 25px; float: left; width: 100%;}
.single-product #tab-additional_information table { margin-top: 15px; float: left; width: 100%;}
.single-product #tab-additional_information table th, td { padding: 15px 7px; font-size: 15px; color: #666;}

.single-product #reviews h2 { float: left; width: 100%; margin-top: 25px; font-size: 26px; font-weight: 400; color: #666458; margin-bottom: 20px;}
.single-product #reviews #comments ol { float: left; width: 100%; margin: 0 !important;}
.single-product #reviews #comments p { font-size: 15px; color: #666;}
.single-product #reviews #comments ol li ul { width: 100%; margin: 0 !important;}
.single-product #reviews #comments ol li ul li { width: 100% !important; text-align: left !important; margin:20px 0 0 0 !important; float: left;}
span#reply-title { float: left; width: 100%; text-align: center; margin-top: 30px; color: #666;}
p.must-log-in { float: left; width: 100%; margin-top: 15px !important; text-align: center; font-size: 15px; color: #666;}
p.must-log-in a { background: #977a5c; padding: 2px 10px 5px; color: #fff; border-radius: 3px;}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn, .xoo-wsc-container .xoo-wsc-btn { background: #96795b !important; border: none !important;}
.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn, .xoo-wsc-container .xoo-wsc-btn:hover { color: #fff !important;}
.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn, .xoo-wsc-container .xoo-wsc-btn:hover span { color: #fff !important;}
.xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-cart-close.xoo-wsc-ft-btn-continue { background: #936f4f !important;}
.xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-ft-btn-checkout { background: #1f1f1f !important;}
.footerTop .ftLeft .tnp.tnp-subscription { max-width: 100%;}
.footerTop .ftLeft .tnp.tnp-subscription input[type="email"] { color: #333 !important;}
.footerTop .ftLeft .tnp.tnp-subscription input::placeholder { color: #333 !important;}
.cout { padding: 100px 0;}
.cout .woocommerce-cart-form table thead { background: #eee;}
.cout .woocommerce-cart-form table td.actions { background: #eee;}
.cout .woocommerce-cart-form table .product-quantity .quantity {float: left; margin-bottom: 20px !important; border: 1px solid #ccc; height: 44px; margin-top: 20px;}
.cout .woocommerce-cart-form table .product-quantity .quantity button { border: none; background: none; height: 44px; font-size: 22px;}
.cout .woocommerce-cart-form table .product-quantity .quantity input { border: none; background: none; height: 44px !important;}

.related.products h2 {text-align: center; font-size: 60px; color: #666358; font-weight: 400;}
.related.products { float: left; width: 100%; margin-top: 40px;}
.related.products ul {  margin-top: 40px !important;}
.related.products ul li.product { text-align: center !important;}
.related.products ul li.product span.price {color: #666458; font-size: 18px; font-weight: 600; margin-top: 5px !important;}
.related.products ul li.product a img { border: 1px solid #ccc;}
.related.products ul li.product a.button {background: #977a5c; font-size: 18px; font-weight: 300; color: #fff; padding: 13px 35px; margin-top: 10px !important;}
.product #tab-description ul li { float: left !important; width: 100% !important; margin-bottom: 12px !important; text-align: left !important; display: inline list-item !important; list-style-type: disc !important; font-size: 16px; color: #666; line-height: 32px; font-weight: 300; margin-left: 15px !important;}
.single-product #tab-description ul { margin: 0 !important; padding: 0; list-style-type: disc !important;}
.productDetails h3.price del span { font-size: 18px !important; color: #999 !important; font-weight: 300 !important;}
.productDetails h3.price del {margin-right: 10px;}
.productDetails h3.price ins { border: none !important; text-decoration: none !important;}
.related.products ul li.product span.price ins {border: none !important; text-decoration: none !important; margin-left: 10px !important;}
.related.products ul li.product span.price del span {font-size: 15px !important; color: #999 !important; font-weight: 300 !important; }
.related.products ul li.product span.onsale { left: 10px !important; top: 10px !important; margin: 0; width: 50px !important; background: #936f4f !important;}
.coupon input#coupon_code { width: 150px !important; height: 33px !important;}
.cout .woocommerce-cart-form table td .coupon button.button {background-color: #846c54 !important; color: #fff !important; font-weight: 300; font-size: 15px !important;}
.cout .woocommerce-cart-form table td { padding: 20px 15px !important;}
.cout .woocommerce-cart-form table td a { font-size: 15px !important; color: #936f4f !important;}
.cout .woocommerce-cart-form table td dl { font-size: 15px !important; color: #666458 !important;}
.cout .woocommerce-cart-form table td.product-thumbnail { width: 10%;}
.cout .woocommerce-cart-form table td.product-thumbnail img { width: 100%;}
.cart_totals  { margin-top: 30px !important;}
.cart_totals tr.cart-subtotal { background: #eee !important;}
.cart_totals tr.order-total {background: #eee !important;}
.cart_totals table { margin-top: 15px !important;}
#shipping-calculator-form p select { width: 100% !important; height: 46px !important; border: 1px solid #aaa !important;}
#shipping-calculator-form .select2-container--default .select2-selection--single { height: 46px; border: 1px solid #aaa; }
#shipping-calculator-form .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 42px;}
#shipping-calculator-form .select2-container--default .select2-selection--single .select2-selection__arrow { height: 46px;}
#shipping-calculator-form input { height: 46px; border: 1px solid #aaa; border-radius: 4px;}
#shipping-calculator-form button { background: #977a5c; font-weight: 400; color: #fff; font-size: 15px;}
.cout .woocommerce-cart-form table a.remove { font-size: 30px !important;}
#customer_details input { width: 100% !important; height: 46px !important; border: 1px solid #aaa !important; border-radius: 0 !important; padding-left: 15px; font-size: 15px;}
#customer_details .select2-container--default .select2-selection--single { width: 100% !important; height: 46px !important; border: 1px solid #aaa !important; border-radius: 0 !important;}
#customer_details .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 43px !important; font-size: 15px;}
#customer_details .select2-container--default .select2-selection--single .select2-selection__arrow { height: 46px; width: 35px;}
#customer_details textarea { width: 100% !important; padding-top: 10px; height: 87px !important; border: 1px solid #aaa !important; border-radius: 0 !important; padding-left: 15px; font-size: 15px; resize: none !important;}
#customer_details label { color: #666;}
#customer_details .woocommerce-shipping-fields h3#ship-to-different-address input { float: left !important; width: auto !important; height: 20px !important; width: 20px !important; margin-top: 8px; margin-right: 15px;}
#customer_details .woocommerce-shipping-fields h3#ship-to-different-address span { font-size: 24px !important; color: #666458 !important; font-weight: 300;}
#customer_details .col-1, .col-2 { border: 1px solid #ccc; padding: 35px;}
#customer_details .woocommerce-billing-fields h3 {font-size: 24px !important; color: #666458 !important; font-weight: 300;}
h3#order_review_heading { margin-top: 40px; font-size: 24px !important; color: #666458 !important; font-weight: 300; margin-bottom: 15px !important;}
#order_review table tr th { background: #eee !important; }
#order_review table tr td {}
#order_review table tr th, td { }
#order_review table { border-collapse: collapse; border: 1px solid #ccc;}
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received { text-align: center; font-size: 24px; margin-bottom: 30px; color: #977a5c; float: left; width: 100%;}
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details { border: 1px solid #ccc; padding: 35px; float: left; width: 100%;}
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li { color: #666 !important;}
section.woocommerce-order-details h2 {font-size: 24px !important; color: #666458 !important; font-weight: 300; margin-top: 25px; float: left; width: 100%;}
section.woocommerce-order-details table { margin-top: 10px !important; float: left; width: 100% !important; border-collapse: collapse !important; border: 1px solid #ccc !important;}
section.woocommerce-order-details table th { background: #eee !important; color: #333 !important;}
section.woocommerce-customer-details .addresses { float: left !important; width: 100% !important; margin-top: 60px !important;}
section.woocommerce-customer-details .addresses h2 {font-size: 24px !important; color: #666458 !important; font-weight: 300;}
section.woocommerce-customer-details .addresses .woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 { padding: 0 !important; border: none !important; margin: 0 !important;}
section.woocommerce-customer-details .addresses address { border: 1px solid #ccc !important; border-radius: 0 !important; margin-top: 10px !important; float: left !important; padding: 35px !important;}
section.woocommerce-customer-details .addresses address br { line-height: 40px;}
section.woocommerce-customer-details .addresses address p { padding: 15px 0 15px 25px !important; border-top: 1px solid #ccc; margin: 0 !important;}

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-first { width: auto !important; float: left;}
.checkout_coupon.woocommerce-form-coupon .form-row.form-row-last { width: auto !important; float: left;}
.checkout_coupon.woocommerce-form-coupon .form-row.form-row-first input { height: 46px; border: 1px solid #ccc; border-radius: 0; padding-left: 15px;}
.checkout_coupon.woocommerce-form-coupon .form-row.form-row-last button { height: 46px; background: #666458; color: #fff; font-weight: 300;}

.woocommerce-bacs-bank-details h2 {font-size: 24px !important; color: #666458 !important; font-weight: 300; margin-top: 25px; float: left; width: 100%;}
.woocommerce-bacs-bank-details ul {border: 1px solid #ccc; padding: 35px; float: left; width: 100%;}
.woocommerce-bacs-bank-details ul li { color: #666 !important;}
.woocommerce-bacs-bank-details h3 {font-size: 18px !important; color: #666458 !important; font-weight: 500; float: left; width: 100%;}
section.woocommerce-order-details table ul.wc-item-meta { margin: 0 !important; padding: 0 !important;}
section.woocommerce-order-details table td { padding: 15px !important;}
.woocommerce-bacs-bank-details .wc-bacs-bank-details.order_details.bacs_details { margin-bottom: 0 !important;}
#reviews #comments ol li { float: left !important; width: 100% !important;}
#reviews #comments .star-rating span { color:#00FF00 !important;}
#reviews #comments .star-rating { height: 20px !important;}
.productDetails .star-rating span {color:#00FF00 !important;}
.single-product .productImg .onsale { left: 10px; top: 10px; width: 50px !important;}
.single-product .productImg { position: relative; }
.lc .lcBtm ins { border: none !important; text-decoration: none !important;}
#customer_login .u-column1.col-1 { padding: 35px;}
#customer_login .u-column1.col-1 h2 { text-align: center;}
#customer_login .login { padding: 50px; border-radius: 35px; border: 1px solid #ccc;}
#customer_login .login input { border: 1px solid #ccc; height: 60px; border-radius: 500px; margin-top: 5px; padding: 0 25px;}
#customer_login .login input#rememberme { height: auto; width: 20px; height: 20px;}
#customer_login .login button.woocommerce-form-login__submit { width: 100%; height: 60px; border-radius: 500px; width: 100%; background: #936f4f; color: #fff; font-size: 20px; margin-top: 15px; font-weight: 300;}
.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {right: 1.7em !important; top: 1.5em !important;}
.woocommerce-LostPassword.lost_password { text-align: center; margin-top: 15px; }
.woocommerce-LostPassword.lost_password a {color: #666458;}


.lc span.onsale { left:10px !important; top: 10px !important; width: 50px;}
.stock.out-of-stock { font-size: 20px !important; font-weight: 700 !important; color: red !important;}
.productDetails a.button.enquiry-button {background: #977a5c; font-size: 18px; font-weight: 300; color: #fff; padding: 13px 50px; margin-top: 15px;}
.productDetails a.button.enquiry-button:hover {background: #977a5c; color: #fff; }
.tinv-wishlist .tinvwl_add_to_wishlist_button { border: 1px solid #aaa; padding: 5px 10px; float: left;}
.product_meta.cataPro { float: left; width: 100%; margin-top: 25px;}

.custom-category ul { margin: 0; padding: 0; list-style-type: none;}
.custom-category li.product-category { float: left; width: 23%; margin: 15px 1%; list-style-type: none; border: 1px solid #ccc;}
.custom-category li.product-category img { width: 100%;}
.custom-category li.product-category h2 { text-align: center; padding: 15px 2%; color: #666; font-weight: 300; line-height: 32px; font-size: 18px;}
.custom-category { float: left; width: 100%; margin: 100px 0;}
.custom-category li.product-category h2 mark { display: none;}
.custom-category li.product-category:hover {border: 1px solid #846c54;}
.wishlist-page { padding: 100px 0;}
.wishlist-page table { border: 1px solid #ccc; border-collapse: collapse;}
.wishlist-page table td,th { border: 1px solid #ccc;}
.wishlist-page table th { background: #eee;}
.wishlist-page .tinv-header h2 {text-align: center; font-size: 60px; color: #666358; font-weight: 400;}
.wishlist-page table td.product-action button { background: #977a5c !important; font-size: 13px !important; padding: 10px !important; border-radius: 0;}
.wishlist-page table th { color: #977a5c;}
.wishlist-page table td.product-action a.product_type_simple { background: #666458 !important; font-size: 13px !important; padding: 10px !important; color: #fff !important; border-radius: 0;}
.wishlist-page table .tinvwl-input-group-btn button {background: #977a5c !important; font-size: 13px !important; padding:0 10px !important; height: 40px; border-radius: 0; color: #fff !important;}
.wishlist-page table .tinvwl-no-full select { border-radius: 0; height: 40px; border: 1px solid #ccc; font-size: 14px;} 
.wishlist-page table .tinvwl-to-right.look_in button { background: #666458; color: #fff; border-radius: 0; height: 40px;}
.variations_form.cart.wvs-loaded table.variations td { padding: 0 !important;}

.homeProduct .lc .lcBtm { padding-top: 25px; float: left; width: 100%;}
#customer_login .u-column2.col-2 { border: none !important;}
#customer_login .u-column2.col-2 h2 { text-align: center;}
#customer_login .u-column2.col-2 .register {padding: 50px; border-radius: 35px; border: 1px solid #ccc;}
#customer_login .u-column2.col-2 .register input { border: 1px solid #ccc; height: 60px; border-radius: 500px; margin-top: 5px; padding: 0 25px;}
#customer_login .u-column2.col-2 .register p { font-size: 14px; font-weight: 300; color: #666; text-align: center;}
#customer_login .u-column2.col-2 .register button {width: 100%; height: 60px; border-radius: 500px; width: 100%; background: #936f4f; color: #fff; font-size: 20px; margin-top: 15px; font-weight: 300;}
#customer_login .u-column2.col-2 .register p label { font-size: 16px; font-weight: 400; color: #000; text-align: left;}

.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style-type: none;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li { margin: 5px 0; float: left; width: 100%;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a { border-bottom: 1px solid #ccc; text-align: center; color: #95785a; font-weight: 400; font-size: 18px; padding: 15px 0; float: left; width: 100%; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a { background: #95785a; color: #fff; border-radius:200px; border: none;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {border-bottom: 1px solid #95785a; color: #95785a;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a:hover { color: #fff;}
.woocommerce-account .woocommerce-MyAccount-content {padding: 50px; border-radius: 35px; border: 1px solid #ccc; min-height: 600px;}
.woocommerce-account .woocommerce-MyAccount-content p { font-size: 16px; font-weight: 300; color: #666;}
.woocommerce-account .woocommerce-MyAccount-content p a { color: #95785a !important;}
.lost_reset_password { width: 500px; padding: 35px; border: 1px solid #ccc; border-radius: 35px; margin: 0 auto; display: block;}
.lost_reset_password p { font-size: 24px; color: #95785a; text-align: center; width: 100%; }
.lost_reset_password p label { font-size: 16px; color: #000; text-align: left;}
.lost_reset_password input { border: 1px solid #ccc; height: 60px; border-radius: 500px; margin-top: 5px; padding: 0 25px; font-size: 16px;}
.lost_reset_password p.form-row-first { width: 100% !important;}
.lost_reset_password p.form-row-last { width: 100% !important;}
.lost_reset_password p button {background: #95785a !important; height: 60px !important; color: #fff !important; border-radius: 200px !important; border: none !important; font-size: 18px !important; width: 100% !important; margin-top: 15px !important;}
.lost_reset_password p span.password-input span.show-password-input {right: 25px !important; top: 15px !important;}
.woocommerce-MyAccount-content table {border-collapse: collapse !important;}
.woocommerce-MyAccount-content table th { background: #eee; color:#95785a; padding: 10px !important;}
.woocommerce-MyAccount-content table td a.button {background: #977a5c !important; font-size: 13px !important; padding:10px 0 !important; text-align: center; width: 100%; border-radius: 0; color: #fff !important;}
.woocommerce-MyAccount-content .woocommerce-Address { width: 100% !important; padding: 35px !important; border: 1px solid #ccc !important; margin: 5px 0;}
.woocommerce-MyAccount-content .woocommerce-Address h2 { font-size: 20px !important; border-bottom: 1px solid #ccc !important; padding-bottom: 15px;}
.woocommerce-MyAccount-content .woocommerce-Address header { border: none !important;}
.woocommerce-MyAccount-content .woocommerce-Address a.edit {background: #666458 !important; font-size: 13px !important; float: left !important; padding:10px 25px !important; text-align: center; border-radius: 200px; color: #fff !important; margin-top: 15px !important;}
.woocommerce-MyAccount-content .woocommerce-Address address { line-height: 40px !important;}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account p label { font-size: 16px; font-weight: 400; color: #000;}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account p input {border: 1px solid #ccc; height: 46px; margin-top: 5px; padding: 0 15px; color: #666;}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account p .password-input span.show-password-input {right: 13px !important; top: 13px !important;}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account p button.button { background: #95785a; font-size: 18px; padding: 15px 25px; border-radius: 0; float: left; margin-top: 15px; color: #fff; font-weight: 400;}

#review_form_wrapper { float: left; width: 100%;}
#review_form_wrapper span#reply-title { text-align: left; font-size: 24px; color: #666358;}
#review_form #commentform { float: left; width: 100%; margin-top: 20px;}
#review_form #commentform label { font-size: 18px; margin-bottom: 10px; float: left; width: 100%; font-weight: 300; color: #333;}
#review_form #commentform p.stars a {width: 1.5em;}
#review_form #commentform p.stars a::before { font-size: 24px;}
#review_form #commentform .comment-form-rating { margin-bottom: 20px; float: left; width: 100%;}
#review_form #commentform .comment-form-comment textarea { border: 1px solid #ccc; height: 200px; width: 960px !important;}
#review_form #commentform .form-submit input.submit {background: #977a5c; font-size: 18px; font-weight: 300; color: #fff; padding: 13px 50px; margin-top: 15px;}
#review_form #commentform .form-submit input.submit:hover {background: #977a5c; color: #fff;}
.woocommerce-MyAccount-content .woocommerce-MyAccount-orders td { font-size: 13px; border: 1px solid #ccc;}
.woocommerce-MyAccount-content .woocommerce-MyAccount-orders td a.view { height: auto;}
.woocommerce table.shop_attributes th {border: none;}
.woocommerce-address-fields__field-wrapper p label { font-size: 16px;}
.woocommerce-address-fields__field-wrapper p input { width: 100%; width: 100%; height: 46px; border: 1px solid #ccc; margin-top: 5px; font-size: 14px; color: #666; font-weight: 400; padding-left: 10px;}
.woocommerce-address-fields__field-wrapper .select2-container .select2-selection--single { width: 100%; width: 100%; height: 46px; border: 1px solid #ccc; margin-top: 5px; font-size: 14px; color: #666; font-weight: 400; line-height: 44px;}
.woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {height: 54px; width: 30px;}
.woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 44px;}
.woocommerce-MyAccount-content .woocommerce-address-fields p button.button {background: #977a5c; font-size: 18px; font-weight: 300; color: #fff; padding: 13px 50px;}
.productDetails h3.price del { text-decoration: none;}
.productDetails h3.price del bdi { text-decoration: line-through;}
.lc .lcBtm del span {font-size: 15px !important; color: #999 !important; font-weight: 300 !important;}
.lc .lcBtm del { margin-right: 10px !important;}
.popup-close { color: #fff !important;}
.popup-modal .popup-content h2 { font-size: 30px; color: #666458; font-weight: 300;}

.popup-modal {z-index: 999999999 !important;}
.popup-modal .popup-content fieldset { float: none !important;}
.product-template-default.single.single-product { margin-bottom: 0 !important;}





@media (max-width:1900px) {
#cssmenu > ul > li > a {font-size: 20px; padding: 10px 25px;}
#hero { height: 750px;}
.ahLeft h1 { font-size: 42px;}
.ahLeft2 { height: 500px;}
.ahRight {height: 710px;}
.li h2 { font-size: 54px;}
.li ul li .li1 h5 { font-size: 30px;}
.homeProduct h2 { font-size: 54px;}
#teams .lc .lcBtm p { font-size: 16px;}
.ahLeft2 p { font-size: 16px;}
.chRight h4 { font-size: 42px;}
.chRight form label { font-size: 18px;}
.chLeft { height: 928px;}
.chLeft img { width: 100%; height: 100%; object-fit: cover; background-position: right;}
.ftLeft h3 { font-size: 30px;}
.ftLeft h6 { font-size: 16px;}
.ftLeft form input { font-size: 16px;}
.ftopLeft ul li a { font-size: 16px;}
.fBtm p { font-size: 13px; font-weight: 300;}
#hero.innerBanner .carousel-container h1 { font-size: 72px;}
#hero.innerBanner {height: 450px;}
#hero.innerBanner .carousel-container { top: 160px;}
.zig h2 { font-size: 54px;}
.zigRight {padding: 0 50px 0;}
.zigRight p {font-size: 16px; line-height: 32px;}
.time p { font-size: 16px;}

#hero.innerBanner.shopPage .carousel-container p { font-size: 28px;}
#hero.innerBanner.shopPage .carousel-container { left: 50px; right: 50px; top: 120px;}
.related.products h2 {font-size: 48px;}
.wishlist-page .tinv-header h2 { font-size: 54px;}
}
@media (max-width:1620px) {
.productPagePro .lc .lcTop {height: 310px;}
}

@media (max-width:1366px) {
#hero { height: 650px;}
#cssmenu > ul > li > a { font-size: 18px;}
.ahLeft h1 {font-size: 36px; padding: 100px 110px 49px 110px;}
.ahLeft2 p {font-size: 15px; line-height: 30px;}
.ahRight {height: 640px;}
.ahLeft2 { height: 450px;}
.li h2 { font-size: 48px;}
.li ul li .li1 h5 { font-size: 24px;}
.li ul li { height: 380px;}
.homeProduct h2 { font-size: 48px;}
#teams .lc .lcBtm p { font-size: 15px;}
.chRight h4 { font-size: 36px;}
.chRight form label {font-size: 16px;}
.chRight form input {height: 44px;}
.chRight form textarea {height: 100px;}
.chRight form input[type="submit"] { font-size: 16px;}
.chLeft {height: 840px;}
.chRight { height: 740px;}
.ftLeft h3 { font-size: 26px;}
.ftLeft h6 { font-size: 15px;}
.ftLeft form input { font-size: 15px;}
.ftopLeft ul li a { font-size: 15px;}
.aboutHome { padding-top: 90px;}
.li { margin: 90px 0;}
.homeProduct { margin-bottom: 90px;}
#hero.innerBanner .carousel-container h1 { font-size: 60px;}
#hero.innerBanner {height: 400px;}
.zig h2 { font-size: 48px;}
.zigRight p {font-size: 15px; line-height: 30px;}
.innerText { padding: 90px 0;}
.shop h2 { font-size: 48px;}
.shop h6 { font-size: 20px; line-height: 38px;}
.sMedia ul li p {font-size: 16px;}
.time p { font-size: 15px;}
.contactPageForm fieldset label {font-size: 16px;}
.shop h2 { font-size: 48px;}
.shop h3 { font-size: 36px;}
#hero.innerBanner.shopPage .carousel-container p {font-size: 24px;}
#hero.innerBanner.shopPage .carousel-container {top: 100px;}
.productPagePro .lc .lcBtm p { font-size: 15px;}
.productPagePro .lc .lcBtm p { margin-bottom: 5px;}
.productPagePro .lc .lcBtm h5 { font-size: 16px;}

.productDetails h1 { font-size: 26px;}
.productDetails h3 span {font-size: 20px;}
.productDetails p {font-size: 15px; line-height: 28px;}
.single-product #tab-description h2 {font-size: 24px;}
.single-product #tab-description p {font-size: 15px; line-height: 29px;}
.related.products h2 {font-size: 36px;}
.single-product #tab-additional_information h2 { font-size: 24px;}
.single-product #reviews h2 { font-size: 24px;}
.productDetails h3.price {}
.cout { padding: 90px 3%;}
.wishlist-page .tinv-header h2 { font-size: 48px;}
.tinv-wishlist.woocommerce.tinv-wishlist-clear form { padding: 0 15px;}
.wishlist-page {padding: 90px 0;}
.tac h3 { font-size: 30px;}
.tac p { font-size: 16px; line-height: 30px;}
.tac ul li {font-size: 16px; line-height: 30px;}
}
@media (max-width:1300px) {
.ahLeft h1 {padding: 100px 80px 49px 80px;}
.ahLeft2 {padding: 60px 80px 0 80px;}
}
@media (max-width:1200px) {
.menuNav {margin-left: 10%;}
nav{width:100%;}
  #cssmenu{width:100%}
  #cssmenu ul{width:100%;display:none}
  #cssmenu ul li{width:100%;}
  #cssmenu ul li a { color: #fff;}
  #cssmenu ul li a:hover {}
  #cssmenu ul li:hover{}
  #cssmenu ul ul li,#cssmenu li:hover > ul > li{height:auto}
  #cssmenu ul li a,#cssmenu ul ul li a{width:100%;border-bottom:0}
  #cssmenu > ul > li{float:none}
  #cssmenu ul ul li a{padding-left:25px}
  #cssmenu ul ul li{background:#f3f3f3!important;}
  #cssmenu ul ul li:hover{}
  #cssmenu ul ul ul li a{padding-left:50px}
  #cssmenu ul ul li a{color:#333;background:none}
  #cssmenu ul ul li:hover > a,#cssmenu ul ul li.active > a{color:#000}
  #cssmenu ul ul,#cssmenu ul ul ul{position:relative;left:0;width:100%;margin:0;text-align:left}
  #cssmenu > ul > li.has-sub > a:after,#cssmenu > ul > li.has-sub > a:before,#cssmenu ul ul > li.has-sub > a:after,#cssmenu ul ul > li.has-sub > a:before{display:none}
  #cssmenu #head-mobile{display:block;padding:23px;color:#ddd;font-size:12px;font-weight:700}
  .button{width:55px;height:46px;position:absolute;right:0;top:0;cursor:pointer;z-index: 12399994; background: url(../../images/dToggle.png) center center no-repeat;}
  .button:after{position:absolute;top:22px;right:20px;display:block;height:4px;width:20px;border-top:2px solid #dddddd;border-bottom:2px solid #dddddd;content:''}
  .button:before{-webkit-transition:all .3s ease;-ms-transition:all .3s ease;transition:all .3s ease;position:absolute;top:16px;right:20px;display:block;height:2px;width:20px;background:#ddd;content:''}
  .button.menu-opened:after{-webkit-transition:all .3s ease;-ms-transition:all .3s ease;transition:all .3s ease;top:23px;border:0;height:2px;width:19px;background:#fafafa;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}
  .button.menu-opened:before{top:23px;background:#fafafa;width:19px;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}
  #cssmenu .submenu-button{position:absolute;z-index:99;right:0;top:0;display:block;border-left:1px solid #444;height:46px;width:46px;cursor:pointer}
  #cssmenu .submenu-button.submenu-opened{background:none;}
  #cssmenu ul ul .submenu-button{height:38px;width:46px}
  #cssmenu .submenu-button:after{position:absolute;top:22px;right:19px;width:8px;height:2px;display:block;background:#ddd;content:''}
  #cssmenu ul ul .submenu-button:after{top: 17px; right: 19px;}
  #cssmenu .submenu-button.submenu-opened:after{background:#fafafa}
  #cssmenu .submenu-button:before{position:absolute;top:19px;right:22px;display:block;width:2px;height:8px;background:#ddd;content:''}
  #cssmenu ul ul .submenu-button:before{top: 14px; right: 22px;}
  #cssmenu .submenu-button.submenu-opened:before{display:none}
  #cssmenu ul ul ul li.active a{border-left:none}
  #cssmenu > ul > li.has-sub > ul > li.active > a,#cssmenu > ul ul > li.has-sub > ul > li.active > a{border-top:none}
  .button::before { display: none;}
  .button::after { display: none;}
  .button.menu-opened {background: url(../../images/dCross.png) center center no-repeat;}
  .headerTop { margin-right: 65px;}
  .headerBtm { height: 0;}
  #cssmenu ul.open {
    position: absolute;
    top: 16px;
    background: #3c4142;
    width: 100%;
    left: 0;
    z-index: 9999999;
    padding: 0; padding: 10px 0;
  }

.headerRight { margin-right: 60px; margin-left: 0;}
.menuNav { position: absolute; right: 0; width: 100%; margin-top: 72px;}
.button { top: -61px;}
.logo { position: relative; z-index: 1;}
#cssmenu > ul > li > a {padding: 15px 15px;}
.headerRight ul li { }
#hero {height: 550px;}
.ahLeft h1 {padding: 5px 40px 49px 40px; font-size: 30px;}
.ahLeft2 {height: 580px;}
.li h2 { font-size: 36px;}
.homeProduct h2 { font-size: 36px;}
.chRight h4 { font-size: 30px;}
.ftLeft h3 { font-size: 24px;}
.ftLeft {padding: 100px 25px 0;}
.aboutHome { padding-top: 70px;}
.li { margin:70px 0;}
.homeProduct { margin-bottom: 70px;}
#hero.innerBanner .carousel-container h1 { font-size: 48px;}
#hero.innerBanner {height: 350px;}
#hero.innerBanner .carousel-container {top: 130px;}
.zig h2 { font-size: 36px;}

.zigLeft { width: 96%; margin: 0 2%;}
.zigRight { width: 96%; margin: 20px 2% 0; padding: 0;}
.zig h2 {margin-bottom: 20px;}
.innerText { padding: 70px 0;}
.shop h2 { font-size: 36px;}
.cForm .col-1 { display: none;}
.cForm .col-10 { width: 100%;}
.time h4 { font-size: 20px;}
.shop h2 { font-size: 36px;}
.shop h3 { font-size: 30px;}
#hero.innerBanner.shopPage .carousel-container p {font-size: 20px;}
.lost_reset_password p button { top: 0 !important;}
.button { top: 0 !important; width: auto;}

.productDetails h1 { font-size: 24px;}
.menuNav .button { width: 55px !important; top: -61px !important; }
.cout { padding: 70px 3%;}
.coupon input#coupon_code {height: 46px !important;}
.cart_totals h2 { font-size: 22px;}
.woocommerce form .form-row-first, .woocommerce-page form .form-row-first { width: 100% !important;}
.woocommerce form .form-row-last, .woocommerce-page form .form-row-last { width: 100% !important;}
#customer_details input {font-size: 14px;}
#customer_details label {font-size: 15px;}
#customer_details .select2-container--default .select2-selection--single .select2-selection__rendered { font-size: 14px;}
#customer_details .woocommerce-billing-fields h3 { font-size: 21px !important;}
#customer_details .woocommerce-shipping-fields h3#ship-to-different-address span {font-size: 21px !important;}
#customer_details .woocommerce-shipping-fields h3#ship-to-different-address input {margin-top: 3px;}
.wishlist-page .tinv-header h2 { font-size: 36px;}
.wishlist-page {padding: 70px 0;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a { font-size: 16px;}

}
@media (max-width:1100px) {
.li ul li {height: 300px;}
.li ul li .li1 h5 { font-size: 20px;}
.chRight {padding: 40px 40px 0; height: 680px;}
.chLeft {height: 780px;}
.ftopLeft { width: 100%;}
.ftopRight { width: 100%; margin-top: 25px;}
.ftopRight ul li { margin-right: 15px; margin-left: 0px;}
}
@media (max-width:1024px) {
#target { width: 90%;}
.ahLeft { width: 100%;}
.aboutHome {padding: 100px 0 0 0;}
.ahLeft2 { height: auto; padding: 20px; width: 96%; margin-left: 2%;}
.ahLeft h1 {padding: 5px 40px 15px 18px;}
.ahRight { height: auto; width: 100%; margin-top: 20px;}
.li h2 { font-size: 30px;}
.li ul li { width: 49.4%; margin: 3px 0.3%;}
.li ul li {height: 450px;}
.homeProduct h2 { font-size: 30px;}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled { display: block;}
.owl-nav .owl-next {background-size: 100% !important; width: 50px;}
.owl-nav .owl-prev {background-size: 100% !important; width: 50px;}
.owl-theme .owl-nav {top: -46px;}
.chLeft { height:700px; width: 100%;}
.chRight { height: auto; width: 100%; margin-top: 0; padding: 25px;}
.ftLeft h3 { font-size: 20px;}
.ftRight { width: 100%; height: auto;}
.ftLeft { width: 100%;}
.aboutHome { padding-top: 50px;}
.li { margin:50px 0;}
.homeProduct { margin-bottom: 50px;}
.ftLeft { height: auto; padding: 50px 25px;}
#hero.innerBanner .carousel-container h1 { font-size: 36px;}
#hero.innerBanner {height: 300px;}
#hero.innerBanner .carousel-container {top: 115px; left: 50px;}
.zig h2 { font-size: 30px;}
.innerText { padding: 50px 0;}
.shop h2 { font-size: 30px;}
.shop h6 { font-size: 18px; line-height:32px;}
.sMedia ul li p {font-size: 15px;}
.time h4 {font-size: 18px;}
.shop h2 { font-size: 30px; margin-bottom: 20px;}
.shop h3 { font-size: 24px;}
#hero.innerBanner.shopPage .carousel-container p {font-size: 18px;}
.productPagePro .col-3 { width: 33.33%;}
.productDetails h1 { font-size: 22px;}
.related.products h2 {font-size: 30px;}
.single-product #tab-description h2 { font-size: 20px;}
.single-product .woocommerce-tabs.wc-tabs-wrapper ul li a {font-size: 18px !important;}
.single-product #tab-additional_information h2 { font-size: 20px;}
.single-product #reviews h2 { font-size: 20px;}
.productDetails h3.price { font-size: 18px !important;}
.productDetails h3 span { font-size: 17px;}
#review_form #commentform .comment-form-comment textarea { width: 100% !important;}
.cout { padding: 50px 3%;}
.cart_totals h2 { font-size: 20px;}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {width: 33.33%; margin: 15px 0; border: none;}
.woocommerce-bacs-bank-details ul li { width: 33.33%; margin: 15px 0 !important; border: none !important;}
.wishlist-page .tinv-header h2 { font-size: 30px;}
.stock.out-of-stock {font-size: 18px !important;}
.wishlist-page {padding: 50px 0;}
.tac h3 { font-size: 24px;}
.tac p { font-size: 15px; line-height: 28px;}
.tac ul li {font-size: 15px; line-height: 28px;}

}
@media (max-width:1023px) {}
@media (max-width:991px) {
.single-product .col-6 { width: 100%;}
}
@media (max-width:960px) {
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 { width: 100% !important;}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-2 { width: 100% !important; margin-top: 20px !important;}
}
@media (max-width:900px) {
#hero {height: 450px;}
}
@media (max-width:850px) {
.footerBtm .col-4 { width: 100%;}
.footerBtm .col-8 { width: 100%; margin-top: 25px;}
.fTop { text-align: center;}
.ftopLeft ul li { float: none; display: inline-block;}
.ftopRight { width: 100%; text-align: center;}
.ftopRight ul li { float: none; display: inline-block;}
.fBtm { text-align: center;}

}
@media (max-width:800px) {}
@media (max-width:768px) {
#hero {height: 400px;}
.li h2 { font-size: 24px;}
.li ul li {height: 350px;}
.ahLeft h1 { font-size: 24px; padding: 5px 15px 15px 18px;}
.homeProduct h2 { font-size: 24px;} 
.chRight h4 { font-size: 24px;}
.chLeft {height: 520px;}
.aboutHome { padding-top: 30px;}
.li { margin:30px 0;}
.li ul { margin-top: 5px;}
.homeProduct { margin-bottom: 30px;}
.ftLeft { height: auto; padding: 30px 25px;}
#hero.innerBanner .carousel-container h1 { font-size: 30px;}
#hero.innerBanner { height: 250px;}
#hero.innerBanner .carousel-container {top: 100px;}
.zig h2 { font-size: 24px;}
.innerText { padding: 30px 0;}
.shop h2 { font-size: 24px;}
.shop h6 { font-size: 16px; line-height:28px;}
.shop h6 br { display: none;}
.cForm .col-6 { width: 100%;}
.map { padding-right: 0; margin-top: 0;}
.time p {line-height: 36px;}
.time { margin-top: 0;}
.map iframe { height: 300px;}
.shop h2 { font-size: 24px; margin-bottom: 20px;}
.shop h3 { font-size: 20px;}
#hero.innerBanner.shopPage .carousel-container {top: 70px;}
#hero.innerBanner.shopPage .carousel-container p {font-size: 16px;}
.productPagePro .col-3 { width: 50%;}
.productDetails h1 { font-size: 18px;}
.related.products h2 {font-size: 24px;}
.single-product #tab-description h2 { font-size: 18px;}
.single-product .woocommerce-tabs.wc-tabs-wrapper ul li a {font-size: 16px !important;}
.single-product #tab-additional_information h2 { font-size: 18px;}
.single-product #reviews h2 { font-size: 18px;}
.productDetails h3 span { font-size: 16px;}
.product #tab-description ul li {font-size: 15px; line-height: 28px;}

#review_form_wrapper span#reply-title {font-size: 17px;}
#review_form #commentform label {font-size: 16px;}
.single-product #reviews #comments ol { padding-left: 0 !important;}
#tab-additional_information table.shop_attributes th {border:none !important;}
#tab-additional_information table.shop_attributes {border:none !important;}
#tab-additional_information table.shop_attributes th, td { font-size: 14px;}
.productPagePro {margin-top: 0px;}
.cout { padding: 30px 2%;}
.cart_totals h2 { font-size: 18px;}
.coupon input#coupon_code { width:48% !important;}
.cout .woocommerce-cart-form table td.product-quantity {padding: 35px 15px !important; position: relative;}
.cout .woocommerce-cart-form table td.product-quantity::before {margin-top: -11px;}
.cout .woocommerce-cart-form table .product-quantity .quantity {margin-top: -22px; float: right;}
.cout .woocommerce-cart-form table .product-quantity .quantity .quantity {margin-top: 20px;}
.cout .cart-collaterals .wc-proceed-to-checkout .checkout-button { padding: 13px 0 !important; font-size: 15px;}
#customer_details .col-1, .col-2 {padding: 25px 20px !important;}
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li { width: 50%;}
.woocommerce-bacs-bank-details ul li { width: 50%;}
.wishlist-page .tinv-header h2 { font-size: 24px;}
.tinv-wishlist .tinvwl-table-manage-list .product-cb {text-align: left;}
.tinv-wishlist table.tinvwl-table-manage-list tbody td {text-align: left !important;}
.tinv-wishlist .product-stock p {display: inline-block !important;}
.tinv-wishlist .product-action .button { width: 100%; text-align: center; padding: 15px 0; background: #666458; color: #fff;}
.tinv-wishlist .product-remove button {display: inline-block !important;}
.stock.out-of-stock {font-size: 16px !important;}
.wishlist-page {padding: 30px 0;}

.woocommerce-account .woocommerce-MyAccount-content { width: 100% !important; float: left !important; min-height: auto !important; padding: 25px 25px 0 25px; margin-top: 20px;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a { font-size: 15px;}
.tac h3 { font-size: 22px;}
}
@media (max-width:767px) {}
@media (max-width:700px) {
#hero {height: 350px;}
}
@media (max-width:640px) {
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li { width: 100%;}
.woocommerce-bacs-bank-details ul li { width: 100%;}
.woocommerce ul.order_details li strong {font-size: 1.2em !important;}
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {padding: 10px 25px; margin-bottom: 0;}
.woocommerce-bacs-bank-details ul {padding: 10px 25px;}
section.woocommerce-customer-details .addresses address {padding: 10px 25px !important; font-size: 14px;}
section.woocommerce-customer-details .addresses .woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {margin: 20px 0 0 0 !important; float: left;}
section.woocommerce-order-details table th, td { font-size: 14px !important;}
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {  padding: 0 15px;}
section.woocommerce-customer-details .addresses { margin-top: 0 !important;}
#customer_login .u-column1.col-1 { padding: 0;}
#customer_login .u-column2.col-2 { padding: 0 !important;}
#customer_login .u-column2.col-2 .register {padding: 25px;}
#customer_login .login {padding: 25px;}
#customer_login .login button.woocommerce-form-login__submit {font-size: 18px;}
#customer_login .login input { font-size: 15px;}
#customer_login .u-column2.col-2 .register button {font-size: 18px;}
}
@media (max-width:600px) {
.li ul li {height: 300px;}
#teams .lc {width: 98%; margin: 0 1%;}
.owl-theme .owl-nav {right: -5px;}
.productPagePro .lc .lcTop {height: 260px;}
.productPagePro .lc .lcBtm { margin-top: 10px;}

}
@media (max-width:570px) {
  #target { width: 95%;}
  #target input { width: 100%;}
  #target input.searchBtn { width: 100%; margin-top: 10px;}
  .ftopLeft ul li { margin: 5px 10px;}
  #hero.innerBanner { height: 200px;}
#hero.innerBanner .carousel-container {top: 70px;}
.map iframe { height: 250px;}
#hero.innerBanner.shopPage .carousel-container {top: 48px;}
.lost_reset_password { width: 97% !important; margin: 0 0 0 3% !important;}
.lost_reset_password p { font-size: 20px;}
.tac h3 { font-size: 20px;}
}
@media (max-width:520px) {}
@media (max-width:480px) {
.logo img { width: 150px;}
.headerRight {margin-top: 15px;}
.button {top: -65px;}
.headerRight ul li {margin-left: 15px;}
.headerRight {margin-right: 50px;}
#target { top: 91px;}
#cssmenu ul.open { top: 5px;}
#hero {height: 250px;}
.li ul li { height: auto; width: 98%; margin-left: 1%;}
#hero.innerBanner.shopPage {height: 220px;}
#hero.innerBanner.shopPage .carousel-container p { font-size: 15px;}
.productPagePro .col-3 { width: 100%;}
.productDetails h1 { font-size: 16px;}
.woocommerce div.product .woocommerce-tabs ul.tabs li { width: 100% !important;}
.menuNav .button {top: -65px !important;}
}
@media (max-width:420px) {
#hero {height: 215px;}
#hero.innerBanner.shopPage {height: 250px;} 
}