@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Fustat:wght@200..800&display=swap');

:root {
  --app-height: 100%;
  --border-radius-40: clamp(20px, 7.18px + 2.56vw, 40px);
  --border-radius-24: clamp(12px, 4.31px + 1.54vw, 24px);
  --border-radius-20: clamp(10px, 3.59px + 1.28vw, 20px);
  --border-radius-16: clamp(8px, 2.87px + 1.03vw, 16px);
  --border-radius-8: clamp(4px, 1.44px + 0.51vw, 8px);
  --margin-40: clamp(20px, 7.18px + 2.56vw, 40px);
  --margin-20: clamp(10px, 3.59px + 1.28vw, 20px);
  --margin-16: clamp(8px, 2.87px + 1.03vw, 16px);
  --font-size-16: clamp(14px, 12.72px + 0.26vw, 16px);
  --font-size-18: clamp(16px, 14.72px + 0.26vw, 18px);
  --font-size-23: clamp(19px, 16.44px + 0.51vw, 23px);
}

/*----------  Genral CSS  ----------*/
* {
  padding: 0;
  margin: 0;
  border: none;
  vertical-align: baseline;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-16);
  scroll-behavior: auto !important;
}

body {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Fustat", sans-serif;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 1.5;
  color: #111;
  background-color: #fff;
  position: relative;
}

/* HTML5 display-role reset for older browsers */
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;
}

em,
i {
  font-style: italic;
}

u {
  text-decoration: underline;
}

p {
  margin-bottom: var(--margin-20);
}

p:last-child {
  margin-bottom: 0;
}

b,
strong {
  font-weight: 700 !important;
}

a {
  text-decoration: none;
  color: #D52B14;
  transition: color 0.4s ease-in-out;
  -webkit-transition: color 0.4s ease-in-out;
  -moz-transition: color 0.4s ease-in-out;
  -ms-transition: color 0.4s ease-in-out;
  -o-transition: color 0.4s ease-in-out;
}



a:focus {
  text-decoration: none;
  outline: none !important;
}

*:focus {
  outline: none;
}

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

/*----------  Common CSS  ----------*/
.wrapper {
  display: block;
  overflow: hidden;
  overflow-y: auto;
  min-height: 100vh;
  position: relative;
}

.body-fixed {
  overflow: hidden;
}

.container {
  max-width: 1440px;
  padding-inline: 96px;
}

.padding-style-1 {
  position: relative;
  padding-block: clamp(40px, 24.62px + 3.08vw, 64px);
}

.padding-style-2 {
  position: relative;
  padding-block: clamp(12px, 4.31px + 1.54vw, 24px) clamp(40px, 24.62px + 3.08vw, 64px);
}

.padding-style-3 {
  position: relative;
  padding-block: clamp(12px, 4.31px + 1.54vw, 24px);
}

.sec-head {
  width: 100%;
  display: block;
  margin-bottom: clamp(20px, 7.18px + 2.56vw, 40px);
}

.sec-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(28px, 20.31px + 1.54vw, 40px);
  line-height: 120%;
  display: block;
}

.sec-sub-title {
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: var(--font-size-23);
  line-height: 140%;
  letter-spacing: 0.92px;
  margin-bottom: var(--margin-16);
  text-transform: uppercase;
}

.sec-sub-title+.sec-title {
  margin-top: 10px;
}

/*----------  Button  ----------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 4.79px + 0.64vw, 13px);
  border: 1px solid #000;
  border-radius: 0;
  background-color: #000;
  color: #fff;
  font-family: "DM Mono", sans-serif;
  font-weight: 400;
  font-size: var(--font-size-18);
  line-height: 100%;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  min-width: 150px;
  padding: clamp(8px, 6.72px + 0.26vw, 10px) clamp(13px, 11.08px + 0.38vw, 16px);
  position: relative;
  transition: .4s all ease-in-out;
}

.btn-icon-arrow {
  display: block;
  width: 17px;
  height: 17px;
  background-image: url(../img/svg/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-white {
  border-color: #fff;
  background-color: #fff;
  color: #D52B14;
}

.btn-white .btn-icon-arrow {
  filter: brightness(0) saturate(100%) invert(21%) sepia(53%) saturate(4228%) hue-rotate(354deg) brightness(95%) contrast(95%);
}

.btn-outline {
  background-color: transparent;
  color: #000;
}

.btn-outline .btn-icon-arrow {
  filter: brightness(0);
}

.btn-outline:hover .btn-icon-arrow {
  filter: brightness(0) invert(1);
}

/*----------  Slick Slider  ----------*/
.slick-slider {
  position: relative;
}

