:root {
    --theme-color: #f1592a;
    --secondary-color: #131224;
    --secondary-color2: #2d2d38;
    --white: #fff;
    --black: #000;
    --gray999: #999;
    --gray888: #888;
    --gray777: #777;
    --gray666: #666;
    --gray555: #555;
    --gray222: #222;
    --border-color: #313131;
    --border-color2: #ececec;
    --bg-gray: #f0f0f0;
    --bg-gray2: #f2f2f2;
    --pink: #e71992;
    --blue: #2a5ee4;
    --purple: #9600ff;

    --main-font: "Poppins", sans-serif;;
    --p-font: "Inter", sans-serif;
    --g-font: "Material Icons";

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 900;

    --transition: 0.5s all ease-in-out;
    --style-transition: all 0.25s cubic-bezier(.93,-0.16,0,1.35);
    --small-transition: 0.2s all ease-in-out;

    --small-radius: 5px;
    --common-radius: 10px;
    --large-radius: 20px;
}

html,
body,
div,
span,
applet,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
picture,
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%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body{
    margin: 0;
    padding: 0;
    font-family: var(--p-font);
    background-color: var(--black);  
    overflow-x: hidden;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
a:hover {
    color: var(--theme-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

li {
    margin: 0;
    padding: 0;
}

p {
    padding: 0;
    color: var(--gray555);
    font-size: 16px;
    font-family: var(--p-font);
    margin: 0 0 15px 0;
    font-weight: var(--fw-regular);
    line-height: 2;
}
p > b {
    font-weight: var(--fw-bold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: var(--main-font);
    line-height: 1.2;
}

input,
select,
button {
    outline: none !important;
}

textarea {
    outline: none;
}

textarea:focus {
    outline: none !important;
}

:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--black);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--theme-color);
}

::-webkit-input-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

:-moz-placeholder {
    opacity: 1;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: none;
}
.form-control::placeholder{
    color: var(--gray999);
    opacity: 0.4;
}


.grdBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    border: none;
    border-radius: 999px;
    color: #fff;
    font-family: var(--main-font);
    font-size: 18px;
    font-weight: var(--fw-medium);
    text-decoration: none;
    cursor: pointer;
    text-transform: capitalize;

    background: linear-gradient(
        90deg,
        #4D5BFF,
        #B000FF,
        #D76A93,
        #4D5BFF
    );
    background-size: 300% 100%;
    background-position: 0% 50%;

    transition: background-position 0.8s ease;
}

