/********** Template CSS **********/
:root {
    /* --primary: #309fa8;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #252C30; */

    --primary: #b00000;
    --lightred: #c02f2f;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: black;
    --blackprimary: #222222;
}

html,
body {
    background: unset;
    overflow-x: hidden ;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 95px;
    z-index: 99;
    background-color: var(--lightred);
}
.btn:focus {
    box-shadow: none;
    outline: 0px;
}

.back-to-top i {
    color: white;
}

.back-to-top:hover i {
    /* color: var(--blackprimary); */
    transform: 0.5s;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}

.heading-box {
    display: flex;
}

.heading-box .heading {
    color: var(--blackprimary);
    font-size: 35px;
    width: 40%;
}

.heading {
    color: var(--blackprimary);
    font-size: 35px;
}

.heading-box .line {
    position: relative;
    width: 100%;
}

.heading-box .line::after {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    height: 2px;
    width: 100%;
    background-color: black;
}

.sub-head {
    margin-bottom: 20px;
    color: var(--primary);
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.main-btn {
    font-family: 'Oswald', sans-serif;
    border: 2px solid #e7272d;
    color: #e7272d;
    padding: 10px 44px;
    background: transparent;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
}

.main-btn i {
    margin-left: 10px;
    color: #e7272d;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.main-btn:hover {
    background: #e7272d;
    color: #ffffff;
}

.sec-btn {
    font-family: 'Oswald', sans-serif;
    border: 2px solid #e7272d;
    color: white;
    padding: 10px 44px;
    background: #e7272d;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
}

.sec-btn a {
    color: white;
}

.sec-btn:hover a {
    color: var(--primary);
    transition: 0;
}

.sec-btn i {
    margin-left: 10px;
    color: #e7272d;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.sec-btn:hover {
    transition: 0.5s;
    background: white;
    color: #e7272d;
}

.four-btn {
    font-family: 'Oswald', sans-serif;
    border: 2px solid #e7272d;
    color: var(--blackprimary);
    padding: 10px 44px;
    background: white;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
}

.four-btn i {
    margin-left: 10px;
    color: #e7272d;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.four-btn:hover {
    color: var(--primary);
}


.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    padding: 0;
    top: 0;
    left: 0;
}

.navbar-toggler {
    box-shadow: none;
    border: none;
}
.nav-container .navbar .navbar-nav .nav-link{
    color:white;
}
.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    /* padding: 25px 0; */
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-light .navbar-toggler {
    color: black;
    
}

.navbar.expanded {
    /* background-color: #343a40 !important; */
}

.dropdown-item.active, .dropdown-item:active{
    background-color: var(--lightred);
}

/* .navbar .dropdown-menu{
    display: none;
} */

.dropdown-menu{
    display: none;
}
.dropdown:hover > .dropdown-menu {
    display: block;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 110px;
        /* height: 100px; */
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        text-align: center;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}
@media (min-width: 991px) {
 .navbar .drop-1 {
    position: absolute;
    left: 100%;
    top: 0;
}
}
@media (max-width: 991px) {
 .navbar .drop-1 {
  height: 200px;
  overflow-y: scroll;
}
}

/* @media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
} */


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    /* background: rgba(237,255,255, .3); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(78, 131, 180, 0.7), rgba(78, 131, 180, 0.7)), url("https://img.freepik.com/premium-photo/luxurious-apartment-with-contemporary-bathroom_872147-105935.jpg?ga=GA1.1.332943406.1726205077&semt=ais_hybrid") center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}

/* home banner-start */
.textanim {
    text-align: center;
    text-transform: uppercase;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 40px;
    letter-spacing: 5px;
    color: var(--primary);
}

.home-banner {
    top: 0px;
}

/* home banner-end */

/*** Products ***/
.product {
    background: linear-gradient(rgba(180, 78, 78, 0.1), rgba(180, 119, 78, 0.1)), url("https://img.freepik.com/premium-photo/luxurious-apartment-with-contemporary-bathroom_872147-105935.jpg?ga=GA1.1.332943406.1726205077&semt=ais_hybrid") left bottom no-repeat;
    background-size: contain;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}


/*** About ***/
/* .video {
    background: linear-gradient(rgba(180, 78, 78, 0), rgba(180, 78, 78, 0)), url("https://bath-fixtures.myshopify.com/cdn/shop/files/banner-2_554acc84-fae7-4938-a2ce-e86365277dba_1920X.jpg?v=1613548634") center center no-repeat;
    background-size: cover;
} */
.about .content p {
    text-align: justify;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #766a6d94;
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
#contact {
    background: linear-gradient(rgba(10 10 10 / 70%)), url("../img/contact-sec.jpg") center center no-repeat;
    background-size: cover;

}

