@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@font-face {
    font-family: 'Lato';
    font-weight: 100;
    font-style: normal;
    src: url(../fonts/Lato-Thin.woff) format('woff');
}
@font-face {
    font-family: 'Lato';
    font-weight: 100;
    font-style: italic;
    src: url(../fonts/Lato-ThinItalic.woff) format('woff');
}
@font-face {
    font-family: 'Lato';
    font-weight: 300;
    font-style: normal;
    src: url(../fonts/Lato-Light.woff) format('woff');
}
@font-face {
    font-family: 'Lato';
    font-weight: 300;
    font-style: italic;
    src: url(../fonts/Lato-LightItalic.woff) format('woff');
}
@font-face {
    font-family: 'Lato';
    font-weight: 400;
    src: url(../fonts/Lato-Regular.woff) format('woff');
}
@font-face {
    font-family: 'Lato';
    font-weight: 700;
    font-style: normal;
    src: url(../fonts/Lato-Bold.woff) format('woff');
}
@font-face {
    font-family: 'Lato';
    font-weight: 700;
    font-style: italic;
    src: url(../fonts/Lato-BoldItalic.woff) format('woff');
}
@font-face {
    font-family: 'Lato';
    font-weight: 900;
    font-style: normal;
    src: url(../fonts/Lato-Black.woff) format('woff');
}
@font-face {
    font-family: 'Lato';
    font-weight: 900;
    font-style: italic;
    src: url(../fonts/Lato-BlackItalic.woff) format('woff');
}
@font-face {
    font-family: 'Syne';
    font-weight: 400;
    src: url(../fonts/Syne-Regular.woff) format('woff');
}
@font-face {
    font-family: 'Syne';
    font-weight: 500;
    src: url(../fonts/Syne-Medium.woff) format('woff');
}
@font-face {
    font-family: 'Syne';
    font-weight: 600;
    src: url(../fonts/Syne-SemiBold.woff) format('woff');
}
@font-face {
    font-family: 'Syne';
    font-weight: 700;
    src: url(../fonts/Syne-Bold.woff) format('woff');
}
@font-face {
    font-family: 'Syne';
    font-weight: 800;
    src: url(../fonts/Syne-ExtraBold.woff) format('woff');
}

