/*----------------------------------[Table of contents]----------------------------------
# newsletter-modal css
# home-slider css
# brand-logo css
# category-slider css
# newsletter-area css
# testimonial css
---------------------------------------------------------------------------------------*/

/************************************* newsletter-modal css start *************************************/
/*====================================
    newsletter-modal css
====================================*/
@media (min-width: 768px) {
    .newsletter-modal .modal-dialog {
        max-width: 750px;
    }
}
/************************************* newsletter-modal css end *************************************/

/************************************* home-slider css start *************************************/
/*====================================
    home-slider swiper css
====================================*/
.slider-content .home-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 100%;
}

/*====================================
    home-slider css
====================================*/
.slider-content .home-slider {
    margin-bottom: -50px;
}

/*====================================
    slider-content css
====================================*/
.slider-content .home-slider .slider-image h2 {
    line-height: 1.18;
}
@media (min-width: 1600px) {
    .slider-content .home-slider .slider-image .slider-subtitle {
        margin-bottom: 13px;
    }
    .slider-content .home-slider .slider-image h2 {
        font-size: 88px;
    }
    .slider-content .home-slider .slider-image a {
        margin-top: 39px;
    }
}

/*====================================
    slider-content transition css
====================================*/
.slider-content .home-slider.swiper .swiper-slide .slider-image .slider-subtitle,
.slider-content .home-slider.swiper .swiper-slide .slider-image h2,
.slider-content .home-slider.swiper .swiper-slide .slider-image a,
.slider-content .home-slider.swiper .swiper-slide .slider-image .slide-img {
    opacity: 0;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-subtitle,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image h2,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image a,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slide-img {
    opacity: 1;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-subtitle,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image h2,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image a {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slide-img {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-subtitle {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image h2 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image a {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
}

/*====================================
    slider-dot css
====================================*/
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination {
    width: unset;
    position: unset;
    margin: -5px 0px 0px -5px;
}
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination span.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: transparent;
    margin: 5px 0px 0px 5px;
    opacity: 1;
    border: 1px solid var(--secondary-font-color);
}
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination span.swiper-pagination-bullet:hover,
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--secondary-font-color);
    border-color: var(--secondary-font-color);
}
/************************************* home-slider css end *************************************/

/************************************* brand-logo css start *************************************/
/*====================================
    brand-logo swiper css
====================================*/
.brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 50%;
}
@media (min-width: 992px) {
    .brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}
@media (min-width: 1200px) {
    .brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 25%;
    }
}

/*====================================
    brand-content css
====================================*/
.brand-logo .brand-slider .brand-content {
    position: relative;
}
.brand-logo .brand-slider .brand-content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    height: 4px;
    background-color: var(--primary-font-color);
    transform: scaleX(0);
    z-index: 1;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.brand-logo .brand-slider .brand-content:hover::after {
    transform: scaleX(-1);
}
@media (min-width: 768px) {
    .brand-logo .brand-slider .brand-content span.brand-img img {
        width: 176px;
    }
}
@media (min-width: 1200px) {
    .brand-logo .brand-slider .brand-content span.brand-img img {
        -webkit-filter: opacity(0.3) grayscale(1);
        filter: opacity(0.3) grayscale(1);
        -webkit-transition: filter 0.3s ease-in-out;
        transition: filter 0.3s ease-in-out;
    }
    .brand-logo .brand-slider .brand-content:hover span.brand-img img {
        -webkit-filter: opacity(1) grayscale(0);
        filter: opacity(1) grayscale(0);
    }
}
/************************************* brand-logo css end *************************************/

/************************************* category-slider css start *************************************/
/*====================================
    category-slider swiper css
====================================*/
.category-slider .cat-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 100%;
}
@media (min-width: 768px) {
    .category-slider {
        overflow-x: hidden;
    }
    .category-slider .cat-slider {
        margin-right: calc(-100% - 30px);
    }
    .category-slider .cat-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 50%;
    }
}
@media (min-width: 992px) {
    .category-slider .cat-slider {
        margin-right: calc(-33.33% - 10px);
    }
}
@media (min-width: 1400px) {
    .category-slider .cat-slider {
        margin-right: calc(-50% - 15px);
    }
    .category-slider .cat-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}

