@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/* Fonts */
:root {
  --clr-primary: #f16a22;
  --clr-black: #000000;
  --clr-white: #ffff;
  --clr-text: #808080;
  --clr-black-200: #1e1e1e;
  --clr-white-400: #f4f4f4;
  --ff-primary: "GT America Trial Ext Rg";
  --ff-body: "Albert Sans", sans-serif;
  --swiper-scrollbar-bottom: 0px;
  --swiper-scrollbar-size: 2px;
  --swiper-scrollbar-drag-bg-color: var(--clr-primary);
  --swiper-pagination-color: var(--clr-primary);
  --swiper-pagination-progressbar-size: 3px;
  --swiper-pagination-progressbar-bg-color: #d6d6d6;
}

/* Browser Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:focus,
a:hover {
  outline: none;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

::selection {
  background-color: #000;
  color: #fff;
}

section {
  position: relative;
  z-index: 1;
}

body {
  font-family: var(--ff-body);
  text-rendering: optimizeSpeed;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(73, 73, 73, 1);
}

p {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
  font-family: var(--ff-body);
  color: rgba(73, 73, 73, 1);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  margin-bottom: 0;
  font-weight: 400;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

.form-control:focus {
  box-shadow: inherit;
}

.dioz__pad {
  padding: 90px 0;
}

.container {
  max-width: 1600px;
}

.overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  top: 0px;
  left: 0;
}

.custom-button {
  position: relative;
  text-transform: capitalize;
  font-family: var(--ff-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  padding: 0px 36px;
  height: 50px;
  border-radius: 8px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-button:hover {
  background: #2f1f19;
  color: #fff;
  border: 1px solid #2f1f19;
  transition: 0.5s ease-in-out;
}

.custom-button.border {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

section[class^="dioz__"] {
  position: relative;
  z-index: 1;
}

.bg-grey {
  background-color: var(--clr-white-400);
}

.dioz__media {
  overflow: hidden;
  border-radius: 16px;
}

.dioz__media .dioz__img {
  width: 100%;
  height: 100%;
  scale: 1.1 !important;
}

.dioz__media .dioz__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dioz__img-radius {
  border-radius: 16px;
  display: block;
  overflow: hidden;
}

.dioz__heading h4,
h4 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  color: var(--clr-black-200);
}

/* HEADER SECTION */
.header {
  background-color: var(--clr-white);
}

/* .dioz__header + section {
  margin-top: 69px;
} */

.dioz__header .navbar-brand img {
  height: 45px;
}

.dioz__header {
  position: fixed;
  display: flex;
  width: 100%;
  background-color: transparent;
  z-index: 999;
  transform: translateY(0%);
  transition: all 0.5s ease-out;
  top: 0;
  left: 0;
}

.dioz__header.fixed-top {
  background: #3a3a3a21;
  backdrop-filter: blur(50px);
}

.dioz__header.is--large {
  transform: translateY(-100%);
  transition: all 0.5s ease-out;
}

.dioz__header.fixed__header {
  transform: translateY(0%);
  background-color: rgb(255, 255, 255);
  transition: all 0.5s ease-out;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.09);
  opacity: 1 !important;
  pointer-events: unset !important;
}

.dioz__header .navbar {
  width: 100%;
  z-index: 999;
  left: 0;
  padding: 12px 0 !important;
  transition: all 0.5s ease-out;
}

.dioz__header.fixed__header .navbar {
  padding: 10px 0 !important;
  transition: all 0.5s ease-out;
}

.navbar-toggler:focus {
  box-shadow: none;
  color: #000000;
}

.navbar-toggler {
  position: relative;
  padding: 0;
  background-image: none;
  border: 1px solid transparent;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  height: 36px;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.navbar-toggler .icon-bar {
  display: block;
  width: 40px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
}

.navbar-toggler .icon-bar:nth-child(2) {
  width: 30px;
}

.dioz__header.fixed__header .navbar-toggler .icon-bar {
  background-color: var(--clr-primary);
}

.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 6px;
}

.dioz__header .custom__offcanvas {
  width: 100% !important;
  transition: all 1.2s cubic-bezier(0.575, 0.005, 0.285, 1.005);
  height: 100vh;
}

.custom__offcanvas .offcanvas-header {
  padding: 0;
}

.custom__offcanvas .offcanvas-body .navbar-nav {
  flex-direction: row;
  gap: 38px;
  transition: all 0.5s cubic-bezier(0.575, 0.005, 0.285, 1.005);
  flex-wrap: wrap;
}

.custom__offcanvas.show .offcanvas-body .navbar-nav {
  transform: translateX(0%);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom__offcanvas .icon img {
  /* position: absolute; */
  height: 32px;
  object-fit: contain;
}

.custom__offcanvas .dropdown-item:focus,
.custom__offcanvas .dropdown-item:hover {
  color: var(--bs-dropdown-link-hover-color);
  background-color: unset;
}

.custom__close {
  position: absolute;
  z-index: 999;
  top: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background-color: transparent;
  border: none;
}

.icon-cross {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}

.icon-cross span {
  position: absolute;
  display: block;
  background: #fff;
  transition: all 0.75s cubic-bezier(0.3, 0.1, 0.3, 1);
}

.icon-cross span:nth-child(1) {
  width: 3px;
  height: 0;
  top: 25%;
  left: calc(50% - 1px);
  transition-delay: 0s;
  border-radius: 50px;
}

.icon-cross span:nth-child(2) {
  width: 0;
  height: 3px;
  left: 25%;
  top: calc(50% - 1px);
  transition-delay: 0.25s;
  border-radius: 50px;
}

.show .icon-cross span:nth-child(1) {
  height: 50%;
  transition-delay: 0.325s;
}

.show .icon-cross span:nth-child(2) {
  width: 50%;
  transition-delay: 0.025s;
}

.custom__offcanvas .dropdown-menu {
  background-color: transparent;
  border: none;
}

/* .container-box .col-md-6:has(.left-nav-box) {
  border-right: 1px solid #fff;
} */
.map-mega-box {
  position: relative;
}

.dgHome-factories__map-markers [class^="marker-one-"] {
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition-delay: 0s;
}

.dgHome-factories__map-markers [class^="marker-one-"] img {
  height: 38px;
}

.dgHome-factories__map-markers a .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bb6830;
  cursor: pointer;
  -webkit-box-shadow: #bb6830 rgba(187, 104, 48, 0.9);
  box-shadow: 0 0 0 0 rgba(187, 104, 48, 0.9);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  position: absolute;
  left: 16px;
  top: 38px;
}

/* ================================= dioz offcanvas menu ============================ */

.dioz__sidebar {
  background-color: #fff;
  padding: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 96vh;
  width: calc(100% - 20px);
  margin: 15px auto;
  border-radius: 15px;
}

.dioz__sidebar-top {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.dioz__header .dioz__sidebar-top img {
  width: 100% !important;
  height: 150px !important;
}

.dioz__sidebar-top-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  z-index: 99;
  padding: 35px;
}

.dioz__sidebar-top::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  background: linear-gradient(152.62deg,
      rgba(0, 0, 0, 0.2) 26.43%,
      rgba(0, 0, 0, 0) 67.94%);
  z-index: 1;
}

.dioz__sidebar-top-cont h5 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.dioz__sidebar-top-cont p {
  color: #fff;
}

.dioz__sidebar-icon {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  bottom: 30px;
  background: #fff;
  z-index: 999;
}

.dioz__header .dioz__sidebar-icon img {
  width: 30px !important;
  height: auto !important;
  filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(6979%) hue-rotate(194deg) brightness(84%) contrast(112%);
}

