@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Chivo+Mono:ital,wght@0,100..900;1,100..900&display=swap);

:root,
[data-bs-theme=light] {
  --bs-gray: #514f5e;
  --bs-success: #5bdf91;
  --bs-warning: #f9662e;
  --bs-danger: #f96d80;
  --bs-light: #f7f6ff;
  --bs-white: #fff;
  --bs-dark: #15151d;
  --bs-secondary-border: #b9b9bf;
  --bs-light-border: #eae9f5;
  --bs-dark-border: #8b8a99;
  --bs-font-sans-serif: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: "Chivo Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, hsla(0, 0%, 100%, 0.15), hsla(0, 0%, 100%, 0));
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 14px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.6;
  --bs-body-color: #25252f;
  --bs-body-color-rgb: 37, 37, 47;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #eae9f5;
  --bs-box-shadow: 0 8px 16px rgba(48, 47, 58, 0.1);
  --bs-box-shadow-sm: 0 2px 4px rgba(48, 47, 58, 0.075);
  --bs-box-shadow-lg: 0 16px 48px rgba(48, 47, 58, 0.088);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(48, 47, 58, 0.075);
  --bs-form-valid-color: #5bdf91;
  --bs-form-valid-border-color: #5bdf91;
  --bs-form-invalid-color: #f96d80;
  --bs-form-invalid-border-color: #f96d80;
  --theme-color: #e9c545;
  --theme-dark-color: #ceaf3f;
  --facebook-color: #3c5b9b;
  --twitter-color: #fff;
  --linkedin-color: #027ba5;
  --youtube-color: #f70000;
  --instagram-color: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  --whatsapp-color: #00cf4d
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #fff;
  --bs-body-color-rgb: 255, 255, 255;
  --bs-body-bg: #25252f;
  --bs-form-valid-color: #9decbd;
  --bs-form-valid-border-color: #9decbd;
  --bs-form-invalid-color: #ed9898;
  --bs-form-invalid-border-color: #ed9898
}

html {
  margin: 0;
  padding: 0
}

@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior: smooth
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(21, 21, 29, 0)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-body-color);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.2
}

h1 {
  font-size: 2.5rem
}

h2 {
  font-size: 2rem
}

h3 {
  font-size: 1.75rem
}

h4 {
  font-size: 1.5rem
}

h5 {
  font-size: 1.25rem
}

h6 {
  font-size: 1rem
}

p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-color)
}

a {
  color: var(--theme-color);
  text-decoration: none;
  transition: color .3s ease
}

a:hover {
  color: var(--theme-hover-color);
  text-decoration: none
}

ol,
ul {
  margin: 1rem 0 1rem 1.5rem;
  padding: 0
}

li {
  margin-bottom: .5rem;
  line-height: 1.6
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

iframe {
  width: 100%;
  max-width: 100%;
  border: none;
  border-radius: 6px;
  margin-bottom: 20px
}

blockquote {
  border-left: 5px solid var(--theme-color);
  padding: 15px 20px;
  margin: 20px 0;
  background-color: var(--section-background);
  font-style: italic;
  color: var(--text-color)
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text-color)
}

.form-group {
  position: relative;
  margin-bottom: 20px
}

input[type=email],
input[type=password],
input[type=tel],
input[type=text],
select,
textarea {
  width: 100%;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--bs-gray);
  transition: border-color .3s ease
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--theme-color);
  box-shadow: none;
  outline: 0
}

textarea {
  resize: vertical;
  min-height: 120px
}

.form-control {
  border-radius: 4px;
  height: 40px;
  font-size: 14px
}

.form-control:focus {
  border-color: var(--theme-color);
  box-shadow: none
}

textarea.form-control {
  height: 80px;
  font-size: 14px;
  border: 1px solid #ccc
}

.g-recaptcha {
  transform: scale(.8);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0
}

button,
input[type=submit] {
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .3s ease
}

button:hover,
input[type=submit]:hover {
  background: var(--theme-hover-color)
}

.socialMedia {
  margin: 0;
  list-style: none;
  padding: 0;
  width: auto
}

.socialMedia li {
  margin: 0;
  display: inline-block
}

.socialMedia li a {
  transition: background .4s ease-in-out;
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-body-bg);
  border: 1px solid #777
}

.socialMedia li a svg {
  width: 14px;
  height: 14px;
  margin: 0;
  padding: 0
}

.socialMedia li a:focus,
.socialMedia li a:hover {
  color: var(--theme-color);
  border-color: var(--theme-color)
}

.goToTop {
  position: fixed;
  z-index: 8030;
  bottom: 65px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--bs-dark);
  font-size: 24px;
  line-height: 42px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
  display: none;
  background: var(--theme-color);
  border: 0
}

.goToTop:hover {
  background: var(--theme-color);
  color: var(--bs-body-bg)
}

.goToTop svg {
  width: 24px;
  height: 24px
}

.bg-blur {
  background-image: linear-gradient(180deg, rgba(var(--bs-body-bg-rgb), .1), rgba(var(--bs-body-bg-rgb), 1) 85%), radial-gradient(ellipse at top left, rgba(var(--bs-primary-rgb), .25), transparent 50%), radial-gradient(ellipse at top right, rgba(var(--bs-info-rgb), .15), transparent 50%), radial-gradient(ellipse at center right, rgba(var(--bs-warning-rgb), .15), transparent 50%), radial-gradient(ellipse at center left, rgba(var(--bs-danger-rgb), .1), transparent 50%)
}

.container {
  max-width: 1200px
}

.header {
  float: left;
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
  background: #fff;
  border-bottom: 1px solid #eee
}

.header.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.logoArea {
  display: flex;
  align-items: center;
  padding: 0 15px 0 30px;
  border-right: 1px solid #eee;
  height: 100%
}

.logoArea a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logoArea .logoImg {
  max-width: 90px
}

.logoArea img {
  margin: 0
}

.logoText {
  line-height: normal
}

.logoArea .companyName {
  font-size: 22px;
  color: var(--bs-gray-dark);
  font-weight: 700
}

.tagline {
  font-size: 14px;
  color: var(--bs-gray-dark)
}

.menubar {
  padding-right: 30px
}

.top_bar {
  background: var(--bs-dark);
  padding: 0 30px 0 15px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 38px;
  gap: 15px
}

.top_bar .socialMedia {
  margin-left: auto
}

.gstNumber {
  font-size: 15px;
  font-weight: 700;
  line-height: 40px;
  color: var(--bs-body-bg);
  text-decoration: none;
  display: inline-block;
  vertical-align: middle
}

.gstNumber span {
  color: var(--theme-color)
}

.gstNumber span svg {
  width: 16px;
  height: 16px
}

.call_btn {
  font-size: 16px;
  font-weight: 800;
  line-height: 40px;
  color: var(--theme-color);
  text-decoration: none;
  display: inline-block;
  vertical-align: middle
}

.call_btn svg {
  width: 24px;
  height: 24px;
  -webkit-animation: tada 1.5s ease infinite;
  animation: tada 1.5s ease infinite
}

.call_btn:focus,
.call_btn:hover {
  color: var(--theme-color)
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  10%,
  20% {
    -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
    transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg)
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg)
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  10%,
  20% {
    -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
    transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg)
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg)
  }

  40%,
  60%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.sendEmail {
  padding: 0 15px;
  height: 100%;
  box-sizing: border-box;
  background: var(--theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.header.stricky-fixed .sendEmail {
  margin-left: auto
}

.sendEmail .phoneNumber,
.sendEmail a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--bs-dark);
  font-weight: 600;
  cursor: pointer
}

.sendEmail .phoneNumber svg,
.sendEmail svg {
  width: 20px;
  height: 20px
}

.sendEmail:hover {
  color: var(--white)
}

.gmVerified {
  max-width: 100px;
  display: none
}

.gmVerified a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--theme-color)
}

.header.stricky-fixed .socialMedia {
  display: none
}

.header.stricky-fixed .gmVerified {
  display: inline-block;
  margin-left: auto;
  max-width: max-content
}

.header.stricky-fixed .gmVerified img {
  width: 30px;
  height: 32px
}

.search_bx {
  padding: 0;
  background: #eee;
  margin-left: auto;
  display: flex;
  border-radius: 20px;
  height: 37px;
  border: 1px solid #ccc;
  position: relative;
  max-width: 220px
}

.search_bx form {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative
}

.search_bx form input {
  width: 100%;
  border: 0;
  outline: 0;
  background: 0 0;
  font-size: 14px;
  padding: 0 30px 0 15px;
  color: #333
}

.search_bx form input::placeholder {
  color: gray;
  opacity: 1
}

.search_bx form input:focus {
  border: 0;
  outline: 0;
  background: 0 0;
  font-weight: 400
}

.search_bx form input:focus {
  box-shadow: none
}

.search_bx form button {
  border: 0;
  outline: 0;
  background: 0 0;
  color: var(--bs-gray);
  position: absolute;
  top: 3px;
  right: 8px
}

.search_bx form button:hover {
  color: var(--theme-color)
}

.top_bar ._left .social_box {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 25px;
  line-height: normal;
  align-items: center;
  border-right: 1px solid #333
}

.top_bar ._left .social_box li a {
  text-align: center;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white)
}

.top_bar ._left .social_box li a:hover {
  color: var(--logoColor)
}

.top_bar ._left .call_us {
  display: flex;
  flex-wrap: wrap;
  color: #aaa;
  align-items: center;
  font-weight: 400;
  gap: 8px;
  font-size: 14px;
  line-height: 45px;
  padding-right: 35px;
  border-right: 1px solid #333
}

.top_bar ._left .call_us span svg {
  height: 14px;
  width: 14px;
  margin-right: 1px
}

.top_bar ._left .call_us a {
  color: #fff;
  font-size: 18px
}

.top_bar ._left .call_us a span {
  font-weight: 600;
  color: var(--logoColor)
}

.top_bar ._left .call_us a:hover {
  color: var(--logoColor)
}

.top_bar .top-nav {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  gap: 30px
}

.top_bar .top-nav li a {
  color: #ddd;
  font-weight: 400;
  font-size: 14px;
  position: relative;
  transition: .2s
}

.top_bar .top-nav li a:hover,
.top_bar .top-nav li.active a {
  color: var(--logoColor)
}

.top_bar .top-nav li a::before {
  content: "|";
  position: absolute;
  top: 1px;
  left: -16px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  color: #888
}

.top_bar .top-nav li:first-child a::before {
  content: none
}

.navigationBar {
  display: flex;
  position: relative;
  background: var(--bs-black);
  width: 100%;
  padding: 0
}

.navigationBar.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.navigation {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px
}

.navigation .nav-header {
  display: none;
  padding: 12px 20px
}

.navigation .navbar button {
  float: right;
  width: 40px;
  height: 40px;
  background: 0 0;
  border: 0;
  outline: 0;
  color: var(--bs-body-bg);
  font-size: 25px;
  border-radius: 0;
  text-align: center;
  line-height: 40px;
  position: relative;
  z-index: 99;
  padding: 5px;
  position: relative;
  transform: rotate(0);
  transition: .5s ease-in-out;
  cursor: pointer
}

.navigation .navbar button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 70%;
  background: var(--theme-color);
  border-radius: 9px;
  opacity: 1;
  left: 15%;
  transform: rotate(0);
  transition: .25s ease-in-out
}

.navigation .navbar button span:first-child {
  top: 8px
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
  top: 18px
}

.navigation .navbar button span:nth-child(4) {
  top: 28px
}

.navigation .navbar button.open span:first-child {
  top: 18px;
  width: 0%;
  left: 50%
}

.navigation .navbar button.open span:nth-child(2) {
  transform: rotate(45deg)
}

.navigation .navbar button.open span:nth-child(3) {
  transform: rotate(-45deg)
}

.navigation .navbar button.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%
}

.navigation .menu {
  display: flex;
  align-items: center
}

.navigation .menu ul {
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: start;
  align-items: center
}

.navigation .menu ul li {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: normal
}

.navigation .menu ul li a {
  padding: 15px 12px;
  display: block;
  color: var(--bs-gray);
  text-transform: capitalize;
  transition: all .3s ease;
  font-size: 15px;
  background: 0 0;
  font-weight: 600;
  position: relative
}

.navigation .menu ul li.home a {
  padding: 15px 0 15px 12px
}

.navigation .menu ul li.home svg {
  width: 20px;
  height: 20px
}

.navigation .menu ul li.home span {
  display: none
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
  color: var(--theme-color);
  background: 0 0
}

.navigation .menu ul li ul.cs-dropdown {
  top: 100%;
  left: 0;
  text-align: left
}