.slick-arrow {
  font-size: 60px;
  line-height: 1;
  background-color: transparent;
  border: none;
  padding: 0;
  color: #000;
  height: auto;
  width: 60px;
  overflow: hidden;
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.slick-arrow.slick-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.slick-prev::before {
  transform: matrix(-1, 0, 0, -1, 0, 0);
}

.slick-next {
  right: 0;
}

.slick-dots {
  display: flex;
  justify-content: center;
}

.slick-dots li {
  display: inline-flex;
  padding: 3px;
}

.slick-dots li button {
  vertical-align: middle;
  height: 14px;
  width: 14px;
  font-size: 0;
  background-color: #dddddd;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.slick-dots li.slick-active button {
  background-color: #D52B14;
}

/*----------  Back To Top  ----------*/
.hidden {
  width: 0;
  height: 0;
  display: none;
}

.back-to-top {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #D52B14;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #fff;
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.back-to-top.active {
  bottom: 85px;
  opacity: 1;
  z-index: 9;
}

.back-to-top>div {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.back-to-top>.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top>.arrow svg {
  fill: #fff;
  height: 20px;
  width: 100%;
}

.back-to-top>.text {
  font-size: 8px;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 800;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

/*----------  404 & Thank you  ----------*/
.error-wrapper,
.thank-you-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - var(--header-height));
  text-align: center;
  flex-direction: column;
}

.error-title,
.thank-you-title {
  font-size: clamp(4.375rem, 2.182rem + 9.357vw, 9.375rem);
  font-weight: 700;
  line-height: 1;
  color: #00bf62;
  margin-bottom: clamp(.938rem, .526rem + 1.754vw, 1.875rem);
}

.thank-you-title {
  font-size: clamp(2.875rem, 1.395rem + 6.316vw, 6.25rem);
}

.error-message,
.thank-you-message {
  font-size: clamp(1rem, .89rem + 0.468vw, 1.25rem);
  line-height: 1.4;

  margin-top: clamp(.313rem, .175rem + 0.585vw, .625rem);
  margin-bottom: clamp(1.25rem, .702rem + 2.339vw, 2.5rem);
}

.error-wrapper svg,
.thank-you-wrapper svg {
  height: clamp(6.25rem, 4.879rem + 5.848vw, 9.375rem);
  width: clamp(6.25rem, 4.879rem + 5.848vw, 9.375rem);
  margin-bottom: clamp(1.563rem, .877rem + 2.924vw, 3.125rem);
}

/*----------  Header  ----------*/
body.is-nav-open {
  overflow: hidden;
}

.header-top {
  background: #D52B14;
  padding: 7px;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
}

.header-top-row a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-18);
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-top-row .icon-phone-2,
.header-top-row .icon-mail-2 {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/svg/phone-2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header-top-row .icon-mail-2 {
  background-image: url(../img/svg/mail-2.svg);
}

.header {
  background-color: #FAFAFA;
  padding-block: 12px;
  position: relative;
  width: 100%;
  z-index: 10;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, all .4s ease-in-out;
}

.is-header-sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: HeaderRise 0.8s linear;
}

@keyframes HeaderRise {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0);
  }
}

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

.header-logo {
  display: block;
  width: clamp(100px, 89.36px + 2.13vw, 120px);
}

.nav-head {
  display: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 0.293rem + 1.064vw, 1.25rem);
}

.nav-wrap nav>ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-wrap ul a {
  display: inline-block;
  text-decoration: none;
  color: #111111;
  padding: 12px;
  transition: .4s all ease-in-out;
  line-height: 1;
  position: relative;
}

.nav-wrap ul li>a {
  font-size: var(--font-size-18);
}

.nav-wrap ul li.current-menu-item a {
  color: #111;
}

.nav-wrap ul li a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  width: calc(100% - 24px);
  height: 2px;
  background-color: #111;
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s all ease-in-out;
}

.nav-wrap ul li.current-menu-item a::after {
  transform: scaleX(1);
}

/* Sub Menu */
.header nav li {
  position: relative;
}

.header .sub-menu ul {
  position: absolute;
  background-color: #f9f9f9;
  border-top: 2px solid #000;
  padding-block: 10px;
  padding-left: 0;
  left: 15px;
  top: 140%;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: .4s all ease-in-out;
  min-width: 150px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header .arrow {
  display: block;
  height: 8px;
  width: 8px;
  position: absolute;
  right: 0;
  top: 17px;
}

.header .arrow:before {
  content: '';
  display: block;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  width: 5px;
  height: 5px;
  transform: rotate(135deg);
  transition: .4s all ease-in-out;
}

/* Sub of Sub Menu */
.header .sub-of-sub-menu ul {
  top: 0;
  left: 100%;
  transform: translateY(0) translateX(100px);
}

.header .sub-of-sub-menu .arrow {
  right: 10px;
}

.header .sub-of-sub-menu .arrow::before {
  transform: rotate(45deg);
}

/*----------  Commons Styling  ----------*/
.industrial-fuel-text,
.compliant-text,
.hero-mission-text,
.ps-main-box .ps-text,
.revenue-model-text,
.faq-desc,
.strategic-text,
.about-hero-text,
.zig-zag-content .cms-con>*,
.what-bright-text,
.products-services-text {
  font-size: var(--font-size-18);
  letter-spacing: 0.36px;
  color: #8F8F8F;
}


/*----------  Hero Section  ----------*/
.hero-content-box {
  padding: clamp(15px, 5.38px + 1.92vw, 30px);
  border-radius: var(--border-radius-40);
  background-color: #F7F6F3;
  background-image: url(../img/hero-bg-img.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  height: 100%;
}

.hero-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content-head span {
  font-family: "DM Mono", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: #4E4E4E;
}

.hero-head {
  margin-top: clamp(40px, 14.36px + 5.13vw, 80px);
  text-align: center;
}

.hero-title {
  margin-bottom: clamp(13px, 4.67px + 1.67vw, 26px);
  max-width: 673px;
  margin-inline: auto;
}

.hero-content {
  background: #FFFFFF;
  border: 1px solid rgb(213 43 20 / 20%);
  border-radius: var(--border-radius-20);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(24px, 8.62px + 3.08vw, 48px);
  max-width: 612px;
  margin-inline: auto;
  gap: 24px;
}

.hero-content-icon {
  padding: 20px;
  background: #F2F2F2;
  border-radius: var(--border-radius-16);
  flex: 0 0 auto;
}

.hero-content-icon img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.hero-content-text {
  font-family: "DM Mono", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.28px;
  text-align: center;
  text-transform: uppercase;
  color: #4E4E4E;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-arrow-icon {
  display: block;
  flex: 0 0 clamp(12px, 4.31px + 1.54vw, 24px);
  width: clamp(12px, 4.31px + 1.54vw, 24px);
  height: clamp(12px, 4.31px + 1.54vw, 24px);
  background-image: url(../img/svg/arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-arrow-icon.rotate-180 {
  transform: rotate(180deg);
}

.hero-content-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 4.31px + 1.54vw, 24px);
  font-weight: 600;
  line-height: 120%;
  margin-top: clamp(25px, -8.33px + 6.67vw, 77px);
  vertical-align: middle;
}

.hero-content-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 2px;
  background: #F7F6F3;
  border-left: 1px solid #111111
}

.hero-star-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/svg/star.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-content-image {
  display: block;
  background-image: url(../img/hero-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  position: relative;
  aspect-ratio: 12/13;
  border-radius: var(--border-radius-40);
  padding: clamp(15px, 2.18px + 2.56vw, 35px) clamp(15px, -6.15px + 4.23vw, 48px);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.hero-content-image::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 100%);
}

.hero-content-image::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background-image: url(../img/hero-img-wrap.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-image-text-row {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  left: clamp(15px, -6.15px + 4.23vw, 48px);
  right: clamp(15px, -6.15px + 4.23vw, 48px);
  justify-content: space-between;
}

.hero-image-arrow-icon {
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../img/svg/arrow-cros.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: .4s all ease-in-out;
}

.hero-content-image-title {
  font-family: "DM Mono", sans-serif;
  font-size: clamp(24px, 18.23px + 1.15vw, 33px);
  line-height: 100%;
  letter-spacing: 0.66px;
  text-transform: uppercase;
}

.hero-content-image-text {
  font-size: var(--font-size-23);
  line-height: 100%;
  letter-spacing: 0.46px;
}

.hero-mission-box {
  padding: clamp(15px, 9.23px + 1.15vw, 24px) clamp(15px, 7.55px + 1.49vw, 29px);
}

.hero-mission-box-divider {
  height: 4px;
  border-radius: 8px;
  background: #2783C3;
  width: 100%;
  margin-top: clamp(15px, 9.23px + 1.15vw, 24px);
}

.hero-mission-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.hero-mission-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}

.hero-mission-text {
  border-left: 2px solid #A2A2A2;
  padding-left: 17px;
  color: currentColor;
  margin-left: 3px;
}

.hero-mission-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/svg/target.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) saturate(100%) invert(20%) sepia(59%) saturate(3382%) hue-rotate(352deg) brightness(104%) contrast(99%);
}