.dioz__sidebar-mid {
  position: relative;
  padding: 12px 0;
  margin-top: 30px;
  border: 1px solid rgba(206, 206, 206, 1);
  border-width: 1px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.dioz__sidebar-mid-left ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.dioz__sidebar-mid-left li a {
  color: rgba(123, 122, 122, 1);
  font-size: 18px;
  display: flex;
  align-content: center;
  gap: 8px;
}

.dioz__sidebar-mid-left li a:hover {
  color: var(--clr-primary);
}

.dioz__sidebar-mid-left li a img {
  width: 24px !important;
}

.dioz__sidebar-mid-right {
  position: relative;
}

.dioz__sidebar-mid-right .top-nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.dioz__sidebar-mid-right .top-nav .current_page_item .nav-link {
  background: rgba(244, 244, 244, 1);
  border-radius: 5px;
  color: var(--clr-primary);
}

.dioz__sidebar-mid-right .top-nav .nav-link:hover {
  background: rgba(244, 244, 244, 1);
  border-radius: 5px;
  color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.dioz__sidebar-mid-right .top-nav .nav-link {
  padding: 10px 20px !important;
  font-size: 18px;
  color: rgba(123, 122, 122, 1);
  transition: all 0.4s ease-in-out;
}

.dioz__sidebar-bottom {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
}

.dioz__sidebar-loction {
  position: relative;
  width: 35%;
}

.dioz__sidebar-loction h4 {
  margin-bottom: 15px;
}

.dioz__sidebar-loction ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 12px;
  width: 100%;
  justify-content: space-between;
}

.dioz__sidebar-loction ul li {
  width: 23.3%;
  text-align: center;
}

.dioz__sidebar-loction ul li img {
  width: 100%;
  height: 81px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
}

.dioz__sidebar-menu-wrap .dioz__menu-box h4 {
  display: none;
}

.dioz__sidebar-loction ul li h6 {
  font-size: 18px;
  color: rgba(123, 122, 122, 1);

}

.title_for_sub_heading {
  margin-bottom: 15px;
}

.dioz__menu-box .navbar-nav .title_for_sub_heading .nav-link {
  margin-bottom: 15px;
  color: rgba(30, 30, 30, 1);
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  color: var(--clr-black-200);
}

.dioz__sidebar-menu-wrap {
  position: relative;
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 30px;
}

.dioz__menu-box {
  position: relative;
  padding-left: 25px;
  flex: 1 0 auto;
}

.dioz__menu-box .navbar-nav {
  flex-direction: column !important;
  gap: 0 !important;
}

.dioz__menu-box .navbar-nav .menu-item {
  margin-bottom: 15px;
}

.dioz__menu-box .navbar-nav .menu-item:last-child {
  margin-bottom: 0;
}

.dioz__menu-box .navbar-nav .nav-link {
  font-size: 18px;
  color: rgba(123, 122, 122, 1);
  padding: 0;
}

.dioz__menu-box .navbar-nav .nav-link:hover {
  color: var(--clr-primary);
}

/* ================================= dioz offcanvas menu ============================ */

/* banner................. */
.dioz__banner {
  position: relative;
  width: 100%;
}

.dioz__banner-video {
  position: relative;
  width: 100%;
}

.dioz__banner-video video {
  width: 100%;
  height: 100%;
}

.dioz__banner-box {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
}

.dioz__banner-arrow span {
  display: inline-flex;
  width: 35px;
  height: 55px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--clr-white);
  animation: arrowBounce 1.5s infinite ease-in-out;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

.dioz__banner-arrow span img {
  height: 24px;
  object-fit: contain;
}

.dioz__banner-arrow {
  padding-top: 15px;
}

.dioz__banner-cont {
  width: 35%;
  margin: 0 auto;
}

.dioz__banner-cont h1 {
  font-size: 40px;
  line-height: 1.3;
  font-family: var(--ff-primary);
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.dioz__banner-cont p {
  color: #fff;
}

/* dioz__factories */
.dioz__factories {
  position: relative;
  width: 100%;
}

.dioz__factories-heading {
  position: relative;
  width: 100%;
}

.dioz__head-wrap {
  margin-bottom: 30px;
}

.dioz__head-wrap .dioz__heading {
  margin-bottom: 15px;
}

.dioz__heading h2,h2 {
  font-size: 60px;
  line-height: 1.3;
  font-family: var(--ff-primary);
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.dioz__factories-heading .dioz__heading h2 span {
  display: block;
  font-size: 90px;
}

.dioz__factories-heading .dioz__cont {
  width: 40%;
  position: absolute;
  top: 0;
  left: 22%;
}

.dioz__factories-heading .dioz__cont p {
  font-size: 18px;
  line-height: 28px;
}

.dioz__factories-right {
  position: relative;
  width: 100%;
}

.dioz__factories-right ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}

.dioz__factories-right ul li img {
  border-radius: 12px;
}

.dioz__factories-right li {
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
}

.dioz__factories-right img {
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.dioz__factories-right li:hover img {
  transform: scale(1.05);
  transition: all 0.4s ease-in-out;
}

.dioz__factories-img {
  position: relative;
  width: 100%;
}

.dioz__factories-img {
  position: relative;
  width: 100%;
}

.dioz__factories-wrap {
  position: relative;
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-top: 130px;
  margin-top: -170px;
}

.dioz__factories-box {
  width: 90px;
  position: absolute;
  top: 0;
  text-align: center;
  z-index: 99;
}

.dioz__factories-box li {
  color: #7b7a7a;
  font-size: 16px;
  margin-bottom: 3px;
}

.dioz__factories-box img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin: 0 auto 12px;
  object-fit: cover;
}

.dioz__factories-box h6 {
  font-size: 20px;
  color: #000;
  margin-bottom: 12px;
}

.dioz__factories-box.india {
  left: inherit;
  right: 28.5%;
  top: 250px;
}

.dioz__factories-box.bangladesh {
  left: inherit;
  right: 24.8%;
  top: 405px;
}

.dioz__factories-box.china {
  left: inherit;
  right: 22%;
  top: 200px;
}

.dioz__factories-box.philipines {
  left: inherit;
  right: 16%;
  top: 355px;
}

.dioz__factories-box.turkey {
  left: inherit;
  right: 41%;
  top: 220px;
}

.dioz__factories-box.spain {
  left: 41%;
  top: 40px;
}

.dioz__factories-box.brazil {
  left: 20%;
  top: -20px;
}

.dioz__factories-box.australia {
  left: inherit;
  right: 10%;
  top: 58px;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f16a22;
  cursor: pointer;
  -webkit-box-shadow: #f16a22 rgba(240, 110, 24, 0.9);
  box-shadow: 0 0 0 0 rgba(236, 125, 52, 0.9);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  position: relative;
  margin: 10px auto;
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(240, 92, 36, 0.9);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(240, 92, 36, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(240, 92, 36, 0);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(240, 92, 36, 0.9);
  }

  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(240, 92, 36, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(240, 92, 36, 0);
  }
}

.dioz__factories-box .line {
  position: absolute;
  top: 100%;
  width: #c2c2c2;
  height: 300px;
  left: 50%;
  content: "";
  border: 1px dashed #c2c2c2;
  transform: translateX(-50%);
}

.dioz__factories-box.australia .line {
  height: 500px;
}

.dioz__factories-box.india .line {
  height: 280px;
}

.dioz__factories-box.bangladesh .line {
  height: 100px;
}

.dioz__factories-box.china .line {
  height: 235px;
}

.dioz__factories-box.philipines .line {
  height: 200px;
}

.dioz__factories-box.turkey .line {
  height: 125px;
}

.dioz__factories-box.spain .line {
  height: 350px;
}

.dioz__factories-box.brazil .line {
  height: 415px;
}

.dioz__factories-box .line::before {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  bottom: -20px;
  background: #fff;
  content: "";
  transform: translateX(-50%);
  border: 1px solid #c3bebe;
}

.dioz__factories-box:hover .line::before {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.dioz__vetical-marquee {
  height: 250px;
  overflow: hidden;
}

/* top blur */
.dioz__vetical-marquee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, #fff, transparent);
  z-index: 2;
  pointer-events: none;
}

/* bottom blur */
.dioz__vetical-marquee::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 2;
  pointer-events: none;
}

.dioz__vetical li a {
  width: 150px;
  height: 50px;
  color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-transform: capitalize;
  border-radius: 5px;
  border: 1px solid #1e1e1e;
}

.dioz__vetical {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  animation: verticalMarquee 8s linear infinite;
}

.dioz__vetical-marquee.horizontal .dioz__vetical {
  animation: horoizontalMarquee 8s linear infinite;
  flex-direction: row;
  gap: 8px;
}

.dioz__marquee-sec .dioz__vetical-marquee {
  height: unset;
}

.dioz__marquee-sec {
  overflow: hidden;
}

.dioz__marquee-sec .dioz__vetical-marquee::after,
.dioz__marquee-sec .dioz__vetical-marquee::before {
  background: unset;
}

.dioz__vetical li {
  padding: 10px 0;
}

@keyframes verticalMarquee {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes horoizontalMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.dioz__factories-main {
  position: relative;
}

.dioz__factories-main .dioz__vetical-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
}

.dioz__portfolio-box {
  position: relative;
  width: 100%;
  background: #f4f4f4;
  border-radius: 16px;
  padding: 55px 0 10px;
  overflow: hidden;
}

.dioz__portfolio-ingwrap {
  display: flex;
  width: 104%;
  gap: 6px;
  align-items: center;
  margin-left: -2%;
}

.dioz__portfolio-box.left .dioz__portfolio-imgbox {
  width: 36%;
  height: 400px;
  overflow: hidden;
}

.dioz__portfolio-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.dioz__portfolio-imgbox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.dioz__portfolio-box.left .dioz__portfolio-imgbox:nth-child(2) {
  height: 540px;
}

.dioz__portfolio-box-content {
  padding: 40px 0 0 12px;
}

.dioz__portfolio-box-content ul {
  width: 45%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dioz__portfolio-box-content ul a {
  display: inline-block;
  color: #1e1e1e;
  font-size: 18px;
  text-transform: capitalize;
  border-radius: 5px;
  background: #fff;
  padding: 10px 20px;
}

.dioz__portfolio-box-content ul a:hover {
  color: #fff;
  background: var(--clr-primary);
}

.portfolio-btn {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.portfolio-btn:hover {
  background: var(--clr-black);
  transition: all 0.4s ease-in-out;
}

.dioz__portfolio-box.right .dioz__portfolio-ingwrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.dioz__portfolio-box.right .portfolio-imgbox {
  height: 400px;
}

.portfolio-imgbox-1 {
  grid-area: 1 / 1 / 3 / 2;
}

.portfolio-imgbox-2 {
  grid-area: 1 / 2 / 2 / 4;
}

.portfolio-imgbox-3 {
  grid-area: 1 / 4 / 3 / 5;
}

.portfolio-imgbox-4 {
  grid-area: 2 / 2 / 3 / 3;
}

.portfolio-imgbox-5 {
  grid-area: 2 / 3 / 3 / 4;
}

.dioz__portfolio-box.right .portfolio-imgbox-2 {
  height: 266px;
}

.dioz__portfolio-box.right .portfolio-imgbox-3 {
  height: 400px;
}

.dioz__portfolio-box.right .portfolio-imgbox-1 {
  height: 400px;
}

.dioz__portfolio-box.right .portfolio-imgbox-4 {
  height: 266px;
}

.dioz__portfolio-box.right .portfolio-imgbox-5 {
  height: 266px;
}

.dioz__portfolio-box.right .dioz__portfolio-box-content ul {
  width: 61%;
}

/* dioz power house */
.dioz__power-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  position: relative;
}

.dioz__power-wrap>* {
  width: 19%;
}

.dioz__power-wrap .dioz__power-single:nth-child(2) {
  margin-top: 10px;
}

.dioz__power-wrap .dioz__power-single:nth-child(3) {
  margin-top: 25px;
}

.dioz__power-wrap .dioz__power-single:nth-child(4) {
  margin-top: 10px;
}

.dioz__powerhouse-bottom {
  display: flex;
  gap: 45px;
  justify-content: space-between;
  margin-top: 65px;
}

.dioz__powerhouse-bottom>* {
  width: 40%;
}

.dioz__powerhouse-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 23%;
  box-shadow: -3px 15px 15px 0px rgba(0, 0, 0, 0.09);
}

.dioz__powerhouse-label img {
  width: 260px;
}

.dioz__global {
  width: calc(100% - 20px);
  border-radius: 16px;
  margin: 0 auto;
  overflow: hidden;
}

.dioz__global-wrap {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.dioz__global-wrap>* {
  width: 15%;
  flex: 1 0 auto;
  position: relative;
  height: 100%;
}

.dioz__global-singlecont {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.dioznew__location-details {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
  z-index: 2;
}

.dioz__global-single:hover .dioznew__location-details {
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
  opacity: 1;
}

.dioznew__location-details h6 {
  font-size: 20px;
  line-height: 28px;
  color: var(--clr-white);
  font-weight: 400;
  font-family: var(--ff-body);
  padding-bottom: 5px;
}

.dioz__global-single .dioz__img.overlay::before {
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(to top, #0000008c 0%, #00000009 100%);
  background-color: unset;
  z-index: 0;
}

.dioz__global-single:hover .dioz__img.overlay::before {
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
  opacity: 1;
}

.dioz__global-single .dioz__media .dioz__img {
  scale: unset !important;
  overflow: hidden;
  position: relative;
}

.address-part li {
  font-size: 16px;
  line-height: 23px;
  color: var(--clr-white);
  font-weight: 400;
  font-family: var(--ff-body);
}

.address-part li+li {
  padding-top: 8px;
}

.address-part li a {
  color: var(--clr-white);
}

.dioz__badge {
  background-color: var(--clr-black-200);
  color: var(--clr-white);
  display: inline-flex;
  padding: 8px 15px;
  font-size: 12px;
  line-height: 1;
  font-family: var(--ff-body);
  font-weight: 600;
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 10px;
  text-transform: uppercase;
  border-radius: 50px;
}

.dioz__badge-primary {
  background-color: var(--clr-primary);
}

.dioz__global-single:nth-child(2),
.dioz__global-single:nth-child(3) {
  grid-column: span 3;
}

.dioz__global-wrap .dioz__heading {
  margin-top: 15px;
}

.dioz__global .dioz__head-wrap .dioz__heading h2 span {
  display: block;
  font-size: 250px;
  line-height: 160px;
}

/* journey */
.dioz__journey-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.dioz__journey-single .dioz__cont p {
  font-size: 18px;
}

.dioz__journey-wrap>* {
  width: 16%;
  padding-bottom: 15px;
}

.dioz__journey-single .dioz__media .dioz__img img {
  transform: scale(1);
  transition: all 0.4s ease-in-out;
  height: 150px;
}

.dioz__journey-single .dioz__img:hover img {
  transform: scale(1.05);
  transition: all 0.4s ease-in-out;
}

.dioz__journey-phasehead h3 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  text-align: left;
  color: var(--clr-black-200);
}

.dioz__journey-phasehead {
  border-top: 2px solid #7b7a7a;
  padding-top: 15px;
  margin-bottom: 25px;
}

.dioz__journey-year {
  border-top: 1px solid #7b7a7a;
  padding-top: 8px;
  margin-bottom: 25px;
}

.dioz__journey-single .dioz__cont {
  padding-bottom: 15px;
}

.dioz__journey-single .dioz__cont p {
  min-height: 90px;
}

.dioz__journey-year h6 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-primary);
}

.dioz__journey-phase {
  background-color: var(--clr-white);
  position: relative;
  overflow: hidden;
  margin-top: 25px;
  padding-top: 35px;
}

.dioz__journey-main {
  position: relative;
}

.dioz__journey-main .dioz__vetical-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
}