.contact {
    padding: 100px 0;
}

.contact .heading {
    letter-spacing: 2px;
}

.contact p {
    color: rgb(245, 244, 244);
    margin: 20px 0;
}

.contact .row {
    padding-left: 150px;
    padding-right: 150px;
}

.contact button {
    width: auto;

}

/*** Testimonial ***/
.testimonial {
    /* background: linear-gradient(rgb(0 0 0 / 44%), rgb(0 0 0)), url("https://img.freepik.com/premium-photo/luxurious-bathroom-with-sleek-black-bathtub-wooden-bookshelf-cityscape-backdrop-3d-rendering_670147-91996.jpg?ga=GA1.1.332943406.1726205077&semt=ais_hybrid") center center no-repeat;
    background-size: cover; */
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
}

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 60px;
    margin: auto;
}


.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
    background-color: var(--blackprimary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .icon-box a {
    margin: 5px;
    height: 40px;
    width: 40px;
    line-height: 43px;
    text-align: center;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
}

.footer .add-col i {
    color: var(--primary);
    font-size: 22px;
}

.footer .add-col a {
    color: #B0B9AE;

}

.footer .add-col p a:hover {
    letter-spacing: 1px;
    transition: .3s;
    color: white;
}

.footer .icon-box i {
    border-radius: 50%;
    color: white;

}

.footer .add-col .icon-box a:hover {
    background-color: white;
    color: var(--primary) !important;
    transition: 0.5s;

}

.footer .add-col .icon-box a:hover i {
    color: var(--primary) !important;
}

.copyright {
    color: #B0B9AE;
}

.copyright a {
    color: black;
}

.copyright {
    background: var(--lightred);
}

.copyright a:hover {
    color: #FFFFFF !important;
    transition: 0.5s;
}

/* whatsapp */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 22px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .1s all ease-in-out;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 .75rem #18d26e;
    background-color: #18d26e;
}

.whatsapp:hover {
    background-color: white;
    color: #18d26e;
}

.call {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    transition: .1s all ease-in-out;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    background-color: #222222;
    box-shadow: 0 0 .5rem #eee;
}

.call:hover {
    background-color: white;
    color: #222222;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 80px 20px;
    height: 100%;
    transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
    background-color: #ffffff;
    margin: 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.services .service-item .icon i {
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}



/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.2s, height 0.2s, border-color 0.2s ease-in-out;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: red;
    width: 4px;
    transform: translate(-50%, -50%);
    height: 4px;
    border-radius: 50%;
}

/* End cursor section */
/* quality-sec section start */
.quality-sec {
    background: url("../img/qul-sec.png") center center no-repeat;
    background-size: cover;

}


.quality-sec .box {
    padding: 20px;
    background-color: var(--lightred);
    margin: 10px;


}

.quality-sec .box i {
    padding: 6px;
    border-radius: 50%;
    padding: 16px;
    font-size: 30px;
    background-color: white;
    color: var(--lightred);


}

.quality-sec .box h5 {
    color: black;
}

.quality-sec .box p {
    color: rgb(211, 210, 210);
    text-align: center;
}

.quality-sec .box.even {
    margin-top: 100px;
}

/* quality-sec section end */

/* product section start */
.product-sec {
    padding-top: 100px;
    padding-bottom: 100px;

}

.product-sec .img-box {
    width: 100%;
    
}
.product-sec .img-box img{
position: relative;
overflow: hidden;

}
.product-sec .box .img-box .fir-img{
    display: block;

}
.product-sec .box .img-box .sec-img{
    display: none;

}
.product-sec .box .img-box:hover .fir-img{
    display: none;

}
.product-sec .box .img-box:hover .sec-img{
    display: block;

}
.product-sec .img-box img {
    width: 100%;
    height: auto;
}

.product-sec button {
    position: relative;
    border: none;
    background-color: transparent;
    padding-left: 0;

}

.product-sec .content p {
    color: gray;
}

.product-sec button a {
    position: relative;
    text-align: left;
    color: var(--primary);
    font-weight: 400;
    line-height: 1;
    font-size: 16px;
    display: inline-block;
    padding-left: 100px;
    text-transform: uppercase;
    background-color: transparent;
    box-shadow: none;
}

