@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}


.--transition-ease{transition:all 0.2s ease-in 0s; -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; -o-transition: all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out;}
.--transition-ease:hover{transition:all 0.2s ease-in 0s; -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; -o-transition: all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out;}
.--transition-ease:after{transition:all 0.2s ease-in 0s; -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; -o-transition: all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out;}
.--transition-ease:before{transition:all 0.2s ease-in 0s; -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; -o-transition: all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out;}

.navbar.fixed {
  position: sticky;
  top: 0;
}

.d-none {
    display: none !important;
}

.text-primary {
    color: #d16935;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}
.container-fluid{padding: 0 50px;}

/* WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #626262;
}
::-webkit-scrollbar-track {
    background-color: #ccc;
}
::-webkit-scrollbar-thumb {
    background-color: #d16935;
    border-radius: 10px;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #d16935 #ccc;
}

iframe.proofreading-iframe {
    min-height: 600px;
}

.loader svg circle {
    stroke: #d16935;
}
.loader svg {
    height: 70px;
}

.loader img {
    height: 62px;
    display: none;
}
.loader rect {
    fill: #d16935;
}
.loader {
    position: fixed;
    background: #23232fd4;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* nav start  */

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.container_nav {
    /* max-width: 1523px; */
    width: 100%;
    margin: auto;
}

.navbar {
    width: 100%;
    z-index: 3;
    background: #fff;
    position: stick;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #d16935;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 82px;
    align-items: center;
    flex-direction: row-reverse;
}

.menu-items {
    order: 2;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 40%;
    gap: 25px;
}
.menu-items li {
    margin: 0 0;
}
.menu-items ul {
  display: flex;
}
.menu-items a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    padding: 5px;
}

.menu-items a:hover::after,
.menu-items a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d78056;
    display: block;
}

.menu-items a:hover {
    color: #d78056;
}

.menu-items a.active {
    color: #fff;
    background-color: transparent;
}

.logo-img {
    width: 20%;
    text-align: center;
}

.logo {
    width: 100%;
    max-width: 140px;
}

.right_nav {
    display: flex;
    gap: 20px;
    justify-content: end;
}
.right_nav ul li {
  display: flex;
  align-items: center;
}
.menu-item-has-children {
  position: relative;
  display: inline-block;
  display: flex;
  align-items: center;
}
.menu-item-has-children button {
  display: flex;
  align-items: center;
}
#loginIcon {
    cursor: pointer;
}

/* Cart Button */
.cart {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
}

