@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@font-face {
    font-family: 'Tungsten';
    src: url('../fonts/Tungsten-Bold.woff2') format('woff2'),
        url('../fonts/Tungsten-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


* {
    padding: 0;
    margin: 0;
    border: none;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    background-color: #01081F;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    color: #fff;
}

button {
    cursor: pointer;
    opacity: 1;
}

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

p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #fff;
}

*:focus {
    outline: none;
}

.wrapper {
    display: block;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1500px;
    padding: 0 30px;
    margin: 0 auto;
}


/* button */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 15px 20px;
    min-width: auto;
    overflow: hidden;
    border: 1px solid #01081F;
    z-index: 2;
    background-color: #01081F;
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.btn::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -20px;
    background-color: #fff;
    border-radius: 50%;
    aspect-ratio: 1;
    width: 5%;
    margin: auto;
    transform: translate(-50%, 30%);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.btn.btn-outline {
    background-color: transparent;
    color: #1F1D1D;
    border-color: rgba(31, 29, 29, 0.15);
}

.btn.btn-outline:before {
    background-color: #1F1D1D;
}

.btn:focus {
    box-shadow: none;
}

.btn.btn-black {
    background-color: #01081F;
}

.btn.btn-black span {
    background: -webkit-linear-gradient(80deg, #25D2A4 0%, #587AEA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


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

.btn.btn-white span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(90deg, #25D2A4 0%, #587AEA 100%);
}

.btn.btn-white span .icon {
    width: 16px;
    height: 16px;
}

.btn.btn-glass-white {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
}

.btn.btn-glass-white::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(233.37deg, rgba(255, 255, 255, 0.2) 24.39%, #F0FFFB 50%, rgba(255, 255, 255, 0.2) 75.61%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


.btn.btn-gradient,

.btn.btn-gradient:active {
    border: none;
    background: linear-gradient(90deg, #25D2A4 0%, #587AEA 100%);
    color: #fff;
    padding-block: 16px;

}

.btn.btn-gradient:before {
    content: "";
    position: absolute;
    width: 160%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all 0.5s;
    z-index: -1;
    background: linear-gradient(90deg, #25D2A4 0%, #587AEA 85%, #25D2A4 100%);
    bottom: inherit;
    aspect-ratio: unset;
    transform: unset;
    border-radius: unset;
}


@media (hover:hover) {
    .btn:hover::before {
        width: 140%;
    }

    .btn.btn-gradient:hover:before {
        left: 0;
        background-position: -350px 260px;
    }

    .btn:hover {
        color: #01081F;
        background-color: transparent;
        border-color: #01081F;
    }

    .btn:active,
    .btn:first-child:active {
        background-color: #01081F !important;
        color: #fff !important;
    }

    .btn.btn-gradient:hover {
        color: #fff;
    }

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

    .btn.btn-white::before {
        background-color: #01081F;
    }

    .btn.btn-outline:hover {
        color: #fff;
        background-color: #1F1D1D;
        border-color: #1F1D1D;
    }

    .btn.btn-outline:active,
    .btn.btn-outline:first-child:active {
        color: #fff;
        background-color: #1F1D1D !important;
    }
}

/* button */

.sec-head {
    margin-bottom: 25px;
}

.sec-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    color: #FFFFFF;
    display: block;
}

.sec-title-lg {
    font-weight: 500;
    font-size: 66px;
    line-height: 1.1;
    color: #FFFFFF;
}

.common-sec {
    padding: 120px 0;
}

/*----------  Header  ----------*/
body.header_active {
    overflow: hidden;
}

.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.header .header-inner {
    background-color: #fff;
    padding: 8px;
    padding-left: 22px;
    width: 100%;
    border-radius: 50px;
    transition: background-color 0.4s ease, all .4s ease-in-out;
}

/* .is-header-sticky .header {
    animation: HeaderRise 0.8s linear;
} */

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

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

.header-logo {
    display: block;
}

.header-logo img {
    display: block;
    width: 169px;
}

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

.nav-wrap ul a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 10px 10px;
    transition: .4s all ease-in-out;
}

.nav-wrap ul li>a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}

.nav-wrap ul li.current-menu-item>a,
.nav-wrap ul li:hover>a {
    color: #587AEA;
}

.header nav li {
    position: relative;
}

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

.header .row .col-auto {
    flex: 0 0 auto;
    width: auto;
    line-height: 1;
}

.header-end {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 8px;
    justify-content: end;
}

.menu-icon {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    padding: 0;
    margin-top: 0;
    margin-left: 15px;
    color: #000;
}

.menu-icon span {
    display: block;
    width: 25px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background: currentColor;
    margin: auto;
    transition: all .4s ease-in-out;
}

.menu-icon span:before {
    content: "";
    width: 25px;
    position: absolute;
    top: -8px;
    right: 0;
    height: 2px;
    background: currentColor;
    transition: all .4s ease-in-out;
}

.menu-icon span:after {
    content: "";
    width: 25px;
    position: absolute;
    bottom: -8px;
    right: 0;
    height: 2px;
    background: currentColor;
    transition: all .4s ease-in-out;
}

.header-inner .btn.btn-gradient:hover::before {
    width: 230%;
}

.banner-sec {
    padding-top: 180px;
}

.banner-sec .container {
    max-width: 1020px;
}

.sec-title.title-xl {
    font-size: 77px;
    line-height: 1.2;
    font-weight: 500;
}

.sec-title.title-md {
    font-size: 66px;
    line-height: 1.2;
    font-weight: 500;
}

.banner-sec .sec-head {
    margin-bottom: 35px;
}

.banner-sec .sec-title {
    margin-bottom: 18px;
}

.banner-sec .sec-head p {
    font-size: 19px;
    max-width: 650px;
    margin-inline: auto;
}

.banner-sec .btn.btn-white {
    padding: 6px;
    padding-left: 20px;
}

.watch-product-video {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}

.video-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.video-icon .icon {
    width: 10px;
    height: 10px;
}

.watch-product-video:hover {
    color: #587AEA;
}

.underutilized-sec .container {
    max-width: 960px;
    margin-inline: auto;
}

.underutilized-video {
    border: 1px solid;
    border-image-source: linear-gradient(214.57deg, rgba(255, 255, 255, 0.2) 6.77%, rgba(255, 255, 255, 0.1) 28.38%, rgba(255, 255, 255, 0.1) 71.62%, rgba(255, 255, 255, 0.2) 93.23%);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 24px;
}

.underutilized-video iframe {
    width: 100%;
    height: 540px;
    border-radius: 24px;
}

.underutilized-sec .sec-head p {
    max-width: 705px;
    margin-inline: auto;
}

.partners-wrapper {
    overflow: hidden;
    max-width: 640px;
    margin-inline: auto;
}

:root {
    --partner-width: 640;
}

.partners-row {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    gap: calc(10/var(--partner-width)* 640px);
    will-change: transform
}

.partners-list {
    display: flex;
    align-items: center;
    gap: calc(10/var(--partner-width)* 640px);
    white-space: nowrap;
    width: max-content;
    will-change: transform;
    animation: partners-hscrollLeft 30s linear infinite
}

.partners-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(158/var(--partner-width)* 640px);
    height: calc(63/var(--partner-width)* 640px);
}

.partners-item img {
    width: auto;
    height: auto;
    max-width: calc(140/var(--partner-width)* 640px);
    max-height: calc(40/var(--partner-width)* 640px)
}

@keyframes partners-hscrollLeft {
    0% {
        transform: translateZ(0);
    }

    to {
        transform: translate3d(-100%, 0, 0);
    }
}

.meet-digital-sec .container {
    max-width: 1340px;
    margin-inline: auto;
}

.sec-title.title-lg {
    font-size: 57px;
    font-weight: 600;
}

.sec-sub-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}

.meet-digital-sec .cms-con p {
    font-size: 16px;
    color: #fff;
    opacity: 0.6;
    font-weight: 300;
    line-height: 1.4;
}

.meet-digital-list {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 60px;
    z-index: 2;
}

.bg-video {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    opacity: 0.3;
}
.bg-video img{width: 100%;height: 100%;object-fit: cover;}

.meet-digital-list::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #587AEA;
    mix-blend-mode: plus-lighter;
    z-index: -1;
}