.navigation .menu ul li ul.cs-dropdown li:last-child {
  border: 0
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown {
  left: 100%;
  margin-top: -36px
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li ul.cs-dropdown {
  left: -100%;
  margin-top: -31px
}

.navigation .menu ul li ul.cs-dropdown {
  position: absolute;
  width: 240px;
  display: none;
  z-index: 9991;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .4);
  background: var(--bs-body-bg);
  margin: 0;
  padding: 0;
  transition: all .3s ease
}

.navigation .menu ul li:hover ul.cs-dropdown {
  display: block
}

.navigation .menu ul li:hover ul.cs-dropdown li ul.cs-dropdown {
  display: none;
  transition: all .3s ease
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown {
  display: block
}

.navigation .menu ul li ul.cs-dropdown li {
  display: block;
  padding: 0;
  width: 100%
}

.navigation .menu ul li ul.cs-dropdown li:last-child a {
  border-bottom: 0
}

.navigation .menu ul li ul.cs-dropdown li:last-child a:after {
  display: none
}

.navigation .menu ul li ul.cs-dropdown li a:hover {
  color: var(--bs-body-bg);
  background: var(--theme-color)
}

.navigation .menu ul li ul.cs-dropdown li:hover a {
  color: var(--bs-body-bg);
  background: var(--theme-color)
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a {
  background: #eee;
  color: #333;
  border-bottom: 1px solid #ccc
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a:hover {
  color: var(--bs-body-bg);
  background: var(--theme-color)
}

.navigation .menu ul li ul.cs-dropdown li a {
  color: var(--bs-gray);
  font-size: 14px;
  padding: 7px 15px;
  position: relative;
  display: block;
  text-transform: capitalize;
  font-weight: 400;
  background: var(--bs-body-bg);
  transition: all .3s ease;
  border-bottom: 1px solid #eee
}

.navigation ul li.cs-submenu a button {
  border: 0;
  background: 0 0;
  outline: 0;
  padding: 0;
  margin: 0 0 0 3px;
  color: var(--bs-gray)
}

.navigation ul li.cs-submenu a button svg {
  width: 14px;
  height: 14px
}

.navigation ul li.cs-submenu:hover svg {
  transform: rotateZ(180deg);
  color: var(--theme-color)
}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li.cs-submenu svg {
  color: var(--bs-gray-dark)
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
  float: right;
  color: var(--bs-gray-dark)
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button svg {
  transform: rotateZ(-90deg)
}

.navigation ul li.cs-submenu ul.cs-dropdown li.cs-submenu:hover svg {
  color: var(--bs-body-bg)
}

.navigation .navbar {
  display: none;
  padding: 7px 0;
  margin: 0
}

.navigation .menu ul li.mega {
  position: static
}

.navigation .menu ul li.mega ul.cs-dropdown {
  width: 100%;
  max-width: 1140px;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  columns: 4;
  -webkit-columns: 4;
  -moz-columns: 4;
  margin: 0 auto;
  background: #fff;
  padding: 10px;
  float: left;
  border-radius: 4px
}

.navigation .menu ul li.mega ul.cs-dropdown li {
  display: inline-grid
}

.navigation .menu ul li.mega ul.cs-dropdown li a {
  padding: 2px 9px;
  float: left;
  width: 100%;
  display: block;
  border-bottom: 0
}

.navigation .menu ul li.mega ul.cs-dropdown li ul.cs-dropdown li {
  width: 100%
}

.navigation .menu ul li.mega ul.cs-dropdown li a span {
  font-weight: 600;
  color: var(--bs-body-color);
  font-size: 15px
}

.navigation .menu ul li.mega ul.cs-dropdown li a span:hover {
  color: var(--theme-dark-color)
}

.navigation .menu ul li.mega ul.cs-dropdown li a button {
  display: none
}

.navigation .menu ul li.mega ul.cs-dropdown li ul.cs-dropdown {
  position: relative;
  display: block;
  width: 100%;
  left: 0;
  top: 0;
  margin: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  max-height: 100%;
  overflow: visible;
  padding: 0;
  columns: 1;
  transform: none
}

.navigation .menu ul li.mega ul.cs-dropdown li ul.cs-dropdown li a {
  font-size: 14px;
  padding: 3px 10px;
  display: flex;
  border-bottom: 0
}

.navigation .menu ul li.mega:hover ul.cs-dropdown li:hover a {
  color: var(--bs-body-color);
  background: 0 0
}

.navigation .menu ul li.mega ul.cs-dropdown li ul.cs-dropdown a:hover {
  background: 0 0;
  color: var(--theme-dark-color)
}

.navigation .menu ul li.mega ul.cs-dropdown li:hover ul.cs-dropdown li a:hover {
  background: 0 0;
  color: var(--theme-dark-color)
}

.home_slider {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  overflow: hidden;
  background-color: rgb(242 246 247)
}

.homeSlider .sliderItem {
  position: relative;
  z-index: 1;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
  color: var(--bs-body-bg)
}

.homeSlider .sliderInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  flex-direction: row
}

.homeSlider .sliderItem .sliderInner .imgDiv {
  width: 50%;
  height: 100%;
  order: 2;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden
}

.homeSlider .sliderItem .sliderInner .imgDiv:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e3e3e3;
  background: url("../images/banner/banner1.jpg") center/cover no-repeat;
  filter: blur(25px);
  transform: scale(1.2);
  opacity: .8;
  width: 100%;
  height: 100%;
  z-index: 1
}

.homeSlider .sliderItem .sliderInner .imgDiv img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 2
}

.homeSlider .sliderItem .container {
  position: relative;
  z-index: 4
}

.homeSlider .sliderItem .sliderText {
  width: 50%;
  padding: 15px 90px;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  order: 1;
  aspect-ratio: 16/10
}

.homeSlider .sliderItem .caption {
  position: relative;
  padding: 0;
  top: -2%;
  margin: 0;
  padding: 0 15px 0 0;
  margin-right: auto;
  margin-left: auto
}

.caption .subTitle_1 {
  font-size: 14px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--theme-color);
  margin: 0;
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  -o-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s
}

.caption .subTitle_1 span {
  font-size: 80px;
  text-transform: uppercase;
  line-height: normal;
  font-weight: 900;
  color: #eee;
  letter-spacing: 5px;
  position: absolute;
  left: 10px;
  right: 0;
  top: -60px;
  z-index: -1
}

.caption .sliderTitle_1 {
  color: #333;
  font-weight: 700;
  font-size: 42px;
  line-height: normal;
  position: relative;
  z-index: 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  -o-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s
}

.caption .sliderTitle_2 {
  font-size: 36px;
  color: #333;
  font-weight: 600;
  line-height: normal;
  position: relative;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  -o-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s
}

.caption .sliderTitle_2 .banner_span1 {
  color: var(--theme-color)
}

.caption p {
  position: relative;
  z-index: 1;
  color: #333;
  margin-bottom: 22px;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  -o-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s
}

.homeSlider .swiper-slide-active .caption .subTitle_1 {
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  opacity: 1;
  visibility: visible;
  animation: fadeInDown 1s linear;
  -webkit-animation: fadeInDown 1s linear;
  -ms-animation: fadeInDown 1s linear;
  -moz-animation: fadeInDown 1s linear;
  -o-animation: fadeInDown 1s linear
}

.homeSlider .swiper-slide-active .caption .sliderTitle_1 {
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  opacity: 1;
  visibility: visible;
  animation: fadeInRight 1s linear;
  -webkit-animation: fadeInRight 1s linear;
  -ms-animation: fadeInRight 1s linear;
  -moz-animation: fadeInRight 1s linear;
  -o-animation: fadeInRight 1s linear
}

.homeSlider .swiper-slide-active .caption .sliderTitle_2 {
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  opacity: 1;
  visibility: visible;
  animation: fadeInLeft 1s linear;
  -webkit-animation: fadeInLeft 1s linear;
  -ms-animation: fadeInLeft 1s linear;
  -moz-animation: fadeInLeft 1s linear;
  -o-animation: fadeInLeft 1s linear
}

.homeSlider .swiper-slide-active .caption p {
  opacity: 1;
  visibility: visible;
  animation: fadeInRight 1s linear;
  -webkit-animation: fadeInRight 1s linear;
  -ms-animation: fadeInRight 1s linear;
  -moz-animation: fadeInRight 1s linear;
  -o-animation: fadeInRight 1s linear
}

.readMore_1,
.readMore_1:focus {
  height: 45px;
  line-height: 45px;
  padding-left: 15px;
  display: inline-block;
  outline: 0;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: var(--theme-color);
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  -o-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s
}

.readMore_1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #333;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 10% 0;
  transform-origin: 0% 10% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out
}

.readMore_1:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66)
}

.btn_caret {
  height: 45px;
  background: var(--theme-dark-color);
  display: inline-block;
  padding: 0 12px;
  margin-left: 15px
}

.readMore_1:hover {
  color: #fff;
  background: #555
}

.homeSlider .swiper-slide-active .caption .readMore_1 {
  opacity: 1;
  visibility: visible;
  animation: fadeInUp 1s ease;
  -webkit-animation: fadeInUp 1s linear;
  -ms-animation: fadeInUp 1s linear;
  -moz-animation: fadeInUp 1s linear;
  -o-animation: fadeInUp 1s linear
}

.homeSlider .swiper-button-next,
.homeSlider .swiper-button-prev {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  border: 1px solid #333;
  line-height: 0;
  position: absolute;
  top: auto;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  color: #333;
  outline: 0;
  background: 0 0;
  border-radius: 0;
  z-index: 9
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px
}

.homeSlider .swiper-button-prev {
  right: 57%;
  left: auto
}

.homeSlider .swiper-button-next {
  right: 52%;
  left: auto
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--theme-color);
  border-color: var(--theme-color)
}

.webpulseChoose {
  float: left;
  width: 100%;
  margin: 0;
  padding: 50px 0 0;
  background: var(--bs-dark)
}

.webpulseChooseTitle {
  font-size: 28px;
  color: var(--bs-body-bg);
  margin: 0 0 15px;
  padding: 0;
  font-weight: 700
}

.webpulseChooseTitle span {
  color: var(--theme-color)
}

.text {
  width: 100%;
  border-left: 3px solid var(--theme-color);
  padding-left: 15px;
  margin-bottom: 25px
}

.text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-body-bg)
}

.wpsFeature {
  width: 100%;
  margin: 0;
  padding: 10px;
  position: relative;
  margin-bottom: 30px
}

.wpsFeature .wpsIcon {
  position: relative;
  margin-bottom: 10px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color)
}

.wpsFeature .wpsIcon.active {
  background: var(--theme-color);
  color: var(--whiteColor)
}

.wpsFeature .wpsIcon svg {
  width: 55px;
  height: 55px
}

.wpsFeature .wpsFeatureTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-body-bg);
  color: var(--theme-color);
  margin-bottom: 5px
}

.wpsFeature p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--bs-body-bg);
  margin: 0
}

.wpsAboutSection {
  float: left;
  width: 100%;
  padding: 40px 0;
  margin: 0;
  background: #f6f6f6
}

.wpsAboutTitle {
  font-size: 28px;
  color: #444;
  margin: 0 0 15px;
  padding: 0;
  font-weight: 600
}

.wpsAboutTitle span {
  color: var(--theme-color)
}

.wpsAboutSection ul {
  margin: 0 0 20px;
  padding: 0
}

.wpsAboutSection ul li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  list-style: none
}

.wpsAboutSection ul li:before {
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23A5596A" viewBox="0 0 16 16"><path d="M7.987 16a1.53 1.53 0 0 1-1.07-.448L.45 9.082a1.53 1.53 0 0 1 0-2.165L6.917.45a1.53 1.53 0 0 1 2.166 0l6.469 6.468A1.53 1.53 0 0 1 16 8.013a1.53 1.53 0 0 1-.448 1.07l-6.47 6.469A1.53 1.53 0 0 1 7.988 16zM7.639 1.17 4.766 4.044 8 7.278l3.234-3.234L8.361 1.17a.51.51 0 0 0-.722 0M8.722 8l3.234 3.234 2.873-2.873c.2-.2.2-.523 0-.722l-2.873-2.873zM8 8.722l-3.234 3.234 2.873 2.873c.2.2.523.2.722 0l2.873-2.873zM7.278 8 4.044 4.766 1.17 7.639a.51.51 0 0 0 0 .722l2.874 2.873z"/></svg>');
  text-align: center;
  position: absolute;
  left: 0
}

.readMoreBtn {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: all .4s;
  background: 0 0;
  padding: 0 20px;
  line-height: 40px;
  height: 40px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: var(--darkGreyColor);
  border: 0
}

.readMoreBtn:before {
  content: "";
  left: 0;
  position: absolute;
  z-index: 1;
  background: #d6a6ad;
  width: 35%;
  height: 40px;
  transition: all .4s
}

.readMoreBtn span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center
}

.readMoreBtn span svg {
  width: 18px;
  height: 18px;
  margin-left: 5px
}

.readMoreBtn:focus,
.readMoreBtn:hover {
  color: var(--theme-color)
}

.readMoreBtn:focus:before,
.readMoreBtn:hover:before {
  width: 100%
}

.wpsFeture {
  float: left;
  width: 100%;
  padding: 20px 0;
  margin: 0;
  background: var(--theme-color);
  overflow: hidden
}

.homeFeture {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start
}

.homeFeture a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize
}

.homeFeture svg {
  color: var(--bs-dark);
  margin-right: 10px;
  padding: 0;
  width: 35px;
  height: 35px
}

