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

@font-face {
  font-family: "Lato-Regular";
  src: url("../fonts/Lato-Regular.ttf");
}

@font-face {
  font-family: "Lato-Medium";
  src: url("../fonts/Lato-Medium.ttf");
}

@font-face {
  font-family: "Lato-Bold";
  src: url("../fonts/Lato-Bold.ttf");
}

@font-face {
  font-family: "Lato-Italic";
  src: url("../fonts/Lato-Italic.ttf");
}

@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold.ttf");
}

@font-face {
  font-family: "Roboto-Semibold";
  src: url("../fonts/Roboto-SemiBold.ttf");
}

:root {
  --white-color: #fff;
  --black-color: #000;
  --primary-color: #135c9b;
  --gray-color: #7d7d7d;
  --lato-regular: Lato-Regular;
  --lato-medium: Lato-Medium;
  --lato-bold: Lato-Bold;
  --lato-italic: Lato-Italic;
  --Roboto-bold: Roboto-Bold;
  --roboto-semibold: Roboto-Semibold;
}

/* --------------------Font-size--------------------- */
.fs-18 {
  font-size: 18px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

/* -------------------- buttons ------------------- */
/* .btn-outline,
.btn-outline:hover,
.btn-outline:focus,
.btn:active,
.btn:focus-visible {
    padding: 8px 18px;
    font-size: 16px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color); 
    font-family: var(--lexend-semibold);
    border-radius: 0;
    cursor: pointer;
}

.btn-main,
.btn-main:hover,
.btn-main:focus,
.btn:active,
.btn:focus-visible {
    padding: 8px 24px;
    background-color: var(--secondary-color) !important;
    font-size: 16px;
    border: 1px solid var(--secondary-color) !important;
    color: var(--white-color) !important;
    font-family: var(--lexend-semibold);
    border-radius: 0;
    cursor: pointer;
} */

.btn-outline {
  background-color: #fff !important;
  color: var(--primary-color) !important;
  border-radius: 5px !important;
  border: 1px solid var(--primary-color) !important;
  font-size: 16px !important;
  font-weight: 400;
  font-family: var(--lato-regular) !important;
  padding: 8px 25px !important;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: var(--white-color) !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color);
}

.btn-main {
  background-color: var(--primary-color) !important;
  font-size: 16px !important;
  color: var(--white-color) !important;
  padding: 8px 25px !important;
  border-radius: 5px !important;
  font-family: var(--lato-regular) !important;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  text-decoration: none;
}

.btn-main:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  border: 1px solid var(--primary-color);
}

.btn-two {
  background-color: transparent !important;
  font-size: 14px;
  color: var(--primary-color) !important;
  padding: 8px 25px !important;
  border-radius: 0px !important;
  font-family: var(--lato-regular) !important;
  border: 1px solid transparent;
  cursor: pointer;
  text-underline-offset: 4px;
  position: absolute;
}
.your-products .btn-two span {
  background-color: unset !important;
}
.your-products .btn-two{
	padding-left:0px !important;
	left: -8px
}

/* -----------------------Section--------------------------- */
.section {
  padding-top: 85px;
  padding-bottom: 85px;
  position: relative;
}

.sec-title .sub-title {
  font-family: var(--lato-medium);
  font-size: 18px !important;
  color: var(--black-color) !important;
}

.sec-title .title {
  font-family: var(--lato-bold) !important;
  font-size: 48px !important;
  color: var(--black-color) !important;
}

.sec-title .sec-content {
  font-family: var(--lato-medium) !important;
  font-size: 18px !important;
  color: var(--black-color) !important;
}
.trusted-section .sec-content {
  color: var(--gray-color) !important;
}
/* -------------------- general -------------------- */
body {
  font-family: var(--lato-regular);
  overflow-x: hidden;
  color: var(--black-color);
}

.form-check-input[type="radio"]:focus,
.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

a {
  text-decoration: none;
}

p {
  font-family: var(--lato-regular);
}

.lato-regular {
  font-family: var(--lato-regular) !important;
}

.text-main {
  color: var(--primary-color) !important;
}

.main-title {
  color: #000;
  font-size: 32px;
  font-family: var(--lato-bold);
}

/* .lato-medium {
    font-family: var(--lato-medium);
    letter-spacing: 0.5px;
} */

.color-black {
  color: var(--black-color);
}

/* -----------------------------------Header------------------------------ */
.fixed-header {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  background: #fff;
}

.header .nav-item {
  margin-right: 10px;
}

.header .nav-link {
  color: var(--black-color);
  font-size: 16px;
  font-family: var(--lato-regular);
  line-height: 1.5;
  text-transform: capitalize;
  position: relative;
  padding: 15px 16px 15px 16px !important;
}

