.navbar-brand img {
    max-height: 5rem;
}
.main-nav-container.fixed-pinned .navbar-brand img {
    max-height: 70px;
}

#mainnav,
#mainnav i:before,
#mainnav b {
    color: var(--color-primary) !important;
}
.s-user-menu-login-btn svg {
    fill: var(--color-primary);
}

.s-block:nth-of-type(1) {
    margin-top: 0 !important;
}

.s-block--fixed-banner .container {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100% !important;
}

/* Categories */

.s-block--banners .grid {
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
}
.s-block--banners .lazy__bg {
    background-size: contain;
    background-repeat: no-repeat;
}
.s-block--banners .banner-entry {
    height: 240px;
}
@media (max-width: 992px) {
    .s-block--banners .banner-entry {
        height: 200px;
    }
}
@media (max-width: 480px) {
    .s-block--banners .banner-entry {
        height: 120px;
    }
  .s-block--banners .grid {
    grid-template-columns: repeat(3,1fr);
}
}
@media (min-width: 640px) {
    .two-row .banner-entry:first-child {
        grid-row: span 1 / span 1;
    }
}

/* Transparent Banner */
.banner-entry,
.banner--fixed img {
    background-color: transparent !important;
}

/* Products */

.s-product-card-entry {
    border: 1px solid var(--color-primary);
    background-color: transparent !important;
    border-radius: 0.5rem !important;
}
.s-product-card-image {
    background-color: transparent !important;
}
.s-product-card-entry:hover img {
    scale: 1.2;
}
.s-product-card-entry img {
    transition: all 0.3s;
}
.slider-bannars-moving h2,
.s-product-card-content-title {
    text-align: center !important;
}
.s-product-card-content-sub {
    justify-content: center;
}
.s-product-card-content-title a {
    color: #000 !important;
}
body:not(body.product-single)
    .s-button-element:not(.s-product-card-wishlist-btn) {
    background: var(--color-primary);
    color: #fff !important;
    border-radius: 0.5rem;
}
.s-product-card-vertical .s-product-card-wishlist-btn button:hover {
    background-color: var(--color-primary) !important;
}
.s-product-card-vertical
    .s-product-card-wishlist-btn
    button:hover
    .sicon-heart {
    color: #fff !important;
}
@media (max-width: 600px) {
    .s-products-slider-card {
        width: 55%;
    }
}

/* Features */

.s-block--features__item .feature-icon,
.s-block--features__item {
    background-color: var(--feat-bg);
}

.s-block--features__item .feature-icon i,
.s-block--features__item h2{
    color: var(--color-primary) !important;
}

.s-block--features__item h2{
  font-size: 1.5rem
}

.s-block--features__item p {
   display: none !important;
}

.s-block--features__item .feature-icon i {
    font-size: 2.875rem;
}

/* Footer */

footer *{
  color:var(--color-primary) !Important;
}

.store-footer,
.store-footer__inner {
    background-color: var(--footer-bg) !important;
}

@media (min-width: 1024px) {
    footer .grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

footer a.flex.items-center.m-0 h3{
  font-size: 0
}

footer a.flex.items-center.m-0 h3:after{
  content:url(https://i.ibb.co/NdSTqhmm/2x-1.png)
}



/* Special Heading */
.carousel-slider .s-slider-block__title-nav {
    display: none;
}

.s-slider-block__title h2:where([dir=rtl],[dir=rtl] *),
.s-block__title .right-side:where([dir=rtl],[dir=rtl] *) {
    padding-left: 0;
}

.s-block__title,
.s-slider-block__title {
    justify-content: center;
}

.s-slider-block__title h2,
.s-block__title h2 {
    font-size: 48px !important;
    position: relative;
    color: var(--color-primary) !important;
    margin-bottom:2rem;
}
.s-slider-block__title h2:before,
.s-block__title h2:before {
    content: url(https://i.ibb.co/vxHzNSbb/Group-1000009936.png);
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    bottom: -32px;
    z-index: -1;
}
@media (max-width: 1024px) {
    
}

/* Hover Effect */

.banner-entry > div {
    background-repeat: no-repeat;
    display: inline-block;
    transition: 0.3s;
}

.banner-entry > div:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0) 100%
    );
}

.banner-entry > div:hover:after {
    opacity: 1;
    left: 130%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
}

.banner-entry > div:active:after {
    opacity: 0;
}

.banner-entry > div:not(:hover) {
    transform: scale(1);
}