body {
font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  color: #3a3a3a;
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: #3a3a3a;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: #008552;
  text-decoration: none;
  outline: none;
}
div#menu-icon {
    display: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #008552;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: #FFF;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button, .input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
  background-color: #E4E7ED;
  color: #008552;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #E4E7ED;
  height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label, .input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #E4E7ED;
  background: #FFF;
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #FFF;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #FFF;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
  background-color: #008552;
  border-color: #008552;
}

.input-radio input[type="radio"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption, .input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption, .input-checkbox input[type="checkbox"]:checked~.caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
}

.section-title .title {
  display: inline-block;
  text-transform: uppercase;
  margin: 0px;
}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #8D99AE;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #008552;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #008552;
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #008552;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #008653;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: #FFF;
}

.header-links li a:hover {
  color: #008552;
}

.header-links li i {
  color: #fff;
  margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color:#fff;
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;width: 140px;
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
  padding: 15px 0px;
}

.header-search form {
  position: relative;
}

.header-search form .input-select {
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.header-search form .input {
  width: calc(100% - 260px);
  margin-right: -4px;
}

.header-search form .search-btn {
  height: 40px;
  width: 100px;
  background: #008552;
  color: #FFF;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 25px 0px;
}

.header-ctn>div {
  display: inline-block;
}

.header-ctn>div+div {
  margin-left: 15px;
}

.header-ctn>div>a {
  display: block;
  position: relative;
  width: 90px;
  text-align: center;
  color: #444;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 18px;
}

.header-ctn>div>a>span {
  font-size: 12px;
}

.header-ctn>div>a>.qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #FFF;
  background-color: #008552;
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-dropdown {
  position: absolute;
  width: 300px;
  background: #FFF;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
  box-shadow: 0px 0px 0px 2px #E4E7ED;
  z-index: 99;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.dropdown.open>.cart-dropdown {
  opacity: 1;
  visibility: visible;
}

.cart-dropdown .cart-list {
  max-height: 180px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: #2B2D42;
}

.cart-dropdown .cart-btns {
  margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns>a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: #008552;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child {
  margin-right: -4px;
  background-color: #1e1f29;
}

.cart-dropdown .cart-btns>a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
  border-top: 1px solid #E4E7ED;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
  background: #FFF;
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li {
  margin-left: 30px
}

.main-nav>li>a {
  padding: 33px 0px;
}

.main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
  color: #008552;
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #008552;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #15161D;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: #FFF;
  }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: #008552;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: #008552;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
  position: relative;
  background-color: #E4E7ED;
  z-index: -1;
}

.shop .shop-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h3 {
  color: #FFF;
}

.shop .shop-body .cta-btn {
  color: #FFF;
  text-transform: uppercase;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
  padding: 60px 0px;
  margin: 30px 0px;
  background-color: #E4E7ED;
  background-image: url('../img/hotdeal.png');
  background-position: center;
  background-repeat: no-repeat;
}

.hot-deal {
  text-align: center;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #D10024e6;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
  color: #FFF;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #FFF;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #008552;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #008552;
}

.product .product-img {
  position: relative;
}

.product .product-img>img {
  width: 100%;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color: #008552;
  color: #008552;
}

.product .product-img .product-label>span.new {
  background-color: #008552;
  border-color: #008552;
  color: #FFF;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
}

.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: #8D99AE;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 14px;
}

.product .product-body .product-name>a {
  font-weight: 700;
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #008552;
}

.product .product-body .product-price {
  color: #008552;
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #FFF;
  color: #E4E7ED;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color: #ef233c;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #008552;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #FFF;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 15px;
  background: #1e1f29;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}

.product:hover .add-to-cart {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ef233c;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #008552;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #008552;
  border-color: #008552;
  padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
}

.product-widget+.product-widget {
  margin: 30px 0px;
}

.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}

.product-widget .product-img>img {
  width: 100%;
}

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8D99AE;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
}

.product-widget .product-body .product-name>a {
  font-weight: 700;
}