.header .nav-link::after {
  position: absolute;
  right: 0px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  content: "";
  width: 0;
  height: 3px;
  background: var(--black-color);
  transition: width 0.3s;
}

.header .nav-link:hover::after,
.header .nav-link.active::after {
  width: 95%;
  transition: all 0.3s;
}

.navbar-toggler-icon {
  background-image: url(../images/icons/toggle.png) !important;
  width: 46px !important;
  height: 46px !important;
  background-size: auto !important;
}

.navbar-toggler {
  border: 0px !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.header .logo {
  height: 50px;
}

.header .navbar .container {
  box-shadow: 0px 0px 10px -7px rgba(0, 0, 0, 0.9);
  border-radius: 0px;
  background: #fff;
  padding: 20px;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.header.fixed .navbar .container {
  box-shadow: none;
}

/* ---------------------------------Footer-------------------------- */
.footer {
  background-color: #ffffff;
  padding: 70px 0px 30px;
}

.footer .footer-logo {
  height: 85px;
}

.footer .footer-title {
  color: var(--primary-color);
  font-size: 18px;
  font-family: var(--lato-medium);
  margin-bottom: 20px;
}

.footer .footer-list li {
  margin-bottom: 10px;
}

.footer .footer-list li a {
  font-size: 18px;
  font-family: var(--lato-medium);
  color: var(--black-color) !important;
}

.footer .footer-list li a.active,
.footer .footer-list li a:hover {
  color: var(--primary-color) !important;
}

.footer .footer-list li p {
  font-size: 14px;
  font-family: var(--lato-medium);
  color: var(--black-color);
}

.footer .footer-list li .number {
  color: #202020;
  font-size: 16px;
  font-family: var(--lato-regular);
  margin-bottom: 10px;
}

.footer .bottom-footer {
  border-top: 1px solid var(--primary-color);
}

.footer .bottom-footer p {
  color: var(--black-color);
  font-family: var(--lato-medium);
  font-size: 14px;
}

.footer .bottom-footer p a {
  color: var(--primary-color);
  font-size: 14px;
}

.footer .input-group-text {
  background-color: var(--primary-color) !important;
  font-family: var(--lato-regular);
  font-size: 16px;
  border-radius: 0px;
}

.footer .about {
  padding-left: 5% !important;
}

.footer .form-control {
  border: 1px solid black;
  border-radius: 0px;
}

.footer input::placeholder {
  color: #666666;
  font-size: 14px;
  font-family: Lato-Regular;
}

.footer .form-control:focus {
  border: 1px solid black;
}

.footer .newsletter-form input {
  padding: 11px 10px !important;
}

.footer .newsletter-form input::placeholder {
  color: #666666;
  font-family: var(--lato-regular);
  font-size: 16px;
}

.footer a,
.bottom-footer a {
  text-underline-offset: 3px;
}

.bottom-footer,
.footer p {
  font-family: var(--lato-medium);
}

/* ------------------------------Banner------------------------------- */
.banner-section {
  width: 100%;
  min-height: 90vh;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: start;
  padding-top: 25px;
  justify-content: center;
  color: black;
  text-align: center;
}

.banner-section .banner-title {
  font-family: var(--lato-bold);
  font-size: 32px;
  color: var(--black-color);
  line-height: 1.2;
}

.banner-section .banner-text {
  color: var(--black-color);
  font-size: 18px;
  font-family: var(--lato-medium);
}

/* ----------------------------serve section------------------------- */
.serve-section,
.time-delivery {
  background-color: #fcfcfc;
}
.serve-section a {
  text-decoration: none;
}
.serve-card {
  border: 1px solid var(--black-color);
  border-radius: 0px;
  height: 100%;
  padding: 25px 25px 30px;
  margin: 0px 15px 0px 15px;
}

.serve-card h5 {
  color: var(--primary-color);
  font-size: 24px !important;
  font-family: var(--lato-medium);
  margin-bottom: 10px;
}

.serve-card p {
  color: #aaaaaa;
  font-size: 14px;
  font-family: var(--lato-medium);
}
.serve-card:hover p {
  color: var(--primary-color);
}
.serve-section .serve-card .who-img {
  display: block;
  transition: all 0.4s ease-in-out;
}

.serve-section .serve-card .whohover-img {
  display: none;
  transition: all 0.4s ease-in-out;
}

.serve-section .serve-card:hover .who-img {
  display: none;
}

.serve-section .serve-card:hover .whohover-img {
  display: block;
}

/* --------Trusted Section---------------- */
.trusted-section {
  background-color: #fcfcfc;
}

.trusted-section p {
  max-width: 80%;
}

.trusted-section .single-cta h5 {
  font-family: var(--lato-bold);
  font-size: 40px;
  color: var(--primary-color);
  line-height: 28px;
  margin-bottom: 8px;
}

.trusted-section .single-cta p {
  color: #7d7d7d;
  font-size: 24px;
  margin-bottom: 0;
  font-family: var(--lato-medium);
  line-height: 24px;
}

.trusted-section .bg-primary {
  background-color: #135c9b !important;
}

.trusted-section h5 {
  margin: 0;
}

/* ----------------------FAQ section------------------- */
/* .faq-section {
  background-color: #fcfcfc;
} */

.faq-section .nav {
  background-color: #fed419;
  border-radius: 16px;
  border: 1px solid var(--black-color);
  padding: 25px 60px !important;
}

.faq-section .nav h5 {
  font-family: var(--lato-semibold);
  font-size: 24px;
  color: #222222;
  padding-left: 10%;
}

.faq-section .nav-link {
  text-align: left;
  font-size: 22px;
  font-family: var(--lato-medium);
  color: #222222 !important;
  padding: 5px 10px 5px 10px;
  margin-top: 25px;
  border-left: 5px solid transparent;
}

.faq-section .nav-link.active {
  border-left: 5px solid var(--primary-color);
}

.accordion-button:focus,
.form-control:focus {
  box-shadow: none !important;
}

.faq-section .accordion-item:last-of-type,
.faq-section .accordion-item {
  margin-bottom: 30px;
  border: 0px;
  border-bottom: 1px solid #222222;
  border-radius: 0px;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--primary-color);
}

.faq-section .accordion-button {
  background-color: transparent !important;
  box-shadow: none !important;
  font-size: 24px;
  color: var(--primary-color);
  font-family: var(--lato-medium);
  padding-left: 0px;
  padding-bottom: 25px;
  padding-right: 30px;
}

.faq-section .accordion-body {
  color: #222222;
  font-size: 16px;
  width: 80%;
  padding-top: 0px;
  font-family: var(--lato-medium);
  padding-left: 0px;
}

.faq-section .accordion-button::after {
  background-image: url("../images/icons/down.png") !important;
  background-size: 17px 8px;
  background-position: center;
  position: absolute;
  right: 0px;
  top: 22px;
}

/* ----------------------------Contact-section----------------------- */
.contact-section {
  background-color: #f4f4f4;
  position: relative;
}

.contact-section label {
  font-size: 16px;
  font-family: var(--lato-regular);
  color: var(--black-color);
}

.contact-section label span.required {
  color: #ff3535;
  background: transparent;
}

.contact-section select {
  padding: 11px 10px;
  color: #666666;
}

.contact-section textarea {
  height: auto !important;
}

.your-products .input-group-text {
  border-radius: 0px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 5px;
}

.your-products input[type="search"] {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
  font-size: 18px;
}

.your-products input[type="search"]:focus {
  border: 2px solid var(--black-color);
}

.your-products input[type="search"]::placeholder {
  font-family: var(--lato-regular);
  color: var(--black-color);
  font-size: 16px;
}

.your-products input[type="search"],
.contact-section textarea,
.contact-section select,
.contact-section input[type="search"],
.contact-section input[type="text"],
.contact-section input[type="number"],
.contact-section input[type="email"] {
  border: 1px solid var(--black-color);
  border-radius: 0px;
  height: 48px;
  transition: all 0.2s;
}

.contact-section textarea:focus,
.contact-section select:focus,
.contact-section input:focus {
  border: 2px solid var(--black-color);
}

.contact-section input[type="radio"] {
  border-color: #b3babd;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  margin-top: 0px;
}

.contact-section .checkbox-group {
  margin-right: 60px;
}

.contact-section textarea::placeholder,
.contact-section input::placeholder {
  font-family: var(--lato-regular);
  color: #888888;
  font-size: 16px;
}

.contact-section .form-select {
  border-radius: 0px;
}

.contact-section .btn-primary {
  background-color: #135c9b !important;
  color: #fcfcfc !important;
  font-size: 16px;
  border-radius: 0px;
  border: 1px solid #000;
}

.contact-section .form-select:focus {
  box-shadow: none !important;
}

/* -------------------------------------Certificate-section-------------------- */
.certificate-section {
  background-color: #fcfcfc;
}

.certificate-section .container {
  background-color: var(--primary-color);
}

.certificate-card {
  padding: 70px 50px 70px;
  position: relative;
}

.certificate-card .title,
.certificate-card .sec-content,
.certificate-card .sub-title {
  color: var(--white-color) !important;
}

.certificate-card .sec-content {
  font-size: 18px;
}
/* 
.certificate-section img {
  position: absolute;
  right: -12px;
  top: -6%;
  bottom: 0;
  height: 115%;
  width: auto;
} */

/*---------------------------------------------------powerhouse---------------------------*/

.powerhouse-section h5 {
  font-family: var(--Roboto-bold);
  font-size: 42px;
  color: var(--primary-color);
  line-height: 28px;
  margin-bottom: 8px;
}

.powerhouse-section p {
  /* color: #7d7d7d; */
  color: var(--black-color);
  font-size: 18px;
  margin-bottom: 0;
  line-height: 24px;
  font-family: var(--lato-regular);
}

.owl-theme .owl-dots .owl-dot span {
  width: 25px !important;
  height: 5px !important;
  margin: 5px 7px !important;
  background-color: #135c9b !important;
  display: block !important;
  -webkit-backface-visibility: visible !important;
  transition: opacity 0.2s ease !important;
  border-radius: 15px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.dots .owl-dot:hover span {
  background-color: #fff !important;
  border: 2px solid blue !important;
}

.faq .nav-link.active {
  border-left: 1px solid black;
}

.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  border: 1px solid black;
}

/* --------------Product section----------------- */

.product-section {
  background-color: #fcfcfc;
  padding: 120px 0px;
}

.product-section .btn-two {
  position: absolute;
  right: 0px;
  top: 7%;
  font-family: var(--lato-medium) !important;
  text-underline-offset: 5px;
  font-size: 14px;
}

.product-carousel .owl-dots {
  text-align: center;
  position: absolute !important;
  left: 50%;
  bottom: -10%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.product-section::before {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.2); */
  background: url(../images/bg/product-bg.png);
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
  content: "";
  top: 0px;
  bottom: 0px;
}

.product-section .nav-link {
  text-align: left;
}

.product-section .product-card h5 {
  font-family: var(--lato-medium);
  font-size: 18px;
  padding: 15px 20px;
  color: var(--black-color);
  margin-bottom: 0px;
}

.product-section .owl-prev {
  left: -8% !important;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.product-section .owl-next {
  right: -8% !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.product-section .owl-prev img,
.owl-next img {
  background-color: #135c9b !important;
  padding: 13px 19px !important;
  border-radius: 0px;
}

.product-section .owl-theme .owl-dots .owl-dot span {
  width: 25px !important;
  height: 5px !important;
  margin: 0px 8px 0px 0px !important;
  background-color: #fff !important;
  display: block !important;
  -webkit-backface-visibility: visible !important;
  transition: opacity 0.2s ease !important;
  border-radius: 0px !important;
  border: 1px solid #135c9b !important;
}

.product-section .owl-theme .owl-dots .owl-dot.active span,
.product-section .dots .owl-dot:hover span {
  background-color: #135c9b !important;
  border: 2px solid #135c9b !important;
  height: 8px !important;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

/*------------------------------------------other-manufacturers---------------*/

.other-manufacturers .title {
  font-family: var(--lato-bold) !important;
  font-size: 48px !important;
  color: #000 !important;
}

.other-manufacturers {
  background-color: #f4f4f4;
}

.other-manufacturers .owl-carousel img {
  /*width: auto !important;
  filter: grayscale(1);*/
}

.other-manufacturers img {
  /*width: auto !important;
  filter: grayscale(1);*/
}
/*--------------------------------------------Our Manufacturer---------------*/
.our-manufacturer {
  background-color: #fcfcfc;
}

.our-manufacturer .title {
  font-family: var(--lato-bold) !important;
  font-size: 48px !important;
  color: #000 !important;
}

.testi-card {
  position: relative;
  padding: 45px;
  margin: 20px 0px;
}

.testi-card .testi-content {
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.12);
  padding: 40px 30px;
  position: relative;
  border-radius: 15px;
}

.testi-card .testi-content .rating {
  font-size: 12px;
  font-family: var(--lato-medium);
  color: #8f8f8f;
}

.testi-card .testi-content p {
  font-family: var(--lato-medium);
  font-size: 18px;
}

.testi-card .testi-content h5 {
  color: var(--primary-color);
  font-size: 24px;
  font-family: var(--lato-medium);
  margin-bottom: 0;
  /* text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3); */
}

.testi-card .shapes .img-1 {
  position: absolute;
  top: 0px;
  right: 0px;
}

.testi-card .shapes .img-2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.our-manufacturer .owl-prev {
  left: -18% !important;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.our-manufacturer .owl-next {
  right: -18% !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.our-manufacturer .owl-prev img,
.owl-next img {
  background-color: #135c9b !important;
  padding: 13px 19px !important;
  border-radius: 0px;
}

.our-manufacturer .owl-theme .owl-dots {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.our-manufacturer .owl-theme .owl-dots .owl-dot span {
  width: 25px !important;
  height: 5px !important;
  margin: 0px 7px !important;
  background-color: #fff !important;
  display: block !important;
  -webkit-backface-visibility: visible !important;
  transition: opacity 0.2s ease !important;
  border-radius: 0px !important;
  border: 1px solid #135c9b !important;
}

.our-manufacturer .owl-theme .owl-dots .owl-dot.active span,
.our-manufacturer .dots .owl-dot:hover span {
  background-color: #135c9b !important;
  border: 2px solid #135c9b !important;
  height: 8px !important;
}

.our-manufacturer .manufactor-para {
  color: black;
  margin-bottom: 10px;
  line-height: 24px;
}

.our-manufacturer .owl-carousel .owl-item img {
  display: block;
  width: unset !important;
}
.our-manufacturer .owl-carousel .owl-item .author-img {
  width: 30px !important;
  height: 30px !important;
}
.our-manufacturer .card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 0px;
  padding: 18px 15px;
}

.our-manufacturer .upper {
  position: absolute;
  left: 4%;
  z-index: 99;
  top: -18%;
}
.our-manufacturer .lower {
  position: absolute;
  right: 5%;
  bottom: -18%;
  z-index: 99;
}
.our-manufacturer .upper-quotes1 {
  position: absolute;
  left: 4%;
  z-index: 99;
  top: -25%;
}

.our-manufacturer .upper-quotes2 {
  position: absolute;
  left: 10%;
  z-index: 99;
  top: -25%;
}

.our-manufacturer .lower-quotes1 {
  position: absolute;
  right: 10%;
  bottom: -25%;
  z-index: 99;
}

.our-manufacturer .lower-quotes2 {
  position: absolute;
  right: 4%;
  bottom: -25%;
  z-index: 99;
}

.hassle-section p {
  /* color: #7d7d7d; */
  color: var(--black-color);
  font-size: 16px;
  margin-bottom: 0;
  line-height: 24px;
  font-family: var(--lato-medium);
}

.hassle-section h5 {
  font-family: var(--lato-bold);
  font-size: 28px;
  color: black;
  line-height: 28px;
  margin-bottom: 8px;
  font-weight: bold;
}

.hassle-section .text-para {
  font-family: var(--lato-bold) !important;
  font-size: 18px !important;
}

.contact-section .contact-img {
  position: absolute;
  left: -43px;
  top: 304px;
}

/*------------------------------- 4 page ------------*/

.contact-section .worker {
  position: absolute;
  left: 3px;
  top: 427px;
  max-width: 50%;
}

.your-products span {
  background-color: #135c9b;
}

.your-products .search {
  background-color: #135c9b;
}

.shopkit {
  position: fixed;
  right: 5%;
  z-index: 3;
  bottom: 10%;
  width: 90px;
  height: 90px;
  cursor: pointer;
}

.fixed-steps {
  display: none;
  text-align: center;
}

.fixed-steps .step-card {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 5%;
  top: 50%;
  background-color: #f4f4f4;
  padding: 0px;
  z-index: 9;
  transform: translateY(-50%);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.fixed-steps .step {
  display: inline-block;
  padding: 40px 20px;
  border-radius: 5px;
  /* margin-right: 5px; */
  position: relative;
  cursor: pointer;
}

.step-line {
  position: relative;
}

.fixed-steps .step img {
  display: block;
  margin: 0 auto;
}

/* Add spacing between steps */
.fixed-steps .step + .step {
  margin-top: 70px;
  /* Adjust as needed */
}

/* Add vertical line between steps */
.fixed-steps .step.completed::before,
.fixed-steps .step.active:not(:first-child)::before {
  background-color: var(--primary-color) !important;
}

.completed + .step-line .tick {
  display: block;
}

.fixed-steps .step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 70px;
  background-color: #d9d9d9;
}

.fixed-steps .step {
  color: var(--primary-color);
  font-size: 16px;
  font-family: var(--lato-regular);
}
.fixed-steps .step.step-final {
  color: var(--black-color);
}
.fixed-steps .step.step-final.active {
  color: var(--primary-color);
}
.fixed-steps .step.step-final img {
  filter: brightness(0);
}
.fixed-steps .step.step-final.active img {
  filter: unset;
}
.tick {
  content: "";
  background: url("../images/icons/tick.png") no-repeat center center;
  background-size: contain;
  width: 25px;
  height: 25px;
  right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: green;
  display: none;
}

/* .fixed-steps .step-confirm.active::after,
.fixed-steps .step-contact.active::after {
  content: "";
  position: absolute;
  right: 10px;
  top: -70%;
  background: url("../images/icons/tick.png") no-repeat center center;
  background-size: contain;
  width: 25px;
  height: 25px;
} */

/* .fixed-steps .step.active::after {
    content: "";
    background: url("assets/images/icons/tick.png") no-repeat center center;
    background-size: contain;
    width: 16px; 
    height: 16px;
    position: absolute;
    right: -20px; 
    top: 50%;
    transform: translateY(-50%);
} */
.your-products .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #135c9b !important;
}

.your-products .nav-pills .nav-link.active img {
  filter: brightness(0) invert(1);
}

.your-products .nav-pills .nav-link {
  border-radius: 100px !important;
}

.your-products .nav-link {
  color: #000 !important;
  border: 1px solid var(--primary-color);
  padding: 10px 30px !important;
}

.your-products .nav-link.active {
  color: white !important;
}

.your-products .contact-section {
  background-color: #fff;
}

.your-products .tab-container {
  overflow-x: auto;
  scrollbar-width: none;
}

.your-products .nav-pills {
  flex-wrap: nowrap;
  /* -ms-overflow-style: none;
  scroll-behavior: smooth; */
}

.your-products .nav-pills .nav-item {
  flex-shrink: 0;
}

.hidden {
  display: none;
}

/* Show tick when step is completed */
.completed + .step-line .tick {
  display: block;
}

/*----------------------------------------brand 2 -----------------------------*/
.ironWire-section .btn-outline {
  background-color: #fff !important;
  color: black !important;
  border-radius: 5px !important;
  border: 1px solid #fed419 !important;
  font-family: var(--lato-bold) !important;
  font-size: 12px !important;
  font-weight: 400;
}
.prod-card.industrial,
.ironWire-section .industrial {
  border-bottom: 1px solid #c3c3c3 !important;
  gap: 15px;
}
.prod-card.industrial h5,
.ironWire-section .industrial h5 {
  font-size: 24px;
  font-family: var(--lato-medium);
  color: var(--black-color);
}
.prod-card.industrial p,
.ironWire-section .industrial p {
  margin-bottom: 5px;
  font-size: 16px;
  font-family: var(--lato-medium);
  color: var(--black-color);
}

#back-to-confirm,
#back-to-products {
  top: 30px;
  left: 20px;
  position: absolute;
}

#back-to-confirm {
  top: 0px;
}

.contact-section .brand2-img {
  position: absolute;
  left: -43px;
  top: 464px;
  max-width: 52%;
}

.ironWire-section .processbar {
  position: absolute;
  right: 0;
  z-index: -1;
}

/*--------------- brand 3 ----------------*/
.multiform-section.sec-title .title {
  font-family: var(--lato-bold);
  font-size: 41px;
  color: #000;
}

.multiform-section label {
  font-size: 16px;
  font-family: var(--lato-regular);
  color: #000;
}

.multiform-section textarea {
  border: 1px solid var(--black-color);
  height: auto !important;
}

.multiform-section select,
.multiform-section .form-control {
  border-radius: 0px;
  height: 48px;
}

.multiform-section input::placeholder {
  font-family: var(--lato-regular);
  color: #888888;
  font-size: 16px;
}

.multiform-section .form-select {
  border-radius: 0px;
}

.multiform-section .btn-primary {
  background-color: #135c9b !important;
  color: #fcfcfc !important;
  font-size: 16px;
  border-radius: 0px;
  border: 1px solid #000;
}

.multiform-section .form-select:focus {
  box-shadow: none !important;
}

.multiform-section .processbar {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 278px;
}

/*------------------------------------------ About section --------------------*/

.our-commitment .single-quality:last-child .quality::before {
  content: none;
}

.our-commitment {
  background-color: #fcfcfc;
}

.our-commitment .quality::before {
  content: "";
  position: absolute;
  top: 69px;
  left: 28px;
  height: 70px;
  border: 1px solid #000;
  z-index: 1;
}

.our-commitment .quality {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.our-commitment .main-title {
  margin-bottom: 20px;
}

/*------------------------------------------------ Legalpage ----------------------*/
.legalpage-section .terms-lines::before {
  content: "";
  position: absolute;
  border: 5px solid #135c9b;
  height: 100%;
  top: -35px;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}
.legalpage-section .privacy-letter {
  position: absolute;
  right: 0;
  top: 0;
}
.legalpage-section {
  background: url("../images/bg/policy-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
}
.legalpage-section .text-para {
  font-family: var(--lato-regular);
  font-size: 18px !important;
  color: #000;
}

.legalpage-section .sub-title {
  font-family: var(--lato-bold);
  font-size: 32px;
  color: var(--primary-color);
}
.terms-section .bg-image,
.legalpage-section .bg-image{
	  background: url("../images/bg/bg-image.png");
	  position: absolute;
	  content: "";
	  top: 0px;
	  left: 0px;
	  right: 0px;
	  bottom: 0px;
	  width: 100%;
	  height: 100%; 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
	opacity:0.07;
	z-index: -1
}
.legalpage-section .list-group li,
ul li {
  font-size: 16px;
}

/*-------------------- terms condition --------------------*/

.terms-section .text-para {
  font-family: var(--lato-regular);
  font-size: 18px !important;
  color: #000;
}
.terms-section .terms-letter {
  position: absolute;
  right: 0;
  top: 0;
}
.terms-section {
  background: url("../images/bg/policy-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.terms-section .sub-title {
  font-family: var(--lato-bold);
  font-size: 32px;
  color: var(--primary-color);
}

.terms-lines::before {
  content: "";
  position: absolute;
  border: 5px solid #135c9b;
  height: 100%;
  top: -35px;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}

.contact-section .brands1-img {
  position: absolute;
  left: 7px;
  top: 480px;
  max-width: 50%;
}

/*------------------------------------------------------------------- blog 2  page ----------------------*/
.blog-card {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #b3b3b3;
  height: 100%;
}

.blog-card .card-body {
  padding-top: 30px;
}
.blog-card a{ 
    flex-shrink: 0;
	
}
.blog-card .card-title a {
  font-size: 20px;
  color: var(--black-color);
  font-family: var(--lato-medium);
  text-decoration: none;
}

.blogsbanner-secton {
  width: 100%;
  min-height: 80vh;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
}

.hidden-blog {
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out;
}

.journeysteel-section ul li,
.journeysteel-section .list-group-item {
  border: none !important;
  padding: 0px;
  font-family: var(--lato-medium);
}

.journeysteel-section .title {
  color: #135c9b;
  font-family: var(--lato-bold);
  font-size: 32px;
}

.journeysteel-section .text-para {
  font-family: var(--lato-medium);
  font-size: 18px;
  margin-bottom: 0px;
}

.journeysteel-section .sub-title {
  color: #135c9b;
  font-family: var(--lato-bold);
  font-size: 24px;
}

.list-group li,
ul li {
  font-size: 18px;
}

.wires-section .nav-link {
  text-align: left;
}

.wires-section .owl-prev {
  left: -15% !important;
  top: 40%;
  position: absolute;
}

.wires-section .owl-next {
  right: -15% !important;
  position: absolute;
  top: 40%;
}
.main-carousel-section {
  width: 81%;
  margin: 0 auto;
}
.wires-section .owl-prev img,
.owl-next img {
  background-color: #135c9b !important;
  padding: 13px 19px !important;
  border-radius: 0px;
}

.wires-section .owl-theme .owl-dots {
  bottom: 0%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  position: absolute !important;
  left: 50%;
}

.wires-section .owl-theme .owl-dots .owl-dot span {
  width: 25px !important;
  height: 5px !important;
  margin: 0px 7px !important;
  background-color: #fff !important;
  display: block !important;
  -webkit-backface-visibility: visible !important;
  transition: opacity 0.2s ease !important;
  border-radius: 0px !important;
  border: 2px solid #135c9b !important;
}

.wires-section .owl-theme .owl-dots .owl-dot.active span,
.wires-section .dots .owl-dot:hover span {
  background-color: #135c9b !important;
  border: 2px solid #135c9b !important;
  height: 8px !important;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.btn-outliner {
  background-color: #fff !important;
  color: black !important;
  border-radius: 5px !important;
  border: 1px solid #135c9b !important;
  font-family: var(--lato-bold) !important;
  font-size: 12px !important;
  font-weight: 400;
}

.wires-section .btn-close:hover {
  color: none !important;
  text-decoration: none;
  opacity: none !important;
}

.btn-close:focus {
  box-shadow: none !important;
}

.hidden-blog {
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out;
}

.product-card {
  border: 0px !important;
  border-radius: 5px;
  /* padding: 16px; */
  height: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-card .card-body {
  padding: 0px;
}

/* .product-card .card-body img {
    border: 1px solid #B3B3B3;
    border-radius: 12px;
} */

.product-card .card-body .card-title {
  font-size: 18px;
  font-family: var(--lato-bold);
  color: var(--black-color);
}

.product-card .card-body .card-text {
  font-size: 12px;
  font-family: var(--lato-bold);
  color: var(--black-color);
  margin-bottom: 0px;
}

.your-products .product-card {
  border: 0px !important;
  border-radius: 5px;
  padding: 10px;
  height: 100%;
  margin-top: 10px;
  padding-bottom: 0px;
  margin-bottom: 10px;
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.25);
}

.your-products .product-card .card-body {
  padding: 0px;
  padding-top: 10px;
}

.your-products .product-card .card-body button {
  padding: 0px;
}

.your-products .product-card .card-body .card-text {
  font-size: 12px;
  font-family: var(--lato-bold);
  color: var(--black-color);
  margin-bottom: 5px;
}
.your-products .product-card:hover {
  cursor: pointer;
}
.your-products .btn-outline {
  background-color: #fff !important;
  color: black !important;
  border-radius: 5px !important;
  border: 1px solid #fed419 !important;
  font-family: var(--lato-medium) !important;
  font-size: 12px !important;
  padding: 5px 6px !important;
}
.prod-card.industrial .btn-outline,
.ironWire-section .btn-outline {
  margin-right: 10px;
}
.prod-card.industrial .btn-outline:first-child,
.ironWire-section .btn-outline:first-child,
.product-card .btn-outline:first-child {
  margin-top: 0;
}
.prod-card.industrial .btn-outline,
.ironWire-section .btn-outline,
.product-card .btn-outline {
  margin-top: 10px;
}
.ironWire-section .btn-outline img,
.your-products button img {
  border-radius: 5px;
}

.modal .multiform-section {
  background-image: url("../images/normal/2.png");
  width: 100%;
  min-height: 80vh;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.modal .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}

#newsletterModal .modal-dialog .modal-body {
  background-image: url("../images/bg/newsletter-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f4f4f4;
  min-height: 60vh;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#productModal .modal-dialog .modal-body {
  background-image: url("../images/bg/modal-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f4f4f4;
  min-height: 90vh;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#productModal .modal-dialog .contact-section {
  background-color: transparent;
}

#productModal .modal-dialog .modal-body h3 {
  font-size: 24px;
  color: var(--black-color);
  font-family: var(--lato-regular);
}

#productModal .modal-dialog .modal-body #successMessage h3 span {
  color: var(--primary-color);
  font-family: var(--lato-bold);
  font-size: 64px;
  line-height: 80px;
  text-align: center;
}

#successMessage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

#exampleModal li {
  color: var(--black-color);
  font-family: var(--lato-medium);
}

#exampleModal h4 {
  font-family: var(--roboto-semibold);
  color: var(--primary-color);
  font-size: 16px;
}

#exampleModal .sec-title .title {
  color: var(--primary-color) !important;
}
#newsletterModal .modal-header {
  padding: 0;
}
#thankYouModal .modal-header .btn-close,
#exampleModal .modal-header .btn-close,
#newsletterModal .modal-header .btn-close,
#contactModal .modal-header .btn-close,
#productModal .modal-header .btn-close {
  background-image: url(../images/icons/popup-close.png);
  padding: 0px;
  position: absolute;
  right: 25px;
  top: 25px;
  background-size: cover;
  width: 30px;
  height: 30px;
  opacity: 1;
  z-index: 2;
}