.dioz__partner {
  position: relative;
  width: calc(100% - 20px);
  margin: 10px auto;
  border-radius: 16px;
}

.dioz__partner .dioz__head-wrap {
  background-color: var(--clr-white);
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 0;
}

.dioz__partner .dioz__cont p {
  padding-bottom: 20px;
  padding-top: 40px;
}

.dioz__partner .dioz__heading h2 {
  font-size: 40px;
}

.dioz__partner-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  background-color: var(--clr-black-200);
  border-radius: 16px;
  overflow: hidden;
  padding: 15px;
  position: relative;
}

.dioz__partner-wrap>* {
  width: 19%;
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.dioz__partner-title h6 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: var(--clr-white);
}

.dioz__partner-title {
  position: absolute;
  bottom: 0;
  padding: 10px;
  width: 100%;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
  z-index: 11;
}

.dioz__partner-single:hover .dioz__partner-title {
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
}

/* clients */
.dioz__clients-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.dioz__partner-single .overlay::before {
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.dioz__partner-single:hover .overlay::before {
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.dioz__clients-single {
  grid-column: span 2;
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dioz__clients-single img {
  max-height: 60px;
  width: 100%;
  object-fit: contain;
}

.dioz__clients-single:nth-child(7) {
  grid-column: 2 / span 2;
}

.dioz__clients-single:nth-child(12) {
  grid-column: 3 / span 2;
}

.dioz__clients-single:nth-child(16) {
  grid-column: 4 / span 2;
}

/* certificate */
.dioz__certificate-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.dioz__certificate-single {
  grid-column: span 2;
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dioz__certificate-single img {
  max-height: 60px;
  width: 100%;
  object-fit: contain;
}

.dioz__certificate-single:nth-child(7) {
  grid-column: 2 / span 2;
}

.dioz__certificate-single:nth-child(12) {
  grid-column: 3 / span 2;
}

.dioz__certificate-single:nth-child(16) {
  grid-column: 3 / span 2;
}

.dioz__counter-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: auto;
}

.dioz__counter-single {
  border: 1px solid #7b7a7a;
  border-radius: 10px;
  padding: 18px 20px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

.dioz__counter-single h3 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 60px;
  line-height: 70px;
  color: var(--clr-black-200);
  text-align: right;
}

.dioz__counter-single:nth-child(1) {
  grid-column: 2;
}

.dioz__counter-single:nth-child(6) {
  grid-column: 3;
}

/* Footer */

.dioz__footer {
  background-color: var(--clr-black-200);
  padding: 30px 0;
  position: relative;
  width: 100%;
  color: var(--clr-white);
}

.dioz__foot-logo {
  margin-bottom: 25px;
}

.dioz__foot-logo img {
  height: 80px;
  object-fit: contain;
}

.dioz__foot-box .dioz__cont p {
  color: var(--clr-white);
  padding-bottom: 25px;
}

.dioz__foot-box h4 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  color: var(--clr-white);
}

.dioz__footbox-head h4 {
  text-align: center;
  border-bottom: 1px solid #ffffff80;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.dioz__foot-content {
  padding-bottom: 35px;
}

.dioz__foot-content h4 {
  padding-bottom: 15px;
}

.dioz__foot-box.products .dioz__foot-content ul {
  column-count: 2;
}

.dioz__foot-box ul li a {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  color: var(--clr-white);
  transition: all 0.4s ease-in-out;
}

.dioz__foot-content li:hover a {
  color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.dioz__foot-box ul li+li {
  margin-top: 15px;
}

.conatct.dioz__foot-box ul li a span {
  display: inline-flex;
  align-items: center;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 5px;
}

.conatct.dioz__foot-box ul li {
  padding-left: 30px;
  position: relative;
}

.dioz__foot-box .form-control {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-white);
  border-radius: 0;
  color: var(--clr-white);
  padding: 20px 0;
}

.dioz__foot-box .form-button .wpcf7-spinner {
  position: absolute;
}

.dioz__foot-box .form-button {
  margin-top: 20px;
  text-align: center;
}

.dioz__foot-box textarea.form-control {
  resize: none;
  min-height: 60px;
}

.dioz__foot-box .form-control::placeholder {
  color: var(--clr-white);
}

.dioz__foot-imgwrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 120px 180px;
  gap: 10px;
}

.dioz__foot-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* grid position */
.dioz__foot-imgwrap img:nth-child(1) {
  grid-row: 1 / span 2;
}

.dioz__foot-imgwrap img:nth-child(2) {
  grid-row: 1;
}

.dioz__foot-imgwrap img:nth-child(3) {
  grid-row: 3;
}

.dioz__foot-imgwrap img:nth-child(4) {
  grid-row: 2 / span 2;
}

.dioz__foot-box {
  padding: 50px 20px 50px 0;
  border-right: 1px solid #949494;
  height: 100%;
}

.dioz__footer-wrap {
  border-top: 1px solid #949494;
  border-bottom: 1px solid #949494;
  border-left: 1px solid #949494;
  padding-left: 20px;
}

.dioz__footer-bottom .dioz__footer-bottomsocial {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

/* .dioz__footer-bottomsocial p {
  display: flex;
} */

.dioz__footer-bottomcopy p {
  display: none;
}

.dioz__footer-bottom ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dioz__footer-bottomsocial ul li.menu-item+li.menu-item {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #fefefe;
}

.dioz__footer-bottomsocial ul:has(li.menu-item) {
  gap: 0;
}

.dioz__footer-bottom ul li img {
  height: 25px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7440%) hue-rotate(289deg) brightness(106%) contrast(105%);
  transition: all 0.4s ease-in-out;
}

.dioz__footer-bottomsocial ul li:hover img {
  filter: brightness(0) saturate(100%) invert(65%) sepia(49%) saturate(6066%) hue-rotate(346deg) brightness(96%) contrast(97%);
  transition: all 0.4s ease-in-out;
}

.dioz__footer-bottom p {
  text-align: center;
}

.dioz__footer-bottom p,
.dioz__footer-bottom p a,
.dioz__footer-bottom li a {
  color: var(--clr-white);
  font-size: 20px;
  line-height: 30px;
  transition: all 0.4s ease-in-out;
}

.dioz__footer-bottom p a {
  text-decoration: underline;
}

.dioz__footer-bottom p a:hover {
  color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.dioz__footer-bottom li:hover a {
  color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

/* .dioz__sustainability */
.dioz__sustainability {
  position: relative;
  width: 100%;
}

.dioz__sustainability-video {
  position: absolute;
  width: calc(100% - 20px);
  margin: 0 auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.dioz__sustainability-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dioz__sustainability-video::before {
  background: linear-gradient(130.83deg,
      rgba(0, 0, 0, 0.5) 21.37%,
      rgba(0, 0, 0, 0) 37.24%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
}

.dioz__sustainability-wrap {
  position: relative;
  width: 100%;
  padding: 50px 0;
  z-index: 9;
}

.dioz__sustainability-left {
  position: relative;
}

.dioz__sustainability-left h3 {
  font-size: 32px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 12px;
}

.dioz__sustainability-left p {
  color: #fff;
}

.dioz__sustainability-right {
  text-align: right;
  position: relative;
}

.dioz__sustainability-right h2 {
  color: #fff;
}

.dioz__sustainability-left h2 {
  color: #fff;
  display: none;
}

.dioz__sustainability-right-img {
  width: 320px;
  margin-left: auto;
}

.dioz__sustainability-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

.dioz__sustainability-box {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(50px);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  flex-direction: column;
  width: 32%;
}

.dioz__sustainability-box span {
  font-size: 24px;
  color: #fff;
}

.dioz__sustainability-box-cont {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}

.dioz__sustainability-box-cont h4 {
  width: 35%;
  color: #fff;
  font-size: 24px;
}

.dioz__sustainability-box-cont p {
  padding-left: 20px;
  border-left: 1px solid #fff;
  color: #fff;
  width: 65%;
}

.dioz__sustainability-box:nth-child(2) {
  margin: 0 auto;
}

.dioz__sustainability-box:last-child {
  margin-left: auto;
}

.dioz__sustainability-box::before {
  position: absolute;
  bottom: -90px;
  height: 92px;
  width: 1px;
  border: 1px dashed rgba(255, 255, 255, 1);
  content: "";
  left: 40%;
}

.dioz__sustainability-box::after {
  position: absolute;
  bottom: -90px;
  height: 1px;
  width: 60%;
  border: 1px dashed rgba(255, 255, 255, 1);
  content: "";
  left: 40%;
}

.dioz__sustainability-box:last-child::after,
.dioz__sustainability-box:last-child::before {
  display: none;
}

.dioz__production {
  position: relative;
  width: 100%;
}

.dioz__production-left {
  padding-top: 50px;
}

.dioz__production-box {
  position: relative;
  width: 100%;
  padding: 20px 0;
  border: 1px dashed rgba(123, 122, 122, 1);
  border-width: 1px 0;
}

.dioz__production-img.dioz__media img {
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.dioz__production-img:hover img {
  transform: scale(1.05);
  transition: all 0.4s ease-in-out;
}

.dioz__production-box .dioz__media .dioz__img {
  scale: unset !important;
}

.dioz__production-box:last-child {
  border-top: inherit;
}

.dioz__production-cont {
  margin-top: 20px;
  padding: 0 90px 0 0;
}

.dioz__production-cont h4 a {
  font-size: 30px;
  color: rgba(30, 30, 30, 1);
  margin-bottom: 12px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dioz__production-cont h4 a:hover {
  color: var(--clr-primary);
}

.dioz__production-cont .portfolio-btn {
  bottom: 30px;
}

.dioz__production-right .dioz__cont {
  margin-bottom: 20px;
}

.dioz__production-right .dioz__production-box {
  padding-left: 20px;
  border-left: 1px dashed rgba(123, 122, 122, 1);
}

.dioz__header .custom-logo-link img {
  width: 180px !important;
  height: auto !important;
}

/*========================================== contact inner start ========================================== */

.page-template-contact-tmpl .dioz__global.dioz__pad.bg-grey {
  background-color: unset;
  width: 100%;
  border-radius: 0;
}
.dioznew__contact-form {
  background-color: var(--clr-white-400);
  border-radius: 16px;
  padding: 25px;
}

.dioznew__contact-form .form-group label {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-black-200);
  padding-bottom: 10px;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  line-height: 23px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--clr-primary);
  font-size: 14px;
  line-height: 22px;
}

.dioznew__contact-form .form-group .form-control,
.dioznew__contact-form .form-group .form-select {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--clr-text);
  padding: 15px 15px;
  border: 1px solid var(--clr-white);
  border-radius: 8px;
  background-color: var(--clr-white);
}

.dioznew__contact-form textarea.form-control {
  resize: none;
  min-height: 130px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: unset;
}

.dioz__contact-infosec .dioz__head-wrap .dioz__heading {
  width: 90%;
}

.dioz__contactinfo-single {
  background-color: var(--clr-white-400);
  border-radius: 16px;
  padding: 25px 15px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dioz__conatct-icon {
  width: 70px;
  height: 70px;
}

.dioz__contactinfo-cont h6 {
  color: var(--clr-black-200);
  padding-top: 12px;
}

.dioz__contactinfo-cont {
  text-align: right;
}

.dioz__contactinfo-cont h6 {
  color: var(--clr-black-200);
  padding-top: 12px;
  font-size: 20px;
  line-height: 30px;
  font-family: var(--ff-body);
  width: 75%;
  margin-left: auto;
}

.dioz__contact-inner .dioz__comon-heading::before {
  bottom: -40px;
  width: 240px;
  height: 130px;
}

.dioz__contact-inner .dioz__head-wrap .dioz__heading {
  width: 80%;
  margin-left: auto;
}

/*========================================== contact inner end ========================================== */

/*========================================== Process inner start ========================================== */

.dioz_process-inner.dioz__comon-heading .dioz__heading h2 {
  width: 90%;
  margin-left: auto;
}

.dioz_process-salesleft .dioz__cont p+p {
  padding-top: 10px;
}

.dioz_process-sales {
  margin-top: 25px;
}

.dioz_process-sales ul li+li {
  margin-top: 20px;
}

.dioz_process-sales ul li {
  border: 1px solid #7b7a7a;
  border-radius: 16px;
  padding: 20px;
}

.dioz__process-salesbox h3 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: var(--clr-black-200);
  padding-bottom: 8px;
}

.dioz_process-sales-imgwrap .dioz__media+.dioz__media {
  margin-top: 18px;
}

.dioz_process-sales.post .dioz_process-sales-imgwrap,
.dioz_process-sales.post .dioz_process-sales-imgwrap .dioz__media {
  height: 100%;
}

.dioz__process-sustainscont h3 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: var(--clr-black-200);
  width: 65%;
  padding-bottom: 10px;
}

.dioz__process-sustainability .dioz__head-wrap .dioz__heading h2 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 186px;
  line-height: 100%;
  text-align: center;
  color: var(--clr-black-200);
}

.dioz__process-sustainability .dioz__head-wrap {
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
}

.dioz__process-sustainsingle {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dioz__process-sustainability-wrap .row [class^="col-"]:first-child .dioz__process-sustainsingle {
  justify-content: space-between;
  padding-top: 75px;
}

.dioz__process-sustainability-wrap .row [class^="col-"]:last-child .dioz__process-sustainsingle {
  justify-content: center;
}

.dioz__process-sustainsingle .dioz__media {
  position: relative;
}

.dioz__process-sustainsingle .dioz__media.overlay::before {
  background: linear-gradient(180deg,
      #ffffff4f 50.64%,
      #ffffff6b 69.42%,
      rgba(255, 255, 255, 0) 89.32%);
}

.dioz__process-counter .dioz__counter-wrap {
  display: flex;
  grid-template-columns: unset;
  gap: 20px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.dioz__process-counter .dioz__counter-wrap>* {
  width: 24%;
}

.dioz__produce-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.dioz__produce-wrapper>* {
  width: 24%;
  position: relative;
}

.dioz__produce-single .dioz__media {
  height: 100%;
}

.dioz__produce-single .dioz__heading {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
}

.dioz__produce-single h5 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 28px;
  line-height: 35px;
  text-transform: uppercase;
  color: var(--clr-white);
  transition: all 0.4s ease-in-out;
}

.dioz__produce-single h5:hover {
  color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.dioz__produce-single .dioz__img {
  position: relative;
}

.dioz__produce-single .dioz__img.overlay::before {
  background: linear-gradient(186.9deg,
      rgba(0, 0, 0, 0) 68.08%,
      rgba(0, 0, 0, 0.5) 79.55%);
}

.dioz__produce .dioz__heading h2 {
  font-size: 142px;
  line-height: 100%;
  margin-bottom: 0;
}

.dioz__produce .dioz__head-wrap,
.dioz__produce .dioz__heading {
  margin-bottom: 0;
}

.dioz__why .dioz__head-wrap .dioz__heading h2 span {
  font-size: 120px;
  line-height: 100%;
}

.dioz__why-single {
  border: 1px dashed #7b7a7a;
  padding: 20px;
  border-radius: 16px;
}

.dioz__why-single .dioz__media {
  margin-bottom: 8px;
}

.dioz__why-single h6 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-black-200);
  text-align: center;
}

.dioz__why-wrapper .row [class^="col-"]:first-child .dioz__why-single,
.dioz__why-wrapper .row [class^="col-"]:last-child .dioz__why-single {
  margin-top: -150px;
}

.dioz__why-wrapper .row [class^="col-"]:nth-child(3) .dioz__why-single {
  margin-top: 20px;
}

.dioz__why-btnwrap {
  text-align: right;
  margin-top: -50px;
}

/*========================================== Process inner end ========================================== */

/* ===================About Page============================ */
.dioz__banner {
  position: relative;
  width: 100%;
}

.dioz__inner-banner-img {
  width: calc(100% - 10px);
  margin: 10px auto;
  position: relative;
}

.dioz__inner-banner-img::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.49) 0%,
      rgba(0, 0, 0, 0) 100%);
}