.meet-digital-col {
    width: 25%;
    padding: 42px 24px;
    min-height: 370px;
    border: 1px solid rgba(255, 255, 255, 0.2)
}

.meet-digital-img {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.meet-digital-text p {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4;
}


.key-features-box {
    position: relative;
    border-radius: 42px;
    padding: 20px 24px;
    overflow: hidden;
    z-index: 2;
    height: 100%;
}

/* .key-features-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; 
  border-radius: inherit;
  background: linear-gradient(
    214.57deg,
    rgba(255, 255, 255, 0.2) 6.77%,
    rgba(255, 255, 255, 0.1) 28.38%,
    rgba(255, 255, 255, 0.1) 71.62%,
    rgba(255, 255, 255, 0.2) 93.23%
  );
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
} */
.key-features-text {
    max-width: 360px;
    padding: 42px 24px
}

.key-features-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
}

.key-features-text p {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
}

.key-features-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        radial-gradient(100% 100% at 100% 75.94%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(92.07% 107.63% at 0% 0.09%, #587AEA 0%, rgba(0, 0, 0, 0) 100%);
        background-color: #01081F;
}

.key-features-img {
    padding: 0 15px;
}

.key-features-img img {
    margin-left: auto;
}

.key-features-box.style-2 .key-features-img {
    margin-bottom: -150px;
}

.key-features-box.style-4 .key-features-img {
    margin-left: -20px;
}

.key-features-box.style-6 .key-features-text {
    padding-top: 18px;
}

.key-features-box.style-2::after {
    /* background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
        radial-gradient(91.86% 91.86% at 59.75% 99.91%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(60.09% 60.09% at 37.04% -0.09%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%); */
    background-image:
        linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        radial-gradient(91.86% 91.86% at 59.75% 99.91%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(60.09% 60.09% at 37.04% -0.09%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%);
        background-color: #01081F;
    
}

.key-features-box.style-3::after {
    /* background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
        radial-gradient(139.22% 139.22% at 61.93% 3.81%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(59.86% 59.86% at 0% 71.81%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%); */
    background-image:
        linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        radial-gradient(139.22% 139.22% at 61.93% 3.81%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(59.86% 59.86% at 0% 71.81%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%);
        background-color: #01081F;

}

.key-features-box.style-4::after {
    /* background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
        radial-gradient(125.46% 125.46% at -2.52% 57.13%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(98.74% 98.74% at 103.21% 21.93%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%); */
    background-image:
        linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        radial-gradient(125.46% 125.46% at -2.52% 57.13%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(98.74% 98.74% at 103.21% 21.93%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%);
        background-color: #01081F;
}

.key-features-box.style-5::after {
    /* background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
        radial-gradient(115.02% 115.02% at 17.43% 102.32%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(92.55% 92.55% at 35.89% -0.09%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%); */
    background-image:
        linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        radial-gradient(115.02% 115.02% at 17.43% 102.32%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(92.55% 92.55% at 35.89% -0.09%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%);
        background-color: #01081F;
}

.key-features-box.style-6::after {
    /* background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
        radial-gradient(91.51% 91.51% at 0% 49.91%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(85.89% 85.89% at 100% 85.8%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%); */
    background-image:
        linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        radial-gradient(91.51% 91.51% at 0% 49.91%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(85.89% 85.89% at 100% 85.8%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%);
        background-color: #01081F;
}

.key-features-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;

    /* background:
        linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
        radial-gradient(100% 100% at 100% 75.94%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(92.07% 107.63% at 0% 0.09%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%); */
    /* background-image:
    linear-gradient(0deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1)),
    radial-gradient(100% 100% at 100% 75.94%, #587AEA 0%, rgba(0,0,0,0) 100%),
    radial-gradient(92.07% 107.63% at 0% 0.09%, #25D2A4 0%, rgba(0,0,0,0) 100%); */
    background-image:
        linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        radial-gradient(92.07% 107.63% at 0% 0.09%, #587AEA 0%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(100% 100% at 100% 75.94%, #25D2A4 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;

    opacity: 0;
}

.key-features-box:hover::before {
    /* opacity: 1; */
    animation: glowCycle 3s ease-in-out infinite;
}

@keyframes glowCycle {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}


.key-features-sec {
    position: relative;
    z-index: 2;
}

.key-features-sec::before {
    position: absolute;
    content: "";
    z-index: -1;
    left: -20%;
    bottom: -30%;
    width: 100%;
    height: 100%;
    background-image: url(../img/box-shadow-green.svg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 100%;
}

.meet-digital-sec {
    position: relative;
    z-index: 2;
}

.meet-digital-sec::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: -292px;
    left: 0;
    z-index: -2;
    background: url(../img/meet-digital-bg.png) no-repeat center;
}

.main-video-bg {
    position: relative;
    z-index: 2;
}

.main-video-bg::before {
    position: absolute;
    content: "";
    z-index: -1;
    right: -20%;
    bottom: 30px;
    width: 960px;
    height: 960px;
    background-image: url(../img/svg/blue-shap.svg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 0;
}

.underutilized-video .poster {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.underutilized-video .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 540px;
}


.underutilized-video .overlay-play-button .play-btn {
    background-color: transparent;
    width: 80px;
    height: 80px;
}

.underutilized-video .overlay-play-button .play-btn img {
    filter: invert(0) brightness(10);
}

.underutilized-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: opacity 0.3s ease-in-out;
}

.underutilized-video .video-overlay:before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.35);
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.underutilized-video .video-overlay img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.underutilized-video .overlay-play-button {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
}

.underutilized-video .overlay-play-button button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}
.case-study-bg{position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: -2;}
.case-study-bg img{margin: auto;}
.case-study-sec.common-sec{padding-top: 180px;}
.case-study-sec{position: relative;z-index: 2;}
.case-study-sec .sec-head{max-width: 816px;margin-inline: auto;margin-bottom: 100px;}

.underutilized-video.case-study-video{padding: 0;border: none;background: unset; border-radius: 0;height: 100%;}
.underutilized-video.case-study-video .poster{border-radius: 16px;display: block;height: 100%;}
.underutilized-video.case-study-video .overlay-play-button .play-btn{width: auto;height: auto;}
.underutilized-video.case-study-video .overlay-play-button{display: block;bottom: 42px;right: 42px;}
.case-study-video .video-icon{box-shadow: 0px 0px 120px 0px #0000001A;backdrop-filter: blur(40px);width: 42px;
height: 42px;}
.case-study-video .video-icon .icon{background-color: #587AEA;}
.underutilized-video.case-study-video .video-overlay:before{background: rgba(0, 0, 0, 0.15);}
.project-label{font-size: 13px;font-weight: 500;line-height: 1.2; opacity: 0.6;display: block;margin-bottom: 8px;}
.project-title{font-size: 28px;font-weight: 500;line-height: 1.2;margin-bottom: 32px;}
.case-study-project ul{display: flex;flex-wrap: wrap;gap: 15px;}
.case-study-project li{flex: 1 1 calc(50% - 15px);}
.case-study-project li span{font-size: 16px;font-weight: 400;line-height: 1.2;}
.case-study-project li span img{width: 130px;}
.read-more{border-bottom: 1px solid;border-image-source: linear-gradient(90deg, #25D2A4 0%, #587AEA 100%);border-image-slice: 1;
color: #fff;transition: all 0.4s ease-in-out;padding: 9px 0;font-size: 16px;font-weight: 600;text-transform: uppercase; }
.read-more:hover{color: #25D2A4;}
.case-study-text{padding: 60px;}
.case-study-list .row{padding: 8px;background-color: rgba(255, 255, 255, 0.1);box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
border-radius: 24px;margin-bottom: 42px;}
.case-study-list .row:last-child{margin-bottom: 0;}
.case-study-top{margin-bottom: 30px;}
.case-study-sec::after{position: absolute;
    content: "";
    z-index: -1;
    right: -18%;
    top: -10%;
    width: 100%;
    height: 50%;
    background-image: url(../img/svg/blue-shap.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;}
.case-study-sec::before{position: absolute;
    content: "";
    z-index: -1;
    left: -10%;
    bottom: -20%;
    width: 100%;
    height: 100%;
    background-image: url(../img/box-shadow-green.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;}  
.case-study-img{padding: 8px;border-radius: 24px;background-color: rgba(255, 255, 255, 0.1);box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(40px);aspect-ratio: 1184/666;max-width: 1184px;margin-inline: auto;}
.case-study-img img{width: 100%;height: 100%;object-fit: cover;border-radius: 16px;}
.case-study-detail .project-title{font-size: 40px;font-weight: 600;}
.case-study-detail .project-label{margin-bottom: 12px;}
.case-study-sec.case-study-detail::before{display: none;}
.case-study-sec.case-study-detail::after{height: 100%;}
.sec-head.style-2 .sec-sub-title{font-size: 28px;font-weight: 300;margin-bottom: 10px;}
.sec-head.style-2 .sec-title{font-size: 33px;}
.grid-stability{border-radius: 42px;border: 1px solid rgba(255, 255, 255, 0.2);background-color: #01081F;}
.grid-stability-box{padding: 28px 42px;height: 100%;border-right: 1px solid rgba(255, 255, 255, 0.2);}
.grid-stability-title{font-size: 19px;font-weight: 500;line-height: 1.2;color: #fff;margin-bottom: 16px;}
.grid-stability-box p{font-size: 16px;font-weight: 400; line-height: 1.4;color: #fff;opacity: 0.6;}
.grid-stability .row>*:last-child .grid-stability-box{border-right: none;}
.challenges-sec .square-box-bg{top: -15%;}
.challenges-sec::before{position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    bottom: -64%;
    width: 200%;
    height: 230%;
    background-image: url(../img/box-shadow-green.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;}
.challenges-list{max-width: 442px;}
.challenges-list ul li {
    font-weight: 400;
    font-size: 23px;
    line-height: 1.4;
    color: #fff;
    position: relative;
    padding-left: 30px;
    margin-bottom: 42px;
}

.challenges-list ul li:last-child {
    margin-bottom: 0;
}

.challenges-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/svg/list-icon.svg);
}
.challenges-maintenance{position: relative;}
.challenges-img{width: 100%;aspect-ratio: 946/532; border-radius: 16px;overflow: hidden;}
.case-study-img img{width: 100%;height: 100%;object-fit: cover;}
.challenges-text{position:absolute;bottom: 8px;left: 8px;right: 8px; display: flex;gap: 42px;border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.1);box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(40px);padding: 40px;border-radius: 24px;z-index: 2;}
.challenges-num{font-size: 48px;font-weight: 300;line-height: 1.2;min-width: 200px;}
.challenges-text p{font-size: 23px;font-weight: 400;line-height: 1.4;}
.digital-twins-box{background-color: rgba(255, 255, 255, 0.1);box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.1);backdrop-filter: blur(40px);
border-radius: 24px;padding: 40px 24px;position: relative;height: 100%;display: flex;flex-wrap: wrap;align-content: space-between;}
.digital-twins-title{font-size: 19px;font-weight: 500;line-height: 1.2;margin-bottom: 8px;}
.digital-twins-text p{font-size: 16px;font-weight: 400;line-height: 1.4;opacity: 0.6;}
.step-num{font-size: 48px;font-weight: 300;line-height: 1;display: block;margin-bottom: 200px;}
.digital-twins-img{position: absolute;top: 0;left: 0;right: 0;margin: auto;width: 100%;height: 100%;max-height: 306px;}
.digital-twins-img img{margin: auto;mix-blend-mode: color-dodge;}
.digital-twins-sec{position: relative;}
.digital-twins-sec::before{position: absolute;content: "";top:15%;left: 0;right: 0;width: 100%;height: 100%;min-height: 1202px;
background: url(../img/digital-twins-bg.png) no-repeat center;background-size: contain; z-index: -1;}
.overview-sec .container{max-width: 1020px;margin-inline: auto;}
.overview-sec .case-study-img{border: 1px solid rgba(255, 255, 255, 0.1);max-width: 100%;}
.overview-sec::after{
    position: absolute;
    content: "";
    z-index: -1;
    right: 0;
    top: -64%;
    width: 200%;
    height: 230%;
    background-image: url(../img/box-shadow-green-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.demo-video-text p{font-size: 23px;}
.solution-sec .meet-digital-list{background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(40px);
    mix-blend-mode: plus-lighter;min-height: 415px;align-items: start;}
.solution-sec .meet-digital-list::before{display: none;}
.solution-sec .bg-video{opacity: 1;}

.solution-sec::after{position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    top: -25%;
    width: 200%;
    height: 200%;
    background-image: url(../img/blue-shap-left.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;}

:root {
    --solution-width: 1440;
}

.solution-row {
    display: flex;
    white-space: nowrap;
    width: max-content;
    gap: calc(10/var(--solution-width)* 1440px);
    will-change: transform;
    padding: 24px;
}

.solution-list {
    display: flex;
    align-items: center;
    gap: calc(10/var(--solution-width)* 1440px);
    white-space: nowrap;
    width: max-content;
    will-change: transform;
    animation: partners-hscrollLeft 30s linear infinite
}

.solution-list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.solution-list li{background-color: rgba(255, 255, 255, 0.1);border-radius: 99px;padding: 16px 40px;
font-size: 16px;font-weight: 600;line-height: 1;text-transform: uppercase;}
.points-text-box{display: flex;gap: 20px;}
.points-text-box .icon{width: 10px;height: 10px;flex: 0 0 10px;margin-top: 5px;}
.points-title{font-size: 19px;font-weight: 500;line-height: 1.2;margin-bottom: 18px;}
.points-text p{opacity: 0.6;}
.solution-sec .sec-con{max-width: 370px;}
.solution-sec .sec-con p{opacity: 0.8;}
.usp-sec .container{max-width: 1020px;}
.competitive-table.usp-table th{justify-content: start;}
.competitive-table.usp-table th:nth-child(3){background-color: #25D2A4;}
.competitive-table.usp-table td{padding: 20px 24px;}
.competitive-table.usp-table tbody tr td:first-child{font-size: 19px;color: #fff;}
.usp-sec{position: relative;z-index: 2;}
.square-box-bg{position: absolute;background: url(../img/square-box-img.png) no-repeat center;
width: 100%;height: 100%;min-height: 1062px; z-index: -1;top: -5%;left: 0;right: 0;}
.features-sec{padding: 0 24px;padding-bottom: 8px;position: relative;}
.features-box-main{padding: 120px 0; background-color: rgba(255, 255, 255, 0.1);border-radius: 60px;
position: relative;max-width: 1872px;margin-inline: auto;
background-image: url(../img/features-bg-right.png);background-repeat: no-repeat;background-size: cover !important;background-position: center right -70px;}
.features-list-main{margin: 0 -4px;}
.features-item{width: 33.33%;padding: 0 4px;height: 100%;}
.features-list-main .slick-track{display: flex;}
.features-slider:not(.slick-initialized){display: flex;}
.features-slider:not(.slick-initialized) .features-item{width: 33.33%;height: auto;}
.features-list-main .slick-slide{height: auto;}
.features-list-main .slick-slide>div{height: 100%;}
.features-box{border-radius: 24px;background-color: rgba(255, 255, 255, 0.2);box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(40px);height: 100%;overflow: hidden;}
.features-box-img{width: 100%;aspect-ratio: 474/267;}
.features-box-img img{width: 100%;height: 100%;object-fit: cover;}
.features-box-text{padding: 40px 24px;}
.features-title{font-size: 23px;font-weight: 500;line-height: 1.2;margin-bottom: 36px;}
.features-con li{margin-bottom: 18px;}
.features-con li:last-child{margin-bottom: 0;}
.features-con-title{font-size: 13px;font-weight: 500;line-height: 1.2;margin-bottom: 8px;}
.features-con p{opacity: 0.6;}
.features-con-list{margin-top: 38px;}
.features-con-list ul{display: flex;flex-wrap: wrap;gap: 4px 24px;}
.features-con-list ul>*{flex: 1 1 calc(50% - 24px);position: relative;padding-left: 20px;font-size: 16px;font-weight: 400;line-height: 1.4;}
.features-con-list li::before{position: absolute;content: "";background: url(../img/svg/arrow-list.svg) no-repeat; width: 5px;height: 10px;
top:5px;left: 0;}
.features-sec:nth-child(even) .features-box-main{background-image: url(../img/features-bg-left.png);background-position: center left -70px;}
.features-box-main:before{position: absolute;
    content: "";
     background-repeat: no-repeat !important;
    background-size: contain !important;
    z-index: -1;}
.features-sec .features-box-main::before{
    left: -10%;
    right: inherit;
    top: 0;
    width: 200%;
    height: 230%;
    background-image: url(../img/box-shadow-green.svg);
    background-position: left;}
.features-sec + .features-sec .features-box-main:before{display: none;}
.features-sec + .features-sec + .features-sec .features-box-main:before{
    display: block;
    right: -10%;
    left: inherit;
    top: -78%;
    width: 100%;
    height: 200%;
    background-image: url(../img/box-shadow-green-right.svg);
    background-position: right;}

.features-sec + .features-sec + .features-sec + .features-sec .features-box-main:before{
    display: block;
    left: -10%;
    right: inherit;
    top: -20%;
    width: 150%;
    height: 150%;
    background-image: url(../img/blue-shap-left.svg);
    background-position: left;}


.business-model-table.competitive-table th:nth-child(1){color: #fff;}
.business-model-table.competitive-table th{font-size: 19px;padding: 16px 24px;}
.business-model-table.competitive-table th:nth-child(3){background-color: #25AAD2;
border-radius: 12px;}
.business-model-table.competitive-table td:nth-child(3){background: linear-gradient(270deg, rgba(0, 0, 0, 0) -0.1%, rgba(88, 200, 234, 0.5) 98.53%);
    border-left: 6px solid #25AAD2;
    border-radius: 12px 0 0 12px;}
.business-model-table.competitive-table td:nth-child(3) div::before {
    background: #FFFFFF;
    box-shadow: 0px 0px 93.366px #25AAD2, 0px 0px 53.352px #25AAD2, 0px 0px 31.122px #25AAD2, 0px 0px 15.561px #25AAD2, 0px 0px 4.446px #25AAD2;
    backdrop-filter: blur(1.1115px);
    border-radius: 9999px;
}

.business-model-table.competitive-table th:nth-child(4){background-color: #25D2A4;}
.business-model-table.competitive-table td:nth-child(4){background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(37, 210, 164, 0.5) 99.89%);
    border-left: 6px solid rgba(37, 210, 164, 1);
    border-radius: 12px 0 0 12px;}
.business-model-table.competitive-table td:nth-child(4) div::before {
    background: #FFFFFF;
    box-shadow: 0px 0px 93.366px #45F1C3, 0px 0px 53.352px #45F1C3, 0px 0px 31.122px #45F1C3, 0px 0px 15.561px #45F1C3, 0px 0px 4.446px #45F1C3;
    backdrop-filter: blur(1.1115px);
    border-radius: 9999px;
}
.business-model-table.competitive-table.usp-table tbody tr td:first-child{font-size: 13px;}
.business-model-table.competitive-table td div{font-size: 13px !important;}
.business-model-table.competitive-table tbody tr td div::before{width: 12px !important;height: 12px !important;}
.business-model-table.competitive-table.usp-table td{padding: 9px 24px;border-radius: 6px 0 0 6px;border-width: 4px;}
.business-model-table.competitive-table th:nth-child(2),.business-model-table.competitive-table th:nth-child(3){border-radius: 9px;}
.business-model-table.competitive-table th:last-child{border-radius: 9px 42px 0 9px;}
.business-model-table.competitive-table tbody tr, .business-model-table.competitive-table thead tr{gap: 2px;margin-bottom: 2px;}

.business-model-table.competitive-table td:nth-child(2) div, 
.business-model-table.competitive-table td:nth-child(3) div, 
.business-model-table.competitive-table td:nth-child(4) div{
padding-left: 24px;
}
.business-model-table{position: relative;z-index: 2;}
.business-model-table::after{position: absolute;
    content: "";
    z-index: -1;
    right: -50%;
    bottom: -75%;
    width: 160%;
    height: 160%;
    background-image: url(../img/box-shadow-green-center.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;}

.case-listing-img{width: 100%;border-radius: 16px;height: 100%; overflow: hidden;}
.case-listing-img img{width: 100%;height: 100%;object-fit: cover;}
.substations-sec .key-features-text{max-width: 500px;padding: 20px 18px;z-index: 2;}
.substations-sec .key-features-text p{font-size: 23px;color: #fff;margin-bottom: 22px;}
.roi-num{font-size: 48px;font-weight: 300;line-height: 1.2;}
.substations-sec .key-features-box.style-2 .key-features-img{margin-bottom: 0;margin-top: -70px;}
.investment-title{font-size: 23px;font-weight: 500;line-height: 1.2;margin-bottom: 25px;}
.investment-cost-list li{margin-bottom: 12px;display: flex;gap: 16px;}
.investment-cost-list li:last-child{margin-bottom: 0;}
.investment-cost-list li>*{flex: 1;}
.investment-cost-list small{font-size: 19px;font-weight: 500;line-height: 1.2; max-width: 163px;}
.investment-cost-list small ~ small{font-size: 16px;line-height: 1.2;opacity: 0.6;max-width: max-content;}
.investment-cost-sec .challenges-list{max-width: 100%;}
.investment-cost-sec .challenges-list ul li{font-size: 19px;padding-left: 26px;margin-bottom: 8px;}
.investment-cost-sec .challenges-list ul li::before{top: 8px;}
.investment-cost-sec .challenges-list ul li:last-child{margin-bottom: 0;}