/**
* Template Name: HeroBiz - v2.4.0
* Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/**
* Check out variables.css for easy customization of colors, typography, and other repetitive properties
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
    --color-white:#fff;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  background:#007bc7;
  z-index: 997;
}
.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}
.dropdown-toggle::after{border-top-color: #fff;}
.dropdown .dropdown-toggle img{
    height: 22px;
    vertical-align: bottom;
    margin-right: 2px;
}
  .dropdown .dropdown-menu li a.dropdown-item{text-transform: capitalize;}
  .dropdown .dropdown-menu img{width: 40px;
    height: 20px;
    vertical-align: bottom;margin-right:5px;}
  .dropdown .dropdown-toggle  {
    background: transparent;
    color: #fff;
    border:0;
}
.search{min-width: 65%;}
.search .input-group .input-group-text{background-color: #fff;border:0px;}
.search .input-group input{background-color: #fff;border:0px;height: 50px;}
.search .input-group .input-group-text.search-btn{
  background-color: #f9b600;
  color:#fff;
  font-weight: 500;
    cursor: pointer;

}
.search img{
  width:15px;
  height:15px;
}
@media screen and (max-width: 1024px) {
  .search {
    min-width: 60%;
    margin-right: 5px;
}
}
@media screen and (max-width: 768px) {
  .search{min-width: 94%;
    position: absolute;
    top: 10%;}
    .header {
      padding: 15px 0;
      background: #007bc7;
      z-index: 997;
      height: 150px;
    }
}
@media (min-width: 576px) and (max-width: 768px){
  .container, .container-sm {
      max-width: 570px;
  }
  .search {
    min-width: inherit;
    width: 550px;;
    position: absolute;
    top: 10%;
}
}
.logo {
    font-size: 46px;
    color: #fff;
    font-weight: bold;
}
.logo span {
    font-size: 20px;
    color: #f9b600;
}
.header .logo img {
    max-height: 45px;
    margin-top: 10px;
    margin-right: 10px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 600;
  color: #f9b600;
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}

@media (max-width: 1279px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--color-secondary-dark-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-secondary-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {

}
#hero-animated{
  padding: 0px 0 20px;
  width: 100%;
  min-height: 275px;
  background: url("../img/banner.png") right  no-repeat;
  background-size: cover;
  position: relative;
}

  .hero-animated .caption {
    max-width: 50%;
    text-align: center;
    padding: 30px 0px;
}
  .hero-animated h2 {
    margin: 0 0 10px 0;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

.main-btn {
  background-color: #f9b600;
  color:#fff;
  border-radius:5px;
  padding:5px 30px;
  margin-top:15px;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;

}
.main-btn:hover {
  background-color: #fff;
  border:1px solid #000;
  color:#000;
  border-radius:5px;
  padding:5px 30px;
  margin-top:15px;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;

}
@media (max-width: 768px) {
  .hero-animated {
    width: 100%;
    min-height: inherit;
    background: url("../img/mobilebanner.png") right  no-repeat;
    background-size: contain;
    position: relative;
  }
}
.hero-animated p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-animated .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 45%;
  }
}

@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}

@media (max-width: 640px) {
  .hero-animated h2 {
    font-size: 32px;
  }

  .hero-animated p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-animated .btn-get-started,
  .hero-animated .btn-watch-video {
    font-size: 14px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


section.explore-categories {
  position: relative;
  overflow: visible;
}
section.explore-categories nav{

  margin: -85px auto 0;
  width: 60%;
  background: #fff;
  padding: 25px 25px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 9px -3px rgb(0 0 0 / 28%);
  -moz-box-shadow: 0px 5px 9px -3px rgb(0 0 0 / 28%);
  box-shadow: 0px 5px 9px -3px rgb(0 0 0 / 28%);
}
section.explore-categories nav .nav-tabs .nav-link.nav-link:last-child{
  margin-right: 0;
}
  section.explore-categories nav .nav-tabs .nav-link{
  color: #505050;
  border:1px solid #f9b600;
  border-radius: 5px;
  font-weight: 700;
  margin-right: 15px;
    padding: 5px;
    margin-bottom: 10px;
}
section.explore-categories nav .nav-tabs .nav-link.active{
  color: #000;
  border:1px solid #f9b600;
  background-color:#f9b600;
  border-radius: 5px;
}
section.explore-categories nav .nav-tabs .nav-link:hover{
  color: #fff;
  border:1px solid #f9b600;
  background-color:#f9b600;
  border-radius: 5px;
}
  section.explore-categories nav .nav-tabs{
  border: 0px
}
  section.explore-categories nav h2 a{
  font-weight: 400;
  color: #f9b600;
  font-size: 16px;
}
  section.explore-categories nav h2{
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 768px) {
  section.explore-categories nav{
    width: 100%;
  }
}
.tab-inner h2{
  color: #000;
  font-size: 22px;
  font-weight: bold;
}
.tab-inner p{
  color: #505050;
  font-size: 18px;
  font-weight: 500;
}
  .tab-inner {
  padding: 70px 0px 0px;
}
.brand-item .brand-image p{
    color: white;
    font-size: 48px;
    margin-top: -15px;

}
  .brand-item .brand-image{
  width: 170px;
  height: 170px;
  border: 1px solid #f9b600;
  text-align: center;
  padding: 38% 0;
}
.brand-item a:hover h3.brand-name{
  color:#f9b600;
}
  .brand-item h3.brand-name{
    font-size: 18px;
    color: #000000;
  text-align: center;
  margin: 10px 0px;
}
  .brand-item{
  padding: 0px 15px;
  margin: 0 auto;
}
.brand-discount{
    position: absolute;
    right: 15px;
    background: #f9b600;
    width: 45px;
    height: 45px;
    text-align: center;
    padding-top: 10px;
    font-weight: 500;
    color: #fff;

}
.cta img{width: 100%;}
.discounted-products{
  padding:0px 0px 60px 0px;
}
.discounted-products h2{
  color: #000;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}
.item-inner{
    border: 1px solid rgb(96, 0, 123,0.2);
    box-shadow: 0px 2px 1px 1px rgba(0, 0, 0, 0);
    border-radius: 3px;
    transition-duration: 0.3s;
    cursor: pointer;
    padding: 5px;
    position: relative;
    text-align: center;
    margin-top: 20px;
}
.item .item-inner .prd {
    position: relative;
    background: #fff;
    text-align: center;
}
.ico-label {
    left: auto;
    background-color: red;
    border-radius: 0;
    line-height: 20px;
    padding: 0px 5px;
    color: white;
    top: -5px;
    right: -5px;
    text-transform: uppercase;
    position: absolute;
    z-index: 100;
}
.item .item-inner .item-img {
    position: relative;
    margin-bottom: 10px;
    z-index: 0;
}
.item .item-inner .item-img .product-image {
    border: 1px solid #eaeaea;
    display: block;
    overflow: hidden;
    text-align: center;
}
.item .item-inner .item-img .product-image .img-main {
    position: relative;
    display: block;
    margin: 0 auto;
    min-height: 162px;
}
.products-grid .img-main img {
    object-fit: contain;
    height: 162px;
}
.item .item-inner .item-info {
    padding: 0 2px;
    padding-bottom: 15px;
    min-height: 85px;
}
.item .item-inner .info-inner {
    position: relative;
    min-height: 120px;
}
.products-grid .item .item-inner .item-info .item-title {
    font-size: 14px;
    font-weight: 500;
    min-height: 60px;
}
.item .item-inner .item-info .item-title {
    padding: 0;
    position: relative;
    font-size: 18px;
    margin-bottom: 3px;
    overflow: hidden;
}
.products-grid .item .item-inner .item-info .item-price > * {
    display: inline-block;
    vertical-align: middle;
}
.products-grid .item .item-inner .item-info .item-price .price1 {
    font-size: 16px;
    color: #222;
    font-weight: 700;
    margin-right: 3px;
}

.discount-text {
    text-decoration: line-through;
    font-size: 14px;
    color: #8f7475;
}
.products-grid .item .item-inner .action-bot {
    text-align: center;
    z-index: 2;
    width: 100%;
}
.products-grid .item .item-inner .action-bot .actions {
    display: table;
    width: 100%;
}
.products-grid .merchant {
    font-size: 13px;
    display: block;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    margin-top: 10px;
    height: 25px;
}
.item-title a {
    color: #007bc7;
}
.products-grid .item .item-inner .action-bot .wrap-addtocart .btn-cart {
    border: 0;
    background-color: #f9b600;
    display: block;
    font-family: inherit;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    font-size: 116.667%;
    line-height: 21px;
    padding: 0 !important;
    text-align: center;
    vertical-align: middle;
}
.products-grid .item .item-inner .action-bot .wrap-addtocart .btn-cart span {
    color: #fff;
    padding: 0;
    height: 35px;
    line-height: 38px;
    font-size: 14px;
    text-transform: uppercase;
}
.category-name{
    background-color: #f9b600;
    padding: 5px;
}
@media (max-width: 1025px) {
  .product-item .product-link{display:block;}
.product-item{
  -webkit-box-shadow: 0px 5px 9px -3px rgb(0 0 0 / 28%);
  -moz-box-shadow: 0px 5px 9px -3px rgb(0 0 0 / 28%);
  box-shadow: 0px 5px 9px -3px rgb(0 0 0 / 28%);
  margin: 0 auto;
  border-radius: 5px;
  border: 1px solid #fff;
  border-bottom-color: #f9b600;
}
}
@media (min-width:768px) and (max-width: 991px){
  .col-sm-6 {
      flex: 0 0 auto;
      width: 50%;
  }
}
.category-item .category-img img{
  width: 60%;
}
.category-item h3.category-name {
  font-size: 18px;
  text-align: center;
}
.category-item:hover{border: #f9b600 1px solid;}
/*.category-item:hover .category-img{background: #fff;}*/

  .category-item .category-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  text-align: center;
  padding: 40px 0;
  margin-bottom: 15px;
}
  .category-item{
  -webkit-box-shadow: 0px 5px 9px -3px rgb(0 0 0 / 28%);
  -moz-box-shadow: 0px 5px 9px -3px rgb(0 0 0 / 28%);
  box-shadow: 0px 5px 9px -3px rgb(0 0 0 / 28%);
  padding:10px 20px;
  border-radius: 5px;
  margin: 0 auto;
  background-color: #007bc7;
}
section#contact {
  background: #fca7a7;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .map {
  margin-bottom: 40px;
}