.dioz__inner-banner .dioz__banner-box {
  position: absolute;
  left: 0;
  bottom: 12%;
  width: 100%;
}

.dioz__inner-banner-cont {
  text-align: center;
}

.dioz__inner-banner-cont h1 {
  font-size: 44px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 400;
}

.dioz__inner-banner-cont .breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.dioz__inner-banner-cont .breadcrumb li {
  position: relative;
  padding-right: 20px;
  font-size: 20px;
  color: #fff;
}

.dioz__inner-banner-cont .breadcrumb li:last-child {
  padding-right: 0;
}

.dioz__inner-banner-cont .breadcrumb li a {
  color: #fff;
}

.dioz__inner-banner-cont .breadcrumb li:last-child::before {
  display: none;
}

.dioz__inner-banner-cont .breadcrumb li::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "/";
  color: #fff;
  font-size: 20px;
}

.dioz__comon-heading {
  position: relative;
}

.dioz__comon-heading::before {
  position: absolute;
  right: 0px;
  bottom: 20px;
  content: "";
  background: url("../images/dioz__heading-pattern.webp") no-repeat 0 0;
  width: 250px;
  height: 140px;
  background-size: 100%, 100%;
}

.dioz__comon-heading .dioz__heading h2 span {
  width: 250px;
  display: inline-block;
}

