@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}
/*------ global css start -----*/
:root{
    --bg-gradient:linear-gradient(to right, #b61c1c, #c53939);
    --white:#ffffff;
    --yellow:#f29120;
    --red:#e82b2b;
    --grey:#f5f5f5;
    --blue:#143250;
    --dark-grey:#333333;
    --shadow:rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

h1{
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    line-height: normal;
    margin: 0;
    padding: 0;
}
@media (min-width:768px) {
    h1{
        font-size: 40px;
    }   
}
h2{
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
    line-height: normal;
    margin: 0;
    padding: 0;
}
@media (min-width:768px) {
    h2{
        font-size: 34px;
    }   
}
p{
    font-size: 16px;
    line-height: normal;
    font-weight: normal;
    font-style: normal;
    color: var(--dark-grey);
}
.button{
    background: var(--bg-gradient);
    padding: 14px 32px;
    font-size: 14px;
    text-transform:uppercase;
    color: var(--white);
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    line-height: normal;
    letter-spacing: .5px;
    display: inline-block;
}
.button:hover{
    color: var(--white);
    background: var(--blue);
}
ul li{
    font-size: 16px;
    line-height: 28px;
    font-weight: normal;
    font-style: normal;
    color: var(--dark-grey);
    list-style-position: inside;
}
/*------ global css end --------*/
/*----- top-nav style start ------*/
.top-nav{
    background: var(--bg-gradient);
}
/*------ top-nav style end ------*/

/*---- nav style start -----*/
.categories_menu {
    position: relative;
}

.categories_menu .categories_menu_inner {
    position: absolute;
    border-left: 0;
    border-right: 0;
    display: none;
}

.categories_menu .categories_title h2 {
    padding: 12px 14px 12px;
}

.categories_menu .categories_title h2 i.arrow-down {
    float: right;
    margin-right: 15px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin-top: 4px;
}

/* 04. categories area css here */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu {
        position: relative;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu {
        margin-bottom: 45px;
        position: relative;
    }
}

.categories_title {
    background: var(--blue);
    cursor: pointer;
    border-radius: 10px;
}

.categories_title h2 {
    font-size: 15px;
    font-weight: 600;
    /* line-height: 26px; */
    color: #ffffff;
    cursor: pointer;
    /* padding: 12px 0 12px 22px; */
    margin-bottom: 0px;
    /* display: block; */
}

.categories_title h2 i {
    font-size: 14px;
    margin-right: 10px;
}

.categories_menu_inner {
    padding: 7px 0 7px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background: #fff;
    width: 250px;
    top: 100%;
    z-index: 9;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_inner {
        display: none;
        position: absolute;
        width: 100%;
        top: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_inner {
        display: none;
        position: absolute;
        width: 100%;
        top: 100%;
    }
}

.categories_menu_inner > ul > li {
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #333;
}
.categories_menu_inner > ul > li > ul.categories_mega_menu ul li a {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.categories_menu_inner > ul > li {
    line-height: 42px;
    padding: 0 10px;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-bottom: 1px solid var(--red);
}

.categories_menu_inner > ul > li:hover {
    padding-left: 20px;
}

.categories_menu_inner > ul > li > ul.categories_mega_menu ul li a:hover {
    padding-left: 10px;
}

.categories_menu_inner > ul > li a {
    color: #333;
    text-decoration: none;
}

.categories_menu_inner > ul > li img {
    width: 18px;
    margin-right: 10px;
}

.categories_menu_inner > ul > li.dropdown_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.categories_menu_inner > ul > li.dropdown_list .link-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.categories_menu_inner > ul > li.dropdown_list .link-area > a {
    width: auto;
    height: auto;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
}

.categories_menu_inner > ul > li > a i {
    padding-right: 10px;
}

.categories_menu_inner > ul > li > ul.categories_mega_menu {
    position: absolute;
    left: 110%;
    width: 480px;
    padding: 16px 15px 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 9;
    background: #fff;
    -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 767px) {
    .categories_menu_inner > ul > li > ul.categories_mega_menu {
        left: 0;
        width: 100%;
        top: 100%;
        max-height: 250px;
        overflow: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_inner > ul > li > ul.categories_mega_menu {
        left: 0;
        top: 100%;
        max-height: 250px;
        overflow: auto;
    }
}

.categories_menu_inner > ul > li > ul.categories_mega_menu > li {
    width: 50%;
    float: left;
    padding: 0px 5px 20px 5px;
}

@media only screen and (max-width: 767px) {
    .categories_menu_inner > ul > li > ul.categories_mega_menu > li {
        width: 100%;
    }
}

.categories_menu_inner > ul > li > ul.categories_mega_menu > li > a {
    display: block;
    line-height: 30px;
    padding: 6px 8px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
}

.categories_menu_inner > ul > li > ul.categories_mega_menu > li > a:hover {
    color: #7ecc13;
}

.categories_menu_inner > ul > li ul.categories_mega_menu.column_1 {
    width: 200px;
    padding: 0;

}

.categories_menu_inner > ul > li ul.categories_mega_menu.column_1 li {
    width: 100%;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid var(--red);
}

.categories_menu_inner > ul > li ul.categories_mega_menu.column_1 li:last-child a {
    border-bottom: 0;
}

.categories_menu_inner ul li ul.categories_mega_menu.open {
    opacity: 1;
    visibility: visible;
    left: 100%;
}

@media only screen and (max-width: 767px) {
    .categories_menu_inner ul li ul.categories_mega_menu.open {
        left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_inner ul li ul.categories_mega_menu.open {
        left: 0;
    }
}

.categorie_sub_menu ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #646464;
    text-transform: capitalize;
    line-height: 28px;
    display: block;
}

.categorie_sub_menu ul li a:hover {
    color: #ff5500;
}

/*home two categorie css here*/
@media only screen and (max-width: 767px) {
    .categories_menu {
        margin-bottom: 26px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_inner {
        z-index: 99;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_inner {
        z-index: 99;
    }
}
@media (min-width:992px) {
    nav .nav-item{
        padding: 0 8px;
    }
}
nav .nav-item .nav-link{
    font-weight: 600;
    color: var(--dark-grey);
}
.navFixed{
    position: fixed;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 99;
    top: 0;
    border-bottom: 1px solid var(--grey);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
/*---- nav style end ----*/

/*------- banner style start --------*/
.slidebanner .swiper-slide{
    min-height: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.slidebanner .swiper-slide .slide-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}
@media (min-width:768px) {
    .slidebanner .swiper-slide .slide-content{
        width: 70%;
    }
}
.slidebanner .swiper-slide .slide-content span{
    font-size: 14px;
    font-weight:bold;
    font-style: normal;
    line-height: normal;
}

/* Base styles for the slide content */
.slide-content {
    opacity: 1;
    transition: opacity 2s ease;
}

/* Fade animations */
.fade-left {
    transform: translateX(-300px);
    opacity: 0;
    transition: transform 2s ease, opacity 2s ease;
}

.fade-right {
    transform: translateX(300px);
    opacity: 0;
    transition: transform 2s ease, opacity 2s ease;
}

.fade-top {
    transform: translateY(-300px);
    opacity: 0;
    transition: transform 2s ease, opacity 2s ease;
}

/* Active state styles */
.swiper-slide-active .fade-left,
.swiper-slide-active .fade-right,
.swiper-slide-active .fade-top {
    opacity: 1;
    transform: translateY(0);
}

/* Specific styles for fade-left and fade-right */
.swiper-slide-active .fade-left {
    transform: translateX(0);
}

.swiper-slide-active .fade-right {
    transform: translateX(0);
}

.swiper-slide-active .fade-top {
    transform: translateY(0);
}

  .slidebanner .swiper-pagination-bullet{
    width: 24px!important;
    border-radius: 10px!important;
    height: 5px!important;
    background: var(--white)!important;
    opacity: 1!important;
}
.slidebanner .swiper-pagination-bullet-active{
    background: var(--yellow)!important;
}
/*------- banner style end -------*/

/*------ category-module start ------*/
.category-module .item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--grey);
    border-radius: 15px;
    padding: 10px;
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 700;
}
.category-module .item:hover{
    border: 1px solid var(--red);
}
/*------ category-module end -------*/

/*------- section-two ---------*/
.section-two .item img{
    border-radius: 15px;
}
/*------- section-two --------*/

/*------ section-three sec start -------*/
.section-three .row{
    background: var(--grey);
    border-radius: 15px;
}
@media (max-width:768px) {
    .section-three .row{
        margin: 0;
    }   
}
.section-three ul li{
    list-style: none;
    display: flex;
    gap: 15px;
}
.section-three ul li::before{
    content: '\2713';
    color: var(--red);
    font-weight: 700;
}
/*------ section three end ------*/

/*------ product sec start ------*/
.product-sec .item{
    display: block;
    cursor: pointer;
}
.overlap-animation{
    position: relative;
    overflow: hidden;
    width: 100%;
}
.overlap-animation::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.overlap-animation:hover::after {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}
@-webkit-keyframes circle {
    0% {
      opacity: 1;
    }
    40% {
      opacity: 1;
    }
    100% {
      width: 100%;
      height: 100%;
      opacity: 0;
    }
  }
  @keyframes circle {
    0% {
      opacity: 1;
    }
    40% {
      opacity: 1;
    }
    100% {
      width: 100%;
      height: 100%;
      opacity: 0;
    }
  }
.overlap-animation img{
    border-radius: 15px;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    width: 100%;
}
.overlap-animation:hover img {
    transform: scale(1.1);
}
/*------ product sec end ------*/

/*------ testimonial sec start ------*/
.testimonial-sec {
    background: var(--grey);
}

.testimonial {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.testimonial .testimonial-content {
    font-size: 16px;
    margin-bottom: 120px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.testimonial .testimonial-content p {
    margin-bottom: 0;
    text-align: center;
}

.testimonial .testimonial-content .user-profile {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.testimonial .testimonial-content .user-profile strong {
    font-size: 18px;
    font-weight: 600;
}

.testimonial .testimonial-content .user-profile span {
    font-size: 14px;
}

.testimonial .client-name {
    font-weight: bold;
    margin-top: 10px;
}

.testimonial .swiper-pagination-bullet {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 5px;
}

.testimonial .swiper-pagination-bullet-active {
    border: 2px solid var(--blue);
}
/*------ testimonial sec end ------*/

/*----- single product sec start ------*/
.product-sec .item{
    border-radius: 15px;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height:100%;
}
.product-sec .item .item-body{
    padding:1.5rem;
}
.product-sec .item img{
    border-radius: 15px 15px 0 0;
    aspect-ratio:1;
    object-fit:cover;
}
.product-sec .item .item-body p{
    font-weight: 700;
    margin: 1rem 0 0 0;
    text-align:center;
}
/*----- single product sec end -----*/

/*====== product-details ==========*/
.product-details .item{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-details .item .item_a{
    display: flex;
    flex-direction:row;
    gap: 16px;
}
.product-details .item_a span,
.product-details .item_a strong{
    font-size: 24px;
}
@media (max-width:768px) {
    .product-details .item_a span,
    .product-details .item_a strong{
        font-size: 18px;
    }  
}
.product-details .item_a span{
    color: var(--black-grey);
}
.product-details .item_a strong{
    color: var(--black);
    font-weight: 500;
}
.product-details .item_a button{
    font-size: 12px;
    padding: 8px 24px;
    border: 1px solid var(--orange);
    border-radius: 20px;
    font-weight: 400;
    background: var(--orange);
    color: var(--white);
    letter-spacing: 1px;
}
@media (max-width:768px) {
    .product-details .item_a button{
        font-size: 12px;
        padding: 8px;
    }  
}
.product-details .item .button{
    border: none;
}
.product-details .item .whatsapp{
    background: #25d366;
    color: var(--white);
}
.product-details .item .whatsapp:hover{
    background: var(--white);
    color: #25d366;
    border: 1px solid #25d366;
}
#fixedBtn{
    position: fixed;
    right: 35px;
    bottom: 20px;
    background: var(--yellow);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    z-index: 999;
    border: none;
    font-size: 30px;
    color: var(--white);
}
.navArrow{
    gap: 14px;
}
.navArrow a{
    color: var(--dark-grey);
    font-size: 14px;
}
/*-------- product details end -------*/

/*------ bredcrumb start -------*/
.page-breadcrumb ol li a{
    color: var(--dark-grey);
    text-decoration: none;
    font-weight: 600;
}
/*----- bredcrumb end -------*/

/*------ footer-intro start -----*/
.footer-intro{
    background: var(--bg-gradient);
}
.footer-intro .item span{
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
}
.footer-intro .item p{
    color: var(--white);
}
.footer-intro .item p{
    font-size: 14px;
    margin-top: 8px;
}
/*------ footer-intro end ------*/

/*----- footer style start ------*/
footer{
    background: var(--grey);
}
footer .item h4{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
}
footer .item .link-list{
    margin: 0;
    padding: 0;
}
footer .item .link-list li{
    list-style: none;
    margin-bottom: 4px;
}
footer .item .link-list li a{
    color: var(--dark-grey);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
footer .item .social-links{
    display: flex;
    gap: 8px;
}
footer .item .social-links li{
    width: 35px;
    height: 35px;
    border-radius: 35px;
    display: inline-block;
    border: 1px solid var(--dark-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .item .social-links li:hover{
    background: var(--bg-gradient);
    cursor: pointer;
}
footer .item .social-links li:hover a{
    color: var(--white);
}
/*----- footer style end ------*/


/*----- swiper slider style start ---------*/

/*------ swiper slider style end --------*/