/**
* 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", sans-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: 919px;
  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:300px;
  left: 50px;
  right: 50px; text-align: center;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 72px; font-weight: 700; letter-spacing: 1px;
}
#hero h2 em { color:#ff5a64;}
#hero h1 {background: linear-gradient(to right, #94c957 0%, #20b6a4 100%); display: inline-block; font-size: 160px; font-weight: 800;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}

#hero h3 {
  color: #fff;
  margin: 0;
  font-size: 60px; font-weight: 700; letter-spacing: 1px;
}

#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;
  max-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: 0px; right: 0; width: 100%; }
  .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: 62px; height: 29px;}
      .owl-nav .owl-next { background: url(../../images/arrow2.png) left top no-repeat !important; width: 62px; height: 29px;}
      .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{text-transform: uppercase;padding:16px 25px;font-size:16px;text-decoration:none;color:#111111;font-weight:600; font-family: "Lato", sans-serif;}
      #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 **/

.overlayBanner { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, .6);}
header { position: absolute; width: 98%; left: 1%; right: 1%; top: 15px; z-index: 9;}
.logo { float: left; margin-left: 20px; margin-top: 15px;}
.headerRight { float: right;}
.hrLeft { float: left; margin-top: 33px;}
.hrLeft ul { margin: 0; padding: 0; list-style-type: none; float: left;}
.hrLeft ul li { float: left; margin-right: 40px; font-size: 18px; color: #fff; width: 100%; margin-top: 10px;}
.hrLeft ul li a { color: #fff;}
.hrLeft ul li img { margin-right: 10px; }
.hrRight { float: right; margin-top: 23px; margin-right: 10px;}
.hrRight a { float: left; margin: 0 10px; font-size: 20px; color: #fff; border: 2px solid #fff; padding: 10px 35px; border-radius: 500px;}
.hrRight a img { margin-left: 5px;}
.logos .owl-dots { display: none;}
.owl-theme .owl-nav button.owl-prev { float: left; margin-left: -80px;}
.owl-theme .owl-nav button.owl-next { float: right; margin-right: -80px;}
.logos { float: left; width: 100%; margin: 120px 0;}
.ww { background-size: cover !important; padding: 120px 0; float: left; width: 100%; text-align: center;}
.ww h3 { font-size: 60px; color: #fff; font-weight: 600;}
.ww h2 { font-size: 206px; font-weight: 800; -webkit-text-stroke: 2px #fff; font-family: Roboto, Arial, Helvetica, sans-serif;  line-height: 200px; color: #4164B7; }
.cd { float: left; width: 100%; margin-top: 50px;}
.cd ul { margin: 0; padding: 0; list-style-type: none;}
.cd ul li { float: left; width: 31.33%; margin: 0 1%;}
.cd ul li span { font-size: 100px; color: #fff; font-weight: 800; line-height: 100px;}
.cd ul li p { font-size: 30px; color: #fff; margin-top: 10px;}
.tables { float: left; width: 100%; background: #151515; padding: 120px 0;}
.tables h2 { text-align: center; font-size: 72px; color: #fff; font-weight: 600;}
.table td { border: 2px solid #94ca58 !important; padding: 15px;}
.table tr { border: 1px solid #666;}
.table thead { height: 70px; background: #93c759;}
.table th { text-align: center; font-size: 20px; font-weight: 600; color: #111; border: 2px solid #94ca58 !important;}
.table { margin-top: 40px;}
.blogs { float: left; width: 100%; padding: 0 1%; margin: 100px 0 120px;}
.blogs h2 { font-size: 72px; font-weight: 700; text-align: center;}
.bS { float: left; width: 100%; margin-top: 40px;}
.bsb { float: left; width: 30.33%; margin: 0 1.5%;}
.bbTop { float: left; width: 100%;}
.bbTop img {     max-width: 100%;
    width: 100%;
    height: auto;}
.bbBtm { float: left; width: 100%; margin-top: 30px;}
.bbBtm h6 { color: #666; font-size: 18px; font-weight: 400;}
.bbBtm h5 { font-size: 26px; color: #151515; font-weight: 700; margin-top: 15px;}
.bbBtm a { float: left; font-size: 20px; background: linear-gradient(to right,  #94c958 0%,#1eb8a4 100%); color: #fff; padding: 12px 40px; margin-top: 25px; font-weight: 600;}
.faq { float: left; width: 100%; background: #f1effe; padding: 120px 0;}
.faq h2 { font-size: 72px; color: #333; font-weight: 700; text-align: center;}

.bbBtm h5 a {font-size: 26px; color: #151515; font-weight: 500; padding: 0; background: none; margin: 0;}

.faq-item {  border-bottom: 1px solid #ccc;}
.faq-question {  background: none;  border: none;  width: 100%;  text-align: left;  padding:25px 0;  font-size: 24px; font-weight: 300; color: #222; cursor: pointer; display: flex; justify-content: space-between; align-items: center; outline: none;}
.faq-question::after { content: '+'; font-size: 30px; font-weight: 300; color: #333; transition: transform 0.3s ease;}
.faq-question.active::after { transform: rotate(45deg);}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer p { padding: 0 0 20px 0; margin: 0; line-height: 1.6; color: #666; font-size: 18px; font-weight: 300;}
.faqss { float: left; width: 100%; margin-top: 15px;}
footer { float: left; width: 100%; background: #151515; padding: 100px 0 30px;}
.fLogo { float: left; width: 100%; text-align: center;}
.socalMedia { float: left; width: 100%; text-align: center; margin-top: 40px;}
.socalMedia ul { margin: 0; padding: 0; list-style-type: none;}
.socalMedia ul li { display: inline-block; margin: 0 10px;}
.footerMenu { float: left; width: 100%; margin-top: 40px; text-align: center;}
.footerMenu ul { margin: 0; padding: 0; list-style-type: none;}
.footerMenu ul li { display: inline-block; margin: 0 20px;}
.footerMenu ul li a { color: #aaa; font-size: 18px; font-weight: 300;}
.footerMenu ul li a:hover { color: #fff;}
.website-details p { margin-bottom: 0; font-size: 14px; font-weight: 300; color: #cccccc; margin:10px 0;}
.website-details p span { color: #aaa;}
.website-details p strong { font-weight: 800;}
.category-container span.category-tag { font-size: 13px; color: #aaa; border: 1px solid #aaa; margin: 5px 5px; padding: 2px 6px; float: left;}
.monthly-traffic { font-size: 16px; color: #ccc; font-weight: 400; text-align: center;}
.dr { text-align: center;}
.dr span { display: inline-block; background: #209d93; border: 1px solid #22d4a5; font-size: 16px;}
.dr span em { display: inline-block; padding: 5px 12px; background: #95ca5a; font-style: normal; font-weight: 600;}
.dr span b { color: #fff; padding: 5px 15px 5px 12px; display: inline-block; font-weight: 600; }
.dr.da span { background: #317db2;}
.Language { text-align: center;}
.Language span { color: #ccc; font-size: 16px;}
.price { text-align: center;}
.price span { color: #ccc; font-size: 16px;}
.buttons { text-align: center;}
.buttons a { display: inline-block; background: #1d9e90; color: #fff; padding: 8px 17px;}
.table tbody tr:hover { background: #222;}
.pagination { float: left; width: 100%; text-align: center; display: block; margin-top: 40px;}
.drop { position: absolute; width: 220px; background: #111; top: 85px; padding:0 15px; right: 0; border: 1px solid #2f7db2;}
.drop ul { margin: 0; padding: 0; list-style-type: none;}
.drop ul li { float: left; width: 100%; padding: 15px 0; border-bottom: 1px solid #333;}
.drop ul li:last-child { border: none;}
.drop ul li a { border: none; padding: 0; border-radius: 0; font-size: 16px; font-weight: 300; color: #ccc;}
.drop ul li a:hover { color: #fff;}
.drop.drop2 { right: auto;}

#hero.registrtion-pag { height: 500px;}
#hero.registrtion-pag .carousel-container {top: 235px; }
#hero.registrtion-pag .carousel-container h1 { font-size: 100px;}
.registration-form-sell-buy { padding:70px 0 100px 0;}
.registration-form-sell-buy form { width: 500px; border: 1px solid #1d9e90; padding: 40px; margin: 0 auto !important;}
.registration-form-sell-buy form input { width: 100% !important; height: 46px !important; border: 1px solid #ccc !important; padding: 0 15px !important; outline: none !important;}
.registration-form-sell-buy form input[type="submit"] { background:#1d9e90; color: #fff; border: none; margin-top: 20px;}
.blogss .bS { margin: 0;}
.blogss .bS .bsb { margin: 35px 1.5%;}
.bd {float: left; width: 100%; margin: 100px 0;}
.bds h2 { font-size: 48px; font-weight: 400;}
.bds h3 { font-size: 36px; font-weight: 400; margin-top: 30px;}
.bds h4 { font-size: 30px; font-weight: 400; margin-top: 30px;}
.bds h5 { font-size: 24px; font-weight: 400; margin-top: 30px;}
.bds h6 { font-size: 20px; font-weight: 400; margin-top: 30px;}
.bds p {line-height: 1.8; color: #666; font-size: 18px; font-weight: 300;}
.bds ul li {line-height: 1.8; color: #666; font-size: 18px; font-weight: 300;}
.bds ol li {line-height: 1.8; color: #666; font-size: 18px; font-weight: 300;}
.bds img {     width: 100%;
    margin: 20px 0;
    height: auto;}
.bds { padding-right: 30px;}
.catagory { float: left; width: 100%; padding: 50px 50px 40px; border: 1px solid #1d9e90;}
.catagory h4 {font-size: 24px; font-weight: 700; color: #1d9e90;}
.catagory ul { margin: 0; padding: 0; list-style-type: none;}
.catagory ul li { float: left; width: 100%; margin: 7px 0;}
.catagory ul li a { font-weight: 400; color: #666;}
.catagory ul li a:hover { color: #1d9e90;}

.populer {float: left; width: 100%; padding: 40px 50px 40px; border: 1px solid #1d9e90; margin-top: 25px;}
.populer ul { margin: 0; padding: 0; list-style-type: none;}
.populer ul li { float: left; width: 100%; margin: 10px 0;}
.populer ul li .ppLeft { float: left; width: 20%; height: 80px;}
.populer ul li .ppLeft img { width: 100%; height: 100%; object-fit: cover;}
.populer ul li .ppRight { width: 75%; float: right;}
.populer ul li .ppRight h5 { font-size: 16px; color: #666; font-weight: 400; line-height: 1.5;}
.populer ul li .ppRight h6 { font-size: 14px; color: #777; font-weight: 300;}
.populer ul li:hover a h5 { color: #111;}
.populer h4 {font-size: 24px; font-weight: 700; color: #1d9e90; margin-bottom: 15px;}

@supports (position:sticky) or (position:-webkit-sticky) {
    @media (min-width: 992px) {
        .populer {
            position: relative;
            position: sticky;
            top: 25px;
            transition: .4s;
        }
    }
}

.dateandAdmin { float: left; width: 100%; margin-top: 10px;}
.dateandAdmin ul { margin: 0 0 0 0; padding: 0; list-style-type: none; }
.dateandAdmin ul li { float: left; margin: 0 40px 0 0; padding: 0; font-size: 15px; line-height: 24px;}
.bds .dateandAdmin ul li img { margin: 0; float: left; margin-right: 10px;}
/* Hide entire Additional information section 
.woocommerce-additional-fields {
    display: none !important;
}*/

.cata { float: left; width: 100%; border: 1px solid #ccc; border-width: 1px 0 1px 0; padding: 20px 0; margin-top: 30px;}
.cata ul { margin: 0; padding: 0; list-style-type: none;}
.cata ul li { float: left; }
.cata ul li a {border: 1px solid #1d9e90; border-radius: 5px; margin-right: 10px; font-size: 14px; color: #666; float: left;padding: 5px 10px; }

.contactUs { float: left; width: 100%; margin: 100px 0;}
.cu { width: 1000px; margin:0 auto;}
.col2 fieldset { float: left; width: 47%; margin:10px 1.5%;}
.col2 fieldset input { float: left; width: 100%; margin-top: 5px; font-size: 16px; color: #333; outline: none; border: 1px solid #aaa; height: 50px; padding:0 15px;}
.col2 fieldset select { float: left; width: 100%; margin-top: 5px; font-size: 16px; color: #333; outline: none; border: 1px solid #aaa; height: 50px; padding:0 15px; background: none;}
.col2 fieldset textarea { float: left; width: 100%; margin-top: 5px; font-size: 16px; color: #333; outline: none; border: 1px solid #aaa; height: 150px; padding:10px 15px;}
.col2.col1 fieldset { width:97%;}
.col2.col1 fieldset .submitBtn { width: 200px; background: #1d9e90; border: none; color: #fff; font-size: 18px; text-transform: uppercase; margin: 0 auto; float: none; display: block;}
#customer_login .u-column1.col-1 { width: 100%;}
#customer_login h2 { text-align: center; margin-bottom: 20px; font-size: 36px;}
.woocommerce-cart table.shop_table th.product-quantity,
.woocommerce-cart table.shop_table td.product-quantity {
    display: none !important;
}
.woocommerce-cart table.shop_table th.product-thumbnail,
.woocommerce-cart table.shop_table td.product-thumbnail {
display: none !important;
}

.woocommerce-cart table.shop_table th.product-subtotal,
.woocommerce-cart table.shop_table td.product-subtotal {
display: none !important;
}

.registration-form-sell-buy form input[type="checkbox"] { width: 25px !important; height: 25px !important; float: left !important; margin-right: 10px !important;}
.registration-form-sell-buy form button[type="submit"] { width: 100%; background: #1d9e90; border: none; color: #fff; font-size: 18px; text-transform: uppercase; margin-top: 20px; height: 46px;}
#customer_login .u-column2.col-2 { width: 100%;}
.registration-form-sell-buy form label { margin-bottom: 7px;}
.table td .price select { font-size: 15px; background: none; border: 1px solid #444; height: 46px; padding: 0 10px; color: #fff;}

.custom-pagination ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.custom-pagination li {
    margin: 0 6px;
}

.custom-pagination a,
.custom-pagination span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
}

.custom-pagination .current {
    background: #000;
    color: #fff;
}

.custom-pagination { float: left; width: 100%; margin-top: 10px;}
.table .custom-pagination .current { background: #1d9e90; border: 1px solid #1d9e90;}
.table .custom-pagination a { color: #aaa; border: 1px solid #aaa;}
.table .custom-pagination a:hover { border: 1px solid #fff; color: #fff;}

sortable {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.sort-arrow {
    display: inline-block;
    width: 10px;
    height: 14px;
    margin-left: 6px;
    position: relative;
}

/* default faint arrows */
.sort-arrow::before,
.sort-arrow::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    opacity: 1;
}

/* faint UP */
.sort-arrow::before {
    border-bottom: 6px solid #111;
    top: 0;
}

/* faint DOWN */
.sort-arrow::after {
    border-top: 6px solid #111;
    bottom: 0;
}

/* ACTIVE UP */
.sort-arrow.asc::before {
    opacity: 1;
}

/* ACTIVE DOWN */
.sort-arrow.desc::after {
    opacity: 1;
}
.table td .price select option { color: #fff;}
.website-search { margin-top: 25px; float: right; width: 30%;}
.website-search input { width: 100%; height: 60px; border: 2px solid #23D3A5; background: none; color: #fff; padding: 0 50px 0 20px; background: url(../../images/search.png)97% center no-repeat; outline: none; }
.table { width: 100%; float: left;}

.traffic-filter { float: left; width: 10%; margin-top: 25px; margin-right: 20px;}
.traffic-filter select {float: left; width: 100%; height: 44px; border: none; border: 1px solid #23D3A5; background: none; padding: 0; color: #fff; padding: 0 7px; margin-top: 15px;}
.traffic-filter select option { color: #fff;}

.da-filter { float: left; width: 10%; margin-top: 25px; margin-right: 20px;}
.da-filter select {float: left; width: 100%; height: 44px; border: none; border: 1px solid #23D3A5; background: none; padding: 0; color: #fff; padding: 0 7px; margin-top: 15px;}
.da-filter select option { color: #fff;}

.dr-filter { float: left; width: 10%; margin-top: 25px; margin-right: 20px;}
.dr-filter select {float: left; width: 100%; height: 44px; border: none; border: 1px solid #23D3A5; background: none; padding: 0; color: #fff; padding: 0 7px; margin-top: 15px;}
.dr-filter select option { color: #fff;}

.category-filter { float: left; width: 15%; margin-top: 25px; margin-right: 20px;}
.category-filter select {float: left; width: 100%; height: 44px; border: none; border: 1px solid #23D3A5; background: none; padding: 0; color: #fff; padding: 0 7px; margin-top: 15px;}
.category-filter select option { color: #fff;}

.category-container {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.category-tag {
    background: #f1f1f1;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
}

.view-more {
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.more-categories {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    background: #1d9e90;
    border: 2px solid #1d9e90;
    padding: 6px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    white-space: nowrap;
}

.more-categories.show {
    display: block;
}

.view-more {
    background: #222;
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 12px;
    cursor: pointer;
    line-height: 1;
}

.view-more:hover {
    background: #000;
}

#custom_shipping_wrap {display: none !important;}
.category-container span { background: none;}
.more-categories.show span { border: 1px solid #fff; color: #fff;}
.table td .price .extra_content_price { margin-top: 10px; font-size: 13px;}
.woocommerce-message{display: none;}

.container.cout { padding: 100px 0;}
.container.cout table { border: 1px solid #1d9e90; width: 100%;}
.container.cout table td {border: 1px solid #aaa; padding: 15px;}
.container.cout table th {border: 1px solid #ccc; padding: 15px; background: #1d9e90; color: #fff;}
.container.cout table th.product-remove { width: 10%; text-align: center;}
.container.cout table td.product-remove { text-align: center;}
.container.cout table td.product-remove a { font-size: 20px; color:#1d9e90; font-weight: 700;}

.container.cout table th.product-price { width: 15%; text-align: center;}
.container.cout table td.product-price { text-align: center; font-weight: 600;}
.container.cout table td.product-name { font-size: 14px; color: #666;}
.container.cout table td.product-name a { color: #1d9e90;}
.container.cout table td.product-name .extra-content-block { margin-top: 15px;}
.container.cout table td.product-name .extra-content-block select { height: 30px; padding: 0 15px; margin-left: 10px; border: 1px solid #aaa; border-radius: 0; color: #666; outline: none;}
.container.cout table td.actions button { background: #1d9e90; border: none; color: #fff; padding: 10px 25px; font-size: 14px; float: right;}
.container.cout .cart-collaterals { float: right; width: 50%; margin-top: 30px;}
.container.cout .cart-collaterals th { background: none; color: #333;}
.wc-proceed-to-checkout a { width: 100%; padding: 15px; background: #1d9e90; color: #fff; font-size: 18px; font-weight: 700; text-align: center; float: left; margin-top: 15px;}
.container.cout .cart-collaterals h2 { text-transform: capitalize;}
form.checkout.woocommerce-checkout #customer_details .col-1 { width: 50%; float: left;} 

#customer_details { float: left; width: 48%; border: 1px solid #aaa; padding: 35px;}
#order_review { float: right; width: 48%; border: 1px solid #aaa; padding: 35px;}
#customer_details h3 { font-size: 30px; font-weight: 400; margin-bottom: 15px;}
#customer_details p label { font-size: 18px; color: #111; font-weight: 400; margin-bottom: 6px;}
#customer_details p span input { float: left; width: 100%; height: 50px; border: 1px solid #aaa; padding: 0 15px; font-size: 16px; font-weight: 300; outline: none;}
#customer_details p { margin: 10px 0; float: left; width: 100%;}
#customer_details .col-1 { width: 100% !important;}
#customer_details .col-2 { width: 100% !important; margin-top:35px; float: left; width: 100%;}
#customer_details .col-2 textarea { width: 100%; height: 150px; border: 1px solid #aaa; outline: none; padding: 10px 15px; font-weight: 300;}
#customer_details .col-2 label { width: 100%;}
.checkout.woocommerce-checkout h3#order_review_heading { float: right; width: 48%; font-size: 30px; font-weight: 400; margin-bottom: 15px;}

#payment { float: left; width: 100%; margin-top: 25px;}
#payment ul { margin: 0 0 15px 0; padding: 0; list-style-type: none; float: left; width: 100%; border: 1px solid #ccc;}
#payment ul li { float: left; width: 100%; background: #eee; padding: 15px 15px; border-bottom: 1px solid #ccc;}
#payment ul li.wc_payment_method.payment_method_ppcp-googlepay { background: #fff;}
#payment ul li.wc_payment_method.payment_method_ppcp-gateway {background: #fff;}
#payment ul li.wc_payment_method.payment_method_ew_wise {background: #fff; border-bottom: none;}
#payment button#place_order { background: #1d9e90; color: #fff; font-size: 18px; font-weight: 600; border: none; padding: 10px 35px;}

.woocommerce-order p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received { width: 100%; padding: 35px; font-size: 48px; font-weight: 400; color:#1d9e90; border: 1px solid #1d9e90; border-width: 1px 0 1px 0; text-align: center;}
.woocommerce-order ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details { margin: 0; padding: 0; list-style-type: none; border: 1px solid #ccc; width: 100%; float: left; margin-top: 25px; margin-bottom: 25px;}
.woocommerce-order ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li { padding: 20px 25px; border-right: 1px solid #ccc; float: left;}
.woocommerce-order ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li strong { width: 100%; float: left;}
.woocommerce-order section.woocommerce-order-details { float:left; width: 100%;}
section.woocommerce-customer-details { float: left; width: 100%; margin-top: 30px; border: 1px solid #aaa; padding: 35px;}
section.woocommerce-customer-details h2 { font-size: 24px;}
.container.cout.myacnt { padding: 0 0;}
.container.cout.myacnt .woocommerce-MyAccount-navigation { float: left; width: 20%;}
.container.cout.myacnt .woocommerce-MyAccount-content { float:right; width: 77%; border: 1px solid #aaa; padding: 35px;}
.container.cout.myacnt .woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style-type: none;}
.container.cout.myacnt .woocommerce-MyAccount-navigation ul li { float: left; width: 100%; margin: 0 0;  text-align: center;}
.container.cout.myacnt .woocommerce-MyAccount-navigation ul li a { color: #aaa; padding: 17px 0; width: 100%; float: left; text-align: center; font-size: 21px; font-weight: 300; border-bottom: 1px solid #eee;}
.container.cout.myacnt .woocommerce-MyAccount-navigation ul li.is-active a { background: #1d9e90; color: #fff; border-bottom: 1px solid #1d9e90; font-weight: 600;}
.woocommerce-MyAccount-content p { font-weight: 300; color: #666;}
.woocommerce-MyAccount-content p strong { font-weight: 700;}
.woocommerce-MyAccount-content p a { color: #1d9e90;}
.woocommerce-MyAccount-content table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table th a { color: #fff;}
.woocommerce-MyAccount-content table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table td a.view { padding: 5px 10px; color: #fff; background: #1d9e90; font-size: 15px;}
.woocommerce-MyAccount-content table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table td a.view:hover { background: #111;}
.u-columns.woocommerce-Addresses.col2-set.addresses address { font-size: 15px;}
.table .buy-post-btn { font-size: 14px; border: none;}

#hero a { display: inline-block; margin: 30px 10px 0; font-size: 20px; color: #fff; border: 2px solid #fff; padding: 10px 50px; border-radius: 500px;}
#hero a.ban-btn2 {border: 2px solid #94c958; color: #94c958;}
#hero a:hover { background: #fff; color: #333;}
#hero a.ban-btn2:hover { background: #94c958; color: #333;}

.screen-reader-response p { font-size: 52px; text-align: center; color: #2f80b7;}
.page-template-seller-registration .wpcf7-response-output { display: none;}
.table table tbody tr:nth-child(even) {background: #0c0c0c;}

.float_whtsapp_div { position: fixed; right: 10px; bottom: 10px; z-index: 999;}
.yay-currency-single-page-switcher { float: right;}
.yay-currency-single-page-switcher select { float: left; width: 100px;}

.inr { float: left; margin-right: 40px; margin-top: -4px;}
.inr span { font-size: 14px; font-weight: 600; color: #fff;}
.inr .dropdown-toggle::after { width: 10px; height: 7px; border: none; margin-left: 6; float: right; margin-top: 9px;}
.inr .dropdown-toggle { cursor: pointer;}
.inr .dropdown-menu { margin-top: 15px;}
.inr .dropdown-item { font-size: 14px; font-weight: 300; color: #333;}
.inr img { margin-right: 5px;}

.faq-answer p b { font-weight: 800 !important;}
.faq-answer ul li {ine-height: 1.6; color: #666; font-size: 18px; font-weight: 300; margin: 7px 0;}
.faq-answer p a { color: #317eb5;}
.faq-answer p a:hover { color: #15375b;}

/* ===== YayCurrency Dropdown Fix ===== */

/* ================================
   YAY CURRENCY – FULL FIXED CSS
   ================================ */

/* Main container */
#currencyDropdown {
    position: relative;
    z-index: 99999;
}

/* Wrapper */
.yay-currency-custom-select-wrapper {
    position: relative !important;
    width: 100px;
    z-index: 99999;
}

/* Trigger (visible select box) */
.yay-currency-custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px 6px 12px;
    border-radius: 0px;
    cursor: pointer;
    position: relative;
    z-index: 5; border-radius: 500px; background: none !important;
}

/* Selected option (flag + text) */
.yay-currency-custom-selected-option {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Currency text */
.yay-currency-selected-option {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

/* Arrow */
.yay-currency-custom-arrow {
    display: flex;
    align-items: center;
}

/* ================================
   CRITICAL PART – REAL <select>
   MUST stay clickable
   ================================ */
.yay-currency-switcher {
    position: absolute !important;
    inset: 0 !important;            /* cover full trigger */
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;          /* invisible but active */
    cursor: pointer !important;
    z-index: 10 !important;
    appearance: none;
    -webkit-appearance: none;
}

/* ================================
   DROPDOWN OPTIONS
   ================================ */
.yay-currency-custom-options {
    display: none;
}

.yay-currency-custom-options.open {
    display: block;
position: absolute;
    width: 135px;
    background: #111;
    top: 50px;
    padding: 0 15px;
    border: 1px solid #2f7db2;
}


/* Option row */
.yay-currency-custom-option-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    cursor: pointer;
    pointer-events: auto !important;
}

/* Hover */
.yay-currency-custom-option-row:hover {
    background: #f3f4f6;
}

/* Selected option */
.yay-currency-custom-option-row.selected {
    background: #eef2ff;
}

/* Flag size */
.yay-currency-flag {
    width: 18px;
    height: 18px;
    background-size: cover;
    border-radius: 50%;
}

/* Check icon alignment */
.yay-currency-selected-checked-icon {
    margin-left: auto;
}

/* ================================
   PREVENT PARENT CLIPPING
   ================================ */
#currencyDropdown,
#currencyDropdown * {
    overflow: visible !important;
}

span.yay-currency-selected-option {margin-left: 2px;}
.inr .yay-currency-custom-options.open li { background: none !important; font-size: 14px !important; margin: 0 !important; width: 100% !important; border-bottom: 1px solid #333;}
.inr .yay-currency-custom-options.open li:last-child { border: none;}
.inr .yay-currency-custom-arrow svg {stroke: #fff;}

/* ================================
   DARK BACKGROUND SUPPORT (OPTIONAL)
   Uncomment if header is dark
   ================================ */
/*
.yay-currency-custom-select__trigger {
    background: #0f172a;
    border-color: #334155;
}

.yay-currency-selected-option {
    color: #fff;
}

.yay-currency-custom-arrow svg {
    stroke: #fff;
*/

.contactUs #wpcf7-f1179-o1 .screen-reader-response ul{
    display: none;
}


#wpcf7-f1179-o1 .screen-reader-response { display: none;}
.contactUs .cu span.wpcf7-not-valid-tip { color: #f00; font-size: 14px; margin-top: 5px;}
.wpcf7-response-output {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 20px; padding: 15px 0; color: #f00;
}

.hrLeft .inr ul.yay-currency-custom-options { width: 140px !important; max-width: none !important; min-width: auto; background: #111; border: 1px solid #2f7db2; border-radius: 0 !important; padding: 5px 15px !important; margin-top: 10px !important;}
.hrLeft .inr ul.yay-currency-custom-options li {background: #111; border-bottom: 1px solid #333 !important; color: #999 !important; border-radius: 0 !important; padding: 11px 0 !important;}
.hrLeft .inr ul.yay-currency-custom-options li:last-child { border: none !important;}
.hrLeft .inr ul.yay-currency-custom-options li.selected.yay-currency-row-with-flag { color: #FFF !important;}

.hrLeft .inr .yay-currency-custom-select__trigger {height: 50px !important; padding: 8px 25px !important; border-radius: 100px !important; border: 2px solid #fff !important; }
.hrLeft .inr .yay-currency-custom-select__trigger:hover {border: 2px solid #fff !important;}

.cu p { font-size: 18px; font-weight: 300; color: #666; line-height: 32px;}
.cu ul li {font-size: 18px; font-weight: 300; color: #666; line-height: 32px;}
.cu h2 { font-size: 24px; font-weight: 700; color: #111; margin-top: 35px;}
.cu h3 { font-size: 20px; font-weight: 600; color: #333;}














@media (max-width:1900px) {
#hero {height:750px;}
.hrLeft ul li {font-size: 16px;}
.hrRight a {font-size: 16px;}
header {height: 93px;}
#hero h2 {font-size: 48px;}
#hero h1 {font-size: 110px;}
#hero h3 {font-size: 48px;}
#hero .carousel-container {top: 280px;}
.logos .owl-item .caseDiv { width: 84%; margin: 0 8%;}
.logos .owl-item .caseDiv img { max-width: 100%;}
.ww h3 {font-size: 48px;}
.ww h2 {font-size: 170px; line-height: 170px;}
.cd ul li span { font-size: 72px; line-height: 72px;}
.cd ul li p {font-size: 22px;}
.tables h2 {font-size: 48px;}
.table th {font-size: 15px;}
.website-details p {font-size: 13px;}
.category-container span.category-tag {margin: 2px 2px;}
.monthly-traffic {font-size: 14px;}
.dr span { font-size: 12px;}
.dr span em { padding: 5px 8px;}
.dr span b {padding: 5px 8px 5px 5px;}
.Language span {font-size: 14px;}
.table td .price select {font-size: 13px; padding: 0 6px;}
.buttons a {padding: 8px 10px; font-size: 13px;}
.blogs h2 {font-size: 48px;}
.bbBtm h6 {font-size: 14px;}
.bbBtm h5 {font-size: 18px;}
.bbBtm a {font-size: 16px; padding: 10px 25px;}
.faq h2 {font-size: 48px;}
.faq-question {font-size: 18px; padding: 20px 0;}
.footerMenu ul li a {font-size: 15px;}
#hero.registrtion-pag .carousel-container h1 {font-size: 80px;}
.container.cout.myacnt .woocommerce-MyAccount-navigation ul li a {font-size: 18px;}
.woocommerce-MyAccount-content p { font-size: 15px;}
.container.cout table th {font-size: 15px;}
.container.cout table td {font-size: 15px;}
.woocommerce-MyAccount-content table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table td a.view {font-size: 14px;}
.woocommerce-MyAccount-content p {font-size: 15px;}
.registration-form-sell-buy form button[type="submit"] { font-size: 16px;}
#customer_details h3 {font-size: 27px;}
#customer_details p label {font-size: 16px;}
#customer_details p span input {font-size: 15px;}
.checkout.woocommerce-checkout h3#order_review_heading {font-size: 27px;}
#payment button#place_order {font-size: 16px;}
.woocommerce-privacy-policy-text p { font-size: 15px;}
.wc-proceed-to-checkout a { font-size: 16px;}
#hero h1 { font-size: 120px;}
.woocommerce-order p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received { font-size: 36px;}
.woocommerce-order ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {font-size: 15px;}
address { font-size: 15px;}
.bds h2 {font-size: 36px;}
.dateandAdmin ul li {font-size: 14px;}
.bds p {font-size: 16px;}
.bds h3 { font-size: 30px;}
.bds h4 { font-size: 26px;}
.bds h5 { font-size: 20px;}
.bds h6 {font-size: 18px;}
.populer {padding: 20px 20px 20px;}
.populer h4 {font-size: 22px;}
.populer ul li .ppRight h5 {font-size: 15px;}
.populer ul li .ppRight h6 {font-size: 13px;}
.catagory ul li a {font-size: 15px;}
.bds ol li { font-size: 16px;}
.bds ul li { font-size: 16px;}
.bbBtm h5 a { font-size: 24px;}

}
@media (max-width:1366px) {
#hero { height: 650px;}
#hero .carousel-container {top: 230px;}
.owl-theme .owl-nav button.owl-prev {margin-left: -50px;}
.owl-theme .owl-nav button.owl-next {margin-right: -50px;}
.logos {margin: 90px 0;}
.ww { padding: 90px 0;}
.tables {padding: 80px 0;}
.blogs {margin: 70px 0 80px;}
.blogs .bS {margin-top: 20px;}
.faq {padding: 80px 0;}
footer {padding: 80px 0 30px;}
#hero.registrtion-pag .carousel-container h1 {font-size: 64px;}
.container.cout.myacnt .woocommerce-MyAccount-navigation ul li a {font-size: 17px;}
.woocommerce-MyAccount-content p { font-size: 15px;}
.table .buy-post-btn {padding: 8px 8px;}
.wc-proceed-to-checkout a { font-size: 15px;}
#hero h1 { font-size:105px;}
.woocommerce-order p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received { font-size: 32px;}
.woocommerce-order ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {font-size: 14px;}
address { font-size: 14px;}
.bbBtm h5 {font-size: 16px;}
.bbBtm h6 {font-size: 13px;}
.bbBtm a {font-size: 15px;}
#hero a { font-size: 18px;}

.bds h2 {font-size: 30px;}
.dateandAdmin ul li {font-size: 13px;}
.bds p {font-size: 15px;}
.bds h3 { font-size: 24px;}
.bds h4 { font-size: 20px;}
.bds h5 { font-size: 16px;}
.bds h6 {font-size: 16px;}

.populer h4 {font-size: 18px;}
.populer ul li .ppRight h5 {font-size: 14px;}
.populer ul li .ppRight h6 {font-size: 12px;}
.populer ul li .ppLeft { height: 69px;}
.catagory ul li a {font-size: 14px;}
.bds ol li { font-size: 15px;}
.bds ul li { font-size: 15px;}
.bbBtm h5 a { font-size: 20px;}

.inr {margin-top: -6px;}

.cu p { font-size: 16px; line-height: 30px;}
.cu ul li {font-size: 16px; font-weight: 300; color: #666; line-height: 32px;}
.cu h2 { font-size: 22px; font-weight: 700; color: #111; margin-top: 25px;}
.cu h3 { font-size: 18px; font-weight: 600; color: #333;}
}
@media (max-width:1200px) {}
@media (max-width:1100px) {}
@media (max-width:1024px) {}
@media (max-width:1023px) {}
@media (max-width:991px) {}
@media (max-width:960px) {}
@media (max-width:900px) {}
@media (max-width:850px) {}
@media (max-width:800px) {}
@media (max-width:768px) {}
@media (max-width:767px) {}
@media (max-width:700px) {}
@media (max-width:640px) {}
@media (max-width:600px) {}
@media (max-width:570px) {}
@media (max-width:520px) {}
@media (max-width:480px) {}
@media (max-width:420px) {}

.buy-post-btn{
    display: inline-block;
    background: #317fb6;
    color: #fff;
    padding: 8px 17px; font-weight: 600;
}
.buy-post-btn:hover { background: #8dc55c;}