.cart-counter {
    position: absolute;
    top: -9px;
    right: -9px;
    background-color: #0d1321;
    color: white;
    font-size: 11px;
    padding: 0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

/* Cart Container (Initially hidden) */

.cart-container {
    position: fixed;
    top: 0;
    right: -600px;
    /* Hidden off-screen */
    width: 500px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    /* overflow-y: auto; */
    transition: right 0.3s ease-in-out;
    z-index: 9;
}

/* .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.cart-header h3 {
    margin: 0;
    display: contents;
}

.cart_sidebar {
    display: flex;
}
.close-cart {
    background-color: #0d1321;
    color: white;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-cart:hover {
    background-color: #0d1321;
}

/* Style for cart items */
.cart-items {
    margin-top: 20px;
    overflow-y: auto;
    height: 84vh;
}

.cart-item {
    display: flex;
}

.cart_title {
    font-size: 20px;
}

/* navbar dropdown start  */
/* Style for the dropdown */

.menu-items > li {
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 35px;
    right: 0;
    background-color: white;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-content ul li {
    padding: 10px 15px;
}

.dropdown-content ul li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.dropdown-content ul li:hover {
    background-color: #f1f1f1;
}

/* hide button */
.hide-btn {
    display: none;
}

.show-btn {
    display: block;
}

/* navbar end  */

/* Banner start  */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

.slider-container {
    width: 100%;
    position: relative;
}

.slide {
    width: 100%;
    display: none;
}

.slide-image {
  width: 100%;
  height: 77vh;
  object-fit: cover;
  min-height: 720px;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 1rem;
}

.slide-title {
    width: 100%;
    max-width: 50rem;
    color: white;
    font-size: 2rem;
    font-weight: 500;
    text-transform: capitalize;
}

.slide-desc {
    width: 100%;
    max-width: 50rem;
    color: lightgray;
    font-size: 1rem;
    font-weight: 300;
}

.slide-btn {
    color: black;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    text-transform: capitalize;
    transition: ease 0.3s;
}

.slide-btn:hover {
    gap: 1rem;
}

.slide-number-container {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 5;
    font-size: 1.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: rgba(211, 211, 211, 0.788);
    letter-spacing: 0.2rem;
}

.slide-number-container hr {
    width: 3rem;
    transform: rotate(130deg);
    border-color: rgba(211, 211, 211, 0.788);
}

.slider-nav {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.slider-nav-btn {
    cursor: pointer;
    background-color: rgba(211, 211, 211, 0.226);
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease 0.3s;
}

.slider-nav-btn:hover {
    background-color: white;
    color: black;
}

.dot-container {
    position: absolute;
    bottom: 1rem;
    left: 0;
    z-index: 4;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    cursor: pointer;
    height: 1rem;
    width: 1rem;
    background-color: rgba(211, 211, 211, 0.226);
    border-radius: 50%;
    display: inline-block;
    transition: ease 0.3s;
}

.active,
.dot:hover {
    background-color: white;
}

/* .fade {
  animation-name: fade;
  animation-duration: 1s;
}
@keyframes fade {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
} */

/* product card-1  start  */

@import url("https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap");

.show_more {
    width: 100%;
    max-width: 300px;
    padding: 10px 0 0px 0;
    margin: 0 auto;
    text-align: center;
}

.show_more a {
    color: #fff;
    border: 1px solid #d16935;
    background-color: #d16935;
    border-radius: 4px;
    padding: 0px 15px;
    font-size: 18px;
    transition: 0.5s;
    margin: auto;
    min-width: 130px;
    text-decoration: navajowhite;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.show_more a:hover {
    color: #182b53;
    background-color: transparent;
}

.product-section {
    padding-top: 20px;
    padding-bottom: 40px;
}

.product-container {
    width: 100%;
    /* max-width: 1793px; */
    margin: 0 auto;
    position: relative;
}

.product-row {
    width: 100%;
    display: flex;
    /*! gap: 24px; */
    flex-wrap: wrap;
}

.prod_col {
    width: 25%;
}

.product-grid .product-image img {
    width: 400px;
    height: 300px;
    max-width: 100%;
    object-fit: cover;
}

.product-section #cart-form {
    margin-top: 9px;
    display: flex;
    justify-content: center;

    gap: 20px;
}

.product-section #cart-form .d-flex {
  justify-content: space-between;
}



.product-grid .product-image button {
  color: #fff;
  border: 1px solid #d16935;
  background-color: #d16935;
  border-radius: 4px;
  padding: 8px 15px;
  font-size: 16px;
  transition: 0.5s;
  cursor: pointer;
  width: 100%;
  height: 46px;
  max-width: 126px;
}




.price2 .label-flex {
  position: relative;
  gap: 6px;
  margin-left: 15px;
  padding-left: 25px;
}
.price2 .label-flex input:checked ~ .checkmark::after {display: block;}
.price2 .label-flex input:checked ~ .checkmark::after {display: block;}
.price2 .label-flex .checkmark::after {height: 8px; width: 8px; background: #fff; position: absolute; left: 0; top: 0;right: 0; bottom: 0; content: "";  display: none;}
.price2 .checkmark::after { left: 0; top: 0; width: 10px; height: 10px; border-width: 0 3px 3px 0;  -webkit-transform: rotate(45deg);  background: white; border-radius: 50%; right: 0; margin: auto; bottom: 0;}
.price2 .checkmark::after { content: ""; position: absolute; display: none;}
.price2 .label-flex input:checked ~ .checkmark { background-color: #d16935; border: 1px solid #d16935;}
.price2 .label-flex .checkmark { position: absolute; top: 0;left: 0; height: 16px; width: 16px;background-color: #eee; border-radius: 50%; border: 1px solid #626262; bottom: 0; margin: auto;}
.price2 .label-flex input {
  opacity: 0;
  position: absolute;
  height: 16px;
  width: 100%;
  left: 0;
  top: 0;
  margin: auto;
  bottom: 0;
}









.product-grid #cart-form input[type="number"] {
    width: 20%;
}

.product-grid .product-image button:hover {
    color: #d16935;
    background-color: transparent;
    border: 1px solid #d16935;
}

.product-heading {
    padding: 50px 0;
    text-align: center;
}

a:hover {
    text-decoration: none;
}
.product-grid {
    font-family: "Blinker", sans-serif;
    font-weight: 400;
    text-align: center;
    padding: 12px;
    margin: 0 8px 20px;
    border: 1px solid #0d13211f;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0px 13px #0d13211f;
    border-radius: 10px;
}
/* .product-grid {
    font-family: "Blinker", sans-serif;
    font-weight: 400;
    text-align: center;
    padding: 12px;
    margin: 0 20px;
    border: 2px solid #dedade;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
} */
.product-grid h3.title {
  font-family: "Blinker", sans-serif;
  min-height: 70px;
}

/* .product-grid:hover {
   border: 2px solid #003844; 
    border: 2px solid #e3e3e3;
} */

.product-grid:hover {
    border: 1px solid #d169354f;
    box-shadow: 0 2px 13px #d169354f;
}

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

.product-grid .product-image a.image {
    display: block;
}

/* .product-grid .product-image img{
    width: 100%;
    height: auto;
} */

.product-image .pic-1 {
    transition: all 0.5s ease;
}

.price2 {
  text-align: right !important;
  display: flex;
  align-items: center;
  justify-content: right;
  font-size: 16px;
}
.price2 input {
  margin-left: 22px;
  height: 16px;
  width: 16px;
}




/* .product-grid:hover .product-image .pic-1 {
    opacity: 0;
} */

.product-image .pic-2 {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    display: none;
}

.product-grid:hover .product-image .pic-2 {
    opacity: 1;
}

.product-grid .product-links {
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 1;
    border: 1px solid #aaa;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.3s ease 0.3s;
}
.product-overlay table {
    width: 100% !important;
    margin: auto;
}

/* .product-overlay {
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  transition: all 0.5s ease;
  background: #fff;
  margin: -35px 0 15px;
  position: relative;
} */

.product-overlay {
    width: 100%;
    height: auto;
    backface-visibility: hidden;
    transition: all 0.5s ease;
    background: #fff;
    margin: -84px 0 15px;
    position: absolute;
    opacity: 0;
}
.product-grid:hover .product-overlay {
    opacity: 1;
    background: #ffffffe3;
    box-shadow: 0 0 6px #0000002e;
}
.product_title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 15px 40px;
}

.product_text {
    font-size: 15px;
    color: #fff;
    padding: 1px 20px !important;
    text-align: justify;
}

.product_text strong {
    color: #d16935;
}

.product-grid:hover .product-links {
    opacity: 1;
}

.product-grid .product-links li {
    margin: 0;
    display: block;
}

.product-grid .product-links li a i {
    line-height: inherit;
}

.product-grid .product-links li a {
    color: #aaa;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 37px;
    height: 40px;
    width: 40px;
    margin: 0;
    border-bottom: 1px solid #aaa;
    display: block;
    position: relative;
    transition: all 0.3s ease 0.1s;
}

.product-grid .product-links li a:before,
.product-grid .product-links li a:after {
    content: attr(data-tip);
    color: #fff;
    background: #000;
    font-size: 12px;
    line-height: 20px;
    padding: 5px 10px;
    border-radius: 5px 5px;
    white-space: nowrap;
    display: none;
    transform: translateY(-50%);
    position: absolute;
    right: 53px;
    top: 50%;
}

.product-grid .product-links li a:after {
    content: "";
    height: 15px;
    width: 15px;
    padding: 0;
    border-radius: 0;
    transform: translateY(-50%) rotate(45deg);
    right: 50px;
}

.product-grid .product-links li a:hover:before,
.product-grid .product-links li a:hover:after {
    display: block;
}

.product-grid .product-links li a:hover {
    color: #fff;
    background-color: #003844;
}

.product-grid .product-content {
    padding: 25px 0 0;
}

.product-grid .rating {
    color: #ffd200;
    font-size: 14px;
    padding: 0;
    margin: 0 0 10px;
    list-style: none;
    display: inline-block;
}

.product-grid .rating li:last-child {
    color: #111;
    display: inline-block;
}

.product-grid .title {
    font-size: 19px;
    font-weight: 600;
    /* text-transform: capitalize; */
    /* text-transform: uppercase; */
    margin: 0 0 5px;
}

.product-grid .title a {
    color: #000;
    transition: all 0.3s ease 0s;
    text-decoration: none;
}

.product-grid .title a:hover {
    color: #003844;
}

.product-grid .price {
    color: #000;
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 7px;
    padding: 10px 0;
}

.product-grid .add-cart {
    color: #003844;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 11px 12px 10px;
    border: 1px solid #003844;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.product-grid .add-cart i {
    margin: 0 5px 0 0;
}

.product-grid .add-cart:hover {
    color: #fff;
}

.product-grid .add-cart:before {
    content: "";
    background: #003844;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.product-grid .add-cart:hover:before {
    width: 100%;
}

@media screen and (max-width: 990px) {
    .product-grid {
        margin-bottom: 30px;
    }
}

/* product card-1  end  */

/* marquee slide start  */
.logoMarqueeSection .product-grid2 h6 {
  color: #d16935;
  font-weight: 400;
  font-size: 19px;
  margin-top: 5px;
  padding: 0;
  margin-bottom: 5px;
}

.logoMarqueeSection .industry-left {
    /* background-image: url(../images/construction.jpg);
  background-size: cover;

  width: 100%;
  height: 100%; */
  margin-right: 60px;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 4;
}

.logoMarqueeSection .industry-left::before {
    background-color: #182b53;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.marqueelogo {
    width: auto;
    max-width: none;
}

.logoMarqueeSection.logoMarqueeSection.construction .owl-carousel .owl-nav {
    display: none !important;
}

.logoMarqueeSection.construction .single-testimonial .product-grid2{margin: 0;border: none;}

.logoMarqueeSection.construction .owl-item {
  height: auto !important;
}
.logoMarqueeSection.construction .row{
  gap: 60px;
}
.logoMarqueeSection h2 {
    /* position: absolute; */
    text-align: left;
    font-size: 55px;
    /* opacity: 0.5; */
    background: #f3f3f333;
    padding: 20px;
    color: #fff;
    border-radius: 7px;
}

.logoMarqueeSection.construction::before {
    content: "";

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-color: rgb(41, 48, 64);

    opacity: 0.8;
}

.marquee_title {
    color: #000;
    text-align: center;
    display: block;
    padding: 10px 0 0;
}

.logoMarqueeSection .col-md-4 {
    width: 40%;
}

.logoMarqueeSection .col-md-8 {
    width: 60%;
}

.logoMarqueeSection {
    /* padding-top: 90px; */
    padding-bottom: 0;
    overflow: hidden;
    /* margin-top: -55px; */
    margin-top: 21px;
    position: relative;
    z-index: 1;
    color: #ffff;
}

.logoMarqueeSection.construction {
    background-image: url(../images/construction1.jpg);
    padding: 110px 0 90px;
    background-size: cover;
    background-position: center;
}

.logoMarqueeSection.construction button {
    display: none;
}

/* .logoMarqueeSection.construction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(21, 35, 69);
  opacity: 0.5;
} */

#logoMarqueeSection {
    margin: 0 auto;
    height: 100%;
}

#logoMarqueeSection .product-grid2 {
    background-color: #fff;
}

.product-section_2 .prod_child1 {
    width: 50%;
}

.product-section_2 .prod_child2 {
    width: 50%;
}

.default-content-container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 5rem;
    padding-right: 5rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    width: 2270px;
    min-height: auto;
    z-index: -11;
}