/*====================================
    category cat-content css
====================================*/
.category-slider .cat-slider .cat-block .cat-content a.cat-btn {
    margin-bottom: -104px;
    --s: 158px;
    width: var(--s);
    aspect-ratio: 1;
    --g:/calc(var(--s)*0.2) calc(var(--s)*0.2) radial-gradient(50% 50%,#000 99%,#0000 101%) no-repeat;
    mask: calc(50% + var(--s)*0.372) calc(50% + var(--s)*0) var(--g),calc(50% + var(--s)*0.301) calc(50% + var(--s)*0.218) var(--g),calc(50% + var(--s)*0.115) calc(50% + var(--s)*0.353) var(--g),calc(50% + var(--s)*-0.115) calc(50% + var(--s)*0.353) var(--g),calc(50% + var(--s)*-0.301) calc(50% + var(--s)*0.218) var(--g),calc(50% + var(--s)*-0.372) calc(50% + var(--s)*0) var(--g),calc(50% + var(--s)*-0.301) calc(50% + var(--s)*-0.218) var(--g),calc(50% + var(--s)*-0.115) calc(50% + var(--s)*-0.353) var(--g),calc(50% + var(--s)*0.115) calc(50% + var(--s)*-0.353) var(--g),calc(50% + var(--s)*0.301) calc(50% + var(--s)*-0.218) var(--g),radial-gradient(calc(var(--s)*0.439),#000 99%,#0000 101%) subtract,calc(50% + var(--s)*0.492) calc(50% + var(--s)*0.16) var(--g),calc(50% + var(--s)*0.304) calc(50% + var(--s)*0.418) var(--g),calc(50% + var(--s)*0) calc(50% + var(--s)*0.517) var(--g),calc(50% + var(--s)*-0.304) calc(50% + var(--s)*0.418) var(--g),calc(50% + var(--s)*-0.492) calc(50% + var(--s)*0.16) var(--g),calc(50% + var(--s)*-0.492) calc(50% + var(--s)*-0.16) var(--g),calc(50% + var(--s)*-0.304) calc(50% + var(--s)*-0.418) var(--g),calc(50% + var(--s)*0) calc(50% + var(--s)*-0.517) var(--g),calc(50% + var(--s)*0.304) calc(50% + var(--s)*-0.418) var(--g),calc(50% + var(--s)*0.492) calc(50% + var(--s)*-0.16) var(--g);
}
/************************************* category-slider css end *************************************/

/************************************* newsletter-area css start *************************************/
/*====================================
    newsletter-title css
====================================*/
.newsletter-area .newsletter-block .newsletter-title .section-capture span.sub-title {
    color: var(--heading-font-color);
}

/*====================================
    newsletter-img css
====================================*/
.newsletter-area .newsletter-block .newsletter-img {
    margin-top: -20px;
    margin-bottom: -5px;
}
@media (min-width: 768px) {
    .newsletter-area .newsletter-block .newsletter-img {
        margin-top: -30px;
    }
}
@media (min-width: 992px) {
    .newsletter-area .newsletter-block .newsletter-img {
        margin-bottom: 0px;
    }
}

/*====================================
    newsletter-form css
====================================*/
@media (min-width: 768px) {
    .newsletter-area .newsletter-block .newsletter-form form.news-form .news-wrap input {
        border-radius: var(--border-radius2) 0px 0px var(--border-radius2);
    }
    .newsletter-area .newsletter-block .newsletter-form form.news-form .news-wrap button {
        border-radius: 0px var(--border-radius2) var(--border-radius2) 0px;
    }
}
/************************************* newsletter-area css end *************************************/

/************************************* testimonial css start *************************************/
/*====================================
    testimonial slider-swiper css
====================================*/
.testimonial .testi-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 100%;
}
@media (min-width: 768px) {
    .testimonial .testi-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 50%;
    }
}
@media (min-width: 1200px) {
    .testimonial .testi-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}
/************************************* testimonial css end *************************************/

