* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    background-color: #f1f1f1;
    word-break: break-word;
    min-height: 100vh;
    display: flex;
    position: relative;
    flex-direction: column;
}
ul li {
    list-style-type: none;
    font-weight: 400;
}
ul {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
button {
    outline: none;
    background-color: transparent;
}
button:focus{
    outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 10px 0;
    color: #111;
    font-family: 'Inter', sans-serif;
}
h1 {
    font-size: 40px;
    font-weight: 700;
}
h2 {
    font-size: 32px;
    font-weight: 700;
}
h3 {
    font-size: 30px;
    font-weight: 700;
}
h4 {
    font-size: 24px;
    font-weight: 700;
}
h5 {
    font-size: 20px;
    font-weight: 600;
}
h6 {
    font-size: 1rem;
    font-weight: 500;
}
p {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
}
a {
  text-decoration: none;
}
p {
    margin: 0;
}
img {
 max-width: 100%;
 height: auto;
}
/* custom css start here */
.bg-img {
    background-color: #cccccc; 
    height: 100%; 
    width: 100%;
    background-position: center;
    background-repeat: no-repeat; 
    background-size: cover; 
}
.form--control {
    border: 1px solid #ddd !important;
    border-radius: 4px;
    padding: 10px 20px !important;
    width: 100%;
    padding-right: 50px;
    font-size: 15px;
}
.form--control:focus {
    outline: none !important;
    border-color:blue;
    
}
select:focus {
    outline:0 !important;
}

/* custum css end  */

/* preloader css start  */

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* Background color of the preloader */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Make sure it's above other elements */
}

.loader {
    border: 8px solid #f3f3f3; /* Light gray border */
    border-top: 8px solid #3498db; /* Blue border */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Rotate animation */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* preloader css end  */

.filter {
    margin-top: 30px;
}
.filter .search {
    position: relative;
}
.filter .search .icon {
    position: absolute;
    right: 0;
    color: #ddd;
    background-color: #555;
    width: 50px;
    height: 100%;
    top: 50%;
    border-radius: 4px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0 !important;
}
.select {
    margin-top: 30px;
}
.select:focus {
    box-shadow: none;
}
.sidebar-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    background-color: #777;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
}
.sidebar-overlay.show-overlay {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999;
}
.close-icon {
    position: absolute;
    right: 10px;
    top: 10px;
}
/* top headee css start here  */
.top-header {
    display: flex;
    gap: 15px;
    align-items: center;
}
.top-header {
    background-color: #fff;
    padding: 10px 0;
}
.top-header__number {
    font-size: 14px;
    position: relative;
    margin-bottom: 0;
}
.top-header__number::after {
  position: absolute;
  content: '';
  top: 50%;
  right: -7px;
  width: 1px;
  height: 10px;
  background-color: #777;
  transform: translateY(-50%);
}
.top-header__contact {
    font-size: 14px;
    color: #111;
}

/*===== header bottom start here  =====*/
.header-bottom {
    padding: 15px 0;
    background-color: #fff;
    border-top: 1px solid #ddd;
}
.header-bottom__wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}
.header-bottom__wrapper .link {
    font-size: 48px;
    color:blue;
    font-weight: bolid;
    font-family: 'Inter', sans-serif;
}
.header-bottom__wrapper .header-menu {
    display: flex;
}
.header-bottom__wrapper .logo svg {
    fill:blue;
    width: 40px;
    height: 40px;
}
.header-bottom__wrapper .header-menu .nav-item {
    margin-right: 20px;
}
.header-bottom__wrapper .header-menu .nav-item:last-child {
    margin-right: 0;
}
.header-bottom__wrapper .header-menu .nav-item .nav-link {
    padding: 0;
    color: #111;
    font-size: 15px;
    transition: .2s linear;
    position: relative;
}
.header-bottom__wrapper .header-menu .nav-item .nav-link.active {
    color: blue;
}
.header-bottom__wrapper .header-menu .nav-item .nav-link:hover {
    color: blue;
}
.header-bottom__wrapper .header-bottom__btn {
    display: none;
}
.header-bottom__wrapper .header-menu .nav-item.has-dropdown {
    position: relative;
}
.header-bottom__wrapper .header-menu .nav-item .dropdown-menu-list li {
    width: 100%;
    display: block;
}
.header-bottom__wrapper .header-menu .nav-item .dropdown-menu-list li .dropdown-link {
    padding: 5px 10px;
    width: 100%;
    display: block;
}
.header-bottom__wrapper .header-menu .nav-item .dropdown-menu-list {
    position: absolute;
    display: block;
    transform: scaleY(0);
    transform-origin: top center;
    top: 100%;
    right: 0;
    opacity: 0;
    padding: 0 !important;
    visibility: hidden;
    /* height: 100%; */
    z-index: 999;
    padding: 0 !important;
    overflow-y: auto;
    /* min-height: 100px; */
    /* min-width: 100px; */
    min-width: 140px;
    transition: .2s linear;
    background-color: #fff !important;
    border: 1px solid #ddd;
    border-radius: 4px;
}
 .header-menu .nav-item.nav-item.has-dropdown:hover .dropdown-menu-list{
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    top: 100%;
}
.header-bottom__wrapper .header-menu .nav-item.has-dropdown .dropdown-menu-list .dropdown-link {
    color: #111;
    transition: .2s linear;
    padding: 5px;
}
.header-bottom__wrapper .header-menu .nav-item.has-dropdown .dropdown-menu-list .dropdown-link:hover {
    color: #fff;
    background-color: blue;
}
@media (max-width:767px) {
    .header-bottom__wrapper .header-menu {
        display: block !important;
        position: fixed;
        height: 100vh;
        transition: 0.3s;
        top: 0;
        z-index: 999;
        width: 300px;
        transform: translateX(100%);
        background-color: #fff;
        padding-top: 50px;
        align-items: start;
        flex-direction: row;
        right: 0;
        padding: 0;
        padding-top: 50px !important;
    }
    .header-bottom__wrapper .header-menu.show-sidebar {
        transform: translateX(0) !important;
        z-index: 9999;
    }
    .header-bottom__wrapper {
        justify-content: space-between;
    }
    .header-bottom__wrapper .header-bottom__btn {
        display: block !important;
        color: #111;
        margin-left: auto;
    }
    .header-bottom__wrapper .header-menu .nav-item {
        padding: 5px !important;
        display: block;
    }
    .header-bottom__wrapper .header-menu .nav-item .nav-link {
        padding: 5px !important;
        border-bottom: 1px solid #999;
    }
}
.header-bottom.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 60px;
    z-index: 999991;
    background-color: #fff;
}
/*===== header bottom end  here=====*/