div.marquee > a > img {
    /* height: 120px; */
    height: 70px;
}

.logoMarqueeSection > div > div {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
}

.logoMarqueeSection .marquee-wrapper {
    display: inline-block;
    white-space: nowrap;
}

.logoMarqueeSection .marquee {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    transform: translate3d(0%, 0, 0);
    animation-name: marquee;
    animation-duration: 57s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.logoMarqueeSection .marquee a {
    display: inline-block;
    white-space: nowrap;
    min-width: 150px;
    text-align: center;
    border: 1px solid #ccccccb8;
    padding: 20px;
    border-radius: 10px;
    margin: 0 2px;
}
/* .logoMarqueeSection .marquee a {
    display: inline-block;
    white-space: nowrap;
    padding-right: 25px;
} */

.logoMarqueeSection h3 {
    text-align: left;
    font-size: 40px;
    font-weight: 500;
    padding: 60px 20px 20px 20px;
    color: #182b53;
    font-size: 40px;
    margin: 0 0 0pxpx 0;
}

.logoMarqueeSection .marquee-wrapper:hover .marquee {
    animation-play-state: paused !important;
}

@keyframes marquee {
    0% {
        transform: translate3d(0%, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* marquee slide end  */

/* product card-2 start  */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap");

/* * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
} */

.product2_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.product2_heading h2 {
    font-size: 20px;
    font-weight: 400;
    color: #d16935;
}

.product2_heading .view_more {
    color: #000;
    border: 1px solid #d16935;
    border-radius: 4px;
    padding: 10px 17px;
    font-size: 15px;
    color: #d16935;
    background-color: transparent;
    text-decoration: navajowhite;
    font-weight: 500;
}
.product2_heading .view_more:hover {
    color: #fff;
    background-color: #182b53;
    border: 1px solid #182b53;
}

.product-grid2 {
    font-family: "Blinker", sans-serif;
    text-align: center;
    padding: 10px 10px;
    margin: 0 auto;
    margin-bottom: 0px;
    border: 1px solid #dedade;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    /* height: 269px;*/
    /* width: 250px; */
    background-color: #ededed;
    position: sticky;
    border-radius: 8px;
}

/* .product-grid2 h6 {
    font-size: 15px;
    padding: 10px 0;
    font-weight: 800;
} */

.product-grid2 h6 {
    font-size: 20px;
    padding: 10px 0;
    font-weight: 500;
    margin-bottom: 8px;
    color: #0d1321;
}

.product-grid2 p {
    font-size: 16px;
    margin-bottom: 11px;
    color: #d16935;
    margin: 0;
}

.product-section_2 {
    /* height: 100vh; */
    padding-top: 10px;
    padding-bottom: 50px;
    background-color: #ededed;
}

.product2_main {
    display: flex;
    width: 100%;
    gap: 16px;

    /* display: grid;
  place-items: center; */
    /* min-height: 100vh; */
    /* color: #fff; */
    /* font-family: "Playfair Display", serif; */
}

.product_row2 {
  width: 33.33%;
  background-color: #fff;
  position: sticky;
  padding: 20px 20px 16px;
  border-radius: 10px;
}
.product_childmain {
    display: flex;
    gap: 24px;
}

.card2 {
    position: relative;
    /* width: 320px; */
    height: 141px;
    width: 160px;
    aspect-ratio: 9/14;
    overflow: hidden;
    /* border-radius: 10px; */
    /* display: flex;
  align-items: flex-end;
  justify-content: flex-end; */
    /* box-shadow: 0 15px 30px rgba(0,0,0,0.05),
              0 15px 40px rgba(0,0,0,0.05); */
min-height: 160px;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
}

.card2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: 0.4s;
}

.card2:hover img {
    transform: scale(1.15);
}

/* product card-2 end  */

/* footer start  */

/* .footer_top {
  margin: 0 auto;
  width: 1500px;
}
.footer_top ul {
  display: flex;
  gap: 7px;
}
.footer_logo img {
  width: 150px;
}
.footer_icon {
  width: 20px;
  height: 20px;
 } */

.footer_container {
    max-width: 1519px;
    margin: auto;
}

.footer_row {
  display: flex;
  gap: 25px;
}

ul {
    list-style: none;
}
.right_nav ul {
    padding: 0;
}

.footer {
    background-color: #0d1321;
    padding: 00 30px 40px 30px;
}

.footer ul li:nth-child(1) i {
    transform: rotate(90deg);
}
.footer ul {
    padding: 0;
}
/* .footer .container {
  max-width: 1600px;
} */

.footer-col {
    width: 33.33%;
    /* padding: 0 15px; */
    /* text-align: center; */
}

.footer-col img {
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #fff;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;

    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: rgb(209, 105, 53);
}

.botm_footer {
    font-size: 16px;
    color: #fff;
    padding: 16px 0px;
    background-color: rgb(209, 105, 53);
}

.botm_footer p {
    font-size: 16px;
    color: #fff !important;
    padding-top: 0;
    text-align: center;
    font-weight: 500;
    margin: 0;
}

.botm_footer p a {
    color: #182b53;
    text-decoration: none;
    transition: 0.5s;
}

.botm_footer p a:hover {
    color: #f3f3f3;
    text-decoration: underline;
}

/* footer end  */

/* heading design start  */

.nine {
    width: 100%;
    max-width: 976px;
    padding: 0 0 0px 0px;
    margin: 0 auto;
}

.nine h1 {
  text-align: center;
  font-size: 50px;
  text-transform: uppercase;
  color: #d16935;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin-bottom: 12px;
}

.nine h1 span {
    margin-top: 5px;
    font-size: 15px;
    color: #444;
    word-spacing: 1px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
    font-weight: 500;

    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 20px;
    align-items: center;
}

.nine h1 span:after,
.nine h1 span:before {
    content: " ";
    display: block;
    border-bottom: 1px solid #d16935;
    border-top: 1px solid #d16935;
    height: 5px;
    background-color: transparent;
}

/* heading design end  */

.nine h2 {
    text-align: center;
    font-size: 50px;
    text-transform: uppercase;
    color: #d16935;
    letter-spacing: 1px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.nine h2 span {
    margin-top: 5px;
    font-size: 15px;
    color: #444;
    word-spacing: 1px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 20px;
    align-items: center;
}

.nine h2 span:after,
.nine h2 span:before {
    content: " ";
    display: block;
    border-bottom: 1px solid #d16935;
    border-top: 1px solid #d16935;
    height: 5px;
    background-color: transparent;
}

/* OUR CUSTOMERS */
.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.owl-nav button.owl-prev {
    left: 50%;
}

.owl-nav button.owl-next {
    right: 0;
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

.owl-dots button.owl-dot {
    width: 16px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.owl-dots button.owl-dot.active {
    background-color: #be6237 !important;
}

.owl-dots button.owl-dot:focus {
    outline: none;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*! background: rgba(255, 255, 255, 0.38) !important; */
    left: 60%;
}

.owl-nav button:focus {
    outline: none;
}

.owl-item {
    /* height: 300px !important; */
    /* Adjust this value as needed */
    display: flex;
    background-color: transparent;
    border-radius: 4px;
}

.owl-item.active {
    background-color: transparent !important;
}

/* .item {
    width: 100%;
} */

.owl-item.cloned {
    margin-right: 10px;
}

.logo-scroller {
    position: relative;
    display: block;
    width: 100%;
    /* Will fit parent container at 100% */
    margin: 0 auto;
    padding-bottom: 20px;
}

.logo-scroller-content {
    padding: 100px 0;
}

.logo-scroller-items {
    margin: -58px 0;
    overflow: hidden;
    cursor: default;
}

.logo-scroller-row {
    display: flex;
    position: relative;
    white-space: nowrap;
    justify-content: space-around;
    /* Ensures logos have space around them */
    gap: 70px;
    /* Adds consistent space between logos */
}

.logo-scroller-item {
    position: relative;
    flex: 1 1 auto;
    /* Flexible sizing */
    min-width: 150px;
    /* Prevent logos from getting too small */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-scroller-item span {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.lines {
    position: absolute;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    left: 0;
}

.line {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 0, 255, 0) 0%,
        #d4d4d4 50%,
        rgba(255, 0, 255, 0) 100%
    );
    opacity: 0.7;
    animation: moveLines 5s linear infinite;
}

.line:nth-child(1) {
    /*! left: 10%; */
    animation-delay: 0s;
}

.line:nth-child(2) {
    /*! left: 30%; */
    animation-delay: 1s;
    top: 8px;
}

.line:nth-child(3) {
    /*! left: 50%; */
    animation-delay: 2s;
    top: 16px;
}

.line:nth-child(4) {
    left: 70%;
    animation-delay: 3s;
}

.line:nth-child(5) {
    left: 90%;
    animation-delay: 4s;
}

/* Default logo size */
.logo-scroller-item span img {
    max-width: 100%;
    /* Ensure the logo doesn't overflow horizontally */
    max-height: 150px;
    /* Set consistent max height for logos */
    object-fit: contain;
    /* Ensure logos maintain aspect ratio */
    display: block;
    /* Remove inline spacing issues */
}




.product-section.product_section_new {
  padding-bottom: 0;
  padding-top: 0;
}
.product-section.product_section_new .product-row {
  margin-top: -10px;
}

.product-section.product_section_new  .nine {
  padding: 0;
}
.product_section_new .owl-dots button {
  background: #e1e1e1 !important;
}


.product_section_new .prod_col.item {
  width: 100%;
}
.product_section_new .prod_col.item .product-grid {
  margin: 10px 0;
}






.product-section_2 .prod_child1 .prod_col.item .product-grid {
  margin: 0 8px 10px;
  background: #ededed99;
  box-shadow: none !important;
  border: 1px solid #0d13211a;
}

.product-section_2 .prod_child1 .prod_col.item {
  width: 50%;
  float: left;
}

.product-section_2 .prod_child1 {
  width: 100%;
}







.product-section_2 .prod_child1 .prod_col.item {
  width: 50%;
  float: left;
  display: none;
}


.product-section_2 .prod_child1 .prod_col.item:first-child, .product-section_2 .prod_child1 .prod_col.item:nth-child(2), .product-section_2 .prod_child1 .prod_col.item:nth-child(3), .product-section_2 .prod_child1 .prod_col.item:nth-child(4) {
  display: block;

}
.product-section_2 .prod_child1 .product-grid .product-image img {
  width: 373px;
  height: 175px;
  max-width: 100%;
  object-fit: cover;
}
.product-section_2 .prod_child1 .product-grid .title {
  font-size: 18px;
}
.product-section_2 .prod_child1 .quantity-control .qty-value1 input.qty-value {
  max-width: 28px !important;
}
.product-section_2 .prod_child1 .d-flex {
  display: flex;
  justify-content: space-between;
}
.product-section_2 .prod_child1 .product-grid .price {
  font-size: 25px;
}

.product-section_2 .prod_child1 .price2 .label-flex {
  margin-left: 8px;
  padding-left: 22px;
}
.product-section_2 .prod_child1 .btn-decrement {
  width: 28px;
}

.product-section_2 .prod_child1 .product-grid .product-image button {
  width: 50px;
}

.product-section_2 .prod_child1 .product-grid .product-image button i {
  display: inline-block !important;
}
.product-section_2 .prod_child1 .product-grid .product-image button span {
  display: none;
}













.footer_timg img {
    height: 185px;
    width: 250px;
    border-radius: 10px;
    max-width: 100%;
}

.footer_tdetails img {
    height: 50px;
    width: 50px;
}

.footer_tdetails h6 {
    font-size: 18px;
    padding: 8px 0;
    color: #fff;
}

.footer_tdetails h6 a {
    font-size: 18px;
    padding: 8px 0;
    color: #fff;
}

.footer_tdetails p {
    font-size: 13px;
    color: #d16935;
    position: relative;
}

.footer_tdetails p::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #d16935;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer_Trow {
    display: flex;
    align-items: center;
    gap: 35px;
    width: 33.33%;
    justify-content: center;
}

.footer_Tmain {
    display: flex;
    gap: 30px;
    justify-content: space-around;
}

.footer_top {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    background: #0d1321;
}

.footer_top > .product-container {
    position: relative;
    z-index: 2;
}

.sec-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 3px;
    background: #000;
}

.sec-title h2 {
    font-size: 60px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--blue);
}

.sec-title p {
    font-size: 18px;
    line-height: 28px;
}
.testimonial-area .owl-stage {
  display: flex !important;
  align-items: stretch;
  height: auto;
}
.testimonial-area {
    background: #ededed;
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    background-image: url(../images/testimonial-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f999;
    background-color: #4f5c7c;
    margin-bottom: 0px;
    overflow: hidden;
}

.testimonial-area::after {
    background: #d16935;
    content: "";
    position: absolute;
    width: 143px;
    height: 242px;
    bottom: -91px;
    translate: inherit;
    transform: rotate(-47deg);
    left: -36px;
    top: inherit;
    z-index: 9;
}

.testimonial-area .owl-carousel {
    overflow: hidden;
    padding: 0 20px;
    margin: 0px -40px;
    padding-right: 40px;
}

.testimonial-area .owl-stage-outer {
    /* margin-left: -60px; */
    width: calc(100% + 100px);
}

.logoMarqueeSection.construction .product-grid2 h6 {
  font-size: 20px;
}
.construction .single-testimonial p {
  padding: 0;
  margin-bottom: 10px;
}

.single-testimonial {
    text-align: left;
    position: relative;
    z-index: 2;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
}
.client-details ul {
    padding: 0;
    margin: 8px 0 0;
}
.single-testimonial p {
    color: #000;
    font-size: 15px;
    line-height: 24px;
    padding: 16px 0px 0;
    position: relative;
    z-index: 3;
    line-height: 1.7;
    font-weight: 300;
}
.round {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.round-1::before {
    content: "";
    position: absolute;
    left: 88px;
    top: -7px;
    width: 50px;
    height: 7px;
    background: #fff;
    border-radius: 30px;
}

.round-1::after {
    content: "";
    position: absolute;
    left: -7px;
    top: 62px;
    width: 7px;
    height: 50px;
    background: #fff;
    border-radius: 30px;
}

.round-2::before {
    content: "";
    position: absolute;
    right: 87px;
    bottom: -7px;
    width: 50px;
    height: 7px;
    background: #fff;
    border-radius: 30px;
    z-index: 1;
}

.round-2::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: 62px;
    width: 7px;
    height: 50px;
    background: #fff;
    border-radius: 30px;
    z-index: 1;
}

.client-video {
    padding-right: 15px;
}

.client-info {
    position: relative;
    z-index: 3;
}

.client-info a {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
    font-size: 22px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: safe;
    text-align: left;
    /*! padding-bottom: 50px; */
}

.client-info h6 {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-bottom: 5px;
    margin-top: 0;
}

.client-info span {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    color: #a4a2a2;
    font-weight: 500;
    display: block;
    margin-bottom: 0;
}
.sec-title.white-title h2 {
    color: #fff;
}

.owl-dots button {
    background: #fff !important;
    width: 10px;
    height: 10px;
    border-radius: 26px;
    margin: 0 5px;
    transition: 0.3s;
}

.testimonial-area .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.d-flex {
    display: flex;
}

.testimonial-area .col-md-4 {
    width: 33.33%;
}
.testimonial-area .row.d-flex {
    gap: 70px;
}

.testimonial-area .col-md-8 {
    width: 66.66%;
}

.testimonial-area .nine {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.testimonial-area .nine span {
    color: #fff;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-item .client-info img {
    max-width: 100%;
    width: 88px !important;
    height: 88px;
    border-radius: 100%;
    border: 2px solid #be6237;
    object-fit: cover;
}
.owl-carousel .owl-item ul {
    display: flex;
}

.owl-carouselr .owl-nav button span {
    color: #fff;
    font-size: 26px;
    position: relative;
    top: -2px;
}

.owl-carousel .owl-nav {
    position: relative;
    padding: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel .owl-nav button {
    background: #d16935 !important;
    width: 36px;
    height: 36px;
    margin: 0 4px;
    border-radius: 50%;
    position: absolute;
}

.owl-carousel .owl-nav button span {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
}

.testimonial-area::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #4f5c7c;
    opacity: 0.5;
}

.logoMarqueeSection .owl-item {
    margin-left: 10px !important;
}

.logoMarqueeSection.construction .owl-item {
    margin-left: 0 !important;
}


.logoMarqueeSection .single-testimonial {
  background-color: transparent;
  border: 0px;
  /* width: 179.33%; */
  width: 100%;
  padding: 0;
}
.logoMarqueeSection .single-testimonial .product-grid2 {
  background-color: #fff;
  margin: 0px 30px;
  width: 100%;
}

.logoMarqueeSection.construction .single-testimonial .product-grid2{padding: 0;}

.right_part {
  width: 40%;
  padding-right: 10px;
}

.cart_main {
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  gap: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #80808059;
}
.cart_col1 {
    width: 20%;
}
.cart_col2 .quantity-control .qty-value1 {
  height: 28px;
}
.cart_col1 img {
    /* border-radius: 15px; */
    /* height: 115px; */
    width: 100%;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}
.cart_col2 {
    width: 80%;
}

.cart_col3 {
    width: 20%;
}

.cart_heading {
    text-align: left;
    padding: 0;
    font-size: 15px;
    font-weight: 400;
}

.quantity-control {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin-bottom: 0;
}

.btn-decrement {
    background-color: #0d1321;
    color: #fff;
    border: none;
    padding: 0px 10px;
    font-size: 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    height: 46px;
    line-height: 34px;
    width: 23px;
    justify-content: center;
    display: flex;
    align-items: center;
}
.quantity-control .qty-value1 input.qty-value {
  width: -webkit-fill-available;
  font-size: 18px;
  text-align: center;
  border: none;
  padding: 0;
}
.quantity-control .qty-value1 {
  width: 40px;
  padding: 0 8px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #0d1321;
  border-radius: 5px;
  margin: 0 5px;
  height: 44px;
  display: flex;
  align-items: center;
}
.quantity-control button {
    background-color: #0d1321 !important;
    color: #fff !important;
    border: none;
    padding: 7px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 30px;
    height: 30px;
    line-height: 1px;
}

.remove_btn {
    color: #fff;
    border: 1px solid #d16935;
    background-color: #d16935;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 19px;
    transition: 0.5s;
    cursor: pointer;
    width: 100%;
}
.remove_btn:hover {
    background-color: #fff;
    color: #d16935;
}

.Checkout_botm {
    display: flex;
    position: absolute;
    bottom: 60px;
    right: 20px;
    justify-content: center;
    align-items: center;
    width: 500px;
}

.cart_subtotal_div {
    width: 50%;
}

.checkout_btn_div {
    width: 50%;
}

.cart_subtoal {
    font-size: 20px;
}

img.remove-btn {
    max-width: 30px;
    max-height: 30px;
}

.cart_total {
    font-size: 27px;
}

#cart-form {
    margin-top: 5px;
}

#cart-form input[type="number"] {
    padding: 8px;
    border-radius: 3px;
    border: 1px solid black;
}

/* alert */
#alertContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 300px;
}

.alert {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
}

.alert.show {
    opacity: 1;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-weight: bold;
    cursor: pointer;
}
.product-grid h3.title .text-muted {
  display: block;
}
/* For larger screens (desktop) */


@media (max-width: 1600px) {
    .product-grid {
  margin: 0 6px 25px;
}
.quantity-control .qty-value1 input {
  max-width: 50px !important;
}
.product-grid .product-image img {
  height: 210px;
}
.quantity-control .qty-value1 input.qty-value {
  max-width: 39px !important;
}
.logoMarqueeSection h2 {
  font-size: 45px;
}
.product_row2 {
  padding: 20px 8px 16px;

}
.container-fluid {
  padding: 0 35px;
}
.product-section_2 .prod_child1 .price2 .label-flex {
  font-size: 14px;
}
.product-section_2 .prod_child1 .product-grid .title {
  font-size: 16px;
}
.product-section_2 .prod_child1 .product-grid .product-image img {
  height: 120px;
}
.product-section_2 .prod_child1 .btn-decrement {
  width: 18px;
}
.quantity-control .qty-value1 {
  width: 40px;
  padding: 0 5px;
  margin: 0 3px;
}
.product2_heading {
  padding: 0 8px;
}

 .product-section_2 .prod_child1 .product-grid .product-image button {
    width: 42px;
    padding: 0;
    text-align: center;
  }

 .product-section_2 .prod_child1 .product_text {
  font-size: 14px;
  padding: 1px 12px !important;
}

 .product-section_2 .prod_child1 .product-grid .price {
    font-size: 19px;
  }

.product-section_2 .prod_child1 .price2 .label-flex .checkmark {
  height: 14px;
  width: 14px;
}
.product-section_2 .prod_child1 .price2 .label-flex {
  margin-left: 8px;
  padding-left: 18px;
}
}

@media (max-width: 1400px) {

   .product-section_2 .product_row2{
    width: 100%;
    padding: 15px;
  }
  .product-section_2 .prod_child1 .quantity-control .qty-value1 input.qty-value {
  max-width: 40px !important;
}
 .product2_heading {
    padding-bottom: 6px;
  }
  .product-section_2 .prod_child1 .product-grid .product-image img {
    height: 164px;
  }
  .product-section_2 .prod_child1 .prod_col.item {
  width: 25%;
}
      .product-grid .product-image button {
    max-width: 115px;
  }
.product-section #cart-form div {
  gap: 0 !important;
}
  .quantity-control .qty-value1 input {
    max-width: 42px !important;
  }
.product-grid .price {
  font-size: 26px;
}
    .logoMarqueeSection.construction .row {
  gap: 40px;
}
  .slide-image {
    height: 50vh;
    min-height: 500px;
  }
  .qty-value1 input {
  max-width: 40px;
}
.footer_Trow {
  gap: 17px;
}

.product-grid .product-image button {
  padding: 8px 10px;
  font-size: 15px;
}

.footer_tdetails h6, .footer_tdetails h6 a {
  font-size: 16px;
}
.product-grid {
  margin: 0 8px 16px;
}
.price2 .label-flex {
  margin-left: 12px;
  padding-left: 22px;
}
.quantity-control .qty-value1 {
  padding: 0 0px;
}
.product-grid .product-image img {
  height: 190px;
}
    .menu-items a {
        font-size: 15px;
    }

    .product-container {
        margin-left: 0;
        max-width: 100%;
    }
    .btn-decrement {
  width: 16px;
    }
.quantity-control input {
  padding: 0 6px;
}
.product-section #cart-form {
  gap: 10px;
}
    .logoMarqueeSection.construction {
        padding: 80px 0;
    }

  .logoMarqueeSection h2 {
    font-size: 41px;
  }
  .logoMarqueeSection .industry-left {
  margin-right: 20px;
  }
    .logoMarqueeSection .single-testimonial .product-grid2 {
        margin: 0;
    }

    .nine h2 {
        font-size: 40px;
    }

    .product2_main {
        flex-wrap: wrap;
    }

    .product_row2 {
        width: 31%;
    }
  .product2_main {
    gap: 20px;
    text-align: center;
    justify-content: center;
  }
    /* .slide-image {
    height: 48vh;
  } */

  .product-grid2 {
  margin-bottom: 15px;
  }
  .product_row2 {
    width: 29.33%;
    padding: 15px;
  }
.product-section_2 .prod_child1 .product-grid2:last-child, .product-section_2 .prod_child2 .product-grid2:last-child {
  margin-bottom: 0;
}
.product-grid2 h6 {
  font-size: 18px;
  margin-top: 15px;
}
.logo-scroller-row {
  gap: 45px;
}

.logo-scroller-item {
  min-width: 80px;
}

.product_childmain {
  gap: 15px;
}
.card2 {
  height: 100px;
  width: 110px;
}
    .nine h1 {
        font-size: 40px;
    }

    .testimonial-area {
  padding: 80px 0 60px;
    }
    .footer-col ul li a {
  font-size: 15px;
    }
}