.grdBtn:hover {
    color: var(--white);
    background-position: 100% 50%;
    filter: brightness(1.2);
    -webkit-filter: brightness(1.2);
    animation: gradientFlow 3s linear infinite;
    -webkit-animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

/* Cursor Styles */
html,
body{
    min-height: 100%;
}
.cursor{
     position: fixed;
     width: 20px;
     height: 20px;
     margin-left: -20px;
     margin-top: -20px;
     border-radius: 50%;
     border: 2px solid var(--theme-color);
     transform-origin: center center;
     pointer-events: none;
     z-index: 1000;
     transition: transform .2s ease;
     -webkit-transition: transform .2s ease;
     -moz-transition: transform .2s ease;
     -ms-transition: transform .2s ease;
     -o-transition: transform .2s ease;
}

.grow, .grow-small{
    background-color: var(--white);
    mix-blend-mode: difference;
    border: none;
    transform: scale(5);
    -webkit-transform: scale(5);
    -moz-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
}
.grow-small{
    transform: scale(5);
    -webkit-transform: scale(5);
    -moz-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
}

/* Cursor Styles */

/* Common */
.cmContainer{
    max-width: 1600px;
    padding: 0 80px;
    margin: 0 auto;
    width: 100%;
}
.cmContainerFluid{
    max-width: 1920px;
    padding: 0 40px;
    margin: 0 auto;
    width: 100%;
}
.cmContainerBox{
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.titleBox{
    display: flex;
    flex-direction: column;
}
.mainTitle{
    font-size: 32px;
    font-weight: var(--fw-medium);
    color: var(--white);
    text-transform: capitalize;
}
.subTitle{
    font-size: 15px;
    color: var(--gray999);
    margin: 0 0 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.titleBox.withbtn{
    position: relative;
    padding: 0 300px 0 0;
}
.titleBox.withbtn > .grdBtn{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.comMarDown{
    margin-bottom: 80px;
}
/* Common Ends */

/* Main Loader */
body.noscroll{
    overflow: hidden !important;
    min-height: auto !important;
    max-height: 100vh !important;
    touch-action: none !important;
}
body.noscroll {
    overflow: hidden !important;
}

html.noscroll {
    overflow: hidden !important;
}
.cmMainLoader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--black);
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmMainLoader.active {
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

/* SVG Animation */
.cmMainLoader svg{
    width: 280px;
}
svg [class^="cmLoader-"] {
    fill: transparent;
}

/* Orange Animation */
@keyframes fillOrange {
    0%, 20% {
        fill: transparent;
    }
    30%, 80% {
        fill: #f15a2b;
    }
    100% {
        fill: transparent;
    }
}

/* White Animation */
@keyframes fillWhite {
    0%, 20% {
        fill: transparent;
    }
    30%, 80% {
        fill: #fff;
    }
    100% {
        fill: transparent;
    }
}

/* Orange Parts */
.cmLoader-1,
.cmLoader-2,
.cmLoader-5,
.cmLoader-10 {
    animation: fillOrange 2.8s cubic-bezier(.55,.085,.68,.53) infinite;
}

/* White Parts */
.cmLoader-3,
.cmLoader-4,
.cmLoader-6,
.cmLoader-7,
.cmLoader-8,
.cmLoader-9,
.cmLoader-11 {
    animation: fillWhite 2.8s cubic-bezier(.55,.085,.68,.53) infinite;
}

/* Stagger Delays */
.cmLoader-1  { animation-delay: 0s; }
.cmLoader-2  { animation-delay: .1s; }
.cmLoader-3  { animation-delay: .2s; }
.cmLoader-4  { animation-delay: .3s; }
.cmLoader-5  { animation-delay: .4s; }
.cmLoader-6  { animation-delay: .5s; }
.cmLoader-7  { animation-delay: .6s; }
.cmLoader-8  { animation-delay: .7s; }
.cmLoader-9  { animation-delay: .8s; }
.cmLoader-10 { animation-delay: .9s; }
.cmLoader-11 { animation-delay: 1s; }
/* SVG Animation Ends */

/* Loader Bg */
.mainLoaderBg {
    position: fixed;
    inset: 0;
    z-index: -1;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.mainLoaderBg .loader {
    position: relative;

    width: 500px;
    height: 350px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Loader Bg Ends */
/* Main Loader Ends */

/* Header */
.cmHeader{
    position: fixed;
    width: calc(100% - 80px);
    left: 50%;
    top: 40px;
    min-height: 100px;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    background-color: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--border-color);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: 10;
    backdrop-filter: blur(15px);
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
}
.cmHeader.sticky{
    top: 0;
    border-top: 0px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.cmHeader > .in{
    width: 100%;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cmHeader .cmLt,
.cmHeader .cmRt{
    width: 20%;
}
.cmHeader .cmRt{
    display: flex;
    justify-content: flex-end;
}
.cmHeader .cmMdl{
    width: 60%;
}
.cmHeader .cmLt > .logoBox{
    width: 150px;
    display: block;
}
.cmHeader .navbar{
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}
.cmHeader .navbar ul{
    display: flex;
    margin: 0 -20px;
}
.cmHeader .navbar ul > li{
    padding: 0 20px;
}
.cmHeader .navbar ul > li > a{
    color: var(--white);
    font-size: 17px;
    text-transform: capitalize;
}
.cmHeader .navbar ul > li.active > a,
.cmHeader .navbar ul > li > a:hover{
    color: var(--theme-color);
}
.cmHeader .comBtn{
    max-width: 220px;
    width: 100%;
    height: 55px;
    padding: 0 30px;
    border: 1px solid var(--border-color2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    text-transform: capitalize;
    color: var(--white);
}
.cmHeader .comBtn:hover{
    color: var(--theme-color);
    border-color: var(--theme-color);
}
.cmHeader .comBtn .material-symbols-outlined{
    font-weight: 300;
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    color: var(--white);
    transform-style: preserve-3d;
}
.cmHeader .comBtn:hover .material-symbols-outlined{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
/* Header Ends */

/* Banner Section */
.bannerSec{
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0 auto;
}
.bannerSec > .in{
    max-width: 1920px;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    position: relative;
}
.bannerSec > .in .cmLt{
    width: 45%;
    position: absolute;
    top: 55%;
    left: 7em;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 1;
    padding: 80px 0 0 0;
}
.bannerSec > .in .cmRt{
    width: 72%;
    position: relative;
}
.bannerSec .videoBox{
    width: 100%;
    height: 100%;
    position: relative;
}
.bannerSec .videoBox::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    top: 0;
    background: #000000;
    background: -webkit-linear-gradient(180deg,rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(180deg,rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(180deg,rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
}
.bannerSec .videoBox::after{
    content: '';
    position: absolute;
    width: 400px;
    height: 100%;
    left: 0;
    top: 0;
    background: #000000;
    background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
}
.bannerSec .videoBox > video{
    object-fit: cover;
    object-position: 12em 0;
}

.bannerSec .textDiv{
    width: 100%;
    position: relative;
}

/* Wrapper (moves with mouse) */
.bannerSec .textDiv > .triangle-wrap{
    position: absolute;
    display: block;
    pointer-events: none;
}

/* Triangle (rotates) */
.bannerSec .textDiv > .triangle-wrap > .trianle{
    width: 0;
    height: 0;
    display: block;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 22px solid var(--white);
    transform-origin: center center;
    will-change: transform;
}

/* Triangle 1 */
.bannerSec .textDiv > .triangle-wrap.triangle-1{
    top: -70px;
    left: 0;
}

.bannerSec .textDiv > .triangle-wrap.triangle-1 > .trianle{
    border-right-color: var(--purple);
}

/* Triangle 2 */
.bannerSec .textDiv > .triangle-wrap.triangle-2{
    top: -40px;
    right: 300px;
}

.bannerSec .textDiv > .triangle-wrap.triangle-2 > .trianle{
    border-right-color: var(--pink);
}

/* Triangle 3 */
.bannerSec .textDiv > .triangle-wrap.triangle-3{
    bottom: 0;
    right: 250px;
}

.bannerSec .textDiv > .triangle-wrap.triangle-3 > .trianle{
    border-top-width: 30px;
    border-bottom-width: 30px;
    border-right-width: 50px;
    border-right-color: var(--theme-color);
}

.bannerSec .textDiv .mainTitle{
    font-size: 100px;
    line-height: 1;
    color: white;
    font-weight: var(--fw-semibold);
    margin: 0 0 40px;
}
.bannerSec .textDiv > .mainTitle > span{
    font-size: 6rem;
    background: linear-gradient(90deg, #8A00FF 0%,  #B11CFF 20%,  #FF007A 50%,  #FF5A5F 75%,  #FF9A1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.bannerSec .textDiv > .firstLine{
    text-transform: uppercase;
    margin: 0 0 30px 0;
    font-size: 25px;
    letter-spacing: 4.5px;
    line-height: 1;
    font-family: var(--main-font);
    color: var(--theme-color);
}
.bannerSec .textDiv > .secondLine{
    margin: 0;
    font-size: 35px;
    letter-spacing: 4.5px;
    line-height: 1;
    color: var(--white);
    margin: 0 0 80px;
}

.bannerSec .scrollDown{
    position: absolute;
    left: -70px;
    bottom: 170px;
    color: var(--gray888);
    font-size: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatY 2s ease-in-out infinite;
    -webkit-animation: floatY 2s ease-in-out infinite;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}
.bannerSec .scrollDown > .material-symbols-outlined{
    color: var(--white);
}
@keyframes floatY {
    0% {
        transform: translateY(0)  rotate(-90deg);
        -webkit-transform: translateY(0)  rotate(-90deg);
        -moz-transform: translateY(0)  rotate(-90deg);
        -ms-transform: translateY(0)  rotate(-90deg);
        -o-transform: translateY(0)  rotate(-90deg);
    }
    50% {
        transform: translateY(20px)  rotate(-90deg);
        -webkit-transform: translateY(20px)  rotate(-90deg);
        -moz-transform: translateY(20px)  rotate(-90deg);
        -ms-transform: translateY(20px)  rotate(-90deg);
        -o-transform: translateY(20px)  rotate(-90deg);
}
    100% {
        transform: translateY(0)  rotate(-90deg);
        -webkit-transform: translateY(0)  rotate(-90deg);
        -moz-transform: translateY(0)  rotate(-90deg);
        -ms-transform: translateY(0)  rotate(-90deg);
        -o-transform: translateY(0)  rotate(-90deg);
    }
}

.bannerSec .heroCardWrap{
    width: 300px;
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.heroCardWrap .heroCard {
    background-color: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(5px);
    padding: 30px 25px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
}

.heroCard {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0px 0px rgba(255, 255, 255, 0);
  position: relative;
  overflow: hidden;
}

.heroCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.heroCard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}


.heroCardWrap .heroCard:hover{
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    filter: brightness(1.2);
    -webkit-filter: brightness(1.2);
}
.heroCard > .in {
    display: flex;
}
.heroCard .icon{
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.heroCard .icon > .material-symbols-outlined{
    font-weight: 300;
    font-size: 30px;
}
.heroCard.first .icon > .material-symbols-outlined{
    color: var(--pink);
}
.heroCard.second .icon > .material-symbols-outlined{
    color: var(--theme-color);
}
.heroCard.third .icon > .material-symbols-outlined{
    color: var(--blue);
}
.heroCard .cmCnt{
    width: calc(100% - 55px);
    padding: 0 0 0 20px;
}
.heroCard .cmCnt > .mainTitle{
    font-size: 50px;
    color: var(--white);
    margin: 0;
    margin: 0 0 5px;
    line-height: 1;
}
.heroCard .cmCnt > p{
    font-size: 15px;
    color: var(--gray999);
    text-transform: capitalize;
    line-height: 1;
}
.heroCard .cmCnt > span{
    width: 100%;
    height: 3px;
    background-color: var(--gray555);
    display: block;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    position: relative;
}
.heroCard .cmCnt > span::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.heroCard:hover .cmCnt > span::before{
    width: 100%;
}
.heroCard.first .cmCnt > span::before{
    background-color: var(--pink);
}
.heroCard.second .cmCnt > span::before{
    background-color: var(--theme-color);
}
.heroCard.third .cmCnt > span::before{
    background-color: var(--blue);
}
/* Banner Section Ends */

/* Trusted Leader Section */
.trustLogoSec {
    margin-top: -10px;
    position: relative;
    z-index: 1;
}
.trustLogoSec > .in{
    background-color: var(--secondary-color);
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px 40px;
}
.trustLogoSec > .in > .cmLt{
    width: 300px;
    padding: 0 0 0 20px;
}
.trustLogoSec > .in > .cmRt{
    width: calc(100% - 300px);
    position: relative;
}
.trustLogoSec > .in > .cmRt::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    background: #131224;
    background: -webkit-linear-gradient(90deg, rgba(19, 18, 36, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(90deg, rgba(19, 18, 36, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(90deg, rgba(19, 18, 36, 1) 30%, rgba(0, 0, 0, 0) 100%);
}
.trustLogoSec > .in > .cmRt::after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    background: #131224;
    background: -webkit-linear-gradient(270deg, rgba(19, 18, 36, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(270deg, rgba(19, 18, 36, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(270deg, rgba(19, 18, 36, 1) 30%, rgba(0, 0, 0, 0) 100%);
}
.trustLogoSec .logoSwiper .imgBox > img{
    filter: grayscale(100) invert(1);
    -webkit-filter: grayscale(100) invert(1);
    opacity: 0.5;
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
}

.swiper-wrapper{
    transition-timing-function: linear !important;
}
/* Trusted Leader Section Ends */

/* About Us Section */
.aboutSec > .in{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.aboutSec > .in > .cmLt,
.aboutSec > .in > .cmRt{
    width: 50%;
}
.aboutSec > .in > .cmLt > .videoBox{
    width: 100%;
    margin: 0 0 0 -10em;
    position: relative;
}
.aboutSec > .in > .cmLt > .videoBox::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 150px;
    left: 0;
    bottom: 0;
    background: #000000;
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
}
.aboutSec .titleBox{
    margin: 0 0 80px;
}
.aboutSec .textDiv > p{
    font-size: 32px;
    line-height: 2;
    margin: 0 0 80px;
    color: var(--gray222);
}
/* About Us Section Ends */

/* Service Section */
.servSec{
    position: relative;
    background-color: var(--black);
    padding: 0 0 100px;
    border-bottom: 1px solid var(--secondary-color);
}
.servSec > *{
    position: relative;
}
.servSec .imgBox{
    position: absolute;
    top: -13em;
    right: 6em;
    width: 310px;
    animation: floatYnoRotate 5s ease-in-out infinite;
    -webkit-animation: floatYnoRotate 5s ease-in-out infinite;
}
.servSec .imgBox > img{
    filter: blur(10px);
    -webkit-filter: blur(10px);
}
@keyframes floatYnoRotate {
    0% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
    50% {
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
}
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

.servSec .titleBox{
    margin: 0 0 60px;
}

.serviceCardWrap{
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
}
.serviceCardWrap > .serviceCard{
    width: calc(100% / 4);
    padding: 20px;
}

.serviceCard.serviceCard-2,
.serviceCard.serviceCard-4{
    margin-top: 80px;
}

.serviceCardWrap > .serviceCard > .in {
    padding: 40px 30px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);    
    overflow: hidden;
    position: relative;
}
.serviceCardWrap > .serviceCard > .in > .circleGlow{
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    filter: blur(100px);
    -webkit-filter: blur(100px);
    opacity: 0.8;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.serviceCardWrap > .serviceCard > .in:hover > .circleGlow{
    transform: scale(10);
    -webkit-transform: scale(10);
    -moz-transform: scale(10);
    -ms-transform: scale(10);
    -o-transform: scale(10);
    opacity: 0.15;
}
.serviceCard.serviceCard-1 > .in > .circleGlow{
    background-color: var(--pink);
}
.serviceCard.serviceCard-2 > .in > .circleGlow{
    background-color: var(--blue);
}
.serviceCard.serviceCard-3 > .in > .circleGlow{
    background-color: var(--theme-color);
}
.serviceCard.serviceCard-4 > .in > .circleGlow{
    background-color: var(--purple);
}

.serviceCard.serviceCard-1 > .in{
    border: 1px solid #36212b;
}
.serviceCard.serviceCard-2 > .in{
    border: 1px solid #1f1f40;
}
.serviceCard.serviceCard-3 > .in{
    border: 1px solid #3e1b14;
}
.serviceCard.serviceCard-4 > .in{
    border: 1px solid #28123e;
}

.serviceCard .iconBox{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    margin: 0 0 30px;
}
.serviceCard.serviceCard-1 .iconBox{
    background-color: #36212b;
}
.serviceCard.serviceCard-2 .iconBox{
    background-color: #1f1f40;
}
.serviceCard.serviceCard-3 .iconBox{
    background-color: #3e1b14;
}
.serviceCard.serviceCard-4 .iconBox{
    background-color: #28123e;
}

.serviceCard .iconBox > svg{
    width: 35px;
}
.serviceCard.serviceCard-1 .iconBox > svg{
    fill: var(--pink);
}
.serviceCard.serviceCard-2 .iconBox > svg{
    fill: var(--blue);
}
.serviceCard.serviceCard-3 .iconBox > svg{
    fill: var(--theme-color);
}
.serviceCard.serviceCard-4 .iconBox > svg{
    fill: var(--purple);
}

.serviceCard .cmCnt{
    position: relative;
    z-index: 1;
}
.serviceCard .cmCnt > .mainTitle{
    font-size: 32px;
    text-transform: capitalize;
    font-weight: var(--fw-semibold);
    color: var(--white);
    margin: 0 0 17px;
}
.serviceCard .cmCnt > p{
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray999);
    margin: 0 0 20px;
}

.serviceCard .iconBtn{
    position: relative;
    left: 100%;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}
.serviceCard > .in:hover .iconBtn{
    background-color: rgba(255, 255, 255, 0.35);
}
.iconBtn{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transform-style: preserve-3d;
}
.iconBtn > .material-symbols-outlined{
    font-size: 23px;
    color: var(--white);
    font-weight: 300;
}
.iconBtn:hover{
    background-color: var(--theme-color) !important;
}
/* Service Section Ends */

/* Project Section */
.projectSec{
    width:100%;
    height: 100vh !important;
    overflow:hidden;
    position:relative;
    display:flex;
    align-items:center;
    justify-content: center;
    flex-direction: column;
    padding: 100px 0;
}
.projectSec > .projectIframe{
    position: absolute;
    bottom: 0;
    right: -200px;
    z-index: 0;
    width: 100%;
    height: 100vh;

}
.projectSec > .cmContainer{
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.projectSec.triggered > .cmContainer{
    margin: 30px 0 0 0;
}

.projCardWrap{
    display: flex;
    width: max-content;
    padding: 0 70px 100px;
    gap: 30px;
}

.projCard{
    flex:0 0 450px;
    overflow: hidden;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
}

.projectSec > .circleGlow{
    position: absolute;
    width: 60em;
    height: 62em;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #3a19a7;
    filter: blur(100px);
    -webkit-filter: blur(100px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    top: -45em;
    z-index: -1;
    opacity: 0;
}
.projectSec .titleBox {
    margin: 0 0 60px;
}

.projCard .imgBox{
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.projCard .imgBox > img{
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.projCard .cmCnt{
    background-color: var(--secondary-color);
    padding: 30px 100px 30px 30px;
    position: relative;
}
.projCard .cmCnt > .iconBtn{
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: var(--secondary-color2);
}
.projCard .cmCnt .mainTitle{
    font-size: 22px;
}
.projCard .cmCnt p{
    font-size: 15px;
    color: var(--gray999);
    text-transform: capitalize;
    margin: 0;
}

/* Project Section Ends */

/* FAQ Section */
.faqSec{
    margin-top: -100px;
    padding: 100px 0 30px 0;
    width: 100%;
    position: relative;
}
.faqSec::before{
    content: '';
    position: absolute;
    top: -170px;
    left: 0;
    width: 100%;
    height: 270px;
    background: #000000;
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
}
.faqSec .floatWrap{
    display:inline-block;
    animation: float 15s ease-in-out infinite;
    will-change: transform;
    -webkit-animation: float 15s ease-in-out infinite;
}

.faqSec .rotateWrap{
    animation: spin 45s linear infinite;
    transform-origin:center;
    will-change: transform;
    -webkit-animation: spin 45s linear infinite;
}

.floatWrap .rotateWrap img{
    display:block;
    width:100%;
    filter: blur(15px);
    -webkit-filter: blur(15px);
}

/* Up & Down */
@keyframes float{
    0%,100%{
        transform:translateY(0) scale(1);
        -webkit-transform:translateY(0) scale(1);
        -moz-transform:translateY(0) scale(1);
        -ms-transform:translateY(0) scale(1);
        -o-transform:translateY(0) scale(1);
}
    50%{
        transform:translateY(80%) scale(1.03);
        -webkit-transform:translateY(80%) scale(1.03);
        -moz-transform:translateY(80%) scale(1.03);
        -ms-transform:translateY(80%) scale(1.03);
        -o-transform:translateY(80%) scale(1.03);
}
}
/* Slow Rotation */
@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

.faqSec > * > .in{
    display: flex;
    gap: 40px;
}
.faqSec > * > .in > *{
    width: 50%;
    position: sticky;
    top: 20px;
}
.faqSec .cmLt > .titleBox{
    margin: 0 0 80px;
}
.faqSec .cmLt > .cmCnt{
    position: relative;
    z-index: 1;
}
.faqSec .cmLt > .cmCnt > p{
    font-size: 32px;
    line-height: 2;
    margin: 0 0 50px;
    color: var(--gray222);
}
.faqSec .cmLt > .videoBox{
    overflow: hidden;
    position: relative;
    margin: -50px 0 0 0;
}
.faqSec .cmLt > .videoBox::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 80px;
    left: 0;
    bottom: 0;
    background: #000000;
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
}
.faqSec .cmLt > .videoBox::before   {
    content: '';
    position: absolute;
    width: 115px;
    height: 100%;
    right: 0;
    top: 0;
    background: #000000;
    background: -webkit-linear-gradient(270deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(270deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(270deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}
.faqSec .cmLt > .videoBox > video{
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}

.faqSec .cmRt{
    position: relative;
}
.faqSec .cmRt > .floatWrap{
    width: 280px;
    position: absolute;
    right: -150px;
    top: 10em;
}
.faqSec .accordion{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.accordion > .accordion-item{
    width: 100%;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
    border: none;
    background-color: rgba(19, 18, 36, 0.23);
    backdrop-filter: blur(5px);
}
.accordion-button{
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 17px;
    padding: 20px 60px 20px 20px;
    position: relative;
}
.accordion-button > span{
    position: absolute;
    right: 20px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.accordion-button > span::before,
.accordion-button > span::after{
    content: '';
    position: absolute;
    background-color: var(--white);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
}
.accordion-button > span::before{
    width: 100%;
    height: 2px;
}
.accordion-button > span::after{
    width: 2px;
    height: 100%;
}
.accordion-button:not(.collapsed){
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: none;
}
.accordion-button:not(.collapsed) > span::after{
    height: 0;
}
button:focus{
    outline: none !important;
    box-shadow: none !important;
}
.accordion-button::after{
    display: none;
}
.accordion-body > p{
    font-size: 16px;
    color: var(--white);
    line-height: 2;
    margin: 0;
}
/* FAQ Section Ends */

/* Testimony Section */
.testiSec{
    min-height: 100vh;
    position: relative;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;
    min-height: 100vh;
    padding: 80px 0 0 0;
    margin: 0 auto 100px;
}

.testiSec .gradientFlow{
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 200%;
    pointer-events: none;

    background: #131224;
    background: -webkit-linear-gradient(180deg,rgba(19, 18, 36, 1) 0%, rgba(0, 0, 0, 0) 40%);
    background: -moz-linear-gradient(180deg,rgba(19, 18, 36, 1) 0%, rgba(0, 0, 0, 0) 40%);
    background: linear-gradient(180deg,rgba(19, 18, 36, 1) 0%, rgba(0, 0, 0, 0) 40%);

    z-index: 0;
}

.testiSec > *:not(.gradientFlow){
    position: relative;
    z-index: 1;
}

.testiSec .titleBox{
    margin: 0 0 80px;
}

.testiSec .inner{
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
}
.testiSec .inner > *{
    width: 50%;
    padding: 20px;
}
.testiSec .inner > .cmRt{
    position: relative;
    z-index: 2;
}
.testiSec .cmRt > .imgBox{
    position: relative;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
    height: 100%;
}
.testiSec .cmRt > .imgBox > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testiSec .cmRt > .imgBox .totalRateWrap{
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--blue);
    border-top-left-radius: var(--large-radius);
    box-shadow: 0 0 0 20px black;
    padding: 20px 25px;
    width: 200px;
}
.testiSec .cmRt > .imgBox .totalRateWrap::before,
.testiSec .cmRt > .imgBox .totalRateWrap::after{
    content: '';
    position: absolute;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;    
    width: 55px;
    height: 55px;
    background: #000;
    clip-path: path("M50 0V50H0A50 50 0 0 0 50 0Z");
}
.testiSec .cmRt > .imgBox .totalRateWrap::before{
    top: -69px;
    right: -12px;
}
.testiSec .cmRt > .imgBox .totalRateWrap::after{
    bottom: -8px;
    left: -67px;
}

.totalRateWrap > .mainTitle{
    margin: 0 0 30px;
    font-size: 60px;
    font-weight: var(--fw-semibold);
    line-height: 1;
}
.totalRateWrap > div{
    display: flex;
    flex-direction: column;
}
.totalRateWrap ul.stars{
    display: flex;
}
.totalRateWrap ul.stars .material-symbols-rounded{
    font-size: 17px;
    color: var(--white);
    font-variation-settings: 'FILL' 1;
}
.totalRateWrap p{
    color: var(--white);
    line-height: 1;
    font-size: 13px;
    margin: 0;
}

.swiper.testiSwiper{
    height: 100%;
}
.testiSwiper .testiCard{
    display: flex;
    flex-direction: column;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    position: relative;
    background-color: var(--secondary-color);
    padding: 40px 45px;
    height: 100%;
    overflow: hidden;
}
.testiCard > .iconBox{
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
}
.testiCard > .iconBox > svg{
    fill: var(--theme-color);
}
.testiCard > .cmCnt > p{
    color: var(--white);
    font-size: 23px;
    padding: 0 0 50px;
    margin: 0 0 50px;
    border-bottom: 1px dashed var(--border-color);
}
.testiCard .testiUser{
    position: relative;
    padding: 0 0 0 100px;
}
.testiCard .testiUser > .imgBox{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.testiCard .testiUser > .imgBox > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testiCard .testiName{
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testiCard .testiName > .mainTitle{
    font-size: 23px;
    line-height: 1;
    margin: 0 0 5px;
}
.testiCard .testiName > p{
    font-size: 15px;
    line-height: 1;
    margin: 0;
    color: var(--gray999);
}
.swiper.testiSwiper .swiper-pagination{
    display: flex;
    justify-content: flex-end;
    bottom: 30px;
    right: 30px;
    padding: 0 30px 0 0;
}
.swiper.testiSwiper .swiper-pagination .swiper-pagination-bullet{
    background-color: var(--theme-color);
    opacity: 1;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: width var(--transition);
    -webkit-transition: width var(--transition);
    -moz-transition: width var(--transition);
    -ms-transition: width var(--transition);
    -o-transition: width var(--transition);
}
.swiper.testiSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 40px;
}

.swiper.testiSwiper .swiper-slide .testiCard > .circleGlow{
    width: 350px;
    height: 350px;
    background-color: rgba(241, 89, 42, 0.4);
    position: absolute;
    right: -10em;
    top: -10em;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0;
    filter: blur(10em);
    -webkit-filter: blur(10em);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);    }

.swiper.testiSwiper .swiper-slide.swiper-slide-active .testiCard > .circleGlow{
    opacity: 1;
}
.swiper.testiSwiper .swiper-slide.swiper-slide-active .testiCard:hover > .circleGlow{
    transform: scale(10);
    -webkit-transform: scale(10);
    -moz-transform: scale(10);
    -ms-transform: scale(10);
    -o-transform: scale(10);
    opacity: 0.15;
}
.swiper.testiSwiper .swiper-slide.swiper-slide-active .testiCard{
    opacity: 1;    
    border: 1px solid rgba(241, 89, 42, 0.2);
}
/* Testimony Section Ends */

/* Footer */
.cmFooter{
    margin: 0 0 40px;
}
/* Grow Business Section */
.cmFooter .growBusiCard{
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 150px;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 60px;
    background-color: var(--secondary-color2);
}
.growBusiCard > .cmSpLine{
    position: absolute;
    width: 100%;
    height: 100%;
    right: -10em;
    top: 0;
    border-radius: 150px;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
}
.growBusiCard > .in{
    width: 100%;
}
.growBusiCard .titleBox .subTitle{
    text-transform: capitalize;
    letter-spacing: 1px;
    color: white;
    font-size: 17px;
    margin: 0;
    order: 2;
}
.growBusiCard .titleBox .mainTitle{
    margin: 0 0 7px;
    font-weight: var(--fw-semibold);
    font-size: 40px;
}
/* Grow Business Section Ends */

.cmFooter .inFooter{
    background-color: var(--secondary-color);
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    padding: 140px 80px 80px 80px;
    margin: -70px 0 0 0;
    overflow: hidden;
}

.inFooter {
    display: flex;
    gap: 40px;
}
.inFooter > .cmLt{
    width: 35%;
    display: flex;
    flex-direction: column;
}
.inFooter > .cmLt > .imgBox{
    width: 200px;
    margin: 0 0 40px;
}
.inFooter > .cmLt > .cmCnt{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.inFooter > .cmLt > .cmCnt > p{
    font-size: 20px;
    line-height: 1.7;
    color: var(--white);
    margin: 0 0 20px;
}
ul.socialIcons{
    display: flex;
    margin: 0 -15px;
}
ul.socialIcons > li{
    padding: 0 15px;
}
ul.socialIcons > li > a > svg{
    width: 35px;
    fill: var(--white);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
ul.socialIcons > li > a > svg:hover{
    fill: var(--theme-color);
}
.inFooter > .cmRt{
    width: 65%;
    display: flex;
}
.inFooter > .cmRt .cmBlock{
    display: flex;
    gap: 40px;
    width: 100%;
}
.inFooter > .cmRt .cmBlock > .cmItem{
    width: calc(100% / 3);
}

.inFooter .cmBlock .cmItemIn > .cmTitle{
    font-size: 32px;
    color: var(--white);
    position: relative;
    padding: 0 0 15px;
    margin: 0 0 65px;
}
.inFooter .cmBlock .cmItemIn > .cmTitle::after{
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--theme-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    left: 0;
    bottom: 0;
}
ul.cmFootLinks{
    display: flex;
    flex-wrap: wrap;
    margin: -10px 0;
}
ul.cmFootLinks > li{
    width: 100%;
    padding: 10px 0;
}
ul.cmFootLinks > li > a{
    color: var(--white);
    font-size: 17px;
}
ul.cmFootLinks > li > a:hover{
    color: var(--theme-color);
}

.cmFootLocations{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.cmFootLocations > .locationCard{
    width: 100%;
    position: relative;
    padding: 0 0 0 50px;
}
.locationCard .iconBox{
    position: absolute;
    left: 0;
    top: 7px;
}
.locationCard .iconBox > svg{
    width: 35px;
    fill: var(--theme-color);
    font-weight: 300;
}
.locationCard .mainTitle{
    font-size: 17px;
    margin: 0 0 7px;
}
.locationCard p{
    font-size: 15px;
    margin: 0;
}
.locationCard p > a{
    color: var(--gray999);
}
.locationCard p > a:hover{
    color: var(--theme-color);
}

.cmFooter .cmFootCopy{
    padding: 40px 0 0 0;
}
.cmFootCopy > p{
    font-size: 14px;
    color: var(--gray999);
    text-align: center;
    margin: 0;
}

#spnTop{
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: var(--theme-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
#spnTop > .material-symbols-rounded{
    font-size: 22px;
    color: var(--white);
    font-weight: 300;
}
#spnTop.active{
    opacity: 1;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
}
/* Footer Ends */