@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");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", 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 120px;
}

/* 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: 9999;
    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;
  padding: 10px 40px 10px 0;
}
.menu-items ul {
  display: flex;
  align-items: center;
  padding: 0;
}
.menu-items a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0;
    position: relative;
}

.menu-items a:hover::after, .menu-items a.active::after {
  content: "";
  position: absolute;
  bottom: -26px;
  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: #d5540e;
  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) */
.crtdiv svg {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.crtdiv h4 span {
  font-size: 19px;
  color: green;
  font-weight: 600;
  margin-left: 5px;
}
.cartmaild {   
  width: 520px;
  padding: 0 20px;
  position: fixed;
  bottom: 16px;
  right: -700px;
  transition: right 0.3s ease-in-out;
  background: #fff;
  border-top: 1px solid #d3d3d3;
  max-width: 520px;
}





.cart-container.show-cart {
  right: 0;
  width: 100%;
}
.show-cart h6 {
    margin: 10px;
    text-align: start;
    font-size: 15px;
    font-weight: normal;
    color: #090909;
}
.show-cart h5 {
  margin: 10px;
  text-align: start;
  font-size: 15px;
  font-weight: normal;
}
.cart-items .Checkout_botm {
  display: none;
}


.cart-container.show-cart .cartmaild {
  right: 0;
}
.crtdiv {
  padding: 10px 20px;
  border: 1.6px dashed green;
  text-align: center;
  border-radius: 3px;
  margin-top: 16px;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  background: #0080001f;
  margin-bottom: 12px;
}
.crtdiv h4 {
  margin: 2px 0;
  font-weight: 400;
  align-items: center;
  font-size: 16px;
  padding: 0 0 !important;
  display: flex;
  color: #353535;
}
.membership-box .crtdiv h4 {
  font-weight: 400;
  margin: 6px 0;
  line-height: 23px;
}
.cart-containerin {
  padding: 145px 20px 180px;
  position: relative;
}
.cart-container {
  position: fixed;
  top: 0;
  right: -700px;
  max-width: 560px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 0;
  transition: right 0.3s ease-in-out;
  z-index: 9;
  overflow-y: auto;
  bottom: 0;
  margin: auto;
  overflow-x: hidden;
}

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

.cart-header h3 {
  margin: 0;
  padding: 0 20px;
}

.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;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.close-cart:hover {
    background-color: #0d1321;
}

/* Style for cart items */
.cart-items {
  margin-top: 0;
  /* overflow-y: auto;
  height: auto; */
}

.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: 40px;
    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: 205px;
    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;
  align-items: center;
  gap: 10px;
}
.product-grid .product-image button {
  color: #fff;
  background-color: #e0e0e0;
  border-radius: 4px;
  padding: 0;
  font-size: 16px;
  transition: 0.5s;
  cursor: pointer;
  width: 100%;
  height: 42px;
  max-width: 42px;
  text-align: center;
  border: none;
}
.product-grid .product-image button img {
  width: 30px;
  height: auto;
  max-width: stretch;
  margin: auto;
}
.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 0 20px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  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: 105px;
}
/* .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: 18px;
    font-weight: 500;
    /* 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%;
}












.progress_main ul {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 0;
}
.progress_main ul li {
  font-weight: 500;
  color: #3e3c3c;
}
.progress-bar span {
  font-size: 14px;
  line-height: inherit;
  position: relative;
  top: -5px;
}
.progress {
	overflow: hidden;
	height: 14px;
	background-color: #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
		margin-top: 10px;
}
.progress-bar {
  width: 0;
  height: 100%;
  color: #fff;
  text-align: center;
  background-color: #d16935;
}
.progress_main .progress_in {
  padding: 14px;
  background: #ffffff75;
  border-radius: 6px;
}
.progress_main {
  padding: 0 20px;
  margin-top: 17px;
}

.progress-striped .progress-bar {
			background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
			background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
			background-size: 40px 40px;
}
.progress.active .progress-bar {
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	animation: progress-bar-stripes 2s linear infinite;
	-moz-animation: progress-bar-stripes 2s linear infinite;
}














@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:80px 0 100px;
    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: 28px;
  font-weight: 400;
  color: #d16935;
  font-family: "Playfair Display", serif;
  margin: 0;
}
.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: #f6f6f6;
  margin-top: -50px;
  position: relative;
  z-index: 99;
  border-radius: 50px;
}
.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: 100%;
  margin: auto;
}
.footer_row {
    display: flex;
    gap: 25px;
}

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

.footer {
  /* background-color: #022d40; */
  padding: 00 0 40px 0;
}
.footer .footer_row {
  border-top: 1px solid #ffffff2e;
  padding-top: 60px;
}
.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_main {
  background-image: url(http://127.0.0.1:9696/frontend/assets/images/footer_bg.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 720px;
  background-color: #022d40;
}
.footer-col img{padding-top: 25px;}
.footer-col img {
    margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 22px;
  color: #fff;
  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-flex;
  height: 48px;
  width: 48px;
  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;
  justify-content: center;
  align-items: center;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: rgb(209, 105, 53);
}
.footer-col .social-links a svg {
  font-size: 21px;
}
.botm_footer {
    font-size: 16px;
    color:  #0f2d4d;
    padding: 16px 0px;
    background-color: #fff;
}

.botm_footer p {
  font-size: 16px;
  color:#022d40 !important;
  padding-top: 0;
  text-align: center;
  font-weight: 500;
  margin: 0;
}
.botm_footer p a {
  color: #022d40;
  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: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

 .product-section.product_section_set1 .owl-carousel button.owl-dot {
  background: #ccc !important;
}
 .product-section.product_section_set1 .owl-dots button.owl-dot.active {
  background-color: #be6237 !important;
}





.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 .product-grid h3.title .text-muted {
  display: none;
}
.product-section_2 .prod_child1 .product-grid .product-image img {
  width: 373px;
  height: 137px;
  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;
}

.productdetails_btn {
    display: flex;
    gap: 20px;
    padding: 20px 20px 20px 0px;
}

.productdetails_btn button {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 500;
    background: rgb(209, 105, 53);
    padding: 1px 20px;
}
.delivery-allocation input {
    width: -webkit-fill-available;
    border: 1px solid grey;
    border-radius: 5px;
    height: 25px;
}

.delivery-allocation input:focus-visible {
    outline: 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 60px;
    /* background: #022d40; */
}

.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: #022d40;
  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 .hnd {
  display: flex;
  gap: 15px;
  position: relative;
  padding-right: 37px;
  align-items: center;
}
.cart_main .mainfst {
  padding: 6px 12px 8px 12px;
  background: #eef1f5;
  margin: 10px 0 12px;
  border-radius: 8px;
}
.show-cart h5 b.ab {
  color: #ff3130;
  font-weight: 400;
  font-size: 15px;
}
.cart_main .hnd .remove-btn {
  position: absolute;
  right: 0;
  width: 34px;
  top: 0;
  height: 34px;
  padding: 0;
}


.show-cart h3.pc + h3.pc {
  border-top:1px dashed #00000061;
  padding: 10px 24px 0;
  margin-top: 8px;
}



#swal2-title {
  color: #000;
  font-size: 24px;
  font-weight: 500;
}
.swal2-deny.swal2-styled {
  background: #d16935 !important;
    border: 1px solid #d16935;
}
.swal2-close {
  position: absolute;
}
.swal2-popup.swal2-modal {
  padding: 22px 35px 44px;
}

.swal2-confirm.swal2-styled {
  border: 1px solid #022d40;
  color: #022d40;
  background: transparent;
}
.show-cart h3.pc span {
  color: #000;
 font-size: 18px;
  min-width: 152px;
}
.show-cart h3.pc {
  display: flex;
  justify-content: space-between;
  padding: 10px 24px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}


.show-cart h3.total span {
  color: #000;
 font-size: 20px;
  min-width: 152px;
}
.show-cart h3.total {
  display: flex;
  justify-content: space-between;
  padding: 10px 24px 0;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}


.show-cart h3.maintotal span {
  color: #000;
 font-size: 20px;
  min-width: 152px;
   color: #d5540e;
}
.show-cart h3.maintotal {
  display: flex;
  justify-content: space-between;
  padding: 10px 24px 0;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  border-top: 1px solid #d5540e;
  border-bottom: 1px solid #d5540e;
  padding-bottom: 13px;
  margin-top: 22px;
 
}





.show-cart h5.Membership {
  padding: 0 12px;
  font-weight: 400;
}
.show-cart h5.Membership span{
  font-weight: 400;
}
/* .cart_main .fst {
  margin-top: 8px;
  padding: 6px 12px 8px 12px;
  background: #d1d9e63b;
} */
 .cart_main .fst + .fst {
  border-top:1px dashed #373737b2;
  padding-top: 6px;
  margin-top: 11px;
}
.show-cart h5 {
  display: flex;
  justify-content: space-between;
}
.show-cart h6 label {
  font-size: 16px;
  font-weight: 400;
  color: #22232f;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 256px;
  justify-content: space-between;
}
.show-cart h6 label .mnp .linec {
  min-width: 100px;
  display: -webkit-inline-box;
}
.show-cart h5 span {
  font-weight: 400;
  width: 152px;
}
.show-cart .fst h4 {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  padding-top: 8px;
  margin-top: 13px;
  margin-bottom: 0px;
  align-items: center;
  font-weight: 400;
  color: #090909;
  font-size: 15px;
}
.show-cart .fst h4 span {
  color: #020202;
  font-size: 15px;
  font-weight: 500;
}
.show-cart .fst h6 .g_discount {
  font-weight: 600;
}
.show-cart h6 label .discount {
  color: #ff3130;
  font-weight: 400;
  font-size: 15px;
}
.show-cart .fst h6 {
  align-items: center;
  margin: 8px 0;
  color: #090909;
  font-size: 15px;
}
.show-cart .fst h6 b {
  font-weight: 400;
}
.show-cart h5 {
  text-transform: capitalize;
}
.show-cart h6 label .linec {
  color: #0d060691;
  font-size: 15px;
  text-decoration: line-through;
  min-width: 95px;
}
.show-cart h6 {
  display: flex;
  justify-content: space-between;
}
.cart_main h3.total {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.cart_main h3.total span {
  color: #000;
  font-size: 18px;
  min-width: 152px;
}
.cart_main .hnd .remove-btn img {
  width: 34px;
   height: 34px;
}
.cart_main .hnd img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.show-cart h5 {
  margin: 0;
}
.cart_main .hnd h6 {
  font-size: 15px;
  width: 230px;
  margin: 0;
  display: block;
  font-weight: 500;
  text-align: center;
  line-height: 20px;
}
.show-cart h6 {
  margin: 10px 0;
}
.cart_main .hnd h6 span {
  font-weight: 400;
  font-size: 13px;
  color: #777;
  display: block;
}
.cart_main {
  margin: 10px 0;
  gap: 15px;
  border: 1px solid #a0a0a08f;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  /* display: flex;
  align-items: center;
  text-align: center; 
  width: 100%;
  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 .cart_your {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.cart-header {
  font-size: 18px;
  position: fixed;
  top: 0;
  background: #d1d9e6;
  padding: 15px 0;
  max-width: 560px;
  right: -700px;
  width: 100%;
  transition: right 0.3s ease-in-out;
  z-index: 9;
}

.cart-container.show-cart .cart-header{
     right: 0;
}
.cart_col2 {
    width: 80%;
}

.cart_col3 {
    width: 20%;
}

.cart_heading {
    text-align: left;
    padding: 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}
h3.cart_heading {
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.d-flex .qty-price{
    flex: auto;
}
.cart-container.show-cart .cartmaild .crtdiv h4 {
  display: block;
   font-size: 15px;
}




.quantity-control {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin-bottom: 0;
}
#swal2-title .highlight {
  color: #d16935;
  font-size: 30px;
  font-weight: 600;
}
.btn-decrement {
  background-color: transparent;
  color: #0d1321;
  border: none;
  padding: 0px 10px;
  font-size: 25px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  height: 38px;
  line-height: 34px;
  width: 23px;
  justify-content: center;
  display: flex;
  align-items: center;
  border: 1px solid #d9d9d9;
}
.quantity-control .qty-value1 input.qty-value {
  width: -webkit-fill-available;
  font-size: 18px;
  text-align: center;
  border: none;
  padding: 0 8px;
  height: 100%;
  border: 1px solid #d06834;
  border-radius: 5px;
}
.quantity-control .qty-value1 {
    width: 40px;
    text-align: center;
    font-size: 14px;
    margin: 0 5px;
    height: 42px;
    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: 20px;
  right: 20px;
  justify-content: center;
  align-items: center;
  width: 460px;
}
.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;
}

span.home_price small.price2 {
    color: #626262;
    margin-left: 4px;
    text-decoration: line-through;
    font-size: 14px;
}

span.home_price small.price3 {
    color: #000;
    margin-left: 4px;
    font-size: 20px;
}

span.home_price {
    align-items: center;
}







/**************************************************************************************
************************************* product_section_home ****************************
***************************************************************************************/
.product_section_home .mb-3{margin-bottom:12px}
.product_section_home .row {display: flex; flex-wrap: wrap; margin: 0 -12px;}
.product_section_home .row .rowin { padding: 0 12px; height:100%;}
.product_section_home .col-9 {flex: 0 0 auto; width: 75%;}
.product_section_home .col-8 {flex: 0 0 auto; width: 66.666667%;}
.product_section_home .col-7 { flex: 0 0 auto; width: 58.33333333%;}
.product_section_home .col-6 {
  flex: 0 0 auto;
  width: 67%;
}
.product_section_home .col-3.gggg {
  width: 15%;
}

/* .product_section_home .centerdiv {
  background: #f6f6f6;
  padding: 30px;
  margin: 0 10px;
  border-radius: 10px;
} */
.product_section_home .centerdiv {
  background: #0f2d4d08;
  padding: 30px;
  margin: 0 10px;
  border-radius: 10px;
}
.product_section_home .rowin a { 
    text-decoration: none;
}
.product_section_home .set:hover {
    background-color: #d16935;
}
.product_section_home .set2 h3{
    color: #232330;
}
.product_section_home .set:hover h3{
    color: #fff;
}
.product_section_home .centerdiv .col-3 {
  width: 25%;
}
/* .product_section_home .set:hover {
  border: 1px solid #d16935b5;
  box-shadow: 0 0 16px #b8b8b8;
} */
.product_section_home .col-5 { flex: 0 0 auto; width: 41.66666667%;}
.product_section_home .col-4 { flex: 0 0 auto; width: 33.33%;}
.product_section_home .col-3 {
  flex: 0 0 auto;
  width: 18%;
}
 .product_section_home .col-12 { width: 100%; }
 .product_section_home .col-10 { width: 83.33333333%; }
 .product_section_home .text-center{text-align:center}

.product_section_home  .container-fluid {
  padding: 0 120px;
}
.product_section_home .set h3 {
  margin: 0 0 0 0;
  font-weight: 400;
  font-size: 16px;
  color: #232330;
  text-align: center;
  padding: 9px 10px;
}
.product_section_home{margin:60px 0 0}

.product_section_home ul {
  padding: 0;
}
.product_section_home .set {
  border-radius: 6px;
  overflow: hidden;
  /* border: 1px solid #e4e4e4; */
  background: #ededed;
  padding-top:0;
  transition: all 0.3s ease;
  height: 100%;
}
.product_section_home .set img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 10px;
}
.product_section_home ul li img {
  object-fit: cover;
  object-position: center;
  height: 10px;
  margin-right:10px;
}
.product_section_home h2 {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 500;
  color: #d16935;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  border-bottom: 1px solid;
  padding-bottom: 8px;
  line-height: 32px;
}
.product_section_home .category h2 {
  color: #fff;
  background: #d16935;
  font-size: 22px;
  text-align: center;
  padding: 10px 0;
}
.product_section_home ul li a {
  color: #23212d !important;
  text-decoration: none;
  display: block;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  width: 100%;
}
.product_section_home ul li a:hover {
  color: #d16935 !important;
  font-weight: 500;
}
.product_section_home ul li {
  display: flex;
  align-items: center;
  margin-bottom: 19px;
  padding: 0;
  border-radius: 5px;
  font-weight: 400;
  font-size: 15px;
  text-transform: math-auto;
}
.product_section_home ul li.active {
  background: transparent;
}
.product_section_home ul li:hover a, .product_section_home ul li.active a {
  color: #d16935 !important;
  background: transparent;
}

.product_section_home ul li:hover a, .product_section_home ul li.active a {
  /* color: #23212d !important; */
  background: transparent;
}

.product_section_home p {
  margin-top: 0;
  font-size: 15px;
  color: #626262;
  margin-bottom: 21px;
  max-width: 450px;
}  
.category {
  margin: 0;
    margin-top: 0px;
  border-radius: 10px;
  min-height: 484px;
  width: 100%;
  border: 1px solid #d16935;
  overflow: hidden;
}

.product_section_home .set2 h3 {
  margin: 0 0 0 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}
.product_section_home .set2 {
  border: 1px solid #d169355c;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 0 17px #cccccc78;
  background: #fff;
}
.product_section_home .set2 img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}
.product_section_home .discount {
    position: relative;
}
.product_section_home .discount h4 {
  display: flex;
  font-size: 25px;
  margin: 10px 0 0 0;
  color: #d16935;
}
.product_section_home .discount h2{margin-bottom:20px;}
.product_section_home .discount h4 .price2 {
  color: #000;
  margin-left: 7px;
  text-decoration: line-through;
  font-weight: 500;
}
.product_section_home .discount .viewall {
  color: #d16935;
  margin-top: 0px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid #d16935;
  width: 100%;
  display: block;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 0;
}
/* .product_section_home .discount::after {
  background: #e4e4e4;
  content: "";
  position: absolute;
  width: 1px;
  height: 98%;
  left: 0;
  top: 11px;
} */


.cta {
 margin-top: 40px;
  background-image: url(../images/disbanner.png);
  padding: 40px 0;
  background-size: 65%;
  background-position: right bottom;
  height: 260px;
  border-radius: 0;
  background-repeat: no-repeat;
  background-color: #000;
  display: flex;
  align-items: center;
}

.cta .container-fluid {
  padding: 0 120px;
}
.cta .view_more:hover {
  background: #d16935;
  color: #fff;
}
.cta .view_more {
  border: 1px solid #d16935;
  border-radius: 4px;
  padding: 12px 41px;
  font-size: 17px;
  color: #d16935;
  background-color: transparent;
  text-decoration: navajowhite;
  font-weight: 500;
  margin-top: 22px;
  display: inline-block;
}
.cta p {
  color: #ffffffd4;
  font-size: 28px;
  margin: 10px 0 0;
}
.cta h2 span {
  font-size: 100px;
  color: #d16935;
  font-weight: 800;
  margin-left: 13px;
}
.cta h2 {
  font-size: 50px;
  color: #fff;
  font-weight: 500;
  line-height: 60px;
  margin: 0 0 0 0;
}

.product_section_home {
  padding: 45px 0 10px;
  background-image: url(../images/fablogo.png);
  background-repeat: no-repeat;
  background-position: left -52px bottom 0px;
  background-size: 324px;
  margin: -53px 0 0 !important;
  border-radius: 50px;
  background-color: white;
  position: relative;
}
.product_section_new .nine h1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_section_new .nine {
  max-width: 100%;
}
.product_section_new .nine .drop {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #282828;
  text-transform: unset;
  letter-spacing: 0;
  font-weight: 500;
}
.product_section_new .nine .drop select {
  padding: 10px 12px;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size:15px;
}

.product-section.product_section_new.product_section_new2 {
  margin: 40px 0 50px;
}
.product_section_new2 .product-container {
  display: flex;
  gap: 40px;
  align-items: center;
}
.product-section.product_section_new.product_section_new2 .nine {
  min-width: 25%;
  margin-top: -55px;
}
.product-section.product_section_new.product_section_new2 h1 {
  display: block;
  text-align: left;
  margin: 0;
}
.product-section.product_section_new.product_section_new2 .product-row {
  width: 75%;
}
.product-section.product_section_new.product_section_new2 h1 span {
  display: block;
  padding: 20px 0;
  position: relative;
}


.product-section.product_section_new.product_section_new2 h1 span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.product-section.product_section_new.product_section_new2 h1 span::after{
     position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}






.home_Product .table tr th {
  padding: 8px;
  color: #d16935;
  border-radius: 4px;
}
.home_Product  .table-responsive {
  padding: 23px;
  background: #f6f6f6;
  border-radius: 12px;
}

.home_Product .table img {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #f5f7fa;
  padding: 4px;
  width: 65px;
  height: 65px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  object-fit: contain;
  transition: transform 0.2s;
}
.home_Product .table tr td a {
  color: #d16935;
  text-decoration: none;
  font-weight: 400;
}
.home_Product .cart-form input[type="number"] {
  max-width: 70px;
  padding: 0 8px;
  border-radius: 3px;
  border: 1px solid #dedede;
  height: calc(1.5em + 0.75rem + 2px);
}
/* .home_Product .table tr td .btn.btn-primary.block.add-to-cart-btn {
  border: 1px solid #d16935 !important;
  text-decoration: navajowhite;
  width: 202px;
  padding: 4px !important;
  border-radius: 6px;
  margin-top: 10px;
  color: #d16935 !important;
  font-weight: 500;
} */

.home_Product .table tr td .cc-content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.home_Product .table tr td .btn.btn-primary.block.add-to-cart-btn {
  border: 1px solid #d16935 !important;
  text-decoration: navajowhite;
  width: 41px;
  padding: 10px 4px !important;
  border-radius: 6px;
  margin-top: 10px;
  background: #d16935 !important;
  font-weight: 500;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.home_Product table {
  width: 100%;
}
.home_Product .table tr td .cart-form {
  justify-content: center;
}
.home_Product .table tbody td:nth-child(2) { max-width: 290px;}
.home_Product .table thead th { background: linear-gradient(90deg, #e3eaf1 0%, #e3eaf1 100%);  color: #222; font-weight: 700; text-align: center; vertical-align: middle; border-bottom: 2px solid #d1d9e6; padding: 16px 10px; letter-spacing: 0.5px; border-radius: 4px;}
.home_Product .table tbody td { text-align: center; border: 1px solid #d1d9e6 !important; font-size: 1rem; border-radius: 4px; padding: 10px 10px; background: #fff; position: relative; overflow: hidden;}
.home_Product .table tbody td .mainpro { border: navajowhite; padding: 0; width: 100%; position: absolute; left: 0; top: 0; height: 100%; object-fit: cover; border-radius: 0;}
.home_Product .table tr td .btn.btn-primary.block.add-to-cart-btn img {height: 20px; border: none;  width: auto; background: transparent; padding: 0;}
.home_Product .table tr td .btn.btn-primary.block { width: 100%; background: transparent; border: none !important; text-decoration: underline; padding: 0 !important; margin-top: 2px;color: #d16935; font-weight: 500;}
.home_Product .table tr td .btn.btn-primary.block.add-to-cart-btn:hover { background: #d1693517 !important;}
.home_Product h1 { text-align: center !important;}
.home_Product .nine { max-width: 620px !important; margin-bottom: 35px; margin-top: 0 !important;}
.home_Product .table tbody td:last-child { width: 300px;}
.home_Product .table tr:nth-child(2n) td { background: #f7fafc !important;}







/*************************************************************************
************************* product_section_set1 ***************************
**************************************************************************/
.product_section_set1 ul#tabs-nav { list-style: none; margin: 0; overflow: auto; position: relative; top: 1px;}
.product_section_set1 ul#tabs-nav li { float: left; font-weight: bold; margin-right: 2px; padding: 8px 10px; cursor: pointer;}
.product_section_set1 ul#tabs-nav li:hover, .product_section_set1 ul#tabs-nav li.active {border-bottom: 1px solid #d84b06;}
.product_section_set1 ul#tabs-nav::after {height: 20px; width: 1px; background: #b0acac; content: ""; left: 9px; top: 0;bottom: 0; position: absolute; margin: auto;}
.product_section_set1 #tabs-nav li a { text-decoration: none; color: #23232e; font-weight: 400; padding: 8px 16px; display: inline-block;}
.product_section_set1 .head h1 { margin: 0; font-size: 40px; font-weight: 500; color: #d16935; font-family: "Playfair Display", serif; text-transform: uppercase;}
.product_section_set1 .head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #ccccccbd; margin-bottom: 25px;}
.product_section_set1 .head div { display: flex; align-items: center; gap: 30px;}
.product_section_set1 ul#tabs-nav li:hover a, .product_section_set1 ul#tabs-nav li.active a {color: #d16935;}
.product_section_set1 .viewall {color: #d16935; font-weight: 500;}



/*************************************************************************
********************************* cta2 ***********************************
**************************************************************************/
.cta2 .row {display: flex; flex-wrap: wrap; margin: 0 -6px;}
.cta2 .row .rowin {padding: 0 6px;}
.cta2 .col-6 {flex: 0 0 auto; width: 50%;}
.cta2 .set { background-color: #000; padding: 70px 36% 70px 70px; border-radius: 20px; height: 260px; position: relative; overflow: hidden; background-size: cover;
    background-position: right center;}
.cta2 h1 { font-family: "Playfair Display", serif; font-size: 42px; color: white; font-weight: 400; margin-top: 12px; margin-bottom: 0;}
.cta2 .set h6 {margin: 0; border: 1px solid; color: #ffffffdb; padding: 6px 13px; font-size: 14px; display: initial; border-radius: 30px; font-weight: 400;}
.cta2 h1 span {color: #d16935; font-weight: 600; font-size: 60px; margin-left: 8px;}
.cta2 p {color: #ffffffba; font-size: 20px;}
.cta2 .view_more { box-shadow: 0 0 15px #071e30; background: #d16935; color: #fff; text-decoration: none; padding: 11px 27px; border: 1px solid #cccc; margin-top: 7px; display: inline-block; border-radius: 30px;}
.cta2 .set div { position: relative; z-index: 99;}
.cta2 .set::after {content: ""; position: absolute; width: 60%; height: 100%; top: 0; background: linear-gradient(450deg, #022d40, #21212d14); left: 0;}



/*************************************************************************
************************ product_section_set3*****************************
**************************************************************************/
.product_section_set3 .row { display: flex; flex-wrap: wrap; margin: 0 -6px;}
.product_section_set3 .row .rowin {padding: 0 6px;}
.product_section_set3 .col-3 { flex: 0 0 auto; width: 25%;}
.product_section_set3 .col-9 { flex: 0 0 auto;  width: 75%;}
.product_section_set3 .set { background-color: #000; padding: 60px 40px; border-radius: 20px; position: relative; overflow: hidden; min-height: 745px; background-size: cover; background-position: left bottom;}
.product_section_set3 .set h1 { font-family: "Playfair Display", serif; font-size: 42px; color: white; font-weight: 400; margin-top: 12px; margin-bottom: 0;}
.product_section_set3 .set h6 { margin: 0; border: 1px solid; color: #ffffffdb; padding: 10px; font-size: 16px; display: initial; border-radius: 30px;}
.product_section_set3 .set h1 span {color: #d16935; font-weight: 600; font-size: 80px; margin-left: 8px;}
.product_section_set3 .set p {color: #ffffffba; font-size: 20px;}
.product_section_set3 .set .view_more { background: #d16935; color: #fff; text-decoration: navajowhite; padding: 11px 27px; border: 1px solid #cccc; margin-top: 7px; display: inline-block; border-radius: 3px;}
.product_section_set3 .set::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 53%;
  top: 0;
  background: linear-gradient(548deg, #022d40, #21212d00);
  left: 0;
}

.product_section_set3 .set div {
  position: relative;
  z-index: 999;
}
/* product_section_set3 */
.product_section_set3 .container_in { border-top: 1px solid #ccc; padding-top: 50px; margin-top: 30px;}
.product_section_set3 .rightlist h1 { margin: 0 0 15px; font-weight: 500; color: #d16935; font-family: "Playfair Display", serif; text-transform: uppercase; font-size: 40px;}
.product_section_set3 .rightlist { padding-left: 20px;}

.product_section_set3 .row {display: flex; flex-wrap: wrap; margin: 0 -6px;}
.product_section_set3 .row .rowin {padding: 0 6px;}
.product_section_set3 .col-4 {flex: 0 0 auto; width: 33.33%;}

.product-section.product_section_set3 {
  padding-bottom: 12px;
}
















/* Hero Slider */
.hero-slider {
  width: 100%;
  height: 700px;
  display: flex;
  position: relative;
  z-index: 0;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}
.hero-slider .container {
  position: relative;
  z-index: 99;
}
.slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

/* Slide Overlay */
.slide-overlay {
  position: absolute;
  width: 63%;
  height: 100%;
  background: linear-gradient(450deg, #022d40, #21212d00);
  z-index: 1;
  left: 0;
}

/* Slide Text */
.hero-style {
  height: 740px;
  transition: all 0.4s ease;
  overflow:hidden
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 900px;
}
.hero-style .slide-title h2 span {
  color: #d16935;
}

.hero-style .slide-title h2 {
  font-size: 80px;
  color: #fff;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.67);
  margin: 0;
  font-weight: 500;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  padding-bottom: 0;
  line-height: 80px;
}
.hero-style .swiper-button-next::after, .hero-style .swiper-button-prev::after {
  font-size: 22px;
  color: #fff;
}
.hero-style .slide-text p {
  font-size: 30px;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 34px;
  color: #fff;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.theme-btn, .theme-btn-s2 {
background-color: #ff6f61;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-flex;
  transition: all 0.3s ease;
  text-decoration: navajowhite;
  box-shadow: 0 3px 14px #22223038;
  gap: 10px;
}
.theme-btn-s2 {
  background-color: rgba(255, 255, 255, 0.85);
  color: #1a1a2e;
}

.theme-btn:hover, .theme-btn-s2:hover {
  background-color: #d16935;
  color: #ffffff;
}
.theme-btn-s2 .pic-1 {
  height: 27px;
}
.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}

.slide-btns a:first-child {
  margin-right: 10px;
}

/* Swiper Arrows */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #f0f0f0;
  background: transparent;
  text-align: center;
  line-height: 53px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-prev:before,
.hero-slider .swiper-button-next:before {
  display:none;
}

.hero-slider .swiper-button-prev:before {
  content: "\f060";
}

.hero-slider .swiper-button-next:before {
  content: "\f061";
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
  text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}







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






@media (max-width: 1800px) {
    .container {
  padding-left: 80px;
  padding-right: 80px;
}
  .container-fluid {
    padding: 0 80px;
  }
  .product_section_home .container-fluid {
  padding: 0 80px;
}
.cta2 .set {
  padding: 70px 30% 70px 70px;
}


.price2 .label-flex {
  margin-left: 10px;
}
}






@media (max-width: 1600px) {

.product_section_home .col-6 {
  width: 62%;
}

.product_section_home .col-3.gggg {
  width: 20%;
}
.product_section_home .centerdiv {
  padding: 25px;
  margin: 0 0px;
}
.cta2 .set {
  padding: 50px 30% 50px 50px;
}
.cta2 h1 {
  font-size: 38px;
  line-height: 50px;
}

.product_section_set3 .set {
  padding: 60px 30px;
}

.product_section_set3 .set h1 {
  font-size: 38px;
}
.product_section_home .set img {
  height: 105px;
}
  .product-grid .product-image img {
    height: 140px;
  }
  .product_section_set3 .rightlist .col-3 {
  width: 33.33%;
}
.product_section_set3 .rightlist .col-3:nth-child(7), .product_section_set3 .rightlist .col-3:last-child {
  display: none;
}
    .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 {
  padding-left: 40px;
  padding-right: 40px;
}
  .container-fluid {
    padding: 0 40px;
  }
  .product_section_home .container-fluid {
  padding: 0 40px;
}
    .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;
    }
    .hero-style {
  height: 620px;
}
.hero-slider .container {
    padding-left: 100px;
    padding-right: 100px;
}

}

@media (max-width: 1400px) {

    .product_section_home .col-3 {
  width: 25%;
}
  .product_section_home .col-6 {
    width: 75%;
  }
    .hero-style {
  height: 560px;
}

.product_section_set3 .container_in {
  padding-top: 40px;
  margin-top: 5px;
}

 .product_section_set3 .set h1 {
    font-size: 30px;
  }
  .product_section_set3 .rightlist {
  padding-left: 10px;
}
.product_section_home .col-3.gggg{display:none}

    .product-section_2 .product_row2 {
        width: 100%;
        padding: 15px;
    }
    .product_section_home {
  border-radius: 35px;
}
.product_section_home .centerdiv {
  padding: 25px;
  margin: 0;
  border-radius: 10px;
}

.hero-style .slide-title h2 {
  font-size: 56px;
  line-height: 60px;
}

.hero-style .container {
    padding-left: 100px;
    padding-right: 100px;
  }


  .product_section_home h2 {
  font-size: 28px;
  line-height: 30px;
}
.hero-style .slide-text p {
  font-size: 24px;
  margin-bottom: 28px;
}


.product_section_set1 .head h1 {
  font-size: 35px;
}
.product_section_set1 ul#tabs-nav li {
  margin-right: 0;
  padding: 8px 0;
}

  .cta2 h1 {
    font-size: 30px;
    line-height: 38px;
  }
  .cta2 p {
  font-size: 18px;
  margin: 15px 0;
}
 .cta2 .set {
    padding: 45px 30% 45px 45px;
    height: 210px;
  }
    .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: 145px;
  }
    .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) {

.my-100.main-request-payment {
  margin: 50px 0;
}
 .product_section_set3 .set::after {
    width: 100%;
    height: 100%;
    top: 0;
    background: linear-gradient(360deg, #022d40, #21212d00);

  }


 .product_section_set3 .set {
      padding: 40px 30px;
      text-align: center;
      min-height: auto;
    }



    .container {
  padding-left: 20px;
  padding-right: 20px;
}
  .container-fluid {
    padding: 0 20px;
  }
  .product_section_home .container-fluid {
  padding: 0 20px;
}
  .product-grid {
    margin: 0 0 16px;
  }

  .product_section_set3 .set h1 span {
  font-size: 60px;
}
  .product_section_set3 .set {
    padding: 40px 30px;
    text-align: center;
  }
  
    .product_section_set3 .col-9 {
  width: 100%;
}
    .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%;
    } */

.product_section_set3 .col-3 {
  width: 100%;
  order: 2;
}
.cta2 .set {
    padding: 35px 20% 35px 35px;
    height: 210px;
    border-radius: 15px;
  }
   .cta2 h1 {
    font-size: 26px;
    line-height: 33px;
  }
 
    .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) {
    .footer .footer_row {
  padding-top: 0;
}
 .footer_top {
    padding: 52px 0 0;
  }
.hero-style .swiper-button-next::after, .hero-style .swiper-button-prev::after {
  font-size: 18px;
}

.hero-slider .swiper-button-prev, .hero-slider .swiper-button-next {
  width: 44px;
  height: 44px;
  border: 1px solid #f0f0f0;
  line-height: 44px;
}
  .hero-style {
    height: 420px;
  }
  .product_section_set1 .head div {
  display: block;

}
  .product_section_home {
    border-radius: 25px;
  }
  .product_section_set1 .head {
  display: block;
}
.hero-style .slide-title h2 {
    font-size: 38px;
    line-height: 42px;
  }
  .product_section_set1 .head {
  text-align: center;
}
    .hero-style .container {
    padding-left: 90px;
    padding-right: 90px;
  }
    .product-grid .product-image img {
        height: 230px;
    }

      .cta2 .set {
    padding: 30px 25px;
    height: auto;
    border-radius: 12px;
  }

  .logo-scroller-content {
  padding: 70px 0;
}
.menu-items li {
  padding: 10px 30px 10px 0;
}
.product_section_set1 ul#tabs-nav::after{display:none}

.product_section_set1 ul#tabs-nav li {
  float: inherit;
}

.product_section_set1 ul#tabs-nav {
  padding: 0;
  justify-content: center;
  display: flex;
  margin-top: 12px;
}
.product_section_set3 .rightlist h1 {
    font-size: 36px;
    text-align: center;
  }
  .product_section_set1 .viewall {
  display: none;
}
    .logo-scroller-item span img {
        max-height: 150px;
        /* Larger height for big screens */
    }

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

      .product_section_set3 .rightlist .col-3 {
    width: 50%;
  }
    .product_section_set3 .rightlist .col-3:nth-child(7), .product_section_set3 .rightlist .col-3:last-child {
    display: block;
  }
    .prod_col {
        width: 100%;
    }

    .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: 991.98px) {
    .prod_col {
        width: 100%;
    }

 .product-grid .product-image img {
    height: 210px;
  }
    .product_section_set3 .rightlist {
    padding-left: 0;
  }
   .product_section_set3 .container_in {
    padding-top: 30px;
  }
    .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-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: 767px) {
.hero-style .container {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
  
   .hero-style {
    height: 390px;
  }
    .hero-style .slide-text p {
    font-size: 20px;
    margin-bottom: 20px;
  }
.theme-btn, .theme-btn-s2 {
  font-size: 16px;
  padding: 10px 26px;
  gap: 10px;
  display: inline-flex;
  align-items: center;
}
.product_section_home {
  padding: 35px 0 10px;
}

 .product_section_home .col-6 {
    width: 100%;
  }
   .product_section_home .centerdiv {
    padding: 20px;
   }
    .hero-style .slide-title h2 {
    font-size: 34px;
    line-height: 40px;
  }
  .product_section_home .centerdiv .col-3 {
  width: 33.33%;
}
    .cta2 .col-6 {
  width: 100%;
}
.product_section_home .set {
  padding-top: 0;
}
    .menu-items ul {
        display: block;
    }
.testimonial-area {
    padding: 25px 0 40px 0;
  }
  .testimonial-area .owl-dots {
  margin-top: 20px;
}
.product-section {
  padding-top: 20px;
  padding-bottom: 40px;
}

.category {
  min-height: auto;
}
  .product_section_home .col-3 {
    width: 100%;
  }
    .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;
    } */

      .menu-items a {
    font-size: 18px;
    color: #fff;
  }
  .navbar .menu-items .menu-in .menu {
    background: #022d40;
    max-width: 360px !important;
    width: 360px;
    box-shadow: 0 25px 114px #00000082;
    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: 17px;
    font-size: 18px;
    font-weight: 500;
  }
  .logo {
  max-width: 130px;
}
.cart-container, .cart-header{
  max-width: 450px;
}
 .cartmaild {
    max-width: 450px;
    width: 100%;
    padding: 0;
  }

.cart-container {
  box-shadow: 0px 0 74px rgb(4, 47, 66);
}

  .cart-container.show-cart .cartmaild {
    right: 0;
    width: calc(100% - 36px);
    padding: 0 20px;
    max-width: 410px;
  }

    /* .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: 100%;
    }
    .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;
    }
    .cta2 .col-6:last-child {
  display: none;
}

}

@media (max-width: 575px) {
  .tabs-content .inbox.custdiv {
  border: none;
  padding: 0;
}
.product_section_home .centerdiv {
    padding: 15px;
  }
  .my-100.main-request-payment {
  margin: 36px 0;
}
  .tabs-content .inbox.custdiv table tbody tr {
    padding: 15px 10px;
  }
#payment-details table th, #payment-details table td {
  padding: 10px 15px;
}
.my-100.main-request-payment p {
  font-size: 15px;
}

#payment-details table th:first-child, #payment-details table td:first-child{min-width: 110px;}
  .product_section_set1 #tabs-nav li a {
  padding: 8px 13px;
}
     .product_section_home .container-fluid{
    padding: 0 12px;
  }

   .hero-style .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  
    .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .cta2 .col-6:last-child {
  display: none;
}
    .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;
    }
      .product-grid .product-image img {
    height: 155px;
  }
    .cta2 .set {
    text-align: center;
  }
   .cta2 h1 {
    margin-top: 27px;
  }
   .product_section_home .centerdiv .col-3 {
    width: 50%;
  }
    .product_section_home {
    padding: 30px 0 10px;
    border-radius: 20px;
  }
    .product_section_set1 .head h1 {
font-size: 30px;
    line-height: 35px;
  }
   .product_section_home h2 {
font-size: 30px;
    line-height: 35px;
    text-align: center;
  }
  .tabs-nav_nav ul {
  display: flex;
  min-width: 472px;
  justify-content: left !important;
}
.product_section_set1 .head{border:none; margin-bottom: 20px;}
.tabs-nav_nav {
    overflow-y: hidden;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .hero-style {
    height: 400px;
  }
}

@media (max-width: 500px) {
     .product_section_home h2, .product_section_set1 .head h1 {
    font-size: 26px;
    line-height: 32px;
  }

  .product_section_set3 .rightlist h1, .nine h1{
    font-size: 26px;
    line-height: 32px;
  }


    .theme-btn, .theme-btn-s2 {
    font-size: 15px;
    padding: 9px 26px;
    }
  .hero-style .slide-title h2 {
    font-size: 30px;
    line-height: 36px;
  }
    .hero-style .slide-text p {
    font-size: 17px;
    margin-bottom: 15px;
  }
.slide-inner {
  background-position: right 0;
}

  .product-grid .product-image img {
    height: 220px;
  }
  .product_section_set3 .rightlist .col-3 {
    width: 100%;
  }

    .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;
    }
      .nine h1 span {
    padding: 0 30px;
    line-height: 18px;
    font-size: 15px;
  }
  .botm_footer p {
  font-size: 15px;
  padding: 0 12px;
}
.navbar .menu-items.main .menu-in .hamburger-lines.close {
    background: #ffffffa3;
    box-shadow:none;
    border: none;
    height: 42px;
    width: 42px;
    font-size: 20px;
    color: #f22;
    left: initial;
  }
}

@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;
    }
}

/* 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 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;
    }
}