.contact .map iframe {
  border: 0;
  width: 100%;
  height: 400px;
}

.contact .info p {
  color: var(--color-secondary-light);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .php-email-form {
  width: 100%;

}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .social-icons{padding: 25px 0px;}
.contact .social-icons a{margin-right: 10px;}
.contact .social-icons a.custom img{  width: 16px;}
  .contact .social-icons a.custom{
  border: 1px solid #111;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border:1px solid #f9b600;
  border-radius: 15px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 120px;
}

.contact .php-email-form button[type=submit] {
  background: #007bc7;
  border: 0;
  padding: 8px 50px;
  color: #fff;
  transition: 0.4s;
  border-radius: 10px;
  width: 100%;
  font-weight: 600;
  font-size: 20px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #fff;
  border:1px solid #000;
  color: #000;
}
.contact .info-item+.info-item {
  padding-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-secondary-light);
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.contact .info {
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  overflow: hidden;
}
.contact .info img {
  width: 30px;
  display: inline-block;
}
.contact form {
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  overflow: hidden;
  background-color: #fff;
  border-radius: 5px;
}
.contact .info h3 {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 45px;
}

.contact form h3 {
  font-weight: 600;
  font-size: 30px;
}

#slider-div {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
}
div#slider-outer-div{position: relative;}
#slider-div>div {
  margin: 8px 0;
}