.syne-font{
  font-family: "Syne", sans-serif;
}
.lato-font{
  font-family: "Lato", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  background-color: #000000;
  color: #fff;
    overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #746fff;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4f49ff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: 400;
  margin-bottom: 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6{
font-family: "Syne", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none !important;
  outline: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

:focus-visible {
  outline: none;
  outline-offset: 0px;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50px;
    z-index: 999 !important;
    animation: headingFromTop 2s ease-in;
}

header .header-nav ul {
    display: flex;
    margin: 0;
    justify-content: flex-end;
    column-gap: 35px;
    align-items: center;
    list-style: none !important;
}

header .header-nav ul li a {
    color: white;
    font-size: 17px;
    transition: 0.3s;
    padding: 6px 0px;
    display: flex;
    align-items: center;
}

header .header-nav ul li a:hover {
    color: #876ec8;
    text-decoration: underline;
}

header .header-nav ul li a .fa {
    font-size: 18px !important;
    margin-left: 2px;
}

header .header-nav ul.sub-menu {
    display: block;
    flex-direction: column;
    height: auto;
    position: absolute;
    top: 45px;
    row-gap: 8px;
    max-width: 290px;
    border-radius: 10px;
    align-items: center;
    padding: 18px 20px;
    text-align: center;
    background-image: linear-gradient(to right, #876ec8, #000000);
    border: 1px solid #ffffff4d;
    text-align: left;
    box-shadow: 5px 15px 20px #00000087;
    border: 0.8px solid rgba(47, 39, 198, 0.75);
    background-image: linear-gradient(59deg, #876ec8, #000000f7);
}

header .header-nav ul.sub-menu li {
    position: relative;
}

header .header-nav ul.sub-menu li ul.sub-menu {
    z-index: 1;
    right: 0;
    left: 100%;
    min-width: max-content;
    top: 0;
}

header .header-nav ul.sub-menu li a {
    gap: 10px;
}

.header-nav ul .sub-menu li a {
    font-size: 14px !important;
    line-height: 18px;
}

.header-nav ul .sub-menu li a:hover {
    text-decoration: underline !important;
}

header ul.sub-menu {
    display: none !important;
}

li:hover > .sub-menu {
    display: block !important;
}

header .t-btn.t-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    padding: 14px 24px;
    border-radius: 40px;
    border: 0.8px solid rgba(47, 39, 198, 0.75);
    background-image: linear-gradient( 118deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.05) );
    transition: all 0.4s ease-in-out;
    background-size: 300% 100%;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.t-btn.t-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    max-width: 250px;
    padding: 4px 20px;
    border-radius: 40px;
    border: 0.8px solid rgb(47 39 198 / 0.75);
    -o-transition: all 0.4s ease-in-out;
    background-size: 300% 100%;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    background: #ffffff36;
}

.t-btn.t-btn-arrow:hover {
    color: #fff;
    text-decoration: none !important;
    background-image: linear-gradient( 118deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.55) );
    background-position: 50% 0;
}

.t-btn.t-btn-arrow img {
    transition: 0.5s;
}

.t-btn.t-btn-arrow:hover img {
    transform: rotate(-45deg);
}

footer {
    padding: 50px 0 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

footer .details-links-list .list-box h6 {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

footer .details-links-list .list-box a {
    font-size: 22px;
    color: #fff;
    text-decoration: underline !important;
    font-weight: 500;
    transition: 0.3s;
}

footer .details-links-list .list-box a:hover {
    color: #a6a1ff;
}

footer .details-links-list .align-list-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 55px;
    margin: 45px 0 55px;
}

footer .footer-logo {
    margin-bottom: 30px;
}

footer .details-links-list .align-list-box .list-box p {
    color: white;
    font-size: 18px;
}

footer .footer-nav-lists h4 {
    font-size: 24px;
    background: linear-gradient(270deg, #b79bff 0%, #8264f8 52%, #c4c2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 10px;
}

footer .footer-nav-lists ul {
    list-style: none;
    padding: 0;
}

footer .footer-nav-lists ul li a {
    color: white;
    font-size: 16px;
    font-weight: 300;
    transition: 0.3s;
}

footer .footer-nav-lists ul li a:hover {
    color: #a6a1ff;
}

footer .footer-nav-lists ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 19px;
}

footer .three-align-box {
    display: flex;
    column-gap: 75px;
}

footer .two-links-btns-align a {
    width: 160px;
    height: 50px;
    border-radius: 500px;
    border: 1.5px solid rgba(111, 106, 208, 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    transition: 0.3s;
    background: linear-gradient(45deg, black, transparent);
}

footer .two-links-btns-align a:hover {
    background-color: white;
}

footer .two-links-btns-align a .content h6 {
    font-size: 10px;
    color: #c3c3c3;
    font-weight: 400;
    transition: 0.3s;
    margin-bottom: 0;
}

footer .two-links-btns-align a:hover .content h6 {
    color: black;
}

footer .two-links-btns-align a .content h5 {
    font-size: 14px;
    color: white;
    transition: 0.3s;
    margin-bottom: 0;
}

footer .two-links-btns-align a:hover .content h5 {
    color: black;
}

footer .two-links-btns-align {
    display: flex;
    column-gap: 10px;
    margin-top: 22px;
}

footer .copy-right-text.text-center p {
    color: white;
    font-size: 20px;
    letter-spacing: 3px;
    margin-top: 80px;
}

footer .copy-right-text.text-center p a {
    color: #fff;
    transition: 0.3s;
}

footer .copy-right-text.text-center p a:hover {
    color: #8264f8;
}

footer .copy-right-text.text-center {
    position: relative;
    width: 100%;
}

footer .copy-right-text.text-center .copyrightborder{
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 1px;
  padding-bottom: 35px;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rotating-img {
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.home-hero-banner {
    height: 100vh;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: black;
}

.home-hero-banner .text {
    margin-top: 80px;
}

.home-hero-banner .text p {
    font-size: 20px;
    max-width: 1000px;
    display: block;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.65);
}

.home-hero-banner .text p a {
    color: #fff !important;
}

.slick-dots {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 1;
}

.slick-dots li button:before {
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "•";
    text-align: center;
    opacity: 0.25;
    color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: transparent;
}

.home-hero-banner ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -65px;
    left: 0;
    list-style: none;
}

.home-hero-banner .slick-dots li {
    width: 20px !important;
    height: 6px !important;
}

.home-hero-banner .slick-dots li button {
    width: 20px;
    height: 6px;
}

.home-hero-banner .slick-dots li button::before {
    background-color: #999999;
    color: transparent;
    width: 20px;
    height: 6px;
    border-radius: 50px;
    opacity: 100%;
}

.home-hero-banner .slick-dots li.slick-active button::before {
    color: transparent;
    background-color: #746fff;
}

.home-hero-banner .scroll-down-box {
    position: absolute;
    bottom: 10px;
    z-index: 999;
    right: 20px;
}

.home-hero-banner .scroll-down-box .two-imges {
    position: relative;
}

.home-hero-banner .scroll-down-box .two-imges img.Scrol-Down-Mouse {
    position: absolute;
    top: 37%;
    right: 0;
    left: 0;
    margin: auto;
}

.home-hero-banner .scroll-down-box .two-imges a:hover img.Scrol-Down-Mouse {
    filter: brightness(100);
}

.text h1 {
    font-size: 65px;
    font-weight: 400;
    line-height: 1em;
}

.text h1 span {
    font-weight: 600;
    flex-direction: row;
    flex-wrap: wrap;
}

.text h1 span img {
    display: inline;
}

.rotating-img {
    animation: rotate 7s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

a.scroll-btn {position: relative;}

a.scroll-btn img.Scrol-Down-Mouse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-sec-10, .home-sec-06, .home-sec-09 {
    background-color: #fff;
}

.home-sec-09 {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.home-sec-09 .text {
    padding-right: 75px;
}

.home-sec-09 .text h1 {
    color: #000;
    background: linear-gradient(270deg, #000000 0%, #000000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-size: 82px;
    font-weight: 600;
    line-height: 1em;
    width: 80%;
}

.home-sec-09 .text h2 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    background: #000 !important;
    -webkit-text-fill-color: #fff0;
    -webkit-background-clip: text !important;
}

.home-sec-09 .text p {
    color: #1e1e1e;
    font-size: 16px;
    margin: 10px 0 -5px;
}

.home-sec-09 .text a {
    color: #1e1e1e;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 600;
}

.home-sec-09 .text a:hover {
    color: #6b65d6;
}

.home-sec-09 .text h3 {
    font-family: "Lato", sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0;
    color:#212529;
}

.home-sec-09 .text form {
    width: 100%;
    position: relative;
}

.home-sec-09 .text form input {
    width: 100%;
    border-radius: 40px;
    border: 0.8px solid rgba(47, 39, 198, 0.75);
    background: linear-gradient( 118deg, rgba(255, 255, 255, 0.55) 30.59%, rgba(255, 255, 255, 0.05) 83.67% );
    color: #000;
    height: 42px;
    text-indent: 15px;
    padding-right: 145px;
    font-size: 12px;
    position: relative;
}

.home-sec-09 .text form button.submit-btn {
    position: absolute;
    top: 2px;
    right: 2px;
}

form button.submit-btn {
    background-color: black;
    color: white;
    width: 140px;
    height: 38px;
    border-radius: 50px;
    border: 2px solid #000;
    display: flex;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: 0.3s;
}

form button.submit-btn:hover {
    background-color: #6b65d6;
    border: 2px solid #6b65d6;
}

.home-sec-10 {
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.home-sec-10 form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.home-sec-10 form .input-box input, .home-sec-10 form .input-box select, .home-sec-10 form .input-box textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #635d6f7a;
    padding-bottom: 5px;
    text-indent: 0px;
    margin-bottom: 50px;
    font-size: 16px;
    color: black;
    background: transparent;
}

.home-sec-10 form .input-box select {
    margin-top: 3px;
}

.home-sec-10 form .input-box input::placeholder, .home-sec-10 form .input-box select::placeholder, .home-sec-10 form .input-box textarea::placeholder {
    color: #635d6f7a;
}

.home-sec-10 form, .input-box input:focus-visible, .input-box select:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.home-sec-10 form .input-box textarea {
    height: 150px;
}

.home-sec-10 form .input-box label {
    font-size: 15px;
    color: black;
    font-weight: 500;
    display: flex;
    column-gap: 5px;
    margin-bottom: 10px;
}

.home-sec-10 form .input-box label p {
    color: red;
}

.home-sec-10 .btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-sec-10 .col-lg-4, .home-sec-10 .col-md-4, .home-sec-10 .col-md-12, .home-sec-10 .col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
}

.newsletter-form {
    padding: 80px 0px 10px;
}

.newsletter-form .container {
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1200px;
}

.newsletter-form .text {
    display: flex;
    justify-content: center;
}

.newsletter-form .text form {
    width: 100%;
    position: relative;
}

.newsletter-form .text form input {
    width: 100%;
    height: 50px;
    border-radius: 40px;
    border: 0.8px solid rgba(47, 39, 198, 0.75);
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0.25) 200%);
    color: #ffffff;
    text-indent: 25px;
    padding-right: 145px;
    font-size: 16px;
    position: relative;
}

.newsletter-form .text form input:focus-visible {
    outline: 0.8px solid rgba(47, 39, 198, 0.75);
}

.newsletter-form .text form button.submit-btn {
    position: absolute;
    top: 2px;
    right: 2px;
}

.newsletter-form form button.submit-btn:hover {
    border: 2px solid transparent;
}

.newsletter-form form button.submit-btn {
    background: linear-gradient(#5E52E2 0%, #292CC0 100%) !important;
    color: white;
    width: 215px;
    height: 45px;
    border-radius: 50px;
    border: 2px solid #5E52E2;
    display: flex;
    padding-right: 10px;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    text-indent: 0;
}

.home-sec-01 .tab-pane { display: none; }
.home-sec-01 .tab-pane.active { display: block; }

.home-sec-01 .nav-link.active {
  font-weight: bold;
}

.home-sec-01 .mobile-slick-slider {
  display: none;
}

@media (max-width: 768px) {
  .home-sec-01 .nav-tabs,
  .home-sec-01 .tab-content {
    display: none;
  }
  .home-sec-01 .mobile-slick-slider {
    display: block;
  }
}

.home-sec-01 .text h2 {
    animation: headingFromTop 1s ease-in-out;
}

.home-sec-01 {
    background-size: 120% 120%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    animation: bgPositionSizeChange 12s ease-in-out infinite;
    position: relative;
    padding: 100px 0;
}

@keyframes bgPositionSizeChange {
    0% {
        background-position: 90% 50%;
        background-size: 100% 100%;
    }

    50% {
        background-position: 90% 80%;
        background-size: 110% 110%;
    }

    100% {
        background-position: 50% 50%;
        background-size: 100% 100%;
    }
}

.home-sec-01 .tab-content .text {
    animation: contentFromLeft 2s ease-in-out;
}

.home-sec-02 {
    animation: contentFromLeft 2s ease-in-out;
}

@keyframes headingFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contentFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes contentFromRight {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.text h2 {
    font-size: 55px;
    letter-spacing: 1.1px;
    background: linear-gradient(270deg, #9d77ff 0%, #c4c2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    font-weight: bold;
}

.home-sec-01 ul.nav.nav-tabs {
    display: flex;
    flex-direction: column;
    row-gap: 42px;
    border-bottom: 0;
}

.home-sec-01 .tab-content .tab-pane {
    color: white;
}

.text h2 {
    font-size: 55px;
    letter-spacing: 1.1px;
    background: linear-gradient(270deg, #9d77ff 0%, #c4c2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    font-weight: bold;
}

.home-sec-01 ul.nav.nav-tabs .nav-link {
    padding: 0;
    width: 425px;
    height: 73px;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    color: white;
    transition: 0.3s;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border: none;
    outline: none !important;
    background-image: url(../images/tabbing-bg.webp);
}

.home-sec-01 ul.nav.nav-tabs .nav-link.active, .home-sec-01 ul.nav.nav-tabs .nav-link:hover {
    background: linear-gradient(268deg, #2d26c8 0%, #5531af 100%);
    box-shadow: 8px 8px 16px 0px rgba(48, 39, 198, 0.5);
    background-image: linear-gradient(268deg, #2d26c8 0%, #5531af 100%);
    margin-left: 15px;
}

.home-sec-01 .tab-content .tab-pane .text h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.home-sec-01 .tab-content .tab-pane .text p {
    color: white;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.7em;
}

.home-sec-01 .tab-content .tab-pane .text p a {
    color: white;
}

.home-sec-01 .tab-content .tab-pane .text ul {
    columns: 2;
    margin: 25px 0px 25px 20px;
    padding-left: 0;
}

.home-sec-01 .tab-content .tab-pane .text ul li {
    list-style: disc;
    font-size: 16px;
    line-height: 2em;
}

.home-sec-01 .tab-content .tab-pane .main-design-box {
    height: 250px;
    overflow: hidden;
    border-radius: 20px;
}

.home-sec-01 .tab-content .tab-pane .main-design-box img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    transition: 1s ease-in;
}

.home-sec-01 .tab-content .tab-pane .main-design-box:hover img {
    object-position: bottom;
}

.home-sec-01 .tab-content > div:nth-child(2) .main-design-box img, .home-sec-01 .tab-content > div:nth-child(3) .main-design-box img {
    transition: 5s;
}

.home-sec-01 .btn-box {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.home-sec-01 .btn-box .beyond-btn {
    max-width: 150px;
    transition: 0.3s;
}

.home-sec-01 .btn-box .beyond-btn img {
    width: 150px;
    height: 64px;
}

.home-sec-01 .btn-box .beyond-btn:hover img {
    filter: brightness(100);
}

.home-sec-01 .row:nth-child(2) {
    display: flex;
}

.mobile-slick-slider {
    display: none;
}

.home-sec-02 {
    padding: 100px 0;
    background-color: black;
}

.home-sec-02 .text h1 {
    font-size: 65px;
    font-weight: 700;
    line-height: 0.9em;
    background: linear-gradient(270deg, #9d77ff 0%, #c4c2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-sec-02  .text h1 span {
    color: white !important;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(270deg, #ffffff 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text h4 {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(270deg, #9d77ff 0%, #c4c2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.7em;
}

.home-sec-02 .text h1 img {
    margin-left: 10px;
    display: inline;
}

.home-sec-02 .text p {
    margin-bottom: 25px;
}

.home-sec-02 .text p a {
    color: rgba(255, 255, 255, 0.65);
}

.home-sec-03 {
    background-color: white;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: top;
}

.home-sec-03 .text p {
    color: black;
}

.home-sec-03 .text h1 {
    font-size: 55px;
    background: no-repeat;
    color: #1e1e1e !important;
    -webkit-text-fill-color: #000;
    text-align: center;
}

.home-sec-03 .text h2 {
    position: relative;
    margin: 0;
}

.animate-div {
    background-color: #000 !important;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 30px;
}

.home-sec-03 .text img {
    margin: 10px 0 30px;
}

.home-sec-03 .col-lg-6:last-child .text p {
    max-width: 500px;
}

.home-sec-03 .col-lg-6:last-child {
    padding-left: 50px;
}

.home-sec-03 .three-box-align {
    display: flex;
    margin-top: 30px;
    column-gap: 10px;
}

.home-sec-03 .three-box-align .img-box {
    width: 160px;
    height: 156px;
    flex-shrink: 0;
    border-radius: 7px;
    border: 1px solid #5331b1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    color:#212529;
}

.home-sec-03 .three-box-align .img-box:hover {
    transform: scale(1.1);
    background-color: #5331b1;
    color: #fff;
}

.home-sec-03 .three-box-align .img-box img {
    transition: 0.3s;
}

.home-sec-03 .three-box-align .img-box:hover img {
    filter: brightness(0) invert(1);
}

.home-sec-03 .three-box-align .img-box h6 {
    font-size: 30px;
    margin-top: 5px;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: "Lato", sans-serif;
}

ul.servicesListDisplay {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0;
    gap: 15px;
}

.home-sec-service {
    overflow: hidden;
    padding: 100px 0;
    background-position:center;
    position: relative;
    transition: 0.5s;
    background-size: cover;
    background-color: #000;
}

.home-sec-service .nav-tabs {
    margin: 20px 0 50px;
}

.home-sec-service .servicesListDisplay li {
    list-style: none;
    color: #fff;
}

.servicesListDisplay li a {
    min-width: -moz-fit-content;
    min-width: fit-content;
    margin-bottom: 15px;
    max-width: 320px !important;
    width: 320px;
    line-height: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    max-width: 250px;
    padding: 4px 20px;
    border-radius: 40px;
    border: 0.8px solid rgba(47, 39, 198, 0.75);
    -o-transition: all 0.4s ease-in-out;
    background-size: 300% 100%;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.21);
}

.servicesListDisplay li a:hover {
    color: #fff;
    text-decoration: none !important;
    background-image: linear-gradient( 118deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.55) );
    background-position: 50% 0;
}

.home-sec-service ul.nav.nav-tabs .nav-link {
    border-radius: 30px;
    padding: 16px 15px;
    border: 0;
    background-image: url(../images/tab-btn.webp);
    background-size: cover;
    color: #fff;
    background-position: center center;
    margin-right: 10px;
}

.home-sec-service ul.nav.nav-tabs a.nav-link.active, .home-sec-service ul.nav.nav-tabs a.nav-link:hover {
    background: linear-gradient(268deg, #2d26c8 0%, #5531af 100%) !important;
    box-shadow: 8px 8px 16px 0 rgba(48, 39, 198, 0.5) !important;
    background-image: linear-gradient( 268deg, #2d26c8 0%, #5531af 100% ) !important;
    cursor: pointer;
}

.techno-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    margin-top: -10%;
    /* z-index: -1; */
    position: relative;
}

.home-sec-05 {
    padding: 150px 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background: linear-gradient(180deg, #130a2b 0%, #000 100%) !important;
        position: relative;
    z-index: 1;
}

.home-sec-05 .text h2 {
    font-size: 55px;
    font-weight: 700;
    line-height: 0.9em;
    background: linear-gradient(270deg, #9d77ff 0%, #c4c2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-sec-05 ul.nav.nav-tabs {
    margin-top: 40px;
    border: none;
    column-gap: 15px;
}

.home-sec-05 ul.nav.nav-tabs a.nav-link1 {
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background-image: url(../images/small-tabbing-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.home-sec-05 ul.nav.nav-tabs a.nav-link1.active, .home-sec-05 ul.nav.nav-tabs a.nav-link1:hover {
    background: linear-gradient(268deg, #2d26c8 0%, #5531af 100%) !important;
    box-shadow: 8px 8px 16px 0px rgba(48, 39, 198, 0.5) !important;
    background-image: linear-gradient( 268deg, #2d26c8 0%, #5531af 100% ) !important;
    cursor: pointer;
}

.home-sec-05 .main-tabbing-content .main-box h5 {
    color: white;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.home-sec-05 .main-tabbing-content {
    margin-top: 0px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 40px;
    align-items: flex-end;
}

.home-sec-05 .tab-content {
    margin-top: 25px;
}

.home-sec-05 .main-tabbing-content .main-box .box {
    position: relative;
    display: inline-flex;
}

.home-sec-05 .main-tabbing-content .main-box .box .content-box {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #5431b0;
    background: #fff;
    box-shadow: 10px 10px 15px 0 rgb(48 39 199 / 0.25);
    width: 280px;
    padding: 16px;
    display: none;
    transition: 1.5s;
    position: absolute;
    top: 85px;
    left: 0;
    z-index: 999;
}

.home-sec-05 .main-tabbing-content .main-box .box .content-box h6 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    font-family: "Lato", sans-serif;
    background: linear-gradient(270deg, #8354ff 0%, #9591ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}

.home-sec-05 .main-tabbing-content .main-box .box .content-box p {
    font-size: 12px;
    color: #1e1e1e;
    line-height: 1.3em;
}

.home-sec-05 .main-tabbing-content .main-box .box:hover .content-box {
    display: block;
    position: absolute;
    left: 0;
    z-index: 999;
}

.home-sec-05 .main-tabbing-content .main-box .align-boxes {
    display: flex;
    column-gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 20px;
}

.home-sec-05 .main-tabbing-content .main-box.two-heading h6 {
    color: white;
    font-size: 14px;
    font-family: "Lato", sans-serif;
    margin-bottom: 10px;
}

.home-sec-05 .main-tabbing-content .main-box.two-heading h5 {
    margin-top: 50px;
    margin-bottom: 5px;
}

.home-sec-05 .tab-pane1 { display: none; }
.home-sec-05 .tab-pane1.active { display: block; }


/* Section 6 */
.homepage-sec-06 {
    padding: 100px 0;
    background-color: white;
}

.homepage-sec-06 .video-box #video-container {
    height: 100%;
}

.homepage-sec-06 .video-box video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #80808026;
}

.homepage-sec-06 .video-box img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #80808026;
}

.homepage-sec-06 .video-box {
    height: 334px;
    width: 100%;
    overflow: hidden;
}

.video-box.video-box-02, .video-box.video-box-03 {
    height: 282px;
    margin-top: 20px;
}

.video-box.video-box-04 {
    height: 635px;
}

.homepage-sec-06 .col-lg-6.col-md-12 {
    padding: 0px 10px;
}

.homepage-sec-06 .col-lg-6.col-md-12 .col-lg-5.col-md-6 {
    padding-right: 0;
}

.homepage-sec-06 .t-btn.t-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    max-width: 250px;
    padding: 4px 20px;
    border-radius: 40px;
    border: 0.8px solid rgba(47, 39, 198, 0.75);
    -o-transition: all 0.4s ease-in-out;
    background-size: 300% 100%;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.21);
}

.homepage-sec-06 .t-btn.t-btn-arrow.t-btn-arrow-gra {
    background: linear-gradient(264deg, #2724cb 0%, #5931ad 100%);
    margin-top: 50px;
    transition: 1s;
}

.homepage-sec-06 .t-btn.t-btn-arrow.t-btn-arrow-gra:hover {
    border: 0.8px solid rgba(47, 39, 198, 0.75);
    background: linear-gradient( 118deg, rgba(255, 255, 255, 0.55) 30.59%, rgba(255, 255, 255, 0.05) 83.67% );
    background-color: black;
}

.homepage-sec-06 .video-box .last-div {
    position: absolute;
    top: 0;
    border-radius: 12px;
    left: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    background: linear-gradient( 0deg, rgba(0, 0, 0, 70%) 0%, rgba(255, 255, 255, 0) 80% );
    opacity: 0;
    transition: all 1s ease;
}

.homepage-sec-06 .video-box {
    position: relative;
}

.homepage-sec-06 .video-box video {
    width: 100%;
}

.homepage-sec-06 .video-box .last-div:hover {
    opacity: 1;
}

.homepage-sec-06 .video-box .last-div p {
    text-transform: uppercase;
    font-size: 32px;
    color: #fff;
    font-weight: 600;
}

.homepage-sec-06 .mobile-portfolio {
    display: none;
}

.homepage-sec-06 .row:nth-child(2) {
    display: flex;
}

.mobile-portfolio-slider {
    display: none;
}

.marquee {
    position: relative;
    width: 2000vw;
    max-width: 2000%;
    height: 100px;
    overflow-x: hidden;
    margin-bottom: -150px;
    margin-top: 50px;
    display: flex;
    column-gap: 80px;
    z-index: 2;
}

.marquee img {
    max-width: 100% !important;
}

.track {
    white-space: nowrap;
    will-change: transform;
    animation: marquee 60s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


.home-sec-08 {
    padding: 200px 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.home-sec-08 .card-header a.card-link.accordion-title {
    color: white;
    font-size: 35px;
    font-weight: 500;
    font-family: "Syne", sans-serif;
}

.home-sec-08 .card-header {
    padding: 0;
    background-color: #ff000000;
    border-bottom: 1px solid #ffffff4a;
    padding-bottom: 25px;
    margin-bottom: 25px;
    cursor: pointer;
}

.home-sec-08 .card {
    background-color: #ff000000;
    border-color: transparent;
}

.home-sec-08 .card-body {
    padding: 0;
    color: white;
    font-size: 18px ;
    max-width: 90%;
    margin-bottom: 25px;
}

.home-sec-08 .collapse, .home-sec-08 .collapsing, .home-sec-08 .collapse.show {
    padding: 0 !important;
    transition: all 0.3s ease;
}

.home-sec-08 .collapse.show {
    border-bottom: 1px solid #ffffff4a;
    animation: faqOpenAnimation 0.5s cubic-bezier(0.5, 0, 0.5, 1);
}

@keyframes faqOpenAnimation {
    0% {
        display: none;
        opacity: 0.4;
        max-height: 0;
        transform: translateY(-10px);
    }

    50% {
        display: block;
        max-height: 1000px;
        transform: translateY(-10px);
        opacity: 1;
        transform: translateY(0);
    }
}

.home-sec-08 a.card-link.accordion-title {
    background: linear-gradient(270deg, #9d77ff 0%, #c4c2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-sec-08 a.card-link.accordion-title.collapsed {
    color: white !important;
    background: linear-gradient(270deg, #ffffff 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-sec-08 a.card-link.accordion-title.collapsed:before {
    float: right !important;
    filter: brightness(100);
    transform: rotate(45deg);
    margin-left: 10px;
}

.home-sec-08 a.card-link.accordion-title:before {
    float: right !important;
    content: "";
    padding-right: 5px;
    background-image: url(../images/accordion-cross.webp);
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 15px;
    filter: none;
    transform: rotate(0deg);
    transition: 0.1s linear;
    margin-left: 10px;
}

/* Section 7 */
.home-sec-07 {
    padding: 100px 0 200px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.home-sec-07 .main-testi-large-box {
    color: white;
    z-index: 999;
}

.home-sec-07 .main-testi-nav .box img {
    border-radius: 10px;
}

.home-sec-07 .main-testi-box {
    padding: 50px 150px;
    text-align: center;
    margin-top: 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 998;
    border-radius: 10px;
    position: relative;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.home-sec-07 .main-testi-box::after {
    content: "";
    background-image: url(../images/testi-details-left.webp);
    width: 88px;
    height: 66px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 70px;
    left: 5%;
}

.home-sec-07 .main-testi-box::before {
    content: "";
    background-image: url(../images/testi-details-right.webp);
    width: 88px;
    height: 66px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 70px;
    right: 5%;
}

.home-sec-07 .main-testi-box h4 {
    background: linear-gradient(270deg, #9d77ff 0%, #c4c2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    font-weight: 500;
}

.home-sec-07 .main-testi-box h5 {
    font-size: 16px;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    margin: 10px 0 15px;
}

.home-sec-07 .main-testi-box p {
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.7em;
}

.home-sec-07 .main-testi-box h6 {
    font-size: 18px;
    font-weight: 500;
    font-family: "Lato", sans-serif;
    margin-top: 15px;
}

.home-sec-07 .two-imges-testi img.testi-img-01 {
    position: absolute;
    bottom: 50px;
    right: 10%;
}

.home-sec-07 .two-imges-testi img.testi-img-02 {
    position: absolute;
    bottom: 130px;
    left: 13%;
}

.home-sec-07 .main-testi-nav .box img {
    cursor: pointer;
}

.home-sec-07 .slick-track {
    padding: 5px 0 25px;
}

.home-sec-07 .testi-img-01 {
    animation: zoom 5s ease-in-out infinite;
}

.home-sec-07 .rotating-img {
    animation: rotate 7s linear infinite;
}

.main-testi-nav .slick-slide {
    opacity: 30%;
}

.main-testi-large-box .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    z-index: 9999;
}

.main-testi-nav .slick-active.slick-center.slick-current {
    opacity: 100% !important;
}

.main-testi-nav .slick-list {
    padding: 0 !important;
}

.main-testi-nav .slick-active.slick-center.slick-current .box img {
    box-shadow: 5px 5px 25px 0px rgba(157, 119, 255, 0.9);
    border-radius: 10px;
}

@keyframes zoom {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1.2) saturate(120%) blur(10px);
    }

    50% {
        transform: scale(1.1);
        transform: scale(1.2);
        filter: brightness(1) saturate(100%) blur(0);
    }
}

#testi-thumbs .slick-current img {
  opacity: 1;
  box-shadow: 5px 5px 25px 0px rgba(157, 119, 255, 0.9);
    border-radius: 10px;
}
#testi-thumbs .slick-current {
  opacity: 1;
}
.flow-social-links {
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 4%;
    transform: translate(-50%, -50%);
    z-index: 99;
    animation: socialLinks 8s ease-out;
}

.flow-social-links .main-links-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.flow-social-links .main-links-social ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
}

.main-links-social ul {
    list-style: none;
    padding-left: 0;
}

.flow-social-links .main-links-social ul li a {
    border: 1px solid #9e79ff;
    width: 38px;
    height: 38px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.flow-social-links .main-links-social ul li a:hover {
    background-color: black;
    border-color: black;
    border-color: #fff;
}

.flow-social-links .main-links-social ul li a:hover img {
    filter: brightness(100);
}

.sticky-effect {
    background-color: #fff;
    z-index: 9;
    position: -webkit-sticky !important;
    position: sticky !important;
}


.aboutBanner {
    background: linear-gradient(180deg, #130a2c, #000000);
}

.aboutBanner .heading{
    min-height: 95vh;
    display: flex;
    align-items: center;
        justify-content: center;
    position: relative;
    z-index: 1;
}

.aboutPageBg{
    position: fixed;
    z-index: 1;
    transition: all 1s ease-in-out;
    left: 50%;
    transform: translate(-50%, -10%);
    top: 50%;
}

.glassbg {
    position: relative;
    z-index: 1;
    background: #221f4591;
    height: auto;
}
.aboutBanner .heading h1 {
    font-size: 160px;
    position: relative;
    font-weight: 700;
}

.about-sec-01 h4, .about-sec-03 h4, .about-sec-05 h4 {
    color: #fff;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
}

.about-sec-01 p, .about-sec-03 p, .about-sec-02 p {
    padding-top: 50px;
    color: #e5deff;
    line-height: 54px;
    font-size: 35px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

.about-sec-01 {
    padding-top: 300px;
    padding-bottom: 200px;
}

.about-sec-02 h1 {
    color: white;
    font-size: 800px;
    font-weight: 600;
    position: sticky;
    top: 120px;
    line-height: 84px;
    padding-bottom: 300px;
    z-index: 1;
}

.about-sec-02 h2 {
    color: #e5deff;
    font-size: 80px;
    line-height: 94px;
    font-weight: 600;
    max-width: 450px;
    text-align: left;
}

.about-sec-02 p {
    color: white;
    font-size: 24px;
    line-height: 44px;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    letter-spacing: 2px;
    text-align: left;
}

.about-sec-02 {
    z-index: 2;
}

.about-sec-03 {
    padding: 200px 0;
}

.about-sec-03 h4 {
    text-align: center;
}

.about-sec-03 p {
    text-align: center;
}

.about-sec-03 .col-lg-12 .grid h3 {
    background: linear-gradient(270deg, #9d77ff 0%, #c4c2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    text-align: left;
    margin-bottom: 10px;
}

.about-sec-03 .col-lg-12 .grid p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    font-family: "Lato", sans-serif;
    padding-top: 0;
}

.about-sec-04 h2 {
    text-align: center;
    font-size: 55px;
    line-height: 60px;
    letter-spacing: -1px;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(270deg, #9d77ff 0%, #c4c2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-sec-04 .map {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
}

.about-sec-05 {
    padding: 200px 0 300px;
    text-align: center;
}

.about-sec-05 p {
    font-size: 48px;
    margin-bottom: 0;
    margin-top: 50px;
    color: #e5deff;
}

.about-sec-03 .col-lg-12 .grid div {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    width: 310px;
    height: 200px;
    padding: 40px 20px;
}

.about-sec-03 .col-lg-12 .grid .bottom-box {
    margin-top: 80px;
}

.about-sec-03 .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}

.ourpartner-Banner .heading {
    min-height: 620px;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    color: #fff;
    flex-direction: column;
    justify-content: center;
}

.ourpartner-Banner {
    background: linear-gradient(180deg, #010921 0%, #010a23 73.71%) !important;
}

.ourpartner-Banner .heading h2 {
    font-size: 38px;
    font-weight: bold;
}

.ourpartner-Banner .heading p {
    color: #fff;
    font-size: 22px;
}

.partners-sec {
    position: relative;
    background: linear-gradient(180deg, #010921 0%, #010a23 73.71%);
    padding: 133px 0;
    overflow: hidden;
}

.partners-sec img.first {
    position: absolute;
    right: 0;
    top: -150px;
}

.partners-sec img.secrn {
    position: absolute;
    left: 0;
    bottom: 350px;
}

.partners-sec img.last-mg {
    position: absolute;
    bottom: -290px;
    right: 0;
}

.partners-sec .box {
    padding: 30px;
    border: 1px solid #43417e;
    border-radius: 30px;
    height: 100%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #ffffff08;
}

.partners-sec .pre-ede {
    padding-top: 30px;
}

.partners-sec .box img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    padding-top: 70px;
    padding-bottom: 20px;
    margin: auto;
}

.partners-sec .box h3 {
    margin-top: 34px;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(270deg, #9d77ff 0%, #c4c2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
        margin-bottom: 0;
}

.partners-sec .box p {
    font-weight: 400;
    font-size: 16px;
    opacity: 0.7;
    color: #ffffffa6;
    font-size: 16px;
    line-height: 1.7em;
}

.last-partn .heading {
    color: #fff;
    text-align: center;
    margin-top: 50px;
    font-size: 22px;
}

.missionBanner .heading {
    min-height: 95vh;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
}

.missionBanner .heading h1 {
    font-size: 180px;
    position: relative;
    font-weight: bold;
    z-index: 10;
    margin: 0;
}

.glass-bg {
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    background: #221f4591;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: auto;
    padding: 100px 0;
    padding-bottom: 200px;
}

.missionBanner .banner-video video {width: 100%;height: fit-content;object-fit: none;object-position: top center;}

.mission-sec-02 h4, .mission-sec-04 h4 {
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Lato", sans-serif;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
}

.mission-sec-02 p, .mission-sec-04 p {
    padding-top: 20px;
    font-size: 34px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -1px;
    color: #e5deff;
}

.mission-sec-04 p {
  font-size: 38px;
}

.mission-sec-03 {
    padding: 200px 0;
}

.mission-sec-03 h2 {
    margin-bottom: 10px;
    font-size: 80px;
    font-weight: 600;
    line-height: 94px;
    color: #e5deff;
    text-align: left;
}

.mission-sec-03 .img-box {
    position: relative;
}

.mission-sec-03 .img-box img {
    width: 100%;
}

.mission-sec-03 .img-box .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mission-sec-03 .img-box .content h3 {
    font-size: 42px;
    font-weight: 700;
    line-height: 51px;
    text-align: center;
    color: #fff;
    margin: 0;
}

.mission-sec-03 .row {
    row-gap: 30px;
}

.stickySection{
      position: sticky;
    top: 0;
    z-index: -1;
}