.homeFeture img {
  width: 35px;
  margin-right: 10px
}

.homeFeture span {
  color: var(--bs-dark);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize
}

.services_feature {
  float: left;
  width: 100%;
  margin: 0;
  padding: 50px 0;
  background: #fff
}

.h2_title_1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--theme-color);
  position: relative;
  margin-bottom: 50px;
  text-align: center
}

.h2_title_1:after {
  background: #fff;
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  width: 50px
}

.services_feature .item-bx {
  padding: 20px 20px;
  background-color: #f7f7f7;
  border: 1px solid #eee;
  border-right: 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s
}

.services_feature .item-bx:last-of-type {
  border-right: 1px solid #eee
}

.services_feature .item-bx .titleH4 {
  color: var(--theme-color);
  font-weight: 600;
  padding: 0;
  margin: 0 0 10px;
  text-align: left;
  font-size: 16px
}

.services_feature .item-bx p {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  margin: 0
}

.services_feature .item-bx .numb {
  font-size: 60px;
  margin-bottom: 10px;
  color: transparent;
  -webkit-text-stroke: 1px #c5a47e
}

.services_feature .item-bx svg {
  margin-bottom: 20px;
  width: 60px;
  height: 60px
}

.home_about_2 {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #fff;
  position: relative;
  z-index: 100
}

.title_1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--theme-color);
  position: relative;
  margin-bottom: 15px;
  line-height: normal
}

.home_about_2 h2 {
  color: var(--bs-dark);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px
}

.home_about_2 h3 {
  color: var(--bs-dark);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px
}

.about_img {
  float: right;
  max-width: 540px;
  width: 100%;
  position: relative;
  margin: 0 0 15px 15px
}

.about_img .img {
  padding: 0 0 30px 30px;
  position: relative;
  aspect-ratio: 85/58
}

.about_img .img:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  right: 45px;
  bottom: 0;
  border: 1px solid #eee;
  border-radius: 4px
}

.about_img .img img {
  position: relative;
  z-index: 2;
  background: #272727;
  aspect-ratio: 85/58;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 4px
}

.about_img .about_img {
  width: 40%;
  position: absolute;
  bottom: 0;
  right: 45px;
  z-index: 3;
  padding: 15px 15px;
  color: var(--bs-dark);
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 5px;
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
  background: var(--theme-color)
}

.home_about_2 p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin-bottom: 15px;
  text-align: justify
}

.readMore_2,
.readMore_2:focus {
  height: 45px;
  line-height: 45px;
  padding: 0;
  padding-left: 20px;
  display: inline-block;
  outline: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--bs-gray);
  background: var(--theme-color);
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}

.readMore_2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #333;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 10% 0;
  transform-origin: 0% 10% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out
}

.readMore_2:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66)
}

.readMore_2:hover {
  color: #fff;
  background: #555
}

.maxWidth {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 25px
}

.maxWidth p {
  display: inline-block;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  text-align: center
}

.featuredSection,
.productSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  position: relative;
  background-color: rgb(242 246 247)
}

.title_2 {
  padding: 0 0 0;
  margin: 0;
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
  position: relative;
  font-weight: 700;
  color: var(--theme-color);
  font-size: 30px;
  font-style: normal;
  line-height: 1.25
}

.title_2:after {
  background: var(--bs-dark);
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  width: 50px
}

.categoryDiv {
  width: 100%;
  display: flex;
  position: relative
}

.categorySlider {
  float: left;
  width: 100%;
  margin-top: 15px;
  position: relative;
  overflow: hidden
}

.categoryItem {
  background: var(--bs-body-bg);
  box-shadow: 0 0 49px rgba(0, 0, 0, .02);
  transition: all .3s ease;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden
}

.itemCode {
  font-size: 16px;
  color: #666
}

.featuredSection .categoryItem:hover {
  box-shadow: 0 6px 8px #bbb
}

.categoryItem .image {
  overflow: hidden;
  border-bottom: 1px solid #eee
}

.categoryItem .image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  transition: all .3s ease
}

.categoryItem:hover .image img {
  transform: scale(1.02)
}

.categoryItem .categoryItemInfo {
  padding: 15px;
  text-align: center
}

.categoryItem .categoryItemInfo .categoryItemTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  justify-content: center;
  height: 44px
}

.categoryItem:hover .categoryItemInfo .categoryItemTitle {
  color: var(--theme-color)
}

.categoryItem .categoryItemInfo p {
  font-size: 14px;
  font-weight: 400;
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical
}

.categoryItem .categoryItemInfo span {
  color: var(--theme-color);
  text-decoration: underline;
  font-weight: 500
}

.categoryDiv .category-next,
.categoryDiv .category-prev {
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: var(--bs-dark);
  border: 0;
  outline: 0;
  background: var(--theme-color);
  border-radius: 100%;
  z-index: 9
}

.categoryDiv .category-next.swiper-button-disabled,
.categoryDiv .category-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}

.categoryDiv .category-prev {
  left: -20px
}

.categoryDiv .category-next {
  right: -20px
}

.featuredSection .categoryItem {
  margin-bottom: 30px
}

.swiper_wrap {
  float: left;
  width: 100%;
  padding: 40px 0;
  background: var(--bs-body-bg)
}

.bg-sec {
  background: linear-gradient(90deg, rgba(255, 255, 255, .95) 0, rgba(255, 255, 255, .95) 100%) !important;
  padding: 50px 0;
  overflow: hidden;
  background-color: #405787 !important
}

.tm-testi-slide-1 {
  background: #fff;
  padding: 24px 21px 15px;
  margin: 5px 2px;
  border-radius: 18px;
  transition: all .3s ease-in-out;
  border: 1px solid #d5dfe4
}

.tm-testi-logo {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.tm-trustpilot-logo {
  flex: 1
}

.tm-trustpilot-logo img {
  max-width: 91px
}

.tm-star-ratings {
  font-weight: 600;
  color: #fece00;
  font-size: 24px;
  line-height: normal;
}

.tm-star-ratings img {
  max-width: 84px;
  margin-left: auto
}

.tm-slide-h4 {
  color: #373737;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  padding-top: 10px
}

.tm-testi-slide-1 p {
  font-weight: 400;
  font-size: 15px;
  padding: 10px 0 15px;
  line-height: 1.5;
  border-bottom: 1px solid #d5dfe4;
  color: #444;
  text-align: left;
  margin: 0;
  min-height: 150px
}

.tm-slide-h5 {
  color: var(--para-color);
  padding-top: 10px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-transform: capitalize
}

.tm-slide-h5 span {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: inline-block;
  overflow: hidden;
  margin-right: 7px
}

.morecontent span {
  display: none
}

.morelink {
  display: block;
  font-size: 14px;
  color: var(--theme-dark-color);
  margin-top: 5px
}

.morelink:focus,
.morelink:hover {
  color: var(--theme-color)
}

.swiper_wrap {
  width: 100%;
  position: relative;
  display: block;
  text-align: left
}

.swiper-wrapper {
  display: flex;
  align-items: stretch
}

.swiper-slide {
  height: auto
}

.swiper-prev {
  left: -18px;
  right: auto
}

.swiper-next {
  right: -18px;
  left: auto
}

.swiper-next svg,
.swiper-prev svg {
  width: 16px;
  height: 16px
}

.clientSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background-color: rgb(242 246 247)
}

.head-sec2 {
  float: left;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1
}

.head-sec2 .tt {
  color: #303030;
  font-weight: 600;
  font-size: 25px;
  text-transform: capitalize;
  display: inline-block;
  background-color: rgb(242 246 247);
  padding-inline: 20px
}

.head-sec2 .tt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  height: 1px;
  background-color: #d5dfe4;
  z-index: -1
}

.clients-bx {
  aspect-ratio: 167/95;
  border-radius: 4px;
  background: var(--bs-body-bg);
  border: 1px solid #d5dfe4
}

.clients-bx img {
  aspect-ratio: 167/95;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
  padding: 10px
}

.video-one {
  float: left;
  width: 100%;
  position: relative;
  display: block;
  padding: 60px 0 0;
  z-index: 1;
  overflow: hidden
}

.video-one:before {
  content: "";
  position: absolute;
  bottom: -300px;
  left: 0;
  right: 0;
  height: 500px;
  background: var(--theme-color);
  background: linear-gradient(180deg, rgba(193, 183, 154, .20211834733893552) 2%, rgba(193, 183, 154, 0) 100%);
  z-index: -1
}

.video-one__bg-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  background-color: #15151d;
  z-index: -1
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background: #ffffff0f url(../images/cta-box-bg.png) no-repeat;
  background-size: cover;
  background-position: center center;
  border: 1px solid #ffffff0f;
  border-radius: 30px;
  padding: 120px 0
}

.video-one__inner {
  position: relative;
  display: block
}

.video-one__inner .title_2 {
  margin-bottom: 30px
}

.video-one__inner .title_2:after {
  background: var(--bs-body-bg)
}

.video-one__inner .maxWidth p {
  color: var(--bs-body-bg);
  font-size: 18px
}

.video-one__contact-box .title_2::after {
  background: var(--bs-dark)
}

.video-one__contact-box .maxWidth p {
  color: var(--bs-body-color);
  font-size: 16px
}

.video-one__video-link {
  position: relative;
  display: inline-block;
  margin: 32px 0 70px
}

.video-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 20px;
  color: var(--bs-dark);
  background-color: var(--theme-color);
  border-radius: 50%;
  margin: 0 auto 0;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease
}

.video-one__video-icon svg {
  width: 60px;
  height: 60px
}

.video-one__video-icon:hover {
  background-color: #fff;
  color: var(--dark-color)
}

.video-one__video-icon .ripple:after,
.video-one__video-icon .ripple:before,
.video-one__video-link .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255, 60%);
  box-shadow: 0 0 0 0 rgb(255, 255, 255, 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite
}

@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0)
  }
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0)
  }
}

.video-one__video-icon .ripple:before {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute
}

.video-one__video-icon .ripple:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
  content: "";
  position: absolute
}

.video-one__contact-box {
  position: relative;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 10px 39.2px .8px rgba(0, 0, 0, .1);
  border-radius: 8px;
  padding: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1
}

.video-one__contact-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  height: 354px;
  width: 100%;
  background-color: #f7f7f7;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 0);
  z-index: -1
}

.video-one__contact-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  height: 354px;
  width: 100%;
  background-color: #f7f7f7;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: -1
}

.video-one-contact__info-box {
  position: relative;
  display: block;
  text-align: left;
  background-color: var(--bs-dark);
  padding: 25px 25px 25px;
  border-radius: 8px;
  border-bottom: 5px solid var(--bs-dark)
}

.mainFooter {
  float: left;
  width: 100%;
  position: relative;
  background-color: var(--bs-dark);
  padding: 40px 0
}

.footer-widget {
  width: 100%;
  display: block
}

.footer-widget p {
  color: var(--bs-body-bg);
  font-size: 15px
}

.footerTitle {
  position: relative;
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px
}

.footerTitle:before {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 40px;
  height: 3px;
  background: var(--theme-color);
  content: ""
}

.footerLinks {
  margin: 0 0 15px;
  padding: 0;
  display: block;
  width: 100%;
  float: left
}

.footerLinks li {
  width: 100%;
  float: left;
  margin-bottom: 8px;
  list-style: none
}

.footerLinks li a {
  color: var(--bs-body-bg);
  font-size: 15px
}

.footerLinks li a:focus,
.footerLinks li a:hover {
  color: var(--theme-color)
}

.footerContact {
  display: flex;
  margin-bottom: 10px
}

.footerContact svg {
  color: var(--theme-color);
  width: 18px;
  height: 18px;
  margin-right: 10px;
  float: left;
  min-width: 24px
}

.footerContact .address_place,
.footerContact .email,
.footerContact .number {
  line-height: 1.6
}

.footerContact p,
.footerContact p a {
  color: var(--bs-body-bg);
  font-size: 14px;
  display: inline-block;
  display: flex;
  align-items: center;
  margin: 0
}

.footerContact .number a {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600
}

.footerContact p a:hover {
  color: var(--theme-color)
}

.call-officers {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  background: rgb(255, 255, 255, 20%);
  border-radius: 5px;
  margin-top: 20px;
  gap: 15px;
  padding: 10px 12px 10px
}

.callIcon {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color);
  border-radius: 100%;
  padding: 5px
}

.callIcon:after {
  content: "";
  display: block;
  position: absolute;
  right: -22px;
  top: 50%;
  margin-top: -15px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid var(--theme-color);
  left: auto
}

.callIcon svg {
  width: 30px;
  height: 30px;
  z-index: 11
}

.callNumber {
  color: var(--bs-body-bg);
  line-height: normal
}

.callNumber span {
  font-size: 16px;
  display: block
}

.callNumber a {
  font-size: 18px;
  margin: 2px 0 0;
  color: var(--theme-color);
  font-weight: 600
}

.call-officers:hover .callNumber a {
  color: var(--theme-color)
}

.followLogo {
  display: flex
}

.sealLogo {
  max-width: 100px;
  margin-left: auto
}