.product-widget .product-body .product-name>a:hover, .product-widget .product-body .product-name>a:focus {
  color: #008552;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: #008552;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #1e1f29;
  border: none;
  color: #FFF;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
  margin-top: 30px;
}

.aside>.aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
  color: #8D99AE;
}

/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #008552;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #008552;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before, .noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #E4E7ED;
  color: #008552;
}

.store-grid li.active {
  background-color: #008552;
  border-color: #008552;
  color: #FFF;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}

.store-pagination li:hover {
  background-color: #E4E7ED;
  color: #008552;
}

.store-pagination li.active {
  background-color: #008552;
  border-color: #008552;
  color: #FFF;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #FFF;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
  border-color: #008552;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: uppercase;
  font-size: 18px;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating>i {
  color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
  color: #008552;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #008552;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #008552;
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ef233c;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #008552;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #008552;
  border-color: #008552;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #E4E7ED;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #FFF;
  padding: 0px 15px;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8D99AE;
}

#product-tab .tab-nav li.active a {
  color: #008552;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #008552;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars, .rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars>i, .rating .rating-stars>i {
  color: #E4E7ED;
}

.rating-avg .rating-stars>i.fa-star, .rating .rating-stars>i.fa-star {
  color: #008552;
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #E4E7ED;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress>div {
  background-color: #008552;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
}

.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}

.reviews .review-heading .date {
  color: #8D99AE;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
  color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
  color: #008552;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #E4E7ED;
  color: #008552;
}

.reviews-pagination li.active {
  background-color: #008552;
  border-color: #008552;
  color: #FFF;
  cursor: default;
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars>label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars>label:before {
  content: "\f006";
  font-family: FontAwesome;
  color: #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before, .review-form .input-rating .stars>label:hover~label:before {
  color: #008552;
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: #008552;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 24px;
  color: #008552;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}


/*=========================================================
	11 -> FOOTER
===========================================================*/
.footer p{color:#fff;font-size: 15px;}

#footer {
  background: #000;
  color: #B9BABC;
}

#bottom-footer {
     background: #000;
    padding: 15px;
	padding-bottom:0;
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}

.footer-links li+li {
  margin-top: 12px;
}

.footer-links li a {
  color: #fff;    font-weight: 500;
}

.footer-links li i {
  margin-right: 15px;
  color: #fff;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: #ec3137;
}

.copyright {
  font-size: 14px;color:#fff; text-transform:uppercase;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #15161D;
  font-size: 36px;
  display: block;
}
.socialmedia {
    border-top: 1px solid #ffffff52;
    padding-top: 30px;
}
/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: #ec3237;
  border-color:#ec3237;
}