@media (max-width: 1199.98px) {
    .product-grid .title {
  font-size: 18px;
    }
    .construction .single-testimonial p {
  margin-bottom: 10px;
}
    .product_row2 {
        width: 100%;
    }
.logoMarqueeSection.construction {
    padding: 50px 0;
  }
.logoMarqueeSection.construction h2{margin-top: 0;;}
.logoMarqueeSection.construction .industry-left {
  margin: 0;
  padding: 0;
  }
.footer-col ul li a {
  font-size: 15px;
}
  .logoMarqueeSection.construction h2 {
    font-size: 38px;
  }
.menu-items {
  gap: 16px;
}
.slide-image {
    min-height: auto;
    height: auto;
  }
  .menu-items a {
    font-size: 15px;
  }
   .prod_col {
        width: 33.33%;
    }

    .testimonial-area .col-md-4, .testimonial-area .col-md-8 {
  width: 100%;
}
.testimonial-area .row.d-flex {
  display: block;
}
.testimonial-area .testimonial-content {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 999;
}
.testimonial-area {
    padding: 35px 0 50px;
  }
}

@media (max-width: 991.98px) {

 .product-grid .product-image img {
    height: 230px;
  }

    .logo-scroller-item span img {
        max-height: 150px;
        /* Larger height for big screens */
    }

    .menu-items > li {
        margin-right: 1px;
    }

    .prod_col {
        width: 50%;
    }

    .logoMarqueeSection.construction .row.d-flex {
        display: block !important;
    }

    .logoMarqueeSection .industry-left {
        padding: 0px 0px 20px 0;
    }

    .logoMarqueeSection .col-md-4 {
        width: 100%;
    }

    .logoMarqueeSection .col-md-8 {
        width: 100%;
    }

    .owl-nav button {
        display: none;
    }
}