.dioz__comon-heading .dioz__heading h2 {
  text-transform: capitalize;
}

.dioz__based {
  position: relative;
  width: 100%;
  background-color: rgba(244, 244, 244, 1);
}

.dioz__based .dioz__cont p {
  margin-bottom: 15px;
}

.dioz__based .dioz__cont p:last-child {
  margin-bottom: 0;
}

.dioz__based-img {
  width: 100%;
  height: 100%;
}

.dioz__based-img img {
  width: 100%;
}

.dioz__based-mid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.dioz__based-mid .parallax_horizontal {
  width: 100%;
}

.dioz__based-round {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.dioz__private {
  position: relative;
  width: 100%;
}

.dioz__private-img.dioz__media {
  height: 100%;
}

.dioz__private .dioz__cont {
  padding: 0 0 20px 100px;
}

.dioz__private .dioz__counter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.dioz__private .dioz__counter-single {
  width: 48.5%;
  height: 200px;
}

.dioz__private .dioz__counter-single:last-child {
  width: 100%;
}

.dioz__private .dioz__heading {
  padding-right: 150px;
}

.dioz__brands .dioz__heading span {
  font-size: 250px;
  display: block;
  line-height: 140px;
}

.dioz__brands-wrap {
  padding: 70px 0 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
}

.dioz__brands-box {
  width: 30%;
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding-top: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.dioz__brands-img img {
  width: 100%;
  border-radius: 16px;
}

.dioz__brands-img {
  width: 100%;
}

.dioz__brands-icon img {
  height: 60px;
  object-fit: contain;
}

.dioz__brands-cont p {
  text-align: center;
}

.dioz__brands-cont p a {
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: underline;
}

.dioz__brands-box::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 50px;
  width: 1px;
  background-color: rgba(188, 188, 188, 1);
  content: "";
}

.dioz__brands-wrap::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70px;
  height: 1px;
  width: 70%;
  background-color: rgba(188, 188, 188, 1);
  content: "";
}

.dioz__catalogue {
  position: relative;
}

.dioz__catalogue .dioz__heading {
  padding-right: 120px;
}

.dioz__catalogue .dioz__cont {
  padding-left: 100px;
}

.dioz__catalogue-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  margin-top: 20px;
}

.dioz__catalogue-box-1 {
  grid-area: 1 / 1 / 2 / 2;
}

.dioz__catalogue-box-2 {
  grid-area: 1 / 2 / 2 / 4;
}

.dioz__catalogue-box-3 {
  grid-area: 1 / 4 / 2 / 5;
}

.dioz__catalogue-box-4 {
  grid-area: 2 / 1 / 3 / 2;
}

.dioz__catalogue-box-5 {
  grid-area: 2 / 2 / 3 / 3;
}

.dioz__catalogue-box-6 {
  grid-area: 2 / 3 / 3 / 5;
}

.dioz__catalogue-box {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.dioz__catalogue-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dioz__catalogue-box h5 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  padding: 70px 15px 15px;
  bottom: 0px;
  text-align: center;
  width: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 57.44%,
      rgba(0, 0, 0, 0.57) 100%);
}

.dioz__catalogue-box h5 a {
  color: #fff;
}

.dioz__based .dioz__heading {
  width: 80%;
  margin: 0 auto 25px;
}

.dioz__about-factorybox {
  background-color: var(--clr-white-400);
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  height: 100%;
}

.dioz__about-factorybox .dioz__media {
  margin-bottom: 10px;
}

.dioz__about-factorybox .dioz__heading {
  margin-bottom: 10px;
}

.dioz__about-client-wrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

/* +==================================================== dioz__global-journey================================ ++++++++==================*/
.dioz__global-journey .dioz__comon-heading .dioz__heading {
  width: 90%;
  margin: 0 auto;
}

.dioz__global-journey-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.dioz__global-box {
  position: relative;
  width: 47%;
}

.dioz__global-box p {
  margin-bottom: 15px;
}

/* .dioz__global-img {
  height: 300px;
} */
.dioz__global-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.dioz__global-img.dioz__media:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.dioz__global-cont {
  position: relative;
  width: 80%;
  padding: 10px;
  margin-left: auto;
}

.dioz__global-cont span {
  padding: 10px 15px;
  background: #fff;
  color: rgba(241, 106, 34, 1);
  display: block;
  width: fit-content;
  margin-bottom: 15px;
  font-size: 50px;
}

.dioz__global-box::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  border: 1px dashed rgba(123, 122, 122, 1);
  z-index: -1;
  border-radius: 16px;
}

.dioz__global-box:first-child::before {
  display: none;
}

.dioz__global-box-2::before {
  left: -30px;
  top: 30px;
  width: 95%;
}

.dioz__global-box:nth-child(odd)::before {
  left: inherit;
  width: 90%;
  right: -30px;
  top: 30px;
}

.dioz__global-box:nth-child(even)::before {
  left: -30px;
  top: 30px;
  width: 90%;
}

.dioz__global-box-2 .dioz__global-cont {
  width: 90%;
}

.dioz__global-box-3,
.dioz__global-box-5,
.dioz__global-box-7,
.dioz__global-box-9,
.dioz__global-box-11,
.dioz__global-box-13,
.dioz__global-box-15,
.dioz__global-box-17,
.dioz__global-box-19 {
  width: 60%;
  margin-top: -100px;
}