.product-sec button a::before {
    content: "";
    position: absolute;
    width: 85px;
    height: 1px;
    top: 45%;
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    transform: translateY(-45%);
    left: 0;
    background-color: black;
}


/* product section end */

/* product-second-sec start */
.second-product {
    padding: 0 150px 150px 150px;
}

.second-product img {
    width: 100%;
    height: auto;
}

.second-product .img-box {
    position: relative;
}

.second-product .img-box span {
    position: absolute;
    content: "";
}

.second-product .img-box .one-sp {
    height: 0%;
}

.second-product .img-box .two-sp {
    width: 0%;
}

.second-product .img-box .thr-sp {
    height: 0%;
}

.second-product .img-box .for-sp {
    width: 0%;
}

.second-product .img-box:hover .one-sp {
    left: 10%;
    height: 80%;
    width: 2px;
    background-color: rgba(192, 15, 15, 0.767);
    transition: 0.5s;
    top: 10%;
}

.second-product .img-box:hover .two-sp {
    left: 10%;
    height: 2px;
    width: 80%;
    background-color: rgba(192, 15, 15, 0.767);
    bottom: 10%;
    transition: 0.5s;

}

.second-product .img-box:hover .thr-sp {
    right: 10%;
    height: 80%;
    width: 2px;
    background-color: rgba(192, 15, 15, 0.767);
    top: 10%;
    transition: 0.5s;

}

.second-product .img-box:hover .for-sp {
    left: 10%;
    height: 2px;
    width: 80%;
    background-color: rgba(192, 15, 15, 0.767);
    top: 10%;
    transition: 0.5s;

}

.second-product .img-box .con {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    background-color: transparent;


}

.second-product .img-box .con a {
    color: white;
    cursor: pointer;
    display: none;
}

.second-product .img-box:hover .con {
    display: block;
    transform: 0.5s;
    background-color: rgba(0, 0, 0, 0.582);
    display: flex;
    justify-content: center;
    align-items: center;
}

.second-product .img-box:hover a {
    display: block;
    transition: 0.5s;
}

.second-product .img-box:hover a:hover {
    color: var(--primary);
    transition: 0.5s;
}

/* product-second-sec end */

/* banner section start */
#banner {
    background-image: url("../img/banner-2.jpg");
    background-size: cover;
    height: fit-content;
    background-position: bottom;

}

.banner {
    padding: 160px 0 160px 0;
}

.banner .content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.banner .content h1 {
    color: var(--darksecondary) !important;
    text-shadow: 1px 1px black;
    font-size: 65px;
    opacity: 1;

}

.banner .content p {
    color: white;
    text-shadow: 1px 1px black;

}

/* banner section end */

/* about2 section start */
#about2 {
    background-color: var(--lightred);
}

#about2 .about2 {
    background-color: var(--lightred);
}

.counter-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 200px;
    padding: 50px 20px;
    /* background: #fff; */
    background-color: var(--darkprimary);
}

.counter-box {
    flex: 1 1 180px;
    max-width: 200px;
    text-align: center;
}

.counter {
    font-size: 40px;
    font-weight: bold;
    color: black;
}

.label {
    margin-top: 10px;
    font-size: 18px;
    color: white;
}

/* about2 section end */


/* contact-page start */
.feature-sec .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: relative;
}

.feature-sec .content h4 {
    color: var(--darkprimary);
    margin-top: 20px;
    font-size: 24px;
}

.feature-sec .content i {
    color: white;
    background-color: var(--secondary);
    font-size: 3rem;
    padding: 2px 10px;
    border-radius: 5px;

}

.feature-sec .content .fa-phone-volume {
    padding: 15px 12px;
}

.feature-sec .content p {
    color: gray;
    margin-top: 5px;
    font-size: 18px;
}

.feature-sec .content p a {
    text-decoration: none;
    color: gray;
}

.feature-sec .content p a:hover {
    color: var(--darksecondary);
    transition: 0.5s;
}

.feature-sec .content i {
    color: white;
    background-color: transparent;
}