/************************************* product-category-overview css start *************************************/
/*====================================
    product-category-overview css
====================================*/
.product-category-overview .section-capture p.section-desc {
    max-width: 720px;
}
.product-category-overview .product-category-shell {
    padding: 30px 20px;
    overflow: hidden;
}
.product-category-overview .product-category-shell::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(var(--body-bg), 0.9);
    opacity: 0.7;
}
.product-category-overview .product-category-shell::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    top: 122px;
    border-top: 1px solid rgba(var(--border-color), var(--border-opacity));
}
.product-category-overview .product-category-shell-head,
.product-category-overview .product-category-layout {
    position: relative;
    z-index: 1;
}
.product-category-overview .product-category-shell-desc {
    max-width: 430px;
    margin-left: auto;
}
.product-category-overview .product-category-featured {
    position: relative;
    padding: 34px 30px;
    background-color: var(--body-bg);
    border: 1px solid rgba(var(--border-color), var(--border-opacity));
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 30px;
    transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out, border-color 0.35s ease-in-out;
}
.product-category-overview .product-category-featured::before {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    height: 1px;
    background-color: rgba(var(--border-color), var(--border-opacity));
}
.product-category-overview .product-category-overline {
    display: inline-block;
    padding: 8px 16px;
    color: var(--heading-font-color);
    background-color: rgba(var(--extra-bg2), 1);
    border-radius: 30px;
    font-size: 12px;
    font-weight: var(--heading-font-weight);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.product-category-overview .product-category-mini-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-bottom: 28px;
}
.product-category-overview .product-category-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background-color: rgba(var(--extra-bg), 1);
    border: 1px solid rgba(var(--border-color), var(--border-opacity));
    border-radius: var(--border-radius);
}
.product-category-overview .product-category-mini-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    color: var(--secondary-font-color);
    background-color: var(--body-bg);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
}
.product-category-overview .product-category-mini-item span:last-child {
    color: var(--heading-font-color);
    font-size: 14px;
    font-weight: var(--heading-font-weight);
    line-height: 1.4;
}
.product-category-overview .product-category-card {
    position: relative;
    height: 100%;
    padding: 28px 24px 26px;
    background-color: var(--body-bg);
    border: 1px solid rgba(var(--border-color), var(--border-opacity));
    border-radius: var(--border-radius);
    transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out, border-color 0.35s ease-in-out;
        margin-top: 23px;
}
.product-category-overview .product-category-card::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 3px;
    background-color: var(--primary-font-color);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease-in-out;
}
.product-category-overview .product-category-featured:hover,
.product-category-overview .product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(var(--box-shadow-outer), 0.08);
    border-color: rgba(var(--heading-font-color), 0.16);
}
.product-category-overview .product-category-card:hover::before {
    transform: scaleX(1);
}
.product-category-overview .product-category-card-offset {
    margin-top: 28px;
}
.product-category-overview .product-category-card-accent {
    background-color: rgba(var(--extra-bg2), 1);
}
.product-category-overview .product-category-number {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--primary-font-color);
    font-size: 13px;
    font-weight: var(--heading-font-weight);
    letter-spacing: 0.14em;
}
.product-category-overview .product-category-card .product-category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--secondary-font-color);
    background-color: rgba(var(--extra-bg), 1);
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
}
.product-category-overview .product-category-featured .product-category-icon {
    width: 76px;
    height: 76px;
    font-size: 30px;
}
.product-category-overview .product-category-card h4 {
    line-height: 1.35;
}
.product-category-overview .product-category-card p:last-child,
.product-category-overview .product-category-featured p:last-child {
    margin-bottom: 0px;
}
@media (min-width: 1200px) {
    .product-category-overview .product-category-shell {
        padding: 55px;
    }
    .product-category-overview .product-category-shell::after {
        left: 55px;
        right: 55px;
        top: 162px;
    }
}
@media (max-width: 767px) {
    .product-category-overview .product-category-shell::after {
        display: none;
    }
    .product-category-overview .product-category-mini-list {
        grid-template-columns: 1fr;
    }
    .product-category-overview .product-category-featured,
    .product-category-overview .product-category-card {
        padding: 24px 20px;
    }
    .product-category-overview .product-category-card-offset {
        margin-top: 0px;
    }
}
/************************************* product-category-overview css end *************************************/

/************************************* sticky-contact css start *************************************/
.sticky-contact-actions {
    position: fixed;
    left: 15px;
    bottom: 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sticky-contact-btn {
    min-width: 148px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: var(--extra-font-color);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(var(--box-shadow-outer), 0.16);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.sticky-contact-btn i {
    font-size: 18px;
    line-height: 1;
}
.sticky-contact-btn span {
    font-size: 13px;
    font-weight: var(--heading-font-weight);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.sticky-contact-btn:hover {
    color: var(--extra-font-color);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(var(--box-shadow-outer), 0.2);
}
.sticky-contact-call {
    background-color: #0178b6;
}
.sticky-contact-whatsapp {
    background-color: #25d366;
}
@media (max-width: 767px) {
    .sticky-contact-actions {
        left: 12px;
        bottom: 18px;
        gap: 10px;
    }
    .sticky-contact-btn {
        min-width: 48px;
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .sticky-contact-btn span {
        display: none;
    }
}
/************************************* sticky-contact css end *************************************/