.dioz__global-box-4,
.dioz__global-box-8,
.dioz__global-box-10,
.dioz__global-box-6,
.dioz__global-box-12,
.dioz__global-box-14,
.dioz__global-box-16,
.dioz__global-box-18,
.dioz__global-box-20 {
  width: 51%;
  margin-top: -100px;
  margin-left: auto;
}

.dioz__global-box-4 .dioz__global-cont {
  width: 42%;
  margin: auto;
}

.dioz__global-box-6 .dioz__global-cont,
.dioz__global-box-17 .dioz__global-cont {
  width: 60%;
}

.dioz__global-box-7 .dioz__global-cont,
.dioz__global-box-14 .dioz__global-cont,
.dioz__global-box-16 .dioz__global-cont {
  width: 35%;
  margin: 0 auto;
}

.dioz__global-box-7 {
  width: 50%;
}

.dioz__global-box-6 {
  width: 65%;
}

.dioz__global-box-5 {
  width: 50%;
}

.dioz__global-box-9 {
  width: 51%;
}

.dioz__global-box-13 {
  width: 55%;
}

.dioz__global-box-14 {
  width: 60%;
}

.dioz__global-box-15 {
  width: 55%;
}

.dioz__global-box-16 {
  width: 55%;
}

.dioz__global-box-17 {
  width: 51%;
}

.dioz__global-box-18 {
  width: 55%;
}

.dioz__global-box-19 {
  width: 60%;
}

.dioz__global-box-12 .dioz__global-cont {
  margin: 0 auto;
  width: 40%;
}

.dioz__global-box-17 .dioz__global-cont {
  margin: 0 auto;
  width: 40%;
}

.dioz__global-box-20 .dioz__global-cont {
  margin: 0 auto;
  width: 40%;
}

.dioz__global-box-18 .dioz__global-cont {
  margin: 0 auto;
  width: 40%;
}

.dioz__global-box-21::before {
  display: none;
}

.dioz__global-box-21 h3 {
  color: rgba(30, 30, 30, 1);
  font-size: 50px;
  text-transform: capitalize;
}

.dioz__global-box-21 {
  text-align: left;
}

.dioz__global-box-21 .dioz__global-cont {
  width: 100%;
  margin-top: -200px;
}

.dioz__portfolio {
  width: 100%;
  height: 100%;
  background-color: var(--clr-white);
}

.dioz__portfolio .dioz__button-wrap {
  margin-top: 25px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.dioz__factories .dioz__button-wrap {
  margin-top: 15px;
}

/* factory tooltip */
.dioznew__tooltip {
  text-align: center;
  pointer-events: none;
  --bs-tooltip-bg: var(--clr-theme-white);
}

.dioznew__tooltip.show {
  opacity: 1 !important;
}

.dioznew__tooltip .tooltip-inner {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  display: flex;
  align-items: center;
  --bs-tooltip-max-width: 320px;
  --bs-tooltip-border-radius: 20px;
  padding: 12px;
  gap: 10px;
  color: #000;
}

.dioznew__tooltip h6 {
  font-size: 16px;
  margin: 0;
  letter-spacing: -0.28px;
  font-weight: 500;
  color: #000;
}

.dioz__factories-boxcontwrap li {
  color: #7b7a7a;
  font-size: 16px;
}

.dioz__factories-boxcontwrap li+li {
  padding-top: 8px;
}

.dioz__factories-boxcont {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 8px;
}

.dioz__factories-boxcont span img {
  width: 35px;
  height: 35px;
}

/* +==============================dioz__global-journey ++++++++==================*/

/* ===================Catalog Page============================ */
.dioz__catalogs-faq {
  position: relative;
  width: 100%;
}

.dioz__catalogs-faq .accordion-button:before {
  top: 50%;
  z-index: 1;
  right: 0px;
  width: 45px;
  height: 45px;
  transform: translateY(-50%);
  content: "\2b";
  display: flex;
  font-size: 20px;
  color: #000;
  font-family: "Font Awesome 7 Free";
  position: absolute;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: rgba(244, 244, 244, 1);
  line-height: 32px;
  font-weight: 900;
}

.dioz__catalogs-faq .accordion-button:not(.collapsed):before {
  content: "\f068";
}

.dioz__catalogs-faq .accordion-button {
  display: flex;
  flex-wrap: wrap;
  padding: 0 50px 0 0;
}

.dioz__catalogs-faq .dioz__catalogs-faq-cont {
  width: 45%;
}

.dioz__catalogs-faq-cont h6 {
  font-size: 24px;
  color: rgba(30, 30, 30, 1);
  margin-bottom: 10px;
}

.dioz__catalogs-faq .accordion-item {
  border: none;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(123, 122, 122, 1);
  border-radius: 0;
}

.dioz__catalogs-faq .accordion-button::after {
  display: none;
}

.dioz__catalogs-faq-img {
  width: 55%;
  transition: all 0.5s ease-in-out;
}

.dioz__catalogs-faq-img ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.dioz__catalogs-faq-img ul li {
  width: 15.5%;
}

.dioz__catalogs-faq-img ul li img {
  border-radius: 10px;
}

.dioz__catalogs-faq .accordion-button:not(.collapsed) {
  box-shadow: inherit;
  background-color: inherit;
}

.dioz__catalogs-faq .accordion-button:not(.collapsed) .dioz__catalogs-faq-img {
  display: none;
  transition: all 0.5s ease-in-out;
}

.dioz__catalogs-faq .accordion-button:focus {
  box-shadow: inherit;
}

.dioz__catalogs-body-img {
  padding-top: 20px;
}

.dioz__catalogs-faq .accordion-body {
  padding: 0;
}

.dioz__catalogs-body-img ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  flex-wrap: wrap;
}

.dioz__catalogs-body-img ul li {
  width: 15.5%;
  overflow: hidden;
  border-radius: 10px;
}

.dioz__catalogs-body-img ul li img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.catalog-image-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
  transition: all 0.4s ease-in-out;
}

.dgHome-catalogs__modal .swiper-button-next,
.dgHome-catalogs__modal .swiper-button-prev {
  width: 35px;
  height: 35px;
  color: #fff;
  background-color: var(--clr-primary);
  border-radius: 50%;
  opacity: 1 !important;
}

.dgHome-catalogs__modal .swiper-button-next::after,
.dgHome-catalogs__modal .swiper-button-prev::after {
  display: none;
}

.dgHome-catalogs__control .custom-button {
  color: var(--clr-primary);
}

/* ===================Catalog Page============================ */
/*=================== Privacy policy================================= */
.dioz__generic-page.dioz__pad {
  margin-top: 50px;
}

.page .dioz__header {
  background: #3a3a3a21;
  backdrop-filter: blur(50px);
}

.page .navbar-toggler .icon-bar,
.error404 .navbar-toggler .icon-bar {
  background-color: var(--clr-primary);
}

.dioz__generic h1 {
  font-size: 60px;
  line-height: 1.3;
  font-family: var(--ff-primary);
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 25px;
  text-transform: capitalize;
}
.dioz__generic h3, .dioz__generic h4,.dioz__generic h5,.dioz__generic h6 {
  font-weight: 400;
  color: #1e1e1e;
  text-transform: capitalize;
}

.dioz__generic .entry-content> :not(:last-child) {
  margin-bottom: 12px;
}
.dioz__generic .entry-content p {
  text-align: justify;
}
.dioz__generic .entry-content h1, .dioz__generic .entry-content h2, .dioz__generic .entry-content h3, .dioz__generic .entry-content h4, .dioz__generic .entry-content h5, .dioz__generic .entry-content h6 {
  margin-bottom: 20px !important;
}
.dioz__generic ol, .dioz__generic ul {
padding-left: 24px;
}
.dioz__generic li ol,.dioz__generic li ul{
  margin-top: 5px;
}
.dioz__generic li + li {
  padding-top: 12px;
}
.dioz__generic li {
  font-size: 20px;
  line-height: 30px;
  font-family: var(--ff-body);
  color: rgb(73, 73, 73);
  font-weight: 400;list-style: decimal;
}
.dioz__generic .entry-content li:has(strong) {
  color: var(--clr-black);
  font-weight: 500;
 font-size: 24px;
  line-height: 34px;
}
.dioz__generic .entry-content .title-blue{
    color: #333354;
  border-top: 1px solid #d0d0d4;
  padding-top: 20px;
  margin-top: 20px;
  }

/*=================== Privacy policy================================= */

/*=================== 404 ================================= */
.error404 .dioz__header {
  background: #3a3a3a21;
  backdrop-filter: blur(50px);
}

.four_zero_four_bg img {
  height: 400px;
  margin: 0 auto;
  width: 100%;
  object-fit: contain;
}

.contant_box_404 {
  margin-top: -60px;
}

.contant_box_404 .custom-button {
  margin-top: 12px;
}

.error-404.not-found {
  margin: 60px 0 0;
}

.contant_box_404 h3 {
  color: var(--clr-black-200);
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--clr-primary);
  font-size: 14px;
  line-height: 22px;
}

/* translator ................................... */

.trp-language-switcher.trp-floating-switcher.trp-ls-dropdown.trp-switcher-position-bottom {
  display: none !important;
}

.gtranslate_wrapper {
  position: absolute !important;
  border-radius: 16px !important;
  right: 25px !important;
  top: 18px !important;
}

