/*========================================
         HOME-STANDARD PAGE STYLE
=========================================*/

.banner-part {
  padding: 25px 0px 60px;
}

.banner-category {
  border-radius: 5px;
  background: var(--white);
}

.banner-category-head {
  padding: 12px 0px;
  border-radius: 5px;
  letter-spacing: 0.3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary);
}

.banner-category-head i {
  font-size: 16px;
  margin-right: 10px;
}

.banner-category-list {
  padding: 0px 20px 20px;
}

.banner-category-item {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.banner-category-item:hover .banner-category-dropdown {
  opacity: 1;
  visibility: visible;
}

.banner-category-item:last-child {
  border-bottom: none;
}

.banner-category-item a {
  width: 100%;
  font-size: 15px;
  color: var(--text);
  padding: 10px 10px;
  text-transform: capitalize;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.banner-category-item a:hover {
  border-radius: 5px;
  color: var(--primary);
  background: var(--chalk);
}

.banner-category-item a::before {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "\f054";
  font-size: 10px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner-category-item a i {
  font-size: 20px;
  margin-right: 15px;
  display: inline-block;
}

.banner-category-dropdown {
  position: absolute;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  top: 0px;
  left: 235px;
  z-index: 1;
  padding: 20px;
  border-radius: 5px;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  -webkit-box-shadow: 15px 15px 25px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 15px 15px 25px 0px rgba(0, 0, 0, 0.08);
}

.banner-category-dropdown h5 {
  padding-bottom: 15px;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border);
}

.banner-sub-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.banner-sub-category ul {
  margin-right: 20px;
}

.banner-sub-category ul:last-child {
  margin-right: 0px;
}

.banner-sub-category ul li {
  border-bottom: 1px solid var(--border);
}

.banner-sub-category ul li:last-child {
  border-bottom: none;
}

.banner-sub-category ul li a {
  width: 180px;
  white-space: nowrap;
}

.banner-sub-category ul li a::before {
  display: none;
}

.home-grid-slider {
  margin-bottom: 25px;
}

.home-grid-slider img {
  width: 100%;
  border-radius: 8px;
}

.banner-wrap {
  border-radius: 5px;
  padding: 42px 60px;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.banner-wrap::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  z-index: -1;
  border-radius: 5px;
  background: url(../images/banner-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg1 {
  background: #c8ffca;
}

.bg2 {
  background: #c8e6ff;
}

.bg3 {
  background: #fbffc8;
}

.banner-content h2 {
  font-size: 38px;
  margin-bottom: 40px;
}

.banner-image img {
  width: 100%;
}

.banner-promo a img {
  width: 100%;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .banner-category {
    display: none;
  }
}

@media (max-width: 575px) {
  .banner-wrap {
    padding: 30px 30px;
  }
  .banner-content {
    margin-bottom: 15px;
  }
  .banner-content h2 {
    font-size: 34px;
    line-height: 44px;
  }
}

@media (max-width: 767px) {
  .banner-promo {
    margin-bottom: 25px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .banner-content {
    margin-bottom: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .banner-content h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-category-list {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 430px;
  }
  .banner-category-dropdown {
    left: 195px;
  }
}