.feature-sec .content .icon {
    height: 75px;
    width: 75px;
    background-color: var(--lightred);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-sec .content .sp-1 {
    position: absolute;
    width: 2px;
    height: 0;
    content: "";
    top: 0;
    left: 0;
    background-color: var(--primary);
}

.feature-sec .content .sp-2 {
    position: absolute;
    width: 0;
    height: 2px;
    content: "";
    top: 0;
    left: 0;
    background-color: var(--primary);
}

.feature-sec .content .sp-3 {
    position: absolute;
    width: 2px;
    height: 0%;
    content: "";
    top: 0;
    right: 0;
    background-color: var(--primary);
}

.feature-sec .content .sp-4 {
    position: absolute;
    width: 0%;
    height: 2px;
    content: "";
    left: 0;
    bottom: 0;
    background-color: var(--primary);
}

.feature-sec .content:hover .sp-1 {
    transition: 0.5s;
    height: 100%;

}

.feature-sec .content:hover .sp-2 {
    transition: 0.5s;
    width: 100%;

}

.feature-sec .content:hover .sp-3 {
    transition: 0.5s;
    height: 100%;

}

.feature-sec .content:hover .sp-4 {
    transition: 0.5s;
    width: 100%;

}


/*.feature-sec end */

/* contact page start */
.contact-page .left {
    background-color: var(--tolightwhite);
    margin-top: 44px;
}

.contact-page .form h4 {
    font-size: 28px;
    font-weight: 500;
}

.contact-page .form input {
    padding: 14px 12px;
    border-radius: 3px;
    border: 1px solid rgba(128, 128, 128, 0.274);
    width: 100%;
}

.contact-page .form input:focus-visible {
    outline: 1px solid var(--primary-color);
}

.contact-page .form textarea {
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    border: none;
    border-radius: 3px;
    border: 1px solid rgba(128, 128, 128, 0.274);
}

.contact-page .main-btn a {
    color: black;
}

.contact-page .main-btn:hover a {
    color: white;
}

.contact-page .form textarea:focus-visible {
    outline: 1px solid var(--primary-color);
}

.contact-page .left .box {
    border: 1px solid rgba(128, 128, 128, 0.274);
    display: flex;
    padding: 20px;
}

.contact-page .left .box .icon i {
    font-size: 30px;
    color: white;
}

.contact-page .left .box .icon {
    height: 60px;
    width: 60px;
    background-color: var(--lightred);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact-page .left .box p span {
    color: rgb(68, 67, 67);
}

.contact-page .left .box p a {
    color: black;
}

.contact-page .left .box p a:hover {
    color: var(--primary);
}


.contact-page .left .icon-box i {
    color: white;
    font-size: 24px;
}

.contact-page .left .icon-box a {
    height: 50px;
    width: 50px;
    padding: 10px;
    background-color: rgb(128 128 128 / 16%);
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
}

.contact-page .left .icon-box a:hover {
    background-color: white;
    transition: 0.5s;

}

.contact-page .left .icon-box a:hover i {
    color: var(--primary) !important;
}

/* contact-page page end */

/* product-cat start */


.product-cat .card {
    /* border: none; */
    border-radius: 1px;
}

.product-cat .card .sec-img {
    display: none;
}
.product-cat .card .img-box{
    position: relative;
    overflow: hidden;
    /* border: 1px solid rgba(128, 128, 128, 0.438); */
}
.product-cat .card .img-box::before{
      content: '';
    position: absolute;
    top: -200%;
    right: 1%;
    width: 100%;
    height: 200%;
    /* background: red;    */
    background-color: rgba(245, 241, 241, 0.527);
    transition: all 0.5s;
    pointer-events: none;
    transform: rotate(127deg);
    z-index: 1;
}
.product-cat .card .img-box:hover::before{
 top: 106%;
}

/* .product-cat .card .img-box:hover img::before{
    left: 0;

} */
.product-cat{
    font-family: sans-serif;
}

.product-cat .card .img-box .sec-btn{
    display: none;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
padding: 6px 20px !important;

}
.product-cat .card .img-box:hover .sec-btn{
display: block;
transition: 0.5s;
}

.product-cat .card .card-title {
    font-size: 18px;
    font-weight: normal;
    font-family: sans-serif;
}
.product-cat .card .card-body button {
    border: none;
    background-color: transparent;
}

.product-cat .card .card-body button a {
    position: relative;
    text-align: left;
    color: var(--primary);
    font-weight: 400;
    line-height: 1;
    font-size: 16px;
    display: inline-block;
    padding-left: 100px;
    text-transform: uppercase;
    background-color: transparent;
    box-shadow: none;
}

.product-cat .card .card-body button a::before {
    content: "";
    position: absolute;
    width: 85px;
    height: 1px;
    top: 45%;
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    transform: translateY(-45%);
    left: 0;
    background-color: black;
}


/* product-cat end */

/* product-details start */
.product-details .product-info{
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.slick-dots li button:before{
    font-size: 18px !important;
}