.gt_float_switcher .gt_options a {
  font-size: 16px !important;
  line-height: 26px !important;
  color: var(--clr-black-200) !important;
  font-weight: 300 !important;
  border-bottom: 1px solid #e1e1e1 !important;
  transition: all 0.4s ease-in-out !important;
  min-width: 210px !important;
}

.gt_float_switcher .gt_options a:hover {
  background: var(--clr-primary) !important;
  color: #fff !important;
  transition: all 0.4s ease-in-out !important;
}

.gt_float_switcher .gt-selected {
  position: absolute !important;
  right: 50px !important;
  top: 13px !important;
  border-radius: 5px !important;
}

.gt-lang-code {
  font-size: 12px !important;
  line-height: 26px !important;
  color: var(--clr-black-200) !important;
}

.gt_float_switcher img {
  width: 28px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang {
  padding: 5px 10px !important;
  color: #333 !important;
  font-weight: bold !important;
  border-radius: 5px !important;
  overflow: hidden !important;
  width: 120px !important;
  display: flex;
  gap: 5px;
  align-items: center !important;
  justify-content: center !important;
}

.gt_float_switcher.notranslate {
  margin-top: 50px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
  transform: rotate(0deg) !important;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow.gt_arrow_rotate {
  transform: rotate(-180deg) !important;
}

/* =========== thank you ==================== */
.dioz__thankbox .border-primary {
  border-color: var(--clr-primary) !important;
}

.dioz__thankbox svg {
  margin: 0 auto;
  color: var(--clr-primary) !important;
}

/* =========================== sticky footer -=========================- */
/* STICKY FOOTER MENU CSS */

.footer__menu.footer__menu-sticky {
  position: fixed;
  bottom: 0;
  /* width: calc(100% - 10px); */
  width: 100%;
  z-index: 99999;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: var(--clr-black);
  border-radius: 10px 10px 0 0;
  border-top: 1px solid #4a4a4a;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.07);
}

.footer__menu-sticky {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  left: 0;
}

.footer__menu-sticky .row [class^="col-"]:not(:last-child) {
  border-right: 1px solid #1c1b1b;
}

.footer__menu {
  background-color: #fff;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.07);
}

.footer__menu-wrap .offcanvas.offcanvas-bottom {
  max-height: calc(95vh - 180px);
  background-color: var(--clr-black);
  height: auto;
}

.footer__menu-wrap .offcanvas-body {
  padding: 00 1rem;
}

.footer__menu-wrap .offcanvas-header {
  justify-content: flex-end;
  padding: 6px 10px;
}

.footer__off-close {
  border: none;
  background-color: transparent;
}

.footer__off-close svg path {
  fill: #ca0404;
}

.footer__office-box .title {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  flex-direction: column;
  flex: 0 0 auto;
  width: 100%;
  padding-right: 0px;
}

.footer__office-box .title h5 {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--clr-black-200);
}

.footer__office-box:nth-last-child(-n + 6) .title h5 {
  min-height: 40px;
}

.footer__office-box .title img {
  width: 100%;
  object-fit: contain;
  height: 60px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(289deg) brightness(111%) contrast(101%);
}

.footer__office-box .title .icon {
  background-color: #141414;
  display: inline-flex;
  width: 100%;
  height: 80px;
  justify-content: center;
  align-items: center;
}

.footer__office-box {
  flex: 0 0 auto;
  width: 31%;
  padding: 10px;
  border: 1px solid #f4f4f4;
  border-radius: 5px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.04);
  background-color: var(--clr-white-400);
  display: flex;
  align-items: center;
}

.footer__office-box .footer__contact-list {
  display: none;
}

.footer__office-box:has(.footer__contact-list) {
  width: 100%;
}

.footer__office-box:has(.footer__contact-list) .title {
  width: 30%;
  padding-right: 12px;
}

.footer__office-box:has(.footer__contact-list) .title .icon {
  height: 80px;
}

.footer__contact-list {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.footer__contact-list li {
  font-size: 13px;
  color: var(--clr-black-200);
  position: relative;
  padding-left: 15px;
  text-align: left;
  line-height: 23px;
  padding-left: 20px;
}

.footer__contact-list li a {
  color: inherit;
}

.footer__contact-list li span {
  position: absolute;
  left: 0;
  font-size: 11px;
  top: 1px;
}

.footer__contact-list li a:hover {
  color: #ca0404;
  text-decoration: underline;
}

.footer__office-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  justify-content: space-between;
}

.footer__menu-box {
  position: relative;
  text-align: center;
}

.footer__menu-box .navbar-toggler {
  color: var(--clr-white);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin: 0 auto;
  height: unset;
}

.footer__menu-box .navbar-toggler img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(65%) sepia(49%) saturate(6066%) hue-rotate(346deg) brightness(96%) contrast(97%);
}

.footer__menu-qc ul li {
  flex: 0 0 auto;
  width: 30%;
}

.footer__menu-qc ul li a {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__menu-qc .qc-right .icon {
  display: inline-flex;
  border-radius: 50%;
  position: relative;
  right: 0;
  /* width: 75%; */
  top: 0;
  padding: 16px;
  aspect-ratio: 1;
  width: 75px;
  height: 75px;
}

.footer__menu-qc .qc-right .icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.footer__menu-qc .qc-right h5 {
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  color: var(--clr-white);
}

.footer__menu-qc .qc-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  flex-direction: column;
}

.footer__menu-qc .qc-right h6 {
  font-size: 16px;
  margin-bottom: 0;
  display: none;
}

.footer__menu-qc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 10px;
  justify-content: center;
  padding: 0 0px;
  list-style: none;
}

.footer__menu-qc {
  margin-bottom: 25px;
}

.footer__menu-modal .form-group .form-control {
  background-color: var(--clr-white);
  border-radius: 6px;
  padding: 7px 15px;
  height: 36px;
  color: var(--clr-black-200) !important;
  font-family: var(--ff-paragraph);
  font-size: 14px;
}

.footer__menu-modal .form-group .form-control::placeholder {
  color: var(--clr-black-200);
  opacity: 1;
}

.footer__menu-modal .form-group {
  margin-bottom: 16px;
}

.footer__menu-modal textarea.form-control {
  height: 80px !important;
  resize: none;
}

.footer__menu-modal .custom-button,
.footer__menu-form .custom-button {
  display: inline-flex;
  background-color: #141414;
  border: none;
  padding: 6px 25px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
}

.footer__menu-modal .modal-header h3 {
  margin-bottom: 0 !important;
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.footer__menu-modal .modal-header {
  padding: 5px 6px;
}

.footer__menu-modal .modal-header .btn-close {
  background-color: #ff1414 !important;
  opacity: 1;
  width: 30px;
  height: 30px;
  padding: 0px;
  border-radius: 50%;
  font-size: 11px;
  margin: 0 0px 0 0;
}

iframe[title="Messaging window"] {
  height: 70% !important;
  bottom: 0 !important;
  top: unset !important;
}

.footer__factory-wrap .accordion-button {
  padding: 10px;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

.footer__factory-wrap .accordion-button::after {
  --bs-accordion-btn-icon-width: 14px;
  /* transform: rotate(180deg) !important; */
  font-size: 1rem !important;
}

.accordion .accordion-item .accordion-button:after:not(.footer__factory-wrap .accordion-button::after) {
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-size: 1.2rem;
  font-weight: 600;
  color: #002c76;
  background-image: none;
  transform: none;
}

.accordion .accordion-item .accordion-button:not(.collapsed)::after:not(.footer__factory-wrap .accordion-button::after) {
  content: "\f068";
}

.footer__factory-wrap .accordion-body {
  padding: 15px 10px;
  border-top: 1px solid #e6e6e6;
}

.footer__factory-wrap .accordion-item {
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 12px;
  background-color: var(--clr-white-400);
  border: 1px solid #e7e7e7;
  border-radius: 10px !important;
  overflow: hidden;
}

.footer__factory-title {
  font-size: 14px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 12px;
}

.footer__factory-title img {
  height: 30px;
  width: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.footer__factory-content ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__factory-content ul li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__factory-content ul li h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 0;
  color: #7b7a7a;
  font-weight: 400;
  font-family: var(--ff-primary);
}

.footer__factory-content ul .progress {
  --bs-progress-bar-bg: var(--clr-primary);
}

#footerMenuContactModal {
  z-index: 9999999;
}

.footer__menu-qc ul li:nth-child(1) .icon {
  background-color: #7ab943;
}

.footer__menu-qc ul li:nth-child(2) .icon {
  background-color: #41b9f1;
}

.footer__menu-qc ul li:nth-child(3) .icon {
  background-color: #fe9191;
}

.footer__menu-qc ul li:nth-child(4) .icon {
  background-color: #ff960f;
}

.footer__menu-qc ul li:nth-child(5) .icon {
  background-color: #a860ff;
}

.desk_top_chatbot {
  position: fixed;
  z-index: 99;
  bottom: 25px;
  left: 25px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f73b7;
  border-radius: 100%;
  padding: 10px;
  /* border: 1px solid #000; */
  color: #000;
  box-shadow: 0 3px 6px rgb(0 0 0 / 25%);
  display: none;
}

.desk_top_chatbot span {
  display: block;
  margin-top: 3px;
}

#chaty-widget-0.chaty.chaty-id-0 {
  display: none !important;
}

