@charset "utf-8";
/* CSS Document */

/* Bootstrap Icon  */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");


/*html, body {
	width: 100%;
	overflow-x: hidden;
} */



:root {
  --font-titel:'DM Sans', 'DM Sans Local', sans-serif;
  --font-paragraph:'DM Sans', 'DM Sans Local', sans-serif;
  --red-color:#F44601;
  --deep-blue-color:#1D2134;
  --sky-blue-color:#0B79C3;
  --light-blur-color:#DAEBF6;
  --light-gray-color: #F5F5F5; 
  --title-color:#3B3A3A;
  --text-white: #FFF; 
  --para-color:#1F2230;
} 



/* DM Sans Local - Regular */
@font-face {
    font-family: 'DM Sans Local';
    src: url('../fonts/DMSans-Regular.woff2') format('woff2'),
         url('../fonts/DMSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* DM Sans Local - Medium */
@font-face {
    font-family: 'DM Sans Local';
    src: url('../fonts/DMSans-Medium.woff2') format('woff2'),
         url('../fonts/DMSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* DM Sans Local - SemiBold */
@font-face {
    font-family: 'DM Sans Local';
    src: url('../fonts/DMSans-SemiBold.woff2') format('woff2'),
         url('../fonts/DMSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* DM Sans Local - Bold */
@font-face {
    font-family: 'DM Sans Local';
    src: url('../fonts/DMSans-Bold.woff2') format('woff2'),
         url('../fonts/DMSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ExtraBold */
@font-face {
    font-family: 'DM Sans Local';
    src: url('../fonts/DMSans-ExtraBold.woff2') format('woff2'),
         url('../fonts/DMSans-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Italics (Example: Medium Italic) */
@font-face {
    font-family: 'DM Sans Local';
    src: url('../fonts/DMSans-MediumItalic.woff2') format('woff2'),
         url('../fonts/DMSans-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans Local';;
    src: url('../fonts/DMSans-LightItalic.woff2') format('woff2'),
        url('../fonts/DMSans-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
   font-family: 'DM Sans Local';
    src: url('../fonts/DMSans-Light.woff2') format('woff2'),
        url('../fonts/DMSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

 

* {
    text-decoration: none !important;
    outline: none !important;
}

body {
    font-family: var(--font-paragraph);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    background: #fff;
    overflow-x: hidden;
    color: #333333;
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-style: normal;
      

font-family: var(--font-paragraph);
    /* Font-er pixel gulo smooth korar jonne */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Letter spacing thik korun (Google Fonts ektu tight thake) */
    letter-spacing: -0.015em;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    border: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

ol {
    list-style: decimal inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 20px;
    color: #0d141e;
    line-height: 30px;
    font-family: var(--font-titel);
}

p {
    margin: 0;
    padding: 0;
    color: #212121;
    font-size: 16px;
    line-height: 28px;
    font-family: var(--font-paragraph);
}

b,
strong {
    font-weight: 600;
}

blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

 

/* ::selection 
{
    background: #21a108;
    color: #fff;
}
::-moz-selection 
{
    background: #21a108;
    color: #fff;
} */
a:focus,
p:focus,
div:focus,
input:focus,
textarea:focus,
submit:focus,
button:focus {
    outline: none;
}


 

/********HAMBURGER ICON***********/
.hamburger {
    padding: 0px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #0B1D31;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/** Spring **/
.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/** Spring **/

/********HAMBURGER ICON***********/

.topmines {
    top: -100px;
}

.nav-active {
    position: fixed;
    top: 0 !important;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 0 5px #d9d9d9;
}

.nav-active .logo {
    margin-top: 0;
    position: relative;
    z-index: 99;
    width: 150px;
    flex: 0 0 150px;
}

.nav-active .menu-part {
    align-items: center;
}



/*******************************
********NAV BAR*****************
*****************************/
#pull {
    display: none;
}

.nav>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: auto;
    height: auto;
    margin: 0px 44px 0px 0px;
}

/* .nav>ul>li:last-child,
.nav>ul>li:only-child {
    margin: 0;
} */



.nav>ul>li:hover::before,
.nav>ul>li.current-menu-item::before,
.nav>ul>li.current-menu-parent::before,
.nav>ul>li.current-menu-ancestor::before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
}

.nav>ul>li>a {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
    padding: 20px 0px;
    color: #2D2D2D;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    font-family: var(--font-paragraph);
}

.nav>ul>li:hover>a,
.nav>ul>li.current-menu-item>a,
.nav>ul>li.current-menu-parent>a,
.nav>ul>li.current-menu-ancestor>a {
    color: var(--sky-blue-color);
}

.nav>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 300px;
    height: auto;
    padding: 0px 0px 0px 0px;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul,
.nav>ul>li:nth-last-child(2)>ul {
    left: auto;
    right: 0;
}

.nav>ul>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.nav>ul>li>ul>li,
.nav>ul>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
}

.nav>ul>li>ul>li>a,
.nav>ul>li>ul>li>ul>li>a {
    display: block;
    width: auto;
    height: auto;
    padding: 2px 15px 1px 15px;
    background: rgba(11, 30, 48, 0.8);
    border-top: 1px #485665 solid;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    line-height: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:hover>ul>li>a,
.nav>ul>li:hover>ul>li>ul>li>a {
    padding: 9px 15px 10px 15px;
}

.nav>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li.current-menu-parent>a,
.nav>ul>li>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li>ul>li.current-menu-parent>a {
    background: #199adb;
}

.nav>ul>li>ul>li>ul {
    position: absolute;
    top: 10%;
    left: 100%;
    z-index: 9999;
    width: 240px;
    height: auto;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul>li>ul,
.nav>ul>li:nth-last-child(2)>ul>li>ul {
    left: auto;
    right: 100%;
}

.nav>ul>li>ul>li:hover>ul {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.middle-conter {
    width: 100%;
    display: inline-block;
    vertical-align: top;

}


.nav {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

.top-nav 
{
    position: relative;
}


/*******************************
********NAV BAR*****************
*****************************/


/***************** Header *****************/

header 
{
    position: relative;
}


.logo {
    z-index: 99;
    width: 350px;
    height: 120px;
    flex: 0 0 350px;
    margin-top: -55px;
    border-right: 1px solid #E6E6E6;
    background: #fff;
}

.banner .slick-list {
    padding: 0 !important;
}

.slick-slide img {
    width: 100%;
}

.top-bar
{
    background: var(--light-blur-color);
    padding: 5px 0px;
    position: relative;
    overflow: hidden;
}
.top-bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 32%;
    background: #FFF;
}

.button-design {
    background: var(--sky-blue-color);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    font-family: var(--font-monserrat);
}


.bar-area ul li 
{
    font-family: var(--font-monserrat);
    font-size: 15px; 
    font-weight: 500;
    padding: 0 15px;
    color: #4B4B4B;
}

.bar-area ul li a 
{
    font-family: var(--font-monserrat);
    font-size: 15px; 
    font-weight: 500;
    color: #4B4B4B !important;
}

.bar-area ul li:first-child 
{
    border-right: 1px solid #B9D5E8;
}

.bar-area ul li:last-child 
{
    padding: 0;

}

.bar-area ul li:last-child a 
{
    background: #FFF;
    color: var(--sky-blue-color); 
    width: 34px;
    height: 34px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-area ul li i  
{
    color: #0B79C3;
    font-size: 18px;
}




/************ End Header ***************/

.banner-area 
{
    position: relative;
}

.banner-image img {
    min-height: 800px;
    width: 100%;
    object-fit: cover;
}

.banner-area::after 
{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 172px;
    width: 100%;
    background: url(../images/banner-lower.webp) no-repeat center center; 
    z-index: 999999;
}


.banner-slide-area {
    width: 100%;
    padding: 0px 0 100px;
    position: relative;
}

.banner-content h1  
{
    font-size: 74px;
    font-weight: bold;
    color: var(--text-white);
    line-height: 90px;
    font-family: var(--font-titel);
}

.banner-content h2  
{
    font-size: 44px;
    font-weight: bold;
    color: var(--text-white);
    line-height: 60px;
    font-family: var(--font-titel);
    margin-bottom: 25px;
}

.banner-content p   
{
    color: var(--text-white);
    font-size: 23px;
    line-height: 35px;
}

.common-btn 
{
    padding: 10px 20px;
    color: #333333 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
}

.white-btn 
{
    background-color:#FFF; 
    color: #333333 !important;
}

.red-btn 
{
    background-color: var(--red-color); 
    color: var(--text-white) !important;
}

 

.heading-area h2  
{
    font-size: 60px;
    font-weight: bold;
    color: var(--title-color);
    line-height: 75px;
    font-family: var(--font-titel);
    margin-bottom: 20px;
}

.heading-area h2 span   
{
    color: var(--sky-blue-color);
}

.heading-area p   
{
    font-size: 16px;
    line-height: 28px;
}



.banner-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 999999;
    left: 0;
    right: 0;
}

.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    bottom: 26%;
    left: -33%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--sky-blue-color) !important; 
}

.swiper-pagination-bullet 
{
    background: #fff;
    opacity: 1;
}

.product-image {
    max-height: 685px;
    width: 740px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    position: relative;
}

/***************** New Banner ********************/ 

/* Slideshow container */
.slideshow-container {
    position: relative;
    margin: auto;
    position: absolute;
    top: -90px;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
}

/* Next & previous buttons */
.my-custome-banner .prev, .my-custome-banner .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

 
.my-custome-banner .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.my-custome-banner .prev:hover, .my-custome-banner .next:hover {
  background-color: rgba(0,0,0,0.8);
}

 

/* The dots/bullets/indicators */
.my-custome-banner .dot {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.my-custome-banner .active, .my-custome-banner .dot:hover {
  background-color: var(--sky-blue-color);
}

/* Fading animation */
.fade2 {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade2 {
  from {opacity: .4} 
  to {opacity: 1}
}


.banner-product-image 
{
    position: relative;
    
}

.banner-product-image img 
{
    max-width: 730px;
    height: 955px;
    position: relative;
    left: 0;
}

.my-custome-banner 
{
    overflow: hidden;
}

.dot-position {
    position: absolute;
    bottom: 200px;
}


.my-banner-image 
{
    position: relative;
}


.my-banner-image::after 
{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 172px;
    width: 100%;
    background: url(../images/banner-lower.webp) no-repeat center center; 
    z-index: 999999;
}



/************  Banner End ***************/

.section-space 
{
    padding: 80px 0;
}


.about-point {
    background: var(--light-gray-color);
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-flow: column;
    gap: 15px;
    margin-bottom: 20px;
}

.about-point img {
    flex: 0 0 56px;
    display: flex;
    width: 56px;
    height: 56px;
    margin: 0 auto;
}

.about-point h3  
{
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;

}

.rounded-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex: 0 0 463px;
    width: 463px;
    height: 463px;
    overflow: hidden;
}

.rounded-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arrow-1, .arrow-2, .arrow-3, .arrow-4 
{
    position: relative;
}

.arrow-1::before {
    content: "";
    position: absolute;
    width: 152px;
    height: 80px;
    background: url(../images/arrow.png) no-repeat;
    right: -49%;
    background-size: cover;
    top: 20px;
}

.arrow-2::before {
    content: "";
    position: absolute;
    width: 152px;
    height: 80px;
    background: url(../images/arrow.png) no-repeat;
    right: -49%;
    background-size: cover;
    bottom: 20px;
    transform: scaleY(-1);
}

.arrow-3::before {
    content: "";
    position: absolute;
    width: 152px;
    height: 80px;
    background: url(../images/arrow.png) no-repeat;
    left: -49%;
    background-size: cover;
    top: 20px;
     transform: scaleX(-1);
}

.arrow-4::before {
    content: "";
    position: absolute;
    width: 152px;
    height: 80px;
    background: url(../images/arrow.png) no-repeat;
    left: -49%;
    background-size: cover;
    bottom: 20px; 
    -webkit-transform: scale(-1, -1);
    -moz-transform: scale(-1, -1);
    -o-transform: scale(-1, -1);
    transform: scale(-1, -1);
}


/**************************************************************/ 


.feature-product 
{
    background-color: #EEF8FE;
}

.product-card 
{
    background-color: #FFF;
}

.product-card 
{
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 20px;
}

.product-card h3 
{
    font-weight: bold;
    font-size: 21px;
    line-height: 24px;
}
.product-card h3 a{
	    color: #0d141e;
}
.product-card a {
    width: 110px;
    text-align: center !important;
    line-height: 15px;
}

.product-image-card {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 165px;
}


.product-card ul li 
{
    font-size: 16px;
    line-height: 26px;
    padding-left: 30px;
    position: relative;
}

.product-card ul li::before {
    content: "\F633";
    position: absolute;
    left: 0px;
    color: #FFF;
    width: 20px;
    height: 20px;
    background: var(--sky-blue-color);
    line-height: 30px;
    font-family: "bootstrap-icons";
    display: flex;
    align-items: center;
    border-radius: 50%;
    font-size: 15px;
    justify-content: center;
    top: 2px;
}

.solution-logo {
    background: #FFF;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    margin-bottom: 30px;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.solution-logo::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-right: 66px solid #FFF;
    border-bottom: 91px solid transparent;
    left: -66px;
}

.solution-logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 66px solid #FFF;
    border-bottom: 91px solid transparent;
    right: -66px;
}

.plumbing-solution {
    overflow: hidden;
    background-size: cover !important;
}

.plumbing-solution h2  
{
    color: #FFF;
    font-size: 50px;
    font-weight: bold;
    line-height: 70px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.plumbing-solution p   
{   
    color: #FFF;
    font-size: 16px;
    line-height: 28px;
}


/****************************************************************/ 

.segment-solution 
{
    background-color: #EEF8FE;
}

.segment-card {
    background-size: cover !important;
    display: flex;
    flex-flow: column;
    justify-content: end;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.segment-card .servic-img img 
{
    object-fit: cover;
    width: 100%;    
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.segment-card:hover .servic-img img {
    transform: scale(1.1);
}

.servic-img 
{
    position: relative;
}

.segment-content {
    position: absolute;
    z-index: 9;
    padding: 20px;
    padding-right: 56px;
}

.segment-content h3 
{
    color: #FFF;
    font-size: 25px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.segment-content p  
{
    color: #FFF;
    font-size: 16px;
    line-height: 28px;
}

a.round-btn {
    text-align: right;
    margin-left: auto;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.industri-image 
{
    border-radius: 20px;
    overflow: hidden;
}

.industri-image img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industries-slider .swiper-wrapper {
    flex-direction: inherit;
    flex-wrap: wrap;
}


.industri-icon-list ul 
{
    display: flex;
    gap: 15px; 
    flex-flow: wrap;
}

.industries-slider div {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
    width: 188px !important;
    height: 120px !important;
    border-radius: 10px;
    margin-top: 0 !important;
    margin-bottom: 15px !important;

}

.arrow-posi {
    display: flex;
    justify-content: center;
}

.slide-prev 
{
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    background: #E4EEF3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.slide-prev:hover 
{
    background-color: var(--sky-blue-color) !important;
    color: #fff !important;
}

.slide-next 
{
    width: 35px;
    height: 35px;
    background: #E4EEF3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 35px;
    margin: 10px;

}

.slide-next:hover 
{
    background-color: var(--sky-blue-color) !important;
    color: #fff !important;
}

/****************************************************************/


.client-say 
{
    background-color: #F9FDFF;
}


.client-card {
    background-color: #FFF;
    padding: 10px;
    box-shadow: 0 0 5px #0000001f;
    border-radius: 30px;
    border: 1px solid #F0F0F0;
}



.client-say .slide-prev-client
{
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    background: #E4EEF3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.client-say .slide-prev-client:hover 
{
    background-color: var(--sky-blue-color) !important;
    color: #fff !important;
}

.client-say .slide-next-client 
{
    width: 35px;
    height: 35px;
    background: #E4EEF3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 35px;
    margin: 10px;

}

.client-say .slide-next-client:hover 
{
    background-color: var(--sky-blue-color) !important;
    color: #fff !important;
}

.client-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-details .client-image 
{
	height: auto; 
	margin-bottom:0; 
}

.client-left 
{
    display: flex;
    align-items: center; 
}
.client-left{
	
}

.client-details {
    border-bottom: 1px solid #F0F0F0;
    padding: 10px 5px;
}

.client-description 
{
    padding: 15px; 
}

.client-details ul li 
{
    font-size: 16px; 
    position: relative;
    margin: 2px;
    color: #F3B131;
}

.lower-client {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 500px;
    margin: 0 auto;
}


.certification ul li 
{
    margin: 15px;
}

footer 
{
    background: var(--deep-blue-color);
    padding: 60px 0;
}

.footer-social ul li a 
{
    padding: 0 10px;
    color: #fff;    
}

.footer-link ul   
{
    column-count: 2;
}

.footer-link ul li a 
{
    color: #fff;
    display: block;
    font-size: 17px;
    line-height: 40px;
}

.footer-widget h4  
{
    color: #fff;
    font-size: 29px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: "Rubik", sans-serif;
}


.footer-info ul li 
{
    margin-bottom: 15px;
}


.footer-info ul li a 
{
    color: #fff;
    display: flex;
}

.footer-info ul li a i   
{
    color: var(--sky-blue-color);
    font-size: 18px;
    margin-right: 10px;
}


.copy-right 
{
    background: #0B1D31;
}

.copy-right p   
{
    color: #fff;
    font-size: 17px;
    line-height: 30px;
    font-family: "Rubik", sans-serif;
    font-weight: 300;
}





.slide-item {
    flex-shrink: 0;
    padding: 10px;
    box-sizing: border-box;
    transition: 0.5s;
}


.servic-item-box {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    aspect-ratio: 3 / 5; 
    width: 100%;
    cursor: pointer;
}


.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    will-change: transform;
    cursor: grab;
}

/*******slider vanila css******
 * *********************/
   .slider-wrapper { position: relative; width: 100%; max-width: 100%; margin: 0 auto; overflow: hidden; }
        .slider-track { display: flex; will-change: transform; cursor: grab; }
        .slide-item { flex-shrink: 0; padding: 10px; box-sizing: border-box; transition: 0.5s; }
        .content-box { 
            height: 300px; background: var(--primary); color: #fff; border-radius: 15px;
            display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1); font-weight: bold;
        }

        /* 1. Center Mode */
        .center-style .slide-item { opacity: 0.3; transform: scale(0.85); transition: 0.5s; }
        .center-style .slide-item.active { opacity: 1; transform: scale(1.1); z-index: 2; }

        /* 2. Peek Mode (Half Visible) */
        .peek-style .slider-track { padding: 0 10%; }

        /* 3. Thumbnail Sync Style */
        .thumb-nav-wrapper { max-width: 600px; margin: 0 auto 40px; }
        .thumb-content {
            height: 70px; background: #ddd; border-radius: 8px; cursor: pointer;
            opacity: 0.6; transition: 0.3s; border: 3px solid transparent;
            display: flex; align-items: center; justify-content: center; font-weight: bold;
        }
        .thumb-nav-item.active .thumb-content { opacity: 1; border-color: var(--themecolor); background: #fff; }

        /* Theme Colors */
        .normal-style .content-box { background: #10b981; }
        .grid-style .content-box { background: #f59e0b; font-size: 1.5rem; }
        .thumb-main-style .content-box { background: #6366f1; }

        /* Controls */
        .nav-btn div{ position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; cursor: pointer;  }
        .prev-id { left: 10px; } .next-id { right: 10px; }
        .dots-id { display: flex; justify-content: center; gap: 8px; margin-top: 15px; }
      .dot-class { 
    width: 9px; 
    height: 9px; 
    background: #ccc; 
    border-radius: 50%; 
    cursor: pointer; 
  
    transition: transform 0.3s ease, background 0.3s ease; 
    display: inline-block; 
}

.dot-class.active { 
    background: var(--deep-blue-color); 
   
  
}

        /*******slider vanila css******
 * *********************/

 .nav-btn {
    position: absolute;
    bottom: 35px;
    width: 130px;
    right: 0;
}

.cover-rev-nav 
{
    width: 500px;
    margin: 0 auto;
    position: relative;
}


.grid-style-2 .slide-item  
{
    display: flex;
    flex-flow: wrap;
    gap: 15px;
}

.grid-style-2 .slide-item div  
{
    border: 1px solid #E3E3E3; 
    width: 188px;
    height: 121px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 188px;
}

 
.grid-style-2  
{
    padding-bottom: 50px;
}

.nav-btn-pos .nav-btn {
    left: 346px;
}

.my-banner-image 
{
    max-height: 840px;
    min-height: 840px;
    overflow: hidden;
}

.my-banner-image img 
{
    width: 100%;
    object-fit: cover;
    min-height: 100vh;
}





:root {
  --gap: 15px;
  --cols-per-view: 5;
  --rows-per-view: 3;
}

.grid-slider-container .grid-slider-container {
  position: relative; /* Needed to place buttons accurately */
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  font-family: sans-serif;
}

.grid-slider-container .slider-wrap {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.grid-slider-container .slider-wrap::-webkit-scrollbar {
  display: none;
}

.grid-slider-container .grid-track {
  display: grid;
  grid-auto-flow: column; 
  grid-template-rows: repeat(var(--rows-per-view), 110px); 
  grid-auto-columns: calc((100% - (var(--gap) * (var(--cols-per-view) - 1))) / var(--cols-per-view));
  gap: var(--gap);
      margin-left: 15px;
}

/* .grid-slider-container .grid-item {
  scroll-snap-align: start;
  background: #2a2a2a;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
} */

/* --- Navigation Buttons Styling --- */
.grid-slider-container .nav-btn {
    position: relative;
    top: inherit;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    background: #E4EEF3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    border: none;
    display: flex;
    bottom: 0;
}

.grid-slider-container .nav-btn:hover {
  background: var(--sky-blue-color);
  color: #FFF;
}

/* .grid-slider-container .nav-btn:active {
  transform: translateY(-50%) scale(0.95);
} */

/* Pushes them slightly outside the slider box */
.grid-slider-container .prev-btn { left: 0px; }
.grid-slider-container .next-btn { right: 0px; }

/* Responsive fix: bring buttons inside on smaller screens */
 

/* Pagination Dots */
.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.grid-slider-container .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #007aff;
}


.grid-slider-container .slide-item {
    flex-shrink: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.5s;
    border: 1px solid #E3E3E3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
    border-radius: 10px;
}

.nav-btn-grid-slider {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    align-items: center;
}


/******************************************/ 

.inner-banner .my-banner-image::after
{
    display: none !important;
}

.inner-banner .slideshow-container 
{
    top: 0 !important;
    padding: 50px 0;
}

.inner-banner .my-banner-image {
    max-height: 470px;
    min-height: 470px;
    overflow: hidden;
}

.client-image {
    border-radius: 20px;
    overflow: hidden;
}

.client-image img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
/*     transition: all 0.3s ease-in-out; */
}

.working-image 
{
    background: #EEF7FB; 
    padding: 50px 0;
}

.working-image .client-image {
    border-radius: 20px;
    overflow: hidden;
    height: 470px;
    margin-bottom: 20px; 
}

/* .client-image:hover img {
    transform: scale(1.1);
}
 */
.contact-from 
{
    background: #EEF8FE;
}

.submit-btn 
{
    border: none;
}


.from-area {
    background: #FFF;
    border-radius: 30px;
    padding: 30px 30px;
}


.from-area .form-control, .from-area .form-select
{
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #d9d9d9; 
	font-size: 15px; 
}

.contact-info {
    padding: 20px;
    background: var(--sky-blue-color);
    border-radius: 20px;
}

.contact-info li 
{
    margin-bottom: 15px;
}

.contact-info li a 
{
    display: flex;
    color: #fff;
}

.contact-info a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    flex: 0 0 30px;
    background: var(--red-color); 
    color: #fff;
    margin-right: 10px;
    border-radius: 50%;
}

.con-social li 
{
    margin-bottom: 0;
}

.con-social {
    background: #eef8fe;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    border-radius: 10px;
    border: 1px solid #07619b;
    box-shadow: 0 0 5px #035f9b;
}

.form-control::placeholder {
  color: #2d2d2d;
}


/*****************************LALTU SOME***********************/

.client-letter {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 50%;
    text-transform: uppercase;
}


.bg-color-1 { background-color: #ea4335; } 
.bg-color-2 { background-color: #4285f4; } 
.bg-color-3 { background-color: #fbbc05; } 
.bg-color-4 { background-color: #34a853; } 
.bg-color-5 { background-color: #673ab7; }

/*************PRODT FILER************/

.category-checkbox-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-checkbox-list li {
    margin-bottom: 12px;
}
.cat-check-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.prod-cat-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #dde7ed;
    border-radius: 4px;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.cat-check-label:hover .custom-checkbox {
    border-color: #0b79c3;
}

.prod-cat-checkbox:checked ~ .custom-checkbox {
    background-color: #0b79c3;
    border-color: #0b79c3;
}

.custom-checkbox:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.prod-cat-checkbox:checked ~ .custom-checkbox:after {
    display: block;
}
.custom-checkbox-text {
    font-size: 17px;
    color: #333;
}
.cat-count {
    color: #888;
    font-size: 14px;
    margin-left: 4px;
}


/* single prodcut page start  */

.single-product-details{
        background: #eff9ff;
}

.js-custom-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    user-select: none;
    border-radius: 8px;
}

.js-slider-track {
    display: flex;
    cursor: grab;
    will-change: transform;
}

.js-slide-item {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
}

.js-slide-item img {
    max-height: 450px;
    width: auto;
    object-fit: contain;
    pointer-events: none; /* ইমেজ ড্র্যাগিং কনফ্লিক্ট আটকানোর জন্য */
}

/* কাস্টম নেভিগেশন অ্যারো স্টাইল */
.js-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0b79c3;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.js-slider-arrow:hover {
    background: #05548a;
}

.js-slider-arrow.prev {
    left: 15px;
}

.js-slider-arrow.next {
    right: 15px;
}

/*=====================blog=========================*/

.fm-image-wrapper img{
width: 100%;
    height: 248px;
    object-fit: cover;
    border-radius: 8px;
}
.fm-single-thumb-wrapper img {
    width: 100% !important;
    max-width: 100% !important; 
    height: 400px !important;
    object-fit: cover !important; 
 
}

/* ==========================================================================
   Single Product Details Custom Premium Styles
   ========================================================================== */

/* Product Top Info */
.product-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    line-height: 1.2;
}
.product-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    color: #666666 !important;
    letter-spacing: 0.5px;
}
.product-main-description {
    font-size: 17px;
    line-height: 1.7;
    color: #444444;
}

/* Tab Wrapper Navigation */

.product-tabs-wrapper .nav-tabs {
    border-bottom: 2px solid #eef2f5;
    gap: 10px;
}
.product-tabs-wrapper .nav-item {
    margin-bottom: -2px;
}
.product-tabs-wrapper .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #555555;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 14px 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-tabs-wrapper .nav-link:hover {
    color: #0b79c3;
    border-bottom-color: rgba(11, 121, 195, 0.3);
}
.product-tabs-wrapper .nav-link.active {
    color: #0b79c3;
    background-color: transparent;
    border-bottom: 3px solid #0b79c3;
}

/* Tab Content Panel Styling */
.product-tabs-wrapper .tab-content {
    background: #ffffff;
    border: 1px solid #ffffff !important;
    border-top: none !important;
    border-radius: 0 0 18px 18px;
    padding: 40px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Tab 1 & Tab 2 Content Grid Adjustments */
#info-panel, #series-panel {
    font-size: 15px;
    line-height: 1.75;
    color: #4a5568;
}
#series-panel h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
}

/* Tab 3: Documents Section & Cards Styling */
.document-main-section {
    margin-bottom: 45px;
}
.document-main-section:last-child {
    margin-bottom: 0;
}
.document-main-section .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eef2f5 !important;
    padding-bottom: 12px !important;
}

/* Document Multi-Cards Dynamic Grid */
.document-card {
      background: #f1f1f1;
 
    border-radius: 8px !important;
    transition: all 0.3s ease;
    overflow: hidden;
}
.document-card:hover {
    border-color: #0b79c3 !important;
    transform: translateY(-4px);
   
}
.document-card .card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.4;
}
.document-card .card-text {
    font-size: 16px;
    color: #2c3036;
    margin-bottom: 6px;
}
.document-card .card-text strong {
    color: #4a5568;
    font-weight: 500;
}

/* Premium Download Button inside Cards */
.document-card .btn-outline-primary {
   background: var(--sky-blue-color);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    font-family: var(--font-monserrat);
    margin: 10px 0px;
}
.document-card .btn-outline-primary:hover {
    color: #ffffff;
    background-color: #0b79c3;
    border-color: #0b79c3;
}
.document-card img.border {
    border-color: #edf2f7 !important;
    padding: 4px;
    background: #fff;
    max-height: 110px;
    object-fit: contain;
}
.tab-content ul {

}

.tab-content ul li {
    position: relative;
color: #212121;
margin-bottom: 10px;
font-size: 17px;
}


.tab-content ul li::before {
    content: "\F633";
    position: absolute;
    left: 0px;
    top: 3px; 
    color: #FFF;
    width: 20px;
    height: 20px;
    background: var(--sky-blue-color);
    font-family: "bootstrap-icons";
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
}
/* Responsive Breakpoints fixes */
@media (max-width: 991.98px) {
    .product-main-title { font-size: 2rem; }
    .product-tabs-wrapper .tab-content { padding: 25px !important; }
    .product-tabs-wrapper .nav-link { padding: 10px 18px; font-size: 14px; }
}


.page-content-sigle h4{
font-size: 24px;
font-weight: 500;
letter-spacing: 0;
line-height: 30px;
margin-bottom: 20px;
}

.page-content-sigle p{
    font-size: 17px;
    line-height: 28px;
        margin-bottom: 15px;
}
.page-content-sigle ul li {
    font-size: 17px;
    line-height: 26px;
    padding-left: 30px;
    position: relative;
    color: #212121;
    margin-bottom: 10px;
}




.page-content-sigle ul li::before {
    content: "\F633";
    position: absolute;
    left: 0px;
    top: 3px; 
    color: #FFF;
    width: 20px;
    height: 20px;
    background: var(--sky-blue-color);
    font-family: "bootstrap-icons";
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
}

.page-content-sigle table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
    font-size: 17px;
    color: #4a5568;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.page-content-sigle table thead th,
.page-content-sigle table th {
    background-color: #f7fafc;
    color: #1a202c;
    font-weight: 600;
    text-align: left;
    padding: 14px 18px;
    border-bottom: 2px solid #e2e8f0;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-content-sigle table td {
    padding: 12px 18px;
    border-bottom: 1px solid #edf2f7;
    line-height: 1.6;
    vertical-align: middle;
}

.page-content-sigle table tbody tr:nth-of-type(even) {
    background-color: #fcfdfd;
}

.page-content-sigle table tbody tr:hover {
    background-color: rgba(11, 121, 195, 0.03);
    transition: background-color 0.2s ease;
}

.page-content-sigle table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 767.98px) {
    .page-content-sigle {
        overflow-x: auto; 
    }
    .page-content-sigle table {
        min-width: 550px;
    }
    .page-content-sigle table td, 
    .page-content-sigle table th {
        padding: 10px 14px;
        font-size: 14px;
    }
}



.custom-specs-nav-tabs {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    border-bottom: 2px solid #eef2f5;
    gap: 10px;
}

.custom-specs-nav-item {
    margin-bottom: -2px;
}

.custom-specs-nav-link {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #555555;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 14px 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-specs-nav-link:hover {
    color: #0b79c3;
    border-bottom-color: rgba(11, 121, 195, 0.3);
}

.custom-specs-nav-link.active {
    color: #0b79c3;
    background-color: transparent;
    border-bottom: 3px solid #0b79c3;
}

.boder-card{
	
    box-shadow: 0 0 15px #efefefc9;
}
.category-sidebar h3{
	margin-bottom:25px;
	width:100%;
}

.product-search-wrapper .form-controlcustom {
    width: 100%;
    height: 40px;
    padding: 6px 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    outline: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.product-search-wrapper .form-controlcustom:focus {
    border-color: var(--sky-blue-color);;
    outline: none;
 
}

.product-search-wrapper .form-controlcustom::placeholder {
    color: #333;
    font-size: 16px;
}

.product-search-wrapper.category-sidebar {
    padding: 0px;
    margin-bottom: 25px !important;
}


.map-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 620px;
    border-radius: 0;
    overflow: hidden;
}
#map {
    width: 100%;
    height: 100%;
 
}

.heading-area ul li{
	    position: relative;
    padding-left: 29px;
	margin-bottom: 10px;
}

.heading-area ul li::before {
    content: "\F633";
    position: absolute;
    left: 0px;
    color: #FFF;
    width: 20px;
    height: 20px;
    background: var(--sky-blue-color);
    line-height: 30px;
    font-family: "bootstrap-icons";
    display: flex;
    align-items: center;
    border-radius: 50%;
    font-size: 15px;
    justify-content: center;
    top: 4px;
}

.remark-w 
{
	width: 200px; 
}

.sl-width 
{
	width: 65px; 
}

.table-area td, .table-area th {
  border: 1px solid #b1b1b1;
  text-align: left;
  padding: 5px;
 font-size: 16px; 
}

.table-area tr:nth-child(even) {
  background-color: #f3f3f3;
}

.height-ctrl {
    height: 212px; 
} 

.table-area th 
{
	background: #107bc0;
    color: #FFF;
}
.client-video 
{
	overflow: hidden; 
}

.client-video video 
{
	width: 100%; 
}


.heading-area p{
	margin-bottom:18px;
}


.product-slider-list {
    display: block;
}

.product-slider-list > div {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
}

.product-slider-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fff;
}

.product-star {
    color: #f5b301;
    font-size: 18px;
    line-height: 1;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
h3.product-slider-title {
        font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 30px;
    margin-bottom: 20px;

    padding-bottom: 20px;
    border-bottom: 1px solid #efefef;
}