.footerBottom {
  float: left;
  width: 100%;
  padding: 10px 0;
  background: var(--bs-dark);
  border-top: 1px solid var(--bs-body-color);
  color: var(--bs-body-bg);
  font-size: 15px
}

.craftedText {
  text-align: right
}

.factoryPhoto {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  position: relative;
  background-color: rgb(242 246 247)
}

.masonry {
  float: left;
  width: 100%;
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  justify-content: center;
}

.masonry .item {
  display: inline-block;
  background: #fff;
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  transition: 1s ease all;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, .16) 0 1px 4px;
  border-radius: 5px;
  overflow: hidden;
  max-width: 184px;
}

.masonry .item .img-bx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blackColor);
  opacity: 0;
  z-index: 1;
  transition: .3s ease-in-out
}

.masonry .item:hover .img-bx::before {
  opacity: .5
}

.masonry .item:after,
.masonry .item:before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  background: 0 0;
  transition: all .3s ease-in-out;
  opacity: 0;
  z-index: 2
}

.masonry .item:before {
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  top: 20px;
  left: 20px
}

.masonry .item:after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  bottom: 20px;
  right: 20px
}

.masonry .item:hover:after,
.masonry .item:hover:before {
  height: 50px;
  width: 50px;
  opacity: 1
}

.masonry .item img {
  max-width: 100%;
  aspect-ratio: 64/65;
  width: 100%;
  object-position: center;
  object-fit: cover
}

.masonry .item .link-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: rgba(233, 197, 69, .4);
  border: 2px solid rgba(233, 197, 69, .5);
  text-align: center;
  color: var(--bs-body-bg);
  font-size: 14px;
  opacity: 0;
  transition: all .5s ease-in-out;
  pointer-events: none
}

.masonry .item .link-wrap svg {
  width: 20px;
  height: 20px
}

.masonry .item:hover .link-wrap {
  opacity: 1
}

@media only screen and (min-width:321px) and (max-width:768px) {
  .masonry {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1
  }
}

@media only screen and (min-width:769px) and (max-width:1200px) {
  .masonry {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3
  }
}

.factoryVideo {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  position: relative;
  background-color: var(--bs-body-bg)
}

.vd_bx {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 16px;
  box-shadow: rgba(50, 50, 93, .25) 0 0 5px -1px, rgba(0, 0, 0, .3) 0 1px 3px -1px;
  margin-bottom: 35px
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 55px;
  height: 40px;
  border-radius: 12px;
  text-align: center;
  color: var(--bs-body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: all .5s;
  background: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
  background-color: #d7141b;
  box-shadow: 0 0 0 0 rgba(110, 39, 37, .5);
  -webkit-animation: wave 1.25s infinite cubic-bezier(.66, 0, 0, 1);
  -moz-animation: wave 1.25s infinite cubic-bezier(.66, 0, 0, 1);
  -ms-animation: wave 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: wave 1.25s infinite cubic-bezier(.66, 0, 0, 1)
}

@-webkit-keyframes wave {
  to {
    box-shadow: 0 0 0 45px rgba(213, 142, 144, 0)
  }
}

@-moz-keyframes wave {
  to {
    box-shadow: 0 0 0 45px rgba(213, 142, 144, 0)
  }
}

@-ms-keyframes wave {
  to {
    box-shadow: 0 0 0 45px rgba(213, 142, 144, 0)
  }
}

@keyframes wave {
  to {
    box-shadow: 0 0 0 45px rgba(213, 142, 144, 0)
  }
}

.video-play-icon svg {
  width: 30px;
  height: 30px
}

.stickyLogo {
  position: fixed;
  top: 30%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 9999
}

.stickyLogo a {
  color: #fff;
  padding: 0;
  margin: 4px 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  transform: translateX(100px);
  transition: all .4s ease
}

.stickyLogo a img {
  width: 150px
}

.stickyLogo a:hover {
  transform: translateX(0)
}

.img-breadcum {
  float: left;
  width: 100%;
  padding: 60px 0 60px;
  text-align: center;
  position: relative;
  background: linear-gradient(10deg, rgba(255, 255, 255, .7) 0, rgba(255, 255, 255, .9) 100%);
  background-color: #41598b;
  background-image: url(../images/about-banner.jpg);
  background-size: 100%
}

.img-breadcum .sub-tt {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
  background-color: #15151d;
  border-radius: 4px;
  padding: 5px 18px;
  display: inline-block
}

.img-breadcum .tt {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: normal;
  margin-bottom: 0;
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
  text-transform: capitalize
}

.img-breadcum p {
  color: #fff;
  margin-top: 12px;
  font-size: 17px;
  margin-bottom: 0
}

.productsBanner {
  float: left;
  width: 100%;
  padding: 60px 0 60px;
  text-align: center;
  position: relative;
  background: linear-gradient(10deg, rgba(255, 255, 255, .7) 0, rgba(255, 255, 255, .9) 100%);
  background-color: #41598b;
  background-image: url(../images/manufacturing.webp);
  background-size: 100%
}

.productsBanner::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  top: 0;
  left: 0;
  z-index: 0;
  content: ""
}

.productsBanner .container {
  position: relative
}

.productsBanner .sub-tt {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
  background-color: #15151d;
  border-radius: 4px;
  padding: 5px 18px;
  display: inline-block
}

.productsBanner .tt {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: normal;
  margin-bottom: 0;
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
  text-transform: capitalize
}

.productsBanner p {
  color: #fff;
  margin-top: 12px;
  font-size: 17px;
  margin-bottom: 0
}

.contactPage {
  background-image: url(../images/contact-us.jpg)
}

.contactPage:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  top: 0;
  left: 0;
  z-index: 0;
  content: ""
}

.contactPage .container {
  position: relative;
  z-index: 1
}

.breadcum-sec {
  float: left;
  width: 100%;
  background-color: #eee;
  padding: 7px 0;
  border-bottom: 1px solid #ddd
}

.breadcum-sec ul {
  display: flex;
  gap: 0 18px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0
}

.breadcum-sec ul li {
  color: #303030;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  padding: 0;
  position: relative;
  margin: 0
}

.breadcum-sec ul li a {
  color: var(--theme-color)
}

.breadcum-sec ul li a::before {
  content: "/";
  position: absolute;
  top: 1px;
  right: -11px;
  font-size: 12px
}

.title_factsheet {
  color: var(--theme-color);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 10px
}

.factory-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 20px;
  margin-bottom: 25px
}

.stat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: .3s ease
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08)
}

.stat-icon {
  font-size: 45px;
  display: inline-block;
  margin-bottom: 5px;
  color: var(--bs-body-color)
}

.stat-icon svg {
  width: 40px;
  height: 40px
}

.stat-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 6px
}

.stat-card p {
  font-size: 16px;
  color: #444;
  text-align: center;
  margin: 0
}

.featureItem2 {
  background-color: transparent;
  margin: 0 0 15px 0;
  padding: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #dedede;
  border-radius: 15px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .05);
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  text-align: left
}

.featureItem2:hover {
  background-color: transparent;
  background-image: linear-gradient(90deg, #fff 5%, #f0f0F06B 100%)
}

.featureItem2 .icon2 {
  display: inline-flex;
  flex: 0 0 auto;
  margin-top: 0;
  margin-right: 15px;
  margin-left: 0;
  margin-bottom: unset;
  background-color: transparent;
  font-size: 40px
}

.featureContent2 {
  flex-grow: 1
}

.featureContent2 .featureTitle2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 5px;
  color: var(--bs-body-color)
}

.featureContent2 p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  margin: 0;
  text-align: left;
  min-height: 40px
}

.capabilityPanel {
  margin-top: 30px;
  width: 100%;
  margin-bottom: 20px;
  background: #f6f8fb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px
}

.capabilityPanel .title_factsheet {
  font-size: 24px
}

.cap-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px
}

.cap-item {
  display: flex;
  gap: 14px
}

.cap-item span {
  color: var(--theme-color);
  font-weight: 700;
  font-size: 20px
}

.cap-item h4 {
  font-size: 18px;
  color: var(--bs-body-color);
  margin-bottom: 4px
}

.cap-item p {
  font-size: 16px;
  color: #333;
  margin: 0
}

.capabilityPanel ul {
  margin: 0;
  padding: 0
}

.capabilityPanel ul li {
  font-size: 15px;
  list-style: none;
  line-height: normal
}

.capabilityPanel ul li span {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid #b4c4dd;
  border-radius: 40px;
  background: #e7effb;
  font-size: 14px;
  line-height: normal
}

.logistics-section {
  margin-top: 20px
}

.logistics-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px
}

.logistics-item {
  background: #f4faff;
  transition: all .3s ease;
  border: 1px solid #dbeaff;
  padding: 35px;
  border-radius: 15px
}

.logistics-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06)
}

.logistics-item .icon {
  font-size: 34px;
  margin-bottom: 12px
}

.logistics-item h4 {
  font-size: 18px;
  color: var(--bs-body-color);
  margin-bottom: 6px
}

.logistics-item p {
  color: #333;
  text-align: left;
  line-height: normal;
  margin: 0
}

.trade-section {
  margin-top: 20px
}

.trade-section table {
  max-width: 580px
}

.ourCertificate {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  position: relative;
  background-color: #eee
}

.gallery_details {
  position: relative;
  overflow: hidden;
  background: #000000a4;
  margin: 0;
  border-radius: 10px;
  border: 1px solid #ccc
}

.gallery_details:after,
.gallery_details:before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  background-color: transparent;
  transition: all .3s ease-in-out;
  opacity: 0
}

.gallery_details:before {
  border-left: 1px solid var(--theme-color);
  border-top: 1px solid var(--theme-color);
  top: 20px;
  left: 20px;
  z-index: 1
}

.gdetails_image {
  transition: all .5s ease
}

.gallery_details .link-wrap {
  position: absolute;
  top: calc(50% - 0px);
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  z-index: 10
}

.gallery_details .link-wrap i {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 40px;
  background-color: var(--theme-color);
  border: 2px solid var(--theme-color);
  text-align: center;
  color: #fff;
  font-size: 15px;
  opacity: 0;
  transition: all .5s ease-in-out;
  border-radius: 4px
}

.gallery_details:hover:after,
.gallery_details:hover:before {
  height: 40px;
  width: 40px;
  opacity: 1
}

.gallery_details:hover .gdetails_image {
  transform: scale(1.1);
  filter: blur(4px)
}

.gallery_details:hover .link-wrap i {
  opacity: 1;
  transform: translateY(0)
}

.categoryPage {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #fff;
  position: relative;
  z-index: 100
}

.categoryPage h2 {
  color: var(--bs-dark);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 10px;
  text-align: left
}

.categoryPage h3 {
  color: var(--bs-dark);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
  text-align: left
}

.categoryBox {
  float: right;
  max-width: 500px;
  width: 100%;
  position: relative;
  margin: 0 0 15px 15px;
  z-index: 9;
  text-align: center
}

.categoryBox .image {
  width: 100%;
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden
}

.categoryBox .image img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover
}

.categoryPage ul {
  margin: 0 0 25px;
  padding: 0
}

.categoryPage ul li {
  display: block;
  list-style: none;
  line-height: normal;
  color: #423f3f;
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  padding-left: 25px
}

.categoryPage ul li:before {
  position: absolute;
  left: 0;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23333' viewBox='0 0 16 16'><path d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/></svg>")
}

.singleProduct {
  float: left;
  width: 100%;
  border: solid 1px #eee;
  max-width: 100%;
  background: #fff;
  margin-bottom: 26px;
  text-align: center;
  box-shadow: 0 3px 5px 0 rgba(210, 210, 210, .75);
  border-radius: 12px;
  padding-bottom: 15px
}

.singleProduct .image {
  position: relative;
  margin-bottom: 13px;
  aspect-ratio: 1/1;
  border-bottom: 1px solid #eee
}

.singleProduct .image img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center
}

.singleProductTitle {
  font-size: 16px;
  color: var(--bs-dark);
  font-weight: 600;
  margin-bottom: 15px
}

.singleProduct:hover .singleProductTitle {
  color: var(--theme-color)
}

.enquiryBtn {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: all .4s;
  padding: 0 20px;
  line-height: 40px;
  height: 40px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: var(--bs-dark);
  border: 0;
  border-radius: 4px
}

.enquiryBtn:before {
  content: "";
  left: 0;
  position: absolute;
  z-index: 1;
  background: var(--bs-dark);
  width: 0%;
  height: 40px;
  transition: all .4s
}

.enquiryBtn span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  color: #fff
}

.enquiryBtn span svg {
  width: 18px;
  height: 18px;
  margin-left: 5px
}

.enquiryBtn:focus,
.enquiryBtn:hover {
  color: var(--bs-dark)
}

.enquiryBtn:focus:before,
.enquiryBtn:hover:before {
  background: var(--theme-color);
  width: 100%
}

.enquiryBtn:focus span,
.enquiryBtn:hover span {
  color: var(--bs-body-bg)
}