/*----------  Partner Slider  ----------*/

.partner-slider {
  margin: 0 -15px;
}

.partner-slide {
  padding: 0 15px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(28px, 20.31px + 1.54vw, 40px);
}

.partner-logo img {
  height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Slick Slider Custom Styles */
.partner-slider .slick-track {
  display: flex;
  align-items: center;
  gap: clamp(30px, -27.69px + 11.54vw, 120px);
}

.partner-slider .slick-slide {
  height: auto;
}

.home-divider-sec {
  background-image: url(../img/home-divider-shape.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 68px;
  width: 100%;
}


/*----------  Industrial Fuel Section  ----------*/
.industrial-fuel-content {
  max-width: 903px;
  margin: auto;
}

.industrial-fuel-content .sec-title {
  margin-bottom: var(--margin-16);
}

.industrial-fuel-text {
  margin-bottom: var(--margin-40);
}

.product-slide {
  font-family: "DM Mono", sans-serif;
  font-size: var(--font-size-18);
  letter-spacing: 0.36px;
  padding-inline: clamp(29px, 10.41px + 3.72vw, 58px);
  position: relative;
}

.product-slide::before {
  content: '';
  display: block;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-image: url(../img/svg/star-2.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.product-slider-divider {
  margin-top: clamp(30px, 8.21px + 4.36vw, 64px);
  height: 1px;
  background-image: repeating-linear-gradient(to right, rgba(125, 125, 125, 0.5) 0px, rgba(125, 125, 125, 0.5) 12px, transparent 12px, transparent 24px);
}

/*----------  Compliant Section Start  ----------*/
.compliant-section .container {
  max-width: 1080px;
  padding-inline: 15px;
}

.compliant-section .sec-title {
  margin-bottom: var(--margin-16);
  line-height: 140%;
}

.compliant-text {
  margin-bottom: clamp(16px, 5.74px + 2.05vw, 32px);
}

.compliant-features {
  padding-left: clamp(30px, 17.82px + 2.44vw, 49px);
}

.compliant-features li {
  position: relative;
  margin-bottom: var(--margin-16);
}

.compliant-features li:last-child {
  margin-bottom: 0;
}

.compliant-features li::before {
  content: '';
  display: block;
  width: clamp(8px, 2.87px + 1.03vw, 16px);
  height: clamp(8px, 2.87px + 1.03vw, 16px);
  background-image: url(../img/svg/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -28px;
  top: 3px;
}

.compliant-image {
  aspect-ratio: 0.79 / 1;
  max-width: 424px;
  margin-inline: auto;
  height: auto;
  border-radius: var(--border-radius-40);
  overflow: hidden;
  box-shadow: 0px 2.77px 2.21px 0px #00000007,
    0px 6.65px 5.32px 0px #00000009,
    0px 12.52px 10.02px 0px #0000000B,
    0px 22.34px 17.87px 0px #0000000C,
    0px 41.78px 33.42px 0px #0000000D,
    0px 100px 80px 0px #00000012;
}

.compliant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*----------  Products & Services Section  ----------*/
.ps-main-box {
  background-color: #D52B14;
  height: 100%;
  border-radius: var(--border-radius-40);
  color: #fff;
  padding: clamp(15px, -10.64px + 5.13vw, 55px) clamp(15px, -10.64px + 5.13vw, 55px) clamp(15px, -6.15px + 4.23vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  .sec-sub-title {
    margin-bottom: clamp(7px, 2.51px + 0.90vw, 14px);
  }

  .sec-title {
    font-weight: 600;
  }

  .ps-text {
    margin-block: 8px clamp(20px, 13.59px + 1.28vw, 30px);
    color: currentColor;
  }

  .ps-main-box-footer-icon {
    width: 120px;
    height: 120px;
    margin-bottom: clamp(15px, 9.23px + 1.15vw, 24px);
  }

  .ps-main-box-footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.4;
  }
}

.product-service-row {
  display: flex;
  flex-wrap: wrap;
}

.product-service-card {
  flex: 0 0 50%;
  padding: clamp(15px, 5.38px + 1.92vw, 30px) clamp(15px, -1.03px + 3.21vw, 40px);
  border: 1px solid rgba(184, 184, 184, 0.5);
  border-radius: var(--border-radius-40);

  .product-service-icon {
    width: 48px;
    height: 48px;
    background: #F7F6F3;
    border-radius: var(--border-radius-8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;

    img {
      width: 24px;
      height: 24px;
      object-fit: contain;
    }
  }

  .product-service-title {
    font-weight: 600;
    font-size: 21px;
    line-height: 120%;
    margin-bottom: 16px;
  }

  .product-service-list {

    color: #8F8F8F;
    padding-left: 25px;

    li {
      position: relative;
      margin-bottom: 12px;

      &:last-child {
        margin-bottom: 0;
      }

      &::before {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: #8F8F8F;
        position: absolute;
        left: -10px;
        top: 0.5em;
      }
    }
  }
}


/*----------  Revenue Model Section  ----------*/
.revenue-model-sec .container {
  max-width: 1278px;
  padding-inline: 15px;
}

.revenue-model-sec .row {
  --bs-gutter-x: clamp(20px, 9.36px + 2.13vw, 40px);
  --bs-gutter-y: clamp(20px, 9.36px + 2.13vw, 40px);
}

.revenue-model-sec .sec-head {
  max-width: 930px;
  margin-inline: auto;
}

.revenue-model-sec .sec-title {
  line-height: 140%;
}

.revenue-model-text {
  margin-top: var(--margin-16);
}

.revenue-model-wrapper {
  background-color: #F7F6F3;
  border-radius: var(--border-radius-40);
  padding: clamp(20px, 9.36px + 2.13vw, 40px) clamp(15px, 1.70px + 2.66vw, 40px);
}

.revenue-model-head {
  background: #2783C3;
  border: 1px solid rgba(17, 17, 17, 0.2);
  text-align: center;
  padding: clamp(15px, 10.21px + 0.96vw, 24px) clamp(20px, 9.36px + 2.13vw, 40px);
  border-radius: var(--border-radius-24);
  color: #fff;
  font-family: "DM Mono", sans-serif;
  font-size: var(--font-size-23);
  letter-spacing: 0.92px;
  vertical-align: middle;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;

  img {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
}

.revenue-model-head-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.revenue-model-img-box {
  border-radius: var(--border-radius-40);
  width: 100%;
  height: 100%;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.currency-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/svg/currency-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.revenue-model-item {
  border: 0.6px solid #B8B8B8;
  padding: clamp(10px, 4.68px + 1.06vw, 20px) clamp(20px, 9.36px + 2.13vw, 40px);
  border-radius: clamp(6px, 2.15px + 0.77vw, 12px);
  margin-bottom: var(--margin-16);

  &:last-child {
    margin-bottom: 0;
  }
}

.revenue-arrow-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/svg/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.revenue-model-item-title {
  font-family: "DM Mono", sans-serif;
  font-size: var(--font-size-18);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.revenue-model-item-text {
  line-height: 120%;
  letter-spacing: 0.32px;
  color: #8F8F8F;
}

/*----------  Regulatory Section  ----------*/
.regulatory-card {
  border: 1px solid rgba(184, 184, 184, 0.8);
  border-radius: var(--border-radius-24);
  padding: clamp(15px, 9.23px + 1.15vw, 24px);
  height: 100%;
}

.regulatory-icon {
  width: 48px;
  height: 48px;
  background-color: #F7F6F3;
  border-radius: var(--border-radius-8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--margin-16);
}

.regulatory-text {
  letter-spacing: 0.36px;
  vertical-align: middle;
}

/*----------  Financial Forecast Section  ----------*/
.financial-forecast-sec:not(.style-2) .container {
  max-width: 1278px;
  padding-inline: 15px;
}

.financial-forecast-item {
  border: 0.6px solid rgba(184, 184, 184, 0.5);
  background: #FDEEEC;
  border-radius: var(--border-radius-20);
  padding: clamp(15px, 9.23px + 1.15vw, 24px);
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.financial-forecast-sub-title {
  font-family: "DM Mono", sans-serif;
  font-size: var(--font-size-18);
  line-height: 140%;
  letter-spacing: 0.72px;
  margin-bottom: var(--margin-16);
}

.financial-forecast-title {
  font-weight: 700;
  font-size: clamp(24px, 18.23px + 1.15vw, 33px);
  line-height: 120%;
  letter-spacing: 1.32px;
}

.financial-forecast-text {
  line-height: 120%;
  letter-spacing: 0.64px;
}

.financial-forecast-divider {
  height: 6px;
  background-image: url(../img/long-arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: var(--margin-20);
}

/*----------  FAQ Section  ----------*/

.faq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-col:first-child {
  flex: 0 0 39%;
}

.faq-col:last-child {
  flex-grow: 1;
}

.faq-sec .container {
  max-width: 1066px;
  padding-inline: 15px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border: 0.6px solid rgba(184, 184, 184, 0.5);
  border-radius: var(--border-radius-16);
  overflow: hidden;
  padding: clamp(10px, 3.59px + 1.28vw, 20px) clamp(15px, 9.23px + 1.15vw, 24px);
}

.faq-item+.faq-item {
  margin-top: var(--margin-16);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 600;
  font-size: var(--font-size-18);
  line-height: 1;
  background-color: transparent;
  transition: color 0.3s ease;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-image: url(../img/svg/arrow-down.svg);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #F7F6F3;
  border-radius: 4px;
  padding: 8px;
}

.faq-button.active .faq-icon {
  transform: rotate(180deg);
  background-image: url(../img/svg/arrow-down-white.svg);
  background-color: #D52B14;
}

.faq-content {
  display: none;
  padding-top: 12px;
  color: #8F8F8F;
}

/*----------  Footer  ----------*/
.footer {
  padding-top: clamp(45px, 17.44px + 5.51vw, 88px);
  padding-bottom: clamp(30px, 10.77px + 3.85vw, 60px);
}

.footer-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: clamp(30px, -0.77px + 6.15vw, 78px);
}

.footer-col {
  flex-grow: 1;
}

.footer-col:first-child {
  flex: 0 0 32%;
}

.footer-col:last-child {
  flex: 0 0 16.5%;
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--margin-16);
  max-width: 150px;
}

.footer-desc {
  letter-spacing: 0.64px;
  margin-bottom: var(--margin-16);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111;
}

.footer-contact-list .icon-phone,
.footer-contact-list .icon-mail {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-contact-list .icon-phone {
  background-image: url(../img/svg/phone.svg);
}

.footer-contact-list .icon-mail {
  background-image: url(../img/svg/mail.svg);
}

.footer-title {
  font-size: var(--font-size-18);
  font-weight: 600;
}

.footer-divider {
  height: 0.6px;
  background-color: #8F8F8F;
  margin-block: 12px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
}

.footer-menu a {
  display: block;
  font-weight: 400;
  line-height: 120%;
  transition: color 0.3s ease;
  color: #111111;
  padding-block: clamp(4px, 1.44px + 0.51vw, 8px);
}

.footer-menu .active a {
  color: #D52B14;
  text-decoration: underline;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.address-item-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.address-item-text {
  font-weight: 400;
  color: #8F8F8F;
}

.icon-location {
  width: 20px;
  height: 20px;
  background-image: url(../img/svg/location.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.address-title {
  font-weight: 600;
  font-size: var(--font-size-18);
  line-height: 120%;
  margin-bottom: 0;
}

.address-content p {
  font-size: 14px;
  color: #4E4E4E;
  margin: 0;
}

/*----------  Operatios Plan Section  ----------*/
.operatios-plan-img {
  padding: clamp(15px, 1.70px + 2.66vw, 40px) clamp(15px, 8.09px + 1.38vw, 28px) clamp(15px, 10.21px + 0.96vw, 24px);
  border: 1px solid rgba(184, 184, 184, 0.5);
  border-radius: var(--border-radius-40);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.operatios-plan-img-title {
  font-family: "DM Mono", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-23);
  line-height: 120%;
  letter-spacing: 0.04em;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;
  margin-top: clamp(15px, 7.02px + 1.60vw, 30px);
}

.operatios-plan-content {
  background: #F7F6F3;
  padding: clamp(15px, -2.55px + 3.51vw, 48px) clamp(15px, -2.55px + 3.51vw, 48px) clamp(15px, 5.43px + 1.91vw, 33px);
  border-radius: var(--border-radius-40);
}

.operatios-plan-title {
  font-weight: 600;
  font-size: clamp(20px, 16.28px + 0.74vw, 27px);
  line-height: 140%;
  margin-bottom: var(--margin-16);
}

.operatios-plan-divider {
  border: 1px solid rgba(143, 143, 143, 0.2);
  margin-bottom: clamp(12px, 6.15px + 1.17vw, 23px);
}

.operatios-row {
  display: flex;
  justify-content: space-between;
  gap: clamp(15px, 1.70px + 2.66vw, 40px);
}

.operatios-col {
  flex: 0 0 calc((100% - 80px) / 3);
  padding-top: 24px;
  position: relative;
  height: 100%;
}

.operatios-col::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 21px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px dashed rgba(213, 43, 20, 0.6);
}

.operatios-col::after {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  left: calc(21px + 16px);
  width: 112%;
  border-top: 1px solid rgba(213, 43, 20, 0.6);
}

.operatios-col:last-child::after {
  border-top: 1px dashed rgba(213, 43, 20, 0.6);
  width: 80%;
}

.operatios-col-title {
  font-family: "DM Mono", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 2px;
}

.operatios-col-text {
  letter-spacing: 0.04em;
}

.strategic-sec .sec-title {
  margin-bottom: var(--margin-16);
}

.strategic-logo-box {
  background: #F7F6F3;
  border-radius: var(--border-radius-40);
  padding: clamp(20px, 5.11px + 2.98vw, 48px);
  max-width: 320px;
  margin: auto;
  position: relative;
  z-index: 99;
}

.strategic-logo-inner {
  background: #FDEEEC;
  border: 1px solid rgba(17, 17, 17, 0.2);
  padding: clamp(15px, 5.96px + 1.81vw, 32px) clamp(18px, 7.89px + 2.02vw, 37px);
  border-radius: var(--border-radius-24);
}

.strategic-logo-inner img {
  max-width: clamp(110px, 88.72px + 4.26vw, 150px);
  object-fit: contain;
}

.strategic-wrap {
  position: relative;
  min-height: 410px;
}

.strategic-item {
  border: 0.6px solid #B8B8B8;
  border-radius: var(--border-radius-8);
  width: 242px;
  padding: clamp(10px, 5.21px + 0.96vw, 19px) clamp(15px, 10.21px + 0.96vw, 24px);
  position: absolute;
  background-color: #fff;
}

.strategic-item::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 1px;
  border-radius: 50%;
  background-color: rgba(213, 43, 20, 0.6);
  top: 50%;
  z-index: -1;
}

.strategic-item .icon-location {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/svg/location.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.strategic-item .strategic-title {
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.strategic-item .strategic-text {
  letter-spacing: 0.32px;
  font-size: 16px;
  color: #8F8F8F;
}

.strategic-item:nth-child(2) {
  top: 60px;
}

.strategic-item:nth-child(3) {
  top: 312px;
}

.strategic-item:nth-child(3)::before {
  transform: rotate(150deg);
  top: -10px;
  width: 140%;
  left: 77%;
}

.strategic-item:nth-child(4) {
  top: 312px;
  left: 50%;
  transform: translateX(-50%);
}

.strategic-item:nth-child(4)::before {
  top: 0;
  left: 25%;
  width: 50%;
  transform: rotate(90deg) translateX(-50%);
}

.strategic-item:nth-child(5) {
  top: 60px;
  right: 0;
}

.strategic-item:nth-child(5)::before {
  right: 100%;
  left: inherit;
}

.strategic-item:nth-child(6) {
  top: 312px;
  right: 0;
}

.strategic-item:nth-child(6)::before {
  transform: rotate(210deg);
  top: -10px;
  width: 140%;
  right: 77%;
  left: inherit;
}


/*=============================================
=            About Us Page Start            =
=============================================*/

/*----------  About Hero Section Start  ----------*/
.icon-star {
  display: block;
  width: clamp(30px, 20.43px + 1.91vw, 48px);
  height: clamp(30px, 20.43px + 1.91vw, 48px);
  background-image: url(../img/svg/star-3.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.about-hero-content {
  padding: clamp(30px, 19.36px + 2.13vw, 50px) clamp(15px, -41.38px + 11.28vw, 121px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 3.74px + 0.85vw, 16px);
  background: #F7F6F3;
  border-radius: var(--border-radius-40);
  text-align: center;

  .sec-sub-title {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 3.74px + 0.85vw, 16px);
  }

  .about-hero-text {
    color: #111111;
  }
}

.about-hero-img {
  border-radius: var(--border-radius-40);
  overflow: hidden;
  aspect-ratio: 0.63/1;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/*----------  Mission Vision Sec  ----------*/
.mission-vision-sec {
  .container {
    max-width: 1066px;
    padding-inline: 15px;
  }

  .mission-vision-box {
    border: 1px solid rgba(184, 184, 184, 0.6);
    border-radius: var(--border-radius-40);
    height: 100%;
    padding: clamp(25px, 0px + 5vw, 64px) clamp(15px, -1.03px + 3.21vw, 40px);

    .sec-sub-title {
      margin-bottom: var(--margin-20);
      display: flex;
      align-items: center;
      gap: clamp(8px, 3.74px + 0.85vw, 16px);
    }

    .icon-quote {
      display: block;
      width: clamp(30px, 20.43px + 1.91vw, 48px);
      height: clamp(30px, 20.43px + 1.91vw, 48px);
      background-image: url(../img/svg/quote.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      margin-bottom: var(--margin-20);
    }

    .mission-vision-text {
      font-size: var(--font-size-23);
      letter-spacing: 0.92px;
      vertical-align: middle;
    }
  }
}

/*----------  How Started Sec  ----------*/
.how-started-sec {
  text-align: center;

  .sec-title {
    font-weight: 600;
    margin-bottom: var(--margin-16);
  }

  .cms-con>* {
    font-size: var(--font-size-18);
    letter-spacing: 0.02em;
    color: #8F8F8F;
  }
}

/*----------  Our Team Sec  ----------*/
.our-team-wrap {
  border-radius: var(--border-radius-40);
  background: #F7F6F3;
  padding: clamp(40px, 24.62px + 3.08vw, 64px) clamp(15px, -43.33px + 11.67vw, 106px);

  .sec-sub-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 3.74px + 0.85vw, 16px);
    line-height: 1;
    margin-bottom: 0;

    .icon-team {
      display: block;
      width: clamp(30px, 20.43px + 1.91vw, 48px);
      height: clamp(30px, 20.43px + 1.91vw, 48px);
      background-image: url(../img/svg/team.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }
  }

  .row {
    --bs-gutter-x: clamp(15px, -24.74px + 7.95vw, 77px);
    --bs-gutter-y: clamp(25px, -8.33px + 6.67vw, 77px);
  }

  .team-member-card {

    .team-member-image {
      aspect-ratio: 294/240;
      overflow: hidden;
      border-radius: 8px;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .team-member-content {
      margin-top: var(--font-size-16);
      text-align: center;

      .team-member-name {
        font-family: "DM Mono", sans-serif;
        font-size: var(--font-size-18);
        line-height: 120%;
        vertical-align: middle;
        margin-bottom: 4px;
      }

      .team-member-postion {
        font-size: var(--font-size-18);
        letter-spacing: 0.02em;
        color: #8F8F8F;
        margin-bottom: var(--margin-16);
      }

      .team-member-mail {
        font-weight: 600;
        font-size: var(--font-size-18);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #8F8F8F;

        .icon-mail {
          width: 24px;
          height: 24px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          background-image: url(../img/svg/mail.svg);
        }
      }
    }
  }
}

/*----------  Regulatory Sec  ----------*/
.product-slider-divider-2 {
  margin-bottom: clamp(30px, 8.21px + 4.36vw, 64px);
  height: 1px;
  background-image: repeating-linear-gradient(to right, rgba(125, 125, 125, 0.5) 0px, rgba(125, 125, 125, 0.5) 12px, transparent 12px, transparent 24px);
}

/*----------  Operatios Plan  ----------*/
.operatios-plan-content.style-2 {
  padding: 0;
  background-color: transparent;

  .operatios-plan-title {
    font-family: "DM Mono", sans-serif;
    font-size: clamp(20px, 16.28px + 0.74vw, 27px);
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #000000;
    margin-bottom: clamp(20px, 13.59px + 1.28vw, 30px);
  }

  .operatios-col::before {
    background-color: #fff;
  }
}

/*----------  Get Started Section  ----------*/
.get-started-content {
  background-color: #2783C3;
  border-radius: var(--border-radius-40);
  padding: clamp(30px, -13.09px + 8.62vw, 111px) clamp(15px, -36.06px + 10.21vw, 111px);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: clamp(8px, 3.74px + 0.85vw, 16px);
  color: #fff;
  height: 100%;

  .sec-sub-title {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: clamp(8px, 3.74px + 0.85vw, 16px);
    line-height: 1;

    .icon-chat {
      display: block;
      width: clamp(30px, 20.43px + 1.91vw, 48px);
      height: clamp(30px, 20.43px + 1.91vw, 48px);
      background-image: url(../img/svg/chat.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }
  }

  .get-started-text {
    font-size: var(--font-size-18);
    letter-spacing: 0.04em;
  }
}

.get-started-form {
  border-radius: var(--border-radius-40);
  padding: clamp(30px, -6.70px + 7.34vw, 99px) clamp(15px, 4.36px + 2.13vw, 35px);
  background: #F7F6F3;
  height: 100%;
}

.form-style-1 {
  .form-group+.form-group {
    margin-top: clamp(15px, 10.21px + 0.96vw, 24px);
  }

  .form-label {
    letter-spacing: 0.64px;
    margin-bottom: 4px;
    text-transform: uppercase;

    span {
      color: #D52B14;
    }
  }

  .form-control {
    background-color: #fff;
    padding: 7px clamp(18px, 14.81px + 0.64vw, 24px);
    font-size: var(--font-size-16);
    border: 1px solid rgba(39, 130, 195, 0.2);
    border-radius: 4px;

    &:focus {
      border: 1px solid rgba(39, 130, 195, 0.5);
      box-shadow: none;
    }

    &::placeholder {
      color: #A0A0A0;
    }
  }

  .form-textarea {
    resize: none;
  }
}


/*=============================================
=           Our Products Page Start           =
=============================================*/

.products-services-sec.style-2 {
  .ps-main-box {
    background-color: #fff;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 0.73/1;
    position: relative;

    &::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.0768) 0%, rgba(0, 0, 0, 0.16) 100%);
    }

    &::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url(../img/our-product-hero-wrap.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .product-service-row {
    height: 100%;
    gap: clamp(21px, 19.40px + 0.32vw, 24px);
  }

  .product-service-card {
    flex: 0 0 calc(50% - clamp(10.50px, 9.70px + 0.16vw, 12px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;

    .product-service-text {
      color: #8F8F8F;
    }

    .btn-white {
      padding-inline: 0;
      width: fit-content;
      color: #000;

      @media (hover: hover) {
        &:hover {
          background-color: transparent;
          border-color: transparent;
          color: #D52B14;
        }

        &:hover .btn-icon-arrow {
          filter: brightness(0) saturate(100%) invert(21%) sepia(53%) saturate(4228%) hue-rotate(354deg) brightness(95%) contrast(95%);
        }
      }
    }
  }
}

/*----------  Financial Forecast Sec Style 2  ----------*/
.financial-forecast-sec.style-2 {
  .financial-forecast-wrap {
    background: #F7F6F3;
    border-radius: var(--border-radius-40);
    padding: clamp(40px, 14.36px + 5.13vw, 80px) clamp(15px, -16.41px + 6.28vw, 64px);
  }
}

/*----------  Zig Zag Sec  ----------*/
.zig-zag-sec {
  .container {
    max-width: 1066px;
    padding-inline: 15px;
  }

  .row {
    --bs-gutter-x: clamp(25px, 8.97px + 3.21vw, 50px);
    --bs-gutter-y: clamp(25px, 8.97px + 3.21vw, 50px);
    align-items: center;

    &+.row {
      margin-top: clamp(25px, -35.90px + 12.18vw, 120px);
    }

    &:nth-child(even) {
      flex-direction: row-reverse;
    }
  }

  .zig-zag-img {
    aspect-ratio: 1/1;
    border-radius: var(--border-radius-40);
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .zig-zag-content {
    .zig-zag-shape {
      height: 4px;
      width: 165px;
      background-image: url(../img/zig-zag-shape.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      margin-bottom: var(--margin-16);
    }

    .sec-title {
      line-height: 140%;
      margin-bottom: var(--margin-16);
    }
  }
}


/*=============================================
=            Dealers Distributors            =
=============================================*/
.storage-across-sec .sec-title {
  font-size: clamp(32px, 21.30px + 2.14vw, 48px);
}

.storage-across-text {
  color: #818181;
  margin-top: 12px;
}

.storage-across-wrap {
  overflow: auto;
  border-radius: 8px;
  border: 1px solid #CCCCCC;
}

.storage-across-table {
  width: 100%;
}

.storage-across-row {
  display: flex;
}

.storage-across-row+.storage-across-row {
  border-top: 1px solid #CCCCCC;
}

.storage-across-head {
  padding: clamp(8px, 3.74px + 0.85vw, 16px) clamp(20px, 4.04px + 3.19vw, 50px);
  font-family: "DM Mono", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-18);
  line-height: 120%;
  color: #002F60;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
}

.storage-across-data {
  font-family: "Fustat", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-18);
  line-height: 120%;
  padding: clamp(10px, 4.68px + 1.06vw, 20px) clamp(20px, 4.04px + 3.19vw, 50px);
  display: flex;
  align-items: center;
}

.storage-across-head+.storage-across-head,
.storage-across-data+.storage-across-data {
  border-left: 1px solid #CCCCCC;
}

.storage-across-row div:nth-child(1) {
  flex: 0 0 19.23%;
  text-align: center;
  justify-content: center;
}

.storage-across-row div:nth-child(2) {
  flex: 0 0 21.63%;
}

.storage-across-row div:nth-child(3) {
  flex: 0 0 37.82%;
}

.storage-across-row div:nth-child(4) {
  flex: 0 0 21.31%;
}

.storage-across-data:last-child {
  padding: 20px 38px;
}


/*----------  What Bright  ----------*/
.what-bright-sec .sec-head {
  max-width: 824px;
  margin-inline: auto;
}

.what-bright-text {
  margin-top: var(--margin-16);
}

.what-bright-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.what-bright-col {
  position: relative;
}

.what-bright-col:nth-child(1) {
  flex: 0 0 23.56%;
  padding: clamp(15px, 2.18px + 2.56vw, 35px);
  background: #F7F6F3;
  border-radius: var(--border-radius-40);
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-bright-col:nth-child(2) {
  flex: 0 0 32.05%;
  padding: clamp(25px, 17.95px + 1.41vw, 36px) clamp(15px, 10.51px + 0.90vw, 22px);
  border-radius: var(--border-radius-40);
  border: 1px solid #B8B8B8;
}

.what-bright-col:nth-child(3) {
  flex: 0 0 33.65%;
  padding: clamp(25px, 17.95px + 1.41vw, 36px) clamp(15px, 10.51px + 0.90vw, 22px);
  border-radius: var(--border-radius-40);
  border: 1px solid #B8B8B8;
}

.what-bright-col+.what-bright-col::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -67px;
  width: 67px;
  height: 5px;
  background-image: url(../img/long-arrow-2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.what-bright-logo-wrap {
  background: #FDEEEC;
  border: 0.2px solid rgba(17, 17, 17, 0.2);
  padding: clamp(15px, 4.10px + 2.18vw, 32px) clamp(15px, 0.90px + 2.82vw, 37px);
  border-radius: var(--border-radius-24);
}

.divider-3 {
  margin-block: var(--margin-16);
  height: 1px;
  background-image: repeating-linear-gradient(to right, rgba(125, 125, 125, 0.5) 0px, rgba(125, 125, 125, 0.5) 12px, transparent 12px, transparent 24px);
}

.what-bright-port-list-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 4px;
  color: #111111;
}

.what-bright-port-list-text {
  font-family: "Fustat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.32px;
  color: #8F8F8F;
}

.what-bright-info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}

.what-bright-info-list-item {
  font-family: "Fustat", sans-serif;
  font-weight: 600;
  font-size: var(--font-size-18);
  line-height: 1;
  letter-spacing: 0.36px;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 9px 12px;
  background: #111111;
}


/*----------    ----------*/
.products-services-sec.style-3 {
  background: #F7F6F3;

  .container {
    max-width: 1068px;
    padding-inline: 15px;
  }

  .sec-head {
    max-width: 954px;
    margin-inline: auto;
  }

  .sec-sub-title {
    margin-bottom: 8px;
  }

  .sec-title {
    font-weight: 600;
  }

  .products-services-text {
    margin-top: 8px;
  }

  .product-service-row {
    gap: clamp(13px, 4.67px + 1.67vw, 26px);
  }

  .product-service-card {
    flex: 0 0 calc((100% - clamp(13px, 4.67px + 1.67vw, 26px)) / 2);
    padding: clamp(15px, -6.15px + 4.23vw, 48px);

    .product-service-icon {
      background: #FDEEEC;
    }
  }

  .product-service-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--margin-20);
  }
}


/*----------    ----------*/
.get-started-sec.padding-style-3.style-2 {
  padding-top: clamp(50px, 5.13px + 8.97vw, 120px);
}

.get-started-sec.style-2 {
  .sec-head {
    margin-bottom: clamp(25px, 4.26px + 4.15vw, 64px);
  }

  .row {
    --bs-gutter-x: clamp(15px, 9.23px + 1.15vw, 24px);
    --bs-gutter-y: clamp(15px, 9.23px + 1.15vw, 24px);
    align-items: center;
  }

  .get-started-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(15px, 9.23px + 1.15vw, 24px);
  }

  .get-started-img {
    flex: 1;
    width: 100%;
    border-radius: var(--border-radius-40);
    overflow: hidden;
    max-height: 411px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .get-started-content {
    flex: 1;
    padding: clamp(20px, 2.05px + 3.59vw, 48px) clamp(15px, -35.64px + 10.13vw, 94px);
  }
}

.blog-img-box {
  aspect-ratio: 1.67/1;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-24);
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.blog-content-box {
  padding: clamp(15px, 10.21px + 0.96vw, 24px);
  border: 1px solid rgba(184, 184, 184, 0.6);
  border-radius: var(--border-radius-24);

  .blog-cat {
    font-family: "DM Mono", sans-serif;
    font-weight: 400;
    font-size: var(--font-size-18);
    line-height: 140%;
    letter-spacing: 0.68px;
    margin-bottom: 8px;
    color: #111;
  }

  .blog-name {
    font-family: "Fustat", sans-serif;
    font-weight: 600;
    font-size: var(--font-size-18);
    line-height: 150%;
    letter-spacing: 0.68px;
    margin-bottom: 4px;
  }

  .blog-text {
    font-family: "Fustat", sans-serif;
    font-weight: 400;
    font-size: var(--font-size-16);
    line-height: 150%;
    letter-spacing: 0.56px;
    margin-bottom: var(--margin-20);
  }

  .blog-button {
    padding-inline: 0;
    background-color: transparent;
    border: transparent;
    color: #111;
    min-width: auto;

    .btn-icon-arrow {
      filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2374%) hue-rotate(354deg) brightness(86%) contrast(93%);
    }
  }
}


/*----------  Get In touch  ----------*/
.get-in-touch-desc {
  margin-top: 12px;
  color: #818181;
}

.get-in-touch-icon {
  width: clamp(38px, 30.86px + 1.43vw, 48px);
  height: clamp(38px, 30.86px + 1.43vw, 48px);
  border-radius: var(--border-radius-8);
  background: #FDEEEC;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: clamp(20px, 17.14px + 0.57vw, 24px);
    height: clamp(20px, 17.14px + 0.57vw, 24px);
    object-fit: contain;
  }
}

.get-in-touch-title {
  font-weight: 600;
  font-size: 21px;
  line-height: 120%;
  color: #111;
  margin-top: 16px;
}

.get-in-touch-text {
  font-size: 16px;
  line-height: 150%;
  color: #8F8F8F;
  margin-top: 8px;
  word-break: break-all;
}

.get-in-touch-card {
  display: block;
  border: 1px solid rgba(184, 184, 184, 0.6);
  padding: clamp(20px, 7.27px + 2.55vw, 48px);
  border-radius: var(--border-radius-40);
  height: 100%;
}