/* banner section css start here  */

.banner-slider__item {
    min-height: 400px;
    padding: 20px;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.banner-slider__item-title {
    padding: 10px ;
    background-color: #fff;
    text-align: center;
}
@media Screen and (max-width:575px) {
    .banner-slider__item-title {
        font-size: 20px;
    }
    .header-bottom__wrapper .link {
        font-size: 20px;
    }
}
.banner-slider .slick-track {
    display: flex;
}
.banner-slider .slick-slide {
    height: auto;
}
.banner-slider .slick-slide>div{
    height: 100%;
}
 .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color:#fff;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #777;
    font-size: 20px;
}
.slick-next {
    right: 0;
}
/* product section start here  */

.product-section-wrapper {
    background-color: #fff;
    padding: 60px 30px;
}
.custom-tab {
    margin-bottom: 30px;
}
.custom-tab.nav-pills .nav-item {
    padding: 5px;
}
.custom-tab.nav-pills .nav-item .nav-link {
    padding: 5px 10px !important;
    color: #111 !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 70px;
}
.custom-tab.nav-pills .nav-item .nav-link.active {
    padding: 5px !important;
    background-color:blue !important;
    color: #fff !important;
    border-color: blue;
}
.tab-item {
    border-bottom: 1px solid #ddd;
    padding: 10px;
}
.tab-item:last-child {
    border-bottom: 0;
}
.tab-item .title {
    font-size: 14px;
    color: #333;
    transition: .2s linear;
}
.tab-item .title:hover {
    color: blue;
}
.product-left .tab-content {
    border: 1px solid #ddd;
}
.product-wrapper-slider .thumb{
    max-width: 200px;
}
.product-wrapper-slider .thumb img{
    object-fit: cover;
    width: 100%;
    height: auto;
}
.product-wrapper {
    margin-top: 60px;
}
.product-wrapper__title {
    font-size: 18px !important;
    margin-bottom: 30px;
}
/* manufacture css  */
.manufacture-wrapper {
   margin-top: 40px;
}
.manufacture-title {
    font-size: 18px;
}
.manufacture-wrapper .title {
    font-size: 16px;
}
.manufacture-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.manufacture-item .item-thumb img{
  width: 200px;
  border-radius: 4px;
  height: 150px;
  border-radius: 4px;
  cursor: pointer;
  transition: .2s linear;
}
.manufacture-item .item-thumb img:hover{
    transform: scaleY(1.1);
  }
@media screen and (max-width:574px) {
    .manufacture-item .item-thumb img{
        width: 180px;
      }
}
@media screen and (max-width:424px) {
    .manufacture-item .item-thumb img{
        width: 100px;
        height: 100px;
      }
}
.info-list li {
    justify-content: space-between;
    gap:5px;
    margin-bottom: 7px;
}
.info-list li .item {
    font-size: 15px;
}
/* footer section start here  */
.footer-section {
    padding: 60px 0;
    background-color: #222;
}
.footer-column .title {
    font-size: 18px;
    color: #fff;
}
.social-icons .social-icon {
  font-size: 20px;
  margin: 0 5px;
}
/* report css start here  */
.product-left__report {
    margin-top: 40px;
}
.report-list {
    display: none;
}
.report-list.show {
    display: block;
}
.list-item {
    margin-bottom: 8px;
}
.list-item-link {
    color: #111;
    transition: .2s linear;
}
.list-item-link:hover {
    color:blue;
}