input[type="checkbox"] {
  border-radius: 0px !important;
  border: 1px solid var(--black-color);
}

input[type="checkbox"]:focus {
  box-shadow: none;
}

.product-carousel .product-card {
  background-color: transparent;
}

.product-carousel .product-card h5 {
  padding: 15px 15px 20px 7px;
}

.time-delivery {
  padding: 100px 0px;
  background: url("../images/bg/thankyou-bg.png");
  background-position: center;
}

.powerhouse-section .sec-title .title,
.hassle-section .sec-title .title {
  margin: 20px 0px;
}

.thumbnail-carousel .item img {
  border: 1px solid var(--primary-color);
}

.thumbnail-carousel .item.active img {
  border: 3px solid var(--primary-color);
}
#contactSection {
  scroll-margin-top: 280px;
}
.cart-count {
  position: absolute;
  top: -4px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #b3261e;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 26px;
  font-family: var(--roboto-semibold);
}
.testimonial-carousel .owl-stage {
  display: flex;
}
.testimonial-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.testimonial-carousel .item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.testimonial-carousel .testi-card {
  flex: 1 0 auto;
}
.testi-card .testi-content {
  height: 100%;
}

.testi-card .card-body{
  margin-top: 20px;
}
.no-faqs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  padding: 40px;
}