.slider-label {
  position: absolute;
  color: #000;
  padding: 4px;
  font-size: 0.75rem;
  top: -20px !important;
  font-weight: 700;
}
.slider-selection{background: #f9b600;}
.slider-handle.max-slider-handle.round,
.slider-handle.min-slider-handle.round{background: #f9b600;}

.filterbar{
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  margin-bottom: 15px;
}
.filter-search .input-group input{
  border: 0;
  border-top-left-radius: 15px;
}
  .filter-search .input-group .input-group-text button.filtersearch-btn{
    border: 0;
    background: transparent;
  }
    .filter-search .input-group .input-group-text{
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #f9b600;
    border: 1px solid #f9b600;
    border-radius: 0;
    border-top-right-radius: 15px;
  }
    .filter-search .input-group{
  border: 1px solid #f9b600;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.filterbar .filter-main {
  padding: 20px;
}
.filterbar .filter-main h2.filter-heading {
  font-size: 20px;
  font-weight: 800;
}
.filterbar .filter-main a.filter-more{
  font-size: 20px;
  font-weight: 800;
}
.filterbar [type="radio"]:checked,.filterbar [type="radio"]:not(:checked) {
  position: absolute;
  z-index: 999;
  width: 18px;
  height: 18px;
  opacity: 0;

}
.filterbar [type="radio"]:checked + label, .filterbar [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #000;
}
.filterbar [type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #f9b600;
  border-radius: 100%;
  background: #f9b600;
}
.filterbar [type="radio"]:not(:checked) + label:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #dfdfdf;
  border-radius: 100%;
  background: #fff;
}
.mobile-filter {
  border: 1px solid #f9b600;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.filterbar [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.filterbar [type="radio"]:checked + label:after {
  content: "\f00c";
  width: 12px;
  height: 12px;
  color: #000;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 2px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.list .product-item{width:100%}
.list .product-item .product-image {
  padding: 20px 20px 0px;
  width: 255px;
  display: inline-block;
}
.list .product-item  .product-details{display: inline-block;}
.pagination {
  width: 100%;
  display: block;
  padding:10px;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
}

ul.pagination-nav {
  list-style-type: none;
  display: block;
  margin-bottom: 0;
  padding: 0;
}
ul.pagination-nav li {  display:inline-block;}
  ul.pagination-nav li a{

  margin-right: 15px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 2px 8px;
}
ul.pagination-nav li a.active{
  background-color: #f9b600;
}
ul.pagination-nav li a:hover{
  background-color: #f9b600;
}
ul.pagination-nav li a.pagination-prev:hover,
ul.pagination-nav li a.pagination-next:hover{
  background-color: #f9b600;
}
ul.pagination-nav li a.pagination-prev,
ul.pagination-nav li a.pagination-next
{
  background:#dcdcdc;
  padding:2px 8px;
  border-radius: 10px;
}
.text-justify{
    text-align: justify;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
  background-color: #007bc7;
}
.footer ul{
    padding-left: 10px;
}
.footer .footer-content {
  background: var(--color-secondary);
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #f9b600;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #f9b600;
  position: relative;
  margin-bottom: 5px;
  margin-top: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 25%;
}
@media (max-width:768px) {
  .footer .footer-content .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 0;
  }
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  text-align: left;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #f9f9f9;
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

.footer .footer-legal {
  padding: 20px 0;
  border-top: 1px solid #f9b600;
  text-align: center;
}

.footer .footer-legal .copyright {

  color: #fff
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}
#page-header {
  width: 100%;
  min-height: 275px;
  background: url(../img/pageheader.png) no-repeat;
  background-size: cover;
  position: relative;
}
.page-header{

}
.page-header .caption {
  text-align: center;
  padding: 30px 0px;
}
.page-header h2 {
  margin: 0 0 10px 0;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}
.productlist-header {
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  height: 40px;
  padding: 0 10px;
}
.productlist-header .sort a.active{
  color:#f9b600;
  border-bottom: 2px solid #f9b600;
}
  .productlist-header .sort  a{
  display: inline-block;
  padding: 10px;
  font-weight: 700;
}
.productlist-header .sort  a:hover{
  color:#f9b600;
  border-bottom: 2px solid #f9b600;
}
.productlist-header a.listicon,
  .productlist-header a.gridicon {
  padding: 2px 6px;
  margin-top: 10px;
  display: inline-block;
  border: 1px solid #f9b600;
  color: #f9b600;
}
.productlist-header a.listicon.active,
  .productlist-header a.gridicon.active{
    background-color:#f9b600;
  color: #fff;
  }
  .productlist-header a.listicon:hover,
  .productlist-header a.gridicon:hover{
    background-color:#f9b600;
  color: #fff;
  }

  @media (max-width: 1024px) {
    #page-header{background-color: #f7995f;    background-size: contain;}
    .page-header .caption{max-width: 100%;    margin-top: 25%;}
  }
  @media (max-width: 767px) {
    .page-header .caption{max-width: 100%;margin-top:0 ;}
    #page-header{background-color: #f7995f;    background-size: cover;padding:0;}

    }
.anchor-link{
    color: #007bc7;

}
.anchor-link:hover{
    color: #f9b600;
}