.you_may {
  float: left;
  width: 100%;
  padding: 7px 15px;
  margin: 0 0 8px;
  line-height: 30px;
  background: var(--bs-dark);
  font-size: 20px;
  color: var(--theme-color);
  font-weight: 600;
  border-radius: 4px
}

.catListing {
  float: left;
  width: 100%;
  margin-bottom: 15px;
  box-shadow: 0 3px 5px 0 rgba(210, 210, 210, .75);
  transition: all .35s ease-in-out;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  border-color: #eee;
  background: #fff;
  border-radius: 12px;
  overflow: hidden
}

.catListing .product {
  width: 100%;
  position: relative;
  text-align: center;
  overflow: hidden;
  border-right: 1px solid #eee
}

.catListing .product .image1 {
  width: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: all .4s ease-in-out;
  aspect-ratio: 1/1
}

.catListing .product .image1 img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center
}

.catListing .right-content {
  position: relative;
  padding-right: 15px
}

.catListing .right-content .productTitle {
  line-height: 24px;
  padding: 10px 0;
  text-align: left;
  margin: 0;
  font-size: 20px;
  font-weight: 600
}

.catListing .right-content .productTitle a {
  color: var(--bs-dark)
}

.catListing .right-content .productTitle a:focus,
.catListing:hover .right-content .productTitle a {
  color: var(--theme-color)
}

.btn-grp {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px
}

.btn-grp .v-btn {
  background: #333;
  background-color: #f70000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 51px;
  border-radius: 6px
}

.btn-grp .w-btn {
  position: relative;
  z-index: 1;
  background: #01e675;
  display: inline-block;
  color: #fff;
  padding: 10px 12px;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, .16) 0 1px 4px;
  font-size: 16px;
  text-transform: capitalize;
  overflow: hidden;
  transition: .4s;
  border: 0
}

.btn-grp .w-btn svg {
  width: 20px;
  height: 20px
}

.productBrochureandvideo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #333;
  background: #333;
  border-radius: 4px;
  color: var(--theme-color);
  padding: 5px 12px;
  font-weight: 500;
  transition: .3s
}

.productBrochureandvideo a svg {
  margin-right: 4px
}

.productBrochureandvideo a:focus,
.productBrochureandvideo a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--bs-dark)
}

.more_info {
  float: left;
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
  max-height: 260px;
  overflow: hidden;
  overflow-y: auto;
  padding-right: 8px
}

.right-content p {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: justify
}

.table-responsive {
  float: left;
  width: 100%;
  margin-bottom: 10px
}

table {
  margin: 0;
  width: 100%
}

table tbody tr td {
  vertical-align: middle;
  padding: 6px 10px;
  font-size: 14px;
  line-height: normal;
  text-align: left
}

table tbody tr td {
  border: 1px solid #eaeaea
}

table tbody tr td:first-child {
  color: var(--bs-dark);
  font-weight: 600
}

table tbody tr td b {
  font-weight: 500
}

table tbody tr td strong {
  color: var(--bs-dark);
  font-weight: 600
}

.buttons {
  display: flex;
  gap: 15px
}

.enquiryBtn2,
.enquiryBtn2:focus {
  height: 45px;
  line-height: 45px;
  padding: 0;
  padding-left: 15px;
  display: inline-block;
  outline: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--theme-color);
  background: #333;
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}

.enquiryBtn2 .btn_caret {
  height: 45px;
  background: var(--bs-dark);
  display: inline-block;
  padding: 0 12px;
  color: var(--bs-body-bg);
  margin-left: 15px
}

.enquiryBtn2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--theme-color);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 10% 0;
  transform-origin: 0% 10% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out
}

.enquiryBtn2:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66)
}

.enquiryBtn2:hover {
  color: var(--bs-dark);
  background: #555
}

.contact_page {
  float: left;
  width: 100%;
  margin: 0;
  padding: 50px 0;
  position: relative
}

.contact_form_grid1 {
  float: left;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .5);
  margin-bottom: 0;
  margin-top: 0;
  border-radius: 12px;
  overflow: hidden
}

.contact_details {
  background: var(--bs-dark);
  border-radius: 4px 0 0 4px;
  padding: 40px 40px
}

.contact_form_grid1 .form_grid {
  background-color: #fff;
  padding: 30px
}

.contact_details .title_h2 {
  color: var(--theme-color);
  font-size: 20px;
  text-align: left;
  padding: 0;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700
}

.contact_details p {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: normal;
  line-height: 24px
}

.contact_details .address_list {
  clear: both;
  margin: 0 0 20px;
  padding: 0
}

.contact_details .address_list li {
  clear: both;
  list-style: none;
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px
}

.contact_details .address_list li svg {
  min-width: 25px;
  height: 25px;
  margin-right: 5px
}

.contact_details .address_list li a {
  color: #fff;
  display: flex;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
  margin-right: 5px
}

.contact_details .address_list li a span {
  font-size: 30px;
  margin-right: 13px
}

.contact_details .address_list li:first-child {
  display: flex;
  align-items: center
}

.contact_details .address_list li span {
  font-size: 30px;
  margin-right: 13px
}

.contact_details .address_list li a:focus,
.contact_details .address_list li a:hover {
  color: var(--theme-color)
}

.googleMap {
  float: left;
  width: 100%
}

.googleMap iframe {
  width: 100%;
  height: 400px
}

.modal-content {
  border-radius: 0
}

.modal-header {
  padding: 0 15px;
  background: var(--theme-color);
  color: #fff;
  border-radius: 0
}

.modal-header .modal-title {
  text-align: left;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  padding: 15px 0;
  text-transform: initial;
  letter-spacing: .2px;
  font-weight: 600
}

.btn-close {
  width: 1em;
  height: 1em;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  outline: 0
}

.btn-close:hover {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat
}

.modal-body .form-group {
  margin-bottom: 15px
}

.g-recaptcha {
  transform: scale(.8);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0
}

.popup_image {
  width: 100%;
  margin-bottom: 10px
}

.popupTitle {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin: 0 auto;
  position: relative;
  color: var(--theme-color)
}

.send_enquiry {
  border-radius: 40px;
  bottom: 45px;
  color: var(--bs-body-bg);
  display: table;
  height: 50px;
  left: 15px;
  min-width: 50px;
  position: fixed;
  text-align: center;
  z-index: 9999;
  transition: all .2s linear;
  background: var(--bs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.send_enquiry svg {
  width: 24px;
  height: 24px;
  line-height: 50px
}

.send_enquiry:hover {
  color: var(--bs-body-bg);
  padding: 0 20px
}

.send_enquiry:focus {
  color: var(--bs-body-bg)
}

.send_enquiry span {
  display: table-cell;
  vertical-align: middle;
  font-size: 16px;
  letter-spacing: -15px;
  opacity: 0;
  line-height: 50px;
  transition: all .5s;
  text-transform: uppercase
}

.send_enquiry:hover span {
  opacity: 1;
  letter-spacing: 1px;
  padding-left: 10px
}

.intl-tel-input,
.iti {
  width: 100%;
  height: 40px
}

.whatapp_btn {
  background: #01e675;
  width: 50px;
  height: 50px;
  color: #fff;
  position: fixed;
  left: 15px;
  bottom: 105px;
  cursor: pointer;
  z-index: 999;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .16), 0 3px 10px rgba(0, 0, 0, .16)
}

.whatapp_btn svg {
  width: 24px;
  height: 24px
}

.whatapp_btn:focus,
.whatapp_btn:hover {
  background: #01e675;
  color: #fff
}

#whatsapp .modal-dialog {
  margin-top: 12%
}

.multipleAddress {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0
}

.addresColumn {
  padding: 20px;
  -webkit-box-shadow: 0 0 30px #ddd;
  box-shadow: 0 0 30px #ddd;
  position: relative;
  background-color: #fff;
  margin: 0 0 30px;
  border-radius: 12px
}

.addresColumn .map_icon_big {
  position: absolute;
  bottom: 6px;
  right: 0;
  width: 90px;
  height: 60px;
  font-size: 60px;
  color: #eee
}

.addresColumn .contactTitle_H2 {
  margin-bottom: 15px;
  margin-left: 10px;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
  color: var(--theme-color);
  text-align: left;
  padding: 0;
  font-size: 22px;
  font-weight: 600
}

.addresColumn .address_list {
  clear: both;
  margin: 0;
  padding: 0
}

.addresColumn .address_list li {
  clear: both;
  list-style: none;
  color: #333;
  margin-bottom: 10px;
  font-size: 16px
}

.addresColumn .address_list li svg {
  min-width: 25px;
  height: 25px;
  margin-right: 8px
}

.addresColumn .address_list li a {
  color: #333;
  display: flex;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
  margin-right: 5px
}

.addresColumn .address_list li a span {
  font-size: 30px;
  margin-right: 13px
}

.addresColumn .address_list li:first-child {
  display: flex;
  align-items: center
}

.addresColumn .address_list li span {
  font-size: 30px;
  margin-right: 13px
}

.addresColumn .address_list li a:focus,
.addresColumn .address_list li a:hover {
  color: var(--theme-color)
}

.gmTrustedBg {
  position: relative
}

.gmTrustedBg:before {
  position: absolute;
  top: -30px;
  right: -9999999px;
  bottom: -30px;
  left: 0;
  background: var(--bs-dark);
  content: "";
  z-index: 0
}

.gmTrustedBg .homeFeture {
  position: relative
}

.gmTrustedBg .homeFeture .disabled {
  opacity: .9;
  filter: grayscale(100%)
}

.gmTrustedBg .homeFeture span {
  color: var(--theme-color);
  font-size: 18px
}

.SumoSelect .CaptionCont {
  position: relative;
  background-color: #fff;
  margin: 0;
  border-radius: 4px;
  height: 40px;
  font-size: 14px;
  padding: 0 15px;
  line-height: normal;
  display: flex;
  align-items: center;
  border: 1px solid #ced4da
}

.SumoSelect:hover .CaptionCont {
  border-color: #ced4da;
  box-shadow: none
}

.SumoSelect.open .CaptionCont,
.SumoSelect:focus .CaptionCont {
  box-shadow: none;
  border-color: var(--theme-color)
}

.SumoSelect .optWrapper .options li.opt {
  padding: 6px 15px;
  font-size: 13px;
  color: var(--bs-body-color);
  margin: 0
}

.SumoSelect .optWrapper .options li.opt label {
  font-weight: 400
}

.SumoSelect .optWrapper .options li.opt:hover {
  background-color: var(--theme-color);
  color: var(--bs-body-color)
}

.SumoSelect {
  width: 100%
}

.SumoSelect.open .optWrapper {
  top: 40px
}

.SumoSelect>.CaptionCont>span.placeholder {
  background: 0 0;
  font-style: normal;
  color: var(--bs-body-color)
}

.postRequirement {
  background: #fff;
  position: relative
}

.postRequirementTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-color)
}

.postRequirement label {
  text-align: left
}

.ribbonSave {
  width: 180px;
  height: 50px;
  background: #666;
  box-shadow: 0 0 37px 0 rgba(0, 0, 0, .3);
  top: -6px;
  right: 25px;
  position: absolute;
  margin-bottom: 80px
}

.ribbonSave span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: normal;
  width: 100%;
  position: relative;
  display: block;
  padding: 15px 0 0
}

.ribbonSave span svg {
  width: 18px;
  height: 18px
}

.ribbonSave:after,
.ribbonSave:before {
  content: "";
  position: absolute
}

.ribbonSave:before {
  height: 0;
  width: 0;
  border-bottom: 6px solid #555;
  border-right: 6px solid transparent;
  right: -6px
}

.ribbonSave:after {
  height: 0;
  width: 0;
  border-left: 90px solid #666;
  border-right: 90px solid #666;
  border-bottom: 15px solid transparent;
  bottom: -15px;
  right: 0
}

.innerBusinessTitle {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--theme-color);
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  line-height: normal;
  text-align: left
}

.specificPanel {
  display: none
}

.singleLi ul {
  display: block
}

.singleLi ul li {
  width: 100%
}

.inputGroup {
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0;
  position: relative;
  gap: 10px
}

.inputGroup input {
  padding: .375rem .75rem;
  width: 100%;
  font-size: 14px;
  border: 1px solid #ced4da;
  border-radius: 4px
}

.inputGroup input:focus,
.inputGroup input:focus-visible {
  outline: 0;
  box-shadow: none;
  border-color: #c9c6c6;
  box-shadow: 1px 0 4px #b9bbc1
}

.inputEditBtn {
  background-color: transparent;
  margin-top: 0;
  padding: 0;
  border: 0;
  color: var(--bs-body-color)
}

.inputEditBtn svg {
  width: 14px;
  height: 14px
}

.inputCancelBtn {
  background-color: #ccc;
  color: var(--bs-body-color)
}

.inputSaveBtn {
  background: var(--bs-body-color);
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  border: 0;
  outline: 0;
  padding: 3px 10px
}

.inputCancelBtn {
  background: var(--theme-color);
  color: var(--bs-body-color);
  font-size: 13px;
  border-radius: 4px;
  border: 0;
  outline: 0;
  padding: 3px 10px
}