@media (max-width: 992px) {
    .prod_col {
        width: 50%;
    }

      .product-section_2 .prod_child1 .product-grid .product-image img {
    height: 220px;
  }

    .menu-items li {
        margin-left: 1px;
    }

    .testimonial-area {
        padding: 40px 20px 20px 20px;
    }

    .testimonial-area .d-flex {
        display: block;
    }
.footer_row {
  display: block;
  gap: 0;
}
    .testimonial-area .col-md-8 {
        width: 100%;
    }
.footer-col {
  width: 100%;
  text-align: center;
}
    .testimonial-area .col-md-4 {
        width: 100%;
    }

    .logoMarqueeSection h2 {
        font-size: 41px;
    }

    .footer_Trow {
        flex-direction: column;
    }

    .footer_top {
        padding: 52px 0;
    }
.footer-col h4::before {
  right: 0;
  margin: auto;
}
    .footer_timg {
        margin-bottom: 13px;
    }
.footer-col img {
  margin-bottom: 0;
}

.footer_tdetails h6 {
  margin: 0;
}

.footer_tdetails {
  text-align: center;

  width: 100%;

}


.footer_timg img {
  width: 100%;
  max-width: 100%;
}
    .footer {
        padding: 30px 20px 20px 20px;
    }

    .footer_row {
        flex-wrap: wrap;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer_Trow {
        width: 27.33%;
        align-items: start;
        gap: 10px;
    }

.footer_Tmain {
  gap: 2%;
}

     .footer_Trow {
    width: 31.33%;
    margin-bottom: 16px;
    gap: 0px;
  } 
    .product-section_2 .prod_child1 .prod_col.item {
    width: 50%;
  }
}

/* navbar dropdown end  */

@media (max-width: 768px) {
.menu-items ul {
  display: block;
}

    .single-testimonial p {
  text-align: center;
}
.owl-carousel .owl-item .client-info img {
  margin: auto;
}
.client-info {
  display: block;
  text-align: center;
  padding-bottom: 30px;
}
  .product-section_2 .prod_child1 .product-grid .product-image img {
    height: 160px;
  }
  .client-video {
  padding-right: 0;
  text-align: center;
}
    .nine h1 span {
  display: block;
  padding: 0 45px;
}
.single-testimonial p {
  padding: 0;
  margin-bottom: 0;
}
.owl-carousel .owl-item ul {
  display: flex;
  justify-content: center;
}
  .logoMarqueeSection.construction h2 {
    font-size: 32px;
  }
  .product-grid {
    margin: 0 5px 15px;
  }
    .footer_timg img {
  height: 120px;
}
  .product-grid .product-image img {
    height: 170px;
    width: 100%;
  }
    .container-fluid {
    padding: 0 15px;
  }
    /* .navbar {
        opacity: 0.95;
    } */
.single-testimonial {
  padding: 25px;
}
    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        /* display: block;
        position: relative; */
        height: 70px;
    }

    .navbar-container input[type="checkbox"] {
        /* position: absolute; */
        display: none;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;

        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 2px;
        width: 100%;
        border-radius: 10px;
        background: #d16935;
        z-index: 2;
    }




    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }
 .navbar .menu-items.main .menu-in{left:0} 
 .navbar .menu-items .menu-in {
   left: -900px;
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #2d2d365e;
    max-width: 100%;
  }

  .navbar .menu-items.main .menu-in .hamburger-lines.close {
    display: block !important;
    position: absolute;
    right: 10px;
    background: #fff;
    padding: 0;
    box-shadow: 0 -2px 5px #ccc;
    border: 1px solid #d16935;
    border-radius: 50%;
    height: 46px;
    width: 46px;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: 10px;
    font-size: 25px;
    color: #d16935;
    left:initial;
  }


    .navbar .menu-items .menu-in .menu {
background: #fff;
    max-width: 360px !important;
    width: 360px;
    box-shadow: 0 0 57px #2d2c3782;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
padding: 23px 15px;
    position: fixed;
    left: -900px;
    transition: all 0.5s;
    -webkit-transition: all 0.25s;
  }

 .navbar .menu-items.main .menu-in .menu {
    left: 0;
  }
    .navbar .menu-items li {
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    /* .logo {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    } */

    .dropdown-content {
        left: 0;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

    .logo-scroller-item {
        min-width: 100px;
    }

    .logo-scroller-item span img {
    max-height: 70px;
  }

    .prod_col {
        width: 50%;
    }
.logo-scroller-content {
  padding: 60px 0;
}
.logo-scroller-row {
    gap: 30px;
  }
    .logoMarqueeSection h2 {
        font-size: 34px;
    }

    .product_row2 {
        width: 100%;
    }

    .nine h2 {
        font-size: 30px;
    }

    .nine h1 {
        font-size: 30px;
    }

.tab-pane p {
  font-size: 14px;
}
  .footer-col {
    width: 100%;
  }

    .footer-col {
        margin-bottom: 33px;
    }

    .footer {
        padding: 30px 30px 10px 30px;
    }

    .footer_Tmain {
        flex-wrap: wrap;
    }



    .footer_top {
        padding-bottom: 10px;
    }
  .right_part {
    width: 33.33%;
  }
  .menu-item-has-children, .menu-item-has-children button, .right_nav li button  {
    display: flex;
    align-items: center;
  }
.logoMarqueeSection .marquee a {
  min-width: 110px;
}
  div.marquee > a > img {
  height: 45px;
}

.nine h1 span{
  padding: 0 45px;
    position: relative;
}
.nine h1 span::after, .nine h1 span::before {
  position: absolute;
  width: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

.nine h1 span::before {

  right: 0;
left: inherit;
}
  /* .menu-items.main .menu-in {
    position: fixed;
    z-index: 99999;
    background: #fff;
    top: 0;
    left: 0;
    height: 100%;
    transform: translate(0);
    margin-left: 0;
  } */
 .navbar-container .hamburger-lines {
    height: 19px;
    width: 30px;
    left: 15px;
  }
}

@media (max-width: 575px) {
 .navbar-container .hamburger-lines {
    height: 19px;
    width: 30px;
    left: 15px;
  }
.right_nav {
  gap: 10px;
}


.Checkout_botm {
  width: 90%;
}



  .product-grid .product-image img {
    height: 294px;
  }

    /* .slide-image {
        height: 28vh;
    } */

    .nine {
        padding: 10px 0 0px 0px;
    }

    .prod_col {
        width: 100%;
    }

    .logoMarqueeSection h2 {
        font-size: 31px;
        text-align: center;
    }
      .nine h1 {
  margin-bottom: 30px;
}
    .logo-scroller-item span img {
    max-height: 75px;
  }
    .nine {
    padding: 20px 0 0 0;
  }
    .product-grid {
    margin: 0 0 15px;
  }

  .logo-scroller {
    padding-bottom: 35px;
  }
.logo-scroller-items {
  margin: 0;
}

}

@media (max-width: 500px) {
    .navbar-container input[type="checkbox"]:checked ~ .logo {
        display: none;
    }

    .footer_Trow {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    /* .footer_timg img {
        height: 115px;
        width: 150px;
        margin-bottom: 24px;
    } */

    .footer-col {
        margin-bottom: 33px;
        width: 100%;
    }

    .footer-col img {
        margin-bottom: 0px;
    }

    .footer {
        text-align: center;
        padding-top: 10px;
    }
  .product-section_2 .product_row2 {
    padding: 10px;
  }
/* 
    .footer-col h4::before {
        left: auto;
    } */
       .product-section_2 .prod_child1 .product-grid .product-image img {
    height: 120px;
  }

.logo-scroller-row {
  display: block;
}
 /* .logo-scroller-content {
    padding: 33px 0;
  } */
 .logo-scroller-item {
    display: unset;
    width: 33.33%;
    float: left;
  }

.logo-scroller-content {
    padding: 0;
  }
}

@media (max-width: 480px) {
      .navbar .menu-items .menu-in .menu {
    width: 74%;
  }

     .nine h1 {
    font-size: 30px;
  }
      .product-section_2 .prod_child1 .prod_col.item {
    width: 100%;
  }
   .product-section_2 .prod_child1 .product-grid .product-image img {
    height: 190px;
  }
      .product-grid .product-image img {
    height: 240px;
  }
 .logo-scroller-item {
    min-width: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }
  .logo-scroller-item span img {
    max-height: 90px;
  }
      .logoMarqueeSection.construction h2 {
    font-size: 34px;
  }
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/**container*/
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Responsive max-widths */
/* @media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
} */

/** btn class **/
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    background-color: #d16935;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-position: right;
    background-color: #b66841 !important;
}

.btn-secondary {
    background-color: #252525;
}
.btn-secondary:hover {
    background-color: #5a5a5a !important;
}

/* Responsive button adjustments */
@media (max-width: 576px) {

      .footer_timg {
    margin-bottom: 5px;
  }
  .footer_timg {
    margin-bottom: 5px;
    width: 100%;
  }

   .footer_timg img {
    height: 150px;
    object-fit: cover;
  }
      .footer_top {
    padding: 40px 0;
  }
    .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
      .footer_timg img {
      margin-bottom: 0;
    }
}

@media (max-width: 400px) {
    .btn {
        width: 100%;
        display: block;
        font-size: 1rem;
    }
}