.footer__menu-wrap .modal-backdrop {
  z-index: 9 !important;
}

@media only screen and (min-width: 768px) {
  .desk_top_chatbot {
    display: flex;
  }

  #chaty-widget-0.chaty.chaty-id-0 {
    display: block !important;
  }
}

@media only screen and (max-width: 479px) {
  .footer__menu-qc .qc-right .icon {
    width: 65px;
    height: 65px;
  }

  .footer__menu-qc .qc-right .icon img {
    width: 35px;
    height: 35px;
  }
}

.hidden {
  display: none;
}

.dgHome-hero_image img {
  width: 100%;
}

.dgHome-location__menu-offices .accordion-flush>.accordion-item .img-part {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: -1;
}

.dgHome-location__menu-offices .accordion-flush>.accordion-item .img-part img {
  width: 100%;
  object-fit: cover;
  height: auto;
  object-position: center;
}

.dgHome-certificates__mob,
.dgHome-clients__mob {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 8px;
  margin-top: 16px;
}

.dgHome-certificates__mob>*,
.dgHome-clients__mob>* {
  flex: 0 0 auto;
  width: 15.5%;
}

.dgHome-about-left .dgHome-content p {
  text-align: justify;
}

.dgHome-hero__counter [class^="col-"]>* {
  transform: unset !important;
  opacity: 1 !important;
}

/*Ninja Form CSS*/
.procurement_bg {
  padding: 150px 0 100px 0;
}

.procurement-box .procurement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 0 20px;
}

.procurement-content .left h5 {
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
  color: #2f2f2f;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  line-height: 40px;
}

.procurement-content .right .logo img {
  height: 85px;
  object-fit: contain;
}

.procurement-form.border-top {
  border-top: 2px solid #4766ca !important;
}

.procurement_bg .procurement-form {
  padding-top: 10px;
}

.procurement-content .left h5 .title-highlight {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#f05c24),
      to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.procurement_bg .procurement-form .nf-form-content label {
  font-size: 16px;
  color: #606060;
  font-weight: 500;
}

.procurement_bg .procurement-form .nf-form-fields-required {
  margin: 10px 0 0;
  color: #828282;
}

.procurement_bg .procurement-form .nf-field-element p {
  font-size: 26px;
  color: #333;
  margin-bottom: 0;
  text-transform: capitalize;
}

.procurement_bg .procurement-form .nf-field-element input {
  height: 45px !important;
}

.procurement-box {
  background-color: #fff;
}

.procurement-form.border-top {
  border-top: 2px solid #4766ca !important;
}

.procurement-progress-bar h3 {
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 15px;
  color: #4a4a4a;
}

.procurement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 0 20px;
}

.progress {
  height: 6px;
  margin-bottom: 8px;
  background-color: #d6d6d6;
  border-radius: 16px;
}

.procurement-content .left {
  flex: 0 0 auto;
  width: 60%;
}

.procurement-content .left p {
  margin-bottom: 0;
  font-size: 16px;
  color: #515151;
}

.procurement-content .left h5 {
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
  color: #2f2f2f;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  line-height: 40px;
}

.procurement-content .left h5 .title-highlight {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#f05c24),
      to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.procurement-content .right .logo img {
  height: 85px;
  object-fit: contain;
}

.factory_info,
.factory__info-details {
  border: 1px solid #e8e8e8;
  padding: 20px 40px;
  background-color: #f7f7f7;
  box-shadow: 1px 1px 25px rgba(153, 153, 153, 0.06);
  margin-bottom: 30px;
}

.factory_info .title h3,
.factory__info-details .title h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #1e1e1e;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.factory_info h3 span,
.factory__info-details h3 span {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#f05c24),
      to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pro-form .form-group .form-control {
  height: 52px;
  border: 1px solid #f2f2f2;
  border-radius: 0;
}

.pro-form .form-group textarea.form-control {
  height: 100px !important;
  resize: none;
}

.procurement-form .form-group.form-button input[type="submit"] {
  background: #181d20;
  border-radius: 30px;
  font-weight: normal;
  font-size: 16px;
  line-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.5px;
  color: #fff;
  border: none;
  padding: 10px 80px;
  text-transform: uppercase;
}

.form-group-check {
  display: flex;
  align-items: center;
}

.form-group-check h4,
.form-group h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 0;
}

.form-group-check p {
  margin-bottom: 0;
}

.form-check label {
  margin-bottom: 0;
}

.form-check label span {
  color: #333;
  text-transform: capitalize;
}

.form-group-estd h4 {
  margin-bottom: 10px;
  font-size: 15px;
  margin-top: 10px;
}

.procurement_bg .procurement-form .nf-field-element p {
  font-size: 26px;
  color: #333;
  margin-bottom: 0;
  text-transform: capitalize;
}

.procurement_bg .procurement-form .nf-field-element p b {
  font-weight: 500;
}

.procurement_bg .procurement-form .nf-field-label label {
  font-size: 16px !important;
  color: #606060;
  font-weight: 500 !important;
}

.procurement_bg .procurement-form .nf-label-span {
  color: #606060;
}

.procurement_bg .procurement-form .nf-field-element ul li label {
  font-size: 15px;
  color: #606060;
}

.procurement_bg .procurement-form nf-field .hr-container {
  margin: 20px 0 8px !important;
}

.procurement_bg .procurement-form .nf-form-fields-required {
  margin: 10px 0 0;
  color: #828282;
}

.procurement_bg .procurement-form .nf-field-element .extra {
  padding: 5px 8px !important;
  border: 1px solid #c4c4c4 !important;
  background-color: #f7f7f7;
  height: 50px;
  font-size: 16px;
  color: #424242;
}

.procurement_bg .procurement-form .nf-add-fieldset {
  padding: 10px 12px;
  font-size: 16px;
}

.procurement_bg .procurement-form textarea.nf-element {
  height: 150px !important;
  resize: none;
}

.procurement_bg .procurement-form .nf-field legend {
  font-size: 16px;
  color: #6c6c6c;
}

.procurement_bg .procurement-form .nf-form-content {
  padding: 5px 0 !important;
}

.procurement_bg .procurement-form .nf-form-content .list-select-wrap>div div::after {
  font-size: 12px !important;
}

.procurement_bg .procurement-form .nf-field-element input {
  height: 45px !important;
}

.procurement_bg .procurement-form .nf-field-container {
  margin-bottom: 20px !important;
}

.procurement_bg .procurement-form .nf-error.field-wrap .nf-field-element::after {
  height: 43px !important;
  line-height: 45px !important;
}

.procurement_bg .procurement-form .nf-field-element ul li input {
  height: unset !important;
}

.procurement_bg .procurement-form .nf-field-element h5 {
  color: #464646;
  font-size: 16px;
}

.procurement_bg .procurement-form .nf-field-element hr {
  border-top: 2px solid #4766ca !important;
}

.procurement_bg .procurement-form .nf-form-content select.ninja-forms-field {
  border-radius: 0;
  border: 1px solid #c4c4c4;
  background-color: #f7f7f7;
}

.pro-form .nf-response-msg p {
  color: #31cb18;
  padding: 10px 0;
  font-weight: 600;
  font-size: 16px;
}

.procurement_bg .procurement-form .nf-field-element ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.procurment_theme_button,
.procurement-box .nf-add-fieldset,
.procurement-box input[type="submit"].ninja-forms-field.nf-element {
  padding: 10px 25px;
  border-radius: 0;
  background: #000000;
  border: none;
  color: #ffffff;
  height: auto !important;
}

.procurment_theme_button:hover,
.procurement-box .nf-add-fieldset:hover,
.procurement-box input[type="submit"].ninja-forms-field.nf-element:hover {
  background: #c4c4c4;
  color: #787878;
  transition: all 0.5s;
}

.expression_register_heading {
  margin-top: 20px;
}

.expression_register_heading h5 {
  font-weight: 600;
  color: #000000;
  font-size: 25px;
}

.pro-form.icon_label {
  border-top: 2px solid #4766ca;
  padding-top: 30px;
  margin-top: 30px;
  position: relative;
}

.pro-form.icon_label:after {
  content: "OR";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 1rem;
  font-family: FontAwesome;
  font-size: 20px;
  background-color: #fff;
  color: #4766ca;
  font-family: var(--ff-primary);
}

.express-modal {
  z-index: 99999 !important;
}

.express-fillup-btn {
  background-color: rgb(255, 86, 7) !important;
  font-size: 20px;
}

.express-modal .modal-title {
  color: rgb(255, 86, 7) !important;
  font-size: 25px !important;
}

.footer__menu .accordion-button:not(.collapsed)::after {
  transform: rotate(-90deg) !important;
  transition: all 0.4s ease-in-out;
}

/* =========================== sticky footer -=========================- */

.dioz__sample-modal {
background-color: #ffffff0f !important;
  backdrop-filter: blur(12px);z-index: 9999999;
}
.dioz__sample-modal h3 {
  font-size: 35px;
  line-height: 45px;
  font-family: var(--ff-primary);
  font-weight: 400;
  color: #1e1e1e;
  text-transform: capitalize;
}
.dioz__sample-modal .btn-close:focus {
  box-shadow: unset;
}
.dioz__sample-modal .btn-close {
  width: 30px;
  height: 30px;
  background-color: var(--clr-primary);
 opacity: 1 !important;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}