/* ==================== Import Fonts ==================== */

@font-face {
  font-family: "Benelah";
  src: url("../fonts/Benelah.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Blauer-Nue-regular";
  src: url("../fonts/Blauer-Nue-Regular-iF6626350c83fdf.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Blauer-Nue-medium";
  src: url("../fonts/Blauer-Nue-Medium-iF6626350c78103.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Blauer-Nue-semibold";
  src: url("../fonts/Blauer-Nue-Semibold-iF6626350c8d55c.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Blauer-Nue-extraBold";
  src: url("../fonts/Blauer-Nue-Extrabold-iF6626350c4c856.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/* ==================== Common Reset ==================== */

* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  scroll-behavior: smooth !important;
}

body {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Blauer-Nue-medium";
  color: var(--bg-black);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.33;
  position: relative;
  top: 0 !important;
  background-color: #fff;
}

.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

*:focus {
  outline: none;
}

button[type="button"]:focus {
  outline: none;
}

input:focus,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
  resize: none;
}
/* ==================== Common style ==================== */
.wrapper {
  display: block;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}

.container-fluid {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0;
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
}
.body-fixed {
  overflow: hidden;
}
.common-sec {
  padding-block: 100px 100px;
}
.icon {
  display: inline-block;
  height: 1em;
  width: 1em;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: all 0.4s ease;
}

p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.55;
}

p:last-child {
  margin-bottom: 0;
}
a {
  display: inline-block;
}
img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.shadow-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99;
}

body.nav-open .shadow-overlay {
  opacity: 1;
  visibility: visible;
}

/* ==================== Common Classes ==================== */

:root {
  --primary-color: #134678;
  --secondary-color: #af9777;
  --bg-lgray: #f9f9f9;
  --bg-gray: #ececec;
  --bg-black: #1a1a1a;
  --hl-gold: #f5d399;
  --hl-orange: #e06e4c;
  --black: #222222;
  --white: #ffffff;
  --gray: #555555;
  --transition: all 0.3s ease-in-out;
}
.sub-title {
  font-size: 18px;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sub-title:has(img) {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-title {
  font-size: 52px;
  font-family: "Benelah";
  color: var(--bg-black);
  margin-bottom: 18px;
  line-height: 1.23;
  letter-spacing: -0.01em;
}
.sec-head {
  margin-bottom: 30px;
}

/* slick-dot */

/* Slick dots rectangle style */
.slick-dots {
  text-align: center;
  margin-top: 15px;
}

.slick-dots li {
  display: inline-block;
  margin: 0 7px;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 0px;
  background: var(--primary-color);
  opacity: 0.2;
  padding: 0;
  font-size: 0;
}

.slick-dots li.slick-active button {
  opacity: 1;
}
/* slick-arrow */
.slick-prev,
.slick-next {
  font-size: 0;
  position: absolute;
  width: 40px;
  height: 50px;
  border: 1px solid var(--secondary-color);
  background: none;
  bottom: -100px;
  transition: var(--transition);
}
.slick-prev:hover,
.slick-next:hover {
  opacity: 0.5;
}
.slick-next {
  left: 50px;
}
.slick-prev::before,
.slick-next::before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 14px;
  background: url("../img/svg/chevron-right.svg") no-repeat center center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slick-prev::before {
  transform: translate(-50%, -50%) scale(-1); /* flip for left arrow */
}
/* slick slider height 100% */
.slider-wrapper,
.slick-slider,
.slick-list,
.slick-track,
.slick-slide > div {
  height: 100%;
}
/* ==================== btn style ==================== */

.btn {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  padding: 18px 28px;
  border: none;
  border-radius: 0;
  text-transform: capitalize;
  transition: var(--transition);
}
.btn:has(.icon) {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.btn .icon {
  font-size: 8px;
}
.btn:hover .icon {
  transform: translate(3px, -3px) scale(1.1);
}
.btn-gold {
  color: var(--white);
  background-color: var(--secondary-color);
}
.btn-gold:hover {
  color: var(--white);
  background-color: var(--primary-color);
}
.btn-blue {
  color: var(--white);
  background-color: var(--primary-color);
}
.btn-blue:hover {
  color: var(--white);
  background-color: var(--secondary-color);
}
.btn-border-wh {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.btn-border-wh:hover {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--secondary-color);
}
.btn-border {
  background-color: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}
.btn-border:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--white);
}
.right-arrow {
  mask-image: url(../img/svg/rt_icn.svg);
}
.icon-mail {
  mask-image: url(../img/svg/Mail.svg);
}
.icon-phone {
  mask-image: url(../img/svg/Calling.svg);
}
/* ==================== top header style ==================== */
.top-header {
  background-color: var(--gray);
  padding: 7.5px 0;
}
.top-header .top-info .icon {
  font-size: 18px;
}
.top-info p {
  font-size: 15px;
  color: var(--secondary-color);
  line-height: 1;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
}

.top-info a {
  color: var(--white);
  font-size: 15px;
  line-height: 1;
}

.top-header .top-info:not(:last-child) {
  margin-right: 16px;
}
.top-header .btn {
  padding: 10px 14px;
  font-size: 14px;
}

/* ==================== bottom header style ==================== */
.bottom-header {
  background-color: var(--white);
  padding: 18px 0;
}
.sticky-header .bottom-header {
  position: fixed;
  padding: 12px 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  animation: slideDown 0.8s ease forwards;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.sticky-header .header-logo img {
  height: 48px;
}

.main-nav ul li {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
}
.main-nav ul li a {
  position: relative;
  z-index: 2;
  font-size: 16px;
  color: var(--gray);
}
.main-nav ul li a:hover {
  color: var(--secondary-color);
}
.menu-bar {
  aspect-ratio: 1/1;
  width: 28px;
  display: flex;
  align-items: center;
}
.main-nav {
  margin-right: 20px;
}

/* ==================== hero section style ==================== */
.hero-sec {
  position: relative;
  background-image: url(../img/home_bg_img.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-sec .container-fluid {
  max-width: 740px;
  border: 16px solid rgb(255, 255, 255, 0.2);
  padding: 8px;
  font-weight: 400;
}

.hero-con {
  text-align: center;
  background-color: #fff;
  padding: 40px;
}
.hero-con > span {
  font-family: "Blauer-Nue-regular";
  display: inline-block;
  font-size: 15px;
  color: var(--gray);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-title {
  font-family: "Benelah";
  font-size: 46px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-con p {
  color: var(--gray);
  margin-bottom: 30px;
}
.hero-btns {
  margin-bottom: 22px;
}
.hero-btns .btn:first-child {
  margin-right: 20px;
}

.hero-con ul li {
  display: inline-block;
  border: 1px solid rgb(85, 85, 85, 8%);
  background-color: rgb(85, 85, 85, 5%);
  color: var(--bg-black);
  padding: 5px 14px;
  font-size: 13px;
  border-radius: 100px;
  margin-right: 6px;
}

.hero-con ul li:last-child {
  margin-right: 0;
}

.hero-sec .scroll-down {
  position: absolute;
  margin-top: 78px;
  bottom: 70px;
}
.hero-sec .scroll-down img {
  width: 100%;
  height: 33.33%;
  animation: scrollBlink 3s infinite;
}

.hero-sec .scroll-down img:nth-child(1) {
  opacity: 0.9;
  animation-delay: 0s;
}
.hero-sec .scroll-down img:nth-child(2) {
  opacity: 0.3;
  animation-delay: 0.4s;
}
.hero-sec .scroll-down img:nth-child(3) {
  opacity: 0.15;
  animation-delay: 0.8s;
}

@keyframes scrollBlink {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.social-links-hero {
  position: absolute;
  right: 0;
  bottom: 74px;
}

.social-links-hero ul li {
  background: var(--secondary-color);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(94px);
  transition: all 0.3s ease;
}

.social-links-hero ul li a {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding-left: 16px;
  padding-right: 16px;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.social-links-hero ul li .icon {
  font-size: 18px;
  color: var(--white);
  display: inline-block;
  padding-top: 22px;
  padding-bottom: 22px;
}

.social-links-hero ul li .name {
  color: var(--white);
}

/* ====================about section ======================== */
.bg-grafic1 {
  left: 0;
}
.bg-grafic2 {
  right: -100px;
  bottom: 8%;
  animation: rotate360 30s linear infinite;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-sec .sec-head {
  position: relative;
  margin-bottom: 10px;
}
.ab-btm-row {
  position: relative;
  z-index: 2;
}
.ab-btm-row .left-img,
.ab-btm-row .btm-con {
  margin-top: 74px;
}
.ab-btm-row .left-img {
  max-width: 460px;
}
.ab-btm-row .left-img img {
  max-width: 109%;
  margin-left: -40px;
}
.ab-btm-row .btm-con {
  max-width: 460px;
  margin-left: auto;
  margin-right: 10px;
}
.ab-btm-row .btm-con p {
  font-size: 15px;
  line-height: 1.6;
}

.ab-btm-row .btm-con > p {
  margin-bottom: 35px;
}
.btm-con .about-box {
  background-color: #f6f6f6;
  padding: 20px;
  margin-bottom: 10px;
  gap: 10px;
}

.cms-con h5 {
  font-family: "Blauer-Nue-semiBold";
  font-size: 18px;
  color: var(--bg-black);
  margin-bottom: 9px;
  font-weight: 600;
}
.cms-con p {
  font-family: "Blauer-Nue-regular";
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}
.btm-con .btn {
  margin-top: 27px;
}

/* ====================why choose us section ======================== */

.why-choose-sec {
  padding-block: 80px 80px !important;
  background-color: #f6f6f6;
}
.why-choose-sec .container {
  padding: 0 !important;
}
.why-choose-sec .sec-head .sec-title {
  font-size: 28px;
  margin-bottom: 8px;
}
.why-choose-sec .sec-head {
  margin-bottom: 20px;
}
.sec-head p {
  font-weight: 400;
  font-family: "Blauer-Nue-regular";
}
.wc-wrap-slide {
  padding: 0 12px;
}
.wc-wrap-slide .box {
  text-align: center;
  background-color: var(--white);
  padding: 40px 30px;
}
.why-choose-slider {
  margin: 0 -12px;
}
.wc-wrap-slide .img {
  max-width: 80px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
}
.wc-wrap-slide .cms-con h5 {
  margin-bottom: 5px;
}

/* ====================showcase section ======================== */
.showcase-sec {
  background: url("../img/cardboard-box.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 200px !important;
}
.showcase-sec .sec-head {
  max-width: 760px;
  margin-bottom: 0;
}
.showcase-sec .sec-head .sec-title,
.showcase-sec .sec-head p {
  color: var(--white);
}
.top-show-row {
  margin-bottom: 40px;
  gap: 20px;
}
.show-slide-wrap {
  padding: 0 3.5px;
  height: 100%;
}
.showcase-sec .slick-list.draggable {
  margin: 0 -4px;
}

.show-slide-wrap .box {
  display: grid;
  grid-template-columns: 170px 1fr;
  background-color: #fff;
  padding: 10px 9px 10px 10px;
  column-gap: 15px;
  height: 100%;
}

.show-slide-wrap .box .img {
  display: inline-flex;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #f4f3f2;
}
.show-slide-wrap .box .img img {
  width: 130px;
  margin: 0 auto;
}

.show-con .cms-con span {
  font-family: "Blauer-Nue-regular";
  font-size: 13px;
  color: var(--bg-black);
  margin-bottom: 8px;
  opacity: 1;
  font-weight: 400;
}
.show-con .cms-con > span {
  font-family: "Blauer-Nue-medium";
  color: var(--secondary-color);
  text-transform: uppercase;
}
.show-con .cms-con span:nth-last-child(1) {
  margin-bottom: 0;
}
.show-con .cms-con p {
  /* font-family: "Blauer-Nue-regular";   */
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.show-con .cms-con small {
  display: block;
  font-family: "Blauer-Nue-regular";
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: rgb(85, 85, 85, 0.7);
}
.show-con a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-color);
  margin-top: 15px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.show-con a .icon {
  width: 8px;
  aspect-ratio: 1/1;
}
.show-con a:hover {
  color: var(--bg-black);
}

.showcase-sec .slick-list.draggable {
  overflow: visible;
}

/* ====================prod-detail-sec section ======================== */
/* .prod-detail-sec .image img{
  max-width: 180px;
  min-width: 180px;
  min-height: 180px;
  margin: 0 auto;
  transform: translateY(-100%);
} */
.wrapper .prod-detail-sec {
  padding-block-start: 140px;
  position: relative;
}
.prod-detail-sec .image {
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translate(-50%);
}
.prod-detail-sec .image span {
  display: inline-block;
  max-width: 160px;
  transform: translate(10px, -50px);
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  background-color: var(--white);
  padding: 2px 0;
}

.prod-detail-wrap .img {
  display: inline-block;
  min-width: 80px;
  aspect-ratio: 1/1;
  border: 1px solid var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-detail-wrap .img img {
  width: 40px;
  aspect-ratio: 1/1;
}
.prod-detail-wrap {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
}
.prod-detail-wrap .cms-con {
  max-width: 254px;
  padding: 9px 0;
}
/* .prod-detail-wrap .cms-con h5{
  margin-bottom: 5px;
} */
.prod-detail-wrap .cms-con p {
  font-family: "Blauer-Nue-regular";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
}
.prod-detail-sec .bottom-row {
  margin-top: 30px;
  background-color: #f4f3f2;
  padding: 40px;
}

.prod-detail-sec .bottom-row .left-side .img {
  margin-bottom: 16px;
}
.cms-con h4 {
  font-family: "Blauer-Nue-semibold";
  font-size: 22px;
  font-weight: 600;
  line-height: 1.363;
  color: var(--bg-black);
}

.prod-detail-sec .bottom-row .right-side {
  padding: 12px 0;
  text-align: right;
  max-width: 450px;
  margin-left: auto;
}
.prod-detail-sec .bottom-row .right-side a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary-color);
  margin-top: 20px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cms-con a {
  color: var(--secondary-color);
  margin-top: 25px;
  text-underline-offset: 2px;
}
.cms-con a:has(.icon) {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: underline;
}
.cms-con a .icon {
  width: 8px;
  aspect-ratio: 1/1;
}
.cms-con a:has(.icon):hover {
  color: var(--primary-color);
}
.prod-detail-sec .bottom-row .right-side a .icon {
  width: 8px;
  aspect-ratio: 1/1;
}
/* ===============certification section =============== */

.certification-sec {
  padding-block: 50px;
  background-color: #f1f1f1;
}
.certification-sec .sec-title {
  font-size: 28px;
  line-height: 1;
}
.certification-sec .row {
  margin-top: 30px;
}
.certified-by {
  padding: 30px;
  background-color: #f4f3f2;
}
.certified-by .img {
  background-color: #fff;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.certified-by .img img {
  margin: 0 auto;
}
.certified-by .sm-title {
  margin-bottom: 0;
  text-align: center;
}
.sm-title {
  font-family: "Blauer-Nue-semibold";
  font-weight: 600;
  font-size: 18px;
}

/* ===============statista-sec section =============== */
.statista-sec {
  background-color: #f1f1f1;
}
.statista-sec .row {
  padding-top: 40px;
  max-width: 760px;
  margin: 0 auto;
  --bs-gutter-x: 10px;
}
.statista-sec .counter {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Blauer-Nue-extraBold";
  font-size: 80px;
  line-height: 1;
  color: var(--secondary-color);
  opacity: 0.2;
  margin: 0;
}
.statista-sec p {
  font-size: 16px;
  margin-top: -35px;
  color: var(--bg-black);
}

.customer-sec {
  padding-block: 0 0;
}
.customer-sec .container-fluid {
  padding: 46px 0;
  background-color: var(--primary-color);
  background-image: url(../img/svg/Union.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* min-height: 500px; */
}
.customer-sec .square {
  width: 350px;
  height: 350px;
  border: 7px solid var(--secondary-color);
  opacity: 0.1;
  top: 71px;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
}
.customer-sec .container .img-left {
  left: 0;
}
.customer-sec .container .img-right {
  right: 0;
}
.customer-sec .customer-review {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 50px auto;
  padding-bottom: 100px;
}
.customer-sec .quote-img {
  height: 100%;
  margin-bottom: 26px;
}
.customer-sec .quote-img img {
  width: 58px;
  margin: 0 auto;
}
.customer-sec .review-text p {
  font-family: "Blauer-Nue-regular";
  font-weight: 400;
  font-size: 32px;
  line-height: 1.667;
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
}
.customer-sec .customer-info {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 15px;
  color: var(--white);
  margin: 0 auto;
}
.customer-sec .customer-info .img {
  width: 44px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.cus-name {
  font-family: "Blauer-Nue-semibold";
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}
.customer-sec .customer-info p {
  color: var(--white);
  font-family: "Blauer-Nue-regular";
  font-weight: 400;
  font-size: 14px;
  opacity: 0.7;
}
.customer-sec .customer-info img {
  aspect-ratio: 1/1;
}
.customer-sec .container {
  margin-top: -100px;
  background-color: #f4f3f2;
  padding: 25px 50px !important;
}
.customer-sec .container .bnpl {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.customer-sec .container .bnpl .left {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 50px;
}
.customer-sec .container .bnpl .left .img-logo {
  width: 100%;
}
.customer-sec .container .bnpl .left .img-logo img {
  width: 100%;
  aspect-ratio: 1/1;
}
.customer-sec .container .bnpl .right {
  display: flex;
  align-items: center;
  gap: 59px;
}

.customer-sec .container .bnpl .right > span {
  font-size: 15px;
  font-family: "Blauer-Nue-regular";
  color: var(--gray);
  margin-bottom: 5px;
  font-weight: 400;
}
.md-title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Blauer-Nue-extraBold";
}
.md-title span {
  font-family: "Blauer-Nue-regular";
  font-weight: 400;
}

/* =========================industry section========================= */
.industry-sec .grid-box {
  max-width: 1096px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 50px auto 0;
}
.industry-sec .sec-head {
  max-width: 760px;
  margin: 0 auto;
}
.industry-sec .sec-head .sub-title {
  justify-content: center;
}
.industry-sec .sec-head .sec-title {
  margin-bottom: 3px;
}
.industry-sec .industry-box {
  padding: 0 30px 30px;
  border-right: 1px solid var(--bg-gray);
  border-bottom: 1px solid var(--bg-gray);
  text-align: center;
}
.industry-sec .industry-box:nth-last-child(1),
.industry-sec .industry-box:nth-last-child(2),
.industry-sec .industry-box:nth-last-child(3) {
  border-bottom: none;
  padding: 30px 30px 0;
}
.industry-sec .industry-box:nth-last-child(4),
.industry-sec .industry-box:nth-last-child(1) {
  border-right: none;
}
.industry-sec .industry-box .img-wrapper {
  width: 90px;
  margin: 0 auto 22px;
}
.industry-sec .industry-box .cms-con h5 {
  margin-bottom: 10px;
}
.industry-sec .industry-box .cms-con p {
  font-family: "Blauer-Nue-regular";
  font-weight: 400;
}

/* =========================blog======================= */
.wrapper .blog-sec {
  background-color: #f9f9f9;
  padding-block-end: 200px;
}
.blog-sec .blog-box .img {
  position: relative;
  margin-bottom: 20px;
}
.blog-sec .date {
  position: absolute;
  bottom: -10%;
  right: 20px;
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--bg-gray);
  padding: 10px 16px;
}
.blog-sec .date span {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  margin-top: 5px;
}
.cms-con span {
  font-family: "Blauer-Nue-regular";
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gray);
  opacity: 0.6;
}
.blog-sec .cms-con {
  margin-bottom: 30px;
}
.blog-sec .cms-con h4 {
  margin-bottom: 20px;
}

.blog-sec .cms-con h4 a {
  font-size: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.blog-sec .cms-con h4 a:hover {
  color: var(--secondary-color);
}
/* ==================================footer============================ */

.footer {
  position: relative;
}
.footer .newsletter {
  position: absolute;
  padding: 50px 60px;
  background-color: var(--secondary-color);
  color: #fff;
  left: 50%;
  transform: translate(-50%);
  top: -100px;
}
.footer .newsletter .cms-con h4,
.footer .newsletter .cms-con p {
  color: var(--white);
}
.footer .newsletter .right {
  display: flex;
  align-items: end;
  gap: 20px;
}
.footer .newsletter .right .email::placeholder {
  color: rgb(255, 255, 255, 40%);
}
.footer .newsletter .right form {
  flex: 1;
}
.footer .newsletter .right .email {
  width: 100%;
  color: var(--white);
  padding: 20px 20px 20px 0;
  background-color: transparent;
  border-bottom: 1px solid rgb(255, 255, 255, 0.15);
}
.email-form {
  position: relative;
  display: inline-block;
}

.email-form i {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--white);
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.email-form input:focus ~ i {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.footer .bg-footer {
  padding-top: 170px;
  background-color: var(--bg-black);
  background-image: url(../img/svg/footer-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer .bg-footer .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer .grid-box .footer-links-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.footer .about-brand .cms-con {
  margin: 30px 0;
}
.footer .cms-con p {
  color: #bdc0c3;
}
.social-icons ul li {
  display: inline-block;
  margin-right: 24px;
}
.social-icons ul li:last-child {
  margin-right: 0;
}
.social-icons ul li a {
  font-size: 20px;
  color: var(--secondary-color);
}
.facebook-icon {
  mask-image: url(../img/svg/facebook.svg);
}
.twitter-icon {
  mask-image: url(../img/svg/twitter.svg);
}
.instagram-icon {
  mask-image: url(../img/svg/instagram.svg);
}
.pintrest-icon {
  mask-image: url(../img/svg/pinterest.svg);
}
.footer-title {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 28px;
}
.footer-links ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}
.footer-links ul li:last-child {
  margin-bottom: 0;
}
.footer-links ul li a {
  font-family: "Blauer-Nue-regular";
  font-weight: 400;
  font-size: 15px;
  color: #bdc0c3;
}
.footer-links ul li a:hover {
  color: var(--secondary-color);
}
.footer-links ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  mask-image: url(../img/svg/rt_icn.svg);
  background-color: var(--secondary-color);
  mask-size: contain;
  mask-repeat: no-repeat;
  height: 8px;
  width: 8px;
}
.footer .contact-info ul {
  margin-top: 10px;
}
.footer .contact-info ul li {
  display: grid;
  grid-template-columns: 42px 1fr;
  margin-bottom: 18px;
}
.footer .contact-info ul li p {
  font-family: "Blauer-Nue-regular";
  font-weight: 400;
  color: #bdc0c3;
  font-size: 14px;
}
.footer .contact-info ul li p span,
.footer .contact-info ul li p a {
  display: block;
  font-size: 15px !important;
  color: #bdc0c3;
  padding-top: 1px;
}
.footer .contact-info ul li p a:hover {
  color: var(--secondary-color);
}
footer a:hover {
  color: var(--secondary-color);
}
.footer .contact-info ul li img {
  margin: 5px 2px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding: 38px 0;
  border-top: 1px solid rgb(189, 192, 195, 0.1);
}
.footer-bottom p,
.footer-bottom p a {
  font-family: "Blauer-Nue-regular";
  font-weight: 400;
  font-size: 14px;
  color: #bdc0c3;
}
.footer-bottom p span {
  opacity: 0.2;
  margin: 0 6px;
}
.footer-bottom a:hover {
  color: var(--secondary-color);
}
.footer-bottom .tc {
  display: flex;
  align-items: center;
}
.footer-bottom .tc i {
  display: inline-block;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  margin: 0 14px;
  background-color: var(--white);
  opacity: 0.2;
}
.icon-close {
  mask-image: url(../img/svg/close-icon.svg);
}
.nav-inner-logo .icon {
  top: 10px;
  right: 10px;
  font-size: 20px;
  mask-size: cover;
  background-color: var(--bg-black);
}

/* inner page  */
/* about page */
.inner-banner-sec {
  position: relative;
  min-height: 400px;
  padding: 220px 0 60px;
  text-align: center;
  color: var(--white);
  margin-bottom: 60px;
}
.inner-banner-sec .inner-con {
  max-width: 870px;
  margin: 0 auto;
}
.inner-banner-sec .container {
  position: relative;
}
.inner-banner-subtitle {
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  font-family: "Blauer-Nue-regular";
  line-height: 1;
  margin-bottom: 22px;
}
.inner-banner-title {
  font-family: "Blauer-Nue-semibold";
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 6px;
  font-weight: 600;
}
.inner-banner-sec p {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  font-family: "Blauer-Nue-regular";
}

.breadcrumb-container {
  position: absolute;
  bottom: -140px;
  width: 100%;
  padding: 33px 30px;
  border: 1px solid #f1f1f1;
}
.breadcrumb-container .right-img img {
  width: 34px;
  aspect-ratio: 1/1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
}
.breadcrumb-item + .breadcrumb-item {
  font-size: 14px;
  line-height: 1;
  position: relative;
  padding-left: 36px;
}
.breadcrumb-item a {
  color: var(--bg-black);
  font-size: 14px;
  text-decoration: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  position: absolute;
  background-color: var(--bg-black);
  opacity: 0.1;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumb-item.active {
  color: var(--bg-black);
  opacity: 0.5;
}

/* about company */
.about-co-sec {
  padding-bottom: 30px !important;
}
.about-co-sec .social-links-hero {
  top: 100px;
  bottom: inherit;
  z-index: 10;
}
.about-co-sec .sec-head,
.about-co-sec .exp-con {
  max-width: 720px;
}
.about-co-sec .exp-con .year-exp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
  background-color: var(--primary-color);
  width: 200px;
  height: 200px;
}
.about-co-sec .exp-con .year-exp .num {
  color: var(--white);
  display: flex;
  margin: 0;
}
.about-co-sec .exp-con .year-exp p {
  text-transform: uppercase;
  color: var(--white);
  font-size: 15px;
  line-height: 1.33;
  font-family: "Blauer-Nue-regular";
  font-weight: 400;
}
.about-co-sec .exp-con {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}
.about-co-sec .exp-con .cms-con p {
  margin-bottom: 18px;
}
.about-co-sec .exp-con .cms-con p:last-child {
  margin-bottom: 0;
}
.pro-info-dis {
  max-width: 87%;
}
.title {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: "Blauer-Nue-regular";
}
.pro-info-dis .num {
  font-family: "Benelah";
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 0;
  line-height: 1;
}
.pro-info-dis p {
  color: var(--secondary-color);
  font-weight: 400;
  font-family: "Blauer-Nue-regular";
  font-size: 15px;
}
.pro-info-dis .grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  transform: translate(30%);
  z-index: 3;
}
.pro-info-dis .grid .item {
  padding: 50px 0;
  text-align: center;

  background-color: #f6f6f6;
}
.about-co-sec .right-img {
  position: relative;
  z-index: 2;
}
.about-co-sec .right-img img {
  position: relative;
  z-index: 2;
}
.about-co-sec .right-img::before {
  content: "";
  position: absolute;
  width: 275px;
  aspect-ratio: 55/102;
  background-image: url(../img/svg/ab-left-pattrn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: -40px;
  right: -40px;
  z-index: 1;
}
.statista-sec.ab {
  background-color: var(--white);
}
/* features section */
.features-sec.common-sec {
  padding: 40px 20px;
  background-color: var(--black);
  overflow: hidden;
}

.features-sec .container {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

.features-sec .feature-wrapper {
  display: flex;
  width: max-content; /* let content decide width */
  animation: infiniteScroll 20s linear infinite;
}

.features-sec .container ul {
  display: flex;
  gap: 50px;
  margin-right: 50px;
  padding: 0;
  list-style: none;
}
.features-sec .container ul:last-child {
  margin-right: 0;
}
.features-sec .container li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.features-sec .container img {
  width: 36px;
  min-width: 36px;
  aspect-ratio: 1/1;
}

.features-sec .container span {
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
  font-family: "Blauer-Nue-regular";
  text-transform: capitalize;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* journey-sec */
.journey-sec {
  background-color: rgb(0, 0, 0, 0.1);
}
.journey-sec .container {
  background-image: url(../img/svg/history-bg.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.journey-sec .sec-head {
  max-width: 646px;
  margin: 0 auto 40px;
  text-align: center;
}
.journey-sec .sec-head .sub-title {
  justify-content: center;
}
.journey-sec .grid-container {
  position: relative;
  max-width: 1096px;

  margin: 0 auto;
}
.journey-sec .grid-container:before {
  content: "";
  height: 100%;
  width: 2px;
  background-color: rgb(26, 26, 26, 0.2);
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.journey-sec .grid-container .ar-card {
  position: relative;
  background-color: var(--white);
  text-align: right;
  max-width: 424px;
  padding: 30px;
}
.journey-sec .grid-container .ar-card::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 44px;
  height: 30px;
  width: 30px;
  background-color: var(--white);
  transform: rotate(45deg);
}
.journey-sec .grid-container .ar-card img {
  margin-left: auto;
}
.journey-sec .grid-container .ar-card .img {
  margin-bottom: 20px;
}
.journey-sec .grid-container .ar-card .cms-con p {
  font-size: 14px;
}
.journey-sec .grid-container .time-line {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.journey-sec .grid-container .timeline-year {
  position: relative;
}
.journey-sec .grid-container .timeline-year .circle {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(26, 26, 26, 20%);
  background-color: var(--white);
  font-size: 22px;
  margin-top: 35px;
}
.journey-sec .grid-container .timeline-year p {
  position: absolute;
  top: 50px;
  left: 65px;
  white-space: nowrap;
  margin: 0;
  color: var(--primary-color);
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
  font-family: "Blauer-Nue-semibold";
}
.journey-sec .grid-container .transprent-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  width: 100%;
  max-width: 424px;
  padding: 30px;
}
.journey-sec .grid-container .transprent-card img {
  height: 60px;
  aspect-ratio: 1/1;
  opacity: 0.1;
}

.journey-sec .grid-container .timeline-year.left p {
  left: -75px;
}

.journey-sec .grid-container .ar-card.right {
  text-align: left;
}
.journey-sec .grid-container .ar-card.right img {
  margin-left: inherit;
  margin-right: auto;
}
.journey-sec .grid-container .ar-card.right::before {
  right: inherit;
  left: -15px;
}
/* about-vision-sec */
.about-vision-sec .mvv {
  border-left: 1px solid var(--bg-gray);
  padding: 100px 40px;
  height: 100%;
}
.about-vision-sec .mvv .img {
  margin-bottom: 50px;
}
.about-vision-sec .mvv .img img {
  width: 100px;
  aspect-ratio: 1/1;
}
.about-vision-sec .mvv .cms-con p {
  font-size: 18px;
}
/* video-sec */
.video-sec {
  background-image: url(../img/Video-min.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.video-sec .title {
  font-family: "Benelah";
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
}
.video-sec .img {
  display: inline-block;
  height: 80px;
  width: 80px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 35px;
}
.highlight-sec {
  background-color: #f9f9f9;
}
.highlight-sec .sec-head {
  max-width: 1096px;
  margin: 0 auto 40px;
  text-align: center;
}
.highlight-sec .sec-head .sub-title {
  justify-content: center;
}
.highlight-box {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: start;
  background-color: var(--white);
  height: 100%;
}
.highlight-box img {
  width: 100%;
}
.highlight-box .cms-con {
  padding: 26px 20px;
}
.highlight-sec .btm-btn {
  margin-top: 50px;
}
.highlight-box .cms-con span {
  font-size: 14px;
  margin-bottom: 14px;
}
.highlight-box .cms-con h5 {
  margin-bottom: 22px;
}
.highlight-sec .btn {
  text-transform: none;
}
/*  */
.progres-bar {
  margin-top: 20px;
}
.progress-item {
  margin-bottom: 20px;
}
.progress-item .label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.progress {
  background: #f4f3f2;
  border-radius: 20px;
  overflow: hidden;
  height: 14px;
  position: relative;
}
.progress-fill {
  background: var(--secondary-color);
  height: 100%;
  width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding-right: 8px;
  border-radius: 20px;
  transition: width 1s ease-in-out;
}