.slick-prev:before, .slick-next:before {
  font-family: FontAwesome;
  color: #2B2D42;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  color: #FFF;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #E4E7ED;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #008552;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

.callusbtn{background-color:#ec3237; padding:8px 15px !important; border: 2px solid #ec3237; transition:0.4s ease all; color:#fff !important;margin-top: 5px;}
.topbanner ul li {list-style: none!important;}
.banercontent ul {padding-left: 0px;margin-left: 0px;}
.topbanner .seodubai-first-form {padding: 0px 0px;}
a.callusbtn:hover { border: 2px solid #ec3237; background-color: transparent; color: #ec3237 !important;}
.header-links li a:hover{COLOR:#FFF;}
.bannerbutton a {color: #fff!important;}
.optimizationpoint ul {list-style: none;padding-left: 0px;margin-left: 0px;}
.navbar-toggle .icon-bar{background-color:#fff;}
.footer p {line-height: 22px;}
ul.footer-links {list-style: none;padding-left: 0px;margin-left: 0px;}
.navbar-nav>li>a{color: #292929 ;     padding: 10px 10px; font-size: 15px;}
.navbar-default{background-color:transparent; border:none; margin:0; margin-top: 15px;}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{background-color:transparent;}
.navbar-default .navbar-nav>li>a .fa-mobile{font-size: 21px; position: relative; top: 2px;}
.topbanner{background-color:#032b46; text-align: center; padding-top: 20px; padding-bottom: 100px; background-image:url('../img/bannerimage.jpg'); background-repeat:no-repeat;background-size:cover; position:relative;}
.topbanner:before{content:''; background-color:#000; opacity:0.8; position:absolute; top:0; left:0; width:100%; height:100%;}
.topbanner img{margin-bottom: 70px; margin-top: 80px;}
.topbanner h1{color:#fff; font-weight:600; margin-bottom:20px; text-align:left;     line-height: 56px; text-transform: uppercase; font-size:40px;}
.topbanner h1 span{color:#ec3237;}
.topbanner p{color:#fff; font-size:16px; line-height:28px;  margin:auto; text-align:left;}
.topbanner h4{color:#fff; font-size:29px; line-height:33px; text-align:left; margin: 16px 0;}
.topbanner ul li{color:#fff; font-size:16px; line-height:32px; text-align:left; position:relative; padding-left:20px;}
.topbanner ul li:before{content:"\f135"; font-family:FontAwesome; position:absolute; left:0; font-size: 13px; color: #ec3137;}
.banercontent{margin-top:60px;}
.bannerbutton{text-align:left; margin-top:30px;}
.bannerbutton a{border:2px solid #ec3237; padding:12px 25px; color:#fff; margin-right:6px; font-size:15px; text-transform: uppercase; font-weight:600; transition: 0.4s all ease;}
.bannerbutton a:hover{background-color:#ec3237;}
.digitalmarketing{margin-top: 60px;}
.digitalmarketing h1{text-align:center; max-width:700px; margin:auto; font-weight:600;margin-bottom:30px; font-size:32px; line-height: 42px;}
p{font-size:16px;}
.digitalmarketing p{line-height:30px;}
.content {padding-top: 50px;}
.digitalimage{text-align:center; }
.expertcall{background-color:#ec3237; padding:40px 0; margin-top:60px;}
.callbutton a{background-color:#000; padding:10px 30px; color:#fff; font-size:17px; font-weight:600;}
.callbutton{width:100%; margin-top:20px; text-align: center;}
.expertcall h2{color:#fff; font-size:32px;font-weight:600; margin-bottom:20px;}
.expertcall p{color:#fff; font-size: 20px;}
.carousel-control.left,.carousel-control.right  {background:none;width:25px;}
.carousel-control.left {left:-25px;}
.carousel-control.right {right:-25px;}
.broun-block {
    background: url("http://myinstantcms.ru/images/bg-broun1.jpg") repeat scroll center top rgba(0, 0, 0, 0);
    padding-bottom: 34px;
}
.block-text { background-color: #f3f5f7;border-radius: 5px;  color: #626262; font-size: 14px; margin-top: 27px; padding: 15px 18px;}
.block-text a {
    color: #ec3237;
    font-size: 16px;
    line-height: 21px;
    text-decoration: none;
}
.mark {
    padding: 12px 0;background:none;
}
.block-text p {
    color: #585858;
    line-height: 30px;
}

.sprite-i-triangle {
    background-position: 0 -1298px;
    height: 44px;
    width: 50px;
}
.block-text ins {
    bottom: -44px;
    left: 50%;
    margin-left: -60px;
}


.block {
    display: block;
}
.zmin {
    z-index: 1;
}
.ab {
    position: absolute;
}

.person-text {
    padding: 10px 0 0;
    text-align: center;
    z-index: 2;
}
.person-text a {
    color: #ffcc00;
    display: block;
    font-size: 14px;
    margin-top: 3px;
    text-decoration: underline;
}
.person-text i {
    color: #fff;
    font-family: Georgia;
    font-size: 13px;
}
.rel {
    position: relative;
}
p.clientoccupation {font-size: 14px; font-style: italic;}
.testimonial{margin:50px 0;}
.testimonial h2{text-align:center;}
.expertcall2{background-color:#f0f0f0; padding:50px 0; margin:50px 0 0;}
.callbutton2 a {
    background-color: #ec3237;
    padding: 10px 30px;
    color: #fff;
    font-size: 26px;
    font-weight: 600;text-transform:uppercase;
}
.storytelling{background-color:#131313; padding:60px 0; text-align:center;}
.storytelling h2{font-size:32px; color:#fff; margin-bottom: 30px;}
.storytelling p{font-size:16px; color:#fff; line-height:30px;}
.enquirybtn{background-color:#131313; color:#fff; padding:10px 15px; border-radius:2px;}
.servicescontent p{margin-bottom:20px;}
.servicescontent{padding:60px 0; }
.servicescontent h2{margin-bottom:50px; text-align:center;}
.servicesleftcontent{margin-bottom:30px;  margin-top: 40px;}
.contactform{padding:70px 0;}
.contact-us{max-width:750px; margin:auto; margin-top:45px; background-color: #ec3137c2; padding: 30px;}
.contactform input, .contactform textarea{border:1px solid #ddd; box-shadow:none;}
.contactform h2{text-align:center; margin-bottom: 15px;  font-size: 34px; line-height: 39px; text-transform:uppercase;}
.contactform p{text-align:center;}
.contactform input{height:40px;}
.submitbutton{background-color:#131313; color:#fff; border:none; padding:10px 18px; font-weight: 600; text-transform:uppercase; border-radius:2px;}
.partner{padding:50px;}
.sucscribebutton{background-color:#ec3137; color:#fff; font-weight: 700; text-transform:uppercase; border-radius:2px; border:none; padding:8px 20px; font-size:15px;}
.footer .form-control{border:1px solid #fff; background-color:transparent; color:#fff;}
.socialmedia ul {text-align: center;}
.socialmedia li {display: inline-block; margin:5px; font-size: 25px; background-color: #fff; width: 45px; height: 45px; border-radius:2px;     transition: 0.4s ease all;}
.topbanner img{width:100%;}
.content h3{font-size: 32px; line-height: 40px; font-weight: 600; margin-bottom: 30px;}
.socialmedia li a {line-height: 43px; color: #000000;}
.contactdetailfooter .fa {position: absolute; left: 18px; margin-top: 3px;}
.contactdetailfooter li {padding-left: 27px;}
.footerlinks li {padding-left: 27px;}
.footerlinks li .fa{position: absolute; left: 58px; margin-top: 3px;}
.footer.footerlinks {margin-left: 40px;}
.footer form {padding-right: 30px;}

.clientslogo .slick-prev{position:absolute; top:50%; font-size:0; display:none ! important;}
.clientslogo .slick-next{position:absolute; top:50%; font-size:0; display:none ! important;}

.clientslogo .slick-prev:before{font-size:25px;}
.clientslogo .slick-next:before{font-size:25px;}
.clientslogo {padding:30px; }
.clientslogolist{position: relative; float: left;
    margin: 20px 5px;}
.clientslogolist:hover { animation-play-state: paused;}
.seocontent {background-color: #ecedf1; padding: 70px 0;}
.SEOExperts .contact-us {max-width: 750px; margin: auto; background-color: #ec3137; padding: 30px; border-top-left-radius: 50px; border-bottom-right-radius: 50px;}
.SEOExperts{margin:60px 0;}
.wehelpsection{background-image:url('../img/backgroundimg2.jpg'); background-size:cover; background-repeat:no-repeat; padding:70px 0; position:relative;}
.wehelpsection .col-md-6:nth-child(1) {padding-right: 30px;}
.wehelpsection .col-md-6:nth-child(2) {padding-left: 30px;}

.wehelpsection:before{position:absolute; content:''; background-color:#000; top:0; left:0; width:100%; height:100%; opacity:0.6;}
.optimizationpoint {background-color: #ffffff21; display: inline-block; padding: 30px;}
.optimizationpoint h5{color:#fff; font-size:17px; background-color: #ec3137; padding: 10px; margin-bottom: 20px; font-weight: 600; border-top-right-radius: 15px; text-transform: uppercase; width: fit-content; padding-right: 60px;}
.optimizationpoint ul li{color:#fff; margin-bottom:15px; float: left; width: 48%;  font-size: 17px; padding-left: 22px;position: relative;margin-right: 2%; line-height: 22px;}
.wehelpsection h1{color: #fff; margin-bottom: 40px; font-size: 34px; line-height: 39px; text-align: center;}
.wehelpsection h1 span{color: #ec3237; }
.organizationimg{text-align:center; margin-top:40px;}
.ourprocess{margin:60px 0;}

#accordion a:not(.collapsed) .fa {-webkit-transform: rotate(0deg) !important; transform: rotate(0deg) !important;}
#accordion a i.fa.fa-angle-up { float: right;     transform: rotate(180deg); transition: 0.4s all ease;}

@keyframes mymove {
  from {left: 0px;}
  to {left: 200px;}
}
.whychosesection{background-image:url('../img/countsectionbg.jpg'); position:relative; background-size:cover; background-repeat:-no-repeat; padding:60px 0;}
.whychosesection:before{position:absolute; content:''; background-color:#000; top:0; left:0; width:100%; height:100%; opacity:0.9;}
.whychosesection h1{text-align:center; margin-bottom: 30px; font-size: 34px; line-height: 39px; color: #fff; position: relative;}
.count h3 span {display: block; color: #ec3237; font-size: 42px; margin: 20px;}
.count h3 {text-align:center; color: #fff; font-size: 22px;}
.count{text-align:center;background-color: #ffffff17; padding: 25px; border: 1px solid #fff; border-style: dashed;} 
.reportslider .slick-prev:before {
    font-size: 20px;
    line-height: 15px;
}
.slick-prev:before {
    content: "\f104";
}
.slick-prev:before, .slick-next:before {
    font-family: FontAwesome;
    color: #2B2D42;
}
.reportslider .slick-prev {
    position: absolute;
    top: 30%;
    font-size: 0;
    left: -50px;
}
.reportslider .slick-next {
    position: absolute;
    top: 30%;
    font-size: 0;
}
.reportslider .slick-next:before {
    font-size: 20px;
    line-height: 15px;
}
.testoimonial{background-color: #ecedf1; padding: 70px 0; text-align:center;     box-shadow: 0 0 11px #0000008c;}
.testoimonial h1{text-align:center; margin-bottom: 30px; font-size: 34px; line-height: 39px; position: relative; text-transform:uppercase;}
.footerform{background-color:#ec3234;}
.contact-us h2 {color: #fff; font-size: 22px; margin-bottom: 20px;}
.clients h2 {padding-top: 30px; color: #ec3137;    text-shadow: 0px 3px 10px #000000a6;}
.seocontent h1 {margin-bottom: 30px;  font-size: 34px; line-height: 39px; text-transform:uppercase;} 
.SEOExperts h1{margin-bottom: 30px; font-size: 34px; line-height: 39px; text-transform:uppercase;}
.ourprocess h1{margin-bottom: 15px; font-size: 34px; line-height: 39px; text-transform:uppercase;     text-align: center;}
.ourprocess h5 {margin-bottom: 25px; font-size: 19px;font-weight: 500;     text-align: center;}
.ourprocess .panel-default>.panel-heading{padding:15px;}
.ourprocess .panel-group .panel{border-radius:0;}
.whychosesection h1{margin-bottom: 30px; font-size: 34px; line-height: 39px; text-transform:uppercase;}
.socialmedia li:hover {transform: rotate(45deg);     background-color: #ec3137}
.socialmedia li:hover a{color:#fff;}
.ourprocess .panel-default>.panel-heading a:hover, a:focus { color: #ec3237;}
.ourprocess .panel-default>.panel-heading a { font-size:15px;}
.optimizationpoint ul li:before {content: "\f00c";font-family: FontAwesome;  color: #ffffff; margin-right: 8px; position: absolute; left: 0; font-size: 14px}
.reportcontent p { margin-bottom: 20px; line-height: 30px;}
.panel-default:nth-child( odd ) .panel-heading{background-color:#ec3237;}
.panel-default:nth-child(even) .panel-heading{background-color:#fff;}

.panel-default:nth-child( odd ) .panel-heading h4 a{color:#fff;}
.panel-default:nth-child( odd ) .panel-heading h4 a:hover{color:#fff;}
#myModal button.close {background-color: #ec3237; opacity: 1; width: 35px; height: 35px; text-shadow: none; color: #fff; border-radius: 50%; position: absolute;    top: -10px; right: -10px;}
#myModal .modal-header h4 {text-align: center;color: #ec3237;font-weight: 600;font-size: 18px;}
.SEOExperts p {line-height: 28px;}
#myModal2 button.close {background-color: #ec3237; opacity: 1; width: 35px; height: 35px; text-shadow: none; color: #fff; border-radius: 50%; position: absolute;    top: -10px; right: -10px;}
.digitalimage img { width: 100%;}
.SEOExperts form h2{color: #fff;  font-size: 22px; margin-bottom: 20px; text-align:center;}
#accordion a:not(.collapsed) .panel-heading{background-color:#ec3237;}
.footerclientlogo ul{}
.footerclientlogo ul li{display:inline-block; width:16%; text-align: center;}
.footerclientlogo {background-color: #fff; padding: 30px; box-shadow: 0px -2px 9px #0000002b;}
#myModal2 h4.modal-title {
    text-align: center;
    text-transform: uppercase;
    color: #ec3237;
}
.seodubai-first-form span {
    color: #fff!important;
}
.footerform span {
    color: #fff!important;
}
div#wpcf7-f4863-o4 span {
    color: #f00!important;
}
div#wpcf7-f4863-o4 .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
    color: #f00!important;
}
.footerclientlogo h1{text-align:center; margin-bottom: 40px; text-transform: uppercase; font-size: 34px; line-height: 39px;}

.seodubai-first-form textarea {
    width: 100%!important;
    border-radius: 4px!important;
    height: 105px!important;
	padding: 6px 10px!important;}
.seodubai-first-form .wpcf7-submit {
    background-color: #131313;
    color: #fff;
    border: none;
    padding: 10px 50px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
}
.footerform {
   overflow: hidden;
    margin-bottom: 70px;
}
.footerform textarea#message {
    width: 100%;
    height: 100px;
    border-radius: 4px;
    padding: 4px 11px;
}
form.newsletter label {
    display: none;
}
form.newsletter input {
    width: 100%;
    background: transparent;
    margin-bottom: 10px;
    padding: 0px 10px;
    border-radius: 4px;
    height: 35px;
}
.footer input.tnp-email {
    color: #fff !important;
}
.footer input.tnp-name {
    color: #fff !important;
}
.footerform span {
    color: #fff;
}
.mobile-logo {
    display: none;
}
ul#menu-bar > li > a {
    color: #777;
	padding: 10px 10px;
    font-size: 15px;
}
form.newsletter input.tnp-button {
    background-color: #ec3137 !important;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    border: none;
    padding: 8px 20px;
    font-size: 15px;
    width: 134px!important;
    margin-top: 3px;
}

.footerform .wpcf7-submit {
    background-color: #131313;
    color: #fff;
    border: none;
    padding: 10px 50px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
}
.screen-reader-response {
    display: none!important;
}
.seodubai-first-form span {
    color: #fff;
}
.seodubai-first-form .wpcf7-response-output.wpcf7-validation-errors {
    color: #fff!important;

}
.footerform .wpcf7-response-output.wpcf7-validation-errors {
    color: #fff!important;
}
#header .navbar {border: none;}
#header nav.navbar.navbar-default {float: right;}
a.callusbtn {margin-left: 4px;}
#header ul.nav.navbar-nav li a {font-weight: 400 !important;}
#header nav.navbar.navbar-default {margin-bottom: 10px !important;}
#myModal .modal-dialog {width: 420px;margin: 30px auto;}
#myModal .modal-content {border-radius: 8px;}
#myModal .modal-header {background-color: #ffffff !important;border-radius: 8px;}
#myModal2 .modal-dialog {width: 420px;margin: 30px auto;}
#myModal2 .modal-content {border-radius: 8px;}
#myModal2 .modal-header {background-color: #ffffff !important;border-radius: 8px;}
div#wpcf7-f4868-o5 span {color: #f00!important;}
div#wpcf7-f4868-o5 .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {color: #f00!important;}
.expertcall .callbutton a {color: #fff;}
body.customize-support {padding-right: 0px !important;}
#header nav.navbar.navbar-default {background: transparent!important;}
body { padding-right: 0px !important;}
#header .navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color: #333 !important;
    background-color: transparent;
}
ul#menu-bar {
    /* text-align: right; */
    padding-left: 121px;
    padding-top: 13px;
}
/*=========================================================
	13 -> RESPONSIVE
===========================================================*/


@media only screen and (min-width: 1200px) {
	.container {width: 1270px;}
	.clientslogo img {
    width: 150px !important;
    height: 81px !important;
    object-fit: cover;
}
.optimizationpoint{height:362px;}
}

@media only screen and (max-width: 991px) {
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-logo {
 /*    float: none; */
    text-align: center;
  }
  .header-logo .logo {
    display: inline-block;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .dailysaladimg img{width:100%;}
}
@media screen and (min-width: 768px){
.navbar-nav{text-align:right; float:none;}
.navbar-nav>li{    display: inline-block; float:none;}
.modal-dialog {width: 420px;}
	div#header .navbar-default {
    background: transparent;
    border: 1px solid transparent;
}
}
@media screen and (max-width: 768px){
	.footerclientlogo{padding:30px 15px;}
	.footerclientlogo ul li{width:49%; padding: 5px;}
	.count {margin-bottom: 15px;}
	.wehelpsection .col-md-6:nth-child(1) { padding-right: 15px;}
	.wehelpsection .col-md-6:nth-child(2) { padding-left: 15px;}
	.optimizationpoint ul li{width:100%; margin:0;}
	.banercontent { margin-top: 20px;}
	.topbanner{padding-bottom:20px;}
	.bannerbutton a{display: block; margin-bottom: 10px;}
	.digitalimage img{width:100%;}
 .topbanner img{width:100%;}
	.header-logo img {
    padding-top: 17px;
}
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
	.header-logo img {
    padding-top: 17px;
}
  .section-tab-nav li {
    margin-top: 10px;
  }
  .carousel-caption h3{font-size:20px;line-height:27px;}
 
  .topbanner h1{line-height:35px; font-size:30px;}
	
	div#header .navbar-default {
    background: transparent;
    border: 1px solid transparent;
}
}

@media only screen and (max-width: 480px) {
	.footerclientlogo ul li img{width:100%;}
 .header-logo .logo img{width:100%;}

	div#header .navbar-default {
    background: transparent;
    border: 1px solid transparent;
}
	.header-logo img {
    padding-top: 17px;
}
#myModal2 .modal-dialog {
       width: 297px;
    margin-top: 17px;
}	
	.clientslogolist.slick-slide.slick-cloned img{
		padding-left:10px;
	}
	div#menu-icon {
    display: block;
}
	.header-logo a.logo img {
    display: none;
}
	.mobile-logo {
    display: block;
}
	div#menu-icon {
    position: absolute;
    top: -61px;
    right: 35px;
    font-size: 20px;
}
	ul#menu-bar {
    display: none;
}
	div#menu-icon {
    color: #808080b8;
		    padding: 0px 11px;
}
	ul#menu-bar {
    border-top: 1px solid gray;
		
}
	ul#menu-bar {
    /* text-align: right; */
    padding-left: 0px;
    padding-top: 0px;
}
	ul#menu-bar>li>a .fa-mobile {
    font-size: 25px;
    position: relative;
    top: 2px;
}
}

@media only screen and (min-width: 1200px){
.container {
    width: 1270px!important;
}
}