.inputGroup .SumoSelect {
  position: absolute;
  right: 1px;
  top: 1px;
  max-width: max-content
}

.inputGroup .SumoSelect .CaptionCont {
  border-radius: 0 4px 4px 0;
  height: 38px;
  line-height: 30px;
  border: 0;
  border-left: 1px solid #ced4da;
  min-width: 85px
}

.inputGroup .SumoSelect.open .search-txt {
  padding: 0 10px
}

.inputGroup .SumoSelect.open .optWrapper {
  top: 38px
}

.SumoSelect.open .search-txt {
  height: 38px;
  padding: 0 15px
}

.unitToggle {
  padding: 0 15px;
  padding-right: 30px;
  border-left: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 0 4px 4px 0 !important;
  min-width: 90px;
  width: max-content;
  height: 38px;
  line-height: 38px;
  text-align: left;
  position: absolute;
  right: 1px;
  z-index: 999;
  top: 1px
}

.unitToggle::after {
  content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬ ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px
}

.unitDropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  width: max-content;
  min-width: 90px;
  display: none;
  z-index: 10;
  margin: 0;
  padding: 0;
  border-radius: 4px 4px;
  overflow: hidden
}

.unitDropdown li {
  list-style: none;
  padding: 8px 10px;
  cursor: pointer;
  line-height: normal
}

.unitDropdown li:hover {
  background-color: #f0f0f0
}

.radioGroup {
  display: flex;
  align-items: center;
  gap: 15px
}

.radio {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 25px;
  position: relative;
  vertical-align: middle;
  font-size: 13px
}

.radio input[type=radio] {
  appearance: none;
  border-radius: 100px;
  margin-top: 2px;
  padding: 7px;
  border: 2px solid var(--theme-color);
  outline: 0
}

.radio input[type=radio] {
  left: 0;
  position: absolute
}

.radio span {
  font-size: 13px;
  font-weight: 500;
  color: #666
}

.radio input[type=radio]:checked:before {
  background: var(--theme-color);
  border-radius: 50px;
  content: "";
  height: 10px;
  left: 2px;
  opacity: 1;
  position: absolute;
  top: 2px;
  width: 10px
}

.radio input[type=radio]:checked~span {
  color: var(--theme-color)
}

.submitButton {
  background: var(--bs-body-color);
  color: #fff;
  border: 1px solid var(--bs-dark);
  padding: 10px 35px;
  display: inline-flex;
  text-align: center;
  border-radius: 3px;
  line-height: normal;
  z-index: 1;
  font-size: 15px
}

.submitButton:focus,
.submitButton:hover {
  background: var(--theme-color);
  color: #fff;
  border: 1px solid var(--theme-dark-color)
}

#myModal .modal-dialog {
  max-width: 650px
}

#myModal .modal-dialog .radio {
  font-weight: 400
}

.modalSpecificPanel {
  display: none
}

.error-msg {
  color: red
}

.trending-box {
  position: absolute;
  background: #fff;
  top: auto;
  left: 0;
  z-index: 99;
  width: 100%;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 1px 6px rgba(32, 33, 36, .28);
  display: none
}

.trending-title {
  font-size: 16px;
  font-weight: 700;
  padding: 10px 20px;
  margin: 0;
  color: #202124;
  text-align: left
}

.trend-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.trend-list li {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  line-height: normal;
  transition: background .2s;
  font-size: 14px;
  position: relative;
  margin: 0
}

.trend-list li a {
  display: block;
  width: 100%;
  text-align: left
}

.trend-list li:last-child {
  border-bottom: none
}

.trend-list li:hover {
  background-color: #f1f3f4
}

.trend-list li.selected {
  background-color: #f0f0f0
}

.trend-rank {
  width: 24px;
  text-align: center;
  font-weight: 700;
  color: #666;
  margin-right: 12px
}

.trend-text {
  font-size: 14px;
  color: #202124
}

#thirdPanel,
#whatsappOtpPanel {
  display: none
}

.small .resend {
  color: #ef3b24;
  cursor: pointer
}

.small .resend.disabled {
  color: #6c757d;
  pointer-events: none
}

.postPropertySectionLeft .innerBusinessTitle {
  border-color: #681a10
}

.specificPanel {
  display: none
}

.singleLi ul {
  display: block
}

.singleLi ul li {
  width: 100%
}

#otpEmail,
#otpWhatsapp {
  display: none
}

#thirdPanel,
#whatsappOtpPanel {
  display: none
}

.small .resend {
  color: #ef3b24;
  cursor: pointer
}

.small .resend.disabled {
  color: #6c757d;
  pointer-events: none
}

.backBtn {
  width: 25px;
  height: 25px;
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--theme-color);
  margin-right: 8px
}

.backBtn svg {
  width: 20px;
  height: 20px
}

.backWithOtp {
  display: flex;
  align-items: center;
  margin-bottom: 10px
}

#eOtpInputs,
#otpInputs,
#wOtpInputs {
  display: flex;
  gap: 10px;
  margin: 15px 0
}

.otp-section {
  display: flex;
  gap: 5px;
  align-items: center
}

.otp-section input.otp-input {
  border: 1px solid rgba(233, 197, 69, .4);
  background: 0 0;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  color: #333;
  font-weight: 400;
  line-height: 1.88;
  margin-right: 8px;
  outline: 0;
  font-weight: 700;
  transition: border-color .3s, box-shadow .3s
}

.otp-input:focus {
  border-color: #0f507a;
  box-shadow: 0 0 4px rgba(0, 123, 255, .5);
  outline: 0
}

#companyNameError,
#districtTextFieldError,
#eOtpError,
#emailError,
#industryCategoryError,
#loader,
#manufacturingError,
#memberNameError,
#password,
#passwordError,
#phoneNumberError,
#pincode-error,
#primaryNatureError,
#stateTextFieldError,
#wOtpError,
.countryName,
.error,
.factoryPincode,
.industryCategory,
.personName {
  font-size: 13px;
  color: red
}

.didnotReceive {
  font-size: 14px;
  margin-top: 10px
}

.didnotReceive p {
  color: #333
}

.didnotReceive .resend {
  color: #0f507a;
  cursor: pointer
}

.didnotReceive .otpResend .resend {
  color: #999;
  pointer-events: none
}

#e_timer,
#timer,
#w_timer {
  font-weight: 700;
  color: #333
}

#suggestionList {
  position: absolute;
  background: #fff;
  width: 100%;
  z-index: 999;
  border: 1px solid #ddd;
  display: none;
  max-height: 300px;
  overflow-y: auto;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  border-radius: 12px
}

#suggestionList li {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  margin: 0;
  line-height: normal;
  font-size: 14px;
  color: var(--bs-body-color)
}

#suggestionList li:last-child {
  border: 0
}

#suggestionList li:hover {
  background: #f5f5f5
}

#suggestionList li.active {
  background: #f5f5f5
}

.cat-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .6);
  z-index: 1000;
  align-items: center;
  justify-content: center
}

.cat-popup-inner {
  width: 65%;
  margin: auto;
  background: #fff;
  padding: 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden
}

.popupCatTitle {
  padding: 10px 20px;
  background: var(--theme-color);
  color: #fff;
  text-align: left;
  font-size: 20px;
  line-height: normal;
  text-transform: initial;
  font-weight: 600
}

.closePopup {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 12px;
  color: var(--bs-body-color)
}

.closePopup svg {
  color: var(--bs-body-bg);
  width: 20px;
  height: 20px
}

#popupCategoryList {
  max-height: 520px;
  overflow-y: auto;
  overflow-x: hidden
}

.popupBody {
  display: block;
  width: 100%;
  padding: 20px
}

#popupCategoryList .searchResultTitle {
  color: var(--bs-body-color);
  font-size: 18px;
  line-height: normal;
  margin: 0 0 13px;
  padding: 0;
  font-weight: 600
}

.popupBody .categoryItem {
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 12px
}

.popupBody .categoryItem .categoryItemInfo {
  padding: 10px
}

.popupBody .categoryItem .categoryItemInfo .categoryItemTitle {
  margin: 0;
  line-height: normal;
  font-size: 14px
}

.productDetails {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #fff
}

.leftProducts {
  position: sticky;
  top: 92px
}

.productView {
  display: flex;
  gap: 10px;
  margin-bottom: 15px
}

.productView .selectors {
  width: 65px;
  min-width: 65px;
  display: block
}

.selectors a {
  position: relative;
  aspect-ratio: 1/1;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden
}

.selectors a img {
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center
}

.selectors a.mz-thumb-selected {
  border-color: var(--theme-color)
}

.productView .zoomImage {
  width: calc(100% - 70px);
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ccc
}

.productView .zoomImage .MagicZoom {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center
}

.button_2 {
  display: flex;
  gap: 15px;
  justify-content: center
}

.contactBtn {
  background: var(--bs-body-color);
  color: var(--bs-body-bg);
  border: 1px solid var(--bs-body-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  padding: 10px 25px;
  line-height: normal;
  border-radius: 4px;
  width: auto;
  text-align: center;
  cursor: pointer;
  font-size: 16px
}

.contactBtn svg {
  width: 22px;
  height: 22px
}

.contactBtn:focus,
.contactBtn:hover {
  background: #c6402f;
  color: #fff;
  border-color: #b03020
}

.enquiryBtnN {
  background: var(--theme-color);
  color: var(--bs-body-color);
  border: 1px solid var(--theme-dark-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  padding: 10px 25px;
  line-height: normal;
  border-radius: 4px;
  width: auto;
  text-align: center;
  cursor: pointer;
  font-size: 16px
}

.enquiryBtnN svg {
  width: 18px;
  height: 18px
}

.enquiryBtnN:focus,
.enquiryBtnN:hover {
  background: #c6402f;
  color: #fff;
  border-color: #b03020
}

.newDetailsRight {
  width: 100%;
  display: block
}

.newDetailsRightTitle {
  font-size: 22px;
  line-height: normal;
  color: var(--bs-body-color);
  margin: 0 0 10px;
  padding: 0
}

.highLightText {
  border: 1px solid #f6ebc6;
  border-radius: 12px;
  padding: 15px;
  overflow: hidden;
  background: #f9f4e3;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px
}

.highLightTextTitle {
  font-size: 18px;
  color: #b5931e;
  font-weight: 600;
  margin-bottom: 5px
}

.highLightText p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0
}

.minimumOrder {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--bs-body-color);
  padding: 5px 15px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 40px;
  display: inline-flex;
  line-height: normal
}

.itemPrice {
  font-size: 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: self-end
}

.itemPrice strong {
  font-size: 36px;
  color: #b5931e
}

.itemPrice del {
  color: #666;
  margin-left: 10px;
  font-size: 24px
}

.variations {
  width: 100%;
  display: block;
  padding: 15px 0;
  border-top: 1px solid #eee
}

.variationsTitle {
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
  color: #565959
}

.variationsTitle strong {
  color: var(--bs-body-color)
}

.selection {
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.selection .item {
  border: 1px solid #ccc;
  background: var(--bs-body-bg);
  cursor: pointer
}

.selection .item.color {
  border-radius: 4px;
  width: 50px
}

.selection .item.size {
  border-radius: 4px;
  width: auto;
  padding: 7px 15px;
  line-height: normal
}

.selection input[type=radio] {
  display: none
}

.selection input[type=radio]:checked+label {
  border-color: var(--theme-dark-color)
}

.variations ul {
  margin: 0 0 10px 15px;
  padding: 0
}

.variations ul li {
  list-style: disc;
  position: relative;
  font-size: 16px;
  color: var(--bs-body-color);
  margin: 0
}

.variations ul li span {
  color: #666
}

.hrLine {
  border-color: #b5b3b3
}

.shipping p {
  margin: 0
}

.recommendations {
  width: 100%;
  margin-bottom: 15px;
  padding: 0;
  overflow: hidden;
  position: relative
}

.recommendationsTitle {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--bs-body-color)
}

.recommendationsSwiper {
  width: 100%;
  overflow: hidden;
  height: 100%
}

.recommendationsSwiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}

.recommendationsSwiper img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
  text-align: center;
  height: 100%;
  border-radius: 12px;
  border: 1px solid #eee
}

.slideItem {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 10px
}

.recommendationsSwiper .image {
  margin-bottom: 10px
}

.slideTitle {
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: normal;
  margin-bottom: 5px
}

.slideTitle a {
  color: var(--bs-body-color)
}

.slideItem:hover .slideTitle a {
  color: var(--theme-color)
}

.slideItem .itemPrice strong {
  font-size: 16px
}

.slideItem .itemPrice del {
  font-size: 14px
}

.recommendations .swiper-button-next,
.recommendations .swiper-button-prev {
  border: 1px solid #ccc;
  background-color: var(--bs-body-bg);
  color: var(--theme-color);
  width: 35px;
  height: 35px;
  z-index: 2;
  border-radius: 100%;
  text-align: center
}

.recommendations .swiper-button-next {
  right: 15px
}

.recommendations .swiper-button-prev {
  left: 15px
}

.recommendations .swiper-button-next:hover,
.recommendations .swiper-button-prev:hover {
  color: var(--bs-body-color);
  background: var(--theme-color);
  border-color: var(--theme-dark-color)
}

.keyPanel {
  width: 100%;
  margin: 0;
  padding: 30px 0;
  position: relative
}

.keyTabs {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 89px;
  z-index: 99;
  border-bottom: 1px solid #eee
}

.keyTabs ul.nav-tabs {
  margin: 0;
  display: flex;
  gap: 0 35px;
  padding: 10px 0;
  border: 0
}

.keyTabs ul.nav-tabs li {
  margin: 0;
  padding: 0;
  line-height: normal
}

.keyTabs ul.nav-tabs li a {
  padding: 8px 0;
  font-size: 16px;
  border-radius: 0;
  font-weight: 400;
  color: var(--bs-body-color);
  transition: color .3s ease;
  border: 0;
  border-bottom: 3px solid transparent
}

.keyTabs ul.nav-tabs li a.active,
.keyTabs ul.nav-tabs li a:focus,
.keyTabs ul.nav-tabs li a:focus-visible,
.keyTabs ul.nav-tabs li a:hover {
  outline: 0;
  border-bottom: 3px solid var(--theme-color);
  color: var(--bs-body-color)
}

.keyPanel .tab-content {
  display: block;
  padding: 10px 0
}

.keyPanel h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-body-color);
  margin: 0 0 5px;
  padding: 0;
  line-height: normal
}

.keyPanel table {
  margin-bottom: 15px
}

.keySection {
  width: 100%;
  display: block
}

.keySection ul {
  margin: 0 0 10px 15px;
  padding: 0
}

.keySection ul li {
  list-style: disc;
  position: relative;
  font-size: 16px;
  color: var(--bs-body-color);
  margin: 0
}

.specWrapper {
  max-height: 260px;
  overflow: hidden;
  transition: max-height .4s ease;
  position: relative
}

.specWrapper.is-expanded {
  max-height: 2000px
}

.specToggle {
  cursor: pointer;
  color: var(--bs-body-color);
  font-size: 15px;
  user-select: none;
  background-image: linear-gradient(0deg, #fff 55%, rgba(255, 255, 255, .21) 100%);
  height: 72px;
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin-top: -30px;
  z-index: 9;
  position: relative;
  margin-bottom: 15px
}

.keyPanel .tab-content ul {
  margin: 0 0 10px 15px;
  padding: 0;
  display: block;
  gap: 0
}

.keyPanel .tab-content ul li {
  list-style: disc;
  position: relative;
  font-size: 16px;
  color: var(--bs-body-color);
  margin: 0
}

.keyPanel .tab-content ul li span {
  color: #666
}

.certificateImg {
  position: relative;
  overflow: hidden;
  background: #000000a4;
  margin: 0;
  border-radius: 10px;
  border: 1px solid #ccc
}

.certificateImg:after,
.certificateImg:before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  background-color: transparent;
  transition: all .3s ease-in-out;
  opacity: 0
}

.certificateImg:before {
  border-left: 1px solid var(--theme-color);
  border-top: 1px solid var(--theme-color);
  top: 20px;
  left: 20px;
  z-index: 1
}

.certificateImg .image {
  transition: all .5s ease
}

.certificateImg .link-wrap {
  position: absolute;
  top: calc(50% - 0px);
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  z-index: 10
}

.certificateImg .link-wrap i {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 40px;
  background-color: var(--theme-color);
  border: 2px solid var(--theme-color);
  text-align: center;
  color: var(--bs-body-color);
  font-size: 15px;
  opacity: 0;
  transition: all .5s ease-in-out;
  border-radius: 4px
}

.certificateImg:hover:after,
.certificateImg:hover:before {
  height: 40px;
  width: 40px;
  opacity: 1
}

.certificateImg:hover .image {
  transform: scale(1.1);
  filter: blur(4px)
}

.certificateImg:hover .link-wrap i {
  opacity: 1;
  transform: translateY(0)
}

.certificateOption {
  display: block;
  margin-bottom: 15px
}

.gmSupplier {
  width: 100%;
  display: block;
  background: #eee;
  border-radius: 12px;
  padding: 15px
}

.supplierHeader {
  display: flex;
  gap: 15px;
  margin-bottom: 15px
}

.supplierLogo {
  width: 70px;
  height: 70px;
  aspect-ratio: 1/1;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px;
  background: #fff
}

.supplierLogo img {
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%
}

.supplierInfo {
  width: calc(100% - 80px)
}

.supplierInfoTitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--bs-body-color)
}

.supplierReview {
  display: flex;
  align-items: center;
  gap: 5px
}

.supplierReview svg {
  width: 14px;
  height: 14px;
  color: var(--theme-color)
}

.verified {
  display: flex;
  gap: 5px;
  align-items: center
}

.verified img {
  width: 50px;
  height: 12px;
  aspect-ratio: 25/11
}

.supplierOverview {
  display: block;
  width: 100%;
  padding: 15px;
  background: #fff;
  border-radius: 12px
}

.supplierOverviewTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-body-color);
  margin: 0 0 10px;
  padding: 0;
  line-height: normal
}

.overViewBox {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 15px
}

.gmSupplierText {
  font-size: 16px;
  color: var(--bs-body-color)
}

.gmSupplierNumber {
  font-size: 20px;
  font-weight: 600
}

.market-bar {
  display: flex;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px
}

.segment {
  display: flex;
  align-items: center;
  padding-left: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #000
}

.vietnam {
  background: #ff8a3d
}

.australia {
  background: #ffb020
}

.germany {
  background: #ffd24d
}

.angola {
  background: #ffe59a
}

.india {
  background: #fff0c2
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px
}

.legend span {
  display: flex;
  align-items: center
}

.legend .dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
  margin-right: 6px
}

.markets-box {
  display: block;
  margin-bottom: 15px
}

.moreImg {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  aspect-ratio: 1/1
}

.moreImg img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center
}

.vd_Bx {
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
  border: 1px solid #eee;
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center
}

.vd_Bx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
  transition: .4s
}

.vd_Bx img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: .4s linear
}

.vd_Bx .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #e12428;
  border-radius: 12px
}

.vd_Bx .video-btn svg {
  height: 24px;
  width: 24px
}

.vd_Bx:hover img {
  transform: scale(1.05)
}

.vd_Bx:hover::before {
  background: rgba(0, 0, 0, .3)
}

.moreImg2 {
  width: 100%;
  display: block;
  margin-bottom: 15px
}

.moreImg2 img {
  width: 100%;
  height: auto
}

.faq {
  margin: 30px auto;
  font-family: Arial, sans-serif;
  color: #333
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 15px 20px;
  margin-bottom: 15px;
  background: #fafafa
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #222
}

.faq-item ol,
.faq-item ul {
  padding-left: 20px;
  margin: 0
}

.faq-item li {
  margin-bottom: 6px;
  font-size: 16px;
  color: #333
}

.faq-item p {
  margin: 0;
  line-height: 1.6
}

.hidden {
  display: none
}

.newResend-email.disabled,
.newResend.disabled {
  color: #999;
  pointer-events: none
}

.newResend {
  color: var(--theme-color);
  cursor: pointer;
  font-size: 14px
}

.newResend.disabled {
  color: #999;
  pointer-events: none
}

.newStepTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 10px
}

.otp-row {
  display: flex;
  gap: 8px;
  margin-top: 12px
}

.otp-row input {
  border: 1px solid #e6eef8;
  background: 0 0;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  color: var(--bs-body-color);
  font-weight: 400;
  line-height: normal;
  outline: 0
}

.sent-email,
.sent-to {
  font-weight: 600
}

.step-2 {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 15px
}

.otpNotReceive {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 15px
}

.aboutTeam {
  float: left;
  width: 100%;
  margin: 0;
  padding: 50px 0;
  background: var(--bs-dark)
}

.aboutTeam .title_2:after {
  background: var(--theme-color)
}

.aboutTeam p {
  color: #fff
}

.team-page__single {
  position: relative;
  display: block;
  padding: 20px 20px 21px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #e7e7e8;
  margin-bottom: 0;
  z-index: 1
}

.team-page__single:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  opacity: 0;
  transition: background-color .5s ease;
  transition: all .5s ease;
  z-index: -1
}

.team-page__img-box {
  position: relative;
  display: block
}

.team-page__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px
}

.team-page__img:before {
  position: absolute;
  inset: 0;
  content: "";
  background: #243855;
  border-radius: 8px;
  opacity: 0;
  transition: background-color .5s ease;
  transition: all .5s ease;
  z-index: 1
}

.team-page__img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: all 1s ease-in-out
}

.team-page__content {
  position: relative;
  display: block;
  margin-top: 17px
}

.team-page__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin: 0
}

.team-page__title a {
  color: #333
}

.aboutTeam p.team-page__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #333;
  margin: 0
}

.team-page__social {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  background-color: #fff;
  padding: 12px 8px;
  border-top-left-radius: 16px;
  z-index: 2
}

.team-page__social:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  bottom: 12px;
  width: 1px;
  background-color: #e7e7e8;
  transform: translate(-50%)
}

.team-page__social-shape-1 {
  position: absolute;
  top: -16px;
  right: 0
}

.team-page__social-shape-1 img {
  width: auto
}

.team-page__social-shape-2 {
  position: absolute;
  bottom: 71px;
  left: -24px
}

.team-page__social-shape-2 img {
  width: auto
}

.team-page__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 1px solid #e7e7e8;
  border-radius: 50%;
  font-size: 12px;
  color: #333
}

.marketServed {
  float: left;
  width: 100%;
  position: relative;
  background: #f6f8fb;
  margin: 0;
  padding: 40px 0
}

.marketServedImg {
  float: right;
  max-width: 500px;
  margin: 0 0 15px 15px;
  border: 1px solid #dbdcdd;
  height: auto;
  border-radius: 12px;
  overflow: hidden
}

.marketServedTitle {
  color: var(--theme-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px
}

.marketServedList {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0
}

.domesticUL {
  width: calc(100%/2 - 15px)
}

.domesticUL ul {
  padding: 0;
  margin: 0 0 0 15px;
  display: flow-root
}

.domesticUL ul li {
  text-align: justify;
  list-style: square;
  float: left;
  width: 50%
}

.chairmanSection {
  float: left;
  width: 100%;
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
  background: url(../images/bg1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed
}

.chairmanSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
  opacity: .9
}

.chairmanSubTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--pri);
  text-decoration: underline
}

.chairmanName {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: var(--bs-body-color)
}

.chairmanText p {
  letter-spacing: normal;
  margin-bottom: 15px;
  line-height: 25px;
  font-size: 16px;
  font-weight: 400;
  color: #4a4e56
}

.chairmanText p.quotes {
  color: #4a4e56;
  font-size: 18px;
  line-height: 30px;
  padding-left: 70px;
  position: relative;
  margin-bottom: 15px;
  font-weight: 500
}

.chairmanText p.quotes:before {
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" fill="%23000" class="bi bi-quote" viewBox="0 0 16 16"> <path d="M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388q0-.527.062-1.054.093-.558.31-.992t.559-.683q.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 9 7.558V11a1 1 0 0 0 1 1zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612q0-.527.062-1.054.094-.558.31-.992.217-.434.559-.683.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 3 7.558V11a1 1 0 0 0 1 1z"/> </svg>');
  position: absolute;
  top: 0;
  left: 0
}

.chairmanImg {
  position: relative
}

.CSRSustainability {
  float: left;
  width: 100%;
  padding: 40px 0;
  margin: 0;
  background: var(--bs-body-color)
}

.CSRSustainability p {
  color: #fff
}

.CSRSustainability .item-bx {
  padding: 40px 30px;
  background-color: #2d2d35;
  border: 1px solid #3d3d4a;
  border-right: 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  display: flex;
  align-items: center
}

.itemBx {
  height: 100%
}

.CSRSustainability .item-bx:last-of-type {
  border-right: 1px solid #3d3d4a
}

.CSRSustainability .item-bx:hover {
  background-color: #3a3a42
}

.CSRSustainability .item-bx .titleH4 {
  color: var(--theme-color);
  font-weight: 600;
  padding: 0;
  margin: 0 0 15px;
  text-align: left;
  font-size: 18px;
  line-height: normal
}

.CSRSustainability .item-bx p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0
}

.CSRSustainability .item-bx .numb {
  font-size: 60px;
  margin-bottom: 10px;
  color: transparent;
  -webkit-text-stroke: 1px #c5a47e
}

.CSRSustainability .item-bx img {
  margin-bottom: 20px;
  max-width: 80px
}

.capabilitySection {
  float: left;
  width: 100%;
  background: #f0f4f5;
  position: relative;
  padding: 50px 0;
  overflow: hidden
}

.it-brand-3-shape-1 {
  position: absolute;
  bottom: 0;
  right: 2%;
  z-index: 0;
  animation: rotate 40s linear infinite
}

@keyframes rotate {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.it-section-subtitle {
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: var(--theme-dark-color);
  font-size: 30px;
  font-weight: 600
}

.it-section-title {
  font-size: 18px;
  line-height: 1.4;
  color: #1f2432
}

.it-brand-3-wrap {
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid rgba(61, 151, 254, .5);
  position: relative
}

.tradeInformation {
  float: left;
  width: 100%;
  margin: 0;
  padding: 50px 0;
  position: relative;
  background-color: #fff;
  z-index: 1
}

.tradeInformation::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url(../images/background3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%
}

.tradeInformationBox {
  padding-left: 70px
}

.sub-title {
  padding: 5px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 12px
}

.sub-title:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0e0c0a;
  margin-right: 10px
}

.section-title h2 {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
  color: var(--theme-color);
  margin-bottom: 12px
}

.reviewSection {
  width: 100%;
  margin: 0;
  padding: 40px 0
}

.reviewsTitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--bs-body-color)
}

.reviewSection .nav-tabs {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px
}

.reviewSection .nav-tabs li {
  list-style: none
}

.reviewSection .nav-tabs li button {
  border: 0;
  border-radius: 0;
  padding: 10px 0;
  color: var(--bs-body-color);
  font-size: 16px
}

.reviewSection .nav-tabs li button.active,
.reviewSection .nav-tabs li button:focus,
.reviewSection .nav-tabs li button:focus-visible,
.reviewSection .nav-tabs li button:hover {
  outline: 0;
  border-bottom: 3px solid var(--theme-color);
  color: var(--bs-body-color)
}

.ratingNo {
  font-size: 45px;
  font-weight: 700
}

.reviewNo {
  display: flex;
  align-items: center;
  gap: 10px
}

.reviewStar {
  display: flex;
  align-items: center;
  gap: 5px
}

.userRatings svg {
  color: #ffba0a
}

.basedReviews {
  display: flex;
  align-items: center;
  gap: 5px
}

.basedReviews span {
  font-weight: 600;
  color: #22891f;
  text-decoration: underline
}

.basedReviews img {
  width: 18px;
  height: auto
}

.reviewItem {
  width: 100%;
  display: block;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px
}

.reviewItemInn {
  display: flex;
  gap: 15px
}

.reviewUser {
  width: 100%;
  display: block;
  max-width: 300px
}

.userNameInfo {
  display: flex;
  gap: 15px;
  margin-bottom: 5px
}

.userIcon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: var(--bs-body-color);
  color: var(--theme-color);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center
}

.userName strong {
  width: 100%;
  display: block
}

.userName span {
  color: #22891f
}

.userReviewRating {
  width: calc(100% - 250px)
}

.withDate {
  display: flex;
  align-items: center;
  margin-bottom: 10px
}

.withDate .date {
  margin-left: auto;
  color: #666
}

.reviewProducts {
  background: #f0f4f5;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  gap: 15px;
  align-items: center
}

.reviewProductPrice {
  font-size: 30px;
  display: flex;
  align-items: self-end
}

.reviewProductPrice strong {
  font-size: 18px;
  color: #b5931e
}

.reviewProductPrice del {
  color: #666;
  margin-left: 10px;
  font-size: 14px
}

.seeDetails {
  max-width: max-content;
  display: block;
  width: 100%;
  margin-left: auto;
  font-size: 14px;
  color: var(--bs-body-color);
  font-weight: 600
}

.reviewProductTitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--bs-body-color);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.reviewProductsInfo {
  max-width: 70%;
  line-height: normal
}

.reviewProducts .image {
  width: 50px;
  border: 1px solid #ccc;
  border-radius: 4px
}

.seeDetails:focus,
.seeDetails:hover {
  color: var(--theme-color)
}

.reviewText p {
  font-size: 16px;
  font-style: italic;
  margin: 0 0 10px
}

.shippingLogistics {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative
}

.about-wrapper-2 {
  position: relative
}

.about-area-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  justify-items: center;
  gap: 60px;
  position: relative
}

.about-area-2 {
  -ms-grid-columns: minmax(0, 768px) 90px minmax(0, 760px);
  grid-template-columns: minmax(0, 768px) minmax(0, 760px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 90px
}

.about-area-2 .about-style-2-img-block {
  position: relative;
  z-index: 1;
  max-width: 100%
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

.about-area-2 .about-style-2-img-block .about-video {
  display: inline-block;
  top: 55%;
  right: -116px;
  left: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  width: 232px;
  height: 232px;
  position: absolute
}

.about-area-2 .about-style-2-img-block .about-elements-1 {
  display: none;
  top: calc(100% - 30px);
  left: 0;
  display: inline-block
}

.about-area-2 .about-style-2-img-block .about-elements-2 {
  display: none;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block
}

.about-area-2 .about-content-block {
  padding-inline: 0 45px
}

.section-space-top {
  padding-top: 30px
}

.about-area-2 .section-content-block {
  max-width: 650px
}

.section-tag {
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 6px;
  background-color: rgba(248, 178, 25, .17);
  padding: 7px 20px;
  color: var(--bs-body-color);
  font-weight: 500;
  font-size: .875rem;
  line-height: 1
}

.section-title.is-text-dark {
  color: var(--theme-dark-color)
}

.section-text {
  font-size: 16px
}

.feature-style-1-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-left: 60px
}

.feature-style-1-list li {
  list-style: none
}

.feature-style-1-list li p {
  margin: 0
}

.feature-style-1-icon {
  width: auto;
  height: 60px
}

.feature-style-1-title {
  margin-block: 10px 5px;
  color: var(--theme-color);
  font-weight: 700;
  font-size: 1.375rem
}

.about-wrapper-2 .about-elements-3 {
  top: 140px;
  right: 100px
}

.about-wrapper-2 .about-elements-4 {
  right: 30px;
  bottom: 47px
}

.factoryInfrastructure {
  float: left;
  width: 100%;
  margin: 0;
  padding: 50px 0;
  background: #f0f4f5
}

.sticky-style {
  position: sticky !important;
  top: 130px
}

.section-tag {
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 6px;
  background-color: rgba(255, 125, 68, .17);
  padding: 7px 20px;
  color: var(--bs-body-color);
  font-weight: 500;
  font-size: .875rem;
  line-height: 1
}

.section-title.is-text-dark {
  color: var(--theme-color);
  font-size: 32px;
  letter-spacing: -2px
}

.CompanyInfra {
  padding: 25px;
  border: 1px solid rgba(30, 32, 35, .12);
  z-index: 1;
  position: relative;
  background: #fff;
  margin-top: 0;
  border-radius: 12px
}

.CompanyInfra:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #ffe5ca 0, #f6921e 50%, var(--theme-dark-color) 100%);
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  z-index: -1;
  border-radius: 12px
}

.CompanyInfra:hover {
  border: 1px solid var(--theme-dark-color)
}

.CompanyInfra:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: top center;
  transform-origin: top center
}

.CompanyInfra:hover .number-itesm .number {
  -webkit-text-stroke-color: rgb(255, 255, 255)
}

.CompanyInfra:hover .content h5 {
  color: var(--bs-body-bg)
}

.number-itesm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.number-itesm .icon {
  width: 60px;
  color: #ff7d44;
  display: inline-block
}

.number-itesm .number {
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(70, 47, 4, 0.15);
  font-size: 72px;
  font-style: normal;
  font-weight: 800;
  line-height: 1
}

.CompanyInfra .content h5 {
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--theme-color)
}

.CompanyInfra p {
  margin: 0
}

.photoGallery {
  background-image: url(../images/photo-gallery.webp);
  position: relative;
  background-position: center
}

.photoGallery:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  top: 0;
  left: 0;
  z-index: 0;
  content: ""
}

.photoGallery .container {
  position: relative;
  z-index: 1
}

.gallery_page {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #fff
}

.gallery_page .gallery_item {
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 1px .98px .02px rgba(0, 0, 0, .1);
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden
}

.gallery_page .gallery_item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px
}

.gallery_item_info {
  text-align: center;
  padding: 15px
}

.gallery_item_info .title_h3 {
  font-size: 18px;
  color: #333;
  margin: 0;
  padding: 0;
  font-weight: 400
}

.gallery_item_info p {
  font-size: 13px;
  margin: 0;
  margin-top: 4px;
  color: #333;
  max-width: 100%
}

.hover_effect {
  display: block;
  position: relative;
  background: 0 0;
  overflow: hidden;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  aspect-ratio: 4/3
}

.hover_effect:after {
  color: #fff;
  position: absolute;
  font-size: 1.6em;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -20px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  -webkit-transform: scale(.1, .1);
  transform: scale(.1, .1);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0
}

.hover_effect img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.hover_effect:hover:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -moz-opacity: .6;
  -khtml-opacity: .6;
  opacity: .6
}

.hover_effect:hover img {
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: .4
}

.hover_effect:hover {
  background: var(--theme-color)
}

.hover_effect:after {
  opacity: 1;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='%23000' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zM13 6.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0z'/><path d='M10.344 11.742c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1 6.538 6.538 0 0 1-1.398 1.4z'/><path fill-rule='evenodd' d='M6.5 3a.5.5 0 0 1 .5.5V6h2.5a.5.5 0 0 1 0 1H7v2.5a.5.5 0 0 1-1 0V7H3.5a.5.5 0 0 1 0-1H6V3.5a.5.5 0 0 1 .5-.5z'/></svg>")
}

.videoFeedback {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  margin-bottom: 20px
}

.videoFeedback .image {
  position: relative;
  height: 282px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  object-fit: cover;
  margin-bottom: 15px
}

.videoFeedback .image img {
  height: 100%;
  object-fit: cover
}

.videoFeedback .image:before {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: .4;
  -webkit-transition: opacity 180ms ease;
  transition: opacity 180ms ease
}

.videoFeedback .image:after {
  border-radius: inherit;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, .33)
}

.videoFeedback:hover .image:before {
  opacity: 0
}

.videoFeedback .image:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: linear-gradient(10deg, rgba(17, 17, 17, .70196) 0, rgba(17, 17, 17, .01) 99%, #01102f 100%)
}

.feedbackStar {
  position: absolute;
  font-size: .75rem;
  line-height: 1rem;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid #f90;
  padding-left: .625rem;
  padding-right: .625rem;
  padding-bottom: .25rem;
  padding-top: .25rem;
  color: #f90;
  z-index: 9;
  top: 10px;
  left: 10px;
  border-radius: 20px
}

.videoFeedback .image span {
  z-index: 999
}

.videoTitle {
  display: flex;
  align-items: center;
  justify-content: center
}

.videoTitle .vidoIcon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-right: 10px;
  font-size: 24px;
  color: #9c9f07;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center
}

.videoName {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  color: #333;
  line-height: normal
}

.videoFeedback:hover .videoName {
  color: var(--theme-color)
}

.cmTitle {
  color: #333;
  margin: 0 0 10px;
  padding: 0;
  font-size: 24px;
  text-align: left;
  font-weight: 600;
  line-height: normal
}

.sitemapImg {
  background-image: url(../images/sitemap-banner.jpg);
  position: relative;
  background-position: center
}

.sitemapImg:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  top: 0;
  left: 0;
  z-index: 0;
  content: ""
}

.sitemapImg .container {
  position: relative;
  z-index: 1
}

.sitemap_page {
  float: left;
  width: 100%;
  margin: 0;
  padding: 50px 0;
  background: #fff
}

.sitemap_page .title_1::before {
  background: #333
}

.sitemap {
  border-left: 1px solid #666;
  padding: 0
}

.sitemap li {
  list-style: none !important;
  background: transparent url("../images/sitemap_hr.png") no-repeat scroll 0 9px;
  padding: 0 0 0 15px;
  margin-bottom: 5px
}

.sitemap li ul {
  border-left: 1px solid #666;
  padding: 0
}

.sitemap li a {
  color: var(--bs-body-color);
  font-size: 16px;
  padding-bottom: 5px;
  display: block
}

.sitemap li a:hover {
  color: var(--theme-color)
}

.pdf_download,
.pdf_download:focus {
  height: 45px;
  line-height: 45px;
  padding: 0;
  padding-left: 20px;
  display: inline-block;
  outline: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--bs-white);
  background: linear-gradient(to bottom, #ff4a4a, #c40000);
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}

.pdf_download:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #ea4343, #a40606);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 10% 0;
  transform-origin: 0% 10% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out
}

.pdf_download:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66)
}

.pdf_download:hover {
  color: #fff;
  background: linear-gradient(to bottom, #ea4343, #a40606)
}

.pdf_download .btn_caret {
  background: linear-gradient(to bottom, #ea4343, #a40606);
  color: var(--bs-white);
  width: 40px;
  padding: 0
}

.pdf_download:hover .btn_caret {
  background: linear-gradient(to bottom, #e13333, #8c0707)
}

.pdf_download .btn_caret svg {
  width: 35px;
  height: 35px
}

.youtubeLinkBtn {
  background-color: #f70000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 65px;
  border-radius: 0
}

.youtubeLinkBtn svg {
  width: 30px;
  height: 30px
}

.youtubeLinkBtn:focus,
.youtubeLinkBtn:hover {
  background-color: #ce0707;
  color: #fff
}

.categorySlider.center-slides .swiper-wrapper {
  justify-content: center;
}